diff --git a/Semi-Lagrange Scheme.ipynb b/Semi-Lagrange Scheme.ipynb new file mode 100755 index 0000000000000000000000000000000000000000..3d7b87fb333d0a6a74061b543c212060fd83f739 --- /dev/null +++ b/Semi-Lagrange Scheme.ipynb @@ -0,0 +1,306 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "*Tracer Transport Simulation Lab - Winterterm 2021/22*" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Semi-Lagrangian scheme for 1D advection" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "[**Jörn Behrens**](http://www.math.uni-hamburg.de/numgeo) [(joern.behrens@uni-hamburg.de)](mailto:joern.behrens@uni-hamburg.de)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Introduction\n", + "\n", + "In this notebook we want to implement a Semi-Lagrangian Scheme for the simple 1D advection equation, given by\n", + "$$\n", + "\\frac{\\partial \\rho}{\\partial t} + v\\cdot\\frac{\\partial \\rho}{\\partial x}= 0,\n", + "$$\n", + "where $\\rho$ is an advected constituent, $v\\equiv 1$ is a given wind (assumed to be constant 1), and $(x,t)$ is the space-time coordinate. Additionally, we want to compare it's solution to the already implemented Lax-Friedrichs advection scheme.\n", + "\n", + "The Lax-Friedrichs scheme discretizes this equation by using a centered finite difference for the space derivative and a modified explicit time derivative. It reads\n", + "$$\n", + " \\rho_i^{j+1}= \\frac{1}{2}(\\rho_{i+1}^j + \\rho_{i-1}^j) - \\nu(\\rho_{i+1}^j - \\rho_{i-1}^j),\n", + "$$\n", + "where $\\nu=v\\frac{\\Delta t}{2\\Delta x}$ and the indices $i$ and $j$ stand for the space and time step, resp.\n", + "\n", + "The semi-Lagrangian time stepping scheme utilizes an analytic solution for the ODE describing the departure points\n", + "$$\n", + "\\frac{dx}{dt}= v\\equiv 1.\n", + "$$\n", + "Obviously the analytical solution is $x=t$ (we omit the constant here). That leaves us with the semi-Lagrangian scheme being an interpolation of the right and left neighbor values, depending in which cell the upstream point falls. We use linear interpolation in this case.\n", + "\n", + "## Time stepping schemes\n", + "\n", + "In order to implement the time stepping schemes, we define a corresponding function that takes the grid $x$, the time-step $\\Delta t$, the final time $T$, and an initual field $\\rho_0$ as input parameters and returns $\\rho(x,T)$.\n", + "\n", + "### Lax-Friedrichs scheme\n", + "\n", + "First we re-use the Lax-Friedrichs scheme from a previous exercise:" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "from numpy import arange\n", + "def laxfriedrichsadvect(x,dt,T,rho0):\n", + " #-- compute spatial step size\n", + " dx= x[1]-x[0]\n", + " \n", + " #-- initial condition; set up future time array\n", + " u0=rho0.copy()\n", + " u1=u0.copy()\n", + " \n", + " #-- now the time loop\n", + " for t in arange(0,T,dt):\n", + " nu= dt/(2*dx)\n", + " u1[1:(len(x)-1)]= 0.5*(u0[2:len(x)]+u0[:(len(x)-2)]) - nu* (u0[2:len(x)]-u0[:(len(x)-2)])\n", + " #-- periodic boundary conditions:\n", + " u1[0] = 0.5*(u0[1]+u0[len(x)-1]) - nu* (u0[1] - u0[len(x)-1])\n", + " u1[len(x)-1]= 0.5*(u0[0]+u0[len(x)-2]) - nu* (u0[0]-u0[len(x)-2])\n", + " #-- reuse array for next time step\n", + " u0=u1.copy()\n", + " \n", + " #-- set output value\n", + " rho = u1\n", + " return rho\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Semi-Lagrangian Scheme\n", + "\n", + "Now, we implement the semi-Lagrangian scheme. Here I build on the code written by Philipp Sommer. The algorithm works as follows:\n", + "1. Compute the upstream positions by subtracting $\\Delta t$ from the grid points $x$.\n", + "2. Deal with periodic boundary condition by entering the trajectory on the right boundary, when it leaves the domain on the left side.\n", + "3. Now, determine left and right neighbors to that grid point.\n", + "4. Evaluate the old time step values at those grid points.\n", + "5. Finally, linearly interpolate between these two values." + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "from numpy import arange, array, abs\n", + "def semilagrangeadvect(x,dt,T,rho0):\n", + " #-- compute spatial step size\n", + " dx= x[1]-x[0]\n", + "\n", + " #-- initial condition; set up future time array\n", + " u=rho0.copy()\n", + " \n", + " for t in arange(0,T,dt):\n", + " #-- new position of the particle\n", + " xminus = x-dt\n", + " \n", + " #-- if out of the range, go to the right side (i.e. handle x periodically)\n", + " xminus[xminus < x.min()] = x.max() - (x.min() - xminus[xminus < x.min()])\n", + " \n", + " #-- set up left grid point\n", + " xl = array([max(xi for xi in x if xi <= ximinus) for ximinus in xminus])\n", + " #-- set up right grid point\n", + " xr = array([min(xi for xi in x if xi >= ximinus) for ximinus in xminus])\n", + " #-- compute solution at left grid point\n", + " ul = array([u[x.searchsorted(xl[ixminus])] for ixminus in range(len(xminus))])\n", + " #-- compute solution at right grid point\n", + " ur = array([u[x.searchsorted(xr[ixminus])] for ixminus in range(len(xminus))])\n", + " \n", + " #-- compute solution in between via interpolation\n", + " nu=(xr-xminus)/dx\n", + " u = (1.-nu)*ur + nu*ul\n", + " \n", + " return u\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Initial Conditions\n", + "\n", + "We want to generate initial conditions in their own functions. The two alternative initial conditions are given by either\n", + "$$\n", + "\\rho_0(x)=e^{-\\frac{(20x)^2}{2}},\n", + "$$\n", + "or\n", + "$$\n", + "\\rho_0(x)=e^{\\frac{-x^2}{2 \\sigma^2}}\\cdot\\cos(Kx),\n", + "$$\n", + "where $\\sigma=0.1$, and $K=\\frac{\\pi}{\\sigma}$." + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "from numpy import pi, exp, cos\n", + "def init1(x):\n", + " u0=exp(-(20*x)**2/2)\n", + " return u0\n", + "\n", + "def init2(x):\n", + " sigm= 0.1; Ka= pi/sigm\n", + " u0= exp(-(x**2)/(2*sigm**2)) * cos(Ka*x)\n", + " return u0\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Main Test Program\n", + "\n", + "Now that we have generated our time-stepping function, we can build a main program to test our scheme.\n", + "1. Let us set some initial values (time-step size, etc.) first.\n", + "2. Then we will set initial conditions by calling the corresponding functions.\n", + "3. Then we call the Lax-Friedrichs function defined earlier.\n", + "4. We compute an analytic solution (remember, this is just the initial solution shifted).\n", + "5. Finally, we compare our solutions." + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "*** INFO: relative error in inf-norm ***\n", + " Lax-Friedrichs method: 0.3275\n", + " semi-Lagrangian method: 0.0000\n", + "*** INFO: relative error in two-norm ***\n", + " Lax-Friedrichs method: 0.3473\n", + " semi-Lagrangian method: 0.0000\n" + ] + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAmkAAAG5CAYAAADVp6NgAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/MnkTPAAAACXBIWXMAAAsTAAALEwEAmpwYAABvm0lEQVR4nO3dd5xcZaH/8c8z23dme8kmu0k2IYGEkBAgFAEBpYiKgF4RFBFUQC6iXtu14FUuwvVeu1z5qdgARUGwocBFOio1oZOQ3jbZ3mf77jy/P54zm8lm+07bzPf9es1rds45c+Y5M7uZb55qrLWIiIiISHLxJboAIiIiInIghTQRERGRJKSQJiIiIpKEFNJEREREkpBCmoiIiEgSUkgTERERSUIKaTIrGGPebIzZmOhyTIcx5jRjTE2cX3OBMSZojEmL5+uKiEj0KKRJUjHG7DDGnDFyu7X279bawxJRprEYYy4zxlhjzIVJUJb93jdr7S5rbcBaOxTj1z3NGBPyAmHQGFNjjPmdMebYiGMqjTGtxpiTI7bN97YdP8XXyzLG/MIY02GMqTPGfGaC4z/tHdfhPS8rYl+1MeYxY0y3MeaNkb93xpjFxpi/GmM6jTFNxphvRuwLjrgNGWP+d5LXcKsxpt87b6cx5jVjzDeMMQXe/i9HnLfXO3f48etTfL/GvcYRx4773hpjTvfO0e2dc+GI/WcYY14wxnR5vwfvi9i32hizznvuOmPM6ilcg/XOGTTGNBtjHon8mzPGvD7ic+iNePxlY0ymMeY7XpmC3t/K9yf7+hGvU2yM+aNXlp3GmA+Mc6wxxvyPV95m72cz2ffDGHO0MeZJr7z1xphPedvD//mKvFljzGenej0yS1hrddMtaW7ADuCMRJcjojzp4+x7DGgG7pvgHKcBNQfj+xZ5bYABqoDrgV7g9IjjrgTeALK9x/cD353G630D+DtQBCwH6oCzxzj2bUA9sMI7/nHgvyP2Pw18F8gB/gVoA8q8fZnAVuAzgB/IBlaN8ToBIAicMslruBW4wfs5GzjW+116DfCPOPYy4B8z+HzGvMapvLdAKdAOXOCV+VvAMxHPPRxoAN4OpAMlwCER7+VO4NNAFvBJ73HmJK/BAksiynEJ0Ah8bZRjHwcuH7Hta8ATwDzvd7Qa+NA03svfAnd5n/fJ3vuxYoxjPwZs9P4eKoH1wFWTeT+8a2wALvb25wHLx3idRcAQUB2Lv2/dEn9LeAF00y3yxhhhgxFBxzvuc8Ar3j+Wd+EFAG//OcBL3pfSU0R8wQJfxH0Bd3r/eL47Yt9lwD+B7+EC2A1jlHMhEPK++AaBioh9Obgv4lbv/J9nX5D5AnDPiHP9ALjJ+7kA+DlQC+wBbgDSIo69AtgQUfajgV95ZenBhYV/976ILF7I9L6g7gVagC3AFRHnvA74HXC7d97XgTWT/Lz2+1witv8QWBvx2OCCyDeAS733P3cavx97gbMiHn8duHOMY38D/FfE49OBOu/nQ4E+IC9i/9/Z90V6JfD3SZbpUmAbYCZ5/K0jf69wX8S1wDUjtl/GNEPaRNc4lffWez+eitjn937flkW8118f47xneb/LJmLbLsYI16M8fzikRWx7L+4/AiUjtj/OgSHtr8C/Tec9HHG9/cChEdt+RUToH3H8U8CVEY8/ihdqJ3o/gP8CfjXJcn0NeGwm16Zbct/U3Cmz2fuAs3H/m1yF+0LDGHMU8Avc/2ZLgJ8A90Y0dW0F3owLRP8J/NoYMzfivMfjvnTnADeO8dofwoWQ3+NC08UR+74GHOLd3ob7Eg+7E3iHMSbPK2uadx2/8fbfigt9S4CjcP+gX+4dewEuUH0IyAfOBZqttZfg/pF/l3VNnMPNciNetwYX1t4L/Jcx5q0R+8/1jinEhbkfjnHdk/UH4GhjjB/Aum+Uy4Grge/jQmJ3+GBjzP8zxrSNcXvFO6YImAu8HPE6L+NqykazYpRj5xhjSrx926y1nWOc6wRghzHmAa+p83FjzMoxXudS4HbvGqfFK8dDuN/LCRljXhnn/fp/3mETXWPk+SZ6b/d7L621Xbi/o8j3C2PMq8aYWmPMr40xxRHPfWXE+/PKaOWYgj/jauyOm8SxzwCfMcZcbYxZGdns6JX5r+O8l3/1DjsUGLTWbop46lR/9yLfy/HejxOAFmPMU8aYBmPMX4wxC0a+gHcdHwJum/AdkFlLIU1ms5ustXuttS3AX4DV3vYrgZ9Ya5+11g5Za2/D1SicAGCtvdt7Xshaexewmf3/sd9rrf1fa+2gtbZnjNf+EPuC1W+8x2HvA2601rZYa3cDN4V3WGt3Ai8A7/Y2vRXottY+Y4yZA7wD97/+LmttA65G7yLv2MuBb1prn7fOFu984zLGzAdOAr5gre211r4E/GxEmf9hrb3fuj5svwKOnOi8E9iLqz0rjNi209veATwZebC19mprbeEYt1XeYQHvvj3iqe24WqjRBEY5Fu/4kftGnqsK977fhAu29wF/NsZkRj7B65d1KtH5otwLFE94FGCtXTXO+3W1d9hE1xhpovd2Mu/XJbia5aW42uT/neRzp8xaOwA0Mbn36xvA/+D+I7UW2GOMGf6Pk7X2nHHey3MirqFjCtcw2u9ewAtWk3kvLwU+BSwAtuOaWkc6GfcfyXvGKIMcBBTSZDari/i5m31fNAuBz0b+jxiYj/uyxRjzIWPMSxH7jsD1AwnbPd6LGmNOwtXe3elt+g2wMqLz77wR5xgZpH4DvN/7+QPsC3sLgQygNqJsPwHKvf3zcbUXUzUPaBlRo7IT11cmbOR7mW2MSZ/Ga4VV4pqp2iK2fRHXhNyAa6qeqqB3nx+xLR/XRDvW8SOPxTt+5L6R5+rBBdcHrLX9wLdxtbLLRzznEu+47ZO9iHFU4pqjo2Wiaxx5bHj/aMdO5v36pbV2k7U2iGuye8c0yjEpxpgMoIxJvF/ef9RuttaehPtPw43AL4wxIz/L8Uz1Gkb73Qt6tWeTeS//6P1nrBdX23+i8QaWRLgU+L33fstBSiFNDka7cTVZkf8jzrXW/tar+fgpcA2uP0shrsN2ZBPIRM1Wl3rHv2SMqQOejdgOrm/R/IjjRzZV3A2cZoypwtWohUPablyNX2lEufOttSsi9h8yRpnGK/NeoDjcxBpRpj3jPGem3g284DWLYYw5HNc373Jc/5wvG2OWhg82xvx4lFFr+41otNa24t7byFq+I3F96Ebz+ijH1ltrm719i0e8J5HneoWJfw8gSs1NxpgAcAauz9hkjn99nPfrx95hE13jsEm8t/u9l14z9iGM/X5F/vw6sGpEM+Oq0coxBefhugU8N5UnWWt7rLU34/qLHg7gNWmP9V4+4D11E5Ae+TvL1H/3It/L8d6P8d5LvDLn4AZxqKnzYBfrTm+66TaVG25AwNtxI8jCt3RGHzhwRsTj64Bfez+vwQWa43Fhyg+8E9eccDiuw/FhQBrwYdw/9pd7z72McTpqe+VpwwWNiojbx3EjCdNxTStP4EbJVeH+0a0ZcZ4HcH2QXhyx/c+4gQT5uP9EHQKc6u27wLuuY7zrWgIs9PY9w/4dlavZf+DA33H9zLJxXwj14fcv8r0b47m3AreO8X4Mfy5emSpxffJ68Tqhe9fxNHBtxPNuwA0kmFRn+4jn/XfEe7sMFyzGGt15Nq6G8HBcDcqj7D+68xlcDVk2LlS2sW9052G4GsUzvN+TT+NqMTMjnn8i0EVEx/yIfRY4bYxy3cq+0Z1Z3uf5MG4gSLRHd455jVN5b3G1Vu245sxs3O945OjOj+Ca5RYDubiBKL/y9oVHM37Ku95r2H8042XAjnGuYXjgAK5582Lc7+/1oxz7OAcOHPg37/c0B/f3eSnuP0OLp/he3olrdvTjug+MN7rzKlxf1UpcTfbrHDi6c6z34624ELkaV7P+PUYMYsHVwO9gin8/us2+W8ILoJtukTfvHx474nYDUwhp3uOzgee9L6VaXO1VnrfvRlwzSRNueoInmHxIu8g7X8aI7Tm4prxzvC+p273X3m90Z8Txl3jX9vkR2wuAH+E6+bcDLwIXRey/Cje0P4irATzK234ebvBAG64psZr9g1YVbpRbCy5sXDXOezfyuY8QMRp0RHlPw40sDeICy15cH5kTIo75NK7jdEbEtizcl9io5x3n/c/CDQrpwH1RfyZi3wKvHAsitn3GO64D+CWQNeI6H8c1L21kxKhi4D24kbAd3nErRuz/CaOMwsPVonYwYuRhxP5bcSMFw82ur+NCT+Eox477+ziJ92vMa8SFndcn8956+8/ATaPS452zesT+/8RNjdGI69dYFLHvKGCd99wX8H5vvX3/AdwxzjVY73cr6P3+PgZ8YIxjH+fAkHal99rtuL+P54BzpvFeFgN/8sqyK7IMuAEfwYjHBvimV94W7+fI0Zxjvh/e/n/F1XS34vrbzh+x/0HGGE2r28F1M94HLiJyAK+j/Mu4KUwGEl2e2cAY80FcoPtSossyGxhj/gZ8ylq7IdFlEUk2CmkiIiIiSUgDB0RERESSkEKaiIiISBJSSBMRERFJQjOZrDIplZaW2urq6kQXQ0RERGRC69ata7LWlo2276ALadXV1axduzbRxRARERGZkDFmzOX91NwpIiIikoQU0kRERESSkEKaiIiISBI66PqkjWZgYICamhp6e3sTXZSDUnZ2NlVVVWRkZCS6KCIiIgeNlAhpNTU15OXlUV1djTEm0cU5qFhraW5upqamhkWLFiW6OCIiIgeNlGju7O3tpaSkRAEtBowxlJSUqJZSREQkylIipAEKaDGk91ZERCT6UiakiYiIiMwmCmkHgT/96U+sX79+xud5/PHHOeecc6JQIhEREZkphbSDQLRCmoiIiCQPhbQ4+fWvf81xxx3H6tWr+djHPsbQ0BDPP/88q1atore3l66uLlasWMFrr71GMBjk9NNP5+ijj2blypX8+c9/Hj7P7bffzqpVqzjyyCO55JJLeOqpp7j33nv5/Oc/z+rVq9m6det+r3v33XdzxBFHcOSRR3LKKacAbiDFhz/8YVauXMlRRx3FY489Ftf3QkRERCaWElNwRPrPv34sJuf92jk/GXPfhg0buOuuu/jnP/9JRkYGV199NXfccQcf+tCHOPfcc/nKV75CT08PH/zgBzniiCMYHBzkj3/8I/n5+TQ1NXHCCSdw7rnnsn79em644QaeeuopSktLaWlpobi4mHPPPZdzzjmH9773vQe89vXXX8+DDz5IZWUlbW1tANx8880YY3j11Vd54403OOuss9i0aVNM3hcRERGZnoSGNGPML4BzgAZr7RGj7DfAD4B3AN3AZdbaF+Jbypl75JFHWLduHcceeywAPT09lJeXA/DVr36VY489luzsbG666SbAzT325S9/mSeffBKfz8eePXuor6/n0Ucf5YILLqC0tBSA4uLiCV/7pJNO4rLLLuN973sf73nPewD4xz/+wSc+8QkAli1bxsKFCxXSREREkkyia9JuBX4I3D7G/rcDS73b8cCPvPtpG6/GK1astVx66aV84xvfOGBfc3MzwWCQgYEBent78fv93HHHHTQ2NrJu3ToyMjKorq6e9jxkP/7xj3n22We57777OOaYY1i3bt1ML0dERETiIKF90qy1TwIt4xxyHnC7dZ4BCo0xc+NTuug5/fTTueeee2hoaACgpaWFnTt3AvCxj32Mr3/961x88cV84QtfAKC9vZ3y8nIyMjJ47LHHho9961vfyt13301zc/PweQDy8vLo7Owc9bW3bt3K8ccfz/XXX09ZWRm7d+/mzW9+M3fccQcAmzZtYteuXRx22GGxewNERGapTdva+cWdOxJdDElRia5Jm0glsDvicY23rTYxxZmeww8/nBtuuIGzzjqLUChERkYGN998M0888QQZGRl84AMfYGhoiBNPPJFHH32Uiy++mHe9612sXLmSNWvWsGzZMgBWrFjBtddey6mnnkpaWhpHHXUUt956KxdddBFXXHEFN910E/fccw+HHHLI8Gt//vOfZ/PmzVhrOf300znyyCNZtmwZ//qv/8rKlStJT0/n1ltvJSsra78yr127lh//+Mf87Gc/i+t7JSKSTM6/oJ0NL1QDO/jIRdUJLo2kGmOtTWwBjKkG/jpGn7S/Av9trf2H9/gR4AvW2rUjjrsSuBJgwYIFx4RrnsI2bNjA8uXLY3MBAug9FpGDz6Zt7Ry2JA+sj9PO2cJjf1mS6CLJQcgYs85au2a0fck+BcceYH7E4ypv236stbdYa9dYa9eUlZXFrXAiInLw+snt9WDd1+Qzj1XS1T2Q4BJJqkn2kHYv8CHjnAC0W2tnVVOniIjMTn/9Uw4AvrQhertyuOMPB9QRiMRUQkOaMea3wNPAYcaYGmPMR40xVxljrvIOuR/YBmwBfgpcnaCiiohICtm0rZ1Nr1SSnjHAey/bAsCdvxtMcKkk1SR04IC19v0T7LfAx+NUHBEREQB+dXcD2AJWv2kHn766mN/9HJ59oiLRxZIUk+zNnSIiInG3ZUsIgFWrBzhudSkZWX10dwSob+pJcMkklSikiYiIjLB3TxoACxf68PkMReUdALyxpSORxZIUo5AWJ4FAIOrnrK6uZuXKlaxevZrVq1fz1FNPHXDM5Zdfzvr16yd9zscff5xzzjknmsUUEZl16mvd3JGLqjMBKKvoBmDzdtWkSfwk+2S2MoHHHntseC3PkYaGhqI2Ge3g4CDp6fp1EZHU0FTvB+DQRe6+Yl4/rwPbd/QnsFSSalSTlkB/+ctfOP744znqqKM444wzqK+vB+BTn/oU119/PQAPPvggp5xyCqFQaFLnDAQCfPazn+XII4/k6aef5rTTTmPtWjf379/+9jfe9KY3cfTRR3PBBRcQDAYB+L//+z+WLVvG0UcfzR/+8Ifhc1133XVccsklnHTSSVxyySXRvHQRkaQ1NBSirTEfgGVL3H1lpfs3eNfuxE4AL6kl9UKaMbG5TcPJJ5/MM888w4svvshFF13EN7/5TQC+8Y1vcNddd/HYY4/xyU9+kl/+8pf4fKN/VG95y1tYvXo1xx/v1p3v6uri+OOP5+WXX+bkk08ePq6pqYkbbriBhx9+mBdeeIE1a9bw3e9+l97eXq644gr+8pe/sG7dOurq6vY7//r163n44Yf57W9/O61rFBGZbXbsDjI0mE5ufpCCPNfcuWCB+zd4T01aIosmKUbtVwlUU1PDhRdeSG1tLf39/SxatAiA3NxcfvrTn3LKKafwve99b7+1OEca2dyZlpbGv/zLvxxw3DPPPMP69es56aSTAOjv7+dNb3oTb7zxBosWLWLp0qUAfPCDH+SWW24Zft65555LTk5OVK5XRGQ2eGNbEMinpDwIuP7Ei6szAKjfm5m4gknKSb2aNGtjc5uGT3ziE1xzzTW8+uqr/OQnP6G3t3d436uvvkpJSQl79+4FXP+y8ACBr371q2OeMzs7m7S0A/+nZ63lzDPP5KWXXuKll15i/fr1/PznP5+wjH6/fxpXJiIye23d7v4tLpu7b5DA0sW5ADTW5yakTJKaUi+kJZH29nYqKysBuO2224a379y5k+985zu8+OKLPPDAAzz77LOkpaUNB6xwf7WpOOGEE/jnP//Jli1u5uyuri42bdrEsmXL2LFjB1u3bgVQs6aIpLztO9zKAnPn7VurM9w3rbUhn1BI/dIkPhTS4qS7u5uqqqrh23e/+12uu+46LrjgAo455pjhJktrLR/96Ef59re/zbx58/j5z3/O5Zdfvl8t23SUlZVx66238v73v59Vq1YNN3VmZ2dzyy238M53vpOjjz6a8vLyMc+xevXqGZVBRGQ22F3j7iur9oWx0qJssnJ7GOzPpKauK0Elk1Rj7DSb6pLVmjVrbHg0Y9iGDRtYvnx5gkqUGvQei8jB4sSztvL0Q4dw4w+28OVPLhnePm9RA7U7ynnwiVrOOmVuAksoBxNjzDpr7ZrR9qkmTUREJEJDbTYAi6uz9tsentA23GdNJNYU0kRERCI0exPZHrZ4/0ECFZWuj9q2nQMHPEckFhTSREREPP39Q7Q3u0EChy7O329flTeh7W5NaCtxopAmIiLi2barExvyESjsxJ+bsd++hQvdV2btHk1oK/GhkCYiIuKpbegDIL+o+4B9FeUutLW1ah54iQ+FNBEREU84pOUVHLiQenmZC2ed7Vp1QOJDIS2ObrzxRlasWMGqVatYvXo1zz777IzPeeKJJ466/brrruPb3/72jM8vIpJKGprcRLb5BQcODqgoc6M9gx1ZB+wTiQXV2cbJ008/zV//+ldeeOEFsrKyaGpqor//wP+pTdVTTz0VhdJNzuDgIOnp+pURkYNXU9MQAPlFQwfsm1fh1jHu6siOa5kkdakmLU5qa2spLS0lK8v9D6y0tJR58+axbt06Tj31VI455hje9ra3UVtbC8Bpp53Gpz/9adasWcPy5ct5/vnnec973sPSpUv5yle+MnzeQCAwpXKcf/75HHPMMaxYsWK/hdR//vOfc+ihh3LcccdxxRVXcM011wBw2WWXcdVVV3H88cfz7//+7zN9G0REklpzsxvBWVwUOmBfRakLad3BHIaGDtwvEm0pF9KMic1tImeddRa7d+/m0EMP5eqrr+aJJ55gYGCAT3ziE9xzzz2sW7eOj3zkI1x77bXDz8nMzGTt2rVcddVVnHfeedx888289tpr3HrrrTQ3N0/r+n/xi1+wbt061q5dy0033URzczN79+7l61//Os888wz//Oc/eeONN/Z7Tk1NDU899RTf/e53p/WaIiKzRUuruy8uOXBfZmYa2f4esD7qm3oOPEAkytR2FSeBQIB169bx97//nccee4wLL7yQr3zlK7z22muceeaZAAwNDTF37r6lRs4991wAVq5cyYoVK4b3LV68mN27d1NSMsq/IhO46aab+OMf/wjA7t272bx5M3V1dZx66qkUFxcDcMEFF7Bp06bh51xwwQWkpWnIuYgc/FpbXN1FSfHo//v25/fQ25XD3vpe5s3xx7NokoJSLqQlcqnStLQ0TjvtNE477TRWrlzJzTffzIoVK3j66adHPT7cNOrz+YZ/Dj8eHBzc79hrr72W++67D4CXXnpp1PM9/vjjPPzwwzz99NPk5uZy2mmnTWrhdr9f/xCJSGpob3P/IS0tGf0/pv78Ppproa5BS0NJ7KVcc2eibNy4kc2bNw8/fumll1i+fDmNjY3DIW1gYIDXX399Wue/8cYbeemll8YMaADt7e0UFRWRm5vLG2+8wTPPPAPAscceyxNPPEFrayuDg4P8/ve/n1YZRERmu/Y2NxdaeVnGqPsLCt2Ar4YmLQ0lsaeQFifBYJBLL72Uww8/nFWrVrF+/Xquv/567rnnHr7whS9w5JFHsnr16qiO1rzhhhuoqqoavp199tkMDg6yfPlyvvjFL3LCCScAUFlZyZe//GWOO+44TjrpJKqrqykoKDjgfHv37uUd73hH1MonIpJswnOgzSkdfS60/ELXitHQdODoT5FoMzaR7X8xsGbNGrt27dr9tm3YsIHly5cnqESzQzAYJBAIMDg4yLvf/W4+8pGP8O53v3vSz9d7LCIHg8KydtqbCnh1YxtHHFp4wP5zLtrEfXcdyueu28S3vnZo/AsoBx1jzDpr7ZrR9qkmTQA3+e3q1as54ogjWLRoEeeff36iiyQiEnfdnW6ajco5OaPuLyp2FRtNzQdXBYckp5QbOCCj0+oEIpLqOoL9DPRlkpY+QEHe6M2dxd6oz5aWScy9JDJDKVOTdrA16yYTvbcicjCoa3Bzn+Xm9+DzjR7Cykrd9vbWlPn6lARKid+y7OxsmpubFSZiwFpLc3Mz2dlaJkVEZre99W5aDX/e2NNrlJW4Bqj2NjVESeylxG9ZVVUVNTU1NDY2JrooB6Xs7GyqqqoSXQwRkRmpa3TTa+QVjL2ucnhqjo720afoEImmlAhpGRkZLFq0KNHFEBGRJNbozX2WXzj2HGgVZW5i8c72rDGPEYmWlGjuFBERmUijN/dZYdHgmMdUlLuuHV0d6uIhsaeQJiIiAjS3hAAoLBq7//Lc8lwAeoK5DA2F4lIuSV0JDWnGmLONMRuNMVuMMV8cZf8CY8xjxpgXjTGvGGM03b2IiMRES7O7Lx4npGVnpZGV24MN+Whs0fqdElsJC2nGmDTgZuDtwOHA+40xh4847CvA76y1RwEXAf8vvqUUEZFU0epNq1FSMv4caP58N1VHbX1PzMskqS2RNWnHAVustdustf3AncB5I46xQL73cwGwN47lExGRFNLWmgZAaUnauMcF8vsA2NvQF/MySWpLZEirBHZHPK7xtkW6DvigMaYGuB/4xGgnMsZcaYxZa4xZq2k2RERkOjq8uc/KS8ef+CA8RUdD49hTdYhEQ7IPHHg/cKu1tgp4B/ArY8wBZbbW3mKtXWOtXVNWVhb3QoqIyOwX7HBLQZWVjr4kVFh+oRv92dA09ihQkWhIZEjbA8yPeFzlbYv0UeB3ANbap4FsoDQupRMRkZTS3eUmqC0tHj+kBQJuVGdHh0Z3SmwlMqQ9Dyw1xiwyxmTiBgbcO+KYXcDpAMaY5biQpvZMERGJut5uN0FtSdH4IS0v34Wz9g4tNSixlbCQZq0dBK4BHgQ24EZxvm6Mud4Yc6532GeBK4wxLwO/BS6zWoBTRERioLfLhbSy4vEnqs33hrN1dMS6RJLqEroslLX2ftyAgMhtX434eT1wUrzLJSIiqaWre4ChwQzS0gfJzRn/qzE/303R0dEx/lQdIjOV7AMHREREYq6xxU2nkZXbi883fvgq8EJasFMhTWJLIU1ERFJec6sLaTn+iafVKCxwX53BzvHnUxOZKYU0ERFJec2tLpxNLqS5cNbdpZAmsaWQJiIiKa+lzc15lusfmPDYokLXZ60rmNBu3ZICFNJERCTltbaHQ9rQhMcWF7r51LqDGTEtk4hCmoiIpLz2djf3mT9v4pBWUuym6ujtHn8+NZGZUkgTEZGU197uwll4NYHxlHqT3fZ486qJxIpCmoiIpLz2djdPeng1gfGUFLnJbvt6shga0tJQEjsKaSIikvLCqwfk5018bEa6j8zsPrA+WjsmHg0qMl0KaSIikvI6vYlpw6sJTCQr182r1tTcG7MyiSikiYhIyuvsdF+HBYWTC2k5ua4GrbV94ik7RKZLIU1ERFJe0Atp4YlqJ5ITcCEtPAmuSCwopImISMoLT0xbNMmQ5ve7edVavUlwRWJBIU1ERFJe93BIm9wqAv6AF9LaJ55XTWS6FNJERCTldXe51QOKi0ZZRWBoCK6+Gr761eFN/jw39UabQprEkBYeExGRlBdePaCkcJRVBP7rv+BHP3I/v/e9sGoVgeGQZuNVRElBqkkTEZGU19vtVg8oLR6xisAzz8B//ue+xzfdBEBengtnHR0KaRI7CmkiIpLSBgZD9Pe4VQSKC0eEtK99zTV3XnABGAN33AFNTeTnu90d7XEurKQUhTQREUlpLW1uYtqsnF7S0iK+Fq2F555zP3//+/COd0BvL/z0pxR4k94Gg5ObV01kOhTSREQkpTW1upCW7e/bf8e2bdDWBhUVMG8efOQjbvujj1JQ4L4+w/OricSCfrtERCSlhSekzfGPmJh23Tp3f8wx7n71anf/2mvD86kFg5ObV01kOhTSREQkpbWMFdLWrnX34ZBWXQ25uVBXR3FaD7BvfjWRWFBIExGRlBZeNSDXP2L1gJE1aT4fHH44AKWtewHoDo4yr5pIlCikiYhISmttcxPS+gMRE9NaCy+84H4OhzSAI44AoKRuG7BvElyRWFBIExGRlNbW7iamDeRFhLTwoIE5c9yggbAVKwAoqdkI7JtfTSQWFNJERCSltXsT0gbyIiamjaxFMxHTbHg1acXbXgWgt0shTWJHIU1ERFJapxfS8gIRIW2jqykLh7JhXk1azoYX8aUNMTSYQVf3QDyKKSlIIU1ERFJaMOjuA3kRG3fudPfV1fsfXFUF+fn4mpvIyu4FoK1jxKhQkShRSBMRkZTW3e2aM/3+iGbNcEhbsGD/g40Zrk3LTXchrbVDNWkSGwppIiKS0rq73VdhYLSQtnDhgU847DAA/GndALS1qyZNYkMhTUREUlqPV5OWn+d9JVoLu3a5n0cLaVVVAARMFwBt7apJk9hQSBMRkZTW3eWWdsoLeEs8NTa6hdSLiiAv78AnhEOadSGtvXPowGNEokAhTUREUlpvjwtnwzVpY/VHC/NCWl6oE4CODoU0iY2EhjRjzNnGmI3GmC3GmC+Occz7jDHrjTGvG2N+E+8yiojIwa23x62/mZfnrcM5Xn80GA5pBYPtAHQEFdIkNhK2MqwxJg24GTgTqAGeN8bca61dH3HMUuBLwEnW2lZjTHliSisiIgercEgrCIe08fqjwb6Q1tsKQGenHf04kRlKZE3accAWa+02a20/cCdw3ohjrgButta2AlhrG+JcRhEROcj197r1N/PzvHU4J2ruLC6G7GzyB9sA6AwqpElsJDKkVQK7Ix7XeNsiHQocaoz5pzHmGWPM2aOdyBhzpTFmrTFmbWNjY4yKKyIiB6O+HhfOCvNHhLSxatKMgcpKArhZcIOqSZMYSfaBA+nAUuA04P3AT40xhSMPstbeYq1dY61dU1ZWFt8SiojIrNbfmwlAYb67nzCkAVRV4ceN7gx2xbJ0ksoSGdL2APMjHld52yLVAPdaawestduBTbjQJiIiMmP9/W79TUyIQO4ka9IAqqqGa9K6gmbs40RmIJEh7XlgqTFmkTEmE7gIuHfEMX/C1aJhjCnFNX9ui2MZRUTkINbqrbuZmd2Pz2egsxNaWyErC8ZrmYkIaeEVC0SiLWG/WdbaQeAa4EFgA/A7a+3rxpjrjTHneoc9CDQbY9YDjwGft9Y2J6bEIiJysGn3QlpWjre00x6vQaeyEnzjfEVGhrQuhTSJjYRNwQFgrb0fuH/Etq9G/GyBz3g3ERGRqGrzFkfPyvaWdmrwJhGoqBj/iapJkzjQb5aIiKSs4ZCWM+g21Ne7+zlzxn9iREjr6UpofYccxBTSREQkZXV6qwVkTyOkhUd3hifDFYk2hTQREUlZHZ0unE05pJWX40/rBaBXNWkSIwppIiKSsjqDIQBycrz1Nycb0nw+/MVuXrX+7oxYFU9SnEKaiIikrOGQluvuJx3SgEBZDgB93mS4ItGmkCYiIikrGA5pfm9pp6mEtLl5APT3ZTE0FIpJ+SS1KaSJiEjKCroBmuTmTj2kpc8pI4duLD46ggMxKqGkMoU0ERFJWV1dLpz5cy1YO6WQRlnZ8AjP1vb+WBVRUphCmoiIpKyubncfyMNVq/X0QE4OBAITP7m8fHiutPDKBSLRpJAmIiIpq7vLLY7u95v9a9HMJBZNLysbDmltHYOxKqKkMIU0ERFJWV3eupuBkSFtMiJq0sIrF4hEk0KaiIikrJ5uV2OWF/BNPaRF1KS1dwzFoniS4hTSREQkZfV0pwHTDGkRNWkdnQppEn0KaSIikrJ6e7yQlpcGDQ1u4xRq0sKjOxXSJBYU0kREJGX1eIuj5wfSpl6Tlp+P3+eGhwZb1SdNok8hTUREUlZfOKTlZ0w9pBlDTrabeqO7sScWxZMUp5AmIiIpq6/HLY5emJc+9ZAG5OS6Zs6eRs2TJtGnkCYiIimrv9eFtPy8TGhsdBvLyib9/JyAW7Ggp03zpEn0KaSJiEjK6u/NBKC4MBOam93GkpJJPz+30E3h0dNmo142EYU0ERFJSQODIQYHMsCECGT5oLXV7SgunvQ5cgpcn7bezkmsUCAyRQppIiKSktra+wDIzO7H19EOoRAUFEB6+qTP4S/JAqC3S1+nEn36rRIRkZTU2u46+2dmD+xr6iwtndI5cstyAOj1BiCIRJNCmoiIpKTweptZ2f3T6o8GkDvHD0BvX2ZUyyYCCmkiIpKiOjrdiMysnMFph7RART4APQNZUS2bCCikiYhIimoPupCWHY2QNpgd1bKJgEKaiIikqE5vvc3snKFph7SCKnd8dyg3qmUTAYU0ERFJUZ1BF9JycoegqcltnGJIy5/vBhp021w3OlQkihTSREQkJXUGXajKiaxJm+LozqJiV4PWhZ9QW3tUyyeikCYiIikpGHSrBOQG7LSbOzMz08ikD4uP7j0N0S6ipDiFNBERSUnBLleTlps7/ZAGkOvrBqC9pilqZRMBhTQREUlRXUF3759hSMtO6wWgc29blEom4iikiYhISgp2uXt/gJmFtHQvpNV2RKlkIo5CmoiIpKTuLrcouj+XaY/uBMjJdGuABhs6o1U0EUAhTUREUlR3twtpeZmD0N8P2dmQO/X5zrKz3PJSXU29US2fSEJDmjHmbGPMRmPMFmPMF8c57l+MMdYYsyae5RMRkYNXd7f7Ciygx22Y4vQbYVk5LqR1t/RFpVwiYQkLacaYNOBm4O3A4cD7jTGHj3JcHvAp4Nn4llBERA5mvd1pAOSH3OjM6TR1AmTnuklxe9r6o1IukbBE1qQdB2yx1m6z1vYDdwLnjXLc14H/AVSPLCIiUdPT40JawZA3zHO6Ic3v5lvr7tCKAxJdiQxplcDuiMc13rZhxpijgfnW2vvGO5Ex5kpjzFpjzNrGxsbol1RERA46veGQNuCNypxuSMt3fdt6NW5AoixpBw4YY3zAd4HPTnSstfYWa+0aa+2asrKy2BdORERmvb6eDAAK+73lnKYZ0rLy3VdpjzdaVCRaEhnS9gDzIx5XedvC8oAjgMeNMTuAE4B7NXhARESioa8nHYD8vja3Ybo1aYXuPD1eHzeRaElkSHseWGqMWWSMyQQuAu4N77TWtltrS6211dbaauAZ4Fxr7drEFFdERA4mfb2uJi2/x5vItrh4WufJKc4EoKcvA0LqlybRk7CQZq0dBK4BHgQ2AL+z1r5ujLneGHNuosolIiKpob/Xhav8bi+kFRVN6zyBfFeD1k0udGjVAYme9ES+uLX2fuD+Edu+Osaxp8WjTCIicvAbGAwx2J8JJkRupzfgrLBwWufyB1xftC780NIy7fOIjJS0AwdERERipa3dTTybmTWAr63VbZxmTVqe332VdpO7bw1QkShQSBMRkZTT1uFWCcjM7ofWGYa0gGvuHK5JE4kShTQREUk57Z0upGXlDMw4pOXnua9ShTSJNoU0ERFJOcMhLXvmIS3gj6hJU3OnRJFCmoiIpJyOzkEAsrMHoKcH0tIgEJjWufLz3VQeXfihrS1aRRRRSBMRkdTT0ekWRc/N9BZFLyoCM70VAwrz3EQJXfj31cqJRIFCmoiIpJzOoJt01p/hRnlOt6kTID/PzbemkCbRppAmIiIppzPoatL8aTMPaUUFCmkSGwppIiKScoJeTVrA1+s2zCCk5fkzMCZEH9kMtmrFAYkehTQREUk5wS53H/D1uB9mENJ8PkNmhuvb1tXUPdOiiQxTSBMRkZQT7LQA5DHzkAbepLhAV2vfjM4jEkkhTUREUk6XV+GVFwq6H2Yc0ty8a93tgzM6j0gkhTQREUk5XV1uuo38aIW0XBfOuruAQQU1iQ6FNBERSTk93S6k5Q12ug0zDGnZOW60aBd+aG+f0blEwhTSREQk5XR3u6+/vAEvUM04pLnaM03DIdGkkCYiIimnp9utt1nQN7N1O8Oyc11NWje5CmkSNQppIiKScnp7vJq03ha3YYYhLSfXzbum9TslmhTSREQk5fR2u/U2A11NbkNh4YzOt19IU02aRIlCmoiIpJzeHhfS8roa3IYZ1qT5c928awppEk0KaSIiknL6ejMAyOtpAp8P8vJmdL4chTSJAYU0ERFJOX09LqT56XJNnb6ZfR36c929+qRJNCmkiYhIyunvzQS8kDbDpk4Af8DdqyZNokkhTUREUsrAYIjBfhfScuiJSkgL+N3XqUKaRJNCmoiIpJT2TrcYelZGLz5sdEJawK1goHnSJJoU0kREJKW0t7uQlp3R6zZEIaTlBSJq0tQnTaJEIU1ERFJKW+cAALnpPW5DVEKaW8FAzZ0STQppIiKSUjo63TqbuWlRDGl5CmkSfQppIiKSUtrDNWm+KIY0f0RIa2uDUGjG5xRRSBMRkZTS2ekWQ/fT7TZEIaQV5Ll514LG7wJaMDjjc4oopImISErpCLqQFqDLbYhKSHPLTHXhTZimJk+JAoU0ERFJKZ1Bt4RTIBS9kFZY4OZd68LvNiikSRQopImISEoJN3fmDXW6DdEIaflZAPTYHCwopElUKKSJiEhKCXoVaHmDHe6HKIS07Kw00tIHGSKdfjI1V5pERUJDmjHmbGPMRmPMFmPMF0fZ/xljzHpjzCvGmEeMMQsTUU4RETl4dHW55s68gXa3IQohDSAj202Sq2k4JFoSFtKMMWnAzcDbgcOB9xtjDh9x2IvAGmvtKuAe4JvxLaWIiBxsuryBl3kDbWAM5OdH5bxZ2W5qD4U0iZZE1qQdB2yx1m6z1vYDdwLnRR5grX3MWuuNkeYZoCrOZRQRkYNMd7dbZzNAEAoKwBedr0KFNIm2RIa0SmB3xOMab9tYPgo8MNoOY8yVxpi1xpi1jY2NUSyiiIgcbLq8kOanK2pNnQBZ2W4lA63fKdEyKwYOGGM+CKwBvjXafmvtLdbaNdbaNWVlZfEtnIiIzCo93e6rL+ohLScipKkmTaIgPYGvvQeYH/G4ytu2H2PMGcC1wKnW2r44lU1ERA5SsQppObluao9uchXSJComFdKMMV8dbbu19voZvPbzwFJjzCJcOLsI+MCI1z0K+AlwtrW2YQavJSIiAkBvt1tn04W04qidNzvHhTRXk7Y3aueV1DXZ5s6uiNsQbkRm9Uxe2Fo7CFwDPAhsAH5nrX3dGHO9MeZc77BvAQHgbmPMS8aYe2fymiIiIr09rn4i2jVpubluUXX1SZNomVRNmrX2O5GPjTHfxoWrGbHW3g/cP2LbVyN+PmOmryEiIhKppzs2IS0n182/pj5pEi3THTiQi6bDEBGRWaivNwOIQU2aP6ImrbUVrI3auSU1TbZP2qtA+LctDSgDZtIfTUREUsQdf9zFP57qwZcGn7h8DsuWFCa0PP0xCml+b231oC8P+vuhpwdyc6N2/qm4+dZtvPLaAIGA4ROXz6O6KpCQcsjMTHZ05zkRPw8C9V6fMhERkTFd953N/Ofnlg4//ssfatnwkh9/bkbCytTfmwnEok+au+/MLIJeXL+0BIS0H/1qO9d8ePHw4zt+2ci6Zw2VFf64l0VmZlLNndbanRG3PQpoIiIykdvu3snXv+DCwunnbaa4ooXdm+dy2TXbElamoaEQA30upOXSHeWaNDdJbmeGt8xUAvqlbd7ewec/4eYLPfGsrVQsbKR+VxlvPbuFru6BuJdHZmZWTGYrIiKzS7BrgH/7eAGhoTTe99GNPPynpfzyth58viHu+eVhPPBYYqaoaO90i6DnmC582KiGtIAX0oLpXtNiAkLapR9rpKs9wBHH7eTJ+xfx8EMZFJS2s+nl+XzpxsSFY5kehTQREYm6r31rO22NhcxbVM9vfuKaO889q5JzLtoKwC2/DCakXG0drjbJj7csdBRDWl7AfaUGfXluQ5xDWn1TD889tgBMiDt/XUBamo8VSwv55vdcOX5xcyUtbb1xLZPMjEKaiIhEVXtnPz/93woAvviVLtLS9n3VfPRS1y/q8f8rZ2goFP+ydbiaND9dbkMsQprx+n7Fea60X/x2D0ODGRy2eg8rlhYOb7/8AwtZdPgeutoDfPnGnXEtk8yMQpqIiETV9d/ZQWdLPgsOreXjly3ab987T59LYVkbbY2F3P9oXdzL1t7pulQHrFeTV1AQtXPn5bmVDIJ4gwXiXJP2x9+7r/R3ndez33afz/C169x1/+onVXQE++NaLpk+hTQREYmaUMjym1td7dS/fbYbn8/stz8tzcepb3Or/N3+2864l6/DC2l+ulxAS0uL2rnzA+5cXTb+Ia2ptZcXn3LLYV9xyZwD9l/yLwuoXraX7k4/N/1MtWmzhUKaiIhEzT331VC3s4y84g7+9dLqUY+55P0uxDz6QBmhUHwnfG0PRoS04uit2wmQn++mFekO5bgNcQxpt965h8GBDJasrOHQxQfWDvp8hks+7Jp4b/15YuZuk6lTSBMRkaj54f/rA+DcC2rJzhq9lur8t80jJ9BFS10xG7a2x7N4dHS4RdCjPUcaQH7ATT3aPeiFtDj2SXv8CXddp7+ta8xjPv2xBWTl9rD1tUoef7o+XkWTGVBIExGRqNhdG+SphxeCCfHv/1Y+5nFpaT4OObwJgEeebIlX8QDoDLqau1iEtII8V5PWM5jtNsSxJm39K27ajzefmDPmMUUFWZx57m4AvnNTfMOxTI9CmoiIRMVNP93L0GAGq47fxapl4wegVUe5qSCefia+E6wGg25EaYBg1ENaYb6bJLdvMMttiFNI6+kdZNdmN4HtGW8uG/vAwUE+c7UbefrIXys1ue0soJAmIiJR8fs7XW3OBy8ZmvDYNx3vAs2rL2fHtEwjBbtcSItJn7SAq0nrH8gihIlbSHvimUaGBjMor2piTukoNWlbt8KHPwxFRbzlXStYVrCRnqCfW369Ky7lk+lTSBMRkRl7el0j2zfMIyu3h499aP6Ex5/xZleLtXVDfAcPdHldtmLR3JmW5iMjy/XJ6yY3bn3SnvinGyW7bOUor9fcDKefDrfeCsEgtLdzVfv/A+C3t2iFx2SnkCYiIjP2w5+6vmUnn1VDfsDVkrFlC9x+O9x9N9TU7Hf8oYsLyCvuoDeYy9pXmuNWzliGNIDMbNeE2IU/bjVpz69105wcfcyIyYGHhuDii2HnTjj2WNi4EV5+mQuP3Uw6A7yw7hC2/WN9XMoo06OQJiIiMzIwGOL+P7i5uS6/LAs6OuDqq2HZMrj0Unjf+9zPd989/Byfz7B0hQtnj/4jfp3Yu7pcoIlVSMvKcRPFBk2eS4QDse/39carbkH3k08cMbXGbbfBgw9CSQn8/vdw6KGwahUVj93N6QVPMEQ6d114b1zKKNOjkCYiIjNy559209ZYSMncFi44OQBnngk/+hFYC+eeC6ec4gLL+94HP/7x8PNWH+UCzXPPx6/Zrbs7IqRFuU8aQFa2u5ZgnjehbIxr09o7+6ndXorPN8QZJ0eMqLUWvv999/N3vwvzI5qg/X7O+bpbtuu3e99B6GvXxbSMMn0KaSIiMiM/+4WriTn3vFrS3n42PPccVFfDyy/Dn/8Mjz8O3/mOO/jzn4e9ewE4/lg3CnLj62NPGxFtPd3uay9mNWleSOv0e6MsY9wv7am1TYRCacxZ0ExBXua+HU8+Ca++CnPmwIUXHvC8j16xjEBuB6+yipe+8QC88EJMyynTo5AmIiLT1tjcw9OPLgDg39tug+efh0WL4Ikn4Igj3EHGwGc+A+ef7zqvf/7zABxzZB4Ae3flx628sQ5p2bleTVpuidsQ45q0l19363QuWBzcf8f//q+7/9jHICvrgOflZKdz2nlu7dTb+RBccw2E4r/gvYxPIU1ERKbtf39ew0BfJkce8gbL7vwWZGTAH/4ACxYcePB3vwvZ2fCb38Bzz7HysELS0gdpayykvTM+i373drtVEGIW0nJc0OnM9ppSYxzS3njDhcLFSyL6lTU2wp/+BOnpLqSN4eor3JQpd5iLGXj6efjVr2JZVJkGhTQREZm2O+9wTZWfqPuB2/CNb8Dq1aMfvGgRfPzj7uef/pTMzDRK57kQ88KrcZr4tdst3RSrPmk5uW6OuM5Mb/3MGIe0rVtc6Fx2WMTX+f/9nxvZefrpMG/emM9926lzmVvdQJMt4wHeDv/+79CulQiSiUKaiIhMy9pXmtn8ShW5vi4u7PqVCwWf/vT4T/roR939XXdBdzdV1a6Z7qXXguM8KXp6e7yaNNMNeXlRP39urqtJ6wiHtBj3Sdu1w60gsPLwiH5999/v7t/+9nGf6/MZ3n2hC5E/Kfg4NDTAddfFopgyTQppIiIyLT/4sVt/832h3xEoznJTPvgm+FpZvhyOPx46O+GPf2TRIa6Zc8Mb8Rnh2e/VpOXm+yYu6zTk5LqJeTvTvAAYw5q0UMhSv8s12R6zqtBtHBpy024AvOMdE57j3z42F+ML8WDwdJpMqevL9uqrMSqxTJVCmoiITNnQUIj77ywF4DJuhZ/9DCorJ/fkyy5z97feymGHuq+hLV6zXaz197ilm/wFGTE5v9/vQlpHmuvvFcuQtn1XJ3092eQEuqiqcDVqPPuse81DDoGlSyc8x9JF+aw6fhdDQ+ncsuZGF/KuvtpN4SEJp5AmIiJTdtsdW2lpLaGa7Zz8kUPh3e+e/JMvvBAyM+GRR1g133V437U9PtNw9PW5aSr8JQeOeIwGvzefbCdeaIphSFv3qus/VrGgDZ/Pzf/GAw+4+0nUooWF11r9UeO7CJWVwz/+4VaKkIRTSBMRkSn75RfdMlAfLfotaT/43tSeXFQEJ58M1rKm1TWt1e4qiHYRDzA0FKK/3y3o7i/NneDo6cnNdWEpiHf+GPZJe3V9LwALFvXs2/i3v7n7CfqjRfrXSxcQKOqkZsdc7r3YGwDyuc9BS0u0iirTpJAmIiJT8vwP/8o/ao8nh24+fMepEAhM/SRnnglA9YsPkZnTS3dHgN21sR080BF0tXY5dJNWHP3pN2DfWxHEhcFY1qRt3OgGKSxZ6mrC6O2FF19089KddNKkz+PPzeBfPuAmGP6vF4+DU0+Fpib48pejXmaZGoU0ERGZvNpafv65WgDOWfEUlW+ffBjYjxfSfA8/RMV8F2TWvdIWjRKOqa3DDVKI1RxpAIGA+1oNDsU+pG3b6ppulx/mBkPw0ktuHc7lyyF/ahME/8fn5pKWPsjzT1bz8me+7eZYu+UW18dNEkYhTUREJmdwkD3nX8ntfRcD8PGfrJj+uY46yi38vWsXi8pds9prG3omeNLMtHe6mrRYzZEGkOeFtK5Bb4mmGIa0PTtdtd3Kw72m1XCgOv74KZ/rkOp8Tn7bDrA+vnxHvmvutBauuMLV0ElCKKSJiMjkfP7zfPO5M+ghl+PftIlTT5o7/XP5fHDGGQAcGtoFwI6dsV2WqL0jIqTFqCZtX0jzBibEqE9aKGRpqXe1ZauWe/35nnnG3Z9wwrTOecPX8sGEePAPi3nlvR+HJUvcdBxf/GI0iizToJAmIiIT+8EP2P39e/gxVwHwjW9HoaO/1+R5WOt6AHbtjO1XUnuHm4stliEtP881Pfb0ezVp7e0xWRNzT30X/b1ZZOX2UFE285o0gJOPLefUt29jaDCdz9zQ45bvSk+HH/wA7r03SiWXqVBIExGR8f3yl/DpT3MtN9JPFieetZW3nDhn5uc9+WQADq1bB0Dd3syZn3Mc7UEX0gIEY1iT5uZ76+1Nd/3CrI3JUksbNncCUDKnw21obITt2yE3F1ZMvxn6298owucb4rF7F/PYwAK48Ua34+KLXZ83iauEhjRjzNnGmI3GmC3GmAPqU40xWcaYu7z9zxpjqhNQTBGR1GQtfP/78JGP8KA9k1/xIdIz+/nBtwqjc/6lS6GwkEWtrwDQUBubaTHCgp2uRiuWfdIK8twkuX09GVBY6DbGoF/a5m2u/175XK8fX7gW7dhjXe3XNK1ZVcI7LtxKKJTGhz86RP+nPgMf+AAEg3DOObBly0yLLlOQsJBmjEkDbgbeDhwOvN8Yc/iIwz4KtFprlwDfA/4nvqUUEUlRnZ3wwQ/Cpz9NJwEuzbsNgMs/uZ01q0qi8xo+Hxx7LAtwfdJa6vMJhWI3031H0E1VEcvmzgKvubOvJ2Pfa8SgX9q2Ha5WcG6lG7HK2rXu/rjjZnzuX968gMKyNna+MY9Pf20r/Pzn8OY3w5497v6VV2b8GjI504/bM3ccsMVauw3AGHMncB6wPuKY84DrvJ/vAX5ojDHWJm69io3/2Mg3r1g/4XFTLaA54IeZM5GliNp5R17ZzE9sRnu3zFTfw/2PjuLbuO+csTjpAVc52lVP7YWNmfqfx0TPmM45JxKTtzMm5ZzcOUc9aoyLnNG1+wyhjHRsRjo2MxOyssjwZzKnOovK5QUcsqyQo1cWUZA3zabD/n644w649lqorWUgN5+zKp+kfnMF85fW8oMbl8yk9Ac67jjyH3qIQEYnwb489tQHmT93GvOuTUIw6D6l2PZJczVp/X0RIS0GNWm7drlrmb/A+80Lr7e5atWMz11alM03v1fHlR8s5MffWsKxR9dw2X33wfnnw6OPwpveBN/7nhv5OcV/GEMhy8at7azfEmTHzj527xmkee8AAw099HcM0d9l6ev2MdgL6UOD+OwQaYTwRdzSrLs3xmKwGIN3794L95iIxxaM2e9YDPiwWGNG/PtmRvyBGv7nwZMpXVA6k7d02hIZ0iqB3RGPa4CRvR2Hj7HWDhpj2oESoCnyIGPMlcCVAAsWLIhVeQHYu6mJX7wxheVPRETizMcQi7K2sKxwB6vm1/HWY7s55ZRiMhfNh6oqKC+HDG/tyr4+2L3bfck/9hjcdRc0NAAwsOZ4zi/8Cc88fCS5+UH+cE8mmZlRXmPTq/mpStvDGwPL2LC5c1aHtKICN6qzvzczpiFtT437+q5e6H0e4ZC2cmVUzn/FxdU8+vhG7vzZYVx12RzK/trCO++7zwWzX/8aPvYxt17rl77klqDKGn2Zrd21Qe75Sz1PPtTLllcy2bGrgmBvIVAYlXLGw1ead6RkSIsaa+0twC0Aa9asiWktW/VRlXzljLujek6LiXoFgN3vvwLROLnBWjNyy4zPakerU5jmacNnGvPp067e5IBrj4bJ1AdP9VVnUs6xnjnqZzR2ASZ32FSvLHzacZ42nWuf6Hc4Ju+nneiIMUvj7kIhzMAA9A9AXx+mv5++bmgIFlDXU0qNrWILS9jat4St9Uu4rx6+sRYCP+rkFJ7kTH7LWfyNZWmb8WHdgtojrVjBjsu/wDvvOIX1Dy8kPWOAX9/VxppVVVMs8yR4IW1x/zbeYBmbt/Vw1inRfxmALm90Z67pmd4qCZOQk52OL22I0FAavYEit+5ADEJa/V43We6SRVnQ3e36iqWlwbJlUXuNX/94Kbt2beWpvx3C+WeX8aUbdvC1W28j7Z3vhE9+Ep5/Ht7zHvD7Xe3akiW0ZxXxt21lPLJhHv+oPYL1XcuxHLLfeYtpZglbqGQP89hLWVozmYVpZBakk+U35OT5yAhkMpSTzVB6FkPGEPL5CJk0QqS5x6QxZA2hkMVahm9YA7htoZABawnhtg8f5zWpDz/G1bKN/PfLeI+L550Ztfd0qhIZ0vYA8yMeV3nbRjumxhiTDhQAzfEp3ugWHVXN1x+qTmQRRERGZy10dBDc+gbPP1nDuue6ee7VfJ7dvpRdXQu5n3dyP+8EoHKohtN4nOPNsywtbaSiOoPelat4sWIN926q5OEvVDPYn0mgsJOf397Gu8+eP8GLT1NFBSxYwMJdO4B9fa1iobfVWxYqeyBW/RcAyMzup7crh47cUhfSYtAnranOhczDlgRgwwb32R922Jg1WtORlubj4T8v5D2XbOb/7lnK17+wlJ/9qIELLj6aU3/8FFV//xv2L4+ya6vh+YeP5YmHT2UdxzAUES0y6eMk/slpGU+yeu4eVi0fYMGqOfgOXQqHHAJLjoXKStc/UQ6QyJD2PLDUGLMIF8YuAj4w4ph7gUuBp4H3Ao8msj+aiEhSMwYKCggcXcBbjj6Ct0TsemNLG7+/r4mHHoJ1T5Wzp7WKO/ggd9gPQiPu9vz+p1tzyjZu/1kxy5fGKKCFHXccC3a5wQPhvlax0NPmag1zckapPYyi4ZCWU0w5RL0mrad3kI6WPIwvxLLF+fCb6DZ1RsrJTueBu5dyw/c38+0by6ndUc5NN5ZzEwBLgKv3O95nBjm89A1OPHQHZ57Ux9vPLiPv8BVQ/paYBuODVcJCmtfH7BrgQSAN+IW19nVjzPXAWmvtvcDPgV8ZY7YALbggJyIiU7RsSSHXfqqQaz8FQ0Mhnny2nv97tJ116ww1O7Npa87G57MUl/Ww+uherriskFNPWByfwq1ezYJ7XgegZnfsvpZ6290UHNm5sf2/flaOq7HryCp0G6Ic0t7Y0g62hILSNjIzC/f1RzviiKi+TqSv/NtSPnvVIN+7ZQuPPmbZvD5Af186aekhKiq7OXRZP2e+NYt3nVVBadEyIHrNrqksoX3SrLX3A/eP2PbViJ97gQviXS4RkYNZWpqPt5w4JzoT0kbDypUs4AFgX1+rWOgNuvvcvJi9BADZ2a7JtiPde6Eoh7SNW7uAEkorgkAhvPaa2xGDmrRIOdnpfPmTS/jyJ2P6MhJBjcAiIpJYK1cOz5XWXBe7BNUbdCMhc/Nj+9WXleNCWmeGdy1R7pO2ZXsfABXzvIXPozyyU5KHQpqIiCTWwoXM9XfgY4iOlny6ugdi8jK9PS6k+Qtj24iU7fV5azd+tyHKNWnhhegr5w9BczPU1roRltXVUX0dSTyFNBERSSyfj4xVhzOXWgC27grG5GV6e93ccLnF0RsBOZrwwIQOX47bEOWQtneP64A/v8q4kZ0Ay5drhORBSJ+oiIgk3sqVzGMvANt2dsXkJXr7XEgLlObE5PxhObmupqvdxiakNdS765hflQ6bNrmNhx0W1deQ5KCQJiIiibdy5XBN2q6a/pi8RO+AG5TgL/fH5PxhOd7o0Y6QV2PX1jbpiZ4no7nBnXdBVSZs3Og2KqQdlBTSREQk8VatGg5pu2tiM6FtjxfS8ubEdnhnrt/VpAV70yAnBwYHoSt6tYOtTS5kLl6Qu68m7dBDo3Z+SR4KaSIikngRzZ1794Ri8hI9Q675MX9ebNbtDPN7FXVdXTbq63cODYXobHWrDRyyME/NnQc5hTQREUm8oiLK8joBaN4e/dGdoZClx+sjll9ZEvXzRxoOad1AYaF7EKWQtmtvF6GhNHLzuvBn+dyanQBLlkTl/JJcFNJERCQpzJnvRi227I7+V1Nn1wAWH9n0kFEW65DmrqO72+yrSYvSXGlbd7hm08LSIOzcCf39bu3LGC0YL4mlkCYiIklhzqGuCqq1KfqjL1vb3ASwfrr2BacY8ee6kNYTGdKiVJO2o8ZNYFtc1qtBAylAIU1ERJJC1Sq3TFVzZ2HUz93W0AFAgKDrzB9DeQH31drd7Yt6SNu12zUFl80Z0KCBFKCQJiIiSWHe8UvwMURrfzE9vdEd4dm5x4WknLQeMCaq5x4pkOe+Wnu606LeJ21vrRtUMWfOkGrSUoBCmoiIJIWMIw5nDvVA9Fcd6KxzgxJy03qiet7R5Afc8lO9Pb6o90mr3esC5tx5RjVpKUAhTUREkkNVFXONmytt++uNUT11sMGFvuyMvqiedzT5Abc2aG93etSbOxvr3bnnV6bB5s1u49KlUTm3JB+FNBERSQ4+H2W5LQDUvrAnqqfuaugGIDcr9iGtoMALaT0ZUQ9pTY3eagMVPti9263XuXBhVM4tyUchTUREkkZpkZtiou71tqieN9jkRkXm5MRmNYNIhflubc3e7oyo90lrbXQjYJdktLulpubPh8zMqJxbko9CmoiIJI2SuUMANO6IbpjqbnajInP9sQ9pJYUuNPVF1qRFoU9a5GoDS/rr3MZFi2Z8XkleCmkiIpI0yha7gNNUlx7V83a3ufCXHYjNklORigtdk2R/b1ZUmzt313YzNJhOdqAbf+0Ot3Hx4hmfV5KXQpqIiCSNihWFADS1RXcR9J5OC0BuQey/9nKy00lLH2RoMJ2eHO86ohDStu/yVhsoCcL27W6jQtpBTSFNRESSxryj5gHQ3FsEoejVenV1uq+73MK0qJ1zPJnZboBCE97EuVEIabv2uH51RSW9sG2b26jmzoOaQpqIiCSNqiXFADTYcjd6MUp6ul3zaW5JRtTOOZ6sHNcHrnUgA9LTobfX3WZgb507Z3HZwL6Qppq0g5pCmoiIJI3qKjd6sYFyQhs3Re28Pb0unPnLY7skVFh2bj8AbZ2DURs8UFfvahZLSofU3JkiFNJERCRp5Acy8acFGSCT5pe2RO283f2uM3+gPDdq5xxPTq4bRdrePhi1wQMN9a5fXUV+rztXbi6Ulc3onJLcFNJERCSpFPrbAah9pTY6JxwYoHvQ1aAFKgLROecEwiGtrXMASkrcxubmGZ2zsdF9Zc9Lc+8PixfHfB1SSSyFNBERSSoFBW4UY+PmtuicsKWFTtwoy4LC+PRJy/G7KT/a20NQWuo2NjXN6JzNTa7sC6wX9tTUedBTSBMRkaSSX+5qoRp39kfnhE1NBHE1aOHVAGItN9eFtI7OoaiFtLZmN4dcVa+3ZJZGdh70FNJERCSpFM53X03NjekwGIUVAiJCWnGcatL8Add/rLMzejVp7a2uybaqY4fboJq0g55CmoiIJJXSua6fVVOoBHbtmvkJI2vSCuKzzuVwSAvaqIS0UMgSbHMjXyub3nAbFdIOegppIiKSVMrLXUhroBw2b575CSNr0gqyZn6+SQj4XUgLdhKVkNbW0cdAXyYZWf0Edm90G9XcedBTSBMRkaQyd45bFaCeObBp5nOl9dU300c2aWaQ3Jzorgk6loC3GlRnkKiEtJ01bjBFoLAL384dbqNC2kFPIU1ERJJK1TzXbyxaNWkde9oAyM7oweeLz5QVeQH3Ol1B3765zGYQ0nbv9ZaECgRhYAAqKtw8aXJQU0gTEZGkUjUvG4hiSKsPApCTNbNlmaYiP999vXZ3majUpO2pdSNdy3I63AbVoqWE+NT7ioiITNKCSldDFK2QFmzoASA7O0pTekxCfp4X0rrToLTQbWxsnPb59ta5Ua5z0r1VCzRoICWoJk1ERJJK5ZxcjC9EK8X0bd/jmvdmoKulD4Ds3JmdZyry812/up6uNCgogLQ06OiA/ukFxXpv3c65eLVxCmkpISEhzRhTbIx5yBiz2bsvGuWY1caYp40xrxtjXjHGXJiIsoqISHylpfnwe6sONIWK9y0mPk3BVjexbFZgaMZlm6zCPNevrrsrHXy+GS8N1dDo+rjNG/CWylJzZ0pIVE3aF4FHrLVLgUe8xyN1Ax+y1q4Azga+b4wpjF8RRUQkUQqKu4HoNHl2t7taqOw8O+NyTVZBgetN1NvjTZ47w35pzd66nZVd3rxxqklLCYkKaecBt3k/3wacP/IAa+0ma+1m7+e9QANQFq8CiohI4hQWu07+Mw5p3d1097mglFMQjZJNTnGhmzS3tzs6Ia3FWxJqXqv3XiikpYREhbQ51lqvzpY6YM54BxtjjgMyga1j7L/SGLPWGLO2cQYdM0VEJDkUl7j+YzMOafX1wxPZ5gbiV5NW5K0R2helmrS2ZjcJ79z2LZCRAfPmzbiMkvxiNrrTGPMwUDHKrmsjH1hrrTFmzL8cY8xc4FfApdba0GjHWGtvAW4BWLNmTfz+CkVEJCZKytw/9y6kvTr9E9XV0YmbWdbvH/UrJCaKC12o6uvJJhSy+GYY0jpa3YjXOdRDdbUbiCAHvZiFNGvtGWPtM8bUG2PmWmtrvRDWMMZx+cB9wLXW2mdiVFQREUky5eXu/9v1zIHNf5j+ierqhmvSAoFolGxycrLTSUsfZGgwnZ7eAfwzCGkDgyG6Oty6naU0weIjo1lUSWKJau68F7jU+/lS4M8jDzDGZAJ/BG631t4Tx7KJiEiCVcxxX08NlLtF1vv6pneiyJDmj1bpJicz25W5pb1vRqsO7KnrxoZ85GW1k8GgRnamkESFtP8GzjTGbAbO8B5jjFljjPmZd8z7gFOAy4wxL3m31QkprYiIxNW8CtfQszerEkIh2LZteieK6JOWlx+fJaHCsnPdnGit7QMz6pO2a68b6VqaqYlsU01CVhyw1jYDp4+yfS1wuffzr4Ffx7loIiKSBCrnutGMdWle1+bNm2H58qmfqK6OIIcA+1YBiJesHDf4oa1jZiGtxlu3s9x4A+MU0lKGVhwQEZGks6AyB4BG6zUTTneEZ8TAgXiHtJxct5RTW9vMQtreWhf2Kobq3QY1d6YMhTQREUk6C6tcE2VzXzEWZhTSws2d+XnxHREZDmntHYP7+qQ1jDpObly19W6lhLm9NW6DatJShkKaiIgknYK8TDJzehkIZdJBflRCWkF+nEOa34Wr9s4QzPGmA62vd33spqChwY10rRiqhaIiKCyMZjEliSmkiYhIUsordOt3TntCW2v3GzhQVJARzeJNyO+FtI7OIcjOduFqYABaWqZ0nsYG91VdToOaOlOMQpqIiCSlAm9pqPq0ebB7N/T0TO0EHR3Q25uwkJbrdzVgnZ1ezVmFNwiirm5K52lpcjWA5TSoqTPFKKSJiEhSKipxU1jsKV3mNmwddWXAsXlhqMPkA1BYkBm1sk2G31uGqqPTWwhn7lx3X1s7xjNG19riyq2QlnoU0kREJCmVlLmO93sK3BQaU27yrKvDAkHratKKC7KiWLqJ5eWFa9K8DdOsSWtvcSNd1dyZehTSREQkKZWVumbCvTlVbsOmTVM7QV0dfWQxQCZp6QME/PFt7sz3Js/t6PAm0Z1mTVp43U7VpKUehTQREUlK5XNcuNmT7o2MnGpNWn097RQAkO2f5rJSM1BY4MrfGQ5p06hJC3YN0NedQwb9FNKmmrQUo5AmIiJJae4c12G+LlTsNkyjubMD1x8tJyEhzX3FBju9qT+mUZO2Y48b4VpOA8bng4ULo1pGSW4KaSIikpQq57nmyfq+QrdhRiGtP4olm5yiQrfyYlfQC2nTqEnbvcet21lOgwtomfEd/CCJpZAmIiJJqWpeNgAtwYALJ7W1EAxO/gS7dw83d/rzBmJRxHGVFLmQ2dXp9YWbRk1azV4XLstpgEMOiWr5JPkppImISFJaMM91mO9szd0XULZsmfwJdu4crknzB4aiXbwJFXshrbvLC2nTqEmrrXfhspwGWLIkquWT5KeQJiIiSamyIhfjC9Hd6ad/8WFu42SbPK2FXbuGQ1ogASGtpNCFs94ub+qP4mLIyID29klPzFtX50a4qiYtNSmkiYhIUspI9+HPdx3n91Yc7jZONqQ1NEBfHy3ZbmRoXv7U1suMhvJS11zbEw5pxky5Nq2h0Y0MVU1aalJIExGRpJVf5DrO1xR584NNNqTt3AlAa54LRXn5Nuplm0hhfhbGF2KgL4v+fq8mL9wvbZIhrakxYt1OhbSUo5AmIiJJq7DYTZ1Rk1vpNkw2pO3aBUBzTjkABflRL9qEfD5DVq5bf7Sxxd0P16RNcvBAS5MbIaqJbFOTQpqIiCStolLXcX5XWpnbMMWatJZMN8davjexbLzl5LqQ2dzqzdM2xebOjnoX0kpKhiA3N+rlk+SmkCYiIkmrpNQ1E+7p80N2tutr1tEx8RO9kNaW5qbgCE8sG2/h+dmaW70pQKY4DUent25n2SIFtFSkkCYiIkmrvNz1JWtoMPv6ZE2mNs1r7mwlD4DiwrSYlG8iuQEXzppavMl0K71m2927J3xuKGTpCLp22jnLSmNSPkluCmkiIpK0ystcM2VTsw+WLnUbJxPSvJq0jlAA2Df7f7z5A4MAtLZ5AwfCa2/u2DHhcxuaexgMZZBHB/7lWrMzFSmkiYhI0ppb4eYaa2lK3xfSNm2a+IleSOsccM2Fxd6cZfHmz3PhrLXdhTWqq9399u0TPndnTcSSUOFrl5SikCYiIkmrcq4LV63NmbBihdv46qvjP6mzE1pbITubYI8LaaUliVnzMi/Pzc/W1ubN07ZggZsvraYGBsZfqqqm1o0ILacBli+PaTklOSmkiYhI0po/z4WsjtYcWL3abXzppfGf5PVHY8ECertcOCspSlBI8ybRbW/35mnLzHT90kKhCful7dnpJvItp141aSlKIU1ERJLW/PD6nW25sGyZCzlbtrjasrF4TZ2hBQvp63az/pcV58S8rKPJd+MW9h+QOsl+aY2vNwNQHAhCVlb0CydJTyFNRESSVllxNmnpA/T3ZNPex74mz1deGftJGzYAEFxwGKFQGhlZ/WRnJWZ0Z0GhG/jQ3hExT9sk+6W1bHE1aeG54iT1KKSJiEjS8vkMeUUurOzc0zW5Jk+vz1pz9REAZHkTyiZCoTeJbrAz4ut2kjVpbTVusEFRpb6qU5U+eRERSWr5RT0A7N7bM6WQ1jjXzauW609cSCvy5mcLdkR83U6yJq2t0Q2aKD7EH4uiySygkCYiIkktvH7nnr39E4e0oSFYvx6AxtL5AOQE+mNcwrEVeiGtKxgxT9tka9I6XDgrPaI8FkWTWUAhTUREklpRiWv2q2sYgCOPdBtffRUGBw88eMsW6O2F+fNpGXSd7f3+UY6Lk/D8bF1dEfO0TaYmbWiIlt5CAOauWRibwknSU0gTEZGkVlrmprGoqwtBQYGrierrGx4gsJ/wHGorV9LszfLvz0tcSCv1pv7oCUZMAVJVBWlpsHevu47RbN9OA64Gbf5SLQmVqhTSREQkqZWXeet3NnojJE84wd0/8cSBB0eEtLZ2F9IC3oSyiTAc0roiQlp6Osx3TbHh6UJG6n3hVVoowccQlRVaXD1VKaSJiEhSq6hwX1VNjd5X1umnu/tHHjnw4IiQ1t7mwl1eIkNaiZunrbd7xDxnhxzi7jduHPV5dY+/DEBBVjsZ6fqqTlUJ+eSNMcXGmIeMMZu9+6Jxjs03xtQYY34YzzKKiEhymDvHW7+z2et8Hw5pjz/uBgpEigxp3iz/+QU2DqUcXZ4/A1/aEIP9mfT0RjS7hgdAvPjiqM9rfG4HAPmFwdgWUJJaouL5F4FHrLVLgUe8x2P5OvBkXEolIiJJZ95c11TY1uzVRlVXw+LF0Na2f8hpboatW11z4rJldHS65tH8/PiWN5LPZ8jOdWtwNrb07ttx9NHuft26A58UCtG8vgWAQPnQgfslZSQqpJ0H3Ob9fBtw/mgHGWOOAeYAf4tPsUREJNksrHJ9stpbIvpmjdbk+ac/gbXw1rdCZiYd7S6kFeQntrkw25unrbE5YpDAMce4+xdeOPAJGzfS2FMAQNE8hbRUlqjf3DnW2lrv5zpcENuPMcYHfAf43EQnM8ZcaYxZa4xZ29jYGN2SiohIQlVXuvnCgm0Bhoa8/mXhkPbww/sOvPtud3/BBQB0erP8FxUmNqT5vXnaGpsj5mtbuhQCAaipgYaG/Z/w3HPUe1+LpeWJ608niRez31xjzMPGmNdGuZ0XeZy11gKjdRi4GrjfWlsz0WtZa2+x1q6x1q4pKyuL0hWIiEgyCPgzyA50ExpKY099t9v41re6Zs1HH3VTcbS0uFq1tDQ4/3wAOlpdX7bysvQxzhwfeQUunNU3RoQ0nw+OOsr9PLI27dlnqaMCgIo5ietPJ4kXs5BmrT3DWnvEKLc/A/XGmLkA3n3DKKd4E3CNMWYH8G3gQ8aY/45VeUVEJHnle+t37qjxQlpZGVxxBYRC8KUvuabOwUEX3krdvGKd7a4v25yyzNFOGTf5hW6B9MamEfO1jdUvLaImbe5cjexMZYn69O8FLvV+vhT488gDrLUXW2sXWGurcU2et1trxxtgICIiB6miUtfpfmdNz76NX/0q5ObCn/8MV13ltnlNnQDBDjfQYN6cEdNfxFlhkWuybGwe0b9stH5pzc3w8svUejVpVfMykNSVqJD238CZxpjNwBneY4wxa4wxP0tQmUREJEmVlLmmwj17I2qjKirgs591Pw8Owgc+AJdcMry7q8MNNJhbnhO3co6mqNiFtObmEU2X4Zq0555zNYIAd90Fg4PsyXGT3S6ozI5XMSUJJaSh3lrbDJw+yva1wOWjbL8VuDXmBRMRkaRUWuZqofbWjmgy/OpXYflyOPZYWLJkeHNX9wD9vVn40oYoKUps0CkudvctLSN2LFsGlZVu8MBDD8Hb3ga33w5ArXE1aeGRrZKa1NgtIiJJr6LC1ULV14/YkZ4O73//fgENoK7BNYvm5nXj85l4FHFMpaXuq7atNW3/HWlpcM017ufvfQ82bYJnn2XAX0BHTz6YEAu9ka2SmhTSREQk6VXMcV9XDfVpExzp7Glwfdj8+b0THBl7ZSWuzAeENIArr4ScHHjwQbjcNSTVnn0x1vrw53eTmTm565WDk0KaiIgkvXAH+ubGyXWkr29wE8fmFfRNcGTsVZS70aWd7aOUvbgYLvXG0f3975CZyda3XQhAQUlXvIooSSqxk8eIiIhMwvxKN0KztXlyIzXrG13ftfD0F4kUngKko22Msv/Hf0Bdnetb9+EPs+MFF+aKShJfCyiJpZAmIiJJr7rKjdBsa55cH63wnGQFhYlfVmlumRu40NUxxijTefPgj38cfrj7L1sAKC1LfMCUxFJzp4iIJL3q+XkAdLX7GRiceKmk5hZ3TFFx4kPavAo3QrOnM4dQaOIVBOrqXJm1JJQopImISNLLzkojNz+IDfnYvXfivlrNTe4+PP1FIuVkp5OZ00solEZjy8RNmHXeCNbwiFZJXQppIiIyK+QXuSWhdoaXhhpHa6v7eistSez0G2H+fDclSG1DzwRHQlODG9E5t0IjO1OdQpqIiMwKxcNLQ01cGxWe7qK0JDmCTsCbCqS2fuKyNze6gQZaEkoU0kREZFYoLvWWhqqduEN9R5sbF1demhzj4/IKXJnrGycue2uzG2igJaFEIU1ERGaFsjnhpaEmHgzQ2eFqo+Z4c5QlWkGRC2fhUafjaW9xAw2q52tJqFSnkCYiIrNCxRx3v3fvxP3Mgu2uFqqiPDlqowq9qUAamsYPmF3dA3R3BPD5hqiaqyWhUp1CmoiIzAoLFrimy7raifuZheckq6oYY26yOCsudiM1W5rHH7G5eUcnAPklnWSk6ys61ek3QEREZoXFC13TZWPd+LVjwa4BBvqySEsfpDB/cisUxFpxibtvbhm/FnDzNje9SMkcLQklCmkiIjJLLF3k+mi1NIzfV2tvvZuiIyevB58vOabgKC1xX7dtreN/7e7Y5QZHlFVoSShRSBMRkVli6aJ8ANqb88dddaC2wQWcQP7Ec5LFS1mZa6ptbxt/tOnO3W5gwdx5Ew8wkIOfQpqIiMwKAX8G/oIgoaE0duwOjnlcbYOrjcor6I9X0SZUXurmPOtoG3/us5oaV/NXOS85agAlsRTSRERk1igudx3rN20fO6Q1eHOR5RcmzwLlFWWub1xn+/h95Or2upq2hQuSYxJeSSyFNBERmTXCfbW27Ri7z9buPa6psLQseZoMF3lznrU3B8Y9rqHOhbhF1ckx4EESSyFNRERmjYq5rnZsx66xA9jevW6ai3nzxu63Fm8VZblkZPXT35NNU+vYAbOlwYW4pYs0R5oopImIyCxSWekCWE3N2PON1e51TYVVVcnzFefzGQpLXVPt5m2dox7T3z9ER0semBBLq/PiWTxJUsnzGywiIjKBBQvc11btnrH7bDXUuc75C+Yn1wLlxeVuapAtO7tH3b91Zyc25COvKEhOdnKsOSqJpZAmIiKzxqKFrq9WuO/WaJq9edQOWZgcqw2Elc/pA2DnrtFHnW7e7iawLS4fe1CEpBaFNBERmTXCwaupfuwJbVsbXb+uJUnWr2vOXLdu5+6a0fvKbfUGQ5TP0US24iikiYjIrHHoYtdXq60xn1DowH5pLW299HXnkJ4xQOWc5ApplZXufu+e0edAC09kO0cT2YpHIU1ERGaN4sJssgPdDA1msGvvgetbbvbmTyso7UiaJaHCFlS5fmb1daP3NxueyLZy/EXYJXUopImIyKxSXOZGR27ceuAoya1ep/yS8tE75ydSuD9dU/3oC8Tv9QZDzK/SRLbiKKSJiMisMne+C2CvbTgwiIUXKC+dkzxLQoUdUu2aX1saR2+G3bPT9bM7/LDRQ5ykHoU0ERGZVRYf4gLY+g0H9t3avdt1zq+Ym3z9usJzn3W2BA5YID4UstTtLgJgzZGF8S6aJCmFNBERmVWWLXNfXVs2H9gsuHdvuF9XXIs0KTnZ6QQKOwmF0ti+a/+m2k3b2unvySY3P8j8ueMvHSWpQyFNRERmlZWHu+bAXdsPnIajrtZ1yg930k82RWVuYMPmHfsPelj3agcA8xa2xbtIksQU0kREZFYJNwfW7io6YBqOpgZvgfKFyblAeak3B9qOXfvPhfbaevd44eKeuJdJkpdCmoiIzCoLKwNkB7rp6845oNmwpcF1yj+keuzJbhOpfI7rK7dr9/595t7Y6O6XLE2eReEl8RIS0owxxcaYh4wxm737ojGOW2CM+ZsxZoMxZr0xpjrORRURkSTj8xnmzm8DYN2r7cPbBwZDboFyYMnC5FygfN48F8J2j1ggfvuWTABWLE+u9UYlsRJVk/ZF4BFr7VLgEe/xaG4HvmWtXQ4cBzTEqXwiIpLEFix202+88vq+ZsNnX2wiNJRGUXkrAX9yhp3ly1xfuY0bMvfbXrPDhcqjVmrQgOyTqJB2HnCb9/NtwPkjDzDGHA6kW2sfArDWBq21yTc7oYiIxN3SQ91UG29s3Fcj9cRTrvP9ksNbE1KmyTjlTQUAbFlfPLytq3uAlvoijC/EUStGbViSFJWokDbHWlvr/VwHzBnlmEOBNmPMH4wxLxpjvmWM0TTMIiLC4V6N1LYt+2rMnl/rmhKPPGogIWWajDWrisnK6aWjuYCtO1yofPH1VmzIR/GcVvy5yVkDKIkRs5BmjHnYGPPaKLfzIo+z1lpgtIXK0oE3A58DjgUWA5eN8VpXGmPWGmPWNjY2RvdCREQk6aw+wjUL1mzPH962/hU3WOBNxyXnyE6AtDQf1cvc99Qj/2gB4IVX3LQcVdUHLnMlqS1mIc1ae4a19ohRbn8G6o0xcwG8+9H6mtUAL1lrt1lrB4E/AUeP8Vq3WGvXWGvXlJWVxeiKREQkWZxwdAmZOb007inhlTdaGRgMsXOT+/f/rSeXJrh041uxyvXceea5PgAe/Jsb6bnqqL6ElUmSU6KaO+8FLvV+vhT48yjHPA8UGmPCqeutwPo4lE1ERJJcTnY6R5+4B4Bf3dXIcy8109+bRVF5K9VVyd35/rhjXc+dV17OJBSyPPVYOQDvf29yjkiVxElUSPtv4ExjzGbgDO8xxpg1xpifAVhrh3BNnY8YY14FDPDTBJVXRESSzDnvcj1l/u/+LJ54yk3FkcyDBsJOO7EQcIMHHv5HHW2NheSXtHPWKRWJLZgknYSsm2GtbQZOH2X7WuDyiMcPAaviWDQREZklPvS+Cv7jMyE2vFDJgyU7gOQeNBAWHjzQ3lTAN7/nevuc+JYG0tIKElwySTZacUBERGal+XMDHLpqD0OD6Tz5wBIAznxLcq40ECktzcey1XUAPPKnpQC853yN6pQDKaSJiMisdfY5rhN+emY/n/rKRt73rvkJLtHk/PrWQg47ajcAWbk9vP/8ygSXSJJRQpo7RUREouGb/7GEwsLNnHNmMWtWHZbo4kzaEYcW8vrz+fzo9u0srMoi4J+X6CJJEjJumrKDx5o1a+zatWsTXQwRERGRCRlj1llr14y2T82dIiIiIklIIU1EREQkCSmkiYiIiCQhhTQRERGRJKSQJiIiIpKEFNJEREREkpBCmoiIiEgSUkgTERERSUIKaSIiIiJJSCFNREREJAkppImIiIgkIYU0ERERkSSkkCYiIiKShBTSRERERJKQQpqIiIhIEjLW2kSXIaqMMY3Azji8VCnQFIfXSUapfO2Q2teva09dqXz9qXztkNrXH49rX2itLRttx0EX0uLFGLPWWrsm0eVIhFS+dkjt69e1p+a1Q2pffypfO6T29Sf62tXcKSIiIpKEFNJEREREkpBC2vTdkugCJFAqXzuk9vXr2lNXKl9/Kl87pPb1J/Ta1SdNREREJAmpJk1EREQkCSmkiYiIiCQhhbRxGGMuMMa8bowJGWPGHIJrjDnbGLPRGLPFGPPFiO2LjDHPetvvMsZkxqfkM2eMKTbGPGSM2ezdF41yzFuMMS9F3HqNMed7+241xmyP2Lc63tcwXZO5du+4oYjruzdi+6z93GHSn/1qY8zT3t/HK8aYCyP2zbrPfqy/4Yj9Wd5nucX7bKsj9n3J277RGPO2uBY8CiZx7Z8xxqz3PudHjDELI/aN+jcwm0zi+i8zxjRGXOflEfsu9f5ONhtjLo1vyWduEtf+vYjr3mSMaYvYN6s/e2PML4wxDcaY18bYb4wxN3nvzSvGmKMj9sXvc7fW6jbGDVgOHAY8DqwZ45g0YCuwGMgEXgYO9/b9DrjI+/nHwL8m+pqmcO3fBL7o/fxF4H8mOL4YaAFyvce3Au9N9HXE8tqB4BjbZ+3nPtnrBw4Flno/zwNqgcLZ+NmP9zcccczVwI+9ny8C7vJ+Ptw7PgtY5J0nLdHXFOVrf0vE3/W/hq/dezzq38BsuU3y+i8DfjjKc4uBbd59kfdzUaKvKZrXPuL4TwC/OIg++1OAo4HXxtj/DuABwAAnAM8m4nNXTdo4rLUbrLUbJzjsOGCLtXabtbYfuBM4zxhjgLcC93jH3QacH7PCRt95uDLD5Mr+XuABa213LAsVJ1O99mEHwecOk7h+a+0ma+1m7+e9QAMw6ozZs8Cof8Mjjol8T+4BTvc+6/OAO621fdba7cAW73yzxYTXbq19LOLv+hmgKs5ljKXJfPZjeRvwkLW2xVrbCjwEnB2jcsbCVK/9/cBv41KyOLDWPomrWBjLecDt1nkGKDTGzCXOn7tC2sxVArsjHtd420qANmvt4Ijts8Uca22t93MdMGeC4y/iwD/gG71q4u8ZY7KiXsLYmey1Zxtj1hpjngk38zL7P3eY4mdvjDkO9z/xrRGbZ9NnP9bf8KjHeJ9tO+6znsxzk9lUy/9RXO1C2Gh/A7PJZK//X7zf53uMMfOn+NxkNenye03ci4BHIzbP9s9+ImO9P3H93NNjdeLZwhjzMFAxyq5rrbV/jnd54mm8a498YK21xpgx52rx/nexEngwYvOXcF/wmbh5Zr4AXD/TMkdLlK59obV2jzFmMfCoMeZV3Jd30ovyZ/8r4FJrbcjbnNSfvUyPMeaDwBrg1IjNB/wNWGu3jn6GWesvwG+ttX3GmI/halTfmuAyxdtFwD3W2qGIbanw2Sdcyoc0a+0ZMzzFHmB+xOMqb1szrno03fufd3h70hjv2o0x9caYudbaWu+LuGGcU70P+KO1diDi3OGamD5jzC+Bz0Wl0FESjWu31u7x7rcZYx4HjgJ+T5J/7hCd6zfG5AP34f5D80zEuZP6sx/FWH/Dox1TY4xJBwpwf+OTeW4ym1T5jTFn4AL8qdbavvD2Mf4GZtMX9YTXb61tjnj4M1yfzfBzTxvx3MejXsLYmcrv7kXAxyM3HASf/UTGen/i+rmruXPmngeWGjeiLxP3y3yvdT0MH8P11QK4FJhNNXP34soME5f9gL4K3pd7uI/W+cCoI2iS1ITXbowpCjfjGWNKgZOA9QfB5w6Tu/5M4I+4Phv3jNg32z77Uf+GRxwT+Z68F3jU+6zvBS4ybvTnImAp8Fycyh0NE167MeYo4CfAudbahojto/4NxK3k0TGZ658b8fBcYIP384PAWd77UAScxf6tCcluMr/3GGOW4TrIPx2x7WD47CdyL/Ahb5TnCUC79x/Q+H7usRqRcDDcgHfj2pv7gHrgQW/7POD+iOPeAWzC/S/i2ojti3H/YG8B7gayEn1NU7j2EuARYDPwMFDsbV8D/CziuGrc/yx8I57/KPAq7gv610Ag0dcUzWsHTvSu72Xv/qMHw+c+hev/IDAAvBRxWz1bP/vR/oZxTbTnej9ne5/lFu+zXRzx3Gu9520E3p7oa4nBtT/s/fsX/pzv9baP+Tcwm26TuP5vAK971/kYsCziuR/xfie2AB9O9LVE+9q9x9cB/z3iebP+s8dVLNR6/47V4PpbXgVc5e03wM3ee/MqETM8xPNz17JQIiIiIklIzZ0iIiIiSUghTURERCQJKaSJiIiIJCGFNBEREZEkpJAmIiIikoQU0kRERESSkEKaiIiISBJSSBMRGYcx5lhvce1sY4zfGPO6MeaIRJdLRA5+msxWRGQCxpgbcKsO5AA11tpvJLhIIpICFNJERCbgrW34PNALnGitHUpwkUQkBai5U0RkYiVAAMjD1aiJiMScatJERCZgjLkXuBNYBMy11l6T4CKJSApIT3QBRESSmTHmQ8CAtfY3xpg04CljzFuttY8mumwicnBTTZqIiIhIElKfNBEREZEkpJAmIiIikoQU0kRERESSkEKaiIiISBJSSBMRERFJQgppIiIiIklIIU1EREQkCf1/MDkwPYLLgDUAAAAASUVORK5CYII=", + "text/plain": [ + "<Figure size 720x504 with 1 Axes>" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "def testlf():\n", + " from numpy import arange, pi, exp, cos, inf\n", + " from numpy.linalg import norm\n", + " import matplotlib.pyplot as plt\n", + " %matplotlib inline\n", + " \n", + " #-- initial values/settings\n", + " dx= 1./150. #- spatial step size\n", + " courant= 0.9 #- Courant No.\n", + " dt= courant* dx #- time step size\n", + " CourSLM= 1. #- Courant number for the SLM\n", + " dts= CourSLM* dx #- time step for semi-Lagrange scheme\n", + " Tend= 0.5 #- final time\n", + " x= arange(-1,1+dx,dx) #- spatial grid\n", + " \n", + " #-- initial conditions\n", + " u0=init2(x)\n", + " \n", + " #-- Lax-Friedrichs advection scheme\n", + " ulaxf= laxfriedrichsadvect(x,dt,Tend,u0)\n", + " \n", + " #-- semi-Lagrangian advection scheme\n", + " uslm= semilagrangeadvect(x,dts,Tend,u0)\n", + " \n", + " #-- compute exact solution to compare with\n", + " uexact = init2(x-Tend)\n", + " \n", + " #-- plot the result, the initial condition, and the exact solution\n", + " fig = plt.figure(1)\n", + " #h1=plt.plot(x,u0,linewidth=2, c=[0.3, 0.5, 0.2], label='init. cond.')\n", + " h2=plt.plot(x,uexact,linewidth=2, c=[0.5, 0.7, 0.4], label='exact sol.')\n", + " h3=plt.plot(x,ulaxf,linewidth=2, c='red', label='Lax-Friedr.')\n", + " h4=plt.plot(x,uslm,linewidth=2, c='blue', label='Semi-Lagr.')\n", + " plt.legend(loc='upper left')\n", + " plt.title('Linear Advection, DX=' + '%6.4f' % (dx) + ', DT=' + '%6.4f' % (dt) + ', DTS=' + '%6.4f' % (dts))\n", + " plt.xlabel('x')\n", + " plt.ylabel('u')\n", + " \n", + " #-- compute error norms:\n", + " inflaxf= norm((uexact-ulaxf),inf)/norm(uexact,inf)\n", + " infslm= norm((uexact-uslm),inf)/norm(uexact,inf)\n", + " print('*** INFO: relative error in inf-norm ***')\n", + " print(' Lax-Friedrichs method: ' + '%6.4f' % (inflaxf))\n", + " print(' semi-Lagrangian method: ' + '%6.4f' % (infslm))\n", + "\n", + " twolaxf= norm((uexact-ulaxf))/norm(uexact)\n", + " twoslm= norm((uexact-uslm))/norm(uexact)\n", + " print('*** INFO: relative error in two-norm ***')\n", + " print(' Lax-Friedrichs method: ' + '%6.4f' % (twolaxf))\n", + " print(' semi-Lagrangian method: ' + '%6.4f' % (twoslm))\n", + "\n", + " fig.set_size_inches(10,7)\n", + " plt.show()\n", + "\n", + "if __name__==\"__main__\":\n", + " testlf()\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "interpreter": { + "hash": "ca2525eab514af7f1335f4a0de66f0c96f9a7997643233c6c1749b1bac977781" + }, + "kernelspec": { + "display_name": "Python 3.7.10 64-bit ('base': conda)", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.10" + } + }, + "nbformat": 4, + "nbformat_minor": 1 +} diff --git a/bin/LagrangianRelaxation.linux.x86_64.gnu.opt.spx2 b/bin/LagrangianRelaxation.linux.x86_64.gnu.opt.spx2 index 15c05b060d527b6a7b5bb9465edc37cbb31688cc..959c5063db4dea75a712c302d28316cb70bf5628 100755 Binary files a/bin/LagrangianRelaxation.linux.x86_64.gnu.opt.spx2 and b/bin/LagrangianRelaxation.linux.x86_64.gnu.opt.spx2 differ diff --git a/data/18990iter.png b/data/18990iter.png new file mode 100644 index 0000000000000000000000000000000000000000..37aa501d67e81256e2f258e4582c6781e0b796fd Binary files /dev/null and b/data/18990iter.png differ diff --git a/data/18990iters.png b/data/18990iters.png new file mode 100644 index 0000000000000000000000000000000000000000..215535d4bfea4f92cdc5f79a774386f3f4d6096a Binary files /dev/null and b/data/18990iters.png differ diff --git a/data/time18990.png b/data/time18990.png new file mode 100644 index 0000000000000000000000000000000000000000..0e47694ecab84df717ebf4ab217baecb1fe5eea1 Binary files /dev/null and b/data/time18990.png differ diff --git a/data/timeoutput.png b/data/timeoutput.png new file mode 100644 index 0000000000000000000000000000000000000000..fd044d2fd2dcd8348602e35dde8df54d8630a94f Binary files /dev/null and b/data/timeoutput.png differ diff --git a/dual.txt b/dual.txt index d867a3f35160afee6cec96eceb3cc329ffd45d4e..ed7b0299cf5f8742f6b864784e9791a6ce083f39 100644 --- a/dual.txt +++ b/dual.txt @@ -1,21 +1,18991 @@ -dualbound = 969553.451655, lowerbound=969553.451655, norm of subgrad 985.933290 dualbound = 969553.451655, lowerbound=969553.451655, norm of subgrad 985.933290 stepsize= 75.000000 -dualbound = 1042806.326405, lowerbound=1002756.326405, norm of subgrad 1003.327128 dualbound = 1042806.326405, lowerbound=1002756.326405, norm of subgrad 277.780263 stepsize= 75.000000 -dualbound = 1080954.378222, lowerbound=1005129.378222, norm of subgrad 1004.627980 dualbound = 1080954.378222, lowerbound=1005129.378222, norm of subgrad 205.660039 stepsize= 75.000000 -dualbound = 1145760.072033, lowerbound=1023735.072033, norm of subgrad 1013.752471 dualbound = 1145760.072033, lowerbound=1023735.072033, norm of subgrad 262.230231 stepsize= 75.000000 -dualbound = 1192707.184601, lowerbound=1032957.184601, norm of subgrad 1018.422891 dualbound = 1192707.184601, lowerbound=1032957.184601, norm of subgrad 226.219169 stepsize= 75.000000 -dualbound = 1240779.507198, lowerbound=1034529.507198, norm of subgrad 1019.079735 dualbound = 1240779.507198, lowerbound=1034529.507198, norm of subgrad 228.180461 stepsize= 75.000000 -dualbound = 1290479.733667, lowerbound=1040354.733667, norm of subgrad 1022.034605 dualbound = 1290479.733667, lowerbound=1040354.733667, norm of subgrad 232.164223 stepsize= 75.000000 -dualbound = 1329013.881020, lowerbound=1046113.881020, norm of subgrad 1024.849687 dualbound = 1329013.881020, lowerbound=1046113.881020, norm of subgrad 206.729648 stepsize= 75.000000 -dualbound = 1365839.510165, lowerbound=1045664.510165, norm of subgrad 1024.597731 dualbound = 1365839.510165, lowerbound=1045664.510165, norm of subgrad 202.389795 stepsize= 75.000000 -dualbound = 1407119.095190, lowerbound=1057244.095190, norm of subgrad 1030.232544 dualbound = 1407119.095190, lowerbound=1057244.095190, norm of subgrad 213.106980 stepsize= 75.000000 -dualbound = 1438356.306891, lowerbound=1060506.306891, norm of subgrad 1031.811178 dualbound = 1438356.306891, lowerbound=1060506.306891, norm of subgrad 188.056406 stepsize= 75.000000 -dualbound = 1476494.479794, lowerbound=1059194.479794, norm of subgrad 1031.127771 dualbound = 1476494.479794, lowerbound=1059194.479794, norm of subgrad 205.348905 stepsize= 75.000000 -dualbound = 1507574.212503, lowerbound=1067999.212503, norm of subgrad 1035.485979 dualbound = 1507574.212503, lowerbound=1067999.212503, norm of subgrad 187.914163 stepsize= 75.000000 -dualbound = 1675410.072033, lowerbound=1023735.072033, norm of subgrad 1013.752471 dualbound = 1675410.072033, lowerbound=1023735.072033, norm of subgrad 414.481434 stepsize= 75.000000 -dualbound = 1607232.184601, lowerbound=1032957.184601, norm of subgrad 1018.422891 dualbound = 1607232.184601, lowerbound=1032957.184601, norm of subgrad -nan stepsize= 75.000000 -dualbound = 1781879.733667, lowerbound=1040354.733667, norm of subgrad 1022.034605 dualbound = 1781879.733667, lowerbound=1040354.733667, norm of subgrad 422.903711 stepsize= 75.000000 -dualbound = 1850106.326405, lowerbound=1002756.326405, norm of subgrad 1003.327128 dualbound = 1850106.326405, lowerbound=1002756.326405, norm of subgrad 268.580701 stepsize= 75.000000 -dualbound = 1884478.451655, lowerbound=969553.451655, norm of subgrad 985.933290 dualbound = 1884478.451655, lowerbound=969553.451655, norm of subgrad 192.049799 stepsize= 75.000000 -dualbound = 2062799.212503, lowerbound=1067999.212503, norm of subgrad 1035.485979 dualbound = 2062799.212503, lowerbound=1067999.212503, norm of subgrad 427.261935 stepsize= 75.000000 -dualbound = 2098335.072033, lowerbound=1023735.072033, norm of subgrad 1013.752471 dualbound = 2098335.072033, lowerbound=1023735.072033, norm of subgrad 198.733136 stepsize= 75.000000 -dualbound = 1553599.911328, lowerbound=1157374.911328, norm of subgrad 1078.913301 dualbound = 1553599.911328, lowerbound=1157374.911328, norm of subgrad -nan stepsize= 75.000000 +dualbound = 969553.451655, lowerbound=969553.451655, norm of subgrad 985.933290 dualbound = 969553.451655, lowerbound=969553.451655, norm of subgrad 985.933290 stepsize= 1.000000 +dualbound = 971795.779461, lowerbound=969627.779461, norm of subgrad 985.893899 dualbound = 971795.779461, lowerbound=969627.779461, norm of subgrad 67.833088 stepsize= 1.000000 +dualbound = 973937.200775, lowerbound=969727.200775, norm of subgrad 985.935191 dualbound = 973937.200775, lowerbound=969727.200775, norm of subgrad 66.950887 stepsize= 1.000000 +dualbound = 975949.307895, lowerbound=969836.307895, norm of subgrad 985.954516 dualbound = 975949.307895, lowerbound=969836.307895, norm of subgrad 65.437811 stepsize= 1.000000 +dualbound = 977948.286894, lowerbound=970011.286894, norm of subgrad 986.010795 dualbound = 977948.286894, lowerbound=970011.286894, norm of subgrad 64.845809 stepsize= 1.000000 +dualbound = 979837.061762, lowerbound=970255.061762, norm of subgrad 986.112601 dualbound = 979837.061762, lowerbound=970255.061762, norm of subgrad 63.653553 stepsize= 1.000000 +dualbound = 981694.214386, lowerbound=970287.214386, norm of subgrad 986.127889 dualbound = 981694.214386, lowerbound=970287.214386, norm of subgrad 63.388900 stepsize= 1.000000 +dualbound = 983477.818754, lowerbound=970665.818754, norm of subgrad 986.280801 dualbound = 983477.818754, lowerbound=970665.818754, norm of subgrad 62.190066 stepsize= 1.000000 +dualbound = 985253.629360, lowerbound=970793.629360, norm of subgrad 986.333427 dualbound = 985253.629360, lowerbound=970793.629360, norm of subgrad 61.933921 stepsize= 1.000000 +dualbound = 986953.055560, lowerbound=971071.055560, norm of subgrad 986.462394 dualbound = 986953.055560, lowerbound=971071.055560, norm of subgrad 61.126313 stepsize= 1.000000 +dualbound = 988626.139985, lowerbound=971268.139985, norm of subgrad 986.553161 dualbound = 988626.139985, lowerbound=971268.139985, norm of subgrad 60.762525 stepsize= 1.000000 +dualbound = 990249.094698, lowerbound=971485.094698, norm of subgrad 986.665138 dualbound = 990249.094698, lowerbound=971485.094698, norm of subgrad 60.381742 stepsize= 1.000000 +dualbound = 991880.414410, lowerbound=971658.414410, norm of subgrad 986.712934 dualbound = 991880.414410, lowerbound=971658.414410, norm of subgrad 59.793977 stepsize= 1.000000 +dualbound = 993451.176878, lowerbound=971869.176878, norm of subgrad 986.859249 dualbound = 993451.176878, lowerbound=971869.176878, norm of subgrad 59.939657 stepsize= 1.000000 +dualbound = 995005.613921, lowerbound=971979.613921, norm of subgrad 986.890376 dualbound = 995005.613921, lowerbound=971979.613921, norm of subgrad 59.392230 stepsize= 1.000000 +dualbound = 996543.021030, lowerbound=972256.021030, norm of subgrad 987.030405 dualbound = 996543.021030, lowerbound=972256.021030, norm of subgrad 59.248689 stepsize= 1.000000 +dualbound = 998057.968084, lowerbound=972567.968084, norm of subgrad 987.192468 dualbound = 998057.968084, lowerbound=972567.968084, norm of subgrad 59.126534 stepsize= 1.000000 +dualbound = 999562.545759, lowerbound=972610.545759, norm of subgrad 987.192254 dualbound = 999562.545759, lowerbound=972610.545759, norm of subgrad 58.673484 stepsize= 1.000000 +dualbound = 1001036.471322, lowerbound=972812.471322, norm of subgrad 987.308195 dualbound = 1001036.471322, lowerbound=972812.471322, norm of subgrad 58.642353 stepsize= 1.000000 +dualbound = 1002505.788115, lowerbound=973078.788115, norm of subgrad 987.446600 dualbound = 1002505.788115, lowerbound=973078.788115, norm of subgrad 58.662738 stepsize= 1.000000 +dualbound = 1003949.141280, lowerbound=973063.141280, norm of subgrad 987.423993 dualbound = 1003949.141280, lowerbound=973063.141280, norm of subgrad 58.192381 stepsize= 1.000000 +dualbound = 1005390.815095, lowerbound=973534.815095, norm of subgrad 987.646604 dualbound = 1005390.815095, lowerbound=973534.815095, norm of subgrad 57.902278 stepsize= 1.000000 +dualbound = 1006808.734428, lowerbound=973501.734428, norm of subgrad 987.624288 dualbound = 1006808.734428, lowerbound=973501.734428, norm of subgrad 57.601383 stepsize= 1.000000 +dualbound = 1008213.128863, lowerbound=973738.128863, norm of subgrad 987.763195 dualbound = 1008213.128863, lowerbound=973738.128863, norm of subgrad 57.813445 stepsize= 1.000000 +dualbound = 1009584.449336, lowerbound=974069.449336, norm of subgrad 987.914697 dualbound = 1009584.449336, lowerbound=974069.449336, norm of subgrad 57.247886 stepsize= 1.000000 +dualbound = 1010963.924508, lowerbound=974711.924508, norm of subgrad 988.249930 dualbound = 1010963.924508, lowerbound=974711.924508, norm of subgrad 57.493262 stepsize= 1.000000 +dualbound = 1012312.499391, lowerbound=974460.499391, norm of subgrad 988.126257 dualbound = 1012312.499391, lowerbound=974460.499391, norm of subgrad 57.285032 stepsize= 1.000000 +dualbound = 1013651.031479, lowerbound=974834.031479, norm of subgrad 988.294001 dualbound = 1013651.031479, lowerbound=974834.031479, norm of subgrad 56.828972 stepsize= 1.000000 +dualbound = 1014991.303444, lowerbound=974958.303444, norm of subgrad 988.362941 dualbound = 1014991.303444, lowerbound=974958.303444, norm of subgrad 56.949732 stepsize= 1.000000 +dualbound = 1016277.210680, lowerbound=975523.210680, norm of subgrad 988.641093 dualbound = 1016277.210680, lowerbound=975523.210680, norm of subgrad 56.337441 stepsize= 1.000000 +dualbound = 1017597.047976, lowerbound=974805.047976, norm of subgrad 988.278831 dualbound = 1017597.047976, lowerbound=974805.047976, norm of subgrad 56.655426 stepsize= 1.000000 +dualbound = 1018873.099834, lowerbound=975797.099834, norm of subgrad 988.792243 dualbound = 1018873.099834, lowerbound=975797.099834, norm of subgrad 56.471691 stepsize= 1.000000 +dualbound = 1020161.792991, lowerbound=975572.792991, norm of subgrad 988.702075 dualbound = 1020161.792991, lowerbound=975572.792991, norm of subgrad 56.988535 stepsize= 1.000000 +dualbound = 1021411.129073, lowerbound=976051.129073, norm of subgrad 988.923723 dualbound = 1021411.129073, lowerbound=976051.129073, norm of subgrad 56.287975 stepsize= 1.000000 +dualbound = 1022708.624788, lowerbound=975578.624788, norm of subgrad 988.660015 dualbound = 1022708.624788, lowerbound=975578.624788, norm of subgrad 56.280509 stepsize= 1.000000 +dualbound = 1023962.463174, lowerbound=976454.463174, norm of subgrad 989.099825 dualbound = 1023962.463174, lowerbound=976454.463174, norm of subgrad 55.837607 stepsize= 1.000000 +dualbound = 1025227.928944, lowerbound=976464.928944, norm of subgrad 989.116236 dualbound = 1025227.928944, lowerbound=976464.928944, norm of subgrad 56.137917 stepsize= 1.000000 +dualbound = 1026440.301898, lowerbound=976330.301898, norm of subgrad 989.055763 dualbound = 1026440.301898, lowerbound=976330.301898, norm of subgrad 55.797607 stepsize= 1.000000 +dualbound = 1027686.877113, lowerbound=976902.877113, norm of subgrad 989.340627 dualbound = 1027686.877113, lowerbound=976902.877113, norm of subgrad 56.022988 stepsize= 1.000000 +dualbound = 1028904.084155, lowerbound=977095.084155, norm of subgrad 989.438772 dualbound = 1028904.084155, lowerbound=977095.084155, norm of subgrad 55.778195 stepsize= 1.000000 +dualbound = 1030118.436039, lowerbound=977058.436039, norm of subgrad 989.407113 dualbound = 1030118.436039, lowerbound=977058.436039, norm of subgrad 55.518933 stepsize= 1.000000 +dualbound = 1031317.457267, lowerbound=977516.457267, norm of subgrad 989.624907 dualbound = 1031317.457267, lowerbound=977516.457267, norm of subgrad 55.136388 stepsize= 1.000000 +dualbound = 1032534.691491, lowerbound=977047.691491, norm of subgrad 989.415833 dualbound = 1032534.691491, lowerbound=977047.691491, norm of subgrad 55.796364 stepsize= 1.000000 +dualbound = 1033700.191883, lowerbound=977976.191883, norm of subgrad 989.858673 dualbound = 1033700.191883, lowerbound=977976.191883, norm of subgrad 54.858914 stepsize= 1.000000 +dualbound = 1034902.788417, lowerbound=977934.788417, norm of subgrad 989.828666 dualbound = 1034902.788417, lowerbound=977934.788417, norm of subgrad 55.032686 stepsize= 1.000000 +dualbound = 1036056.968108, lowerbound=978063.968108, norm of subgrad 989.905535 dualbound = 1036056.968108, lowerbound=978063.968108, norm of subgrad 54.801275 stepsize= 1.000000 +dualbound = 1037223.153018, lowerbound=978219.153018, norm of subgrad 989.988461 dualbound = 1037223.153018, lowerbound=978219.153018, norm of subgrad 54.992590 stepsize= 1.000000 +dualbound = 1038383.492442, lowerbound=978739.492442, norm of subgrad 990.253247 dualbound = 1038383.492442, lowerbound=978739.492442, norm of subgrad 54.975808 stepsize= 1.000000 +dualbound = 1039549.591025, lowerbound=978488.591025, norm of subgrad 990.108878 dualbound = 1039549.591025, lowerbound=978488.591025, norm of subgrad 54.709218 stepsize= 1.000000 +dualbound = 1040674.026325, lowerbound=978510.026325, norm of subgrad 990.137882 dualbound = 1040674.026325, lowerbound=978510.026325, norm of subgrad 54.657436 stepsize= 1.000000 +dualbound = 1041821.355711, lowerbound=979190.355711, norm of subgrad 990.477842 dualbound = 1041821.355711, lowerbound=979190.355711, norm of subgrad 54.802640 stepsize= 1.000000 +dualbound = 1042941.969040, lowerbound=978815.969040, norm of subgrad 990.285297 dualbound = 1042941.969040, lowerbound=978815.969040, norm of subgrad 54.494159 stepsize= 1.000000 +dualbound = 1044101.835645, lowerbound=979324.835645, norm of subgrad 990.523516 dualbound = 1044101.835645, lowerbound=979324.835645, norm of subgrad 54.514829 stepsize= 1.000000 +dualbound = 1045211.951977, lowerbound=979574.951977, norm of subgrad 990.649258 dualbound = 1045211.951977, lowerbound=979574.951977, norm of subgrad 54.047353 stepsize= 1.000000 +dualbound = 1046323.296423, lowerbound=979541.296423, norm of subgrad 990.647917 dualbound = 1046323.296423, lowerbound=979541.296423, norm of subgrad 54.344682 stepsize= 1.000000 +dualbound = 1047423.204365, lowerbound=979990.204365, norm of subgrad 990.894648 dualbound = 1047423.204365, lowerbound=979990.204365, norm of subgrad 54.606849 stepsize= 1.000000 +dualbound = 1048530.457882, lowerbound=979341.457882, norm of subgrad 990.536954 dualbound = 1048530.457882, lowerbound=979341.457882, norm of subgrad 54.122579 stepsize= 1.000000 +dualbound = 1049635.678120, lowerbound=980178.678120, norm of subgrad 990.990251 dualbound = 1049635.678120, lowerbound=980178.678120, norm of subgrad 54.664616 stepsize= 1.000000 +dualbound = 1050734.873797, lowerbound=980196.873797, norm of subgrad 990.977736 dualbound = 1050734.873797, lowerbound=980196.873797, norm of subgrad 54.214349 stepsize= 1.000000 +dualbound = 1051845.841636, lowerbound=979921.841636, norm of subgrad 990.820792 dualbound = 1051845.841636, lowerbound=979921.841636, norm of subgrad 53.990442 stepsize= 1.000000 +dualbound = 1052936.752472, lowerbound=980840.752472, norm of subgrad 991.287926 dualbound = 1052936.752472, lowerbound=980840.752472, norm of subgrad 53.869387 stepsize= 1.000000 +dualbound = 1054015.878602, lowerbound=980421.878602, norm of subgrad 991.068049 dualbound = 1054015.878602, lowerbound=980421.878602, norm of subgrad 53.601550 stepsize= 1.000000 +dualbound = 1055091.248807, lowerbound=980133.248807, norm of subgrad 990.936047 dualbound = 1055091.248807, lowerbound=980133.248807, norm of subgrad 53.817936 stepsize= 1.000000 +dualbound = 1056163.624709, lowerbound=981684.624709, norm of subgrad 991.727596 dualbound = 1056163.624709, lowerbound=981684.624709, norm of subgrad 53.957167 stepsize= 1.000000 +dualbound = 1057225.165899, lowerbound=981138.165899, norm of subgrad 991.456588 dualbound = 1057225.165899, lowerbound=981138.165899, norm of subgrad 53.940163 stepsize= 1.000000 +dualbound = 1058261.501422, lowerbound=981396.501422, norm of subgrad 991.595432 dualbound = 1058261.501422, lowerbound=981396.501422, norm of subgrad 53.864047 stepsize= 1.000000 +dualbound = 1059335.032886, lowerbound=981917.032886, norm of subgrad 991.816532 dualbound = 1059335.032886, lowerbound=981917.032886, norm of subgrad 53.446529 stepsize= 1.000000 +dualbound = 1060371.821032, lowerbound=981817.821032, norm of subgrad 991.781640 dualbound = 1060371.821032, lowerbound=981817.821032, norm of subgrad 53.383407 stepsize= 1.000000 +dualbound = 1061415.515498, lowerbound=981258.515498, norm of subgrad 991.504672 dualbound = 1061415.515498, lowerbound=981258.515498, norm of subgrad 53.541521 stepsize= 1.000000 +dualbound = 1062438.708109, lowerbound=982762.708109, norm of subgrad 992.256372 dualbound = 1062438.708109, lowerbound=982762.708109, norm of subgrad 53.227743 stepsize= 1.000000 +dualbound = 1063493.698029, lowerbound=981972.698029, norm of subgrad 991.850139 dualbound = 1063493.698029, lowerbound=981972.698029, norm of subgrad 53.375930 stepsize= 1.000000 +dualbound = 1064505.349062, lowerbound=982651.349062, norm of subgrad 992.205800 dualbound = 1064505.349062, lowerbound=982651.349062, norm of subgrad 53.222655 stepsize= 1.000000 +dualbound = 1065545.672395, lowerbound=983124.672395, norm of subgrad 992.442277 dualbound = 1065545.672395, lowerbound=983124.672395, norm of subgrad 53.453937 stepsize= 1.000000 +dualbound = 1066531.698884, lowerbound=982360.698884, norm of subgrad 992.073434 dualbound = 1066531.698884, lowerbound=982360.698884, norm of subgrad 53.244967 stepsize= 1.000000 +dualbound = 1067577.018327, lowerbound=982620.018327, norm of subgrad 992.167334 dualbound = 1067577.018327, lowerbound=982620.018327, norm of subgrad 53.116094 stepsize= 1.000000 +dualbound = 1068586.181281, lowerbound=983378.181281, norm of subgrad 992.533214 dualbound = 1068586.181281, lowerbound=983378.181281, norm of subgrad 52.470591 stepsize= 1.000000 +dualbound = 1069606.447685, lowerbound=983427.447685, norm of subgrad 992.593798 dualbound = 1069606.447685, lowerbound=983427.447685, norm of subgrad 53.247220 stepsize= 1.000000 +dualbound = 1070585.736144, lowerbound=983572.736144, norm of subgrad 992.679070 dualbound = 1070585.736144, lowerbound=983572.736144, norm of subgrad 53.087555 stepsize= 1.000000 +dualbound = 1071572.509320, lowerbound=983622.509320, norm of subgrad 992.701621 dualbound = 1071572.509320, lowerbound=983622.509320, norm of subgrad 53.110952 stepsize= 1.000000 +dualbound = 1072602.580053, lowerbound=983332.580053, norm of subgrad 992.539460 dualbound = 1072602.580053, lowerbound=983332.580053, norm of subgrad 53.217203 stepsize= 1.000000 +dualbound = 1073597.035720, lowerbound=984095.035720, norm of subgrad 992.898804 dualbound = 1073597.035720, lowerbound=984095.035720, norm of subgrad 52.416178 stepsize= 1.000000 +dualbound = 1074599.211372, lowerbound=983607.211372, norm of subgrad 992.681324 dualbound = 1074599.211372, lowerbound=983607.211372, norm of subgrad 53.020521 stepsize= 1.000000 +dualbound = 1075557.274163, lowerbound=984328.274163, norm of subgrad 993.070629 dualbound = 1075557.274163, lowerbound=984328.274163, norm of subgrad 53.094847 stepsize= 1.000000 +dualbound = 1076569.506218, lowerbound=984284.506218, norm of subgrad 993.017878 dualbound = 1076569.506218, lowerbound=984284.506218, norm of subgrad 53.030482 stepsize= 1.000000 +dualbound = 1077536.670996, lowerbound=984645.670996, norm of subgrad 993.227905 dualbound = 1077536.670996, lowerbound=984645.670996, norm of subgrad 53.133462 stepsize= 1.000000 +dualbound = 1078521.492361, lowerbound=984021.492361, norm of subgrad 992.887956 dualbound = 1078521.492361, lowerbound=984021.492361, norm of subgrad 52.818760 stepsize= 1.000000 +dualbound = 1079523.393463, lowerbound=984945.393463, norm of subgrad 993.339012 dualbound = 1079523.393463, lowerbound=984945.393463, norm of subgrad 52.715283 stepsize= 1.000000 +dualbound = 1080472.426981, lowerbound=984944.426981, norm of subgrad 993.371747 dualbound = 1080472.426981, lowerbound=984944.426981, norm of subgrad 52.839696 stepsize= 1.000000 +dualbound = 1081457.027186, lowerbound=984797.027186, norm of subgrad 993.278927 dualbound = 1081457.027186, lowerbound=984797.027186, norm of subgrad 52.826132 stepsize= 1.000000 +dualbound = 1082419.860922, lowerbound=984776.860922, norm of subgrad 993.264749 dualbound = 1082419.860922, lowerbound=984776.860922, norm of subgrad 52.543636 stepsize= 1.000000 +dualbound = 1083384.625939, lowerbound=986185.625939, norm of subgrad 993.972648 dualbound = 1083384.625939, lowerbound=986185.625939, norm of subgrad 52.542983 stepsize= 1.000000 +dualbound = 1084346.243497, lowerbound=985566.243497, norm of subgrad 993.652979 dualbound = 1084346.243497, lowerbound=985566.243497, norm of subgrad 52.360458 stepsize= 1.000000 +dualbound = 1085317.089440, lowerbound=986020.089440, norm of subgrad 993.884344 dualbound = 1085317.089440, lowerbound=986020.089440, norm of subgrad 52.505675 stepsize= 1.000000 +dualbound = 1086233.685542, lowerbound=987127.685542, norm of subgrad 994.451450 dualbound = 1086233.685542, lowerbound=987127.685542, norm of subgrad 52.178502 stepsize= 1.000000 +dualbound = 1087198.623034, lowerbound=985254.623034, norm of subgrad 993.471501 dualbound = 1087198.623034, lowerbound=985254.623034, norm of subgrad 51.922418 stepsize= 1.000000 +dualbound = 1088167.034263, lowerbound=987224.034263, norm of subgrad 994.491344 dualbound = 1088167.034263, lowerbound=987224.034263, norm of subgrad 52.511058 stepsize= 1.000000 +dualbound = 1089074.693755, lowerbound=986819.693755, norm of subgrad 994.296582 dualbound = 1089074.693755, lowerbound=986819.693755, norm of subgrad 52.092797 stepsize= 1.000000 +dualbound = 1090008.490274, lowerbound=986935.490274, norm of subgrad 994.352800 dualbound = 1090008.490274, lowerbound=986935.490274, norm of subgrad 52.304842 stepsize= 1.000000 +dualbound = 1090945.545959, lowerbound=987014.545959, norm of subgrad 994.364896 dualbound = 1090945.545959, lowerbound=987014.545959, norm of subgrad 51.807873 stepsize= 1.000000 +dualbound = 1091890.434624, lowerbound=987321.434624, norm of subgrad 994.520706 dualbound = 1091890.434624, lowerbound=987321.434624, norm of subgrad 51.912317 stepsize= 1.000000 +dualbound = 1092826.257340, lowerbound=986547.257340, norm of subgrad 994.167117 dualbound = 1092826.257340, lowerbound=986547.257340, norm of subgrad 52.505454 stepsize= 1.000000 +dualbound = 1093698.702147, lowerbound=988304.702147, norm of subgrad 995.045578 dualbound = 1093698.702147, lowerbound=988304.702147, norm of subgrad 51.801977 stepsize= 1.000000 +dualbound = 1094630.538535, lowerbound=987803.538535, norm of subgrad 994.777633 dualbound = 1094630.538535, lowerbound=987803.538535, norm of subgrad 52.065693 stepsize= 1.000000 +dualbound = 1095571.111143, lowerbound=988484.111143, norm of subgrad 995.080957 dualbound = 1095571.111143, lowerbound=988484.111143, norm of subgrad 51.405959 stepsize= 1.000000 +dualbound = 1096485.337037, lowerbound=987551.337037, norm of subgrad 994.648348 dualbound = 1096485.337037, lowerbound=987551.337037, norm of subgrad 51.848104 stepsize= 1.000000 +dualbound = 1097340.540364, lowerbound=988518.540364, norm of subgrad 995.163575 dualbound = 1097340.540364, lowerbound=988518.540364, norm of subgrad 51.838242 stepsize= 1.000000 +dualbound = 1098259.720538, lowerbound=988798.720538, norm of subgrad 995.264648 dualbound = 1098259.720538, lowerbound=988798.720538, norm of subgrad 51.693135 stepsize= 1.000000 +dualbound = 1099175.240105, lowerbound=988625.240105, norm of subgrad 995.174477 dualbound = 1099175.240105, lowerbound=988625.240105, norm of subgrad 51.599608 stepsize= 1.000000 +dualbound = 1100064.748000, lowerbound=988784.748000, norm of subgrad 995.280236 dualbound = 1100064.748000, lowerbound=988784.748000, norm of subgrad 51.841180 stepsize= 1.000000 +dualbound = 1100943.272157, lowerbound=988955.272157, norm of subgrad 995.346810 dualbound = 1100943.272157, lowerbound=988955.272157, norm of subgrad 51.366567 stepsize= 1.000000 +dualbound = 1101836.072402, lowerbound=988524.072402, norm of subgrad 995.129174 dualbound = 1101836.072402, lowerbound=988524.072402, norm of subgrad 51.485923 stepsize= 1.000000 +dualbound = 1102742.331831, lowerbound=989817.331831, norm of subgrad 995.781769 dualbound = 1102742.331831, lowerbound=989817.331831, norm of subgrad 51.674553 stepsize= 1.000000 +dualbound = 1103609.480702, lowerbound=989674.480702, norm of subgrad 995.718073 dualbound = 1103609.480702, lowerbound=989674.480702, norm of subgrad 51.450451 stepsize= 1.000000 +dualbound = 1104501.358645, lowerbound=989306.358645, norm of subgrad 995.504073 dualbound = 1104501.358645, lowerbound=989306.358645, norm of subgrad 51.126098 stepsize= 1.000000 +dualbound = 1105352.839006, lowerbound=989555.839006, norm of subgrad 995.673560 dualbound = 1105352.839006, lowerbound=989555.839006, norm of subgrad 51.589537 stepsize= 1.000000 +dualbound = 1106233.500403, lowerbound=990218.500403, norm of subgrad 995.973142 dualbound = 1106233.500403, lowerbound=990218.500403, norm of subgrad 51.231449 stepsize= 1.000000 +dualbound = 1107131.222303, lowerbound=990005.222303, norm of subgrad 995.875104 dualbound = 1107131.222303, lowerbound=990005.222303, norm of subgrad 51.572492 stepsize= 1.000000 +dualbound = 1107993.663652, lowerbound=989605.663652, norm of subgrad 995.662927 dualbound = 1107993.663652, lowerbound=989605.663652, norm of subgrad 51.004327 stepsize= 1.000000 +dualbound = 1108849.729054, lowerbound=990345.729054, norm of subgrad 996.058095 dualbound = 1108849.729054, lowerbound=990345.729054, norm of subgrad 51.401025 stepsize= 1.000000 +dualbound = 1109704.986969, lowerbound=990594.986969, norm of subgrad 996.162631 dualbound = 1109704.986969, lowerbound=990594.986969, norm of subgrad 50.992724 stepsize= 1.000000 +dualbound = 1110594.188502, lowerbound=989962.188502, norm of subgrad 995.847473 dualbound = 1110594.188502, lowerbound=989962.188502, norm of subgrad 51.373160 stepsize= 1.000000 +dualbound = 1111444.374674, lowerbound=991403.374674, norm of subgrad 996.564787 dualbound = 1111444.374674, lowerbound=991403.374674, norm of subgrad 50.874219 stepsize= 1.000000 +dualbound = 1112283.517238, lowerbound=990004.517238, norm of subgrad 995.845629 dualbound = 1112283.517238, lowerbound=990004.517238, norm of subgrad 50.429580 stepsize= 1.000000 +dualbound = 1113188.046824, lowerbound=991871.046824, norm of subgrad 996.802411 dualbound = 1113188.046824, lowerbound=991871.046824, norm of subgrad 51.463867 stepsize= 1.000000 +dualbound = 1113971.889133, lowerbound=991450.889133, norm of subgrad 996.619230 dualbound = 1113971.889133, lowerbound=991450.889133, norm of subgrad 50.821672 stepsize= 1.000000 +dualbound = 1114837.767399, lowerbound=992142.767399, norm of subgrad 996.927664 dualbound = 1114837.767399, lowerbound=992142.767399, norm of subgrad 50.871193 stepsize= 1.000000 +dualbound = 1115681.237006, lowerbound=992243.237006, norm of subgrad 997.011152 dualbound = 1115681.237006, lowerbound=992243.237006, norm of subgrad 51.297852 stepsize= 1.000000 +dualbound = 1116516.370867, lowerbound=992858.370867, norm of subgrad 997.278482 dualbound = 1116516.370867, lowerbound=992858.370867, norm of subgrad 50.409660 stepsize= 1.000000 +dualbound = 1117375.706498, lowerbound=991613.706498, norm of subgrad 996.622148 dualbound = 1117375.706498, lowerbound=991613.706498, norm of subgrad 50.013355 stepsize= 1.000000 +dualbound = 1118208.172786, lowerbound=992502.172786, norm of subgrad 997.148019 dualbound = 1118208.172786, lowerbound=992502.172786, norm of subgrad 51.327052 stepsize= 1.000000 +dualbound = 1118992.876915, lowerbound=992395.876915, norm of subgrad 997.089202 dualbound = 1118992.876915, lowerbound=992395.876915, norm of subgrad 50.751395 stepsize= 1.000000 +dualbound = 1119875.216847, lowerbound=993089.216847, norm of subgrad 997.384187 dualbound = 1119875.216847, lowerbound=993089.216847, norm of subgrad 50.678792 stepsize= 1.000000 +dualbound = 1120681.626269, lowerbound=992462.626269, norm of subgrad 997.097601 dualbound = 1120681.626269, lowerbound=992462.626269, norm of subgrad 50.471868 stepsize= 1.000000 +dualbound = 1121504.559198, lowerbound=993583.559198, norm of subgrad 997.649517 dualbound = 1121504.559198, lowerbound=993583.559198, norm of subgrad 50.437416 stepsize= 1.000000 +dualbound = 1122328.137505, lowerbound=993287.137505, norm of subgrad 997.524003 dualbound = 1122328.137505, lowerbound=993287.137505, norm of subgrad 50.897724 stepsize= 1.000000 +dualbound = 1123139.128313, lowerbound=993210.128313, norm of subgrad 997.482896 dualbound = 1123139.128313, lowerbound=993210.128313, norm of subgrad 50.724657 stepsize= 1.000000 +dualbound = 1123979.347129, lowerbound=993837.347129, norm of subgrad 997.768183 dualbound = 1123979.347129, lowerbound=993837.347129, norm of subgrad 50.440250 stepsize= 1.000000 +dualbound = 1124775.547221, lowerbound=993312.547221, norm of subgrad 997.501151 dualbound = 1124775.547221, lowerbound=993312.547221, norm of subgrad 49.921940 stepsize= 1.000000 +dualbound = 1125605.117530, lowerbound=994207.117530, norm of subgrad 997.969497 dualbound = 1125605.117530, lowerbound=994207.117530, norm of subgrad 50.651459 stepsize= 1.000000 +dualbound = 1126390.147443, lowerbound=994262.147443, norm of subgrad 998.030635 dualbound = 1126390.147443, lowerbound=994262.147443, norm of subgrad 50.872683 stepsize= 1.000000 +dualbound = 1127186.714293, lowerbound=994790.714293, norm of subgrad 998.253332 dualbound = 1127186.714293, lowerbound=994790.714293, norm of subgrad 50.155427 stepsize= 1.000000 +dualbound = 1128027.859497, lowerbound=992913.859497, norm of subgrad 997.317833 dualbound = 1128027.859497, lowerbound=992913.859497, norm of subgrad 50.696600 stepsize= 1.000000 +dualbound = 1128812.429383, lowerbound=995639.429383, norm of subgrad 998.712886 dualbound = 1128812.429383, lowerbound=995639.429383, norm of subgrad 50.720508 stepsize= 1.000000 +dualbound = 1129622.392835, lowerbound=994512.392835, norm of subgrad 998.133454 dualbound = 1129622.392835, lowerbound=994512.392835, norm of subgrad 50.675077 stepsize= 1.000000 +dualbound = 1130411.614165, lowerbound=994032.614165, norm of subgrad 997.871542 dualbound = 1130411.614165, lowerbound=994032.614165, norm of subgrad 50.042195 stepsize= 1.000000 +dualbound = 1131255.951182, lowerbound=994589.951182, norm of subgrad 998.165793 dualbound = 1131255.951182, lowerbound=994589.951182, norm of subgrad 50.885529 stepsize= 1.000000 +dualbound = 1132009.356403, lowerbound=995020.356403, norm of subgrad 998.404405 dualbound = 1132009.356403, lowerbound=995020.356403, norm of subgrad 50.442098 stepsize= 1.000000 +dualbound = 1132823.343546, lowerbound=995149.343546, norm of subgrad 998.426935 dualbound = 1132823.343546, lowerbound=995149.343546, norm of subgrad 50.209433 stepsize= 1.000000 +dualbound = 1133619.227069, lowerbound=994938.227069, norm of subgrad 998.343742 dualbound = 1133619.227069, lowerbound=994938.227069, norm of subgrad 50.476564 stepsize= 1.000000 +dualbound = 1134428.203184, lowerbound=995508.203184, norm of subgrad 998.622152 dualbound = 1134428.203184, lowerbound=995508.203184, norm of subgrad 50.467575 stepsize= 1.000000 +dualbound = 1135200.980631, lowerbound=995761.980631, norm of subgrad 998.760222 dualbound = 1135200.980631, lowerbound=995761.980631, norm of subgrad 50.326707 stepsize= 1.000000 +dualbound = 1136011.539953, lowerbound=994649.539953, norm of subgrad 998.190132 dualbound = 1136011.539953, lowerbound=994649.539953, norm of subgrad 50.443625 stepsize= 1.000000 +dualbound = 1136791.104217, lowerbound=996439.104217, norm of subgrad 999.066116 dualbound = 1136791.104217, lowerbound=996439.104217, norm of subgrad 49.734940 stepsize= 1.000000 +dualbound = 1137571.914519, lowerbound=994217.914519, norm of subgrad 997.995448 dualbound = 1137571.914519, lowerbound=994217.914519, norm of subgrad 50.574799 stepsize= 1.000000 +dualbound = 1138362.981562, lowerbound=996572.981562, norm of subgrad 999.175651 dualbound = 1138362.981562, lowerbound=996572.981562, norm of subgrad 50.695829 stepsize= 1.000000 +dualbound = 1139151.072029, lowerbound=995621.072029, norm of subgrad 998.652628 dualbound = 1139151.072029, lowerbound=995621.072029, norm of subgrad 49.740230 stepsize= 1.000000 +dualbound = 1139970.520819, lowerbound=995856.520819, norm of subgrad 998.778014 dualbound = 1139970.520819, lowerbound=995856.520819, norm of subgrad 50.204071 stepsize= 1.000000 +dualbound = 1140731.883815, lowerbound=995849.883815, norm of subgrad 998.803226 dualbound = 1140731.883815, lowerbound=995849.883815, norm of subgrad 50.193256 stepsize= 1.000000 +dualbound = 1141480.753119, lowerbound=997715.753119, norm of subgrad 999.740843 dualbound = 1141480.753119, lowerbound=997715.753119, norm of subgrad 50.148473 stepsize= 1.000000 +dualbound = 1142282.275097, lowerbound=995789.275097, norm of subgrad 998.773385 dualbound = 1142282.275097, lowerbound=995789.275097, norm of subgrad 50.601601 stepsize= 1.000000 +dualbound = 1143040.826814, lowerbound=997211.826814, norm of subgrad 999.480278 dualbound = 1143040.826814, lowerbound=997211.826814, norm of subgrad 50.075460 stepsize= 1.000000 +dualbound = 1143824.970857, lowerbound=996861.970857, norm of subgrad 999.258711 dualbound = 1143824.970857, lowerbound=996861.970857, norm of subgrad 49.397814 stepsize= 1.000000 +dualbound = 1144598.642483, lowerbound=998354.642483, norm of subgrad 1000.058820 dualbound = 1144598.642483, lowerbound=998354.642483, norm of subgrad 50.365381 stepsize= 1.000000 +dualbound = 1145348.958919, lowerbound=996077.958919, norm of subgrad 998.902878 dualbound = 1145348.958919, lowerbound=996077.958919, norm of subgrad 49.792735 stepsize= 1.000000 +dualbound = 1146135.726400, lowerbound=998493.726400, norm of subgrad 1000.098358 dualbound = 1146135.726400, lowerbound=998493.726400, norm of subgrad 49.897570 stepsize= 1.000000 +dualbound = 1146884.667717, lowerbound=996625.667717, norm of subgrad 999.200514 dualbound = 1146884.667717, lowerbound=996625.667717, norm of subgrad 50.248794 stepsize= 1.000000 +dualbound = 1147630.024156, lowerbound=997698.024156, norm of subgrad 999.744479 dualbound = 1147630.024156, lowerbound=997698.024156, norm of subgrad 50.362252 stepsize= 1.000000 +dualbound = 1148413.371467, lowerbound=997363.371467, norm of subgrad 999.548084 dualbound = 1148413.371467, lowerbound=997363.371467, norm of subgrad 50.163207 stepsize= 1.000000 +dualbound = 1149178.644956, lowerbound=998844.644956, norm of subgrad 1000.275285 dualbound = 1149178.644956, lowerbound=998844.644956, norm of subgrad 49.711905 stepsize= 1.000000 +dualbound = 1149956.575394, lowerbound=997962.575394, norm of subgrad 999.845776 dualbound = 1149956.575394, lowerbound=997962.575394, norm of subgrad 50.069256 stepsize= 1.000000 +dualbound = 1150686.923873, lowerbound=998064.923873, norm of subgrad 999.920959 dualbound = 1150686.923873, lowerbound=998064.923873, norm of subgrad 50.073431 stepsize= 1.000000 +dualbound = 1151429.296929, lowerbound=998369.296929, norm of subgrad 1000.067646 dualbound = 1151429.296929, lowerbound=998369.296929, norm of subgrad 50.083661 stepsize= 1.000000 +dualbound = 1152218.595955, lowerbound=998483.595955, norm of subgrad 1000.112792 dualbound = 1152218.595955, lowerbound=998483.595955, norm of subgrad 50.312017 stepsize= 1.000000 +dualbound = 1152952.836127, lowerbound=997898.836127, norm of subgrad 999.814401 dualbound = 1152952.836127, lowerbound=997898.836127, norm of subgrad 49.641114 stepsize= 1.000000 +dualbound = 1153712.642475, lowerbound=999156.642475, norm of subgrad 1000.495199 dualbound = 1153712.642475, lowerbound=999156.642475, norm of subgrad 50.929425 stepsize= 1.000000 +dualbound = 1154452.383488, lowerbound=998587.383488, norm of subgrad 1000.202171 dualbound = 1154452.383488, lowerbound=998587.383488, norm of subgrad 50.564227 stepsize= 1.000000 +dualbound = 1155218.304539, lowerbound=998661.304539, norm of subgrad 1000.202632 dualbound = 1155218.304539, lowerbound=998661.304539, norm of subgrad 50.099112 stepsize= 1.000000 +dualbound = 1155982.941208, lowerbound=998622.941208, norm of subgrad 1000.185953 dualbound = 1155982.941208, lowerbound=998622.941208, norm of subgrad 50.136181 stepsize= 1.000000 +dualbound = 1156712.743321, lowerbound=999118.743321, norm of subgrad 1000.453269 dualbound = 1156712.743321, lowerbound=999118.743321, norm of subgrad 50.177705 stepsize= 1.000000 +dualbound = 1157476.815165, lowerbound=999386.815165, norm of subgrad 1000.548757 dualbound = 1157476.815165, lowerbound=999386.815165, norm of subgrad 49.750094 stepsize= 1.000000 +dualbound = 1158238.107389, lowerbound=998157.107389, norm of subgrad 999.937052 dualbound = 1158238.107389, lowerbound=998157.107389, norm of subgrad 49.782449 stepsize= 1.000000 +dualbound = 1158980.447410, lowerbound=999491.447410, norm of subgrad 1000.605041 dualbound = 1158980.447410, lowerbound=999491.447410, norm of subgrad 49.611894 stepsize= 1.000000 +dualbound = 1159714.443556, lowerbound=999805.443556, norm of subgrad 1000.772923 dualbound = 1159714.443556, lowerbound=999805.443556, norm of subgrad 49.749333 stepsize= 1.000000 +dualbound = 1160465.950052, lowerbound=999449.950052, norm of subgrad 1000.618784 dualbound = 1160465.950052, lowerbound=999449.950052, norm of subgrad 50.393516 stepsize= 1.000000 +dualbound = 1161171.992615, lowerbound=998810.992615, norm of subgrad 1000.287955 dualbound = 1161171.992615, lowerbound=998810.992615, norm of subgrad 49.709582 stepsize= 1.000000 +dualbound = 1161941.021366, lowerbound=999681.021366, norm of subgrad 1000.675283 dualbound = 1161941.021366, lowerbound=999681.021366, norm of subgrad 49.386524 stepsize= 1.000000 +dualbound = 1162671.836716, lowerbound=1000917.836716, norm of subgrad 1001.338523 dualbound = 1162671.836716, lowerbound=1000917.836716, norm of subgrad 49.918086 stepsize= 1.000000 +dualbound = 1163406.799988, lowerbound=999151.799988, norm of subgrad 1000.454297 dualbound = 1163406.799988, lowerbound=999151.799988, norm of subgrad 49.919568 stepsize= 1.000000 +dualbound = 1164142.537207, lowerbound=1000126.537207, norm of subgrad 1000.917348 dualbound = 1164142.537207, lowerbound=1000126.537207, norm of subgrad 49.444284 stepsize= 1.000000 +dualbound = 1164917.622798, lowerbound=1000220.622798, norm of subgrad 1000.963847 dualbound = 1164917.622798, lowerbound=1000220.622798, norm of subgrad 49.830569 stepsize= 1.000000 +dualbound = 1165592.661200, lowerbound=1000357.661200, norm of subgrad 1001.081746 dualbound = 1165592.661200, lowerbound=1000357.661200, norm of subgrad 49.820060 stepsize= 1.000000 +dualbound = 1166339.548459, lowerbound=999726.548459, norm of subgrad 1000.728009 dualbound = 1166339.548459, lowerbound=999726.548459, norm of subgrad 49.768336 stepsize= 1.000000 +dualbound = 1167084.140954, lowerbound=1000731.140954, norm of subgrad 1001.237804 dualbound = 1167084.140954, lowerbound=1000731.140954, norm of subgrad 49.905836 stepsize= 1.000000 +dualbound = 1167801.827624, lowerbound=999807.827624, norm of subgrad 1000.754129 dualbound = 1167801.827624, lowerbound=999807.827624, norm of subgrad 49.180145 stepsize= 1.000000 +dualbound = 1168555.428852, lowerbound=1001481.428852, norm of subgrad 1001.588952 dualbound = 1168555.428852, lowerbound=1001481.428852, norm of subgrad 49.523744 stepsize= 1.000000 +dualbound = 1169278.328658, lowerbound=999997.328658, norm of subgrad 1000.855299 dualbound = 1169278.328658, lowerbound=999997.328658, norm of subgrad 49.364965 stepsize= 1.000000 +dualbound = 1169996.896961, lowerbound=1001608.896961, norm of subgrad 1001.655578 dualbound = 1169996.896961, lowerbound=1001608.896961, norm of subgrad 49.229750 stepsize= 1.000000 +dualbound = 1170723.777355, lowerbound=1000306.777355, norm of subgrad 1001.051835 dualbound = 1170723.777355, lowerbound=1000306.777355, norm of subgrad 50.248188 stepsize= 1.000000 +dualbound = 1171400.433647, lowerbound=1001125.433647, norm of subgrad 1001.445173 dualbound = 1171400.433647, lowerbound=1001125.433647, norm of subgrad 49.433352 stepsize= 1.000000 +dualbound = 1172174.347737, lowerbound=1001609.347737, norm of subgrad 1001.637333 dualbound = 1172174.347737, lowerbound=1001609.347737, norm of subgrad 49.415727 stepsize= 1.000000 +dualbound = 1172885.147574, lowerbound=1000705.147574, norm of subgrad 1001.198356 dualbound = 1172885.147574, lowerbound=1000705.147574, norm of subgrad 49.028561 stepsize= 1.000000 +dualbound = 1173613.590813, lowerbound=1000452.590813, norm of subgrad 1001.093198 dualbound = 1173613.590813, lowerbound=1000452.590813, norm of subgrad 49.633086 stepsize= 1.000000 +dualbound = 1174317.790279, lowerbound=1001891.790279, norm of subgrad 1001.817244 dualbound = 1174317.790279, lowerbound=1001891.790279, norm of subgrad 49.499490 stepsize= 1.000000 +dualbound = 1175022.591990, lowerbound=1001640.591990, norm of subgrad 1001.688870 dualbound = 1175022.591990, lowerbound=1001640.591990, norm of subgrad 49.444936 stepsize= 1.000000 +dualbound = 1175748.838973, lowerbound=1002211.838973, norm of subgrad 1001.974470 dualbound = 1175748.838973, lowerbound=1002211.838973, norm of subgrad 49.671390 stepsize= 1.000000 +dualbound = 1176483.195622, lowerbound=1001361.195622, norm of subgrad 1001.544904 dualbound = 1176483.195622, lowerbound=1001361.195622, norm of subgrad 49.652358 stepsize= 1.000000 +dualbound = 1177170.591675, lowerbound=1004029.591675, norm of subgrad 1002.872670 dualbound = 1177170.591675, lowerbound=1004029.591675, norm of subgrad 49.105968 stepsize= 1.000000 +dualbound = 1177913.396164, lowerbound=1000431.396164, norm of subgrad 1001.074621 dualbound = 1177913.396164, lowerbound=1000431.396164, norm of subgrad 49.616575 stepsize= 1.000000 +dualbound = 1178622.703059, lowerbound=1002025.703059, norm of subgrad 1001.876092 dualbound = 1178622.703059, lowerbound=1002025.703059, norm of subgrad 49.389340 stepsize= 1.000000 +dualbound = 1179320.209533, lowerbound=1001810.209533, norm of subgrad 1001.746080 dualbound = 1179320.209533, lowerbound=1001810.209533, norm of subgrad 48.810926 stepsize= 1.000000 +dualbound = 1180038.451644, lowerbound=1003276.451644, norm of subgrad 1002.541496 dualbound = 1180038.451644, lowerbound=1003276.451644, norm of subgrad 50.311451 stepsize= 1.000000 +dualbound = 1180722.412154, lowerbound=1001515.412154, norm of subgrad 1001.598429 dualbound = 1180722.412154, lowerbound=1001515.412154, norm of subgrad 48.661694 stepsize= 1.000000 +dualbound = 1181459.612680, lowerbound=1002876.612680, norm of subgrad 1002.282701 dualbound = 1181459.612680, lowerbound=1002876.612680, norm of subgrad 49.307206 stepsize= 1.000000 +dualbound = 1182159.245640, lowerbound=1003520.245640, norm of subgrad 1002.605229 dualbound = 1182159.245640, lowerbound=1003520.245640, norm of subgrad 48.955418 stepsize= 1.000000 +dualbound = 1182870.876318, lowerbound=1002978.876318, norm of subgrad 1002.352172 dualbound = 1182870.876318, lowerbound=1002978.876318, norm of subgrad 49.422977 stepsize= 1.000000 +dualbound = 1183589.336457, lowerbound=1002208.336457, norm of subgrad 1001.932800 dualbound = 1183589.336457, lowerbound=1002208.336457, norm of subgrad 48.779710 stepsize= 1.000000 +dualbound = 1184277.192064, lowerbound=1003547.192064, norm of subgrad 1002.658063 dualbound = 1184277.192064, lowerbound=1003547.192064, norm of subgrad 49.637240 stepsize= 1.000000 +dualbound = 1184941.476319, lowerbound=1003527.476319, norm of subgrad 1002.654216 dualbound = 1184941.476319, lowerbound=1003527.476319, norm of subgrad 49.520544 stepsize= 1.000000 +dualbound = 1185665.900714, lowerbound=1002896.900714, norm of subgrad 1002.280350 dualbound = 1185665.900714, lowerbound=1002896.900714, norm of subgrad 48.922637 stepsize= 1.000000 +dualbound = 1186365.713707, lowerbound=1003284.713707, norm of subgrad 1002.510705 dualbound = 1186365.713707, lowerbound=1003284.713707, norm of subgrad 49.424822 stepsize= 1.000000 +dualbound = 1187043.684768, lowerbound=1004788.684768, norm of subgrad 1003.280462 dualbound = 1187043.684768, lowerbound=1004788.684768, norm of subgrad 49.608175 stepsize= 1.000000 +dualbound = 1187736.379048, lowerbound=1002036.379048, norm of subgrad 1001.854470 dualbound = 1187736.379048, lowerbound=1002036.379048, norm of subgrad 48.669233 stepsize= 1.000000 +dualbound = 1188480.768685, lowerbound=1005062.768685, norm of subgrad 1003.342797 dualbound = 1188480.768685, lowerbound=1005062.768685, norm of subgrad 48.768736 stepsize= 1.000000 +dualbound = 1189166.602457, lowerbound=1004248.602457, norm of subgrad 1002.976870 dualbound = 1189166.602457, lowerbound=1004248.602457, norm of subgrad 48.988098 stepsize= 1.000000 +dualbound = 1189820.206735, lowerbound=1005069.206735, norm of subgrad 1003.398329 dualbound = 1189820.206735, lowerbound=1005069.206735, norm of subgrad 48.914254 stepsize= 1.000000 +dualbound = 1190512.406872, lowerbound=1003120.406872, norm of subgrad 1002.426260 dualbound = 1190512.406872, lowerbound=1003120.406872, norm of subgrad 49.297060 stepsize= 1.000000 +dualbound = 1191219.766496, lowerbound=1005229.766496, norm of subgrad 1003.446943 dualbound = 1191219.766496, lowerbound=1005229.766496, norm of subgrad 48.819664 stepsize= 1.000000 +dualbound = 1191925.488108, lowerbound=1004368.488108, norm of subgrad 1003.018688 dualbound = 1191925.488108, lowerbound=1004368.488108, norm of subgrad 48.823372 stepsize= 1.000000 +dualbound = 1192591.720603, lowerbound=1005325.720603, norm of subgrad 1003.542585 dualbound = 1192591.720603, lowerbound=1005325.720603, norm of subgrad 49.378462 stepsize= 1.000000 +dualbound = 1193256.840196, lowerbound=1004127.840196, norm of subgrad 1002.955054 dualbound = 1193256.840196, lowerbound=1004127.840196, norm of subgrad 49.559253 stepsize= 1.000000 +dualbound = 1193962.975795, lowerbound=1004994.975795, norm of subgrad 1003.335425 dualbound = 1193962.975795, lowerbound=1004994.975795, norm of subgrad 48.919685 stepsize= 1.000000 +dualbound = 1194659.413611, lowerbound=1004960.413611, norm of subgrad 1003.337139 dualbound = 1194659.413611, lowerbound=1004960.413611, norm of subgrad 49.208107 stepsize= 1.000000 +dualbound = 1195355.480431, lowerbound=1005878.480431, norm of subgrad 1003.781092 dualbound = 1195355.480431, lowerbound=1005878.480431, norm of subgrad 48.929202 stepsize= 1.000000 +dualbound = 1196018.261270, lowerbound=1005346.261270, norm of subgrad 1003.526911 dualbound = 1196018.261270, lowerbound=1005346.261270, norm of subgrad 48.813736 stepsize= 1.000000 +dualbound = 1196712.324733, lowerbound=1005171.324733, norm of subgrad 1003.440245 dualbound = 1196712.324733, lowerbound=1005171.324733, norm of subgrad 49.143295 stepsize= 1.000000 +dualbound = 1197379.659284, lowerbound=1005354.659284, norm of subgrad 1003.528604 dualbound = 1197379.659284, lowerbound=1005354.659284, norm of subgrad 48.809165 stepsize= 1.000000 +dualbound = 1198069.533342, lowerbound=1004668.533342, norm of subgrad 1003.176721 dualbound = 1198069.533342, lowerbound=1004668.533342, norm of subgrad 48.835172 stepsize= 1.000000 +dualbound = 1198746.115807, lowerbound=1006297.115807, norm of subgrad 1004.023464 dualbound = 1198746.115807, lowerbound=1006297.115807, norm of subgrad 49.422489 stepsize= 1.000000 +dualbound = 1199420.226652, lowerbound=1005274.226652, norm of subgrad 1003.491518 dualbound = 1199420.226652, lowerbound=1005274.226652, norm of subgrad 48.939870 stepsize= 1.000000 +dualbound = 1200140.142981, lowerbound=1005701.142981, norm of subgrad 1003.680797 dualbound = 1200140.142981, lowerbound=1005701.142981, norm of subgrad 48.927664 stepsize= 1.000000 +dualbound = 1200816.846523, lowerbound=1005657.846522, norm of subgrad 1003.674173 dualbound = 1200816.846523, lowerbound=1005657.846522, norm of subgrad 48.792454 stepsize= 1.000000 +dualbound = 1201473.797957, lowerbound=1005463.797957, norm of subgrad 1003.628815 dualbound = 1201473.797957, lowerbound=1005463.797957, norm of subgrad 49.638205 stepsize= 1.000000 +dualbound = 1202140.282381, lowerbound=1006077.282381, norm of subgrad 1003.863677 dualbound = 1202140.282381, lowerbound=1006077.282381, norm of subgrad 48.285447 stepsize= 1.000000 +dualbound = 1202850.821500, lowerbound=1004879.821500, norm of subgrad 1003.282523 dualbound = 1202850.821500, lowerbound=1004879.821500, norm of subgrad 49.056489 stepsize= 1.000000 +dualbound = 1203533.203923, lowerbound=1006698.203923, norm of subgrad 1004.185841 dualbound = 1203533.203923, lowerbound=1006698.203923, norm of subgrad 48.717373 stepsize= 1.000000 +dualbound = 1204205.522440, lowerbound=1005661.522440, norm of subgrad 1003.678994 dualbound = 1204205.522440, lowerbound=1005661.522440, norm of subgrad 48.809000 stepsize= 1.000000 +dualbound = 1204878.049810, lowerbound=1007068.049810, norm of subgrad 1004.381924 dualbound = 1204878.049810, lowerbound=1007068.049810, norm of subgrad 48.862331 stepsize= 1.000000 +dualbound = 1205533.754733, lowerbound=1005338.754733, norm of subgrad 1003.556055 dualbound = 1205533.754733, lowerbound=1005338.754733, norm of subgrad 49.413611 stepsize= 1.000000 +dualbound = 1206223.744992, lowerbound=1006164.744992, norm of subgrad 1003.943597 dualbound = 1206223.744992, lowerbound=1006164.744992, norm of subgrad 49.274641 stepsize= 1.000000 +dualbound = 1206891.659589, lowerbound=1005978.659589, norm of subgrad 1003.823520 dualbound = 1206891.659589, lowerbound=1005978.659589, norm of subgrad 48.486231 stepsize= 1.000000 +dualbound = 1207582.706298, lowerbound=1007112.706298, norm of subgrad 1004.429045 dualbound = 1207582.706298, lowerbound=1007112.706298, norm of subgrad 49.558518 stepsize= 1.000000 +dualbound = 1208225.211936, lowerbound=1006854.211936, norm of subgrad 1004.299862 dualbound = 1208225.211936, lowerbound=1006854.211936, norm of subgrad 49.056148 stepsize= 1.000000 +dualbound = 1208896.546014, lowerbound=1005604.546014, norm of subgrad 1003.637159 dualbound = 1208896.546014, lowerbound=1005604.546014, norm of subgrad 48.521481 stepsize= 1.000000 +dualbound = 1209599.195442, lowerbound=1007250.195442, norm of subgrad 1004.416843 dualbound = 1209599.195442, lowerbound=1007250.195442, norm of subgrad 48.017178 stepsize= 1.000000 +dualbound = 1210281.609273, lowerbound=1008044.609273, norm of subgrad 1004.836608 dualbound = 1210281.609273, lowerbound=1008044.609273, norm of subgrad 48.315772 stepsize= 1.000000 +dualbound = 1210913.996506, lowerbound=1005761.996506, norm of subgrad 1003.748473 dualbound = 1210913.996506, lowerbound=1005761.996506, norm of subgrad 48.799459 stepsize= 1.000000 +dualbound = 1211546.876925, lowerbound=1007530.876925, norm of subgrad 1004.659583 dualbound = 1211546.876925, lowerbound=1007530.876925, norm of subgrad 49.425504 stepsize= 1.000000 +dualbound = 1212233.926814, lowerbound=1005975.926814, norm of subgrad 1003.846067 dualbound = 1212233.926814, lowerbound=1005975.926814, norm of subgrad 49.173671 stepsize= 1.000000 +dualbound = 1212932.372497, lowerbound=1007791.372497, norm of subgrad 1004.698150 dualbound = 1212932.372497, lowerbound=1007791.372497, norm of subgrad 48.222875 stepsize= 1.000000 +dualbound = 1213576.173867, lowerbound=1007502.173867, norm of subgrad 1004.625888 dualbound = 1213576.173867, lowerbound=1007502.173867, norm of subgrad 49.140629 stepsize= 1.000000 +dualbound = 1214226.732747, lowerbound=1006943.732747, norm of subgrad 1004.350403 dualbound = 1214226.732747, lowerbound=1006943.732747, norm of subgrad 49.260114 stepsize= 1.000000 +dualbound = 1214885.087523, lowerbound=1007217.087523, norm of subgrad 1004.454124 dualbound = 1214885.087523, lowerbound=1007217.087523, norm of subgrad 48.676018 stepsize= 1.000000 +dualbound = 1215594.441499, lowerbound=1007205.441499, norm of subgrad 1004.408005 dualbound = 1215594.441499, lowerbound=1007205.441499, norm of subgrad 48.366869 stepsize= 1.000000 +dualbound = 1216234.723975, lowerbound=1007554.723975, norm of subgrad 1004.598788 dualbound = 1216234.723975, lowerbound=1007554.723975, norm of subgrad 48.002942 stepsize= 1.000000 +dualbound = 1216885.493345, lowerbound=1007865.493345, norm of subgrad 1004.780819 dualbound = 1216885.493345, lowerbound=1007865.493345, norm of subgrad 48.680277 stepsize= 1.000000 +dualbound = 1217527.066842, lowerbound=1007896.066842, norm of subgrad 1004.799018 dualbound = 1217527.066842, lowerbound=1007896.066842, norm of subgrad 48.647441 stepsize= 1.000000 +dualbound = 1218187.704486, lowerbound=1007620.704486, norm of subgrad 1004.617193 dualbound = 1218187.704486, lowerbound=1007620.704486, norm of subgrad 47.912813 stepsize= 1.000000 +dualbound = 1218870.456939, lowerbound=1007054.456939, norm of subgrad 1004.339314 dualbound = 1218870.456939, lowerbound=1007054.456939, norm of subgrad 48.226056 stepsize= 1.000000 +dualbound = 1219513.162696, lowerbound=1007025.162696, norm of subgrad 1004.394426 dualbound = 1219513.162696, lowerbound=1007025.162696, norm of subgrad 49.251454 stepsize= 1.000000 +dualbound = 1220152.381328, lowerbound=1008261.381328, norm of subgrad 1004.977304 dualbound = 1220152.381328, lowerbound=1008261.381328, norm of subgrad 48.551196 stepsize= 1.000000 +dualbound = 1220825.643505, lowerbound=1008899.643505, norm of subgrad 1005.253522 dualbound = 1220825.643505, lowerbound=1008899.643505, norm of subgrad 48.044377 stepsize= 1.000000 +dualbound = 1221497.074018, lowerbound=1007826.074018, norm of subgrad 1004.732837 dualbound = 1221497.074018, lowerbound=1007826.074018, norm of subgrad 48.305595 stepsize= 1.000000 +dualbound = 1222111.197985, lowerbound=1009360.197985, norm of subgrad 1005.528815 dualbound = 1222111.197985, lowerbound=1009360.197985, norm of subgrad 48.395495 stepsize= 1.000000 +dualbound = 1222767.723271, lowerbound=1007811.723271, norm of subgrad 1004.731170 dualbound = 1222767.723271, lowerbound=1007811.723271, norm of subgrad 48.265156 stepsize= 1.000000 +dualbound = 1223423.029708, lowerbound=1010438.029708, norm of subgrad 1006.052697 dualbound = 1223423.029708, lowerbound=1010438.029708, norm of subgrad 48.572692 stepsize= 1.000000 +dualbound = 1224056.128007, lowerbound=1008122.128007, norm of subgrad 1004.878663 dualbound = 1224056.128007, lowerbound=1008122.128007, norm of subgrad 47.875863 stepsize= 1.000000 +dualbound = 1224730.512814, lowerbound=1009420.512814, norm of subgrad 1005.533447 dualbound = 1224730.512814, lowerbound=1009420.512814, norm of subgrad 48.491080 stepsize= 1.000000 +dualbound = 1225347.002141, lowerbound=1010203.002141, norm of subgrad 1005.941848 dualbound = 1225347.002141, lowerbound=1010203.002141, norm of subgrad 48.295852 stepsize= 1.000000 +dualbound = 1226005.738353, lowerbound=1009227.738353, norm of subgrad 1005.430623 dualbound = 1226005.738353, lowerbound=1009227.738353, norm of subgrad 48.184398 stepsize= 1.000000 +dualbound = 1226658.563617, lowerbound=1010312.563617, norm of subgrad 1005.969465 dualbound = 1226658.563617, lowerbound=1010312.563617, norm of subgrad 48.112631 stepsize= 1.000000 +dualbound = 1227294.845334, lowerbound=1009836.845334, norm of subgrad 1005.732989 dualbound = 1227294.845334, lowerbound=1009836.845334, norm of subgrad 47.940398 stepsize= 1.000000 +dualbound = 1227926.227145, lowerbound=1009986.227145, norm of subgrad 1005.811725 dualbound = 1227926.227145, lowerbound=1009986.227145, norm of subgrad 47.983141 stepsize= 1.000000 +dualbound = 1228562.558133, lowerbound=1009394.558133, norm of subgrad 1005.522033 dualbound = 1228562.558133, lowerbound=1009394.558133, norm of subgrad 48.128276 stepsize= 1.000000 +dualbound = 1229192.655093, lowerbound=1010950.655093, norm of subgrad 1006.282095 dualbound = 1229192.655093, lowerbound=1010950.655093, norm of subgrad 47.781764 stepsize= 1.000000 +dualbound = 1229837.530328, lowerbound=1009442.530328, norm of subgrad 1005.541909 dualbound = 1229837.530328, lowerbound=1009442.530328, norm of subgrad 48.133930 stepsize= 1.000000 +dualbound = 1230461.994996, lowerbound=1010497.994996, norm of subgrad 1006.108342 dualbound = 1230461.994996, lowerbound=1010497.994996, norm of subgrad 48.790006 stepsize= 1.000000 +dualbound = 1231104.077386, lowerbound=1011237.077386, norm of subgrad 1006.436326 dualbound = 1231104.077386, lowerbound=1011237.077386, norm of subgrad 48.156852 stepsize= 1.000000 +dualbound = 1231745.447264, lowerbound=1009790.447264, norm of subgrad 1005.722848 dualbound = 1231745.447264, lowerbound=1009790.447264, norm of subgrad 48.263546 stepsize= 1.000000 +dualbound = 1232380.813697, lowerbound=1009833.813697, norm of subgrad 1005.745402 dualbound = 1232380.813697, lowerbound=1009833.813697, norm of subgrad 48.222053 stepsize= 1.000000 +dualbound = 1233007.341772, lowerbound=1010958.341772, norm of subgrad 1006.302808 dualbound = 1233007.341772, lowerbound=1010958.341772, norm of subgrad 48.099148 stepsize= 1.000000 +dualbound = 1233680.298410, lowerbound=1010733.298410, norm of subgrad 1006.180550 dualbound = 1233680.298410, lowerbound=1010733.298410, norm of subgrad 48.362761 stepsize= 1.000000 +dualbound = 1234284.762097, lowerbound=1011653.762097, norm of subgrad 1006.684043 dualbound = 1234284.762097, lowerbound=1011653.762097, norm of subgrad 48.615468 stepsize= 1.000000 +dualbound = 1234891.229555, lowerbound=1011139.229555, norm of subgrad 1006.436898 dualbound = 1234891.229555, lowerbound=1011139.229555, norm of subgrad 48.810526 stepsize= 1.000000 +dualbound = 1235541.173036, lowerbound=1010703.173036, norm of subgrad 1006.189432 dualbound = 1235541.173036, lowerbound=1010703.173036, norm of subgrad 48.620402 stepsize= 1.000000 +dualbound = 1236167.420756, lowerbound=1010998.420756, norm of subgrad 1006.336137 dualbound = 1236167.420756, lowerbound=1010998.420756, norm of subgrad 48.376107 stepsize= 1.000000 +dualbound = 1236810.885040, lowerbound=1012215.885040, norm of subgrad 1006.901626 dualbound = 1236810.885040, lowerbound=1012215.885040, norm of subgrad 47.733262 stepsize= 1.000000 +dualbound = 1237447.131811, lowerbound=1010657.131811, norm of subgrad 1006.108907 dualbound = 1237447.131811, lowerbound=1010657.131811, norm of subgrad 47.267820 stepsize= 1.000000 +dualbound = 1238096.590542, lowerbound=1011064.590542, norm of subgrad 1006.342680 dualbound = 1238096.590542, lowerbound=1011064.590542, norm of subgrad 48.067231 stepsize= 1.000000 +dualbound = 1238688.405603, lowerbound=1011455.405603, norm of subgrad 1006.538328 dualbound = 1238688.405603, lowerbound=1011455.405603, norm of subgrad 47.495421 stepsize= 1.000000 +dualbound = 1239321.387211, lowerbound=1011937.387211, norm of subgrad 1006.782195 dualbound = 1239321.387211, lowerbound=1011937.387211, norm of subgrad 48.020637 stepsize= 1.000000 +dualbound = 1239958.381613, lowerbound=1010500.381613, norm of subgrad 1006.067782 dualbound = 1239958.381613, lowerbound=1010500.381613, norm of subgrad 48.051997 stepsize= 1.000000 +dualbound = 1240569.031471, lowerbound=1013511.031471, norm of subgrad 1007.556466 dualbound = 1240569.031471, lowerbound=1013511.031471, norm of subgrad 47.640842 stepsize= 1.000000 +dualbound = 1241234.649338, lowerbound=1011362.649338, norm of subgrad 1006.482811 dualbound = 1241234.649338, lowerbound=1011362.649338, norm of subgrad 48.068887 stepsize= 1.000000 +dualbound = 1241819.186582, lowerbound=1011517.186582, norm of subgrad 1006.584913 dualbound = 1241819.186582, lowerbound=1011517.186582, norm of subgrad 47.754971 stepsize= 1.000000 +dualbound = 1242429.779902, lowerbound=1011264.779902, norm of subgrad 1006.464495 dualbound = 1242429.779902, lowerbound=1011264.779902, norm of subgrad 48.131002 stepsize= 1.000000 +dualbound = 1243086.047588, lowerbound=1011532.047588, norm of subgrad 1006.574412 dualbound = 1243086.047588, lowerbound=1011532.047588, norm of subgrad 48.127619 stepsize= 1.000000 +dualbound = 1243686.352927, lowerbound=1011775.352927, norm of subgrad 1006.670429 dualbound = 1243686.352927, lowerbound=1011775.352927, norm of subgrad 47.013885 stepsize= 1.000000 +dualbound = 1244330.077974, lowerbound=1013428.077974, norm of subgrad 1007.521254 dualbound = 1244330.077974, lowerbound=1013428.077974, norm of subgrad 48.111590 stepsize= 1.000000 +dualbound = 1244932.048590, lowerbound=1011646.048590, norm of subgrad 1006.635013 dualbound = 1244932.048590, lowerbound=1011646.048590, norm of subgrad 47.644209 stepsize= 1.000000 +dualbound = 1245542.770671, lowerbound=1011758.770671, norm of subgrad 1006.707887 dualbound = 1245542.770671, lowerbound=1011758.770671, norm of subgrad 48.090769 stepsize= 1.000000 +dualbound = 1246168.123983, lowerbound=1012247.123983, norm of subgrad 1006.967787 dualbound = 1246168.123983, lowerbound=1012247.123983, norm of subgrad 48.604046 stepsize= 1.000000 +dualbound = 1246766.749038, lowerbound=1011663.749038, norm of subgrad 1006.656719 dualbound = 1246766.749038, lowerbound=1011663.749038, norm of subgrad 47.881364 stepsize= 1.000000 +dualbound = 1247413.474914, lowerbound=1012496.474914, norm of subgrad 1007.073222 dualbound = 1247413.474914, lowerbound=1012496.474914, norm of subgrad 48.443017 stepsize= 1.000000 +dualbound = 1248011.005965, lowerbound=1011528.005965, norm of subgrad 1006.601712 dualbound = 1248011.005965, lowerbound=1011528.005965, norm of subgrad 48.130355 stepsize= 1.000000 +dualbound = 1248632.899619, lowerbound=1014224.899619, norm of subgrad 1007.934968 dualbound = 1248632.899619, lowerbound=1014224.899619, norm of subgrad 48.268972 stepsize= 1.000000 +dualbound = 1249248.621933, lowerbound=1011503.621933, norm of subgrad 1006.596057 dualbound = 1249248.621933, lowerbound=1011503.621933, norm of subgrad 48.453300 stepsize= 1.000000 +dualbound = 1249856.793179, lowerbound=1012704.793179, norm of subgrad 1007.163241 dualbound = 1249856.793179, lowerbound=1012704.793179, norm of subgrad 47.761608 stepsize= 1.000000 +dualbound = 1250515.641069, lowerbound=1011114.641069, norm of subgrad 1006.343699 dualbound = 1250515.641069, lowerbound=1011114.641069, norm of subgrad 47.663906 stepsize= 1.000000 +dualbound = 1251109.992900, lowerbound=1013750.992900, norm of subgrad 1007.679509 dualbound = 1251109.992900, lowerbound=1013750.992900, norm of subgrad 47.553673 stepsize= 1.000000 +dualbound = 1251703.345639, lowerbound=1013717.345639, norm of subgrad 1007.691096 dualbound = 1251703.345639, lowerbound=1013717.345639, norm of subgrad 48.138890 stepsize= 1.000000 +dualbound = 1252318.379192, lowerbound=1014130.379192, norm of subgrad 1007.870219 dualbound = 1252318.379192, lowerbound=1014130.379192, norm of subgrad 47.822940 stepsize= 1.000000 +dualbound = 1252906.557180, lowerbound=1013076.557180, norm of subgrad 1007.338353 dualbound = 1252906.557180, lowerbound=1013076.557180, norm of subgrad 47.351642 stepsize= 1.000000 +dualbound = 1253538.790479, lowerbound=1013423.790479, norm of subgrad 1007.509697 dualbound = 1253538.790479, lowerbound=1013423.790479, norm of subgrad 47.793653 stepsize= 1.000000 +dualbound = 1254147.983885, lowerbound=1013660.983885, norm of subgrad 1007.639809 dualbound = 1254147.983885, lowerbound=1013660.983885, norm of subgrad 47.814155 stepsize= 1.000000 +dualbound = 1254737.922930, lowerbound=1014066.922930, norm of subgrad 1007.830305 dualbound = 1254737.922930, lowerbound=1014066.922930, norm of subgrad 47.380788 stepsize= 1.000000 +dualbound = 1255352.655734, lowerbound=1014877.655734, norm of subgrad 1008.216572 dualbound = 1255352.655734, lowerbound=1014877.655734, norm of subgrad 47.304681 stepsize= 1.000000 +dualbound = 1255961.135796, lowerbound=1013147.135796, norm of subgrad 1007.355020 dualbound = 1255961.135796, lowerbound=1013147.135796, norm of subgrad 47.174994 stepsize= 1.000000 +dualbound = 1256561.016656, lowerbound=1014634.016656, norm of subgrad 1008.120537 dualbound = 1256561.016656, lowerbound=1014634.016656, norm of subgrad 47.674740 stepsize= 1.000000 +dualbound = 1257129.930773, lowerbound=1014619.930773, norm of subgrad 1008.101151 dualbound = 1257129.930773, lowerbound=1014619.930773, norm of subgrad 47.084117 stepsize= 1.000000 +dualbound = 1257776.462930, lowerbound=1014459.462930, norm of subgrad 1008.041895 dualbound = 1257776.462930, lowerbound=1014459.462930, norm of subgrad 48.327344 stepsize= 1.000000 +dualbound = 1258344.378132, lowerbound=1013255.378132, norm of subgrad 1007.454901 dualbound = 1258344.378132, lowerbound=1013255.378132, norm of subgrad 47.727510 stepsize= 1.000000 +dualbound = 1258939.607348, lowerbound=1015490.607348, norm of subgrad 1008.546284 dualbound = 1258939.607348, lowerbound=1015490.607348, norm of subgrad 47.646922 stepsize= 1.000000 +dualbound = 1259560.706700, lowerbound=1013731.706700, norm of subgrad 1007.645129 dualbound = 1259560.706700, lowerbound=1013731.706700, norm of subgrad 47.308555 stepsize= 1.000000 +dualbound = 1260149.732094, lowerbound=1014151.732094, norm of subgrad 1007.879820 dualbound = 1260149.732094, lowerbound=1014151.732094, norm of subgrad 47.529206 stepsize= 1.000000 +dualbound = 1260732.026215, lowerbound=1015610.026215, norm of subgrad 1008.595571 dualbound = 1260732.026215, lowerbound=1015610.026215, norm of subgrad 47.300044 stepsize= 1.000000 +dualbound = 1261357.662962, lowerbound=1014452.662962, norm of subgrad 1008.023146 dualbound = 1261357.662962, lowerbound=1014452.662962, norm of subgrad 47.787412 stepsize= 1.000000 +dualbound = 1261929.599814, lowerbound=1013748.599814, norm of subgrad 1007.683283 dualbound = 1261929.599814, lowerbound=1013748.599814, norm of subgrad 47.422957 stepsize= 1.000000 +dualbound = 1262539.375480, lowerbound=1015624.375480, norm of subgrad 1008.602189 dualbound = 1262539.375480, lowerbound=1015624.375480, norm of subgrad 47.579152 stepsize= 1.000000 +dualbound = 1263152.263977, lowerbound=1014094.263977, norm of subgrad 1007.823032 dualbound = 1263152.263977, lowerbound=1014094.263977, norm of subgrad 47.179323 stepsize= 1.000000 +dualbound = 1263731.883392, lowerbound=1015010.883392, norm of subgrad 1008.304956 dualbound = 1263731.883392, lowerbound=1015010.883392, norm of subgrad 47.409065 stepsize= 1.000000 +dualbound = 1264306.163736, lowerbound=1015754.163736, norm of subgrad 1008.663553 dualbound = 1264306.163736, lowerbound=1015754.163736, norm of subgrad 47.141069 stepsize= 1.000000 +dualbound = 1264933.362119, lowerbound=1015263.362119, norm of subgrad 1008.404860 dualbound = 1264933.362119, lowerbound=1015263.362119, norm of subgrad 47.372971 stepsize= 1.000000 +dualbound = 1265492.838954, lowerbound=1013481.838954, norm of subgrad 1007.546445 dualbound = 1265492.838954, lowerbound=1013481.838954, norm of subgrad 47.196153 stepsize= 1.000000 +dualbound = 1266084.538319, lowerbound=1016918.538319, norm of subgrad 1009.236116 dualbound = 1266084.538319, lowerbound=1016918.538319, norm of subgrad 47.230280 stepsize= 1.000000 +dualbound = 1266695.988312, lowerbound=1013741.988312, norm of subgrad 1007.688934 dualbound = 1266695.988312, lowerbound=1013741.988312, norm of subgrad 48.025514 stepsize= 1.000000 +dualbound = 1267262.794862, lowerbound=1016223.794862, norm of subgrad 1008.936963 dualbound = 1267262.794862, lowerbound=1016223.794862, norm of subgrad 47.925010 stepsize= 1.000000 +dualbound = 1267847.017757, lowerbound=1015913.017757, norm of subgrad 1008.760635 dualbound = 1267847.017757, lowerbound=1015913.017757, norm of subgrad 47.636361 stepsize= 1.000000 +dualbound = 1268451.430998, lowerbound=1014931.430998, norm of subgrad 1008.237785 dualbound = 1268451.430998, lowerbound=1014931.430998, norm of subgrad 47.078798 stepsize= 1.000000 +dualbound = 1269078.305697, lowerbound=1016013.305697, norm of subgrad 1008.808359 dualbound = 1269078.305697, lowerbound=1016013.305697, norm of subgrad 48.040345 stepsize= 1.000000 +dualbound = 1269628.646045, lowerbound=1016478.646045, norm of subgrad 1009.036494 dualbound = 1269628.646045, lowerbound=1016478.646045, norm of subgrad 47.184111 stepsize= 1.000000 +dualbound = 1270217.295124, lowerbound=1014281.295124, norm of subgrad 1007.952526 dualbound = 1270217.295124, lowerbound=1014281.295124, norm of subgrad 47.703764 stepsize= 1.000000 +dualbound = 1270814.388246, lowerbound=1016611.388246, norm of subgrad 1009.092359 dualbound = 1270814.388246, lowerbound=1016611.388246, norm of subgrad 47.466758 stepsize= 1.000000 +dualbound = 1271417.618455, lowerbound=1015678.618455, norm of subgrad 1008.611728 dualbound = 1271417.618455, lowerbound=1015678.618455, norm of subgrad 47.140537 stepsize= 1.000000 +dualbound = 1271996.498842, lowerbound=1015075.498842, norm of subgrad 1008.353360 dualbound = 1271996.498842, lowerbound=1015075.498842, norm of subgrad 47.748093 stepsize= 1.000000 +dualbound = 1272592.120515, lowerbound=1015007.120515, norm of subgrad 1008.302098 dualbound = 1272592.120515, lowerbound=1015007.120515, norm of subgrad 47.556510 stepsize= 1.000000 +dualbound = 1273172.829242, lowerbound=1016872.829242, norm of subgrad 1009.200589 dualbound = 1273172.829242, lowerbound=1016872.829242, norm of subgrad 46.837044 stepsize= 1.000000 +dualbound = 1273768.242747, lowerbound=1016683.242747, norm of subgrad 1009.134898 dualbound = 1273768.242747, lowerbound=1016683.242747, norm of subgrad 47.596360 stepsize= 1.000000 +dualbound = 1274349.102484, lowerbound=1016997.102484, norm of subgrad 1009.285937 dualbound = 1274349.102484, lowerbound=1016997.102484, norm of subgrad 47.348281 stepsize= 1.000000 +dualbound = 1274938.633085, lowerbound=1014892.633085, norm of subgrad 1008.258217 dualbound = 1274938.633085, lowerbound=1014892.633085, norm of subgrad 47.765370 stepsize= 1.000000 +dualbound = 1275496.575099, lowerbound=1016889.575099, norm of subgrad 1009.266355 dualbound = 1275496.575099, lowerbound=1016889.575099, norm of subgrad 47.821983 stepsize= 1.000000 +dualbound = 1276105.963442, lowerbound=1015795.963442, norm of subgrad 1008.677334 dualbound = 1276105.963442, lowerbound=1015795.963442, norm of subgrad 47.364421 stepsize= 1.000000 +dualbound = 1276710.734979, lowerbound=1018135.734979, norm of subgrad 1009.827577 dualbound = 1276710.734979, lowerbound=1018135.734979, norm of subgrad 47.125063 stepsize= 1.000000 +dualbound = 1277295.790034, lowerbound=1014235.790034, norm of subgrad 1007.904157 dualbound = 1277295.790034, lowerbound=1014235.790034, norm of subgrad 47.117460 stepsize= 1.000000 +dualbound = 1277861.680783, lowerbound=1018354.680783, norm of subgrad 1009.939939 dualbound = 1277861.680783, lowerbound=1018354.680783, norm of subgrad 46.796269 stepsize= 1.000000 +dualbound = 1278465.800688, lowerbound=1016683.800688, norm of subgrad 1009.119815 dualbound = 1278465.800688, lowerbound=1016683.800688, norm of subgrad 47.361587 stepsize= 1.000000 +dualbound = 1279031.189117, lowerbound=1016300.189117, norm of subgrad 1008.935176 dualbound = 1279031.189117, lowerbound=1016300.189117, norm of subgrad 47.067913 stepsize= 1.000000 +dualbound = 1279631.768062, lowerbound=1017616.768062, norm of subgrad 1009.560681 dualbound = 1279631.768062, lowerbound=1017616.768062, norm of subgrad 46.867675 stepsize= 1.000000 +dualbound = 1280220.816638, lowerbound=1015605.816638, norm of subgrad 1008.577125 dualbound = 1280220.816638, lowerbound=1015605.816638, norm of subgrad 47.021788 stepsize= 1.000000 +dualbound = 1280803.135698, lowerbound=1018113.135698, norm of subgrad 1009.847580 dualbound = 1280803.135698, lowerbound=1018113.135698, norm of subgrad 47.553329 stepsize= 1.000000 +dualbound = 1281333.749153, lowerbound=1015639.749153, norm of subgrad 1008.610802 dualbound = 1281333.749153, lowerbound=1015639.749153, norm of subgrad 46.761239 stepsize= 1.000000 +dualbound = 1281956.997138, lowerbound=1019480.997138, norm of subgrad 1010.520162 dualbound = 1281956.997138, lowerbound=1019480.997138, norm of subgrad 47.887869 stepsize= 1.000000 +dualbound = 1282517.685356, lowerbound=1016182.685356, norm of subgrad 1008.859596 dualbound = 1282517.685356, lowerbound=1016182.685356, norm of subgrad 46.644273 stepsize= 1.000000 +dualbound = 1283135.731674, lowerbound=1016214.731674, norm of subgrad 1008.875974 dualbound = 1283135.731674, lowerbound=1016214.731674, norm of subgrad 47.265699 stepsize= 1.000000 +dualbound = 1283667.031364, lowerbound=1020053.031364, norm of subgrad 1010.846690 dualbound = 1283667.031364, lowerbound=1020053.031364, norm of subgrad 47.846627 stepsize= 1.000000 +dualbound = 1284258.139220, lowerbound=1015125.139220, norm of subgrad 1008.358140 dualbound = 1284258.139220, lowerbound=1015125.139220, norm of subgrad 47.456378 stepsize= 1.000000 +dualbound = 1284834.338734, lowerbound=1019126.338734, norm of subgrad 1010.336745 dualbound = 1284834.338734, lowerbound=1019126.338734, norm of subgrad 47.224988 stepsize= 1.000000 +dualbound = 1285408.503522, lowerbound=1016415.503522, norm of subgrad 1009.002727 dualbound = 1285408.503522, lowerbound=1016415.503522, norm of subgrad 47.383170 stepsize= 1.000000 +dualbound = 1285987.744683, lowerbound=1017027.744683, norm of subgrad 1009.291209 dualbound = 1285987.744683, lowerbound=1017027.744683, norm of subgrad 47.119435 stepsize= 1.000000 +dualbound = 1286567.356678, lowerbound=1018761.356678, norm of subgrad 1010.124426 dualbound = 1286567.356678, lowerbound=1018761.356678, norm of subgrad 46.579094 stepsize= 1.000000 +dualbound = 1287145.410521, lowerbound=1019578.410521, norm of subgrad 1010.564402 dualbound = 1287145.410521, lowerbound=1019578.410521, norm of subgrad 47.329207 stepsize= 1.000000 +dualbound = 1287705.094993, lowerbound=1016134.094993, norm of subgrad 1008.875163 dualbound = 1287705.094993, lowerbound=1016134.094993, norm of subgrad 47.483518 stepsize= 1.000000 +dualbound = 1288293.038937, lowerbound=1017448.038937, norm of subgrad 1009.524165 dualbound = 1288293.038937, lowerbound=1017448.038937, norm of subgrad 47.738286 stepsize= 1.000000 +dualbound = 1288833.061499, lowerbound=1018568.061499, norm of subgrad 1010.073295 dualbound = 1288833.061499, lowerbound=1018568.061499, norm of subgrad 47.117115 stepsize= 1.000000 +dualbound = 1289464.159181, lowerbound=1018106.159181, norm of subgrad 1009.803030 dualbound = 1289464.159181, lowerbound=1018106.159181, norm of subgrad 47.192136 stepsize= 1.000000 +dualbound = 1290028.557506, lowerbound=1018841.557506, norm of subgrad 1010.165114 dualbound = 1290028.557506, lowerbound=1018841.557506, norm of subgrad 46.437036 stepsize= 1.000000 +dualbound = 1290593.987590, lowerbound=1017663.987590, norm of subgrad 1009.615762 dualbound = 1290593.987590, lowerbound=1017663.987590, norm of subgrad 47.174464 stepsize= 1.000000 +dualbound = 1291156.115697, lowerbound=1018650.115697, norm of subgrad 1010.092627 dualbound = 1291156.115697, lowerbound=1018650.115697, norm of subgrad 46.894862 stepsize= 1.000000 +dualbound = 1291758.208754, lowerbound=1017821.208754, norm of subgrad 1009.675299 dualbound = 1291758.208754, lowerbound=1017821.208754, norm of subgrad 47.170892 stepsize= 1.000000 +dualbound = 1292312.740439, lowerbound=1019006.740439, norm of subgrad 1010.268648 dualbound = 1292312.740439, lowerbound=1019006.740439, norm of subgrad 46.803116 stepsize= 1.000000 +dualbound = 1292892.660929, lowerbound=1016447.660929, norm of subgrad 1008.990912 dualbound = 1292892.660929, lowerbound=1016447.660929, norm of subgrad 46.849979 stepsize= 1.000000 +dualbound = 1293449.521427, lowerbound=1018694.521427, norm of subgrad 1010.163116 dualbound = 1293449.521427, lowerbound=1018694.521427, norm of subgrad 47.873380 stepsize= 1.000000 +dualbound = 1294016.369562, lowerbound=1019148.369562, norm of subgrad 1010.311026 dualbound = 1294016.369562, lowerbound=1019148.369562, norm of subgrad 46.334093 stepsize= 1.000000 +dualbound = 1294620.127315, lowerbound=1018601.127315, norm of subgrad 1010.051547 dualbound = 1294620.127315, lowerbound=1018601.127315, norm of subgrad 46.976140 stepsize= 1.000000 +dualbound = 1295167.153478, lowerbound=1019087.153478, norm of subgrad 1010.310919 dualbound = 1295167.153478, lowerbound=1019087.153478, norm of subgrad 46.776342 stepsize= 1.000000 +dualbound = 1295729.124623, lowerbound=1018461.124623, norm of subgrad 1010.002042 dualbound = 1295729.124623, lowerbound=1018461.124623, norm of subgrad 46.957120 stepsize= 1.000000 +dualbound = 1296316.533231, lowerbound=1017506.533231, norm of subgrad 1009.528372 dualbound = 1296316.533231, lowerbound=1017506.533231, norm of subgrad 47.206023 stepsize= 1.000000 +dualbound = 1296875.714794, lowerbound=1019042.714794, norm of subgrad 1010.311692 dualbound = 1296875.714794, lowerbound=1019042.714794, norm of subgrad 47.393898 stepsize= 1.000000 +dualbound = 1297412.747587, lowerbound=1019897.747587, norm of subgrad 1010.726347 dualbound = 1297412.747587, lowerbound=1019897.747587, norm of subgrad 46.979068 stepsize= 1.000000 +dualbound = 1298019.663664, lowerbound=1017788.663664, norm of subgrad 1009.641849 dualbound = 1298019.663664, lowerbound=1017788.663664, norm of subgrad 46.849931 stepsize= 1.000000 +dualbound = 1298594.471300, lowerbound=1020401.471300, norm of subgrad 1010.934949 dualbound = 1298594.471300, lowerbound=1020401.471300, norm of subgrad 46.505996 stepsize= 1.000000 +dualbound = 1299164.207023, lowerbound=1019053.207023, norm of subgrad 1010.295604 dualbound = 1299164.207023, lowerbound=1019053.207023, norm of subgrad 47.050353 stepsize= 1.000000 +dualbound = 1299696.937731, lowerbound=1019536.937731, norm of subgrad 1010.559220 dualbound = 1299696.937731, lowerbound=1019536.937731, norm of subgrad 47.177651 stepsize= 1.000000 +dualbound = 1300270.943844, lowerbound=1018140.943844, norm of subgrad 1009.877192 dualbound = 1300270.943844, lowerbound=1018140.943844, norm of subgrad 47.801738 stepsize= 1.000000 +dualbound = 1300845.237443, lowerbound=1020216.237443, norm of subgrad 1010.896749 dualbound = 1300845.237443, lowerbound=1020216.237443, norm of subgrad 47.647598 stepsize= 1.000000 +dualbound = 1301411.871198, lowerbound=1018403.871198, norm of subgrad 1009.962807 dualbound = 1301411.871198, lowerbound=1018403.871198, norm of subgrad 46.772147 stepsize= 1.000000 +dualbound = 1301951.719973, lowerbound=1020523.719973, norm of subgrad 1011.046844 dualbound = 1301951.719973, lowerbound=1020523.719973, norm of subgrad 47.242447 stepsize= 1.000000 +dualbound = 1302552.588273, lowerbound=1019532.588273, norm of subgrad 1010.534803 dualbound = 1302552.588273, lowerbound=1019532.588273, norm of subgrad 47.422234 stepsize= 1.000000 +dualbound = 1303100.592265, lowerbound=1017637.592265, norm of subgrad 1009.602690 dualbound = 1303100.592265, lowerbound=1017637.592265, norm of subgrad 46.989403 stepsize= 1.000000 +dualbound = 1303704.724251, lowerbound=1020033.724251, norm of subgrad 1010.764426 dualbound = 1303704.724251, lowerbound=1020033.724251, norm of subgrad 47.065189 stepsize= 1.000000 +dualbound = 1304222.717394, lowerbound=1019484.717394, norm of subgrad 1010.527940 dualbound = 1304222.717394, lowerbound=1019484.717394, norm of subgrad 46.904085 stepsize= 1.000000 +dualbound = 1304801.991849, lowerbound=1018235.991849, norm of subgrad 1009.887613 dualbound = 1304801.991849, lowerbound=1018235.991849, norm of subgrad 47.077324 stepsize= 1.000000 +dualbound = 1305382.440129, lowerbound=1020664.440129, norm of subgrad 1011.075388 dualbound = 1305382.440129, lowerbound=1020664.440129, norm of subgrad 46.791541 stepsize= 1.000000 +dualbound = 1305919.458493, lowerbound=1019827.458493, norm of subgrad 1010.703942 dualbound = 1305919.458493, lowerbound=1019827.458493, norm of subgrad 47.244242 stepsize= 1.000000 +dualbound = 1306481.881086, lowerbound=1019971.881086, norm of subgrad 1010.761041 dualbound = 1306481.881086, lowerbound=1019971.881086, norm of subgrad 47.206171 stepsize= 1.000000 +dualbound = 1307060.258976, lowerbound=1019471.258976, norm of subgrad 1010.513859 dualbound = 1307060.258976, lowerbound=1019471.258976, norm of subgrad 47.385419 stepsize= 1.000000 +dualbound = 1307601.100849, lowerbound=1020602.100849, norm of subgrad 1011.085605 dualbound = 1307601.100849, lowerbound=1020602.100849, norm of subgrad 47.252956 stepsize= 1.000000 +dualbound = 1308191.894268, lowerbound=1019516.894268, norm of subgrad 1010.529017 dualbound = 1308191.894268, lowerbound=1019516.894268, norm of subgrad 47.358140 stepsize= 1.000000 +dualbound = 1308735.545492, lowerbound=1020930.545492, norm of subgrad 1011.232686 dualbound = 1308735.545492, lowerbound=1020930.545492, norm of subgrad 46.953714 stepsize= 1.000000 +dualbound = 1309319.032125, lowerbound=1019929.032125, norm of subgrad 1010.728466 dualbound = 1309319.032125, lowerbound=1019929.032125, norm of subgrad 47.185661 stepsize= 1.000000 +dualbound = 1309871.529940, lowerbound=1020521.529940, norm of subgrad 1010.993338 dualbound = 1309871.529940, lowerbound=1020521.529940, norm of subgrad 46.243895 stepsize= 1.000000 +dualbound = 1310441.434477, lowerbound=1019311.434477, norm of subgrad 1010.386775 dualbound = 1310441.434477, lowerbound=1019311.434477, norm of subgrad 46.259102 stepsize= 1.000000 +dualbound = 1310993.431596, lowerbound=1021242.431596, norm of subgrad 1011.357223 dualbound = 1310993.431596, lowerbound=1021242.431596, norm of subgrad 46.400400 stepsize= 1.000000 +dualbound = 1311557.541320, lowerbound=1020935.541320, norm of subgrad 1011.219828 dualbound = 1311557.541320, lowerbound=1020935.541320, norm of subgrad 46.841325 stepsize= 1.000000 +dualbound = 1312083.621177, lowerbound=1020476.621177, norm of subgrad 1011.011187 dualbound = 1312083.621177, lowerbound=1020476.621177, norm of subgrad 46.830331 stepsize= 1.000000 +dualbound = 1312637.635750, lowerbound=1021272.635750, norm of subgrad 1011.431479 dualbound = 1312637.635750, lowerbound=1021272.635750, norm of subgrad 47.697113 stepsize= 1.000000 +dualbound = 1313186.934997, lowerbound=1020550.934997, norm of subgrad 1011.041510 dualbound = 1313186.934997, lowerbound=1020550.934997, norm of subgrad 46.939315 stepsize= 1.000000 +dualbound = 1313757.466645, lowerbound=1021246.466645, norm of subgrad 1011.386903 dualbound = 1313757.466645, lowerbound=1021246.466645, norm of subgrad 47.196733 stepsize= 1.000000 +dualbound = 1314307.156059, lowerbound=1020872.156059, norm of subgrad 1011.202826 dualbound = 1314307.156059, lowerbound=1020872.156059, norm of subgrad 46.996696 stepsize= 1.000000 +dualbound = 1314863.103145, lowerbound=1020299.103145, norm of subgrad 1010.877887 dualbound = 1314863.103145, lowerbound=1020299.103145, norm of subgrad 46.162182 stepsize= 1.000000 +dualbound = 1315427.515568, lowerbound=1021689.515568, norm of subgrad 1011.602944 dualbound = 1315427.515568, lowerbound=1021689.515568, norm of subgrad 47.068168 stepsize= 1.000000 +dualbound = 1315974.630012, lowerbound=1019091.630012, norm of subgrad 1010.339364 dualbound = 1315974.630012, lowerbound=1019091.630012, norm of subgrad 47.340410 stepsize= 1.000000 +dualbound = 1316525.563297, lowerbound=1021247.563297, norm of subgrad 1011.372119 dualbound = 1316525.563297, lowerbound=1021247.563297, norm of subgrad 46.657618 stepsize= 1.000000 +dualbound = 1317101.354729, lowerbound=1022373.354729, norm of subgrad 1011.915686 dualbound = 1317101.354729, lowerbound=1022373.354729, norm of subgrad 46.645380 stepsize= 1.000000 +dualbound = 1317649.023684, lowerbound=1021853.023684, norm of subgrad 1011.669918 dualbound = 1317649.023684, lowerbound=1021853.023684, norm of subgrad 46.590438 stepsize= 1.000000 +dualbound = 1318212.363425, lowerbound=1022692.363425, norm of subgrad 1012.093061 dualbound = 1318212.363425, lowerbound=1022692.363425, norm of subgrad 46.939746 stepsize= 1.000000 +dualbound = 1318759.361644, lowerbound=1018571.361644, norm of subgrad 1010.020971 dualbound = 1318759.361644, lowerbound=1018571.361644, norm of subgrad 46.021715 stepsize= 1.000000 +dualbound = 1319318.643178, lowerbound=1022302.643178, norm of subgrad 1011.894087 dualbound = 1319318.643178, lowerbound=1022302.643178, norm of subgrad 46.757690 stepsize= 1.000000 +dualbound = 1319836.673181, lowerbound=1022031.673181, norm of subgrad 1011.780447 dualbound = 1319836.673181, lowerbound=1022031.673181, norm of subgrad 46.755000 stepsize= 1.000000 +dualbound = 1320393.721527, lowerbound=1022132.721527, norm of subgrad 1011.818522 dualbound = 1320393.721527, lowerbound=1022132.721527, norm of subgrad 46.915332 stepsize= 1.000000 +dualbound = 1320955.118033, lowerbound=1021398.118033, norm of subgrad 1011.473241 dualbound = 1320955.118033, lowerbound=1021398.118033, norm of subgrad 47.343389 stepsize= 1.000000 +dualbound = 1321508.866868, lowerbound=1021898.866868, norm of subgrad 1011.700483 dualbound = 1321508.866868, lowerbound=1021898.866868, norm of subgrad 46.826796 stepsize= 1.000000 +dualbound = 1322067.552544, lowerbound=1022741.552544, norm of subgrad 1012.098094 dualbound = 1322067.552544, lowerbound=1022741.552544, norm of subgrad 46.472418 stepsize= 1.000000 +dualbound = 1322604.567483, lowerbound=1021377.567483, norm of subgrad 1011.429467 dualbound = 1322604.567483, lowerbound=1021377.567483, norm of subgrad 46.357469 stepsize= 1.000000 +dualbound = 1323138.088657, lowerbound=1020960.088657, norm of subgrad 1011.240866 dualbound = 1323138.088657, lowerbound=1020960.088657, norm of subgrad 46.706757 stepsize= 1.000000 +dualbound = 1323718.579581, lowerbound=1022425.579581, norm of subgrad 1011.955325 dualbound = 1323718.579581, lowerbound=1022425.579581, norm of subgrad 46.994584 stepsize= 1.000000 +dualbound = 1324228.574959, lowerbound=1022221.574959, norm of subgrad 1011.857982 dualbound = 1324228.574959, lowerbound=1022221.574959, norm of subgrad 46.314095 stepsize= 1.000000 +dualbound = 1324809.788556, lowerbound=1022467.788556, norm of subgrad 1011.955922 dualbound = 1324809.788556, lowerbound=1022467.788556, norm of subgrad 46.564081 stepsize= 1.000000 +dualbound = 1325342.581077, lowerbound=1022485.581077, norm of subgrad 1011.993864 dualbound = 1325342.581077, lowerbound=1022485.581077, norm of subgrad 46.677538 stepsize= 1.000000 +dualbound = 1325861.039179, lowerbound=1023468.039179, norm of subgrad 1012.478661 dualbound = 1325861.039179, lowerbound=1023468.039179, norm of subgrad 46.512989 stepsize= 1.000000 +dualbound = 1326425.889363, lowerbound=1021793.889363, norm of subgrad 1011.615485 dualbound = 1326425.889363, lowerbound=1021793.889363, norm of subgrad 46.226077 stepsize= 1.000000 +dualbound = 1326992.470004, lowerbound=1021242.470004, norm of subgrad 1011.343399 dualbound = 1326992.470004, lowerbound=1021242.470004, norm of subgrad 46.255601 stepsize= 1.000000 +dualbound = 1327515.484301, lowerbound=1024029.484301, norm of subgrad 1012.721820 dualbound = 1327515.484301, lowerbound=1024029.484301, norm of subgrad 45.815001 stepsize= 1.000000 +dualbound = 1328066.030342, lowerbound=1021379.030342, norm of subgrad 1011.469738 dualbound = 1328066.030342, lowerbound=1021379.030342, norm of subgrad 47.355528 stepsize= 1.000000 +dualbound = 1328581.905239, lowerbound=1023333.905239, norm of subgrad 1012.392664 dualbound = 1328581.905239, lowerbound=1023333.905239, norm of subgrad 46.052958 stepsize= 1.000000 +dualbound = 1329151.084781, lowerbound=1022692.084781, norm of subgrad 1012.099345 dualbound = 1329151.084781, lowerbound=1022692.084781, norm of subgrad 47.139999 stepsize= 1.000000 +dualbound = 1329672.781120, lowerbound=1023547.781120, norm of subgrad 1012.531867 dualbound = 1329672.781120, lowerbound=1023547.781120, norm of subgrad 46.847586 stepsize= 1.000000 +dualbound = 1330208.723154, lowerbound=1022275.723154, norm of subgrad 1011.882762 dualbound = 1330208.723154, lowerbound=1022275.723154, norm of subgrad 46.550425 stepsize= 1.000000 +dualbound = 1330742.706094, lowerbound=1024528.706094, norm of subgrad 1013.011207 dualbound = 1330742.706094, lowerbound=1024528.706094, norm of subgrad 46.871985 stepsize= 1.000000 +dualbound = 1331300.279076, lowerbound=1020663.279076, norm of subgrad 1011.069869 dualbound = 1331300.279076, lowerbound=1020663.279076, norm of subgrad 46.438917 stepsize= 1.000000 +dualbound = 1331849.971490, lowerbound=1025242.971490, norm of subgrad 1013.350863 dualbound = 1331849.971490, lowerbound=1025242.971490, norm of subgrad 46.762083 stepsize= 1.000000 +dualbound = 1332371.602410, lowerbound=1022772.602410, norm of subgrad 1012.139616 dualbound = 1332371.602410, lowerbound=1022772.602410, norm of subgrad 46.643659 stepsize= 1.000000 +dualbound = 1332898.213670, lowerbound=1024204.213670, norm of subgrad 1012.826843 dualbound = 1332898.213670, lowerbound=1024204.213670, norm of subgrad 46.266740 stepsize= 1.000000 +dualbound = 1333464.696884, lowerbound=1023045.696884, norm of subgrad 1012.220182 dualbound = 1333464.696884, lowerbound=1023045.696884, norm of subgrad 45.939996 stepsize= 1.000000 +dualbound = 1334011.386206, lowerbound=1025985.386206, norm of subgrad 1013.699850 dualbound = 1334011.386206, lowerbound=1025985.386206, norm of subgrad 46.353957 stepsize= 1.000000 +dualbound = 1334526.765852, lowerbound=1023203.765852, norm of subgrad 1012.327401 dualbound = 1334526.765852, lowerbound=1023203.765852, norm of subgrad 46.025858 stepsize= 1.000000 +dualbound = 1335057.254246, lowerbound=1024723.254246, norm of subgrad 1013.104760 dualbound = 1335057.254246, lowerbound=1024723.254246, norm of subgrad 46.781283 stepsize= 1.000000 +dualbound = 1335585.351832, lowerbound=1024206.351832, norm of subgrad 1012.832835 dualbound = 1335585.351832, lowerbound=1024206.351832, norm of subgrad 46.390706 stepsize= 1.000000 +dualbound = 1336114.624219, lowerbound=1024138.624219, norm of subgrad 1012.791501 dualbound = 1336114.624219, lowerbound=1024138.624219, norm of subgrad 46.230643 stepsize= 1.000000 +dualbound = 1336658.298763, lowerbound=1023664.298763, norm of subgrad 1012.567676 dualbound = 1336658.298763, lowerbound=1023664.298763, norm of subgrad 46.611957 stepsize= 1.000000 +dualbound = 1337147.729503, lowerbound=1024447.729503, norm of subgrad 1012.956430 dualbound = 1337147.729503, lowerbound=1024447.729503, norm of subgrad 46.069846 stepsize= 1.000000 +dualbound = 1337725.080008, lowerbound=1022691.080008, norm of subgrad 1012.072665 dualbound = 1337725.080008, lowerbound=1022691.080008, norm of subgrad 46.662089 stepsize= 1.000000 +dualbound = 1338231.977771, lowerbound=1027347.977771, norm of subgrad 1014.391925 dualbound = 1338231.977771, lowerbound=1027347.977771, norm of subgrad 46.366990 stepsize= 1.000000 +dualbound = 1338754.780856, lowerbound=1026064.780856, norm of subgrad 1013.732105 dualbound = 1338754.780856, lowerbound=1026064.780856, norm of subgrad 45.943477 stepsize= 1.000000 +dualbound = 1339285.377581, lowerbound=1024547.377581, norm of subgrad 1012.956750 dualbound = 1339285.377581, lowerbound=1024547.377581, norm of subgrad 45.437834 stepsize= 1.000000 +dualbound = 1339829.527605, lowerbound=1026537.527605, norm of subgrad 1013.953908 dualbound = 1339829.527605, lowerbound=1026537.527605, norm of subgrad 45.925483 stepsize= 1.000000 +dualbound = 1340334.749040, lowerbound=1024185.749040, norm of subgrad 1012.823158 dualbound = 1340334.749040, lowerbound=1024185.749040, norm of subgrad 46.154322 stepsize= 1.000000 +dualbound = 1340847.968786, lowerbound=1025824.968786, norm of subgrad 1013.626642 dualbound = 1340847.968786, lowerbound=1025824.968786, norm of subgrad 46.121793 stepsize= 1.000000 +dualbound = 1341363.569530, lowerbound=1024271.569530, norm of subgrad 1012.858119 dualbound = 1341363.569530, lowerbound=1024271.569530, norm of subgrad 46.104238 stepsize= 1.000000 +dualbound = 1341905.808315, lowerbound=1026331.808315, norm of subgrad 1013.866267 dualbound = 1341905.808315, lowerbound=1026331.808315, norm of subgrad 46.208644 stepsize= 1.000000 +dualbound = 1342433.211406, lowerbound=1024401.211406, norm of subgrad 1012.917179 dualbound = 1342433.211406, lowerbound=1024401.211406, norm of subgrad 46.123780 stepsize= 1.000000 +dualbound = 1342951.961012, lowerbound=1026664.961012, norm of subgrad 1014.030552 dualbound = 1342951.961012, lowerbound=1026664.961012, norm of subgrad 45.953777 stepsize= 1.000000 +dualbound = 1343439.166937, lowerbound=1026954.166937, norm of subgrad 1014.220473 dualbound = 1343439.166937, lowerbound=1026954.166937, norm of subgrad 46.649822 stepsize= 1.000000 +dualbound = 1343981.994507, lowerbound=1024280.994507, norm of subgrad 1012.876100 dualbound = 1343981.994507, lowerbound=1024280.994507, norm of subgrad 46.688624 stepsize= 1.000000 +dualbound = 1344499.744467, lowerbound=1024729.744467, norm of subgrad 1013.069467 dualbound = 1344499.744467, lowerbound=1024729.744467, norm of subgrad 45.801200 stepsize= 1.000000 +dualbound = 1345029.809384, lowerbound=1026614.809384, norm of subgrad 1014.003851 dualbound = 1345029.809384, lowerbound=1026614.809384, norm of subgrad 46.033302 stepsize= 1.000000 +dualbound = 1345562.132215, lowerbound=1025508.132215, norm of subgrad 1013.487608 dualbound = 1345562.132215, lowerbound=1025508.132215, norm of subgrad 46.704634 stepsize= 1.000000 +dualbound = 1346048.913352, lowerbound=1026754.913352, norm of subgrad 1014.094627 dualbound = 1346048.913352, lowerbound=1026754.913352, norm of subgrad 46.041081 stepsize= 1.000000 +dualbound = 1346582.419169, lowerbound=1024491.419169, norm of subgrad 1012.978983 dualbound = 1346582.419169, lowerbound=1024491.419169, norm of subgrad 46.567218 stepsize= 1.000000 +dualbound = 1347090.658716, lowerbound=1026670.658716, norm of subgrad 1014.078231 dualbound = 1347090.658716, lowerbound=1026670.658716, norm of subgrad 46.821358 stepsize= 1.000000 +dualbound = 1347612.141066, lowerbound=1027283.141066, norm of subgrad 1014.322996 dualbound = 1347612.141066, lowerbound=1027283.141066, norm of subgrad 45.710856 stepsize= 1.000000 +dualbound = 1348151.675897, lowerbound=1026272.675897, norm of subgrad 1013.847462 dualbound = 1348151.675897, lowerbound=1026272.675897, norm of subgrad 46.406194 stepsize= 1.000000 +dualbound = 1348666.297764, lowerbound=1025390.297764, norm of subgrad 1013.382108 dualbound = 1348666.297764, lowerbound=1025390.297764, norm of subgrad 45.471110 stepsize= 1.000000 +dualbound = 1349196.265043, lowerbound=1027493.265043, norm of subgrad 1014.443821 dualbound = 1349196.265043, lowerbound=1027493.265043, norm of subgrad 46.184059 stepsize= 1.000000 +dualbound = 1349666.100251, lowerbound=1027279.100251, norm of subgrad 1014.380156 dualbound = 1349666.100251, lowerbound=1027279.100251, norm of subgrad 46.452505 stepsize= 1.000000 +dualbound = 1350208.146505, lowerbound=1026636.146505, norm of subgrad 1014.007469 dualbound = 1350208.146505, lowerbound=1026636.146505, norm of subgrad 46.011371 stepsize= 1.000000 +dualbound = 1350747.041464, lowerbound=1026424.041464, norm of subgrad 1013.934436 dualbound = 1350747.041464, lowerbound=1026424.041464, norm of subgrad 46.667922 stepsize= 1.000000 +dualbound = 1351201.541877, lowerbound=1027837.541877, norm of subgrad 1014.651931 dualbound = 1351201.541877, lowerbound=1027837.541877, norm of subgrad 46.211475 stepsize= 1.000000 +dualbound = 1351753.968799, lowerbound=1026517.968799, norm of subgrad 1013.978781 dualbound = 1351753.968799, lowerbound=1026517.968799, norm of subgrad 46.769936 stepsize= 1.000000 +dualbound = 1352257.995359, lowerbound=1027074.995359, norm of subgrad 1014.257362 dualbound = 1352257.995359, lowerbound=1027074.995359, norm of subgrad 46.336018 stepsize= 1.000000 +dualbound = 1352767.229513, lowerbound=1026396.229513, norm of subgrad 1013.938967 dualbound = 1352767.229513, lowerbound=1026396.229513, norm of subgrad 46.746488 stepsize= 1.000000 +dualbound = 1353276.026217, lowerbound=1026448.026216, norm of subgrad 1013.925553 dualbound = 1353276.026217, lowerbound=1026448.026216, norm of subgrad 45.888961 stepsize= 1.000000 +dualbound = 1353820.142737, lowerbound=1028115.142737, norm of subgrad 1014.745359 dualbound = 1353820.142737, lowerbound=1028115.142737, norm of subgrad 46.228958 stepsize= 1.000000 +dualbound = 1354304.064128, lowerbound=1026828.064128, norm of subgrad 1014.125270 dualbound = 1354304.064128, lowerbound=1026828.064128, norm of subgrad 45.890319 stepsize= 1.000000 +dualbound = 1354829.060054, lowerbound=1028799.060054, norm of subgrad 1015.075889 dualbound = 1354829.060054, lowerbound=1028799.060054, norm of subgrad 45.880235 stepsize= 1.000000 +dualbound = 1355349.483359, lowerbound=1026233.483359, norm of subgrad 1013.853285 dualbound = 1355349.483359, lowerbound=1026233.483359, norm of subgrad 46.748511 stepsize= 1.000000 +dualbound = 1355838.037926, lowerbound=1027626.037926, norm of subgrad 1014.520102 dualbound = 1355838.037926, lowerbound=1027626.037926, norm of subgrad 45.973412 stepsize= 1.000000 +dualbound = 1356380.712674, lowerbound=1028400.712674, norm of subgrad 1014.890000 dualbound = 1356380.712674, lowerbound=1028400.712674, norm of subgrad 46.299835 stepsize= 1.000000 +dualbound = 1356890.362862, lowerbound=1026611.362862, norm of subgrad 1014.024340 dualbound = 1356890.362862, lowerbound=1026611.362862, norm of subgrad 46.299570 stepsize= 1.000000 +dualbound = 1357363.874229, lowerbound=1026809.874229, norm of subgrad 1014.111865 dualbound = 1357363.874229, lowerbound=1026809.874229, norm of subgrad 45.678347 stepsize= 1.000000 +dualbound = 1357933.873927, lowerbound=1028033.873927, norm of subgrad 1014.715169 dualbound = 1357933.873927, lowerbound=1028033.873927, norm of subgrad 46.722582 stepsize= 1.000000 +dualbound = 1358401.368984, lowerbound=1026675.368984, norm of subgrad 1014.062310 dualbound = 1358401.368984, lowerbound=1026675.368984, norm of subgrad 45.983639 stepsize= 1.000000 +dualbound = 1358931.962781, lowerbound=1028875.962781, norm of subgrad 1015.131008 dualbound = 1358931.962781, lowerbound=1028875.962781, norm of subgrad 46.320555 stepsize= 1.000000 +dualbound = 1359430.685539, lowerbound=1028434.685539, norm of subgrad 1014.931863 dualbound = 1359430.685539, lowerbound=1028434.685539, norm of subgrad 46.375886 stepsize= 1.000000 +dualbound = 1359944.356102, lowerbound=1029405.356102, norm of subgrad 1015.402066 dualbound = 1359944.356102, lowerbound=1029405.356102, norm of subgrad 46.364540 stepsize= 1.000000 +dualbound = 1360444.325572, lowerbound=1028218.325572, norm of subgrad 1014.847932 dualbound = 1360444.325572, lowerbound=1028218.325572, norm of subgrad 46.882507 stepsize= 1.000000 +dualbound = 1360929.038228, lowerbound=1029261.038228, norm of subgrad 1015.376796 dualbound = 1360929.038228, lowerbound=1029261.038228, norm of subgrad 47.050108 stepsize= 1.000000 +dualbound = 1361419.560825, lowerbound=1027946.560825, norm of subgrad 1014.682985 dualbound = 1361419.560825, lowerbound=1027946.560825, norm of subgrad 46.103390 stepsize= 1.000000 +dualbound = 1361958.695246, lowerbound=1028408.695246, norm of subgrad 1014.862402 dualbound = 1361958.695246, lowerbound=1028408.695246, norm of subgrad 45.564618 stepsize= 1.000000 +dualbound = 1362484.862441, lowerbound=1028967.862441, norm of subgrad 1015.171346 dualbound = 1362484.862441, lowerbound=1028967.862441, norm of subgrad 46.164566 stepsize= 1.000000 +dualbound = 1362959.939857, lowerbound=1029236.939857, norm of subgrad 1015.317655 dualbound = 1362959.939857, lowerbound=1029236.939857, norm of subgrad 45.913804 stepsize= 1.000000 +dualbound = 1363479.472394, lowerbound=1028783.472394, norm of subgrad 1015.081018 dualbound = 1363479.472394, lowerbound=1028783.472394, norm of subgrad 46.103498 stepsize= 1.000000 +dualbound = 1363977.851628, lowerbound=1029166.851628, norm of subgrad 1015.271319 dualbound = 1363977.851628, lowerbound=1029166.851628, norm of subgrad 45.906200 stepsize= 1.000000 +dualbound = 1364502.588431, lowerbound=1027167.588431, norm of subgrad 1014.269485 dualbound = 1364502.588431, lowerbound=1027167.588431, norm of subgrad 45.822885 stepsize= 1.000000 +dualbound = 1365004.704094, lowerbound=1029619.704094, norm of subgrad 1015.501701 dualbound = 1365004.704094, lowerbound=1029619.704094, norm of subgrad 46.109822 stepsize= 1.000000 +dualbound = 1365469.512057, lowerbound=1028946.512057, norm of subgrad 1015.155905 dualbound = 1365469.512057, lowerbound=1028946.512057, norm of subgrad 45.385107 stepsize= 1.000000 +dualbound = 1365989.810718, lowerbound=1029747.810718, norm of subgrad 1015.560343 dualbound = 1365989.810718, lowerbound=1029747.810718, norm of subgrad 46.209292 stepsize= 1.000000 +dualbound = 1366475.215779, lowerbound=1029614.215779, norm of subgrad 1015.502937 dualbound = 1366475.215779, lowerbound=1029614.215779, norm of subgrad 46.015270 stepsize= 1.000000 +dualbound = 1366974.695408, lowerbound=1027610.695408, norm of subgrad 1014.526340 dualbound = 1366974.695408, lowerbound=1027610.695408, norm of subgrad 46.394823 stepsize= 1.000000 +dualbound = 1367459.694548, lowerbound=1028872.694548, norm of subgrad 1015.137279 dualbound = 1367459.694548, lowerbound=1028872.694548, norm of subgrad 45.999991 stepsize= 1.000000 +dualbound = 1367994.145896, lowerbound=1031005.145896, norm of subgrad 1016.204284 dualbound = 1367994.145896, lowerbound=1031005.145896, norm of subgrad 46.908969 stepsize= 1.000000 +dualbound = 1368484.892971, lowerbound=1029177.892971, norm of subgrad 1015.291039 dualbound = 1368484.892971, lowerbound=1029177.892971, norm of subgrad 46.138347 stepsize= 1.000000 +dualbound = 1368978.400965, lowerbound=1031325.400965, norm of subgrad 1016.355450 dualbound = 1368978.400965, lowerbound=1031325.400965, norm of subgrad 46.330422 stepsize= 1.000000 +dualbound = 1369471.509003, lowerbound=1025842.509003, norm of subgrad 1013.638747 dualbound = 1369471.509003, lowerbound=1025842.509003, norm of subgrad 45.979431 stepsize= 1.000000 +dualbound = 1370001.798440, lowerbound=1030611.798440, norm of subgrad 1016.001377 dualbound = 1370001.798440, lowerbound=1030611.798440, norm of subgrad 46.661434 stepsize= 1.000000 +dualbound = 1370474.377712, lowerbound=1029324.377712, norm of subgrad 1015.369577 dualbound = 1370474.377712, lowerbound=1029324.377712, norm of subgrad 46.082310 stepsize= 1.000000 +dualbound = 1370989.110206, lowerbound=1030445.110206, norm of subgrad 1015.883414 dualbound = 1370989.110206, lowerbound=1030445.110206, norm of subgrad 45.702653 stepsize= 1.000000 +dualbound = 1371505.392796, lowerbound=1030251.392796, norm of subgrad 1015.814153 dualbound = 1371505.392796, lowerbound=1030251.392796, norm of subgrad 46.295600 stepsize= 1.000000 +dualbound = 1371963.029348, lowerbound=1028978.029348, norm of subgrad 1015.212800 dualbound = 1371963.029348, lowerbound=1028978.029348, norm of subgrad 46.223766 stepsize= 1.000000 +dualbound = 1372480.773382, lowerbound=1032483.773382, norm of subgrad 1016.928598 dualbound = 1372480.773382, lowerbound=1032483.773382, norm of subgrad 46.666305 stepsize= 1.000000 +dualbound = 1372970.476878, lowerbound=1027567.476878, norm of subgrad 1014.471526 dualbound = 1372970.476878, lowerbound=1027567.476878, norm of subgrad 45.548913 stepsize= 1.000000 +dualbound = 1373483.045078, lowerbound=1031236.045078, norm of subgrad 1016.289843 dualbound = 1373483.045078, lowerbound=1031236.045078, norm of subgrad 46.060484 stepsize= 1.000000 +dualbound = 1373982.883802, lowerbound=1028274.883802, norm of subgrad 1014.867914 dualbound = 1373982.883802, lowerbound=1028274.883802, norm of subgrad 46.710157 stepsize= 1.000000 +dualbound = 1374473.875212, lowerbound=1031801.875212, norm of subgrad 1016.566218 dualbound = 1374473.875212, lowerbound=1031801.875212, norm of subgrad 45.781999 stepsize= 1.000000 +dualbound = 1374976.661905, lowerbound=1031843.661905, norm of subgrad 1016.593656 dualbound = 1374976.661905, lowerbound=1031843.661905, norm of subgrad 46.062856 stepsize= 1.000000 +dualbound = 1375466.559044, lowerbound=1026944.559044, norm of subgrad 1014.163970 dualbound = 1375466.559044, lowerbound=1026944.559044, norm of subgrad 45.540061 stepsize= 1.000000 +dualbound = 1375996.036025, lowerbound=1031533.036025, norm of subgrad 1016.453657 dualbound = 1375996.036025, lowerbound=1031533.036025, norm of subgrad 46.631288 stepsize= 1.000000 +dualbound = 1376428.193249, lowerbound=1030913.193249, norm of subgrad 1016.181181 dualbound = 1376428.193249, lowerbound=1030913.193249, norm of subgrad 46.294246 stepsize= 1.000000 +dualbound = 1376962.882467, lowerbound=1030945.882467, norm of subgrad 1016.179060 dualbound = 1376962.882467, lowerbound=1030945.882467, norm of subgrad 46.996694 stepsize= 1.000000 +dualbound = 1377450.061584, lowerbound=1030305.061584, norm of subgrad 1015.830725 dualbound = 1377450.061584, lowerbound=1030305.061584, norm of subgrad 45.762202 stepsize= 1.000000 +dualbound = 1377969.035940, lowerbound=1029954.035940, norm of subgrad 1015.649071 dualbound = 1377969.035940, lowerbound=1029954.035940, norm of subgrad 45.912682 stepsize= 1.000000 +dualbound = 1378446.009613, lowerbound=1031677.009613, norm of subgrad 1016.523000 dualbound = 1378446.009613, lowerbound=1031677.009613, norm of subgrad 46.032311 stepsize= 1.000000 +dualbound = 1378942.846128, lowerbound=1030430.846128, norm of subgrad 1015.886729 dualbound = 1378942.846128, lowerbound=1030430.846128, norm of subgrad 45.736599 stepsize= 1.000000 +dualbound = 1379425.316899, lowerbound=1032353.316899, norm of subgrad 1016.846752 dualbound = 1379425.316899, lowerbound=1032353.316899, norm of subgrad 45.896305 stepsize= 1.000000 +dualbound = 1379922.503111, lowerbound=1030400.503111, norm of subgrad 1015.904771 dualbound = 1379922.503111, lowerbound=1030400.503111, norm of subgrad 46.467044 stepsize= 1.000000 +dualbound = 1380397.412294, lowerbound=1031502.412294, norm of subgrad 1016.445479 dualbound = 1380397.412294, lowerbound=1031502.412294, norm of subgrad 46.194255 stepsize= 1.000000 +dualbound = 1380905.792137, lowerbound=1029534.792137, norm of subgrad 1015.460384 dualbound = 1380905.792137, lowerbound=1029534.792137, norm of subgrad 46.188525 stepsize= 1.000000 +dualbound = 1381430.658117, lowerbound=1031837.658117, norm of subgrad 1016.589720 dualbound = 1381430.658117, lowerbound=1031837.658117, norm of subgrad 46.280298 stepsize= 1.000000 +dualbound = 1381897.934849, lowerbound=1030363.934849, norm of subgrad 1015.855765 dualbound = 1381897.934849, lowerbound=1030363.934849, norm of subgrad 45.456317 stepsize= 1.000000 +dualbound = 1382404.799297, lowerbound=1030186.799297, norm of subgrad 1015.771529 dualbound = 1382404.799297, lowerbound=1030186.799297, norm of subgrad 45.955026 stepsize= 1.000000 +dualbound = 1382883.871891, lowerbound=1031460.871891, norm of subgrad 1016.449149 dualbound = 1382883.871891, lowerbound=1031460.871891, norm of subgrad 46.766148 stepsize= 1.000000 +dualbound = 1383347.431508, lowerbound=1031008.431508, norm of subgrad 1016.206884 dualbound = 1383347.431508, lowerbound=1031008.431508, norm of subgrad 46.168817 stepsize= 1.000000 +dualbound = 1383870.612224, lowerbound=1030219.612224, norm of subgrad 1015.798510 dualbound = 1383870.612224, lowerbound=1030219.612224, norm of subgrad 46.370041 stepsize= 1.000000 +dualbound = 1384361.634396, lowerbound=1031353.634396, norm of subgrad 1016.330475 dualbound = 1384361.634396, lowerbound=1031353.634396, norm of subgrad 45.442515 stepsize= 1.000000 +dualbound = 1384862.905972, lowerbound=1033207.905972, norm of subgrad 1017.280643 dualbound = 1384862.905972, lowerbound=1033207.905972, norm of subgrad 46.403357 stepsize= 1.000000 +dualbound = 1385331.459924, lowerbound=1032296.459924, norm of subgrad 1016.807976 dualbound = 1385331.459924, lowerbound=1032296.459924, norm of subgrad 45.503340 stepsize= 1.000000 +dualbound = 1385822.396169, lowerbound=1029968.396169, norm of subgrad 1015.697985 dualbound = 1385822.396169, lowerbound=1029968.396169, norm of subgrad 46.528875 stepsize= 1.000000 +dualbound = 1386325.301197, lowerbound=1033053.301197, norm of subgrad 1017.196786 dualbound = 1386325.301197, lowerbound=1033053.301197, norm of subgrad 46.248298 stepsize= 1.000000 +dualbound = 1386793.128193, lowerbound=1031353.128193, norm of subgrad 1016.345477 dualbound = 1386793.128193, lowerbound=1031353.128193, norm of subgrad 45.528310 stepsize= 1.000000 +dualbound = 1387298.771686, lowerbound=1031231.771686, norm of subgrad 1016.269045 dualbound = 1387298.771686, lowerbound=1031231.771686, norm of subgrad 45.570204 stepsize= 1.000000 +dualbound = 1387811.946010, lowerbound=1031120.946010, norm of subgrad 1016.232230 dualbound = 1387811.946010, lowerbound=1031120.946010, norm of subgrad 46.045351 stepsize= 1.000000 +dualbound = 1388276.156910, lowerbound=1032208.156910, norm of subgrad 1016.762586 dualbound = 1388276.156910, lowerbound=1032208.156910, norm of subgrad 45.411572 stepsize= 1.000000 +dualbound = 1388768.785809, lowerbound=1031019.785809, norm of subgrad 1016.209519 dualbound = 1388768.785809, lowerbound=1031019.785809, norm of subgrad 46.417980 stepsize= 1.000000 +dualbound = 1389246.833571, lowerbound=1031963.833571, norm of subgrad 1016.636530 dualbound = 1389246.833571, lowerbound=1031963.833571, norm of subgrad 45.431792 stepsize= 1.000000 +dualbound = 1389740.949878, lowerbound=1033135.949878, norm of subgrad 1017.223648 dualbound = 1389740.949878, lowerbound=1033135.949878, norm of subgrad 45.848842 stepsize= 1.000000 +dualbound = 1390241.022131, lowerbound=1031565.022131, norm of subgrad 1016.451682 dualbound = 1390241.022131, lowerbound=1031565.022131, norm of subgrad 45.924637 stepsize= 1.000000 +dualbound = 1390712.049841, lowerbound=1032286.049841, norm of subgrad 1016.794989 dualbound = 1390712.049841, lowerbound=1032286.049841, norm of subgrad 45.354467 stepsize= 1.000000 +dualbound = 1391210.729737, lowerbound=1032325.729737, norm of subgrad 1016.827286 dualbound = 1391210.729737, lowerbound=1032325.729737, norm of subgrad 45.942136 stepsize= 1.000000 +dualbound = 1391686.828051, lowerbound=1030108.828051, norm of subgrad 1015.728718 dualbound = 1391686.828051, lowerbound=1030108.828051, norm of subgrad 45.520307 stepsize= 1.000000 +dualbound = 1392203.883563, lowerbound=1033256.883563, norm of subgrad 1017.267361 dualbound = 1392203.883563, lowerbound=1033256.883563, norm of subgrad 45.749924 stepsize= 1.000000 +dualbound = 1392639.561509, lowerbound=1031662.561509, norm of subgrad 1016.521304 dualbound = 1392639.561509, lowerbound=1031662.561509, norm of subgrad 45.702056 stepsize= 1.000000 +dualbound = 1393100.953979, lowerbound=1032100.953979, norm of subgrad 1016.736423 dualbound = 1393100.953979, lowerbound=1032100.953979, norm of subgrad 45.971649 stepsize= 1.000000 +dualbound = 1393622.642679, lowerbound=1032600.642679, norm of subgrad 1016.974750 dualbound = 1393622.642679, lowerbound=1032600.642679, norm of subgrad 46.461691 stepsize= 1.000000 +dualbound = 1394115.495491, lowerbound=1032178.495491, norm of subgrad 1016.744558 dualbound = 1394115.495491, lowerbound=1032178.495491, norm of subgrad 45.649237 stepsize= 1.000000 +dualbound = 1394613.698988, lowerbound=1033538.698988, norm of subgrad 1017.417171 dualbound = 1394613.698988, lowerbound=1033538.698988, norm of subgrad 45.795234 stepsize= 1.000000 +dualbound = 1395101.454137, lowerbound=1033316.454137, norm of subgrad 1017.289759 dualbound = 1395101.454137, lowerbound=1033316.454137, norm of subgrad 45.274222 stepsize= 1.000000 +dualbound = 1395594.480702, lowerbound=1031079.480702, norm of subgrad 1016.209861 dualbound = 1395594.480702, lowerbound=1031079.480702, norm of subgrad 45.782383 stepsize= 1.000000 +dualbound = 1396041.205332, lowerbound=1032745.205332, norm of subgrad 1017.057130 dualbound = 1396041.205332, lowerbound=1032745.205332, norm of subgrad 45.899070 stepsize= 1.000000 +dualbound = 1396548.915331, lowerbound=1032228.915331, norm of subgrad 1016.778695 dualbound = 1396548.915331, lowerbound=1032228.915331, norm of subgrad 46.018583 stepsize= 1.000000 +dualbound = 1397026.212822, lowerbound=1032975.212822, norm of subgrad 1017.138247 dualbound = 1397026.212822, lowerbound=1032975.212822, norm of subgrad 45.522494 stepsize= 1.000000 +dualbound = 1397529.065304, lowerbound=1033338.065304, norm of subgrad 1017.311194 dualbound = 1397529.065304, lowerbound=1033338.065304, norm of subgrad 45.682081 stepsize= 1.000000 +dualbound = 1398007.176793, lowerbound=1033132.176793, norm of subgrad 1017.219336 dualbound = 1398007.176793, lowerbound=1033132.176793, norm of subgrad 45.619201 stepsize= 1.000000 +dualbound = 1398491.453364, lowerbound=1032583.453364, norm of subgrad 1016.966299 dualbound = 1398491.453364, lowerbound=1032583.453364, norm of subgrad 46.057318 stepsize= 1.000000 +dualbound = 1398951.413413, lowerbound=1033247.413413, norm of subgrad 1017.270079 dualbound = 1398951.413413, lowerbound=1033247.413413, norm of subgrad 45.287526 stepsize= 1.000000 +dualbound = 1399470.835891, lowerbound=1031687.835891, norm of subgrad 1016.494386 dualbound = 1399470.835891, lowerbound=1031687.835891, norm of subgrad 45.743005 stepsize= 1.000000 +dualbound = 1399924.355604, lowerbound=1034796.355604, norm of subgrad 1018.031117 dualbound = 1399924.355604, lowerbound=1034796.355604, norm of subgrad 45.216366 stepsize= 1.000000 +dualbound = 1400394.042156, lowerbound=1033734.042156, norm of subgrad 1017.553950 dualbound = 1400394.042156, lowerbound=1033734.042156, norm of subgrad 46.386275 stepsize= 1.000000 +dualbound = 1400863.798612, lowerbound=1034098.798612, norm of subgrad 1017.691898 dualbound = 1400863.798612, lowerbound=1034098.798612, norm of subgrad 45.472590 stepsize= 1.000000 +dualbound = 1401371.439430, lowerbound=1032711.439430, norm of subgrad 1017.003658 dualbound = 1401371.439430, lowerbound=1032711.439430, norm of subgrad 45.745391 stepsize= 1.000000 +dualbound = 1401836.808783, lowerbound=1031805.808783, norm of subgrad 1016.564710 dualbound = 1401836.808783, lowerbound=1031805.808783, norm of subgrad 45.424326 stepsize= 1.000000 +dualbound = 1402333.015443, lowerbound=1033340.015443, norm of subgrad 1017.348031 dualbound = 1402333.015443, lowerbound=1033340.015443, norm of subgrad 46.402658 stepsize= 1.000000 +dualbound = 1402791.611030, lowerbound=1033612.611030, norm of subgrad 1017.495755 dualbound = 1402791.611030, lowerbound=1033612.611030, norm of subgrad 46.298980 stepsize= 1.000000 +dualbound = 1403294.463274, lowerbound=1034529.463274, norm of subgrad 1017.924095 dualbound = 1403294.463274, lowerbound=1034529.463274, norm of subgrad 46.290952 stepsize= 1.000000 +dualbound = 1403758.392071, lowerbound=1035172.392071, norm of subgrad 1018.176503 dualbound = 1403758.392071, lowerbound=1035172.392071, norm of subgrad 44.440171 stepsize= 1.000000 +dualbound = 1404275.738910, lowerbound=1033892.738910, norm of subgrad 1017.572474 dualbound = 1404275.738910, lowerbound=1033892.738910, norm of subgrad 45.588889 stepsize= 1.000000 +dualbound = 1404720.857176, lowerbound=1034296.857176, norm of subgrad 1017.820150 dualbound = 1404720.857176, lowerbound=1034296.857176, norm of subgrad 45.892464 stepsize= 1.000000 +dualbound = 1405202.876250, lowerbound=1033273.876250, norm of subgrad 1017.303237 dualbound = 1405202.876250, lowerbound=1033273.876250, norm of subgrad 45.978463 stepsize= 1.000000 +dualbound = 1405681.221219, lowerbound=1035194.221219, norm of subgrad 1018.228472 dualbound = 1405681.221219, lowerbound=1035194.221219, norm of subgrad 45.533998 stepsize= 1.000000 +dualbound = 1406151.269893, lowerbound=1035081.269893, norm of subgrad 1018.170550 dualbound = 1406151.269893, lowerbound=1035081.269893, norm of subgrad 45.387759 stepsize= 1.000000 +dualbound = 1406632.386828, lowerbound=1033050.386827, norm of subgrad 1017.168318 dualbound = 1406632.386828, lowerbound=1033050.386827, norm of subgrad 45.410538 stepsize= 1.000000 +dualbound = 1407099.366064, lowerbound=1032237.366064, norm of subgrad 1016.808422 dualbound = 1407099.366064, lowerbound=1032237.366064, norm of subgrad 46.140863 stepsize= 1.000000 +dualbound = 1407579.047628, lowerbound=1036566.047628, norm of subgrad 1018.936233 dualbound = 1407579.047628, lowerbound=1036566.047628, norm of subgrad 46.310707 stepsize= 1.000000 +dualbound = 1408054.685100, lowerbound=1033306.685100, norm of subgrad 1017.293313 dualbound = 1408054.685100, lowerbound=1033306.685100, norm of subgrad 45.328109 stepsize= 1.000000 +dualbound = 1408547.033198, lowerbound=1034519.033198, norm of subgrad 1017.872307 dualbound = 1408547.033198, lowerbound=1034519.033198, norm of subgrad 45.136993 stepsize= 1.000000 +dualbound = 1409028.041530, lowerbound=1033795.041530, norm of subgrad 1017.519553 dualbound = 1409028.041530, lowerbound=1033795.041530, norm of subgrad 45.077803 stepsize= 1.000000 +dualbound = 1409518.631160, lowerbound=1036882.631160, norm of subgrad 1019.057227 dualbound = 1409518.631160, lowerbound=1036882.631160, norm of subgrad 45.668256 stepsize= 1.000000 +dualbound = 1409937.210492, lowerbound=1030555.210492, norm of subgrad 1015.982387 dualbound = 1409937.210492, lowerbound=1030555.210492, norm of subgrad 45.646241 stepsize= 1.000000 +dualbound = 1410419.227851, lowerbound=1036716.227851, norm of subgrad 1019.009435 dualbound = 1410419.227851, lowerbound=1036716.227851, norm of subgrad 46.325127 stepsize= 1.000000 +dualbound = 1410883.745236, lowerbound=1034142.745236, norm of subgrad 1017.728719 dualbound = 1410883.745236, lowerbound=1034142.745236, norm of subgrad 45.754971 stepsize= 1.000000 +dualbound = 1411391.676438, lowerbound=1033375.676438, norm of subgrad 1017.336560 dualbound = 1411391.676438, lowerbound=1033375.676438, norm of subgrad 45.890426 stepsize= 1.000000 +dualbound = 1411835.865578, lowerbound=1034116.865578, norm of subgrad 1017.699791 dualbound = 1411835.865578, lowerbound=1034116.865578, norm of subgrad 45.168453 stepsize= 1.000000 +dualbound = 1412332.485863, lowerbound=1036000.485863, norm of subgrad 1018.622347 dualbound = 1412332.485863, lowerbound=1036000.485863, norm of subgrad 45.690484 stepsize= 1.000000 +dualbound = 1412785.508956, lowerbound=1035603.508956, norm of subgrad 1018.451034 dualbound = 1412785.508956, lowerbound=1035603.508956, norm of subgrad 45.738639 stepsize= 1.000000 +dualbound = 1413248.802409, lowerbound=1034026.802409, norm of subgrad 1017.655542 dualbound = 1413248.802409, lowerbound=1034026.802409, norm of subgrad 45.379439 stepsize= 1.000000 +dualbound = 1413778.579764, lowerbound=1033259.579764, norm of subgrad 1017.269669 dualbound = 1413778.579764, lowerbound=1033259.579764, norm of subgrad 45.910536 stepsize= 1.000000 +dualbound = 1414189.512707, lowerbound=1035715.512707, norm of subgrad 1018.488838 dualbound = 1414189.512707, lowerbound=1035715.512707, norm of subgrad 44.888004 stepsize= 1.000000 +dualbound = 1414695.611761, lowerbound=1033845.611761, norm of subgrad 1017.577816 dualbound = 1414695.611761, lowerbound=1033845.611761, norm of subgrad 46.098797 stepsize= 1.000000 +dualbound = 1415130.963031, lowerbound=1037723.963031, norm of subgrad 1019.499369 dualbound = 1415130.963031, lowerbound=1037723.963031, norm of subgrad 45.720359 stepsize= 1.000000 +dualbound = 1415612.150018, lowerbound=1033609.150018, norm of subgrad 1017.437541 dualbound = 1415612.150018, lowerbound=1033609.150018, norm of subgrad 45.290032 stepsize= 1.000000 +dualbound = 1416108.995885, lowerbound=1037190.995885, norm of subgrad 1019.251684 dualbound = 1416108.995885, lowerbound=1037190.995885, norm of subgrad 46.688820 stepsize= 1.000000 +dualbound = 1416519.937170, lowerbound=1034627.937170, norm of subgrad 1017.964114 dualbound = 1416519.937170, lowerbound=1034627.937170, norm of subgrad 45.099238 stepsize= 1.000000 +dualbound = 1417036.512897, lowerbound=1035295.512897, norm of subgrad 1018.261515 dualbound = 1417036.512897, lowerbound=1035295.512897, norm of subgrad 45.580431 stepsize= 1.000000 +dualbound = 1417522.391283, lowerbound=1034775.391283, norm of subgrad 1018.009033 dualbound = 1417522.391283, lowerbound=1034775.391283, norm of subgrad 45.308701 stepsize= 1.000000 +dualbound = 1417968.809331, lowerbound=1038643.809331, norm of subgrad 1019.941572 dualbound = 1417968.809331, lowerbound=1038643.809331, norm of subgrad 45.644474 stepsize= 1.000000 +dualbound = 1418420.956452, lowerbound=1036613.956452, norm of subgrad 1018.942568 dualbound = 1418420.956452, lowerbound=1036613.956452, norm of subgrad 45.630550 stepsize= 1.000000 +dualbound = 1418903.852838, lowerbound=1034648.852838, norm of subgrad 1017.952775 dualbound = 1418903.852838, lowerbound=1034648.852838, norm of subgrad 45.408109 stepsize= 1.000000 +dualbound = 1419345.147861, lowerbound=1035147.147861, norm of subgrad 1018.231382 dualbound = 1419345.147861, lowerbound=1035147.147861, norm of subgrad 45.708807 stepsize= 1.000000 +dualbound = 1419811.112924, lowerbound=1036419.112924, norm of subgrad 1018.824378 dualbound = 1419811.112924, lowerbound=1036419.112924, norm of subgrad 45.276540 stepsize= 1.000000 +dualbound = 1420284.931918, lowerbound=1034321.931918, norm of subgrad 1017.782851 dualbound = 1420284.931918, lowerbound=1034321.931918, norm of subgrad 45.097882 stepsize= 1.000000 +dualbound = 1420785.769532, lowerbound=1036687.769532, norm of subgrad 1018.945911 dualbound = 1420785.769532, lowerbound=1036687.769532, norm of subgrad 45.429480 stepsize= 1.000000 +dualbound = 1421247.127256, lowerbound=1035886.127256, norm of subgrad 1018.551976 dualbound = 1421247.127256, lowerbound=1035886.127256, norm of subgrad 44.981749 stepsize= 1.000000 +dualbound = 1421682.051643, lowerbound=1037005.051643, norm of subgrad 1019.181069 dualbound = 1421682.051643, lowerbound=1037005.051643, norm of subgrad 46.474987 stepsize= 1.000000 +dualbound = 1422124.215495, lowerbound=1034928.215495, norm of subgrad 1018.121415 dualbound = 1422124.215495, lowerbound=1034928.215495, norm of subgrad 45.663594 stepsize= 1.000000 +dualbound = 1422619.372115, lowerbound=1036540.372115, norm of subgrad 1018.880450 dualbound = 1422619.372115, lowerbound=1036540.372115, norm of subgrad 45.520947 stepsize= 1.000000 +dualbound = 1423109.145047, lowerbound=1036619.145047, norm of subgrad 1018.917143 dualbound = 1423109.145047, lowerbound=1036619.145047, norm of subgrad 45.417760 stepsize= 1.000000 +dualbound = 1423554.427192, lowerbound=1039818.427192, norm of subgrad 1020.502537 dualbound = 1423554.427192, lowerbound=1039818.427192, norm of subgrad 45.302121 stepsize= 1.000000 +dualbound = 1424017.879058, lowerbound=1034720.879058, norm of subgrad 1017.957209 dualbound = 1424017.879058, lowerbound=1034720.879058, norm of subgrad 44.491031 stepsize= 1.000000 +dualbound = 1424497.449514, lowerbound=1037871.449514, norm of subgrad 1019.544727 dualbound = 1424497.449514, lowerbound=1037871.449514, norm of subgrad 45.602308 stepsize= 1.000000 +dualbound = 1424953.431534, lowerbound=1037039.431534, norm of subgrad 1019.125817 dualbound = 1424953.431534, lowerbound=1037039.431534, norm of subgrad 45.099690 stepsize= 1.000000 +dualbound = 1425396.479164, lowerbound=1039339.479164, norm of subgrad 1020.273238 dualbound = 1425396.479164, lowerbound=1039339.479164, norm of subgrad 45.398762 stepsize= 1.000000 +dualbound = 1425849.771821, lowerbound=1034705.771821, norm of subgrad 1018.016587 dualbound = 1425849.771821, lowerbound=1034705.771821, norm of subgrad 45.883468 stepsize= 1.000000 +dualbound = 1426306.655866, lowerbound=1038659.655866, norm of subgrad 1019.978753 dualbound = 1426306.655866, lowerbound=1038659.655866, norm of subgrad 46.409956 stepsize= 1.000000 +dualbound = 1426764.329162, lowerbound=1037827.329162, norm of subgrad 1019.528484 dualbound = 1426764.329162, lowerbound=1037827.329162, norm of subgrad 45.482670 stepsize= 1.000000 +dualbound = 1427260.014994, lowerbound=1036757.014994, norm of subgrad 1019.024541 dualbound = 1427260.014994, lowerbound=1036757.014994, norm of subgrad 46.364705 stepsize= 1.000000 +dualbound = 1427688.746590, lowerbound=1037580.746590, norm of subgrad 1019.441880 dualbound = 1427688.746590, lowerbound=1037580.746590, norm of subgrad 45.931815 stepsize= 1.000000 +dualbound = 1428171.404497, lowerbound=1039159.404497, norm of subgrad 1020.186946 dualbound = 1428171.404497, lowerbound=1039159.404497, norm of subgrad 45.876551 stepsize= 1.000000 +dualbound = 1428654.007848, lowerbound=1036291.007848, norm of subgrad 1018.773777 dualbound = 1428654.007848, lowerbound=1036291.007848, norm of subgrad 45.734050 stepsize= 1.000000 +dualbound = 1429081.779545, lowerbound=1039633.779545, norm of subgrad 1020.434603 dualbound = 1429081.779545, lowerbound=1039633.779545, norm of subgrad 45.615477 stepsize= 1.000000 +dualbound = 1429552.656667, lowerbound=1036103.656667, norm of subgrad 1018.677896 dualbound = 1429552.656667, lowerbound=1036103.656667, norm of subgrad 45.517877 stepsize= 1.000000 +dualbound = 1430043.619475, lowerbound=1036401.619475, norm of subgrad 1018.806959 dualbound = 1430043.619475, lowerbound=1036401.619475, norm of subgrad 45.353752 stepsize= 1.000000 +dualbound = 1430490.852156, lowerbound=1039084.852156, norm of subgrad 1020.146486 dualbound = 1430490.852156, lowerbound=1039084.852156, norm of subgrad 45.400800 stepsize= 1.000000 +dualbound = 1430944.285953, lowerbound=1039191.285953, norm of subgrad 1020.203061 dualbound = 1430944.285953, lowerbound=1039191.285953, norm of subgrad 45.567903 stepsize= 1.000000 +dualbound = 1431389.391689, lowerbound=1036644.391689, norm of subgrad 1018.962409 dualbound = 1431389.391689, lowerbound=1036644.391689, norm of subgrad 45.662958 stepsize= 1.000000 +dualbound = 1431857.682229, lowerbound=1039590.682229, norm of subgrad 1020.378695 dualbound = 1431857.682229, lowerbound=1039590.682229, norm of subgrad 45.280134 stepsize= 1.000000 +dualbound = 1432308.156267, lowerbound=1038643.156267, norm of subgrad 1019.919681 dualbound = 1432308.156267, lowerbound=1038643.156267, norm of subgrad 45.204801 stepsize= 1.000000 +dualbound = 1432785.505727, lowerbound=1038992.505727, norm of subgrad 1020.115437 dualbound = 1432785.505727, lowerbound=1038992.505727, norm of subgrad 46.047252 stepsize= 1.000000 +dualbound = 1433206.697104, lowerbound=1036418.697104, norm of subgrad 1018.839878 dualbound = 1433206.697104, lowerbound=1036418.697104, norm of subgrad 45.135256 stepsize= 1.000000 +dualbound = 1433683.324639, lowerbound=1040017.324639, norm of subgrad 1020.565689 dualbound = 1433683.324639, lowerbound=1040017.324639, norm of subgrad 44.873461 stepsize= 1.000000 +dualbound = 1434153.471933, lowerbound=1037397.471933, norm of subgrad 1019.304406 dualbound = 1434153.471933, lowerbound=1037397.471933, norm of subgrad 45.322702 stepsize= 1.000000 +dualbound = 1434596.158775, lowerbound=1039714.158775, norm of subgrad 1020.473007 dualbound = 1434596.158775, lowerbound=1039714.158775, norm of subgrad 45.756823 stepsize= 1.000000 +dualbound = 1435029.178737, lowerbound=1039147.178737, norm of subgrad 1020.176543 dualbound = 1435029.178737, lowerbound=1039147.178737, norm of subgrad 45.232952 stepsize= 1.000000 +dualbound = 1435506.783653, lowerbound=1039722.783653, norm of subgrad 1020.465474 dualbound = 1435506.783653, lowerbound=1039722.783653, norm of subgrad 45.875973 stepsize= 1.000000 +dualbound = 1435962.717842, lowerbound=1035540.717842, norm of subgrad 1018.400077 dualbound = 1435962.717842, lowerbound=1035540.717842, norm of subgrad 45.320351 stepsize= 1.000000 +dualbound = 1436424.150446, lowerbound=1041122.150446, norm of subgrad 1021.111723 dualbound = 1436424.150446, lowerbound=1041122.150446, norm of subgrad 44.815540 stepsize= 1.000000 +dualbound = 1436868.358535, lowerbound=1036705.358535, norm of subgrad 1018.988890 dualbound = 1436868.358535, lowerbound=1036705.358535, norm of subgrad 45.576398 stepsize= 1.000000 +dualbound = 1437346.013971, lowerbound=1041024.013971, norm of subgrad 1021.093538 dualbound = 1437346.013971, lowerbound=1041024.013971, norm of subgrad 45.668977 stepsize= 1.000000 +dualbound = 1437763.509628, lowerbound=1038911.509628, norm of subgrad 1020.073286 dualbound = 1437763.509628, lowerbound=1038911.509628, norm of subgrad 45.337574 stepsize= 1.000000 +dualbound = 1438225.147399, lowerbound=1037551.147399, norm of subgrad 1019.408234 dualbound = 1438225.147399, lowerbound=1037551.147399, norm of subgrad 45.865431 stepsize= 1.000000 +dualbound = 1438686.401474, lowerbound=1039286.401474, norm of subgrad 1020.233993 dualbound = 1438686.401474, lowerbound=1039286.401474, norm of subgrad 45.301811 stepsize= 1.000000 +dualbound = 1439153.873836, lowerbound=1040144.873836, norm of subgrad 1020.670306 dualbound = 1439153.873836, lowerbound=1040144.873836, norm of subgrad 45.721684 stepsize= 1.000000 +dualbound = 1439603.388550, lowerbound=1036618.388550, norm of subgrad 1018.919226 dualbound = 1439603.388550, lowerbound=1036618.388550, norm of subgrad 45.027933 stepsize= 1.000000 +dualbound = 1440047.535084, lowerbound=1039461.535084, norm of subgrad 1020.300708 dualbound = 1440047.535084, lowerbound=1039461.535084, norm of subgrad 44.678256 stepsize= 1.000000 +dualbound = 1440523.705242, lowerbound=1038489.705242, norm of subgrad 1019.847883 dualbound = 1440523.705242, lowerbound=1038489.705242, norm of subgrad 45.565010 stepsize= 1.000000 +dualbound = 1440959.002848, lowerbound=1038000.002848, norm of subgrad 1019.590606 dualbound = 1440959.002848, lowerbound=1038000.002848, norm of subgrad 44.724687 stepsize= 1.000000 +dualbound = 1441409.760699, lowerbound=1039358.760699, norm of subgrad 1020.266024 dualbound = 1441409.760699, lowerbound=1039358.760699, norm of subgrad 45.108290 stepsize= 1.000000 +dualbound = 1441863.706282, lowerbound=1040984.706282, norm of subgrad 1021.110526 dualbound = 1441863.706282, lowerbound=1040984.706282, norm of subgrad 46.216291 stepsize= 1.000000 +dualbound = 1442279.815237, lowerbound=1037528.815237, norm of subgrad 1019.413466 dualbound = 1442279.815237, lowerbound=1037528.815237, norm of subgrad 45.728645 stepsize= 1.000000 +dualbound = 1442755.532842, lowerbound=1040715.532842, norm of subgrad 1020.939534 dualbound = 1442755.532842, lowerbound=1040715.532842, norm of subgrad 45.581988 stepsize= 1.000000 +dualbound = 1443198.204962, lowerbound=1038738.204962, norm of subgrad 1019.993238 dualbound = 1443198.204962, lowerbound=1038738.204962, norm of subgrad 45.723868 stepsize= 1.000000 +dualbound = 1443667.829776, lowerbound=1039601.829776, norm of subgrad 1020.391508 dualbound = 1443667.829776, lowerbound=1039601.829776, norm of subgrad 45.460145 stepsize= 1.000000 +dualbound = 1444132.395678, lowerbound=1037591.395678, norm of subgrad 1019.410318 dualbound = 1444132.395678, lowerbound=1037591.395678, norm of subgrad 45.503471 stepsize= 1.000000 +dualbound = 1444574.761115, lowerbound=1041147.761115, norm of subgrad 1021.159028 dualbound = 1444574.761115, lowerbound=1041147.761115, norm of subgrad 45.391248 stepsize= 1.000000 +dualbound = 1445010.466670, lowerbound=1036686.466670, norm of subgrad 1018.986490 dualbound = 1445010.466670, lowerbound=1036686.466670, norm of subgrad 45.636669 stepsize= 1.000000 +dualbound = 1445468.620948, lowerbound=1041578.620948, norm of subgrad 1021.361161 dualbound = 1445468.620948, lowerbound=1041578.620948, norm of subgrad 45.366885 stepsize= 1.000000 +dualbound = 1445921.305812, lowerbound=1037964.305812, norm of subgrad 1019.572119 dualbound = 1445921.305812, lowerbound=1037964.305812, norm of subgrad 44.896379 stepsize= 1.000000 +dualbound = 1446395.935928, lowerbound=1040271.935928, norm of subgrad 1020.710016 dualbound = 1446395.935928, lowerbound=1040271.935928, norm of subgrad 45.294924 stepsize= 1.000000 +dualbound = 1446843.630979, lowerbound=1039861.630979, norm of subgrad 1020.498717 dualbound = 1446843.630979, lowerbound=1039861.630979, norm of subgrad 44.762652 stepsize= 1.000000 +dualbound = 1447283.809915, lowerbound=1039952.809915, norm of subgrad 1020.556618 dualbound = 1447283.809915, lowerbound=1039952.809915, norm of subgrad 44.979761 stepsize= 1.000000 +dualbound = 1447708.957798, lowerbound=1039495.957798, norm of subgrad 1020.362170 dualbound = 1447708.957798, lowerbound=1039495.957798, norm of subgrad 45.476894 stepsize= 1.000000 +dualbound = 1448164.579275, lowerbound=1039353.579275, norm of subgrad 1020.244372 dualbound = 1448164.579275, lowerbound=1039353.579275, norm of subgrad 44.728307 stepsize= 1.000000 +dualbound = 1448627.207488, lowerbound=1038993.207488, norm of subgrad 1020.107449 dualbound = 1448627.207488, lowerbound=1038993.207488, norm of subgrad 45.701512 stepsize= 1.000000 +dualbound = 1449062.988022, lowerbound=1041153.988022, norm of subgrad 1021.162567 dualbound = 1449062.988022, lowerbound=1041153.988022, norm of subgrad 45.329687 stepsize= 1.000000 +dualbound = 1449509.898184, lowerbound=1040021.898184, norm of subgrad 1020.597814 dualbound = 1449509.898184, lowerbound=1040021.898184, norm of subgrad 45.220683 stepsize= 1.000000 +dualbound = 1449966.771927, lowerbound=1039135.771927, norm of subgrad 1020.171933 dualbound = 1449966.771927, lowerbound=1039135.771927, norm of subgrad 45.517840 stepsize= 1.000000 +dualbound = 1450417.656223, lowerbound=1039894.656223, norm of subgrad 1020.552133 dualbound = 1450417.656223, lowerbound=1039894.656223, norm of subgrad 45.638627 stepsize= 1.000000 +dualbound = 1450856.359285, lowerbound=1039091.359285, norm of subgrad 1020.158497 dualbound = 1450856.359285, lowerbound=1039091.359285, norm of subgrad 45.504978 stepsize= 1.000000 +dualbound = 1451326.505920, lowerbound=1039926.505920, norm of subgrad 1020.578515 dualbound = 1451326.505920, lowerbound=1039926.505920, norm of subgrad 46.088465 stepsize= 1.000000 +dualbound = 1451755.179543, lowerbound=1042830.179543, norm of subgrad 1021.987857 dualbound = 1451755.179543, lowerbound=1042830.179543, norm of subgrad 45.361588 stepsize= 1.000000 +dualbound = 1452229.628628, lowerbound=1039539.628628, norm of subgrad 1020.342408 dualbound = 1452229.628628, lowerbound=1039539.628628, norm of subgrad 45.093781 stepsize= 1.000000 +dualbound = 1452672.205887, lowerbound=1041145.205887, norm of subgrad 1021.171977 dualbound = 1452672.205887, lowerbound=1041145.205887, norm of subgrad 45.711894 stepsize= 1.000000 +dualbound = 1453098.809738, lowerbound=1038610.809738, norm of subgrad 1019.935689 dualbound = 1453098.809738, lowerbound=1038610.809738, norm of subgrad 45.657462 stepsize= 1.000000 +dualbound = 1453557.350910, lowerbound=1040806.350910, norm of subgrad 1020.979114 dualbound = 1453557.350910, lowerbound=1040806.350910, norm of subgrad 45.282902 stepsize= 1.000000 +dualbound = 1454018.237386, lowerbound=1039342.237386, norm of subgrad 1020.270179 dualbound = 1454018.237386, lowerbound=1039342.237386, norm of subgrad 45.496005 stepsize= 1.000000 +dualbound = 1454452.273600, lowerbound=1044560.273600, norm of subgrad 1022.834431 dualbound = 1454452.273600, lowerbound=1044560.273600, norm of subgrad 45.431665 stepsize= 1.000000 +dualbound = 1454900.536463, lowerbound=1039869.536463, norm of subgrad 1020.514349 dualbound = 1454900.536463, lowerbound=1039869.536463, norm of subgrad 45.036239 stepsize= 1.000000 +dualbound = 1455350.590219, lowerbound=1039357.590219, norm of subgrad 1020.263981 dualbound = 1455350.590219, lowerbound=1039357.590219, norm of subgrad 45.067214 stepsize= 1.000000 +dualbound = 1455801.848912, lowerbound=1039711.848912, norm of subgrad 1020.454727 dualbound = 1455801.848912, lowerbound=1039711.848912, norm of subgrad 45.467117 stepsize= 1.000000 +dualbound = 1456261.793198, lowerbound=1043189.793198, norm of subgrad 1022.159378 dualbound = 1456261.793198, lowerbound=1043189.793198, norm of subgrad 45.606406 stepsize= 1.000000 +dualbound = 1456685.178816, lowerbound=1039595.178816, norm of subgrad 1020.416179 dualbound = 1456685.178816, lowerbound=1039595.178816, norm of subgrad 45.578346 stepsize= 1.000000 +dualbound = 1457121.931603, lowerbound=1041331.931603, norm of subgrad 1021.271723 dualbound = 1457121.931603, lowerbound=1041331.931603, norm of subgrad 45.833970 stepsize= 1.000000 +dualbound = 1457576.900847, lowerbound=1042884.900847, norm of subgrad 1022.022945 dualbound = 1457576.900847, lowerbound=1042884.900847, norm of subgrad 45.836331 stepsize= 1.000000 +dualbound = 1458031.025865, lowerbound=1039554.025865, norm of subgrad 1020.369554 dualbound = 1458031.025865, lowerbound=1039554.025865, norm of subgrad 45.322456 stepsize= 1.000000 +dualbound = 1458453.745291, lowerbound=1039309.745291, norm of subgrad 1020.273368 dualbound = 1458453.745291, lowerbound=1039309.745291, norm of subgrad 45.505158 stepsize= 1.000000 +dualbound = 1458934.247245, lowerbound=1043111.247245, norm of subgrad 1022.128293 dualbound = 1458934.247245, lowerbound=1043111.247245, norm of subgrad 45.994586 stepsize= 1.000000 +dualbound = 1459336.071369, lowerbound=1040791.071369, norm of subgrad 1021.005912 dualbound = 1459336.071369, lowerbound=1040791.071369, norm of subgrad 45.429331 stepsize= 1.000000 +dualbound = 1459791.289918, lowerbound=1043205.289918, norm of subgrad 1022.189459 dualbound = 1459791.289918, lowerbound=1043205.289918, norm of subgrad 46.056688 stepsize= 1.000000 +dualbound = 1460231.275555, lowerbound=1041113.275555, norm of subgrad 1021.157322 dualbound = 1460231.275555, lowerbound=1041113.275555, norm of subgrad 45.705422 stepsize= 1.000000 +dualbound = 1460674.422914, lowerbound=1042099.422914, norm of subgrad 1021.618531 dualbound = 1460674.422914, lowerbound=1042099.422914, norm of subgrad 45.256462 stepsize= 1.000000 +dualbound = 1461120.197665, lowerbound=1040262.197665, norm of subgrad 1020.708184 dualbound = 1461120.197665, lowerbound=1040262.197665, norm of subgrad 45.041922 stepsize= 1.000000 +dualbound = 1461590.217203, lowerbound=1041038.217203, norm of subgrad 1021.092169 dualbound = 1461590.217203, lowerbound=1041038.217203, norm of subgrad 45.398453 stepsize= 1.000000 +dualbound = 1462029.035971, lowerbound=1040745.035971, norm of subgrad 1020.956432 dualbound = 1462029.035971, lowerbound=1040745.035971, norm of subgrad 45.230728 stepsize= 1.000000 +dualbound = 1462479.935816, lowerbound=1042173.935816, norm of subgrad 1021.664297 dualbound = 1462479.935816, lowerbound=1042173.935816, norm of subgrad 45.551069 stepsize= 1.000000 +dualbound = 1462904.171414, lowerbound=1040308.171414, norm of subgrad 1020.753237 dualbound = 1462904.171414, lowerbound=1040308.171414, norm of subgrad 45.312643 stepsize= 1.000000 +dualbound = 1463362.890041, lowerbound=1043799.890041, norm of subgrad 1022.463638 dualbound = 1463362.890041, lowerbound=1043799.890041, norm of subgrad 45.724377 stepsize= 1.000000 +dualbound = 1463752.453340, lowerbound=1039662.453340, norm of subgrad 1020.458453 dualbound = 1463752.453340, lowerbound=1039662.453340, norm of subgrad 45.415452 stepsize= 1.000000 +dualbound = 1464254.050850, lowerbound=1043028.050850, norm of subgrad 1022.054818 dualbound = 1464254.050850, lowerbound=1043028.050850, norm of subgrad 45.492829 stepsize= 1.000000 +dualbound = 1464667.249333, lowerbound=1039628.249333, norm of subgrad 1020.446593 dualbound = 1464667.249333, lowerbound=1039628.249333, norm of subgrad 45.784260 stepsize= 1.000000 +dualbound = 1465100.562000, lowerbound=1043128.562000, norm of subgrad 1022.134806 dualbound = 1465100.562000, lowerbound=1043128.562000, norm of subgrad 45.434708 stepsize= 1.000000 +dualbound = 1465559.219394, lowerbound=1042260.219394, norm of subgrad 1021.681075 dualbound = 1465559.219394, lowerbound=1042260.219394, norm of subgrad 45.062816 stepsize= 1.000000 +dualbound = 1466031.846300, lowerbound=1042820.846300, norm of subgrad 1021.975952 dualbound = 1466031.846300, lowerbound=1042820.846300, norm of subgrad 45.679611 stepsize= 1.000000 +dualbound = 1466412.942816, lowerbound=1041268.942816, norm of subgrad 1021.245780 dualbound = 1466412.942816, lowerbound=1041268.942816, norm of subgrad 45.333172 stepsize= 1.000000 +dualbound = 1466886.267212, lowerbound=1041678.267212, norm of subgrad 1021.424626 dualbound = 1466886.267212, lowerbound=1041678.267212, norm of subgrad 45.862015 stepsize= 1.000000 +dualbound = 1467325.342770, lowerbound=1041067.342770, norm of subgrad 1021.102513 dualbound = 1467325.342770, lowerbound=1041067.342770, norm of subgrad 44.967494 stepsize= 1.000000 +dualbound = 1467779.709222, lowerbound=1041864.709222, norm of subgrad 1021.529593 dualbound = 1467779.709222, lowerbound=1041864.709222, norm of subgrad 45.960488 stepsize= 1.000000 +dualbound = 1468195.704126, lowerbound=1041472.704126, norm of subgrad 1021.307840 dualbound = 1468195.704126, lowerbound=1041472.704126, norm of subgrad 44.866412 stepsize= 1.000000 +dualbound = 1468671.455677, lowerbound=1043690.455677, norm of subgrad 1022.401318 dualbound = 1468671.455677, lowerbound=1043690.455677, norm of subgrad 45.713800 stepsize= 1.000000 +dualbound = 1469094.318716, lowerbound=1039568.318716, norm of subgrad 1020.369207 dualbound = 1469094.318716, lowerbound=1039568.318716, norm of subgrad 44.809185 stepsize= 1.000000 +dualbound = 1469552.905179, lowerbound=1044863.905179, norm of subgrad 1022.982358 dualbound = 1469552.905179, lowerbound=1044863.905179, norm of subgrad 45.690113 stepsize= 1.000000 +dualbound = 1469960.866924, lowerbound=1040895.866924, norm of subgrad 1021.055271 dualbound = 1469960.866924, lowerbound=1040895.866924, norm of subgrad 45.452852 stepsize= 1.000000 +dualbound = 1470439.421375, lowerbound=1041835.421375, norm of subgrad 1021.457499 dualbound = 1470439.421375, lowerbound=1041835.421375, norm of subgrad 44.928326 stepsize= 1.000000 +dualbound = 1470880.784989, lowerbound=1043467.784989, norm of subgrad 1022.278233 dualbound = 1470880.784989, lowerbound=1043467.784989, norm of subgrad 45.015149 stepsize= 1.000000 +dualbound = 1471310.352703, lowerbound=1043065.352703, norm of subgrad 1022.089699 dualbound = 1471310.352703, lowerbound=1043065.352703, norm of subgrad 45.072916 stepsize= 1.000000 +dualbound = 1471730.411042, lowerbound=1041606.411042, norm of subgrad 1021.407564 dualbound = 1471730.411042, lowerbound=1041606.411042, norm of subgrad 45.684334 stepsize= 1.000000 +dualbound = 1472175.713692, lowerbound=1043426.713692, norm of subgrad 1022.262546 dualbound = 1472175.713692, lowerbound=1043426.713692, norm of subgrad 45.158639 stepsize= 1.000000 +dualbound = 1472625.914271, lowerbound=1040611.914271, norm of subgrad 1020.872624 dualbound = 1472625.914271, lowerbound=1040611.914271, norm of subgrad 44.935516 stepsize= 1.000000 +dualbound = 1473042.140895, lowerbound=1044200.140895, norm of subgrad 1022.666681 dualbound = 1473042.140895, lowerbound=1044200.140895, norm of subgrad 45.422754 stepsize= 1.000000 +dualbound = 1473486.141619, lowerbound=1040784.141619, norm of subgrad 1020.982929 dualbound = 1473486.141619, lowerbound=1040784.141619, norm of subgrad 45.453281 stepsize= 1.000000 +dualbound = 1473917.059807, lowerbound=1043662.059807, norm of subgrad 1022.418241 dualbound = 1473917.059807, lowerbound=1043662.059807, norm of subgrad 45.912070 stepsize= 1.000000 +dualbound = 1474343.846457, lowerbound=1040588.846457, norm of subgrad 1020.875040 dualbound = 1474343.846457, lowerbound=1040588.846457, norm of subgrad 44.986516 stepsize= 1.000000 +dualbound = 1474812.134228, lowerbound=1042993.134228, norm of subgrad 1022.040182 dualbound = 1474812.134228, lowerbound=1042993.134228, norm of subgrad 45.180613 stepsize= 1.000000 +dualbound = 1475256.569271, lowerbound=1042407.569271, norm of subgrad 1021.764929 dualbound = 1475256.569271, lowerbound=1042407.569271, norm of subgrad 45.171175 stepsize= 1.000000 +dualbound = 1475679.562645, lowerbound=1045464.562645, norm of subgrad 1023.302772 dualbound = 1475679.562645, lowerbound=1045464.562645, norm of subgrad 45.901998 stepsize= 1.000000 +dualbound = 1476113.352518, lowerbound=1038202.352518, norm of subgrad 1019.720232 dualbound = 1476113.352518, lowerbound=1038202.352518, norm of subgrad 45.395924 stepsize= 1.000000 +dualbound = 1476575.566100, lowerbound=1046641.566100, norm of subgrad 1023.812759 dualbound = 1476575.566100, lowerbound=1046641.566100, norm of subgrad 44.868849 stepsize= 1.000000 +dualbound = 1477024.335386, lowerbound=1041058.335386, norm of subgrad 1021.106917 dualbound = 1477024.335386, lowerbound=1041058.335386, norm of subgrad 45.274378 stepsize= 1.000000 +dualbound = 1477411.637192, lowerbound=1044264.637192, norm of subgrad 1022.687458 dualbound = 1477411.637192, lowerbound=1044264.637192, norm of subgrad 44.858687 stepsize= 1.000000 +dualbound = 1477880.095032, lowerbound=1041972.095032, norm of subgrad 1021.545444 dualbound = 1477880.095032, lowerbound=1041972.095032, norm of subgrad 45.293022 stepsize= 1.000000 +dualbound = 1478297.161700, lowerbound=1044334.161700, norm of subgrad 1022.744915 dualbound = 1478297.161700, lowerbound=1044334.161700, norm of subgrad 45.717247 stepsize= 1.000000 +dualbound = 1478740.930307, lowerbound=1043755.930307, norm of subgrad 1022.410353 dualbound = 1478740.930307, lowerbound=1043755.930307, norm of subgrad 44.841595 stepsize= 1.000000 +dualbound = 1479194.324941, lowerbound=1043061.324941, norm of subgrad 1022.074520 dualbound = 1479194.324941, lowerbound=1043061.324941, norm of subgrad 45.037702 stepsize= 1.000000 +dualbound = 1479609.794906, lowerbound=1043158.794906, norm of subgrad 1022.153019 dualbound = 1479609.794906, lowerbound=1043158.794906, norm of subgrad 45.315229 stepsize= 1.000000 +dualbound = 1480032.855462, lowerbound=1042823.855462, norm of subgrad 1021.986231 dualbound = 1480032.855462, lowerbound=1042823.855462, norm of subgrad 45.332776 stepsize= 1.000000 +dualbound = 1480484.386826, lowerbound=1044097.386826, norm of subgrad 1022.589061 dualbound = 1480484.386826, lowerbound=1044097.386826, norm of subgrad 45.194373 stepsize= 1.000000 +dualbound = 1480929.408205, lowerbound=1043787.408205, norm of subgrad 1022.461935 dualbound = 1480929.408205, lowerbound=1043787.408205, norm of subgrad 45.672983 stepsize= 1.000000 +dualbound = 1481340.396374, lowerbound=1041994.396374, norm of subgrad 1021.557339 dualbound = 1481340.396374, lowerbound=1041994.396374, norm of subgrad 44.676483 stepsize= 1.000000 +dualbound = 1481810.699100, lowerbound=1042878.699100, norm of subgrad 1021.972455 dualbound = 1481810.699100, lowerbound=1042878.699100, norm of subgrad 44.936652 stepsize= 1.000000 +dualbound = 1482225.178197, lowerbound=1045028.178197, norm of subgrad 1023.067045 dualbound = 1482225.178197, lowerbound=1045028.178197, norm of subgrad 45.304294 stepsize= 1.000000 +dualbound = 1482670.581894, lowerbound=1042925.581894, norm of subgrad 1022.049696 dualbound = 1482670.581894, lowerbound=1042925.581894, norm of subgrad 45.884678 stepsize= 1.000000 +dualbound = 1483067.462463, lowerbound=1042941.462463, norm of subgrad 1022.049149 dualbound = 1483067.462463, lowerbound=1042941.462463, norm of subgrad 45.165037 stepsize= 1.000000 +dualbound = 1483536.428526, lowerbound=1044828.428526, norm of subgrad 1022.954754 dualbound = 1483536.428526, lowerbound=1044828.428526, norm of subgrad 45.573743 stepsize= 1.000000 +dualbound = 1483970.803074, lowerbound=1041935.803074, norm of subgrad 1021.501739 dualbound = 1483970.803074, lowerbound=1041935.803074, norm of subgrad 44.321265 stepsize= 1.000000 +dualbound = 1484396.896037, lowerbound=1045820.896037, norm of subgrad 1023.424104 dualbound = 1484396.896037, lowerbound=1045820.896037, norm of subgrad 44.744753 stepsize= 1.000000 +dualbound = 1484828.042007, lowerbound=1042873.042007, norm of subgrad 1021.991214 dualbound = 1484828.042007, lowerbound=1042873.042007, norm of subgrad 44.990510 stepsize= 1.000000 +dualbound = 1485248.828298, lowerbound=1046551.828298, norm of subgrad 1023.796283 dualbound = 1485248.828298, lowerbound=1046551.828298, norm of subgrad 45.030948 stepsize= 1.000000 +dualbound = 1485672.898293, lowerbound=1044923.898293, norm of subgrad 1022.985776 dualbound = 1485672.898293, lowerbound=1044923.898293, norm of subgrad 44.722142 stepsize= 1.000000 +dualbound = 1486101.401287, lowerbound=1045242.401287, norm of subgrad 1023.148279 dualbound = 1486101.401287, lowerbound=1045242.401287, norm of subgrad 44.927753 stepsize= 1.000000 +dualbound = 1486543.030984, lowerbound=1044868.030984, norm of subgrad 1022.985352 dualbound = 1486543.030984, lowerbound=1044868.030984, norm of subgrad 45.526143 stepsize= 1.000000 +dualbound = 1486970.063824, lowerbound=1044309.063824, norm of subgrad 1022.691578 dualbound = 1486970.063824, lowerbound=1044309.063824, norm of subgrad 44.900254 stepsize= 1.000000 +dualbound = 1487394.820110, lowerbound=1045284.820110, norm of subgrad 1023.161190 dualbound = 1487394.820110, lowerbound=1045284.820110, norm of subgrad 44.707452 stepsize= 1.000000 +dualbound = 1487823.983762, lowerbound=1047209.983762, norm of subgrad 1024.134261 dualbound = 1487823.983762, lowerbound=1047209.983762, norm of subgrad 45.499051 stepsize= 1.000000 +dualbound = 1488246.433673, lowerbound=1044138.433673, norm of subgrad 1022.618420 dualbound = 1488246.433673, lowerbound=1044138.433673, norm of subgrad 45.082701 stepsize= 1.000000 +dualbound = 1488680.621661, lowerbound=1048571.621661, norm of subgrad 1024.785159 dualbound = 1488680.621661, lowerbound=1048571.621661, norm of subgrad 45.245862 stepsize= 1.000000 +dualbound = 1489115.767660, lowerbound=1043977.767660, norm of subgrad 1022.529593 dualbound = 1489115.767660, lowerbound=1043977.767660, norm of subgrad 44.990510 stepsize= 1.000000 +dualbound = 1489553.225446, lowerbound=1044494.225446, norm of subgrad 1022.784545 dualbound = 1489553.225446, lowerbound=1044494.225446, norm of subgrad 45.071696 stepsize= 1.000000 +dualbound = 1489961.913761, lowerbound=1046551.913761, norm of subgrad 1023.764579 dualbound = 1489961.913761, lowerbound=1046551.913761, norm of subgrad 44.166597 stepsize= 1.000000 +dualbound = 1490419.557167, lowerbound=1047555.557167, norm of subgrad 1024.276114 dualbound = 1490419.557167, lowerbound=1047555.557167, norm of subgrad 45.206674 stepsize= 1.000000 +dualbound = 1490781.693120, lowerbound=1044250.693120, norm of subgrad 1022.707042 dualbound = 1490781.693120, lowerbound=1044250.693120, norm of subgrad 45.178933 stepsize= 1.000000 +dualbound = 1491217.484170, lowerbound=1048811.484170, norm of subgrad 1024.879741 dualbound = 1491217.484170, lowerbound=1048811.484170, norm of subgrad 44.752554 stepsize= 1.000000 +dualbound = 1491677.637852, lowerbound=1045366.637852, norm of subgrad 1023.173318 dualbound = 1491677.637852, lowerbound=1045366.637852, norm of subgrad 44.465196 stepsize= 1.000000 +dualbound = 1492105.144049, lowerbound=1045652.144049, norm of subgrad 1023.335792 dualbound = 1492105.144049, lowerbound=1045652.144049, norm of subgrad 44.626295 stepsize= 1.000000 +dualbound = 1492519.114006, lowerbound=1047318.114006, norm of subgrad 1024.187050 dualbound = 1492519.114006, lowerbound=1047318.114006, norm of subgrad 45.331776 stepsize= 1.000000 +dualbound = 1492895.983197, lowerbound=1045352.983197, norm of subgrad 1023.224307 dualbound = 1492895.983197, lowerbound=1045352.983197, norm of subgrad 44.853865 stepsize= 1.000000 +dualbound = 1493357.667877, lowerbound=1046910.667877, norm of subgrad 1023.969076 dualbound = 1493357.667877, lowerbound=1046910.667877, norm of subgrad 45.427796 stepsize= 1.000000 +dualbound = 1493778.509894, lowerbound=1045582.509894, norm of subgrad 1023.276360 dualbound = 1493778.509894, lowerbound=1045582.509894, norm of subgrad 43.964099 stepsize= 1.000000 +dualbound = 1494243.363958, lowerbound=1047094.363958, norm of subgrad 1024.039239 dualbound = 1494243.363958, lowerbound=1047094.363958, norm of subgrad 45.020596 stepsize= 1.000000 +dualbound = 1494650.983479, lowerbound=1045236.983479, norm of subgrad 1023.131460 dualbound = 1494650.983479, lowerbound=1045236.983479, norm of subgrad 44.369128 stepsize= 1.000000 +dualbound = 1495068.949805, lowerbound=1046800.949805, norm of subgrad 1023.915988 dualbound = 1495068.949805, lowerbound=1046800.949805, norm of subgrad 44.955159 stepsize= 1.000000 +dualbound = 1495480.147744, lowerbound=1047119.147744, norm of subgrad 1024.087959 dualbound = 1495480.147744, lowerbound=1047119.147744, norm of subgrad 45.257021 stepsize= 1.000000 +dualbound = 1495894.444500, lowerbound=1044630.444500, norm of subgrad 1022.868733 dualbound = 1495894.444500, lowerbound=1044630.444500, norm of subgrad 45.213900 stepsize= 1.000000 +dualbound = 1496308.103319, lowerbound=1047487.103319, norm of subgrad 1024.249044 dualbound = 1496308.103319, lowerbound=1047487.103319, norm of subgrad 44.862666 stepsize= 1.000000 +dualbound = 1496752.360169, lowerbound=1047160.360169, norm of subgrad 1024.087574 dualbound = 1496752.360169, lowerbound=1047160.360169, norm of subgrad 45.158132 stepsize= 1.000000 +dualbound = 1497166.398520, lowerbound=1047386.398520, norm of subgrad 1024.185236 dualbound = 1497166.398520, lowerbound=1047386.398520, norm of subgrad 44.531319 stepsize= 1.000000 +dualbound = 1497604.738195, lowerbound=1044275.738195, norm of subgrad 1022.668440 dualbound = 1497604.738195, lowerbound=1044275.738195, norm of subgrad 44.870254 stepsize= 1.000000 +dualbound = 1498003.960489, lowerbound=1047914.960489, norm of subgrad 1024.476432 dualbound = 1498003.960489, lowerbound=1047914.960489, norm of subgrad 45.124520 stepsize= 1.000000 +dualbound = 1498448.953344, lowerbound=1045538.953344, norm of subgrad 1023.287815 dualbound = 1498448.953344, lowerbound=1045538.953344, norm of subgrad 44.988808 stepsize= 1.000000 +dualbound = 1498864.927102, lowerbound=1049310.927102, norm of subgrad 1025.136053 dualbound = 1498864.927102, lowerbound=1049310.927102, norm of subgrad 44.821577 stepsize= 1.000000 +dualbound = 1499289.786489, lowerbound=1045548.786489, norm of subgrad 1023.307767 dualbound = 1499289.786489, lowerbound=1045548.786489, norm of subgrad 45.109416 stepsize= 1.000000 +dualbound = 1499708.674368, lowerbound=1049134.674368, norm of subgrad 1025.059839 dualbound = 1499708.674368, lowerbound=1049134.674368, norm of subgrad 45.076467 stepsize= 1.000000 +dualbound = 1500143.936095, lowerbound=1046530.936095, norm of subgrad 1023.756776 dualbound = 1500143.936095, lowerbound=1046530.936095, norm of subgrad 44.522598 stepsize= 1.000000 +dualbound = 1500560.050985, lowerbound=1045793.050985, norm of subgrad 1023.399263 dualbound = 1500560.050985, lowerbound=1045793.050985, norm of subgrad 44.374710 stepsize= 1.000000 +dualbound = 1500971.300652, lowerbound=1045860.300652, norm of subgrad 1023.417462 dualbound = 1500971.300652, lowerbound=1045860.300652, norm of subgrad 43.980105 stepsize= 1.000000 +dualbound = 1501413.141477, lowerbound=1047266.141477, norm of subgrad 1024.163142 dualbound = 1501413.141477, lowerbound=1047266.141477, norm of subgrad 45.671006 stepsize= 1.000000 +dualbound = 1501802.886179, lowerbound=1048033.886179, norm of subgrad 1024.532521 dualbound = 1501802.886179, lowerbound=1048033.886179, norm of subgrad 44.974934 stepsize= 1.000000 +dualbound = 1502263.501324, lowerbound=1046652.501324, norm of subgrad 1023.821030 dualbound = 1502263.501324, lowerbound=1046652.501324, norm of subgrad 44.917871 stepsize= 1.000000 +dualbound = 1502663.049152, lowerbound=1049235.049152, norm of subgrad 1025.090264 dualbound = 1502663.049152, lowerbound=1049235.049152, norm of subgrad 44.435884 stepsize= 1.000000 +dualbound = 1503099.223546, lowerbound=1048137.223546, norm of subgrad 1024.568311 dualbound = 1503099.223546, lowerbound=1048137.223546, norm of subgrad 45.157219 stepsize= 1.000000 +dualbound = 1503506.682273, lowerbound=1047546.682273, norm of subgrad 1024.282521 dualbound = 1503506.682273, lowerbound=1047546.682273, norm of subgrad 44.893861 stepsize= 1.000000 +dualbound = 1503922.039941, lowerbound=1047637.039941, norm of subgrad 1024.374463 dualbound = 1503922.039941, lowerbound=1047637.039941, norm of subgrad 46.058199 stepsize= 1.000000 +dualbound = 1504340.520325, lowerbound=1049242.520325, norm of subgrad 1025.090981 dualbound = 1504340.520325, lowerbound=1049242.520325, norm of subgrad 44.581166 stepsize= 1.000000 +dualbound = 1504776.209132, lowerbound=1043588.209132, norm of subgrad 1022.321969 dualbound = 1504776.209132, lowerbound=1043588.209132, norm of subgrad 44.605928 stepsize= 1.000000 +dualbound = 1505192.494770, lowerbound=1048467.494770, norm of subgrad 1024.714836 dualbound = 1505192.494770, lowerbound=1048467.494770, norm of subgrad 44.601408 stepsize= 1.000000 +dualbound = 1505611.250279, lowerbound=1047946.250279, norm of subgrad 1024.473645 dualbound = 1505611.250279, lowerbound=1047946.250279, norm of subgrad 44.930563 stepsize= 1.000000 +dualbound = 1506013.715415, lowerbound=1047060.715415, norm of subgrad 1024.041852 dualbound = 1506013.715415, lowerbound=1047060.715415, norm of subgrad 44.760084 stepsize= 1.000000 +dualbound = 1506444.214583, lowerbound=1046923.214583, norm of subgrad 1023.989363 dualbound = 1506444.214583, lowerbound=1046923.214583, norm of subgrad 45.403735 stepsize= 1.000000 +dualbound = 1506837.825524, lowerbound=1048968.825524, norm of subgrad 1024.974549 dualbound = 1506837.825524, lowerbound=1048968.825524, norm of subgrad 44.694641 stepsize= 1.000000 +dualbound = 1507307.596203, lowerbound=1047040.596203, norm of subgrad 1024.033494 dualbound = 1507307.596203, lowerbound=1047040.596203, norm of subgrad 45.538672 stepsize= 1.000000 +dualbound = 1507686.766516, lowerbound=1048861.766516, norm of subgrad 1024.943299 dualbound = 1507686.766516, lowerbound=1048861.766516, norm of subgrad 45.013002 stepsize= 1.000000 +dualbound = 1508114.379312, lowerbound=1048103.379312, norm of subgrad 1024.562043 dualbound = 1508114.379312, lowerbound=1048103.379312, norm of subgrad 45.294733 stepsize= 1.000000 +dualbound = 1508555.952153, lowerbound=1047734.952153, norm of subgrad 1024.329025 dualbound = 1508555.952153, lowerbound=1047734.952153, norm of subgrad 44.233164 stepsize= 1.000000 +dualbound = 1508980.271988, lowerbound=1049458.271988, norm of subgrad 1025.222060 dualbound = 1508980.271988, lowerbound=1049458.271988, norm of subgrad 45.236267 stepsize= 1.000000 +dualbound = 1509375.628393, lowerbound=1048447.628393, norm of subgrad 1024.708558 dualbound = 1509375.628393, lowerbound=1048447.628393, norm of subgrad 44.444982 stepsize= 1.000000 +dualbound = 1509784.816058, lowerbound=1047336.816058, norm of subgrad 1024.201062 dualbound = 1509784.816058, lowerbound=1047336.816058, norm of subgrad 45.389290 stepsize= 1.000000 +dualbound = 1510207.662536, lowerbound=1047965.662536, norm of subgrad 1024.462621 dualbound = 1510207.662536, lowerbound=1047965.662536, norm of subgrad 44.506701 stepsize= 1.000000 +dualbound = 1510673.144404, lowerbound=1048201.144404, norm of subgrad 1024.578520 dualbound = 1510673.144404, lowerbound=1048201.144404, norm of subgrad 45.005354 stepsize= 1.000000 +dualbound = 1511066.405282, lowerbound=1049712.405282, norm of subgrad 1025.351357 dualbound = 1511066.405282, lowerbound=1049712.405282, norm of subgrad 45.014008 stepsize= 1.000000 +dualbound = 1511491.376592, lowerbound=1048166.376592, norm of subgrad 1024.568874 dualbound = 1511491.376592, lowerbound=1048166.376592, norm of subgrad 44.721039 stepsize= 1.000000 +dualbound = 1511904.785041, lowerbound=1049623.785041, norm of subgrad 1025.272542 dualbound = 1511904.785041, lowerbound=1049623.785041, norm of subgrad 44.423062 stepsize= 1.000000 +dualbound = 1512353.259133, lowerbound=1047699.259133, norm of subgrad 1024.356998 dualbound = 1512353.259133, lowerbound=1047699.259133, norm of subgrad 45.348364 stepsize= 1.000000 +dualbound = 1512710.144539, lowerbound=1049843.144539, norm of subgrad 1025.428761 dualbound = 1512710.144539, lowerbound=1049843.144539, norm of subgrad 44.920879 stepsize= 1.000000 +dualbound = 1513136.973255, lowerbound=1047591.973255, norm of subgrad 1024.285592 dualbound = 1513136.973255, lowerbound=1047591.973255, norm of subgrad 44.674699 stepsize= 1.000000 +dualbound = 1513595.996488, lowerbound=1050585.996488, norm of subgrad 1025.757280 dualbound = 1513595.996488, lowerbound=1050585.996488, norm of subgrad 45.288224 stepsize= 1.000000 +dualbound = 1513979.657226, lowerbound=1049284.657225, norm of subgrad 1025.136409 dualbound = 1513979.657226, lowerbound=1049284.657225, norm of subgrad 44.762269 stepsize= 1.000000 +dualbound = 1514405.918316, lowerbound=1049898.918316, norm of subgrad 1025.434015 dualbound = 1514405.918316, lowerbound=1049898.918316, norm of subgrad 45.191383 stepsize= 1.000000 +dualbound = 1514780.094607, lowerbound=1049031.094607, norm of subgrad 1025.008827 dualbound = 1514780.094607, lowerbound=1049031.094607, norm of subgrad 44.566538 stepsize= 1.000000 +dualbound = 1515249.570003, lowerbound=1050258.570003, norm of subgrad 1025.598640 dualbound = 1515249.570003, lowerbound=1050258.570003, norm of subgrad 45.425493 stepsize= 1.000000 +dualbound = 1515650.850498, lowerbound=1049194.850498, norm of subgrad 1025.062364 dualbound = 1515650.850498, lowerbound=1049194.850498, norm of subgrad 44.263761 stepsize= 1.000000 +dualbound = 1516066.503623, lowerbound=1050032.503623, norm of subgrad 1025.482084 dualbound = 1516066.503623, lowerbound=1050032.503623, norm of subgrad 44.683925 stepsize= 1.000000 +dualbound = 1516472.383009, lowerbound=1047930.383009, norm of subgrad 1024.461997 dualbound = 1516472.383009, lowerbound=1047930.383009, norm of subgrad 44.697644 stepsize= 1.000000 +dualbound = 1516875.790918, lowerbound=1051154.790918, norm of subgrad 1026.016954 dualbound = 1516875.790918, lowerbound=1051154.790918, norm of subgrad 44.265200 stepsize= 1.000000 +dualbound = 1517307.744546, lowerbound=1048561.744546, norm of subgrad 1024.747161 dualbound = 1517307.744546, lowerbound=1048561.744546, norm of subgrad 44.462947 stepsize= 1.000000 +dualbound = 1517719.011341, lowerbound=1047025.011341, norm of subgrad 1023.995123 dualbound = 1517719.011341, lowerbound=1047025.011341, norm of subgrad 44.184463 stepsize= 1.000000 +dualbound = 1518161.994976, lowerbound=1053019.994976, norm of subgrad 1026.930375 dualbound = 1518161.994976, lowerbound=1053019.994976, norm of subgrad 44.821687 stepsize= 1.000000 +dualbound = 1518534.359526, lowerbound=1048518.359526, norm of subgrad 1024.750389 dualbound = 1518534.359526, lowerbound=1048518.359526, norm of subgrad 44.354983 stepsize= 1.000000 +dualbound = 1518971.407571, lowerbound=1051590.407571, norm of subgrad 1026.226782 dualbound = 1518971.407571, lowerbound=1051590.407571, norm of subgrad 44.587532 stepsize= 1.000000 +dualbound = 1519395.810702, lowerbound=1049887.810702, norm of subgrad 1025.415433 dualbound = 1519395.810702, lowerbound=1049887.810702, norm of subgrad 44.870961 stepsize= 1.000000 +dualbound = 1519778.762116, lowerbound=1049600.762116, norm of subgrad 1025.260826 dualbound = 1519778.762116, lowerbound=1049600.762116, norm of subgrad 44.067578 stepsize= 1.000000 +dualbound = 1520184.941651, lowerbound=1048869.941651, norm of subgrad 1024.943872 dualbound = 1520184.941651, lowerbound=1048869.941651, norm of subgrad 45.234716 stepsize= 1.000000 +dualbound = 1520571.334146, lowerbound=1051240.334146, norm of subgrad 1026.087878 dualbound = 1520571.334146, lowerbound=1051240.334146, norm of subgrad 44.748100 stepsize= 1.000000 +dualbound = 1521007.859289, lowerbound=1049796.859289, norm of subgrad 1025.349628 dualbound = 1521007.859289, lowerbound=1049796.859289, norm of subgrad 44.514325 stepsize= 1.000000 +dualbound = 1521426.917436, lowerbound=1048279.917436, norm of subgrad 1024.630625 dualbound = 1521426.917436, lowerbound=1048279.917436, norm of subgrad 44.800203 stepsize= 1.000000 +dualbound = 1521865.323073, lowerbound=1052131.323073, norm of subgrad 1026.508316 dualbound = 1521865.323073, lowerbound=1052131.323073, norm of subgrad 45.015615 stepsize= 1.000000 +dualbound = 1522246.111141, lowerbound=1048712.111140, norm of subgrad 1024.837602 dualbound = 1522246.111141, lowerbound=1048712.111140, norm of subgrad 44.280787 stepsize= 1.000000 +dualbound = 1522651.168744, lowerbound=1049727.168744, norm of subgrad 1025.349779 dualbound = 1522651.168744, lowerbound=1049727.168744, norm of subgrad 44.945051 stepsize= 1.000000 +dualbound = 1523061.422381, lowerbound=1051601.422381, norm of subgrad 1026.270151 dualbound = 1523061.422381, lowerbound=1051601.422381, norm of subgrad 45.158096 stepsize= 1.000000 +dualbound = 1523452.712676, lowerbound=1048823.712676, norm of subgrad 1024.903758 dualbound = 1523452.712676, lowerbound=1048823.712676, norm of subgrad 44.668672 stepsize= 1.000000 +dualbound = 1523879.283825, lowerbound=1050803.283825, norm of subgrad 1025.858316 dualbound = 1523879.283825, lowerbound=1050803.283825, norm of subgrad 44.817085 stepsize= 1.000000 +dualbound = 1524301.677409, lowerbound=1050982.677409, norm of subgrad 1025.980349 dualbound = 1524301.677409, lowerbound=1050982.677409, norm of subgrad 45.556488 stepsize= 1.000000 +dualbound = 1524674.798739, lowerbound=1049719.798739, norm of subgrad 1025.373492 dualbound = 1524674.798739, lowerbound=1049719.798739, norm of subgrad 45.211960 stepsize= 1.000000 +dualbound = 1525113.583481, lowerbound=1052819.583481, norm of subgrad 1026.805524 dualbound = 1525113.583481, lowerbound=1052819.583481, norm of subgrad 44.145042 stepsize= 1.000000 +dualbound = 1525562.741790, lowerbound=1048528.741790, norm of subgrad 1024.736426 dualbound = 1525562.741790, lowerbound=1048528.741790, norm of subgrad 44.778994 stepsize= 1.000000 +dualbound = 1525947.606538, lowerbound=1054384.606538, norm of subgrad 1027.606737 dualbound = 1525947.606538, lowerbound=1054384.606538, norm of subgrad 44.450700 stepsize= 1.000000 +dualbound = 1526349.165576, lowerbound=1050068.165576, norm of subgrad 1025.517999 dualbound = 1526349.165576, lowerbound=1050068.165576, norm of subgrad 44.950629 stepsize= 1.000000 +dualbound = 1526770.721159, lowerbound=1048888.721159, norm of subgrad 1024.914982 dualbound = 1526770.721159, lowerbound=1048888.721159, norm of subgrad 44.537126 stepsize= 1.000000 +dualbound = 1527178.612086, lowerbound=1049804.612086, norm of subgrad 1025.364136 dualbound = 1527178.612086, lowerbound=1049804.612086, norm of subgrad 44.439745 stepsize= 1.000000 +dualbound = 1527593.651426, lowerbound=1049264.651426, norm of subgrad 1025.108117 dualbound = 1527593.651426, lowerbound=1049264.651426, norm of subgrad 44.688246 stepsize= 1.000000 +dualbound = 1528020.648798, lowerbound=1050417.648798, norm of subgrad 1025.686916 dualbound = 1528020.648798, lowerbound=1050417.648798, norm of subgrad 45.199528 stepsize= 1.000000 +dualbound = 1528390.505850, lowerbound=1051886.505850, norm of subgrad 1026.407086 dualbound = 1528390.505850, lowerbound=1051886.505850, norm of subgrad 44.663823 stepsize= 1.000000 +dualbound = 1528828.119881, lowerbound=1051082.119881, norm of subgrad 1025.983489 dualbound = 1528828.119881, lowerbound=1051082.119881, norm of subgrad 44.694676 stepsize= 1.000000 +dualbound = 1529210.869551, lowerbound=1051152.869551, norm of subgrad 1026.033074 dualbound = 1529210.869551, lowerbound=1051152.869551, norm of subgrad 44.426903 stepsize= 1.000000 +dualbound = 1529636.738082, lowerbound=1049243.738082, norm of subgrad 1025.093527 dualbound = 1529636.738082, lowerbound=1049243.738082, norm of subgrad 44.708708 stepsize= 1.000000 +dualbound = 1530041.213485, lowerbound=1052977.213485, norm of subgrad 1026.915388 dualbound = 1530041.213485, lowerbound=1052977.213485, norm of subgrad 44.524998 stepsize= 1.000000 +dualbound = 1530461.840264, lowerbound=1048232.840264, norm of subgrad 1024.607164 dualbound = 1530461.840264, lowerbound=1048232.840264, norm of subgrad 44.806548 stepsize= 1.000000 +dualbound = 1530854.378220, lowerbound=1053155.378220, norm of subgrad 1027.018198 dualbound = 1530854.378220, lowerbound=1053155.378220, norm of subgrad 44.760898 stepsize= 1.000000 +dualbound = 1531262.313434, lowerbound=1051673.313434, norm of subgrad 1026.282765 dualbound = 1531262.313434, lowerbound=1051673.313434, norm of subgrad 44.619897 stepsize= 1.000000 +dualbound = 1531676.870070, lowerbound=1052157.870070, norm of subgrad 1026.511992 dualbound = 1531676.870070, lowerbound=1052157.870070, norm of subgrad 44.537138 stepsize= 1.000000 +dualbound = 1532076.903617, lowerbound=1050329.903617, norm of subgrad 1025.643166 dualbound = 1532076.903617, lowerbound=1050329.903617, norm of subgrad 44.877985 stepsize= 1.000000 +dualbound = 1532495.496806, lowerbound=1050516.496806, norm of subgrad 1025.730226 dualbound = 1532495.496806, lowerbound=1050516.496806, norm of subgrad 44.995480 stepsize= 1.000000 +dualbound = 1532888.110689, lowerbound=1052079.110689, norm of subgrad 1026.504316 dualbound = 1532888.110689, lowerbound=1052079.110689, norm of subgrad 44.995710 stepsize= 1.000000 +dualbound = 1533308.154447, lowerbound=1050669.154447, norm of subgrad 1025.784653 dualbound = 1533308.154447, lowerbound=1050669.154447, norm of subgrad 44.553830 stepsize= 1.000000 +dualbound = 1533724.850951, lowerbound=1049177.850951, norm of subgrad 1025.071632 dualbound = 1533724.850951, lowerbound=1049177.850951, norm of subgrad 44.840791 stepsize= 1.000000 +dualbound = 1534134.923056, lowerbound=1053822.923056, norm of subgrad 1027.297875 dualbound = 1534134.923056, lowerbound=1053822.923056, norm of subgrad 43.909818 stepsize= 1.000000 +dualbound = 1534544.786776, lowerbound=1050948.786776, norm of subgrad 1025.909249 dualbound = 1534544.786776, lowerbound=1050948.786776, norm of subgrad 44.168583 stepsize= 1.000000 +dualbound = 1534941.031253, lowerbound=1051057.031253, norm of subgrad 1025.971262 dualbound = 1534941.031253, lowerbound=1051057.031253, norm of subgrad 44.229453 stepsize= 1.000000 +dualbound = 1535344.080572, lowerbound=1050026.080572, norm of subgrad 1025.481877 dualbound = 1535344.080572, lowerbound=1050026.080572, norm of subgrad 44.609969 stepsize= 1.000000 +dualbound = 1535743.804168, lowerbound=1051769.804168, norm of subgrad 1026.366311 dualbound = 1535743.804168, lowerbound=1051769.804168, norm of subgrad 45.362138 stepsize= 1.000000 +dualbound = 1536162.481440, lowerbound=1052806.481440, norm of subgrad 1026.825439 dualbound = 1536162.481440, lowerbound=1052806.481440, norm of subgrad 44.527264 stepsize= 1.000000 +dualbound = 1536580.811499, lowerbound=1050908.811499, norm of subgrad 1025.915109 dualbound = 1536580.811499, lowerbound=1050908.811499, norm of subgrad 44.847855 stepsize= 1.000000 +dualbound = 1536968.242317, lowerbound=1051295.242317, norm of subgrad 1026.127303 dualbound = 1536968.242317, lowerbound=1051295.242317, norm of subgrad 45.049204 stepsize= 1.000000 +dualbound = 1537374.042589, lowerbound=1050834.042589, norm of subgrad 1025.900601 dualbound = 1537374.042589, lowerbound=1050834.042589, norm of subgrad 45.208409 stepsize= 1.000000 +dualbound = 1537786.805620, lowerbound=1051352.805620, norm of subgrad 1026.117832 dualbound = 1537786.805620, lowerbound=1051352.805620, norm of subgrad 44.472048 stepsize= 1.000000 +dualbound = 1538206.787491, lowerbound=1053427.787491, norm of subgrad 1027.142048 dualbound = 1538206.787491, lowerbound=1053427.787491, norm of subgrad 44.866267 stepsize= 1.000000 +dualbound = 1538582.082696, lowerbound=1051999.082696, norm of subgrad 1026.462899 dualbound = 1538582.082696, lowerbound=1051999.082696, norm of subgrad 44.747013 stepsize= 1.000000 +dualbound = 1539030.586091, lowerbound=1051289.586091, norm of subgrad 1026.085565 dualbound = 1539030.586091, lowerbound=1051289.586091, norm of subgrad 44.838637 stepsize= 1.000000 +dualbound = 1539422.631946, lowerbound=1051983.631946, norm of subgrad 1026.430042 dualbound = 1539422.631946, lowerbound=1051983.631946, norm of subgrad 44.351391 stepsize= 1.000000 +dualbound = 1539836.556836, lowerbound=1050274.556836, norm of subgrad 1025.606434 dualbound = 1539836.556836, lowerbound=1050274.556836, norm of subgrad 44.809875 stepsize= 1.000000 +dualbound = 1540247.413172, lowerbound=1053081.413172, norm of subgrad 1026.967094 dualbound = 1540247.413172, lowerbound=1053081.413172, norm of subgrad 44.619013 stepsize= 1.000000 +dualbound = 1540663.830448, lowerbound=1053383.830448, norm of subgrad 1027.127952 dualbound = 1540663.830448, lowerbound=1053383.830448, norm of subgrad 44.993525 stepsize= 1.000000 +dualbound = 1541035.591750, lowerbound=1049116.591750, norm of subgrad 1025.048580 dualbound = 1541035.591750, lowerbound=1049116.591750, norm of subgrad 44.494509 stepsize= 1.000000 +dualbound = 1541465.463558, lowerbound=1055565.463558, norm of subgrad 1028.173363 dualbound = 1541465.463558, lowerbound=1055565.463558, norm of subgrad 44.775795 stepsize= 1.000000 +dualbound = 1541844.553580, lowerbound=1049728.553580, norm of subgrad 1025.358744 dualbound = 1541844.553580, lowerbound=1049728.553580, norm of subgrad 44.845178 stepsize= 1.000000 +dualbound = 1542247.943790, lowerbound=1052819.943790, norm of subgrad 1026.860723 dualbound = 1542247.943790, lowerbound=1052819.943790, norm of subgrad 45.015444 stepsize= 1.000000 +dualbound = 1542668.593573, lowerbound=1051647.593573, norm of subgrad 1026.303851 dualbound = 1542668.593573, lowerbound=1051647.593573, norm of subgrad 45.526364 stepsize= 1.000000 +dualbound = 1543049.671221, lowerbound=1053083.671221, norm of subgrad 1026.963325 dualbound = 1543049.671221, lowerbound=1053083.671221, norm of subgrad 44.171005 stepsize= 1.000000 +dualbound = 1543485.073287, lowerbound=1050236.073287, norm of subgrad 1025.567196 dualbound = 1543485.073287, lowerbound=1050236.073287, norm of subgrad 44.580288 stepsize= 1.000000 +dualbound = 1543904.755801, lowerbound=1050945.755801, norm of subgrad 1025.937501 dualbound = 1543904.755801, lowerbound=1050945.755801, norm of subgrad 44.963124 stepsize= 1.000000 +dualbound = 1544273.053093, lowerbound=1053727.053093, norm of subgrad 1027.296478 dualbound = 1544273.053093, lowerbound=1053727.053093, norm of subgrad 44.489294 stepsize= 1.000000 +dualbound = 1544719.493143, lowerbound=1053580.493143, norm of subgrad 1027.222222 dualbound = 1544719.493143, lowerbound=1053580.493143, norm of subgrad 45.292826 stepsize= 1.000000 +dualbound = 1545095.591962, lowerbound=1052192.591962, norm of subgrad 1026.516728 dualbound = 1545095.591962, lowerbound=1052192.591962, norm of subgrad 43.818932 stepsize= 1.000000 +dualbound = 1545509.715716, lowerbound=1053020.715716, norm of subgrad 1026.934134 dualbound = 1545509.715716, lowerbound=1053020.715716, norm of subgrad 44.577166 stepsize= 1.000000 +dualbound = 1545915.832792, lowerbound=1050061.832792, norm of subgrad 1025.480781 dualbound = 1545915.832792, lowerbound=1050061.832792, norm of subgrad 44.216706 stepsize= 1.000000 +dualbound = 1546335.201214, lowerbound=1054632.201214, norm of subgrad 1027.715525 dualbound = 1546335.201214, lowerbound=1054632.201214, norm of subgrad 44.568693 stepsize= 1.000000 +dualbound = 1546723.479134, lowerbound=1052480.479134, norm of subgrad 1026.668632 dualbound = 1546723.479134, lowerbound=1052480.479134, norm of subgrad 44.229831 stepsize= 1.000000 +dualbound = 1547109.274309, lowerbound=1054252.274309, norm of subgrad 1027.557431 dualbound = 1547109.274309, lowerbound=1054252.274309, norm of subgrad 44.808428 stepsize= 1.000000 +dualbound = 1547528.310883, lowerbound=1050356.310883, norm of subgrad 1025.677489 dualbound = 1547528.310883, lowerbound=1050356.310883, norm of subgrad 45.574517 stepsize= 1.000000 +dualbound = 1547907.013589, lowerbound=1053521.013589, norm of subgrad 1027.197164 dualbound = 1547907.013589, lowerbound=1053521.013589, norm of subgrad 44.628497 stepsize= 1.000000 +dualbound = 1548350.517678, lowerbound=1052516.517678, norm of subgrad 1026.663293 dualbound = 1548350.517678, lowerbound=1052516.517678, norm of subgrad 44.322727 stepsize= 1.000000 +dualbound = 1548763.471565, lowerbound=1050339.471565, norm of subgrad 1025.633693 dualbound = 1548763.471565, lowerbound=1050339.471565, norm of subgrad 44.698477 stepsize= 1.000000 +dualbound = 1549164.068298, lowerbound=1055449.068298, norm of subgrad 1028.090982 dualbound = 1549164.068298, lowerbound=1055449.068298, norm of subgrad 43.847426 stepsize= 1.000000 +dualbound = 1549571.581002, lowerbound=1051087.581002, norm of subgrad 1025.992486 dualbound = 1549571.581002, lowerbound=1051087.581002, norm of subgrad 44.502952 stepsize= 1.000000 +dualbound = 1549973.524159, lowerbound=1053259.524159, norm of subgrad 1027.072307 dualbound = 1549973.524159, lowerbound=1053259.524159, norm of subgrad 44.943778 stepsize= 1.000000 +dualbound = 1550349.555569, lowerbound=1053649.555569, norm of subgrad 1027.254864 dualbound = 1550349.555569, lowerbound=1053649.555569, norm of subgrad 44.486306 stepsize= 1.000000 +dualbound = 1550761.524456, lowerbound=1052817.524456, norm of subgrad 1026.851267 dualbound = 1550761.524456, lowerbound=1052817.524456, norm of subgrad 44.921809 stepsize= 1.000000 +dualbound = 1551168.335418, lowerbound=1050903.335418, norm of subgrad 1025.910978 dualbound = 1551168.335418, lowerbound=1050903.335418, norm of subgrad 44.685691 stepsize= 1.000000 +dualbound = 1551575.124987, lowerbound=1053647.124987, norm of subgrad 1027.250274 dualbound = 1551575.124987, lowerbound=1053647.124987, norm of subgrad 44.752537 stepsize= 1.000000 +dualbound = 1551983.902505, lowerbound=1053110.902505, norm of subgrad 1026.997031 dualbound = 1551983.902505, lowerbound=1053110.902505, norm of subgrad 44.953059 stepsize= 1.000000 +dualbound = 1552357.352603, lowerbound=1052029.352603, norm of subgrad 1026.507843 dualbound = 1552357.352603, lowerbound=1052029.352603, norm of subgrad 45.414206 stepsize= 1.000000 +dualbound = 1552750.485948, lowerbound=1054764.485948, norm of subgrad 1027.836313 dualbound = 1552750.485948, lowerbound=1054764.485948, norm of subgrad 45.564606 stepsize= 1.000000 +dualbound = 1553158.293950, lowerbound=1051452.293950, norm of subgrad 1026.216495 dualbound = 1553158.293950, lowerbound=1051452.293950, norm of subgrad 45.561036 stepsize= 1.000000 +dualbound = 1553567.728851, lowerbound=1052203.728851, norm of subgrad 1026.535303 dualbound = 1553567.728851, lowerbound=1052203.728851, norm of subgrad 44.502077 stepsize= 1.000000 +dualbound = 1553994.729010, lowerbound=1053566.729010, norm of subgrad 1027.179015 dualbound = 1553994.729010, lowerbound=1053566.729010, norm of subgrad 44.237995 stepsize= 1.000000 +dualbound = 1554380.941114, lowerbound=1054314.941114, norm of subgrad 1027.578192 dualbound = 1554380.941114, lowerbound=1054314.941114, norm of subgrad 44.589372 stepsize= 1.000000 +dualbound = 1554781.933165, lowerbound=1052378.933165, norm of subgrad 1026.636222 dualbound = 1554781.933165, lowerbound=1052378.933165, norm of subgrad 44.765970 stepsize= 1.000000 +dualbound = 1555191.238275, lowerbound=1056868.238275, norm of subgrad 1028.837324 dualbound = 1555191.238275, lowerbound=1056868.238275, norm of subgrad 45.247156 stepsize= 1.000000 +dualbound = 1555579.687433, lowerbound=1052968.687433, norm of subgrad 1026.943858 dualbound = 1555579.687433, lowerbound=1052968.687433, norm of subgrad 45.093782 stepsize= 1.000000 +dualbound = 1555993.084052, lowerbound=1050346.084052, norm of subgrad 1025.616441 dualbound = 1555993.084052, lowerbound=1050346.084052, norm of subgrad 44.231172 stepsize= 1.000000 +dualbound = 1556417.762789, lowerbound=1052287.762789, norm of subgrad 1026.559186 dualbound = 1556417.762789, lowerbound=1052287.762789, norm of subgrad 44.279552 stepsize= 1.000000 +dualbound = 1556801.022949, lowerbound=1053465.022949, norm of subgrad 1027.142163 dualbound = 1556801.022949, lowerbound=1053465.022949, norm of subgrad 44.037032 stepsize= 1.000000 +dualbound = 1557220.899274, lowerbound=1053132.899274, norm of subgrad 1026.979990 dualbound = 1557220.899274, lowerbound=1053132.899274, norm of subgrad 44.439581 stepsize= 1.000000 +dualbound = 1557611.414190, lowerbound=1052548.414190, norm of subgrad 1026.719735 dualbound = 1557611.414190, lowerbound=1052548.414190, norm of subgrad 44.671187 stepsize= 1.000000 +dualbound = 1558005.263828, lowerbound=1055755.263828, norm of subgrad 1028.296292 dualbound = 1558005.263828, lowerbound=1055755.263828, norm of subgrad 45.076043 stepsize= 1.000000 +dualbound = 1558409.884959, lowerbound=1051297.884959, norm of subgrad 1026.121282 dualbound = 1558409.884959, lowerbound=1051297.884959, norm of subgrad 45.073508 stepsize= 1.000000 +dualbound = 1558825.178251, lowerbound=1056016.178251, norm of subgrad 1028.385229 dualbound = 1558825.178251, lowerbound=1056016.178251, norm of subgrad 44.444272 stepsize= 1.000000 +dualbound = 1559246.800077, lowerbound=1055846.800077, norm of subgrad 1028.278075 dualbound = 1559246.800077, lowerbound=1055846.800077, norm of subgrad 43.938842 stepsize= 1.000000 +dualbound = 1559640.379672, lowerbound=1050846.379672, norm of subgrad 1025.854951 dualbound = 1559640.379672, lowerbound=1050846.379672, norm of subgrad 43.881427 stepsize= 1.000000 +dualbound = 1560025.442153, lowerbound=1055752.442153, norm of subgrad 1028.262341 dualbound = 1560025.442153, lowerbound=1055752.442153, norm of subgrad 44.227395 stepsize= 1.000000 +dualbound = 1560444.483216, lowerbound=1053696.483216, norm of subgrad 1027.263103 dualbound = 1560444.483216, lowerbound=1053696.483216, norm of subgrad 44.632287 stepsize= 1.000000 +dualbound = 1560822.559520, lowerbound=1055210.559520, norm of subgrad 1028.045505 dualbound = 1560822.559520, lowerbound=1055210.559520, norm of subgrad 45.222520 stepsize= 1.000000 +dualbound = 1561194.588728, lowerbound=1052335.588728, norm of subgrad 1026.617060 dualbound = 1561194.588728, lowerbound=1052335.588728, norm of subgrad 44.486281 stepsize= 1.000000 +dualbound = 1561621.809978, lowerbound=1053383.809978, norm of subgrad 1027.133784 dualbound = 1561621.809978, lowerbound=1053383.809978, norm of subgrad 45.246229 stepsize= 1.000000 +dualbound = 1562022.440308, lowerbound=1053525.440308, norm of subgrad 1027.227550 dualbound = 1562022.440308, lowerbound=1053525.440308, norm of subgrad 45.515166 stepsize= 1.000000 +dualbound = 1562425.012093, lowerbound=1056428.012093, norm of subgrad 1028.608775 dualbound = 1562425.012093, lowerbound=1056428.012093, norm of subgrad 44.839400 stepsize= 1.000000 +dualbound = 1562842.022257, lowerbound=1051694.022257, norm of subgrad 1026.305034 dualbound = 1562842.022257, lowerbound=1051694.022257, norm of subgrad 45.000113 stepsize= 1.000000 +dualbound = 1563243.444272, lowerbound=1055284.444272, norm of subgrad 1028.051771 dualbound = 1563243.444272, lowerbound=1055284.444272, norm of subgrad 44.804263 stepsize= 1.000000 +dualbound = 1563653.242553, lowerbound=1053919.242553, norm of subgrad 1027.370061 dualbound = 1563653.242553, lowerbound=1053919.242553, norm of subgrad 44.494924 stepsize= 1.000000 +dualbound = 1564019.529024, lowerbound=1056287.529024, norm of subgrad 1028.538540 dualbound = 1564019.529024, lowerbound=1056287.529024, norm of subgrad 44.387909 stepsize= 1.000000 +dualbound = 1564438.545589, lowerbound=1053378.545589, norm of subgrad 1027.141444 dualbound = 1564438.545589, lowerbound=1053378.545589, norm of subgrad 45.387405 stepsize= 1.000000 +dualbound = 1564839.238412, lowerbound=1052774.238412, norm of subgrad 1026.845285 dualbound = 1564839.238412, lowerbound=1052774.238412, norm of subgrad 45.140811 stepsize= 1.000000 +dualbound = 1565231.223830, lowerbound=1054513.223830, norm of subgrad 1027.668830 dualbound = 1565231.223830, lowerbound=1054513.223830, norm of subgrad 44.519495 stepsize= 1.000000 +dualbound = 1565660.851182, lowerbound=1054663.851182, norm of subgrad 1027.745032 dualbound = 1565660.851182, lowerbound=1054663.851182, norm of subgrad 45.006970 stepsize= 1.000000 +dualbound = 1566051.845006, lowerbound=1052482.845006, norm of subgrad 1026.688777 dualbound = 1566051.845006, lowerbound=1052482.845006, norm of subgrad 44.698924 stepsize= 1.000000 +dualbound = 1566452.761808, lowerbound=1056505.761808, norm of subgrad 1028.611570 dualbound = 1566452.761808, lowerbound=1056505.761808, norm of subgrad 44.010417 stepsize= 1.000000 +dualbound = 1566858.833212, lowerbound=1052264.833212, norm of subgrad 1026.598672 dualbound = 1566858.833212, lowerbound=1052264.833212, norm of subgrad 45.233521 stepsize= 1.000000 +dualbound = 1567248.207751, lowerbound=1054801.207751, norm of subgrad 1027.817205 dualbound = 1567248.207751, lowerbound=1054801.207751, norm of subgrad 44.680807 stepsize= 1.000000 +dualbound = 1567653.734039, lowerbound=1052606.734039, norm of subgrad 1026.759823 dualbound = 1567653.734039, lowerbound=1052606.734039, norm of subgrad 45.105723 stepsize= 1.000000 +dualbound = 1568042.228585, lowerbound=1056359.228585, norm of subgrad 1028.598672 dualbound = 1568042.228585, lowerbound=1056359.228585, norm of subgrad 45.216087 stepsize= 1.000000 +dualbound = 1568457.107779, lowerbound=1054554.107779, norm of subgrad 1027.692613 dualbound = 1568457.107779, lowerbound=1054554.107779, norm of subgrad 44.865122 stepsize= 1.000000 +dualbound = 1568875.418481, lowerbound=1054233.418481, norm of subgrad 1027.526359 dualbound = 1568875.418481, lowerbound=1054233.418481, norm of subgrad 44.668901 stepsize= 1.000000 +dualbound = 1569284.085092, lowerbound=1053236.085092, norm of subgrad 1027.039476 dualbound = 1569284.085092, lowerbound=1053236.085092, norm of subgrad 44.527145 stepsize= 1.000000 +dualbound = 1569655.494632, lowerbound=1055627.494632, norm of subgrad 1028.217630 dualbound = 1569655.494632, lowerbound=1055627.494632, norm of subgrad 44.445580 stepsize= 1.000000 +dualbound = 1570054.363289, lowerbound=1054987.363289, norm of subgrad 1027.920893 dualbound = 1570054.363289, lowerbound=1054987.363289, norm of subgrad 45.087345 stepsize= 1.000000 +dualbound = 1570466.941073, lowerbound=1055752.941073, norm of subgrad 1028.261125 dualbound = 1570466.941073, lowerbound=1055752.941073, norm of subgrad 44.503683 stepsize= 1.000000 +dualbound = 1570851.404833, lowerbound=1054438.404833, norm of subgrad 1027.644591 dualbound = 1570851.404833, lowerbound=1054438.404833, norm of subgrad 44.715364 stepsize= 1.000000 +dualbound = 1571282.320216, lowerbound=1054405.320216, norm of subgrad 1027.632386 dualbound = 1571282.320216, lowerbound=1054405.320216, norm of subgrad 45.320143 stepsize= 1.000000 +dualbound = 1571631.183652, lowerbound=1054812.183652, norm of subgrad 1027.820599 dualbound = 1571631.183652, lowerbound=1054812.183652, norm of subgrad 44.179899 stepsize= 1.000000 +dualbound = 1572056.585563, lowerbound=1054355.585563, norm of subgrad 1027.629596 dualbound = 1572056.585563, lowerbound=1054355.585563, norm of subgrad 45.742780 stepsize= 1.000000 +dualbound = 1572432.340949, lowerbound=1053516.340949, norm of subgrad 1027.218254 dualbound = 1572432.340949, lowerbound=1053516.340949, norm of subgrad 45.130426 stepsize= 1.000000 +dualbound = 1572850.232790, lowerbound=1055764.232790, norm of subgrad 1028.315726 dualbound = 1572850.232790, lowerbound=1055764.232790, norm of subgrad 45.682511 stepsize= 1.000000 +dualbound = 1573238.711490, lowerbound=1053937.711490, norm of subgrad 1027.407276 dualbound = 1573238.711490, lowerbound=1053937.711490, norm of subgrad 44.905219 stepsize= 1.000000 +dualbound = 1573675.275338, lowerbound=1056009.275338, norm of subgrad 1028.411044 dualbound = 1573675.275338, lowerbound=1056009.275338, norm of subgrad 45.349353 stepsize= 1.000000 +dualbound = 1574043.218910, lowerbound=1053858.218910, norm of subgrad 1027.354476 dualbound = 1574043.218910, lowerbound=1053858.218910, norm of subgrad 44.350238 stepsize= 1.000000 +dualbound = 1574479.094103, lowerbound=1055062.094103, norm of subgrad 1027.926600 dualbound = 1574479.094103, lowerbound=1055062.094103, norm of subgrad 44.798161 stepsize= 1.000000 +dualbound = 1574870.039177, lowerbound=1056233.039177, norm of subgrad 1028.525663 dualbound = 1574870.039177, lowerbound=1056233.039177, norm of subgrad 44.977162 stepsize= 1.000000 +dualbound = 1575262.115172, lowerbound=1055045.115172, norm of subgrad 1027.942661 dualbound = 1575262.115172, lowerbound=1055045.115172, norm of subgrad 44.867315 stepsize= 1.000000 +dualbound = 1575662.438411, lowerbound=1056041.438411, norm of subgrad 1028.427653 dualbound = 1575662.438411, lowerbound=1056041.438411, norm of subgrad 44.970248 stepsize= 1.000000 +dualbound = 1576036.947395, lowerbound=1052179.947395, norm of subgrad 1026.551483 dualbound = 1576036.947395, lowerbound=1052179.947395, norm of subgrad 44.749402 stepsize= 1.000000 +dualbound = 1576467.736321, lowerbound=1057132.736321, norm of subgrad 1028.934758 dualbound = 1576467.736321, lowerbound=1057132.736321, norm of subgrad 44.774869 stepsize= 1.000000 +dualbound = 1576865.903150, lowerbound=1053179.903150, norm of subgrad 1027.028677 dualbound = 1576865.903150, lowerbound=1053179.903150, norm of subgrad 44.790254 stepsize= 1.000000 +dualbound = 1577236.152332, lowerbound=1057085.152332, norm of subgrad 1028.917466 dualbound = 1577236.152332, lowerbound=1057085.152332, norm of subgrad 44.229506 stepsize= 1.000000 +dualbound = 1577653.765047, lowerbound=1054850.765047, norm of subgrad 1027.824774 dualbound = 1577653.765047, lowerbound=1054850.765047, norm of subgrad 44.616283 stepsize= 1.000000 +dualbound = 1578046.794834, lowerbound=1055674.794834, norm of subgrad 1028.246952 dualbound = 1578046.794834, lowerbound=1055674.794834, norm of subgrad 44.833356 stepsize= 1.000000 +dualbound = 1578423.688409, lowerbound=1055753.688409, norm of subgrad 1028.317893 dualbound = 1578423.688409, lowerbound=1055753.688409, norm of subgrad 45.397066 stepsize= 1.000000 +dualbound = 1578796.957993, lowerbound=1055633.957993, norm of subgrad 1028.247518 dualbound = 1578796.957993, lowerbound=1055633.957993, norm of subgrad 45.080701 stepsize= 1.000000 +dualbound = 1579235.424335, lowerbound=1055718.424335, norm of subgrad 1028.253094 dualbound = 1579235.424335, lowerbound=1055718.424335, norm of subgrad 44.994070 stepsize= 1.000000 +dualbound = 1579618.085372, lowerbound=1052240.085372, norm of subgrad 1026.565675 dualbound = 1579618.085372, lowerbound=1052240.085372, norm of subgrad 44.493382 stepsize= 1.000000 +dualbound = 1580032.000340, lowerbound=1057360.000340, norm of subgrad 1029.022838 dualbound = 1580032.000340, lowerbound=1057360.000340, norm of subgrad 44.067164 stepsize= 1.000000 +dualbound = 1580419.292594, lowerbound=1055741.292594, norm of subgrad 1028.265186 dualbound = 1580419.292594, lowerbound=1055741.292594, norm of subgrad 44.444260 stepsize= 1.000000 +dualbound = 1580813.938645, lowerbound=1058355.938645, norm of subgrad 1029.550843 dualbound = 1580813.938645, lowerbound=1058355.938645, norm of subgrad 44.873668 stepsize= 1.000000 +dualbound = 1581198.517161, lowerbound=1052951.517161, norm of subgrad 1026.930629 dualbound = 1581198.517161, lowerbound=1052951.517161, norm of subgrad 44.939721 stepsize= 1.000000 +dualbound = 1581583.598207, lowerbound=1057505.598207, norm of subgrad 1029.113501 dualbound = 1581583.598207, lowerbound=1057505.598207, norm of subgrad 44.204989 stepsize= 1.000000 +dualbound = 1582008.380571, lowerbound=1053765.380571, norm of subgrad 1027.321946 dualbound = 1582008.380571, lowerbound=1053765.380571, norm of subgrad 45.274522 stepsize= 1.000000 +dualbound = 1582389.773645, lowerbound=1055647.773645, norm of subgrad 1028.222628 dualbound = 1582389.773645, lowerbound=1055647.773645, norm of subgrad 44.445394 stepsize= 1.000000 +dualbound = 1582803.271501, lowerbound=1056413.271501, norm of subgrad 1028.606471 dualbound = 1582803.271501, lowerbound=1056413.271501, norm of subgrad 45.072141 stepsize= 1.000000 +dualbound = 1583161.372145, lowerbound=1058337.372145, norm of subgrad 1029.573879 dualbound = 1583161.372145, lowerbound=1058337.372145, norm of subgrad 45.200671 stepsize= 1.000000 +dualbound = 1583559.202352, lowerbound=1055427.202352, norm of subgrad 1028.141139 dualbound = 1583559.202352, lowerbound=1055427.202352, norm of subgrad 45.219799 stepsize= 1.000000 +dualbound = 1583953.874716, lowerbound=1058140.874716, norm of subgrad 1029.472134 dualbound = 1583953.874716, lowerbound=1058140.874716, norm of subgrad 45.460668 stepsize= 1.000000 +dualbound = 1584365.442208, lowerbound=1054511.442208, norm of subgrad 1027.683046 dualbound = 1584365.442208, lowerbound=1054511.442208, norm of subgrad 45.084005 stepsize= 1.000000 +dualbound = 1584756.500587, lowerbound=1055392.500587, norm of subgrad 1028.122318 dualbound = 1584756.500587, lowerbound=1055392.500587, norm of subgrad 45.100536 stepsize= 1.000000 +dualbound = 1585132.856520, lowerbound=1055785.856520, norm of subgrad 1028.283451 dualbound = 1585132.856520, lowerbound=1055785.856520, norm of subgrad 44.242015 stepsize= 1.000000 +dualbound = 1585556.950830, lowerbound=1057900.950830, norm of subgrad 1029.307510 dualbound = 1585556.950830, lowerbound=1057900.950830, norm of subgrad 44.688861 stepsize= 1.000000 +dualbound = 1585954.062196, lowerbound=1052793.062196, norm of subgrad 1026.821339 dualbound = 1585954.062196, lowerbound=1052793.062196, norm of subgrad 44.340854 stepsize= 1.000000 +dualbound = 1586332.558612, lowerbound=1060229.558612, norm of subgrad 1030.442409 dualbound = 1586332.558612, lowerbound=1060229.558612, norm of subgrad 44.277493 stepsize= 1.000000 +dualbound = 1586728.951612, lowerbound=1054769.951612, norm of subgrad 1027.806865 dualbound = 1586728.951612, lowerbound=1054769.951612, norm of subgrad 44.870848 stepsize= 1.000000 +dualbound = 1587113.116211, lowerbound=1056661.116211, norm of subgrad 1028.743951 dualbound = 1587113.116211, lowerbound=1056661.116211, norm of subgrad 45.134960 stepsize= 1.000000 +dualbound = 1587506.386207, lowerbound=1057945.386207, norm of subgrad 1029.343668 dualbound = 1587506.386207, lowerbound=1057945.386207, norm of subgrad 44.679637 stepsize= 1.000000 +dualbound = 1587917.731493, lowerbound=1054618.731493, norm of subgrad 1027.692430 dualbound = 1587917.731493, lowerbound=1054618.731493, norm of subgrad 44.094731 stepsize= 1.000000 +dualbound = 1588311.705239, lowerbound=1058895.705239, norm of subgrad 1029.777017 dualbound = 1588311.705239, lowerbound=1058895.705239, norm of subgrad 44.033780 stepsize= 1.000000 +dualbound = 1588689.901202, lowerbound=1054497.901202, norm of subgrad 1027.683269 dualbound = 1588689.901202, lowerbound=1054497.901202, norm of subgrad 44.868652 stepsize= 1.000000 +dualbound = 1589036.190193, lowerbound=1056737.190193, norm of subgrad 1028.788214 dualbound = 1589036.190193, lowerbound=1056737.190193, norm of subgrad 44.880831 stepsize= 1.000000 +dualbound = 1589457.098126, lowerbound=1053233.098126, norm of subgrad 1027.040456 dualbound = 1589457.098126, lowerbound=1053233.098126, norm of subgrad 44.720330 stepsize= 1.000000 +dualbound = 1589873.649961, lowerbound=1056306.649961, norm of subgrad 1028.527418 dualbound = 1589873.649961, lowerbound=1056306.649961, norm of subgrad 44.480915 stepsize= 1.000000 +dualbound = 1590253.707687, lowerbound=1057458.707687, norm of subgrad 1029.125701 dualbound = 1590253.707687, lowerbound=1057458.707687, norm of subgrad 44.956176 stepsize= 1.000000 +dualbound = 1590659.486903, lowerbound=1056295.486903, norm of subgrad 1028.526853 dualbound = 1590659.486903, lowerbound=1056295.486903, norm of subgrad 44.472230 stepsize= 1.000000 +dualbound = 1591003.907912, lowerbound=1059326.907912, norm of subgrad 1030.029081 dualbound = 1591003.907912, lowerbound=1059326.907912, norm of subgrad 44.468202 stepsize= 1.000000 +dualbound = 1591447.556119, lowerbound=1055824.556119, norm of subgrad 1028.301783 dualbound = 1591447.556119, lowerbound=1055824.556119, norm of subgrad 44.984978 stepsize= 1.000000 +dualbound = 1591834.249388, lowerbound=1056059.249388, norm of subgrad 1028.436799 dualbound = 1591834.249388, lowerbound=1056059.249388, norm of subgrad 44.829603 stepsize= 1.000000 +dualbound = 1592204.014672, lowerbound=1057884.014672, norm of subgrad 1029.319200 dualbound = 1592204.014672, lowerbound=1057884.014672, norm of subgrad 44.539480 stepsize= 1.000000 +dualbound = 1592606.051033, lowerbound=1054435.051033, norm of subgrad 1027.659502 dualbound = 1592606.051033, lowerbound=1054435.051033, norm of subgrad 45.288369 stepsize= 1.000000 +dualbound = 1592962.875331, lowerbound=1055995.875331, norm of subgrad 1028.451688 dualbound = 1592962.875331, lowerbound=1055995.875331, norm of subgrad 45.539261 stepsize= 1.000000 +dualbound = 1593384.748651, lowerbound=1056848.748651, norm of subgrad 1028.805982 dualbound = 1593384.748651, lowerbound=1056848.748651, norm of subgrad 44.887340 stepsize= 1.000000 +dualbound = 1593793.919556, lowerbound=1057140.919555, norm of subgrad 1028.944080 dualbound = 1593793.919556, lowerbound=1057140.919555, norm of subgrad 44.656141 stepsize= 1.000000 +dualbound = 1594179.748865, lowerbound=1056812.748865, norm of subgrad 1028.809384 dualbound = 1594179.748865, lowerbound=1056812.748865, norm of subgrad 44.964756 stepsize= 1.000000 +dualbound = 1594571.557091, lowerbound=1057786.557091, norm of subgrad 1029.258256 dualbound = 1594571.557091, lowerbound=1057786.557091, norm of subgrad 44.472556 stepsize= 1.000000 +dualbound = 1594966.947400, lowerbound=1057784.947400, norm of subgrad 1029.273019 dualbound = 1594966.947400, lowerbound=1057784.947400, norm of subgrad 44.870818 stepsize= 1.000000 +dualbound = 1595334.110491, lowerbound=1054935.110491, norm of subgrad 1027.920284 dualbound = 1595334.110491, lowerbound=1054935.110491, norm of subgrad 45.300807 stepsize= 1.000000 +dualbound = 1595719.261800, lowerbound=1057707.261800, norm of subgrad 1029.246939 dualbound = 1595719.261800, lowerbound=1057707.261800, norm of subgrad 45.023897 stepsize= 1.000000 +dualbound = 1596134.311008, lowerbound=1053968.311008, norm of subgrad 1027.407081 dualbound = 1596134.311008, lowerbound=1053968.311008, norm of subgrad 44.855872 stepsize= 1.000000 +dualbound = 1596527.009015, lowerbound=1058587.009015, norm of subgrad 1029.662570 dualbound = 1596527.009015, lowerbound=1058587.009015, norm of subgrad 44.840807 stepsize= 1.000000 +dualbound = 1596920.040562, lowerbound=1056068.040562, norm of subgrad 1028.404609 dualbound = 1596920.040562, lowerbound=1056068.040562, norm of subgrad 44.057140 stepsize= 1.000000 +dualbound = 1597301.290034, lowerbound=1058922.290034, norm of subgrad 1029.835565 dualbound = 1597301.290034, lowerbound=1058922.290034, norm of subgrad 44.947185 stepsize= 1.000000 +dualbound = 1597714.093329, lowerbound=1058351.093329, norm of subgrad 1029.526150 dualbound = 1597714.093329, lowerbound=1058351.093329, norm of subgrad 44.562353 stepsize= 1.000000 +dualbound = 1598088.422771, lowerbound=1058297.422771, norm of subgrad 1029.516597 dualbound = 1598088.422771, lowerbound=1058297.422771, norm of subgrad 44.512127 stepsize= 1.000000 +dualbound = 1598476.109614, lowerbound=1058186.109614, norm of subgrad 1029.422707 dualbound = 1598476.109614, lowerbound=1058186.109614, norm of subgrad 43.734275 stepsize= 1.000000 +dualbound = 1598858.667114, lowerbound=1057646.667114, norm of subgrad 1029.193698 dualbound = 1598858.667114, lowerbound=1057646.667114, norm of subgrad 44.447244 stepsize= 1.000000 +dualbound = 1599251.097803, lowerbound=1059347.097803, norm of subgrad 1030.001989 dualbound = 1599251.097803, lowerbound=1059347.097803, norm of subgrad 44.152358 stepsize= 1.000000 +dualbound = 1599636.296633, lowerbound=1059830.296633, norm of subgrad 1030.274865 dualbound = 1599636.296633, lowerbound=1059830.296633, norm of subgrad 44.957745 stepsize= 1.000000 +dualbound = 1599996.754743, lowerbound=1057265.754743, norm of subgrad 1029.031950 dualbound = 1599996.754743, lowerbound=1057265.754743, norm of subgrad 44.737659 stepsize= 1.000000 +dualbound = 1600407.072086, lowerbound=1060081.072085, norm of subgrad 1030.402384 dualbound = 1600407.072086, lowerbound=1060081.072085, norm of subgrad 45.368682 stepsize= 1.000000 +dualbound = 1600778.394951, lowerbound=1055393.394951, norm of subgrad 1028.093087 dualbound = 1600778.394951, lowerbound=1055393.394951, norm of subgrad 44.196412 stepsize= 1.000000 +dualbound = 1601170.235505, lowerbound=1060158.235505, norm of subgrad 1030.395669 dualbound = 1601170.235505, lowerbound=1060158.235505, norm of subgrad 44.145674 stepsize= 1.000000 +dualbound = 1601592.386818, lowerbound=1057772.386818, norm of subgrad 1029.238256 dualbound = 1601592.386818, lowerbound=1057772.386818, norm of subgrad 44.510126 stepsize= 1.000000 +dualbound = 1601940.965971, lowerbound=1061244.965971, norm of subgrad 1030.962640 dualbound = 1601940.965971, lowerbound=1061244.965971, norm of subgrad 44.582274 stepsize= 1.000000 +dualbound = 1602318.577326, lowerbound=1058299.577326, norm of subgrad 1029.538526 dualbound = 1602318.577326, lowerbound=1058299.577326, norm of subgrad 45.029006 stepsize= 1.000000 +dualbound = 1602700.217348, lowerbound=1059302.217348, norm of subgrad 1030.053017 dualbound = 1602700.217348, lowerbound=1059302.217348, norm of subgrad 45.701641 stepsize= 1.000000 +dualbound = 1603059.723011, lowerbound=1057395.723011, norm of subgrad 1029.126680 dualbound = 1603059.723011, lowerbound=1057395.723011, norm of subgrad 45.447835 stepsize= 1.000000 +dualbound = 1603492.817472, lowerbound=1058716.817472, norm of subgrad 1029.724632 dualbound = 1603492.817472, lowerbound=1058716.817472, norm of subgrad 45.266925 stepsize= 1.000000 +dualbound = 1603895.561217, lowerbound=1057964.561217, norm of subgrad 1029.387955 dualbound = 1603895.561217, lowerbound=1057964.561217, norm of subgrad 45.582274 stepsize= 1.000000 +dualbound = 1604239.354370, lowerbound=1060613.354370, norm of subgrad 1030.669857 dualbound = 1604239.354370, lowerbound=1060613.354370, norm of subgrad 44.841868 stepsize= 1.000000 +dualbound = 1604652.354190, lowerbound=1056786.354190, norm of subgrad 1028.771284 dualbound = 1604652.354190, lowerbound=1056786.354190, norm of subgrad 44.687804 stepsize= 1.000000 +dualbound = 1605048.583572, lowerbound=1060044.583572, norm of subgrad 1030.354591 dualbound = 1605048.583572, lowerbound=1060044.583572, norm of subgrad 44.522235 stepsize= 1.000000 +dualbound = 1605420.406618, lowerbound=1058549.406618, norm of subgrad 1029.633142 dualbound = 1605420.406618, lowerbound=1058549.406618, norm of subgrad 44.348879 stepsize= 1.000000 +dualbound = 1605822.149544, lowerbound=1060255.149544, norm of subgrad 1030.461620 dualbound = 1605822.149544, lowerbound=1060255.149544, norm of subgrad 44.696118 stepsize= 1.000000 +dualbound = 1606179.818485, lowerbound=1059321.818485, norm of subgrad 1030.032921 dualbound = 1606179.818485, lowerbound=1059321.818485, norm of subgrad 44.762361 stepsize= 1.000000 +dualbound = 1606581.716096, lowerbound=1061429.716096, norm of subgrad 1031.041569 dualbound = 1606581.716096, lowerbound=1061429.716096, norm of subgrad 44.932145 stepsize= 1.000000 +dualbound = 1606972.715351, lowerbound=1057324.715351, norm of subgrad 1029.034361 dualbound = 1606972.715351, lowerbound=1057324.715351, norm of subgrad 44.474704 stepsize= 1.000000 +dualbound = 1607360.944898, lowerbound=1059173.944898, norm of subgrad 1029.932495 dualbound = 1607360.944898, lowerbound=1059173.944898, norm of subgrad 44.443555 stepsize= 1.000000 +dualbound = 1607751.701882, lowerbound=1058851.701882, norm of subgrad 1029.801778 dualbound = 1607751.701882, lowerbound=1058851.701882, norm of subgrad 45.063921 stepsize= 1.000000 +dualbound = 1608134.990378, lowerbound=1060501.990378, norm of subgrad 1030.601276 dualbound = 1608134.990378, lowerbound=1060501.990378, norm of subgrad 44.947619 stepsize= 1.000000 +dualbound = 1608500.679281, lowerbound=1060321.679281, norm of subgrad 1030.511853 dualbound = 1608500.679281, lowerbound=1060321.679281, norm of subgrad 44.706699 stepsize= 1.000000 +dualbound = 1608903.477258, lowerbound=1056844.477258, norm of subgrad 1028.823346 dualbound = 1608903.477258, lowerbound=1056844.477258, norm of subgrad 45.119818 stepsize= 1.000000 +dualbound = 1609282.023635, lowerbound=1059812.023635, norm of subgrad 1030.262114 dualbound = 1609282.023635, lowerbound=1059812.023635, norm of subgrad 44.794490 stepsize= 1.000000 +dualbound = 1609695.677642, lowerbound=1060211.677642, norm of subgrad 1030.413353 dualbound = 1609695.677642, lowerbound=1060211.677642, norm of subgrad 44.200158 stepsize= 1.000000 +dualbound = 1610075.020899, lowerbound=1060160.020899, norm of subgrad 1030.428562 dualbound = 1610075.020899, lowerbound=1060160.020899, norm of subgrad 44.747550 stepsize= 1.000000 +dualbound = 1610460.920750, lowerbound=1056193.920750, norm of subgrad 1028.477963 dualbound = 1610460.920750, lowerbound=1056193.920750, norm of subgrad 44.259461 stepsize= 1.000000 +dualbound = 1610810.203122, lowerbound=1060823.203122, norm of subgrad 1030.818705 dualbound = 1610810.203122, lowerbound=1060823.203122, norm of subgrad 45.970451 stepsize= 1.000000 +dualbound = 1611175.427918, lowerbound=1061662.427918, norm of subgrad 1031.187872 dualbound = 1611175.427918, lowerbound=1061662.427918, norm of subgrad 45.290449 stepsize= 1.000000 +dualbound = 1611609.604786, lowerbound=1058079.604786, norm of subgrad 1029.405948 dualbound = 1611609.604786, lowerbound=1058079.604786, norm of subgrad 45.068580 stepsize= 1.000000 +dualbound = 1611990.903001, lowerbound=1059963.903001, norm of subgrad 1030.343100 dualbound = 1611990.903001, lowerbound=1059963.903001, norm of subgrad 44.992202 stepsize= 1.000000 +dualbound = 1612383.250058, lowerbound=1057371.250058, norm of subgrad 1029.056971 dualbound = 1612383.250058, lowerbound=1057371.250058, norm of subgrad 44.489853 stepsize= 1.000000 +dualbound = 1612774.843248, lowerbound=1062625.843248, norm of subgrad 1031.580265 dualbound = 1612774.843248, lowerbound=1062625.843248, norm of subgrad 43.858787 stepsize= 1.000000 +dualbound = 1613169.837795, lowerbound=1054692.837795, norm of subgrad 1027.747945 dualbound = 1613169.837795, lowerbound=1054692.837795, norm of subgrad 44.362085 stepsize= 1.000000 +dualbound = 1613544.061219, lowerbound=1060395.061219, norm of subgrad 1030.519801 dualbound = 1613544.061219, lowerbound=1060395.061219, norm of subgrad 44.161334 stepsize= 1.000000 +dualbound = 1613916.195064, lowerbound=1058178.195064, norm of subgrad 1029.469375 dualbound = 1613916.195064, lowerbound=1058178.195064, norm of subgrad 44.734035 stepsize= 1.000000 +dualbound = 1614286.047488, lowerbound=1063519.047488, norm of subgrad 1032.064943 dualbound = 1614286.047488, lowerbound=1063519.047488, norm of subgrad 44.820223 stepsize= 1.000000 +dualbound = 1614681.203455, lowerbound=1058386.203455, norm of subgrad 1029.550000 dualbound = 1614681.203455, lowerbound=1058386.203455, norm of subgrad 44.521410 stepsize= 1.000000 +dualbound = 1615077.375754, lowerbound=1058976.375754, norm of subgrad 1029.853085 dualbound = 1615077.375754, lowerbound=1058976.375754, norm of subgrad 44.912941 stepsize= 1.000000 +dualbound = 1615477.405808, lowerbound=1058386.405808, norm of subgrad 1029.562726 dualbound = 1615477.405808, lowerbound=1058386.405808, norm of subgrad 44.866803 stepsize= 1.000000 +dualbound = 1615841.328192, lowerbound=1062884.328192, norm of subgrad 1031.750613 dualbound = 1615841.328192, lowerbound=1062884.328192, norm of subgrad 44.597336 stepsize= 1.000000 +dualbound = 1616217.473572, lowerbound=1057994.473572, norm of subgrad 1029.380626 dualbound = 1616217.473572, lowerbound=1057994.473572, norm of subgrad 44.790014 stepsize= 1.000000 +dualbound = 1616603.970360, lowerbound=1060178.970360, norm of subgrad 1030.429022 dualbound = 1616603.970360, lowerbound=1060178.970360, norm of subgrad 44.626189 stepsize= 1.000000 +dualbound = 1617004.223588, lowerbound=1059374.223588, norm of subgrad 1030.026807 dualbound = 1617004.223588, lowerbound=1059374.223588, norm of subgrad 44.511271 stepsize= 1.000000 +dualbound = 1617368.019729, lowerbound=1061346.019729, norm of subgrad 1030.988370 dualbound = 1617368.019729, lowerbound=1061346.019729, norm of subgrad 44.213077 stepsize= 1.000000 +dualbound = 1617777.940331, lowerbound=1056096.940331, norm of subgrad 1028.405533 dualbound = 1617777.940331, lowerbound=1056096.940331, norm of subgrad 43.942242 stepsize= 1.000000 +dualbound = 1618139.977681, lowerbound=1061705.977681, norm of subgrad 1031.189593 dualbound = 1618139.977681, lowerbound=1061705.977681, norm of subgrad 44.811130 stepsize= 1.000000 +dualbound = 1618525.152645, lowerbound=1058139.152645, norm of subgrad 1029.461098 dualbound = 1618525.152645, lowerbound=1058139.152645, norm of subgrad 45.123995 stepsize= 1.000000 +dualbound = 1618901.908361, lowerbound=1061921.908361, norm of subgrad 1031.269077 dualbound = 1618901.908361, lowerbound=1061921.908361, norm of subgrad 44.393194 stepsize= 1.000000 +dualbound = 1619303.018315, lowerbound=1061724.018315, norm of subgrad 1031.201250 dualbound = 1619303.018315, lowerbound=1061724.018315, norm of subgrad 45.311256 stepsize= 1.000000 +dualbound = 1619669.050051, lowerbound=1057898.050051, norm of subgrad 1029.327475 dualbound = 1619669.050051, lowerbound=1057898.050051, norm of subgrad 44.531244 stepsize= 1.000000 +dualbound = 1620077.989537, lowerbound=1059712.989537, norm of subgrad 1030.185415 dualbound = 1620077.989537, lowerbound=1059712.989537, norm of subgrad 44.474032 stepsize= 1.000000 +dualbound = 1620460.606096, lowerbound=1060962.606096, norm of subgrad 1030.817931 dualbound = 1620460.606096, lowerbound=1060962.606096, norm of subgrad 44.784111 stepsize= 1.000000 +dualbound = 1620818.851466, lowerbound=1059654.851466, norm of subgrad 1030.170788 dualbound = 1620818.851466, lowerbound=1059654.851466, norm of subgrad 44.218157 stepsize= 1.000000 +dualbound = 1621215.515127, lowerbound=1059847.515127, norm of subgrad 1030.261867 dualbound = 1621215.515127, lowerbound=1059847.515127, norm of subgrad 44.594435 stepsize= 1.000000 +dualbound = 1621570.125337, lowerbound=1060890.125337, norm of subgrad 1030.783743 dualbound = 1621570.125337, lowerbound=1060890.125337, norm of subgrad 44.492811 stepsize= 1.000000 +dualbound = 1621985.566295, lowerbound=1057484.566295, norm of subgrad 1029.097452 dualbound = 1621985.566295, lowerbound=1057484.566295, norm of subgrad 44.412171 stepsize= 1.000000 +dualbound = 1622363.516959, lowerbound=1061358.516959, norm of subgrad 1031.005585 dualbound = 1622363.516959, lowerbound=1061358.516959, norm of subgrad 44.631275 stepsize= 1.000000 +dualbound = 1622741.240417, lowerbound=1058736.240417, norm of subgrad 1029.724837 dualbound = 1622741.240417, lowerbound=1058736.240417, norm of subgrad 44.437861 stepsize= 1.000000 +dualbound = 1623124.763218, lowerbound=1058512.763218, norm of subgrad 1029.622146 dualbound = 1623124.763218, lowerbound=1058512.763218, norm of subgrad 44.637684 stepsize= 1.000000 +dualbound = 1623504.686962, lowerbound=1062149.686962, norm of subgrad 1031.400837 dualbound = 1623504.686962, lowerbound=1062149.686962, norm of subgrad 44.921306 stepsize= 1.000000 +dualbound = 1623877.641483, lowerbound=1059953.641483, norm of subgrad 1030.369663 dualbound = 1623877.641483, lowerbound=1059953.641483, norm of subgrad 45.617480 stepsize= 1.000000 +dualbound = 1624242.237323, lowerbound=1060019.237323, norm of subgrad 1030.358305 dualbound = 1624242.237323, lowerbound=1060019.237323, norm of subgrad 44.537578 stepsize= 1.000000 +dualbound = 1624673.860805, lowerbound=1058590.860805, norm of subgrad 1029.628021 dualbound = 1624673.860805, lowerbound=1058590.860805, norm of subgrad 44.436736 stepsize= 1.000000 +dualbound = 1625061.906832, lowerbound=1062979.906832, norm of subgrad 1031.757194 dualbound = 1625061.906832, lowerbound=1062979.906832, norm of subgrad 43.943669 stepsize= 1.000000 +dualbound = 1625424.768503, lowerbound=1058489.768503, norm of subgrad 1029.627976 dualbound = 1625424.768503, lowerbound=1058489.768503, norm of subgrad 44.798010 stepsize= 1.000000 +dualbound = 1625774.264873, lowerbound=1062994.264873, norm of subgrad 1031.800012 dualbound = 1625774.264873, lowerbound=1062994.264873, norm of subgrad 44.345196 stepsize= 1.000000 +dualbound = 1626179.324177, lowerbound=1059358.324177, norm of subgrad 1030.030254 dualbound = 1626179.324177, lowerbound=1059358.324177, norm of subgrad 44.822531 stepsize= 1.000000 +dualbound = 1626560.511202, lowerbound=1061933.511202, norm of subgrad 1031.282459 dualbound = 1626560.511202, lowerbound=1061933.511202, norm of subgrad 44.622719 stepsize= 1.000000 +dualbound = 1626967.383417, lowerbound=1060120.383417, norm of subgrad 1030.396226 dualbound = 1626967.383417, lowerbound=1060120.383417, norm of subgrad 44.753460 stepsize= 1.000000 +dualbound = 1627294.895530, lowerbound=1059754.895530, norm of subgrad 1030.230506 dualbound = 1627294.895530, lowerbound=1059754.895530, norm of subgrad 44.130626 stepsize= 1.000000 +dualbound = 1627721.799014, lowerbound=1059802.799014, norm of subgrad 1030.258123 dualbound = 1627721.799014, lowerbound=1059802.799014, norm of subgrad 45.342072 stepsize= 1.000000 +dualbound = 1628062.310759, lowerbound=1061328.310759, norm of subgrad 1031.000151 dualbound = 1628062.310759, lowerbound=1061328.310759, norm of subgrad 44.424225 stepsize= 1.000000 +dualbound = 1628456.765276, lowerbound=1058169.765276, norm of subgrad 1029.451196 dualbound = 1628456.765276, lowerbound=1058169.765276, norm of subgrad 44.659316 stepsize= 1.000000 +dualbound = 1628869.284936, lowerbound=1062493.284936, norm of subgrad 1031.571755 dualbound = 1628869.284936, lowerbound=1062493.284936, norm of subgrad 45.381931 stepsize= 1.000000 +dualbound = 1629235.498985, lowerbound=1059176.498985, norm of subgrad 1029.918200 dualbound = 1629235.498985, lowerbound=1059176.498985, norm of subgrad 43.831656 stepsize= 1.000000 +dualbound = 1629629.283604, lowerbound=1061353.283604, norm of subgrad 1030.966189 dualbound = 1629629.283604, lowerbound=1061353.283604, norm of subgrad 43.952072 stepsize= 1.000000 +dualbound = 1630008.321356, lowerbound=1056377.321356, norm of subgrad 1028.558370 dualbound = 1630008.321356, lowerbound=1056377.321356, norm of subgrad 43.977696 stepsize= 1.000000 +dualbound = 1630376.975197, lowerbound=1064507.975197, norm of subgrad 1032.515847 dualbound = 1630376.975197, lowerbound=1064507.975197, norm of subgrad 44.154885 stepsize= 1.000000 +dualbound = 1630768.426956, lowerbound=1057663.426956, norm of subgrad 1029.203783 dualbound = 1630768.426956, lowerbound=1057663.426956, norm of subgrad 44.592059 stepsize= 1.000000 +dualbound = 1631159.412984, lowerbound=1062857.412984, norm of subgrad 1031.726908 dualbound = 1631159.412984, lowerbound=1062857.412984, norm of subgrad 44.654071 stepsize= 1.000000 +dualbound = 1631496.217071, lowerbound=1059969.217071, norm of subgrad 1030.363148 dualbound = 1631496.217071, lowerbound=1059969.217071, norm of subgrad 44.897707 stepsize= 1.000000 +dualbound = 1631893.275615, lowerbound=1060938.275615, norm of subgrad 1030.807584 dualbound = 1631893.275615, lowerbound=1060938.275615, norm of subgrad 44.978423 stepsize= 1.000000 +dualbound = 1632297.525805, lowerbound=1058083.525805, norm of subgrad 1029.406395 dualbound = 1632297.525805, lowerbound=1058083.525805, norm of subgrad 44.701792 stepsize= 1.000000 +dualbound = 1632659.133168, lowerbound=1063353.133168, norm of subgrad 1031.998611 dualbound = 1632659.133168, lowerbound=1063353.133168, norm of subgrad 45.051164 stepsize= 1.000000 +dualbound = 1633035.366498, lowerbound=1061707.366498, norm of subgrad 1031.184933 dualbound = 1633035.366498, lowerbound=1061707.366498, norm of subgrad 44.846776 stepsize= 1.000000 +dualbound = 1633414.964169, lowerbound=1059903.964169, norm of subgrad 1030.311101 dualbound = 1633414.964169, lowerbound=1059903.964169, norm of subgrad 44.906544 stepsize= 1.000000 +dualbound = 1633817.893984, lowerbound=1061600.893984, norm of subgrad 1031.113909 dualbound = 1633817.893984, lowerbound=1061600.893984, norm of subgrad 44.698208 stepsize= 1.000000 +dualbound = 1634189.301217, lowerbound=1060057.301217, norm of subgrad 1030.374350 dualbound = 1634189.301217, lowerbound=1060057.301217, norm of subgrad 44.557909 stepsize= 1.000000 +dualbound = 1634574.039138, lowerbound=1057796.039138, norm of subgrad 1029.268206 dualbound = 1634574.039138, lowerbound=1057796.039138, norm of subgrad 44.516715 stepsize= 1.000000 +dualbound = 1634949.808512, lowerbound=1064756.808512, norm of subgrad 1032.695409 dualbound = 1634949.808512, lowerbound=1064756.808512, norm of subgrad 45.593523 stepsize= 1.000000 +dualbound = 1635282.920536, lowerbound=1058014.920536, norm of subgrad 1029.392015 dualbound = 1635282.920536, lowerbound=1058014.920536, norm of subgrad 44.340862 stepsize= 1.000000 +dualbound = 1635721.276553, lowerbound=1063594.276553, norm of subgrad 1032.091700 dualbound = 1635721.276553, lowerbound=1063594.276553, norm of subgrad 45.358087 stepsize= 1.000000 +dualbound = 1636054.577377, lowerbound=1060435.577377, norm of subgrad 1030.581184 dualbound = 1636054.577377, lowerbound=1060435.577377, norm of subgrad 44.668790 stepsize= 1.000000 +dualbound = 1636451.657251, lowerbound=1061634.657251, norm of subgrad 1031.131251 dualbound = 1636451.657251, lowerbound=1061634.657251, norm of subgrad 44.655121 stepsize= 1.000000 +dualbound = 1636852.614784, lowerbound=1059775.614784, norm of subgrad 1030.216295 dualbound = 1636852.614784, lowerbound=1059775.614784, norm of subgrad 44.395467 stepsize= 1.000000 +dualbound = 1637222.080646, lowerbound=1059340.080646, norm of subgrad 1030.032563 dualbound = 1637222.080646, lowerbound=1059340.080646, norm of subgrad 44.681829 stepsize= 1.000000 +dualbound = 1637591.602912, lowerbound=1063327.602912, norm of subgrad 1031.967830 dualbound = 1637591.602912, lowerbound=1063327.602912, norm of subgrad 44.716018 stepsize= 1.000000 +dualbound = 1637984.075478, lowerbound=1057670.075478, norm of subgrad 1029.245391 dualbound = 1637984.075478, lowerbound=1057670.075478, norm of subgrad 45.480464 stepsize= 1.000000 +dualbound = 1638340.165466, lowerbound=1063114.165466, norm of subgrad 1031.823709 dualbound = 1638340.165466, lowerbound=1063114.165466, norm of subgrad 43.612957 stepsize= 1.000000 +dualbound = 1638785.463449, lowerbound=1064354.463449, norm of subgrad 1032.417291 dualbound = 1638785.463449, lowerbound=1064354.463449, norm of subgrad 44.455573 stepsize= 1.000000 +dualbound = 1639120.166151, lowerbound=1057344.166151, norm of subgrad 1029.061303 dualbound = 1639120.166151, lowerbound=1057344.166151, norm of subgrad 44.245934 stepsize= 1.000000 +dualbound = 1639516.163855, lowerbound=1063917.163855, norm of subgrad 1032.254408 dualbound = 1639516.163855, lowerbound=1063917.163855, norm of subgrad 45.033296 stepsize= 1.000000 +dualbound = 1639858.294857, lowerbound=1058701.294857, norm of subgrad 1029.736032 dualbound = 1639858.294857, lowerbound=1058701.294857, norm of subgrad 44.689272 stepsize= 1.000000 +dualbound = 1640260.877785, lowerbound=1063190.877785, norm of subgrad 1031.884624 dualbound = 1640260.877785, lowerbound=1063190.877785, norm of subgrad 44.694328 stepsize= 1.000000 +dualbound = 1640634.174028, lowerbound=1060245.174028, norm of subgrad 1030.457750 dualbound = 1640634.174028, lowerbound=1060245.174028, norm of subgrad 44.399282 stepsize= 1.000000 +dualbound = 1641015.141309, lowerbound=1061817.141309, norm of subgrad 1031.233796 dualbound = 1641015.141309, lowerbound=1061817.141309, norm of subgrad 44.799188 stepsize= 1.000000 +dualbound = 1641382.398587, lowerbound=1060981.398587, norm of subgrad 1030.831411 dualbound = 1641382.398587, lowerbound=1060981.398587, norm of subgrad 44.713055 stepsize= 1.000000 +dualbound = 1641771.226624, lowerbound=1063973.226624, norm of subgrad 1032.278657 dualbound = 1641771.226624, lowerbound=1063973.226624, norm of subgrad 44.886836 stepsize= 1.000000 +dualbound = 1642140.132010, lowerbound=1058530.132010, norm of subgrad 1029.638350 dualbound = 1642140.132010, lowerbound=1058530.132010, norm of subgrad 44.653168 stepsize= 1.000000 +dualbound = 1642513.476258, lowerbound=1062183.476258, norm of subgrad 1031.409461 dualbound = 1642513.476258, lowerbound=1062183.476258, norm of subgrad 44.669276 stepsize= 1.000000 +dualbound = 1642899.394695, lowerbound=1061360.394695, norm of subgrad 1031.023470 dualbound = 1642899.394695, lowerbound=1061360.394695, norm of subgrad 45.110070 stepsize= 1.000000 +dualbound = 1643272.739583, lowerbound=1061807.739583, norm of subgrad 1031.220025 dualbound = 1643272.739583, lowerbound=1061807.739583, norm of subgrad 44.501066 stepsize= 1.000000 +dualbound = 1643663.733517, lowerbound=1063046.733517, norm of subgrad 1031.827860 dualbound = 1643663.733517, lowerbound=1063046.733517, norm of subgrad 44.866401 stepsize= 1.000000 +dualbound = 1644024.657159, lowerbound=1061820.657159, norm of subgrad 1031.230167 dualbound = 1644024.657159, lowerbound=1061820.657159, norm of subgrad 44.451363 stepsize= 1.000000 +dualbound = 1644402.609848, lowerbound=1064355.609848, norm of subgrad 1032.495332 dualbound = 1644402.609848, lowerbound=1064355.609848, norm of subgrad 45.485742 stepsize= 1.000000 +dualbound = 1644780.334110, lowerbound=1059848.334110, norm of subgrad 1030.277795 dualbound = 1644780.334110, lowerbound=1059848.334110, norm of subgrad 44.740633 stepsize= 1.000000 +dualbound = 1645158.637163, lowerbound=1058096.637163, norm of subgrad 1029.410335 dualbound = 1645158.637163, lowerbound=1058096.637163, norm of subgrad 44.354290 stepsize= 1.000000 +dualbound = 1645539.091524, lowerbound=1062899.091524, norm of subgrad 1031.742745 dualbound = 1645539.091524, lowerbound=1062899.091524, norm of subgrad 44.434833 stepsize= 1.000000 +dualbound = 1645931.226612, lowerbound=1061443.226612, norm of subgrad 1031.057819 dualbound = 1645931.226612, lowerbound=1061443.226612, norm of subgrad 45.045922 stepsize= 1.000000 +dualbound = 1646267.495711, lowerbound=1063311.495711, norm of subgrad 1031.958573 dualbound = 1646267.495711, lowerbound=1063311.495711, norm of subgrad 44.308793 stepsize= 1.000000 +dualbound = 1646669.026146, lowerbound=1061344.026146, norm of subgrad 1030.997588 dualbound = 1646669.026146, lowerbound=1061344.026146, norm of subgrad 44.872379 stepsize= 1.000000 +dualbound = 1647041.420997, lowerbound=1062695.420997, norm of subgrad 1031.624651 dualbound = 1647041.420997, lowerbound=1062695.420997, norm of subgrad 43.890715 stepsize= 1.000000 +dualbound = 1647449.833827, lowerbound=1060076.833827, norm of subgrad 1030.357139 dualbound = 1647449.833827, lowerbound=1060076.833827, norm of subgrad 44.355528 stepsize= 1.000000 +dualbound = 1647775.550972, lowerbound=1065410.550972, norm of subgrad 1033.019144 dualbound = 1647775.550972, lowerbound=1065410.550972, norm of subgrad 45.207490 stepsize= 1.000000 +dualbound = 1648137.850547, lowerbound=1057902.850547, norm of subgrad 1029.375466 dualbound = 1648137.850547, lowerbound=1057902.850547, norm of subgrad 45.533499 stepsize= 1.000000 +dualbound = 1648533.934286, lowerbound=1062684.934286, norm of subgrad 1031.637017 dualbound = 1648533.934286, lowerbound=1062684.934286, norm of subgrad 44.565499 stepsize= 1.000000 +dualbound = 1648929.503851, lowerbound=1062050.503851, norm of subgrad 1031.316878 dualbound = 1648929.503851, lowerbound=1062050.503851, norm of subgrad 44.267026 stepsize= 1.000000 +dualbound = 1649306.651826, lowerbound=1062567.651826, norm of subgrad 1031.569994 dualbound = 1649306.651826, lowerbound=1062567.651826, norm of subgrad 44.115167 stepsize= 1.000000 +dualbound = 1649677.478731, lowerbound=1063354.478731, norm of subgrad 1031.978429 dualbound = 1649677.478731, lowerbound=1063354.478731, norm of subgrad 44.674679 stepsize= 1.000000 +dualbound = 1650020.655221, lowerbound=1060720.655221, norm of subgrad 1030.720454 dualbound = 1650020.655221, lowerbound=1060720.655221, norm of subgrad 44.801523 stepsize= 1.000000 +dualbound = 1650418.723437, lowerbound=1064494.723437, norm of subgrad 1032.533643 dualbound = 1650418.723437, lowerbound=1064494.723437, norm of subgrad 45.045180 stepsize= 1.000000 +dualbound = 1650786.670348, lowerbound=1061476.670348, norm of subgrad 1031.067733 dualbound = 1650786.670348, lowerbound=1061476.670348, norm of subgrad 44.631232 stepsize= 1.000000 +dualbound = 1651150.750449, lowerbound=1061533.750449, norm of subgrad 1031.110930 dualbound = 1651150.750449, lowerbound=1061533.750449, norm of subgrad 44.945301 stepsize= 1.000000 +dualbound = 1651533.667210, lowerbound=1061793.667210, norm of subgrad 1031.181200 dualbound = 1651533.667210, lowerbound=1061793.667210, norm of subgrad 43.862476 stepsize= 1.000000 +dualbound = 1651940.801400, lowerbound=1063759.801400, norm of subgrad 1032.183511 dualbound = 1651940.801400, lowerbound=1063759.801400, norm of subgrad 45.278408 stepsize= 1.000000 +dualbound = 1652254.349755, lowerbound=1062675.349755, norm of subgrad 1031.672598 dualbound = 1652254.349755, lowerbound=1062675.349755, norm of subgrad 44.570712 stepsize= 1.000000 +dualbound = 1652676.565589, lowerbound=1060783.565589, norm of subgrad 1030.697611 dualbound = 1652676.565589, lowerbound=1060783.565589, norm of subgrad 44.454649 stepsize= 1.000000 +dualbound = 1653013.566800, lowerbound=1062247.566800, norm of subgrad 1031.450710 dualbound = 1653013.566800, lowerbound=1062247.566800, norm of subgrad 44.497205 stepsize= 1.000000 +dualbound = 1653429.886202, lowerbound=1062115.886202, norm of subgrad 1031.351485 dualbound = 1653429.886202, lowerbound=1062115.886202, norm of subgrad 44.568143 stepsize= 1.000000 +dualbound = 1653810.687450, lowerbound=1062589.687450, norm of subgrad 1031.585521 dualbound = 1653810.687450, lowerbound=1062589.687450, norm of subgrad 44.269643 stepsize= 1.000000 +dualbound = 1654188.146922, lowerbound=1062550.146922, norm of subgrad 1031.534365 dualbound = 1654188.146922, lowerbound=1062550.146922, norm of subgrad 43.479414 stepsize= 1.000000 +dualbound = 1654535.206613, lowerbound=1064477.206613, norm of subgrad 1032.524192 dualbound = 1654535.206613, lowerbound=1064477.206613, norm of subgrad 44.452893 stepsize= 1.000000 +dualbound = 1654900.577441, lowerbound=1064157.577441, norm of subgrad 1032.388772 dualbound = 1654900.577441, lowerbound=1064157.577441, norm of subgrad 45.104000 stepsize= 1.000000 +dualbound = 1655263.650415, lowerbound=1061851.650415, norm of subgrad 1031.252467 dualbound = 1655263.650415, lowerbound=1061851.650415, norm of subgrad 44.643846 stepsize= 1.000000 +dualbound = 1655645.121010, lowerbound=1062917.121010, norm of subgrad 1031.725797 dualbound = 1655645.121010, lowerbound=1062917.121010, norm of subgrad 43.845987 stepsize= 1.000000 +dualbound = 1656043.542275, lowerbound=1061645.542275, norm of subgrad 1031.162229 dualbound = 1656043.542275, lowerbound=1061645.542275, norm of subgrad 45.259488 stepsize= 1.000000 +dualbound = 1656385.471817, lowerbound=1061629.471817, norm of subgrad 1031.142799 dualbound = 1656385.471817, lowerbound=1061629.471817, norm of subgrad 44.361352 stepsize= 1.000000 +dualbound = 1656786.854467, lowerbound=1066135.854467, norm of subgrad 1033.321274 dualbound = 1656786.854467, lowerbound=1066135.854467, norm of subgrad 44.926414 stepsize= 1.000000 +dualbound = 1657149.562995, lowerbound=1060926.562995, norm of subgrad 1030.764553 dualbound = 1657149.562995, lowerbound=1060926.562995, norm of subgrad 43.723089 stepsize= 1.000000 +dualbound = 1657536.520355, lowerbound=1064714.520355, norm of subgrad 1032.632810 dualbound = 1657536.520355, lowerbound=1064714.520355, norm of subgrad 44.754412 stepsize= 1.000000 +dualbound = 1657877.136988, lowerbound=1062571.136988, norm of subgrad 1031.596887 dualbound = 1657877.136988, lowerbound=1062571.136988, norm of subgrad 44.290141 stepsize= 1.000000 +dualbound = 1658249.703594, lowerbound=1060888.703594, norm of subgrad 1030.755889 dualbound = 1658249.703594, lowerbound=1060888.703594, norm of subgrad 44.063211 stepsize= 1.000000 +dualbound = 1658664.989940, lowerbound=1065711.989940, norm of subgrad 1033.079373 dualbound = 1658664.989940, lowerbound=1065711.989940, norm of subgrad 44.229926 stepsize= 1.000000 +dualbound = 1659029.503687, lowerbound=1061774.503687, norm of subgrad 1031.171908 dualbound = 1659029.503687, lowerbound=1061774.503687, norm of subgrad 43.652191 stepsize= 1.000000 +dualbound = 1659380.604055, lowerbound=1064567.604055, norm of subgrad 1032.582008 dualbound = 1659380.604055, lowerbound=1064567.604055, norm of subgrad 44.822989 stepsize= 1.000000 +dualbound = 1659718.455781, lowerbound=1060590.455781, norm of subgrad 1030.668451 dualbound = 1659718.455781, lowerbound=1060590.455781, norm of subgrad 44.998352 stepsize= 1.000000 +dualbound = 1660100.454055, lowerbound=1066842.454055, norm of subgrad 1033.689728 dualbound = 1660100.454055, lowerbound=1066842.454055, norm of subgrad 45.321058 stepsize= 1.000000 +dualbound = 1660490.674342, lowerbound=1059614.674342, norm of subgrad 1030.144007 dualbound = 1660490.674342, lowerbound=1059614.674342, norm of subgrad 44.409687 stepsize= 1.000000 +dualbound = 1660874.076412, lowerbound=1063361.076412, norm of subgrad 1031.982111 dualbound = 1660874.076412, lowerbound=1063361.076412, norm of subgrad 44.826355 stepsize= 1.000000 +dualbound = 1661223.134200, lowerbound=1064407.134200, norm of subgrad 1032.482995 dualbound = 1661223.134200, lowerbound=1064407.134200, norm of subgrad 44.306408 stepsize= 1.000000 +dualbound = 1661629.223692, lowerbound=1061606.223692, norm of subgrad 1031.104856 dualbound = 1661629.223692, lowerbound=1061606.223692, norm of subgrad 44.464474 stepsize= 1.000000 +dualbound = 1661991.984049, lowerbound=1067429.984049, norm of subgrad 1033.913432 dualbound = 1661991.984049, lowerbound=1067429.984049, norm of subgrad 43.700805 stepsize= 1.000000 +dualbound = 1662363.381364, lowerbound=1060848.381364, norm of subgrad 1030.764950 dualbound = 1662363.381364, lowerbound=1060848.381364, norm of subgrad 44.714621 stepsize= 1.000000 +dualbound = 1662717.510139, lowerbound=1066902.510139, norm of subgrad 1033.703783 dualbound = 1662717.510139, lowerbound=1066902.510139, norm of subgrad 44.666864 stepsize= 1.000000 +dualbound = 1663088.557505, lowerbound=1060043.557505, norm of subgrad 1030.341961 dualbound = 1663088.557505, lowerbound=1060043.557505, norm of subgrad 43.955061 stepsize= 1.000000 +dualbound = 1663476.615246, lowerbound=1065997.615246, norm of subgrad 1033.247606 dualbound = 1663476.615246, lowerbound=1065997.615246, norm of subgrad 44.621270 stepsize= 1.000000 +dualbound = 1663840.985777, lowerbound=1062643.985777, norm of subgrad 1031.618140 dualbound = 1663840.985777, lowerbound=1062643.985777, norm of subgrad 44.230878 stepsize= 1.000000 +dualbound = 1664216.838926, lowerbound=1065202.838926, norm of subgrad 1032.862933 dualbound = 1664216.838926, lowerbound=1065202.838926, norm of subgrad 44.484302 stepsize= 1.000000 +dualbound = 1664574.321132, lowerbound=1064267.321132, norm of subgrad 1032.414317 dualbound = 1664574.321132, lowerbound=1064267.321132, norm of subgrad 44.378849 stepsize= 1.000000 +dualbound = 1664955.841944, lowerbound=1062337.841944, norm of subgrad 1031.458114 dualbound = 1664955.841944, lowerbound=1062337.841944, norm of subgrad 44.153378 stepsize= 1.000000 +dualbound = 1665312.112795, lowerbound=1064044.112795, norm of subgrad 1032.294102 dualbound = 1665312.112795, lowerbound=1064044.112795, norm of subgrad 44.082546 stepsize= 1.000000 +dualbound = 1665675.836191, lowerbound=1064851.836191, norm of subgrad 1032.680898 dualbound = 1665675.836191, lowerbound=1064851.836191, norm of subgrad 44.064991 stepsize= 1.000000 +dualbound = 1666061.790891, lowerbound=1063474.790891, norm of subgrad 1032.020247 dualbound = 1666061.790891, lowerbound=1063474.790891, norm of subgrad 44.462959 stepsize= 1.000000 +dualbound = 1666417.433122, lowerbound=1062735.433122, norm of subgrad 1031.665853 dualbound = 1666417.433122, lowerbound=1062735.433122, norm of subgrad 44.211336 stepsize= 1.000000 +dualbound = 1666780.010143, lowerbound=1064481.010143, norm of subgrad 1032.530392 dualbound = 1666780.010143, lowerbound=1064481.010143, norm of subgrad 44.727810 stepsize= 1.000000 +dualbound = 1667140.061163, lowerbound=1065660.061163, norm of subgrad 1033.110866 dualbound = 1667140.061163, lowerbound=1065660.061163, norm of subgrad 44.922723 stepsize= 1.000000 +dualbound = 1667496.783066, lowerbound=1064059.783066, norm of subgrad 1032.307988 dualbound = 1667496.783066, lowerbound=1064059.783066, norm of subgrad 44.234849 stepsize= 1.000000 +dualbound = 1667889.645399, lowerbound=1062997.645399, norm of subgrad 1031.802135 dualbound = 1667889.645399, lowerbound=1062997.645399, norm of subgrad 44.842640 stepsize= 1.000000 +dualbound = 1668239.734961, lowerbound=1064566.734961, norm of subgrad 1032.578198 dualbound = 1668239.734961, lowerbound=1064566.734961, norm of subgrad 44.733540 stepsize= 1.000000 +dualbound = 1668617.221441, lowerbound=1066186.221441, norm of subgrad 1033.333548 dualbound = 1668617.221441, lowerbound=1066186.221441, norm of subgrad 44.378897 stepsize= 1.000000 +dualbound = 1668975.337085, lowerbound=1064097.337085, norm of subgrad 1032.357659 dualbound = 1668975.337085, lowerbound=1064097.337085, norm of subgrad 44.979058 stepsize= 1.000000 +dualbound = 1669335.800446, lowerbound=1065510.800446, norm of subgrad 1033.030881 dualbound = 1669335.800446, lowerbound=1065510.800446, norm of subgrad 44.748892 stepsize= 1.000000 +dualbound = 1669724.800595, lowerbound=1062855.800595, norm of subgrad 1031.724673 dualbound = 1669724.800595, lowerbound=1062855.800595, norm of subgrad 44.598208 stepsize= 1.000000 +dualbound = 1670093.354828, lowerbound=1063496.354828, norm of subgrad 1032.040869 dualbound = 1670093.354828, lowerbound=1063496.354828, norm of subgrad 44.503418 stepsize= 1.000000 +dualbound = 1670460.391765, lowerbound=1063871.391765, norm of subgrad 1032.209471 dualbound = 1670460.391765, lowerbound=1063871.391765, norm of subgrad 44.181862 stepsize= 1.000000 +dualbound = 1670825.205842, lowerbound=1062906.205842, norm of subgrad 1031.762185 dualbound = 1670825.205842, lowerbound=1062906.205842, norm of subgrad 44.629744 stepsize= 1.000000 +dualbound = 1671180.628611, lowerbound=1064543.628611, norm of subgrad 1032.550545 dualbound = 1671180.628611, lowerbound=1064543.628611, norm of subgrad 44.411967 stepsize= 1.000000 +dualbound = 1671578.750390, lowerbound=1065408.750390, norm of subgrad 1032.928241 dualbound = 1671578.750390, lowerbound=1065408.750390, norm of subgrad 43.933151 stepsize= 1.000000 +dualbound = 1671937.758937, lowerbound=1064899.758937, norm of subgrad 1032.689091 dualbound = 1671937.758937, lowerbound=1064899.758937, norm of subgrad 43.657858 stepsize= 1.000000 +dualbound = 1672319.518558, lowerbound=1067964.518558, norm of subgrad 1034.207677 dualbound = 1672319.518558, lowerbound=1067964.518558, norm of subgrad 44.752202 stepsize= 1.000000 +dualbound = 1672651.708146, lowerbound=1061220.708146, norm of subgrad 1030.948451 dualbound = 1672651.708146, lowerbound=1061220.708146, norm of subgrad 44.341736 stepsize= 1.000000 +dualbound = 1673025.648350, lowerbound=1067919.648350, norm of subgrad 1034.196136 dualbound = 1673025.648350, lowerbound=1067919.648350, norm of subgrad 44.899223 stepsize= 1.000000 +dualbound = 1673364.340951, lowerbound=1062400.340951, norm of subgrad 1031.518948 dualbound = 1673364.340951, lowerbound=1062400.340951, norm of subgrad 44.381219 stepsize= 1.000000 +dualbound = 1673763.818800, lowerbound=1066387.818800, norm of subgrad 1033.454798 dualbound = 1673763.818800, lowerbound=1066387.818800, norm of subgrad 45.171649 stepsize= 1.000000 +dualbound = 1674100.321934, lowerbound=1060822.321934, norm of subgrad 1030.786749 dualbound = 1674100.321934, lowerbound=1060822.321934, norm of subgrad 45.116551 stepsize= 1.000000 +dualbound = 1674463.542618, lowerbound=1069586.542618, norm of subgrad 1035.003161 dualbound = 1674463.542618, lowerbound=1069586.542618, norm of subgrad 44.813175 stepsize= 1.000000 +dualbound = 1674869.908597, lowerbound=1062991.908597, norm of subgrad 1031.743141 dualbound = 1674869.908597, lowerbound=1062991.908597, norm of subgrad 43.684848 stepsize= 1.000000 +dualbound = 1675214.007548, lowerbound=1064181.007548, norm of subgrad 1032.352657 dualbound = 1675214.007548, lowerbound=1064181.007548, norm of subgrad 43.761844 stepsize= 1.000000 +dualbound = 1675591.072552, lowerbound=1066247.072552, norm of subgrad 1033.357669 dualbound = 1675591.072552, lowerbound=1066247.072552, norm of subgrad 44.250028 stepsize= 1.000000 +dualbound = 1675940.494759, lowerbound=1064264.494759, norm of subgrad 1032.403262 dualbound = 1675940.494759, lowerbound=1064264.494759, norm of subgrad 44.061573 stepsize= 1.000000 +dualbound = 1676313.957974, lowerbound=1064813.957974, norm of subgrad 1032.666431 dualbound = 1676313.957974, lowerbound=1064813.957974, norm of subgrad 44.265824 stepsize= 1.000000 +dualbound = 1676682.246050, lowerbound=1066081.246050, norm of subgrad 1033.278881 dualbound = 1676682.246050, lowerbound=1066081.246050, norm of subgrad 44.184704 stepsize= 1.000000 +dualbound = 1677045.400397, lowerbound=1062832.400397, norm of subgrad 1031.752102 dualbound = 1677045.400397, lowerbound=1062832.400397, norm of subgrad 45.201265 stepsize= 1.000000 +dualbound = 1677404.589070, lowerbound=1066434.589070, norm of subgrad 1033.443559 dualbound = 1677404.589070, lowerbound=1066434.589070, norm of subgrad 43.933913 stepsize= 1.000000 +dualbound = 1677785.736142, lowerbound=1063951.736142, norm of subgrad 1032.257108 dualbound = 1677785.736142, lowerbound=1063951.736142, norm of subgrad 44.543766 stepsize= 1.000000 +dualbound = 1678149.731162, lowerbound=1065827.731162, norm of subgrad 1033.160070 dualbound = 1678149.731162, lowerbound=1065827.731162, norm of subgrad 44.226632 stepsize= 1.000000 +dualbound = 1678529.350069, lowerbound=1063041.350069, norm of subgrad 1031.821375 dualbound = 1678529.350069, lowerbound=1063041.350069, norm of subgrad 44.649960 stepsize= 1.000000 +dualbound = 1678870.316943, lowerbound=1065532.316943, norm of subgrad 1033.014674 dualbound = 1678870.316943, lowerbound=1065532.316943, norm of subgrad 43.908620 stepsize= 1.000000 +dualbound = 1679255.171981, lowerbound=1065784.171980, norm of subgrad 1033.132698 dualbound = 1679255.171981, lowerbound=1065784.171980, norm of subgrad 44.315404 stepsize= 1.000000 +dualbound = 1679617.223559, lowerbound=1066103.223559, norm of subgrad 1033.274999 dualbound = 1679617.223559, lowerbound=1066103.223559, norm of subgrad 43.772726 stepsize= 1.000000 +dualbound = 1680002.194178, lowerbound=1064673.194178, norm of subgrad 1032.621031 dualbound = 1680002.194178, lowerbound=1064673.194178, norm of subgrad 44.921828 stepsize= 1.000000 +dualbound = 1680298.909103, lowerbound=1067313.909103, norm of subgrad 1033.901305 dualbound = 1680298.909103, lowerbound=1067313.909103, norm of subgrad 43.985394 stepsize= 1.000000 +dualbound = 1680716.883027, lowerbound=1065578.883027, norm of subgrad 1033.017852 dualbound = 1680716.883027, lowerbound=1065578.883027, norm of subgrad 44.328026 stepsize= 1.000000 +dualbound = 1681064.710281, lowerbound=1066042.710281, norm of subgrad 1033.264105 dualbound = 1681064.710281, lowerbound=1066042.710281, norm of subgrad 44.043470 stepsize= 1.000000 +dualbound = 1681436.565213, lowerbound=1065086.565213, norm of subgrad 1032.854571 dualbound = 1681436.565213, lowerbound=1065086.565213, norm of subgrad 45.539597 stepsize= 1.000000 +dualbound = 1681756.696352, lowerbound=1065289.696352, norm of subgrad 1032.905947 dualbound = 1681756.696352, lowerbound=1065289.696352, norm of subgrad 43.876316 stepsize= 1.000000 +dualbound = 1682178.441624, lowerbound=1066275.441624, norm of subgrad 1033.369944 dualbound = 1682178.441624, lowerbound=1066275.441624, norm of subgrad 44.718512 stepsize= 1.000000 +dualbound = 1682517.478602, lowerbound=1066007.478602, norm of subgrad 1033.244636 dualbound = 1682517.478602, lowerbound=1066007.478602, norm of subgrad 43.886638 stepsize= 1.000000 +dualbound = 1682892.244018, lowerbound=1062282.244018, norm of subgrad 1031.432133 dualbound = 1682892.244018, lowerbound=1062282.244018, norm of subgrad 44.099495 stepsize= 1.000000 +dualbound = 1683248.755925, lowerbound=1067211.755925, norm of subgrad 1033.809342 dualbound = 1683248.755925, lowerbound=1067211.755925, norm of subgrad 43.663622 stepsize= 1.000000 +dualbound = 1683629.023983, lowerbound=1063690.023983, norm of subgrad 1032.159399 dualbound = 1683629.023983, lowerbound=1063690.023983, norm of subgrad 45.202523 stepsize= 1.000000 +dualbound = 1683951.154737, lowerbound=1065116.154737, norm of subgrad 1032.875188 dualbound = 1683951.154737, lowerbound=1065116.154737, norm of subgrad 45.134585 stepsize= 1.000000 +dualbound = 1684330.306736, lowerbound=1067490.306736, norm of subgrad 1033.984191 dualbound = 1684330.306736, lowerbound=1067490.306736, norm of subgrad 44.857017 stepsize= 1.000000 +dualbound = 1684713.452175, lowerbound=1064094.452175, norm of subgrad 1032.296204 dualbound = 1684713.452175, lowerbound=1064094.452175, norm of subgrad 43.865082 stepsize= 1.000000 +dualbound = 1685079.447134, lowerbound=1066724.447134, norm of subgrad 1033.629260 dualbound = 1685079.447134, lowerbound=1066724.447134, norm of subgrad 45.066561 stepsize= 1.000000 +dualbound = 1685416.144282, lowerbound=1066768.144282, norm of subgrad 1033.640239 dualbound = 1685416.144282, lowerbound=1066768.144282, norm of subgrad 44.505024 stepsize= 1.000000 +dualbound = 1685800.231282, lowerbound=1064324.231282, norm of subgrad 1032.440909 dualbound = 1685800.231282, lowerbound=1064324.231282, norm of subgrad 44.655201 stepsize= 1.000000 +dualbound = 1686152.623932, lowerbound=1068408.623932, norm of subgrad 1034.434930 dualbound = 1686152.623932, lowerbound=1068408.623932, norm of subgrad 44.714569 stepsize= 1.000000 +dualbound = 1686487.239640, lowerbound=1064971.239640, norm of subgrad 1032.761947 dualbound = 1686487.239640, lowerbound=1064971.239640, norm of subgrad 44.278840 stepsize= 1.000000 +dualbound = 1686878.126209, lowerbound=1065220.126209, norm of subgrad 1032.876627 dualbound = 1686878.126209, lowerbound=1065220.126209, norm of subgrad 44.775960 stepsize= 1.000000 +dualbound = 1687228.835202, lowerbound=1065471.835202, norm of subgrad 1032.987335 dualbound = 1687228.835202, lowerbound=1065471.835202, norm of subgrad 44.064827 stepsize= 1.000000 +dualbound = 1687612.620644, lowerbound=1067023.620644, norm of subgrad 1033.730923 dualbound = 1687612.620644, lowerbound=1067023.620644, norm of subgrad 44.269464 stepsize= 1.000000 +dualbound = 1687971.240737, lowerbound=1066410.240737, norm of subgrad 1033.455002 dualbound = 1687971.240737, lowerbound=1066410.240737, norm of subgrad 44.470441 stepsize= 1.000000 +dualbound = 1688327.170167, lowerbound=1065941.170167, norm of subgrad 1033.213516 dualbound = 1688327.170167, lowerbound=1065941.170167, norm of subgrad 44.101354 stepsize= 1.000000 +dualbound = 1688698.377090, lowerbound=1066567.377090, norm of subgrad 1033.490386 dualbound = 1688698.377090, lowerbound=1066567.377090, norm of subgrad 43.660130 stepsize= 1.000000 +dualbound = 1689059.880631, lowerbound=1064884.880631, norm of subgrad 1032.714811 dualbound = 1689059.880631, lowerbound=1064884.880631, norm of subgrad 44.457885 stepsize= 1.000000 +dualbound = 1689412.240299, lowerbound=1067867.240299, norm of subgrad 1034.150976 dualbound = 1689412.240299, lowerbound=1067867.240299, norm of subgrad 44.196829 stepsize= 1.000000 +dualbound = 1689781.500265, lowerbound=1064452.500265, norm of subgrad 1032.476876 dualbound = 1689781.500265, lowerbound=1064452.500265, norm of subgrad 43.877784 stepsize= 1.000000 +dualbound = 1690157.320565, lowerbound=1067610.320565, norm of subgrad 1034.012244 dualbound = 1690157.320565, lowerbound=1067610.320565, norm of subgrad 44.122787 stepsize= 1.000000 +dualbound = 1690496.267500, lowerbound=1066085.267500, norm of subgrad 1033.305505 dualbound = 1690496.267500, lowerbound=1066085.267500, norm of subgrad 44.429123 stepsize= 1.000000 +dualbound = 1690854.271985, lowerbound=1068056.271985, norm of subgrad 1034.238499 dualbound = 1690854.271985, lowerbound=1068056.271985, norm of subgrad 44.170176 stepsize= 1.000000 +dualbound = 1691236.958095, lowerbound=1061925.958095, norm of subgrad 1031.235161 dualbound = 1691236.958095, lowerbound=1061925.958095, norm of subgrad 43.619790 stepsize= 1.000000 +dualbound = 1691614.044531, lowerbound=1069672.044531, norm of subgrad 1035.026591 dualbound = 1691614.044531, lowerbound=1069672.044531, norm of subgrad 44.554309 stepsize= 1.000000 +dualbound = 1691952.809657, lowerbound=1068605.809657, norm of subgrad 1034.483837 dualbound = 1691952.809657, lowerbound=1068605.809657, norm of subgrad 43.471429 stepsize= 1.000000 +dualbound = 1692320.288026, lowerbound=1064929.288026, norm of subgrad 1032.728565 dualbound = 1692320.288026, lowerbound=1064929.288026, norm of subgrad 44.344993 stepsize= 1.000000 +dualbound = 1692696.854185, lowerbound=1065610.854185, norm of subgrad 1033.018322 dualbound = 1692696.854185, lowerbound=1065610.854185, norm of subgrad 43.503634 stepsize= 1.000000 +dualbound = 1693047.784282, lowerbound=1066619.784282, norm of subgrad 1033.555893 dualbound = 1693047.784282, lowerbound=1066619.784282, norm of subgrad 44.372628 stepsize= 1.000000 +dualbound = 1693373.443803, lowerbound=1064601.443803, norm of subgrad 1032.589678 dualbound = 1693373.443803, lowerbound=1064601.443803, norm of subgrad 44.335759 stepsize= 1.000000 +dualbound = 1693774.696216, lowerbound=1068702.696216, norm of subgrad 1034.548064 dualbound = 1693774.696216, lowerbound=1068702.696216, norm of subgrad 44.589824 stepsize= 1.000000 +dualbound = 1694119.959246, lowerbound=1068173.959246, norm of subgrad 1034.316180 dualbound = 1694119.959246, lowerbound=1068173.959246, norm of subgrad 44.511381 stepsize= 1.000000 +dualbound = 1694448.149290, lowerbound=1068336.149290, norm of subgrad 1034.440984 dualbound = 1694448.149290, lowerbound=1068336.149290, norm of subgrad 45.389316 stepsize= 1.000000 +dualbound = 1694827.735587, lowerbound=1066696.735587, norm of subgrad 1033.575704 dualbound = 1694827.735587, lowerbound=1066696.735587, norm of subgrad 44.289799 stepsize= 1.000000 +dualbound = 1695202.367894, lowerbound=1063914.367894, norm of subgrad 1032.233679 dualbound = 1695202.367894, lowerbound=1063914.367894, norm of subgrad 44.346728 stepsize= 1.000000 +dualbound = 1695570.517760, lowerbound=1069456.517760, norm of subgrad 1034.919088 dualbound = 1695570.517760, lowerbound=1069456.517760, norm of subgrad 44.375104 stepsize= 1.000000 +dualbound = 1695935.051235, lowerbound=1066629.051235, norm of subgrad 1033.552636 dualbound = 1695935.051235, lowerbound=1066629.051235, norm of subgrad 44.345614 stepsize= 1.000000 +dualbound = 1696297.675299, lowerbound=1066387.675299, norm of subgrad 1033.406830 dualbound = 1696297.675299, lowerbound=1066387.675299, norm of subgrad 43.641999 stepsize= 1.000000 +dualbound = 1696668.152994, lowerbound=1066185.152994, norm of subgrad 1033.310289 dualbound = 1696668.152994, lowerbound=1066185.152994, norm of subgrad 43.766171 stepsize= 1.000000 +dualbound = 1697022.601509, lowerbound=1068296.601509, norm of subgrad 1034.335826 dualbound = 1697022.601509, lowerbound=1068296.601509, norm of subgrad 43.685793 stepsize= 1.000000 +dualbound = 1697394.296436, lowerbound=1067993.296436, norm of subgrad 1034.212404 dualbound = 1697394.296436, lowerbound=1067993.296436, norm of subgrad 44.426286 stepsize= 1.000000 +dualbound = 1697742.854231, lowerbound=1067952.854231, norm of subgrad 1034.192852 dualbound = 1697742.854231, lowerbound=1067952.854231, norm of subgrad 44.165120 stepsize= 1.000000 +dualbound = 1698094.494068, lowerbound=1067364.494068, norm of subgrad 1033.920932 dualbound = 1698094.494068, lowerbound=1067364.494068, norm of subgrad 44.493144 stepsize= 1.000000 +dualbound = 1698451.937286, lowerbound=1066197.937286, norm of subgrad 1033.327604 dualbound = 1698451.937286, lowerbound=1066197.937286, norm of subgrad 43.879873 stepsize= 1.000000 +dualbound = 1698825.207982, lowerbound=1067078.207982, norm of subgrad 1033.793600 dualbound = 1698825.207982, lowerbound=1067078.207982, norm of subgrad 44.991896 stepsize= 1.000000 +dualbound = 1699160.778348, lowerbound=1070842.778348, norm of subgrad 1035.602133 dualbound = 1699160.778348, lowerbound=1070842.778348, norm of subgrad 44.323474 stepsize= 1.000000 +dualbound = 1699539.837148, lowerbound=1064524.837148, norm of subgrad 1032.528855 dualbound = 1699539.837148, lowerbound=1064524.837148, norm of subgrad 44.385344 stepsize= 1.000000 +dualbound = 1699893.521635, lowerbound=1067450.521635, norm of subgrad 1033.926265 dualbound = 1699893.521635, lowerbound=1067450.521635, norm of subgrad 43.665598 stepsize= 1.000000 +dualbound = 1700275.332326, lowerbound=1066101.332326, norm of subgrad 1033.280374 dualbound = 1700275.332326, lowerbound=1066101.332326, norm of subgrad 44.145336 stepsize= 1.000000 +dualbound = 1700624.011506, lowerbound=1070718.011506, norm of subgrad 1035.530787 dualbound = 1700624.011506, lowerbound=1070718.011506, norm of subgrad 44.211754 stepsize= 1.000000 +dualbound = 1701005.170888, lowerbound=1064660.170888, norm of subgrad 1032.543060 dualbound = 1701005.170888, lowerbound=1064660.170888, norm of subgrad 43.199067 stepsize= 1.000000 +dualbound = 1701413.148217, lowerbound=1067073.148217, norm of subgrad 1033.763584 dualbound = 1701413.148217, lowerbound=1067073.148217, norm of subgrad 44.743461 stepsize= 1.000000 +dualbound = 1701700.595914, lowerbound=1068393.595914, norm of subgrad 1034.417032 dualbound = 1701700.595914, lowerbound=1068393.595914, norm of subgrad 43.731541 stepsize= 1.000000 +dualbound = 1702061.394882, lowerbound=1067714.394882, norm of subgrad 1034.111404 dualbound = 1702061.394882, lowerbound=1067714.394882, norm of subgrad 45.086572 stepsize= 1.000000 +dualbound = 1702435.267974, lowerbound=1070216.267974, norm of subgrad 1035.272074 dualbound = 1702435.267974, lowerbound=1070216.267974, norm of subgrad 44.112052 stepsize= 1.000000 +dualbound = 1702814.649866, lowerbound=1066461.649866, norm of subgrad 1033.463908 dualbound = 1702814.649866, lowerbound=1066461.649866, norm of subgrad 44.332628 stepsize= 1.000000 +dualbound = 1703162.094762, lowerbound=1069387.094762, norm of subgrad 1034.902940 dualbound = 1703162.094762, lowerbound=1069387.094762, norm of subgrad 44.547109 stepsize= 1.000000 +dualbound = 1703502.840413, lowerbound=1066237.840413, norm of subgrad 1033.328525 dualbound = 1703502.840413, lowerbound=1066237.840413, norm of subgrad 43.252117 stepsize= 1.000000 +dualbound = 1703912.320993, lowerbound=1068391.320993, norm of subgrad 1034.377746 dualbound = 1703912.320993, lowerbound=1068391.320993, norm of subgrad 44.220816 stepsize= 1.000000 +dualbound = 1704239.030349, lowerbound=1067802.030348, norm of subgrad 1034.121381 dualbound = 1704239.030349, lowerbound=1067802.030348, norm of subgrad 43.951216 stepsize= 1.000000 +dualbound = 1704585.149023, lowerbound=1068042.149023, norm of subgrad 1034.214266 dualbound = 1704585.149023, lowerbound=1068042.149023, norm of subgrad 43.624748 stepsize= 1.000000 +dualbound = 1704967.442927, lowerbound=1069767.442927, norm of subgrad 1035.064946 dualbound = 1704967.442927, lowerbound=1069767.442927, norm of subgrad 44.433027 stepsize= 1.000000 +dualbound = 1705322.662419, lowerbound=1066804.662419, norm of subgrad 1033.647262 dualbound = 1705322.662419, lowerbound=1066804.662419, norm of subgrad 44.465936 stepsize= 1.000000 +dualbound = 1705669.919047, lowerbound=1066465.919047, norm of subgrad 1033.465006 dualbound = 1705669.919047, lowerbound=1066465.919047, norm of subgrad 43.946065 stepsize= 1.000000 +dualbound = 1706032.777291, lowerbound=1067253.777291, norm of subgrad 1033.879963 dualbound = 1706032.777291, lowerbound=1067253.777291, norm of subgrad 44.909445 stepsize= 1.000000 +dualbound = 1706392.010242, lowerbound=1069058.010242, norm of subgrad 1034.745867 dualbound = 1706392.010242, lowerbound=1069058.010242, norm of subgrad 44.723964 stepsize= 1.000000 +dualbound = 1706747.076917, lowerbound=1066733.076917, norm of subgrad 1033.576353 dualbound = 1706747.076917, lowerbound=1066733.076917, norm of subgrad 43.612689 stepsize= 1.000000 +dualbound = 1707149.763637, lowerbound=1067913.763637, norm of subgrad 1034.155097 dualbound = 1707149.763637, lowerbound=1067913.763637, norm of subgrad 44.336066 stepsize= 1.000000 +dualbound = 1707475.414579, lowerbound=1068129.414579, norm of subgrad 1034.294162 dualbound = 1707475.414579, lowerbound=1068129.414579, norm of subgrad 44.279238 stepsize= 1.000000 +dualbound = 1707834.519228, lowerbound=1068523.519228, norm of subgrad 1034.486597 dualbound = 1707834.519228, lowerbound=1068523.519228, norm of subgrad 44.700164 stepsize= 1.000000 +dualbound = 1708192.916781, lowerbound=1068567.916781, norm of subgrad 1034.495972 dualbound = 1708192.916781, lowerbound=1068567.916781, norm of subgrad 44.411683 stepsize= 1.000000 +dualbound = 1708548.526242, lowerbound=1067030.526242, norm of subgrad 1033.747806 dualbound = 1708548.526242, lowerbound=1067030.526242, norm of subgrad 44.267476 stepsize= 1.000000 +dualbound = 1708913.737072, lowerbound=1067819.737072, norm of subgrad 1034.117855 dualbound = 1708913.737072, lowerbound=1067819.737072, norm of subgrad 44.104544 stepsize= 1.000000 +dualbound = 1709285.778807, lowerbound=1068838.778807, norm of subgrad 1034.582901 dualbound = 1709285.778807, lowerbound=1068838.778807, norm of subgrad 43.532077 stepsize= 1.000000 +dualbound = 1709628.418631, lowerbound=1068885.418631, norm of subgrad 1034.642169 dualbound = 1709628.418631, lowerbound=1068885.418631, norm of subgrad 44.064042 stepsize= 1.000000 +dualbound = 1710001.576105, lowerbound=1065716.576105, norm of subgrad 1033.105307 dualbound = 1710001.576105, lowerbound=1065716.576105, norm of subgrad 44.307533 stepsize= 1.000000 +dualbound = 1710322.246018, lowerbound=1068569.246018, norm of subgrad 1034.530930 dualbound = 1710322.246018, lowerbound=1068569.246018, norm of subgrad 44.784706 stepsize= 1.000000 +dualbound = 1710673.949933, lowerbound=1068657.949933, norm of subgrad 1034.537070 dualbound = 1710673.949933, lowerbound=1068657.949933, norm of subgrad 44.279836 stepsize= 1.000000 +dualbound = 1711064.656526, lowerbound=1069590.656526, norm of subgrad 1034.970365 dualbound = 1711064.656526, lowerbound=1069590.656526, norm of subgrad 44.313729 stepsize= 1.000000 +dualbound = 1711426.166081, lowerbound=1066891.166081, norm of subgrad 1033.647022 dualbound = 1711426.166081, lowerbound=1066891.166081, norm of subgrad 43.548933 stepsize= 1.000000 +dualbound = 1711792.124059, lowerbound=1069677.124059, norm of subgrad 1035.002475 dualbound = 1711792.124059, lowerbound=1069677.124059, norm of subgrad 43.805913 stepsize= 1.000000 +dualbound = 1712134.017285, lowerbound=1068912.017285, norm of subgrad 1034.621678 dualbound = 1712134.017285, lowerbound=1068912.017285, norm of subgrad 43.265381 stepsize= 1.000000 +dualbound = 1712513.463529, lowerbound=1066168.463529, norm of subgrad 1033.321084 dualbound = 1712513.463529, lowerbound=1066168.463529, norm of subgrad 44.310792 stepsize= 1.000000 +dualbound = 1712825.127413, lowerbound=1067955.127413, norm of subgrad 1034.203136 dualbound = 1712825.127413, lowerbound=1067955.127413, norm of subgrad 43.962073 stepsize= 1.000000 +dualbound = 1713188.947979, lowerbound=1069241.947979, norm of subgrad 1034.784977 dualbound = 1713188.947979, lowerbound=1069241.947979, norm of subgrad 43.609868 stepsize= 1.000000 +dualbound = 1713588.207847, lowerbound=1072165.207847, norm of subgrad 1036.197475 dualbound = 1713588.207847, lowerbound=1072165.207847, norm of subgrad 44.037028 stepsize= 1.000000 +dualbound = 1713911.076146, lowerbound=1065034.076146, norm of subgrad 1032.779297 dualbound = 1713911.076146, lowerbound=1065034.076146, norm of subgrad 43.839118 stepsize= 1.000000 +dualbound = 1714273.301984, lowerbound=1069714.301984, norm of subgrad 1035.033962 dualbound = 1714273.301984, lowerbound=1069714.301984, norm of subgrad 44.082035 stepsize= 1.000000 +dualbound = 1714631.546962, lowerbound=1070796.546962, norm of subgrad 1035.569190 dualbound = 1714631.546962, lowerbound=1070796.546962, norm of subgrad 44.331084 stepsize= 1.000000 +dualbound = 1714998.196894, lowerbound=1068467.196894, norm of subgrad 1034.453574 dualbound = 1714998.196894, lowerbound=1068467.196894, norm of subgrad 44.650307 stepsize= 1.000000 +dualbound = 1715333.013045, lowerbound=1067854.013045, norm of subgrad 1034.117504 dualbound = 1715333.013045, lowerbound=1067854.013045, norm of subgrad 43.356847 stepsize= 1.000000 +dualbound = 1715718.177401, lowerbound=1071045.177401, norm of subgrad 1035.695021 dualbound = 1715718.177401, lowerbound=1071045.177401, norm of subgrad 44.767894 stepsize= 1.000000 +dualbound = 1716058.610723, lowerbound=1065429.610723, norm of subgrad 1032.959637 dualbound = 1716058.610723, lowerbound=1065429.610723, norm of subgrad 43.777087 stepsize= 1.000000 +dualbound = 1716450.757491, lowerbound=1068266.757491, norm of subgrad 1034.332034 dualbound = 1716450.757491, lowerbound=1068266.757491, norm of subgrad 44.363800 stepsize= 1.000000 +dualbound = 1716743.356710, lowerbound=1071434.356710, norm of subgrad 1035.925845 dualbound = 1716743.356710, lowerbound=1071434.356710, norm of subgrad 44.728059 stepsize= 1.000000 +dualbound = 1717122.391229, lowerbound=1068002.391229, norm of subgrad 1034.213417 dualbound = 1717122.391229, lowerbound=1068002.391229, norm of subgrad 44.430108 stepsize= 1.000000 +dualbound = 1717479.914247, lowerbound=1069118.914247, norm of subgrad 1034.750653 dualbound = 1717479.914247, lowerbound=1069118.914247, norm of subgrad 44.130749 stepsize= 1.000000 +dualbound = 1717832.343204, lowerbound=1069890.343204, norm of subgrad 1035.125279 dualbound = 1717832.343204, lowerbound=1069890.343204, norm of subgrad 44.118352 stepsize= 1.000000 +dualbound = 1718210.988683, lowerbound=1069169.988683, norm of subgrad 1034.773400 dualbound = 1718210.988683, lowerbound=1069169.988683, norm of subgrad 44.324322 stepsize= 1.000000 +dualbound = 1718546.022973, lowerbound=1066393.022973, norm of subgrad 1033.434576 dualbound = 1718546.022973, lowerbound=1066393.022973, norm of subgrad 43.920773 stepsize= 1.000000 +dualbound = 1718911.903422, lowerbound=1069770.903422, norm of subgrad 1035.043914 dualbound = 1718911.903422, lowerbound=1069770.903422, norm of subgrad 43.713619 stepsize= 1.000000 +dualbound = 1719289.268829, lowerbound=1071552.268829, norm of subgrad 1035.924837 dualbound = 1719289.268829, lowerbound=1071552.268829, norm of subgrad 44.332442 stepsize= 1.000000 +dualbound = 1719625.955548, lowerbound=1067606.955548, norm of subgrad 1034.033827 dualbound = 1719625.955548, lowerbound=1067606.955548, norm of subgrad 44.223147 stepsize= 1.000000 +dualbound = 1719966.787517, lowerbound=1070767.787517, norm of subgrad 1035.537439 dualbound = 1719966.787517, lowerbound=1070767.787517, norm of subgrad 43.713064 stepsize= 1.000000 +dualbound = 1720348.678276, lowerbound=1065857.678276, norm of subgrad 1033.178919 dualbound = 1720348.678276, lowerbound=1065857.678276, norm of subgrad 44.529662 stepsize= 1.000000 +dualbound = 1720687.231596, lowerbound=1070763.231596, norm of subgrad 1035.507234 dualbound = 1720687.231596, lowerbound=1070763.231596, norm of subgrad 43.018058 stepsize= 1.000000 +dualbound = 1721075.281269, lowerbound=1066236.281269, norm of subgrad 1033.329706 dualbound = 1721075.281269, lowerbound=1066236.281269, norm of subgrad 43.841187 stepsize= 1.000000 +dualbound = 1721425.400065, lowerbound=1070346.400065, norm of subgrad 1035.321399 dualbound = 1721425.400065, lowerbound=1070346.400065, norm of subgrad 43.521475 stepsize= 1.000000 +dualbound = 1721756.627163, lowerbound=1070669.627163, norm of subgrad 1035.510805 dualbound = 1721756.627163, lowerbound=1070669.627163, norm of subgrad 44.093391 stepsize= 1.000000 +dualbound = 1722100.493859, lowerbound=1071180.493859, norm of subgrad 1035.743450 dualbound = 1722100.493859, lowerbound=1071180.493859, norm of subgrad 43.907479 stepsize= 1.000000 +dualbound = 1722478.460963, lowerbound=1068647.460963, norm of subgrad 1034.507352 dualbound = 1722478.460963, lowerbound=1068647.460963, norm of subgrad 43.999626 stepsize= 1.000000 +dualbound = 1722817.986267, lowerbound=1071036.986267, norm of subgrad 1035.653410 dualbound = 1722817.986267, lowerbound=1071036.986267, norm of subgrad 43.365024 stepsize= 1.000000 +dualbound = 1723167.473052, lowerbound=1070233.473052, norm of subgrad 1035.263480 dualbound = 1723167.473052, lowerbound=1070233.473052, norm of subgrad 43.433706 stepsize= 1.000000 +dualbound = 1723514.535209, lowerbound=1070143.535209, norm of subgrad 1035.276067 dualbound = 1723514.535209, lowerbound=1070143.535209, norm of subgrad 44.722054 stepsize= 1.000000 +dualbound = 1723861.267170, lowerbound=1069706.267170, norm of subgrad 1035.019453 dualbound = 1723861.267170, lowerbound=1069706.267170, norm of subgrad 43.654690 stepsize= 1.000000 +dualbound = 1724249.240803, lowerbound=1072858.240803, norm of subgrad 1036.545822 dualbound = 1724249.240803, lowerbound=1072858.240803, norm of subgrad 44.237695 stepsize= 1.000000 +dualbound = 1724565.176549, lowerbound=1068493.176549, norm of subgrad 1034.467581 dualbound = 1724565.176549, lowerbound=1068493.176549, norm of subgrad 44.112762 stepsize= 1.000000 +dualbound = 1724920.541752, lowerbound=1074024.541752, norm of subgrad 1037.091868 dualbound = 1724920.541752, lowerbound=1074024.541752, norm of subgrad 43.478330 stepsize= 1.000000 +dualbound = 1725290.022821, lowerbound=1066841.022821, norm of subgrad 1033.681297 dualbound = 1725290.022821, lowerbound=1066841.022821, norm of subgrad 45.005345 stepsize= 1.000000 +dualbound = 1725601.435951, lowerbound=1070348.435951, norm of subgrad 1035.343632 dualbound = 1725601.435951, lowerbound=1070348.435951, norm of subgrad 43.582257 stepsize= 1.000000 +dualbound = 1725978.789279, lowerbound=1068485.789279, norm of subgrad 1034.421959 dualbound = 1725978.789279, lowerbound=1068485.789279, norm of subgrad 43.821836 stepsize= 1.000000 +dualbound = 1726330.571444, lowerbound=1070184.571444, norm of subgrad 1035.274153 dualbound = 1726330.571444, lowerbound=1070184.571444, norm of subgrad 44.269427 stepsize= 1.000000 +dualbound = 1726672.395781, lowerbound=1068664.395781, norm of subgrad 1034.528586 dualbound = 1726672.395781, lowerbound=1068664.395781, norm of subgrad 43.895607 stepsize= 1.000000 +dualbound = 1727031.217498, lowerbound=1073727.217498, norm of subgrad 1036.967800 dualbound = 1727031.217498, lowerbound=1073727.217498, norm of subgrad 43.975240 stepsize= 1.000000 +dualbound = 1727385.147231, lowerbound=1067802.147231, norm of subgrad 1034.112734 dualbound = 1727385.147231, lowerbound=1067802.147231, norm of subgrad 44.055984 stepsize= 1.000000 +dualbound = 1727738.206264, lowerbound=1074715.206264, norm of subgrad 1037.430097 dualbound = 1727738.206264, lowerbound=1074715.206264, norm of subgrad 43.578194 stepsize= 1.000000 +dualbound = 1728096.507698, lowerbound=1066676.507698, norm of subgrad 1033.539311 dualbound = 1728096.507698, lowerbound=1066676.507698, norm of subgrad 43.420058 stepsize= 1.000000 +dualbound = 1728487.721638, lowerbound=1069199.721638, norm of subgrad 1034.779069 dualbound = 1728487.721638, lowerbound=1069199.721638, norm of subgrad 44.263009 stepsize= 1.000000 +dualbound = 1728780.775799, lowerbound=1068481.775799, norm of subgrad 1034.433070 dualbound = 1728780.775799, lowerbound=1068481.775799, norm of subgrad 43.163111 stepsize= 1.000000 +dualbound = 1729161.967981, lowerbound=1072063.967981, norm of subgrad 1036.124977 dualbound = 1729161.967981, lowerbound=1072063.967981, norm of subgrad 43.268836 stepsize= 1.000000 +dualbound = 1729505.392250, lowerbound=1069320.392250, norm of subgrad 1034.875061 dualbound = 1729505.392250, lowerbound=1069320.392250, norm of subgrad 44.602963 stepsize= 1.000000 +dualbound = 1729811.228584, lowerbound=1072011.228584, norm of subgrad 1036.173358 dualbound = 1729811.228584, lowerbound=1072011.228584, norm of subgrad 44.156951 stepsize= 1.000000 +dualbound = 1730192.544633, lowerbound=1072675.544633, norm of subgrad 1036.479399 dualbound = 1730192.544633, lowerbound=1072675.544633, norm of subgrad 44.668961 stepsize= 1.000000 +dualbound = 1730538.029619, lowerbound=1070224.029619, norm of subgrad 1035.270993 dualbound = 1730538.029619, lowerbound=1070224.029619, norm of subgrad 43.674764 stepsize= 1.000000 +dualbound = 1730903.086806, lowerbound=1067864.086806, norm of subgrad 1034.143649 dualbound = 1730903.086806, lowerbound=1067864.086806, norm of subgrad 44.204719 stepsize= 1.000000 +dualbound = 1731234.691201, lowerbound=1070031.691201, norm of subgrad 1035.191621 dualbound = 1731234.691201, lowerbound=1070031.691201, norm of subgrad 43.836108 stepsize= 1.000000 +dualbound = 1731587.871336, lowerbound=1071563.871336, norm of subgrad 1035.930920 dualbound = 1731587.871336, lowerbound=1071563.871336, norm of subgrad 44.070173 stepsize= 1.000000 +dualbound = 1731967.308019, lowerbound=1073006.308019, norm of subgrad 1036.630748 dualbound = 1731967.308019, lowerbound=1073006.308019, norm of subgrad 44.457133 stepsize= 1.000000 +dualbound = 1732282.657953, lowerbound=1072541.657953, norm of subgrad 1036.387311 dualbound = 1732282.657953, lowerbound=1072541.657953, norm of subgrad 43.270659 stepsize= 1.000000 +dualbound = 1732660.709909, lowerbound=1068111.709909, norm of subgrad 1034.226141 dualbound = 1732660.709909, lowerbound=1068111.709909, norm of subgrad 43.474728 stepsize= 1.000000 +dualbound = 1733017.449303, lowerbound=1068961.449303, norm of subgrad 1034.657648 dualbound = 1733017.449303, lowerbound=1068961.449303, norm of subgrad 43.723442 stepsize= 1.000000 +dualbound = 1733338.351436, lowerbound=1071903.351436, norm of subgrad 1036.118406 dualbound = 1733338.351436, lowerbound=1071903.351436, norm of subgrad 44.259486 stepsize= 1.000000 +dualbound = 1733698.199418, lowerbound=1069239.199418, norm of subgrad 1034.798144 dualbound = 1733698.199418, lowerbound=1069239.199418, norm of subgrad 43.907266 stepsize= 1.000000 +dualbound = 1734023.580116, lowerbound=1073164.580116, norm of subgrad 1036.703709 dualbound = 1734023.580116, lowerbound=1073164.580116, norm of subgrad 43.765063 stepsize= 1.000000 +dualbound = 1734398.410770, lowerbound=1068548.410770, norm of subgrad 1034.470111 dualbound = 1734398.410770, lowerbound=1068548.410770, norm of subgrad 44.213467 stepsize= 1.000000 +dualbound = 1734720.615446, lowerbound=1073706.615446, norm of subgrad 1036.956901 dualbound = 1734720.615446, lowerbound=1073706.615446, norm of subgrad 43.533949 stepsize= 1.000000 +dualbound = 1735125.835461, lowerbound=1068230.835461, norm of subgrad 1034.276479 dualbound = 1735125.835461, lowerbound=1068230.835461, norm of subgrad 43.614447 stepsize= 1.000000 +dualbound = 1735441.340203, lowerbound=1071412.340203, norm of subgrad 1035.865503 dualbound = 1735441.340203, lowerbound=1071412.340203, norm of subgrad 43.823564 stepsize= 1.000000 +dualbound = 1735784.193887, lowerbound=1070093.193887, norm of subgrad 1035.235816 dualbound = 1735784.193887, lowerbound=1070093.193887, norm of subgrad 44.304105 stepsize= 1.000000 +dualbound = 1736138.837352, lowerbound=1071875.837352, norm of subgrad 1036.058800 dualbound = 1736138.837352, lowerbound=1071875.837352, norm of subgrad 43.550470 stepsize= 1.000000 +dualbound = 1736484.041066, lowerbound=1070083.041066, norm of subgrad 1035.214007 dualbound = 1736484.041066, lowerbound=1070083.041066, norm of subgrad 43.934084 stepsize= 1.000000 +dualbound = 1736814.770431, lowerbound=1071293.770431, norm of subgrad 1035.825164 dualbound = 1736814.770431, lowerbound=1071293.770431, norm of subgrad 44.392898 stepsize= 1.000000 +dualbound = 1737169.352934, lowerbound=1074819.352934, norm of subgrad 1037.533784 dualbound = 1737169.352934, lowerbound=1074819.352934, norm of subgrad 44.850669 stepsize= 1.000000 +dualbound = 1737496.640265, lowerbound=1071399.640265, norm of subgrad 1035.838617 dualbound = 1737496.640265, lowerbound=1071399.640265, norm of subgrad 43.465933 stepsize= 1.000000 +dualbound = 1737914.155834, lowerbound=1068823.155834, norm of subgrad 1034.592266 dualbound = 1737914.155834, lowerbound=1068823.155834, norm of subgrad 44.446772 stepsize= 1.000000 +dualbound = 1738219.826539, lowerbound=1071190.826539, norm of subgrad 1035.706438 dualbound = 1738219.826539, lowerbound=1071190.826539, norm of subgrad 42.457870 stepsize= 1.000000 +dualbound = 1738605.307082, lowerbound=1069889.307082, norm of subgrad 1035.079855 dualbound = 1738605.307082, lowerbound=1069889.307082, norm of subgrad 43.433634 stepsize= 1.000000 +dualbound = 1738933.105830, lowerbound=1073276.105830, norm of subgrad 1036.764248 dualbound = 1738933.105830, lowerbound=1073276.105830, norm of subgrad 43.952233 stepsize= 1.000000 +dualbound = 1739249.849391, lowerbound=1073658.849391, norm of subgrad 1036.978712 dualbound = 1739249.849391, lowerbound=1073658.849391, norm of subgrad 44.528009 stepsize= 1.000000 +dualbound = 1739617.312782, lowerbound=1070447.312782, norm of subgrad 1035.394762 dualbound = 1739617.312782, lowerbound=1070447.312782, norm of subgrad 44.299700 stepsize= 1.000000 +dualbound = 1739975.108038, lowerbound=1073109.108038, norm of subgrad 1036.658144 dualbound = 1739975.108038, lowerbound=1073109.108038, norm of subgrad 43.689761 stepsize= 1.000000 +dualbound = 1740314.248985, lowerbound=1069659.248985, norm of subgrad 1034.997705 dualbound = 1740314.248985, lowerbound=1069659.248985, norm of subgrad 43.590606 stepsize= 1.000000 +dualbound = 1740679.963259, lowerbound=1069618.963259, norm of subgrad 1034.939594 dualbound = 1740679.963259, lowerbound=1069618.963259, norm of subgrad 42.973414 stepsize= 1.000000 +dualbound = 1741048.688237, lowerbound=1076042.688237, norm of subgrad 1038.099074 dualbound = 1741048.688237, lowerbound=1076042.688237, norm of subgrad 44.449128 stepsize= 1.000000 +dualbound = 1741333.987281, lowerbound=1067420.987281, norm of subgrad 1033.965661 dualbound = 1741333.987281, lowerbound=1067420.987281, norm of subgrad 44.150867 stepsize= 1.000000 +dualbound = 1741685.245094, lowerbound=1074877.245094, norm of subgrad 1037.541443 dualbound = 1741685.245094, lowerbound=1074877.245094, norm of subgrad 44.342506 stepsize= 1.000000 +dualbound = 1742048.414670, lowerbound=1070087.414670, norm of subgrad 1035.214188 dualbound = 1742048.414670, lowerbound=1070087.414670, norm of subgrad 44.092738 stepsize= 1.000000 +dualbound = 1742409.146523, lowerbound=1073606.146523, norm of subgrad 1036.915689 dualbound = 1742409.146523, lowerbound=1073606.146523, norm of subgrad 44.144443 stepsize= 1.000000 +dualbound = 1742741.867795, lowerbound=1068806.867795, norm of subgrad 1034.618223 dualbound = 1742741.867795, lowerbound=1068806.867795, norm of subgrad 44.280032 stepsize= 1.000000 +dualbound = 1743084.521235, lowerbound=1074822.521235, norm of subgrad 1037.481817 dualbound = 1743084.521235, lowerbound=1074822.521235, norm of subgrad 43.458641 stepsize= 1.000000 +dualbound = 1743470.995748, lowerbound=1069168.995748, norm of subgrad 1034.753109 dualbound = 1743470.995748, lowerbound=1069168.995748, norm of subgrad 43.948544 stepsize= 1.000000 +dualbound = 1743775.752578, lowerbound=1073359.752578, norm of subgrad 1036.838344 dualbound = 1743775.752578, lowerbound=1073359.752578, norm of subgrad 44.483220 stepsize= 1.000000 +dualbound = 1744121.973934, lowerbound=1071749.973934, norm of subgrad 1036.021223 dualbound = 1744121.973934, lowerbound=1071749.973934, norm of subgrad 44.002515 stepsize= 1.000000 +dualbound = 1744485.245502, lowerbound=1075918.245502, norm of subgrad 1038.047323 dualbound = 1744485.245502, lowerbound=1075918.245502, norm of subgrad 44.578824 stepsize= 1.000000 +dualbound = 1744822.193760, lowerbound=1069595.193760, norm of subgrad 1034.969175 dualbound = 1744822.193760, lowerbound=1069595.193760, norm of subgrad 43.622795 stepsize= 1.000000 +dualbound = 1745181.197883, lowerbound=1073149.197883, norm of subgrad 1036.663011 dualbound = 1745181.197883, lowerbound=1073149.197883, norm of subgrad 43.359014 stepsize= 1.000000 +dualbound = 1745525.292133, lowerbound=1069478.292133, norm of subgrad 1034.899170 dualbound = 1745525.292133, lowerbound=1069478.292133, norm of subgrad 43.383110 stepsize= 1.000000 +dualbound = 1745863.408019, lowerbound=1073873.408018, norm of subgrad 1037.032983 dualbound = 1745863.408019, lowerbound=1073873.408018, norm of subgrad 43.613254 stepsize= 1.000000 +dualbound = 1746210.774254, lowerbound=1069721.774254, norm of subgrad 1035.020664 dualbound = 1746210.774254, lowerbound=1069721.774254, norm of subgrad 43.512828 stepsize= 1.000000 +dualbound = 1746576.078281, lowerbound=1072324.078281, norm of subgrad 1036.277028 dualbound = 1746576.078281, lowerbound=1072324.078281, norm of subgrad 43.718463 stepsize= 1.000000 +dualbound = 1746900.866955, lowerbound=1069891.866955, norm of subgrad 1035.113456 dualbound = 1746900.866955, lowerbound=1069891.866955, norm of subgrad 43.506191 stepsize= 1.000000 +dualbound = 1747253.101459, lowerbound=1077697.101459, norm of subgrad 1038.904279 dualbound = 1747253.101459, lowerbound=1077697.101459, norm of subgrad 44.466105 stepsize= 1.000000 +dualbound = 1747563.814837, lowerbound=1070034.814837, norm of subgrad 1035.192646 dualbound = 1747563.814837, lowerbound=1070034.814837, norm of subgrad 43.585702 stepsize= 1.000000 +dualbound = 1747938.244998, lowerbound=1074116.244998, norm of subgrad 1037.123062 dualbound = 1747938.244998, lowerbound=1074116.244998, norm of subgrad 43.386981 stepsize= 1.000000 +dualbound = 1748302.677859, lowerbound=1073072.677859, norm of subgrad 1036.652149 dualbound = 1748302.677859, lowerbound=1073072.677859, norm of subgrad 44.038993 stepsize= 1.000000 +dualbound = 1748635.920746, lowerbound=1072648.920746, norm of subgrad 1036.428927 dualbound = 1748635.920746, lowerbound=1072648.920746, norm of subgrad 43.234742 stepsize= 1.000000 +dualbound = 1748994.139313, lowerbound=1072880.139313, norm of subgrad 1036.560726 dualbound = 1748994.139313, lowerbound=1072880.139313, norm of subgrad 44.002484 stepsize= 1.000000 +dualbound = 1749306.921337, lowerbound=1072787.921337, norm of subgrad 1036.533608 dualbound = 1749306.921337, lowerbound=1072787.921337, norm of subgrad 43.895125 stepsize= 1.000000 +dualbound = 1749667.454597, lowerbound=1073514.454597, norm of subgrad 1036.857972 dualbound = 1749667.454597, lowerbound=1073514.454597, norm of subgrad 43.823889 stepsize= 1.000000 +dualbound = 1750002.746998, lowerbound=1071779.746998, norm of subgrad 1036.002774 dualbound = 1750002.746998, lowerbound=1071779.746998, norm of subgrad 43.096315 stepsize= 1.000000 +dualbound = 1750373.216719, lowerbound=1072817.216719, norm of subgrad 1036.495160 dualbound = 1750373.216719, lowerbound=1072817.216719, norm of subgrad 43.306694 stepsize= 1.000000 +dualbound = 1750702.635300, lowerbound=1071736.635300, norm of subgrad 1035.995480 dualbound = 1750702.635300, lowerbound=1071736.635300, norm of subgrad 43.352262 stepsize= 1.000000 +dualbound = 1751036.073539, lowerbound=1074627.073539, norm of subgrad 1037.402079 dualbound = 1751036.073539, lowerbound=1074627.073539, norm of subgrad 43.697119 stepsize= 1.000000 +dualbound = 1751386.746682, lowerbound=1071700.746682, norm of subgrad 1035.967541 dualbound = 1751386.746682, lowerbound=1071700.746682, norm of subgrad 43.343663 stepsize= 1.000000 +dualbound = 1751741.522420, lowerbound=1073314.522420, norm of subgrad 1036.751910 dualbound = 1751741.522420, lowerbound=1073314.522420, norm of subgrad 43.529022 stepsize= 1.000000 +dualbound = 1752084.648639, lowerbound=1072366.648639, norm of subgrad 1036.293225 dualbound = 1752084.648639, lowerbound=1072366.648639, norm of subgrad 43.360422 stepsize= 1.000000 +dualbound = 1752391.139312, lowerbound=1072961.139312, norm of subgrad 1036.622467 dualbound = 1752391.139312, lowerbound=1072961.139312, norm of subgrad 43.948728 stepsize= 1.000000 +dualbound = 1752742.108501, lowerbound=1071553.108501, norm of subgrad 1035.920899 dualbound = 1752742.108501, lowerbound=1071553.108501, norm of subgrad 43.931415 stepsize= 1.000000 +dualbound = 1753105.038395, lowerbound=1072501.038395, norm of subgrad 1036.383152 dualbound = 1753105.038395, lowerbound=1072501.038395, norm of subgrad 44.180651 stepsize= 1.000000 +dualbound = 1753449.838202, lowerbound=1074617.838202, norm of subgrad 1037.361961 dualbound = 1753449.838202, lowerbound=1074617.838202, norm of subgrad 42.974409 stepsize= 1.000000 +dualbound = 1753808.488107, lowerbound=1070883.488107, norm of subgrad 1035.571576 dualbound = 1753808.488107, lowerbound=1070883.488107, norm of subgrad 43.401036 stepsize= 1.000000 +dualbound = 1754145.353588, lowerbound=1073027.353588, norm of subgrad 1036.624500 dualbound = 1754145.353588, lowerbound=1073027.353588, norm of subgrad 43.587446 stepsize= 1.000000 +dualbound = 1754471.559039, lowerbound=1075151.559039, norm of subgrad 1037.646163 dualbound = 1754471.559039, lowerbound=1075151.559039, norm of subgrad 43.407435 stepsize= 1.000000 +dualbound = 1754830.702390, lowerbound=1071020.702390, norm of subgrad 1035.688033 dualbound = 1754830.702390, lowerbound=1071020.702390, norm of subgrad 44.588601 stepsize= 1.000000 +dualbound = 1755156.815231, lowerbound=1074361.815231, norm of subgrad 1037.302663 dualbound = 1755156.815231, lowerbound=1074361.815231, norm of subgrad 44.284454 stepsize= 1.000000 +dualbound = 1755490.846922, lowerbound=1074156.846922, norm of subgrad 1037.168669 dualbound = 1755490.846922, lowerbound=1074156.846922, norm of subgrad 43.543446 stepsize= 1.000000 +dualbound = 1755852.895446, lowerbound=1071803.895446, norm of subgrad 1036.018772 dualbound = 1755852.895446, lowerbound=1071803.895446, norm of subgrad 43.509177 stepsize= 1.000000 +dualbound = 1756217.488227, lowerbound=1071420.488227, norm of subgrad 1035.846749 dualbound = 1756217.488227, lowerbound=1071420.488227, norm of subgrad 43.847381 stepsize= 1.000000 +dualbound = 1756528.128260, lowerbound=1075262.128260, norm of subgrad 1037.731241 dualbound = 1756528.128260, lowerbound=1075262.128260, norm of subgrad 43.984543 stepsize= 1.000000 +dualbound = 1756879.125621, lowerbound=1071843.125621, norm of subgrad 1036.084034 dualbound = 1756879.125621, lowerbound=1071843.125621, norm of subgrad 44.474682 stepsize= 1.000000 +dualbound = 1757216.062772, lowerbound=1073664.062772, norm of subgrad 1036.957117 dualbound = 1757216.062772, lowerbound=1073664.062772, norm of subgrad 44.192049 stepsize= 1.000000 +dualbound = 1757573.064610, lowerbound=1073134.064610, norm of subgrad 1036.660053 dualbound = 1757573.064610, lowerbound=1073134.064610, norm of subgrad 43.439634 stepsize= 1.000000 +dualbound = 1757924.763171, lowerbound=1072258.763171, norm of subgrad 1036.298588 dualbound = 1757924.763171, lowerbound=1072258.763171, norm of subgrad 44.807349 stepsize= 1.000000 +dualbound = 1758242.107741, lowerbound=1074405.107741, norm of subgrad 1037.266652 dualbound = 1758242.107741, lowerbound=1074405.107741, norm of subgrad 42.829249 stepsize= 1.000000 +dualbound = 1758624.650289, lowerbound=1074200.650289, norm of subgrad 1037.187375 dualbound = 1758624.650289, lowerbound=1074200.650289, norm of subgrad 44.040238 stepsize= 1.000000 +dualbound = 1758956.046182, lowerbound=1069858.046182, norm of subgrad 1035.123686 dualbound = 1758956.046182, lowerbound=1069858.046182, norm of subgrad 44.208550 stepsize= 1.000000 +dualbound = 1759286.582130, lowerbound=1075242.582130, norm of subgrad 1037.697732 dualbound = 1759286.582130, lowerbound=1075242.582130, norm of subgrad 43.640989 stepsize= 1.000000 +dualbound = 1759633.552148, lowerbound=1073156.552148, norm of subgrad 1036.684886 dualbound = 1759633.552148, lowerbound=1073156.552148, norm of subgrad 43.657417 stepsize= 1.000000 +dualbound = 1759987.804025, lowerbound=1076086.804025, norm of subgrad 1038.103465 dualbound = 1759987.804025, lowerbound=1076086.804025, norm of subgrad 43.889086 stepsize= 1.000000 +dualbound = 1760315.151123, lowerbound=1071128.151123, norm of subgrad 1035.717699 dualbound = 1760315.151123, lowerbound=1071128.151123, norm of subgrad 43.707518 stepsize= 1.000000 +dualbound = 1760640.989188, lowerbound=1072259.989188, norm of subgrad 1036.252377 dualbound = 1760640.989188, lowerbound=1072259.989188, norm of subgrad 43.414722 stepsize= 1.000000 +dualbound = 1761016.825745, lowerbound=1072569.825745, norm of subgrad 1036.406689 dualbound = 1761016.825745, lowerbound=1072569.825745, norm of subgrad 44.100301 stepsize= 1.000000 +dualbound = 1761338.154083, lowerbound=1074997.154083, norm of subgrad 1037.647413 dualbound = 1761338.154083, lowerbound=1074997.154083, norm of subgrad 45.125695 stepsize= 1.000000 +dualbound = 1761661.017309, lowerbound=1071311.017309, norm of subgrad 1035.819973 dualbound = 1761661.017309, lowerbound=1071311.017309, norm of subgrad 43.987080 stepsize= 1.000000 +dualbound = 1762030.549097, lowerbound=1073471.549097, norm of subgrad 1036.829566 dualbound = 1762030.549097, lowerbound=1073471.549097, norm of subgrad 43.743934 stepsize= 1.000000 +dualbound = 1762395.129398, lowerbound=1071573.129398, norm of subgrad 1035.899671 dualbound = 1762395.129398, lowerbound=1071573.129398, norm of subgrad 43.354127 stepsize= 1.000000 +dualbound = 1762728.825719, lowerbound=1076699.825719, norm of subgrad 1038.376534 dualbound = 1762728.825719, lowerbound=1076699.825719, norm of subgrad 43.124196 stepsize= 1.000000 +dualbound = 1763068.348663, lowerbound=1072771.348663, norm of subgrad 1036.501495 dualbound = 1763068.348663, lowerbound=1072771.348663, norm of subgrad 43.629382 stepsize= 1.000000 +dualbound = 1763406.914081, lowerbound=1074837.914081, norm of subgrad 1037.488272 dualbound = 1763406.914081, lowerbound=1074837.914081, norm of subgrad 43.388540 stepsize= 1.000000 +dualbound = 1763735.521446, lowerbound=1072807.521446, norm of subgrad 1036.524733 dualbound = 1763735.521446, lowerbound=1072807.521446, norm of subgrad 43.641808 stepsize= 1.000000 +dualbound = 1764093.123049, lowerbound=1078305.123049, norm of subgrad 1039.162703 dualbound = 1764093.123049, lowerbound=1078305.123049, norm of subgrad 43.721866 stepsize= 1.000000 +dualbound = 1764446.945428, lowerbound=1070000.945428, norm of subgrad 1035.159382 dualbound = 1764446.945428, lowerbound=1070000.945428, norm of subgrad 43.678626 stepsize= 1.000000 +dualbound = 1764759.856669, lowerbound=1076092.856669, norm of subgrad 1038.119385 dualbound = 1764759.856669, lowerbound=1076092.856669, norm of subgrad 43.725407 stepsize= 1.000000 +dualbound = 1765112.418119, lowerbound=1075561.418119, norm of subgrad 1037.842193 dualbound = 1765112.418119, lowerbound=1075561.418119, norm of subgrad 43.675639 stepsize= 1.000000 +dualbound = 1765466.893628, lowerbound=1072822.893628, norm of subgrad 1036.493075 dualbound = 1765466.893628, lowerbound=1072822.893628, norm of subgrad 43.005529 stepsize= 1.000000 +dualbound = 1765811.727027, lowerbound=1074058.727027, norm of subgrad 1037.088582 dualbound = 1765811.727027, lowerbound=1074058.727027, norm of subgrad 42.881621 stepsize= 1.000000 +dualbound = 1766134.027257, lowerbound=1074186.027257, norm of subgrad 1037.223229 dualbound = 1766134.027257, lowerbound=1074186.027257, norm of subgrad 44.365530 stepsize= 1.000000 +dualbound = 1766442.515633, lowerbound=1074785.515633, norm of subgrad 1037.463501 dualbound = 1766442.515633, lowerbound=1074785.515633, norm of subgrad 43.052159 stepsize= 1.000000 +dualbound = 1766831.732232, lowerbound=1074823.732232, norm of subgrad 1037.455412 dualbound = 1766831.732232, lowerbound=1074823.732232, norm of subgrad 43.349932 stepsize= 1.000000 +dualbound = 1767157.477669, lowerbound=1073696.477669, norm of subgrad 1036.947191 dualbound = 1767157.477669, lowerbound=1073696.477669, norm of subgrad 43.459699 stepsize= 1.000000 +dualbound = 1767487.679848, lowerbound=1074555.679848, norm of subgrad 1037.372006 dualbound = 1767487.679848, lowerbound=1074555.679848, norm of subgrad 43.763023 stepsize= 1.000000 +dualbound = 1767807.710505, lowerbound=1076199.710505, norm of subgrad 1038.141469 dualbound = 1767807.710505, lowerbound=1076199.710505, norm of subgrad 43.104880 stepsize= 1.000000 +dualbound = 1768179.834550, lowerbound=1071106.834550, norm of subgrad 1035.678442 dualbound = 1768179.834550, lowerbound=1071106.834550, norm of subgrad 43.533022 stepsize= 1.000000 +dualbound = 1768511.623989, lowerbound=1076241.623989, norm of subgrad 1038.185737 dualbound = 1768511.623989, lowerbound=1076241.623989, norm of subgrad 43.815402 stepsize= 1.000000 +dualbound = 1768843.447689, lowerbound=1075433.447689, norm of subgrad 1037.768976 dualbound = 1768843.447689, lowerbound=1075433.447689, norm of subgrad 43.160441 stepsize= 1.000000 +dualbound = 1769188.293448, lowerbound=1077591.293448, norm of subgrad 1038.851911 dualbound = 1769188.293448, lowerbound=1077591.293448, norm of subgrad 44.349135 stepsize= 1.000000 +dualbound = 1769496.260865, lowerbound=1073686.260865, norm of subgrad 1036.948533 dualbound = 1769496.260865, lowerbound=1073686.260865, norm of subgrad 43.404693 stepsize= 1.000000 +dualbound = 1769870.717360, lowerbound=1075970.717360, norm of subgrad 1038.041289 dualbound = 1769870.717360, lowerbound=1075970.717360, norm of subgrad 43.971087 stepsize= 1.000000 +dualbound = 1770168.708764, lowerbound=1074634.708764, norm of subgrad 1037.390336 dualbound = 1770168.708764, lowerbound=1074634.708764, norm of subgrad 42.918427 stepsize= 1.000000 +dualbound = 1770537.523367, lowerbound=1077491.523367, norm of subgrad 1038.748056 dualbound = 1770537.523367, lowerbound=1077491.523367, norm of subgrad 43.299129 stepsize= 1.000000 +dualbound = 1770859.128564, lowerbound=1074617.128564, norm of subgrad 1037.368849 dualbound = 1770859.128564, lowerbound=1074617.128564, norm of subgrad 42.878960 stepsize= 1.000000 +dualbound = 1771191.894273, lowerbound=1075527.894273, norm of subgrad 1037.853985 dualbound = 1771191.894273, lowerbound=1075527.894273, norm of subgrad 44.110834 stepsize= 1.000000 +dualbound = 1771504.200827, lowerbound=1076262.200827, norm of subgrad 1038.224061 dualbound = 1771504.200827, lowerbound=1076262.200827, norm of subgrad 44.264055 stepsize= 1.000000 +dualbound = 1771842.769865, lowerbound=1072550.769865, norm of subgrad 1036.394119 dualbound = 1771842.769865, lowerbound=1072550.769865, norm of subgrad 43.595516 stepsize= 1.000000 +dualbound = 1772209.265915, lowerbound=1077318.265915, norm of subgrad 1038.680059 dualbound = 1772209.265915, lowerbound=1077318.265915, norm of subgrad 43.640532 stepsize= 1.000000 +dualbound = 1772531.833628, lowerbound=1078950.833628, norm of subgrad 1039.465167 dualbound = 1772531.833628, lowerbound=1078950.833628, norm of subgrad 43.122705 stepsize= 1.000000 +dualbound = 1772873.788690, lowerbound=1070710.788690, norm of subgrad 1035.546131 dualbound = 1772873.788690, lowerbound=1070710.788690, norm of subgrad 44.575274 stepsize= 1.000000 +dualbound = 1773188.912528, lowerbound=1075910.912528, norm of subgrad 1038.052461 dualbound = 1773188.912528, lowerbound=1075910.912528, norm of subgrad 44.239392 stepsize= 1.000000 +dualbound = 1773512.346969, lowerbound=1073408.346969, norm of subgrad 1036.820306 dualbound = 1773512.346969, lowerbound=1073408.346969, norm of subgrad 43.719955 stepsize= 1.000000 +dualbound = 1773913.982860, lowerbound=1077101.982860, norm of subgrad 1038.551387 dualbound = 1773913.982860, lowerbound=1077101.982860, norm of subgrad 43.458439 stepsize= 1.000000 +dualbound = 1774238.542570, lowerbound=1072356.542570, norm of subgrad 1036.303306 dualbound = 1774238.542570, lowerbound=1072356.542570, norm of subgrad 43.503560 stepsize= 1.000000 +dualbound = 1774539.128568, lowerbound=1077660.128568, norm of subgrad 1038.884079 dualbound = 1774539.128568, lowerbound=1077660.128568, norm of subgrad 43.824491 stepsize= 1.000000 +dualbound = 1774881.161478, lowerbound=1074591.161477, norm of subgrad 1037.414171 dualbound = 1774881.161478, lowerbound=1074591.161477, norm of subgrad 44.486323 stepsize= 1.000000 +dualbound = 1775198.858882, lowerbound=1079232.858882, norm of subgrad 1039.638331 dualbound = 1775198.858882, lowerbound=1079232.858882, norm of subgrad 43.962454 stepsize= 1.000000 +dualbound = 1775560.651165, lowerbound=1073436.651165, norm of subgrad 1036.788624 dualbound = 1775560.651165, lowerbound=1073436.651165, norm of subgrad 43.078908 stepsize= 1.000000 +dualbound = 1775917.618963, lowerbound=1075595.618963, norm of subgrad 1037.819647 dualbound = 1775917.618963, lowerbound=1075595.618963, norm of subgrad 42.789810 stepsize= 1.000000 +dualbound = 1776259.334434, lowerbound=1074113.334434, norm of subgrad 1037.123105 dualbound = 1776259.334434, lowerbound=1074113.334434, norm of subgrad 43.043181 stepsize= 1.000000 +dualbound = 1776573.035114, lowerbound=1075860.035114, norm of subgrad 1037.964853 dualbound = 1776573.035114, lowerbound=1075860.035114, norm of subgrad 42.716515 stepsize= 1.000000 +dualbound = 1776896.514884, lowerbound=1074026.514884, norm of subgrad 1037.146815 dualbound = 1776896.514884, lowerbound=1074026.514884, norm of subgrad 44.390086 stepsize= 1.000000 +dualbound = 1777215.261518, lowerbound=1076483.261518, norm of subgrad 1038.309810 dualbound = 1777215.261518, lowerbound=1076483.261518, norm of subgrad 43.849135 stepsize= 1.000000 +dualbound = 1777560.276569, lowerbound=1073258.276569, norm of subgrad 1036.748415 dualbound = 1777560.276569, lowerbound=1073258.276569, norm of subgrad 43.977438 stepsize= 1.000000 +dualbound = 1777904.173293, lowerbound=1078812.173293, norm of subgrad 1039.406645 dualbound = 1777904.173293, lowerbound=1078812.173293, norm of subgrad 43.564857 stepsize= 1.000000 +dualbound = 1778259.569614, lowerbound=1075656.569614, norm of subgrad 1037.882252 dualbound = 1778259.569614, lowerbound=1075656.569614, norm of subgrad 43.570590 stepsize= 1.000000 +dualbound = 1778582.899287, lowerbound=1076827.899287, norm of subgrad 1038.431943 dualbound = 1778582.899287, lowerbound=1076827.899287, norm of subgrad 42.852417 stepsize= 1.000000 +dualbound = 1778934.684905, lowerbound=1074105.684905, norm of subgrad 1037.138701 dualbound = 1778934.684905, lowerbound=1074105.684905, norm of subgrad 43.620931 stepsize= 1.000000 +dualbound = 1779256.879230, lowerbound=1075316.879230, norm of subgrad 1037.707993 dualbound = 1779256.879230, lowerbound=1075316.879230, norm of subgrad 42.932439 stepsize= 1.000000 +dualbound = 1779595.705672, lowerbound=1074767.705672, norm of subgrad 1037.444796 dualbound = 1779595.705672, lowerbound=1074767.705672, norm of subgrad 43.160473 stepsize= 1.000000 +dualbound = 1779940.392940, lowerbound=1080348.392940, norm of subgrad 1040.127104 dualbound = 1779940.392940, lowerbound=1080348.392940, norm of subgrad 43.135684 stepsize= 1.000000 +dualbound = 1780238.471842, lowerbound=1074035.471842, norm of subgrad 1037.139080 dualbound = 1780238.471842, lowerbound=1074035.471842, norm of subgrad 43.818705 stepsize= 1.000000 +dualbound = 1780569.700278, lowerbound=1074856.700278, norm of subgrad 1037.484795 dualbound = 1780569.700278, lowerbound=1074856.700278, norm of subgrad 43.002656 stepsize= 1.000000 +dualbound = 1780925.194584, lowerbound=1075116.194584, norm of subgrad 1037.602619 dualbound = 1780925.194584, lowerbound=1075116.194584, norm of subgrad 43.110258 stepsize= 1.000000 +dualbound = 1781270.944016, lowerbound=1078229.944016, norm of subgrad 1039.121718 dualbound = 1781270.944016, lowerbound=1078229.944016, norm of subgrad 43.471248 stepsize= 1.000000 +dualbound = 1781571.517648, lowerbound=1077587.517648, norm of subgrad 1038.845281 dualbound = 1781571.517648, lowerbound=1077587.517648, norm of subgrad 43.732981 stepsize= 1.000000 +dualbound = 1781909.373855, lowerbound=1075598.373855, norm of subgrad 1037.845063 dualbound = 1781909.373855, lowerbound=1075598.373855, norm of subgrad 43.149232 stepsize= 1.000000 +dualbound = 1782285.269437, lowerbound=1076153.269437, norm of subgrad 1038.110914 dualbound = 1782285.269437, lowerbound=1076153.269437, norm of subgrad 43.553365 stepsize= 1.000000 +dualbound = 1782590.609447, lowerbound=1076491.609447, norm of subgrad 1038.287344 dualbound = 1782590.609447, lowerbound=1076491.609447, norm of subgrad 43.062048 stepsize= 1.000000 +dualbound = 1782925.062051, lowerbound=1074652.062051, norm of subgrad 1037.407857 dualbound = 1782925.062051, lowerbound=1074652.062051, norm of subgrad 43.559759 stepsize= 1.000000 +dualbound = 1783246.348334, lowerbound=1077856.348334, norm of subgrad 1038.975143 dualbound = 1783246.348334, lowerbound=1077856.348334, norm of subgrad 43.980522 stepsize= 1.000000 +dualbound = 1783558.170496, lowerbound=1070866.170496, norm of subgrad 1035.593632 dualbound = 1783558.170496, lowerbound=1070866.170496, norm of subgrad 43.586949 stepsize= 1.000000 +dualbound = 1783923.008481, lowerbound=1082048.008481, norm of subgrad 1040.940925 dualbound = 1783923.008481, lowerbound=1082048.008481, norm of subgrad 43.299399 stepsize= 1.000000 +dualbound = 1784271.746112, lowerbound=1072924.746112, norm of subgrad 1036.555713 dualbound = 1784271.746112, lowerbound=1072924.746112, norm of subgrad 43.263583 stepsize= 1.000000 +dualbound = 1784584.719599, lowerbound=1080580.719599, norm of subgrad 1040.241183 dualbound = 1784584.719599, lowerbound=1080580.719599, norm of subgrad 42.824917 stepsize= 1.000000 +dualbound = 1784934.900221, lowerbound=1071686.900221, norm of subgrad 1035.929969 dualbound = 1784934.900221, lowerbound=1071686.900221, norm of subgrad 42.593199 stepsize= 1.000000 +dualbound = 1785282.988582, lowerbound=1079902.988582, norm of subgrad 1039.908644 dualbound = 1785282.988582, lowerbound=1079902.988582, norm of subgrad 43.070737 stepsize= 1.000000 +dualbound = 1785602.457071, lowerbound=1075670.457071, norm of subgrad 1037.895687 dualbound = 1785602.457071, lowerbound=1075670.457071, norm of subgrad 43.318224 stepsize= 1.000000 +dualbound = 1785929.018786, lowerbound=1077572.018786, norm of subgrad 1038.813274 dualbound = 1785929.018786, lowerbound=1077572.018786, norm of subgrad 43.446078 stepsize= 1.000000 +dualbound = 1786227.247884, lowerbound=1071786.247884, norm of subgrad 1036.032938 dualbound = 1786227.247884, lowerbound=1071786.247884, norm of subgrad 43.315460 stepsize= 1.000000 +dualbound = 1786581.919780, lowerbound=1078094.919780, norm of subgrad 1039.065407 dualbound = 1786581.919780, lowerbound=1078094.919780, norm of subgrad 43.779812 stepsize= 1.000000 +dualbound = 1786931.292105, lowerbound=1077469.292105, norm of subgrad 1038.782601 dualbound = 1786931.292105, lowerbound=1077469.292105, norm of subgrad 44.151697 stepsize= 1.000000 +dualbound = 1787259.196470, lowerbound=1075750.196470, norm of subgrad 1037.945662 dualbound = 1787259.196470, lowerbound=1075750.196470, norm of subgrad 43.691010 stepsize= 1.000000 +dualbound = 1787602.042506, lowerbound=1077655.042506, norm of subgrad 1038.827725 dualbound = 1787602.042506, lowerbound=1077655.042506, norm of subgrad 43.021460 stepsize= 1.000000 +dualbound = 1787937.918763, lowerbound=1075985.918763, norm of subgrad 1038.058244 dualbound = 1787937.918763, lowerbound=1075985.918763, norm of subgrad 43.759299 stepsize= 1.000000 +dualbound = 1788267.610513, lowerbound=1075603.610513, norm of subgrad 1037.861075 dualbound = 1788267.610513, lowerbound=1075603.610513, norm of subgrad 43.378471 stepsize= 1.000000 +dualbound = 1788608.052215, lowerbound=1074837.052215, norm of subgrad 1037.451229 dualbound = 1788608.052215, lowerbound=1074837.052215, norm of subgrad 42.525777 stepsize= 1.000000 +dualbound = 1788954.331647, lowerbound=1078719.331647, norm of subgrad 1039.382187 dualbound = 1788954.331647, lowerbound=1078719.331647, norm of subgrad 44.071299 stepsize= 1.000000 +dualbound = 1789239.346835, lowerbound=1077445.346835, norm of subgrad 1038.741713 dualbound = 1789239.346835, lowerbound=1077445.346835, norm of subgrad 42.708491 stepsize= 1.000000 +dualbound = 1789624.454120, lowerbound=1078829.454120, norm of subgrad 1039.392830 dualbound = 1789624.454120, lowerbound=1078829.454120, norm of subgrad 43.509853 stepsize= 1.000000 +dualbound = 1789936.836093, lowerbound=1075329.836093, norm of subgrad 1037.731100 dualbound = 1789936.836093, lowerbound=1075329.836093, norm of subgrad 43.224784 stepsize= 1.000000 +dualbound = 1790259.553074, lowerbound=1074640.553074, norm of subgrad 1037.429300 dualbound = 1790259.553074, lowerbound=1074640.553074, norm of subgrad 44.064918 stepsize= 1.000000 +dualbound = 1790582.512128, lowerbound=1080082.512128, norm of subgrad 1040.036784 dualbound = 1790582.512128, lowerbound=1080082.512128, norm of subgrad 43.783091 stepsize= 1.000000 +dualbound = 1790920.441853, lowerbound=1077217.441853, norm of subgrad 1038.658963 dualbound = 1790920.441853, lowerbound=1077217.441853, norm of subgrad 43.965097 stepsize= 1.000000 +dualbound = 1791277.889533, lowerbound=1072562.889533, norm of subgrad 1036.392247 dualbound = 1791277.889533, lowerbound=1072562.889533, norm of subgrad 43.628519 stepsize= 1.000000 +dualbound = 1791593.043188, lowerbound=1078945.043188, norm of subgrad 1039.495091 dualbound = 1791593.043188, lowerbound=1078945.043188, norm of subgrad 43.819558 stepsize= 1.000000 +dualbound = 1791928.150474, lowerbound=1076200.150474, norm of subgrad 1038.131085 dualbound = 1791928.150474, lowerbound=1076200.150474, norm of subgrad 43.024496 stepsize= 1.000000 +dualbound = 1792279.627787, lowerbound=1081303.627787, norm of subgrad 1040.605414 dualbound = 1792279.627787, lowerbound=1081303.627787, norm of subgrad 43.674676 stepsize= 1.000000 +dualbound = 1792580.591132, lowerbound=1074972.591132, norm of subgrad 1037.590281 dualbound = 1792580.591132, lowerbound=1074972.591132, norm of subgrad 43.840202 stepsize= 1.000000 +dualbound = 1792911.801229, lowerbound=1077474.801229, norm of subgrad 1038.773701 dualbound = 1792911.801229, lowerbound=1077474.801229, norm of subgrad 43.671617 stepsize= 1.000000 +dualbound = 1793237.262114, lowerbound=1079256.262114, norm of subgrad 1039.642853 dualbound = 1793237.262114, lowerbound=1079256.262114, norm of subgrad 43.891467 stepsize= 1.000000 +dualbound = 1793598.507465, lowerbound=1076930.507465, norm of subgrad 1038.501087 dualbound = 1793598.507465, lowerbound=1076930.507465, norm of subgrad 43.763516 stepsize= 1.000000 +dualbound = 1793929.426976, lowerbound=1077204.426976, norm of subgrad 1038.622851 dualbound = 1793929.426976, lowerbound=1077204.426976, norm of subgrad 43.173134 stepsize= 1.000000 +dualbound = 1794239.599893, lowerbound=1074974.599893, norm of subgrad 1037.566191 dualbound = 1794239.599893, lowerbound=1074974.599893, norm of subgrad 43.349428 stepsize= 1.000000 +dualbound = 1794593.965697, lowerbound=1077586.965697, norm of subgrad 1038.806992 dualbound = 1794593.965697, lowerbound=1077586.965697, norm of subgrad 43.443824 stepsize= 1.000000 +dualbound = 1794915.506440, lowerbound=1076507.506440, norm of subgrad 1038.334968 dualbound = 1794915.506440, lowerbound=1076507.506440, norm of subgrad 44.198877 stepsize= 1.000000 +dualbound = 1795228.018544, lowerbound=1078856.018544, norm of subgrad 1039.465256 dualbound = 1795228.018544, lowerbound=1078856.018544, norm of subgrad 44.096622 stepsize= 1.000000 +dualbound = 1795587.157633, lowerbound=1074009.157633, norm of subgrad 1037.091682 dualbound = 1795587.157633, lowerbound=1074009.157633, norm of subgrad 43.693696 stepsize= 1.000000 +dualbound = 1795910.864899, lowerbound=1078014.864899, norm of subgrad 1039.014853 dualbound = 1795910.864899, lowerbound=1078014.864899, norm of subgrad 43.135916 stepsize= 1.000000 +dualbound = 1796254.317114, lowerbound=1078448.317114, norm of subgrad 1039.243627 dualbound = 1796254.317114, lowerbound=1078448.317114, norm of subgrad 43.845778 stepsize= 1.000000 +dualbound = 1796577.730265, lowerbound=1077844.730265, norm of subgrad 1038.945008 dualbound = 1796577.730265, lowerbound=1077844.730265, norm of subgrad 43.421344 stepsize= 1.000000 +dualbound = 1796930.546129, lowerbound=1076919.546129, norm of subgrad 1038.497735 dualbound = 1796930.546129, lowerbound=1076919.546129, norm of subgrad 43.712880 stepsize= 1.000000 +dualbound = 1797227.932797, lowerbound=1078136.932797, norm of subgrad 1039.100059 dualbound = 1797227.932797, lowerbound=1078136.932797, norm of subgrad 43.467076 stepsize= 1.000000 +dualbound = 1797574.669107, lowerbound=1080908.669107, norm of subgrad 1040.429079 dualbound = 1797574.669107, lowerbound=1080908.669107, norm of subgrad 43.940145 stepsize= 1.000000 +dualbound = 1797890.211865, lowerbound=1075404.211865, norm of subgrad 1037.772717 dualbound = 1797890.211865, lowerbound=1075404.211865, norm of subgrad 43.399801 stepsize= 1.000000 +dualbound = 1798252.066137, lowerbound=1079511.066137, norm of subgrad 1039.775488 dualbound = 1798252.066137, lowerbound=1079511.066137, norm of subgrad 44.540479 stepsize= 1.000000 +dualbound = 1798545.334166, lowerbound=1076029.334166, norm of subgrad 1038.068078 dualbound = 1798545.334166, lowerbound=1076029.334166, norm of subgrad 43.003116 stepsize= 1.000000 +dualbound = 1798934.522341, lowerbound=1077651.522341, norm of subgrad 1038.835176 dualbound = 1798934.522341, lowerbound=1077651.522341, norm of subgrad 43.774287 stepsize= 1.000000 +dualbound = 1799234.085793, lowerbound=1076379.085793, norm of subgrad 1038.242306 dualbound = 1799234.085793, lowerbound=1076379.085793, norm of subgrad 43.215315 stepsize= 1.000000 +dualbound = 1799563.356360, lowerbound=1076835.356360, norm of subgrad 1038.460570 dualbound = 1799563.356360, lowerbound=1076835.356360, norm of subgrad 43.523219 stepsize= 1.000000 +dualbound = 1799903.368149, lowerbound=1078925.368149, norm of subgrad 1039.442335 dualbound = 1799903.368149, lowerbound=1078925.368149, norm of subgrad 43.069848 stepsize= 1.000000 +dualbound = 1800240.976715, lowerbound=1075618.976715, norm of subgrad 1037.881967 dualbound = 1800240.976715, lowerbound=1075618.976715, norm of subgrad 43.790508 stepsize= 1.000000 +dualbound = 1800563.831876, lowerbound=1077983.831876, norm of subgrad 1039.006175 dualbound = 1800563.831876, lowerbound=1077983.831876, norm of subgrad 43.276497 stepsize= 1.000000 +dualbound = 1800880.128532, lowerbound=1079134.128532, norm of subgrad 1039.594213 dualbound = 1800880.128532, lowerbound=1079134.128532, norm of subgrad 44.026091 stepsize= 1.000000 +dualbound = 1801217.733462, lowerbound=1079784.733462, norm of subgrad 1039.898425 dualbound = 1801217.733462, lowerbound=1079784.733462, norm of subgrad 44.063646 stepsize= 1.000000 +dualbound = 1801534.327589, lowerbound=1076027.327589, norm of subgrad 1038.083969 dualbound = 1801534.327589, lowerbound=1076027.327589, norm of subgrad 43.676013 stepsize= 1.000000 +dualbound = 1801884.925969, lowerbound=1078248.925969, norm of subgrad 1039.154428 dualbound = 1801884.925969, lowerbound=1078248.925969, norm of subgrad 44.086261 stepsize= 1.000000 +dualbound = 1802221.085466, lowerbound=1077782.085466, norm of subgrad 1038.905715 dualbound = 1802221.085466, lowerbound=1077782.085466, norm of subgrad 43.349273 stepsize= 1.000000 +dualbound = 1802561.366324, lowerbound=1077991.366324, norm of subgrad 1038.985258 dualbound = 1802561.366324, lowerbound=1077991.366324, norm of subgrad 42.886838 stepsize= 1.000000 +dualbound = 1802901.674564, lowerbound=1076859.674564, norm of subgrad 1038.461687 dualbound = 1802901.674564, lowerbound=1076859.674564, norm of subgrad 43.397099 stepsize= 1.000000 +dualbound = 1803224.633680, lowerbound=1080417.633680, norm of subgrad 1040.175771 dualbound = 1803224.633680, lowerbound=1080417.633680, norm of subgrad 43.254585 stepsize= 1.000000 +dualbound = 1803541.256828, lowerbound=1075347.256828, norm of subgrad 1037.752984 dualbound = 1803541.256828, lowerbound=1075347.256828, norm of subgrad 43.596137 stepsize= 1.000000 +dualbound = 1803848.403222, lowerbound=1081996.403222, norm of subgrad 1040.962249 dualbound = 1803848.403222, lowerbound=1081996.403222, norm of subgrad 43.739529 stepsize= 1.000000 +dualbound = 1804193.540732, lowerbound=1079493.540732, norm of subgrad 1039.755039 dualbound = 1804193.540732, lowerbound=1079493.540732, norm of subgrad 44.069689 stepsize= 1.000000 +dualbound = 1804529.283660, lowerbound=1074654.283660, norm of subgrad 1037.403144 dualbound = 1804529.283660, lowerbound=1074654.283660, norm of subgrad 43.436654 stepsize= 1.000000 +dualbound = 1804851.345889, lowerbound=1077661.345889, norm of subgrad 1038.856749 dualbound = 1804851.345889, lowerbound=1077661.345889, norm of subgrad 43.405786 stepsize= 1.000000 +dualbound = 1805186.025934, lowerbound=1080275.025934, norm of subgrad 1040.153847 dualbound = 1805186.025934, lowerbound=1080275.025934, norm of subgrad 44.493596 stepsize= 1.000000 +dualbound = 1805528.912484, lowerbound=1080080.912484, norm of subgrad 1040.004766 dualbound = 1805528.912484, lowerbound=1080080.912484, norm of subgrad 43.265304 stepsize= 1.000000 +dualbound = 1805872.424722, lowerbound=1077864.424722, norm of subgrad 1038.940530 dualbound = 1805872.424722, lowerbound=1077864.424722, norm of subgrad 43.318728 stepsize= 1.000000 +dualbound = 1806178.236118, lowerbound=1077074.236118, norm of subgrad 1038.609280 dualbound = 1806178.236118, lowerbound=1077074.236118, norm of subgrad 44.054641 stepsize= 1.000000 +dualbound = 1806502.598664, lowerbound=1079985.598664, norm of subgrad 1039.951248 dualbound = 1806502.598664, lowerbound=1079985.598664, norm of subgrad 42.864467 stepsize= 1.000000 +dualbound = 1806852.093890, lowerbound=1076690.093890, norm of subgrad 1038.408443 dualbound = 1806852.093890, lowerbound=1076690.093890, norm of subgrad 44.175731 stepsize= 1.000000 +dualbound = 1807165.176653, lowerbound=1079519.176653, norm of subgrad 1039.752459 dualbound = 1807165.176653, lowerbound=1079519.176653, norm of subgrad 43.348388 stepsize= 1.000000 +dualbound = 1807508.329389, lowerbound=1078737.329389, norm of subgrad 1039.371603 dualbound = 1807508.329389, lowerbound=1078737.329389, norm of subgrad 43.579270 stepsize= 1.000000 +dualbound = 1807824.163668, lowerbound=1078962.163668, norm of subgrad 1039.530261 dualbound = 1807824.163668, lowerbound=1078962.163668, norm of subgrad 44.461605 stepsize= 1.000000 +dualbound = 1808120.810974, lowerbound=1079192.810974, norm of subgrad 1039.600313 dualbound = 1808120.810974, lowerbound=1079192.810974, norm of subgrad 43.274095 stepsize= 1.000000 +dualbound = 1808513.137209, lowerbound=1081036.137209, norm of subgrad 1040.451891 dualbound = 1808513.137209, lowerbound=1081036.137209, norm of subgrad 43.546828 stepsize= 1.000000 +dualbound = 1808814.222290, lowerbound=1076790.222290, norm of subgrad 1038.455691 dualbound = 1808814.222290, lowerbound=1076790.222290, norm of subgrad 43.601434 stepsize= 1.000000 +dualbound = 1809138.000637, lowerbound=1080466.000637, norm of subgrad 1040.225937 dualbound = 1809138.000637, lowerbound=1080466.000637, norm of subgrad 43.906473 stepsize= 1.000000 +dualbound = 1809484.662916, lowerbound=1076372.662916, norm of subgrad 1038.254142 dualbound = 1809484.662916, lowerbound=1076372.662916, norm of subgrad 44.109662 stepsize= 1.000000 +dualbound = 1809810.350740, lowerbound=1078837.350740, norm of subgrad 1039.396147 dualbound = 1809810.350740, lowerbound=1078837.350740, norm of subgrad 42.809903 stepsize= 1.000000 +dualbound = 1810158.220657, lowerbound=1080707.220657, norm of subgrad 1040.324575 dualbound = 1810158.220657, lowerbound=1080707.220657, norm of subgrad 43.770651 stepsize= 1.000000 +dualbound = 1810456.074480, lowerbound=1077370.074480, norm of subgrad 1038.716552 dualbound = 1810456.074480, lowerbound=1077370.074480, norm of subgrad 43.126023 stepsize= 1.000000 +dualbound = 1810794.052475, lowerbound=1082280.052475, norm of subgrad 1041.067266 dualbound = 1810794.052475, lowerbound=1082280.052475, norm of subgrad 43.347180 stepsize= 1.000000 +dualbound = 1811128.670686, lowerbound=1077061.670686, norm of subgrad 1038.564235 dualbound = 1811128.670686, lowerbound=1077061.670686, norm of subgrad 43.458235 stepsize= 1.000000 +dualbound = 1811447.335798, lowerbound=1082160.335798, norm of subgrad 1041.010728 dualbound = 1811447.335798, lowerbound=1082160.335798, norm of subgrad 43.147017 stepsize= 1.000000 +dualbound = 1811790.542352, lowerbound=1076845.542352, norm of subgrad 1038.461141 dualbound = 1811790.542352, lowerbound=1076845.542352, norm of subgrad 43.579887 stepsize= 1.000000 +dualbound = 1812111.734325, lowerbound=1080830.734325, norm of subgrad 1040.383455 dualbound = 1812111.734325, lowerbound=1080830.734325, norm of subgrad 43.453331 stepsize= 1.000000 +dualbound = 1812437.466676, lowerbound=1080711.466676, norm of subgrad 1040.316042 dualbound = 1812437.466676, lowerbound=1080711.466676, norm of subgrad 43.263522 stepsize= 1.000000 +dualbound = 1812770.048457, lowerbound=1078134.048457, norm of subgrad 1039.131873 dualbound = 1812770.048457, lowerbound=1078134.048457, norm of subgrad 44.649544 stepsize= 1.000000 +dualbound = 1813069.201060, lowerbound=1080926.201060, norm of subgrad 1040.429816 dualbound = 1813069.201060, lowerbound=1080926.201060, norm of subgrad 43.210561 stepsize= 1.000000 +dualbound = 1813421.609628, lowerbound=1080489.609628, norm of subgrad 1040.209407 dualbound = 1813421.609628, lowerbound=1080489.609628, norm of subgrad 43.570731 stepsize= 1.000000 +dualbound = 1813742.775641, lowerbound=1080095.775641, norm of subgrad 1040.048449 dualbound = 1813742.775641, lowerbound=1080095.775641, norm of subgrad 43.888108 stepsize= 1.000000 +dualbound = 1814059.024941, lowerbound=1079589.024941, norm of subgrad 1039.826921 dualbound = 1814059.024941, lowerbound=1079589.024941, norm of subgrad 44.353684 stepsize= 1.000000 +dualbound = 1814363.802419, lowerbound=1082297.802419, norm of subgrad 1041.126699 dualbound = 1814363.802419, lowerbound=1082297.802419, norm of subgrad 44.178926 stepsize= 1.000000 +dualbound = 1814710.570137, lowerbound=1078069.570137, norm of subgrad 1039.051765 dualbound = 1814710.570137, lowerbound=1078069.570137, norm of subgrad 43.655100 stepsize= 1.000000 +dualbound = 1815038.147897, lowerbound=1081525.147897, norm of subgrad 1040.705601 dualbound = 1815038.147897, lowerbound=1081525.147897, norm of subgrad 43.250176 stepsize= 1.000000 +dualbound = 1815370.614039, lowerbound=1078295.614039, norm of subgrad 1039.184110 dualbound = 1815370.614039, lowerbound=1078295.614039, norm of subgrad 44.050722 stepsize= 1.000000 +dualbound = 1815677.036973, lowerbound=1082390.036973, norm of subgrad 1041.142179 dualbound = 1815677.036973, lowerbound=1082390.036973, norm of subgrad 43.513480 stepsize= 1.000000 +dualbound = 1816026.580460, lowerbound=1079194.580460, norm of subgrad 1039.598759 dualbound = 1816026.580460, lowerbound=1079194.580460, norm of subgrad 43.824006 stepsize= 1.000000 +dualbound = 1816333.472499, lowerbound=1079326.472499, norm of subgrad 1039.671329 dualbound = 1816333.472499, lowerbound=1079326.472499, norm of subgrad 43.553324 stepsize= 1.000000 +dualbound = 1816662.995126, lowerbound=1079905.995126, norm of subgrad 1039.941342 dualbound = 1816662.995126, lowerbound=1079905.995126, norm of subgrad 43.606452 stepsize= 1.000000 +dualbound = 1817005.064937, lowerbound=1081715.064937, norm of subgrad 1040.777625 dualbound = 1817005.064937, lowerbound=1081715.064937, norm of subgrad 42.954276 stepsize= 1.000000 +dualbound = 1817332.220055, lowerbound=1078563.220055, norm of subgrad 1039.291692 dualbound = 1817332.220055, lowerbound=1078563.220055, norm of subgrad 43.487413 stepsize= 1.000000 +dualbound = 1817645.692051, lowerbound=1082983.692051, norm of subgrad 1041.432999 dualbound = 1817645.692051, lowerbound=1082983.692051, norm of subgrad 43.731819 stepsize= 1.000000 +dualbound = 1817959.555625, lowerbound=1077511.555625, norm of subgrad 1038.766362 dualbound = 1817959.555625, lowerbound=1077511.555625, norm of subgrad 42.870311 stepsize= 1.000000 +dualbound = 1818300.202659, lowerbound=1082876.202659, norm of subgrad 1041.385713 dualbound = 1818300.202659, lowerbound=1082876.202659, norm of subgrad 44.143482 stepsize= 1.000000 +dualbound = 1818611.610262, lowerbound=1082416.610262, norm of subgrad 1041.120843 dualbound = 1818611.610262, lowerbound=1082416.610262, norm of subgrad 42.748188 stepsize= 1.000000 +dualbound = 1818923.096782, lowerbound=1079898.096782, norm of subgrad 1039.963027 dualbound = 1818923.096782, lowerbound=1079898.096782, norm of subgrad 44.005528 stepsize= 1.000000 +dualbound = 1819262.516797, lowerbound=1079781.516797, norm of subgrad 1039.872356 dualbound = 1819262.516797, lowerbound=1079781.516797, norm of subgrad 43.501954 stepsize= 1.000000 +dualbound = 1819575.502578, lowerbound=1083408.502578, norm of subgrad 1041.638374 dualbound = 1819575.502578, lowerbound=1083408.502578, norm of subgrad 43.760551 stepsize= 1.000000 +dualbound = 1819913.622890, lowerbound=1077176.622890, norm of subgrad 1038.593579 dualbound = 1819913.622890, lowerbound=1077176.622890, norm of subgrad 42.873305 stepsize= 1.000000 +dualbound = 1820257.578470, lowerbound=1081221.578470, norm of subgrad 1040.553977 dualbound = 1820257.578470, lowerbound=1081221.578470, norm of subgrad 43.300757 stepsize= 1.000000 +dualbound = 1820567.776899, lowerbound=1079906.776899, norm of subgrad 1039.991720 dualbound = 1820567.776899, lowerbound=1079906.776899, norm of subgrad 44.566786 stepsize= 1.000000 +dualbound = 1820839.080934, lowerbound=1082129.080934, norm of subgrad 1041.025015 dualbound = 1820839.080934, lowerbound=1082129.080934, norm of subgrad 43.304781 stepsize= 1.000000 +dualbound = 1821209.453935, lowerbound=1081892.453935, norm of subgrad 1040.895986 dualbound = 1821209.453935, lowerbound=1081892.453935, norm of subgrad 44.072361 stepsize= 1.000000 +dualbound = 1821522.432189, lowerbound=1080241.432189, norm of subgrad 1040.092992 dualbound = 1821522.432189, lowerbound=1080241.432189, norm of subgrad 43.185394 stepsize= 1.000000 +dualbound = 1821869.474503, lowerbound=1078963.474503, norm of subgrad 1039.477982 dualbound = 1821869.474503, lowerbound=1078963.474503, norm of subgrad 43.566527 stepsize= 1.000000 +dualbound = 1822173.590507, lowerbound=1083413.590507, norm of subgrad 1041.616336 dualbound = 1822173.590507, lowerbound=1083413.590507, norm of subgrad 43.071058 stepsize= 1.000000 +dualbound = 1822514.736929, lowerbound=1080658.736929, norm of subgrad 1040.304156 dualbound = 1822514.736929, lowerbound=1080658.736929, norm of subgrad 43.762386 stepsize= 1.000000 +dualbound = 1822794.973008, lowerbound=1083090.973008, norm of subgrad 1041.457619 dualbound = 1822794.973008, lowerbound=1083090.973008, norm of subgrad 42.699369 stepsize= 1.000000 +dualbound = 1823153.343381, lowerbound=1080292.343381, norm of subgrad 1040.133330 dualbound = 1823153.343381, lowerbound=1080292.343381, norm of subgrad 44.083675 stepsize= 1.000000 +dualbound = 1823447.713489, lowerbound=1082230.713489, norm of subgrad 1041.069024 dualbound = 1823447.713489, lowerbound=1082230.713489, norm of subgrad 43.455381 stepsize= 1.000000 +dualbound = 1823795.314412, lowerbound=1081747.314412, norm of subgrad 1040.812334 dualbound = 1823795.314412, lowerbound=1081747.314412, norm of subgrad 43.481041 stepsize= 1.000000 +dualbound = 1824118.293650, lowerbound=1084259.293650, norm of subgrad 1042.024133 dualbound = 1824118.293650, lowerbound=1084259.293650, norm of subgrad 43.335658 stepsize= 1.000000 +dualbound = 1824426.494282, lowerbound=1077976.494282, norm of subgrad 1039.030074 dualbound = 1824426.494282, lowerbound=1077976.494282, norm of subgrad 43.763005 stepsize= 1.000000 +dualbound = 1824733.871733, lowerbound=1083406.871733, norm of subgrad 1041.672152 dualbound = 1824733.871733, lowerbound=1083406.871733, norm of subgrad 44.512666 stepsize= 1.000000 +dualbound = 1825059.074162, lowerbound=1082864.074162, norm of subgrad 1041.378449 dualbound = 1825059.074162, lowerbound=1082864.074162, norm of subgrad 43.934069 stepsize= 1.000000 +dualbound = 1825382.780077, lowerbound=1080174.780077, norm of subgrad 1040.056143 dualbound = 1825382.780077, lowerbound=1080174.780077, norm of subgrad 43.193818 stepsize= 1.000000 +dualbound = 1825727.479551, lowerbound=1083185.479551, norm of subgrad 1041.513552 dualbound = 1825727.479551, lowerbound=1083185.479551, norm of subgrad 43.700108 stepsize= 1.000000 +dualbound = 1826053.850207, lowerbound=1084791.850207, norm of subgrad 1042.255175 dualbound = 1826053.850207, lowerbound=1084791.850207, norm of subgrad 42.782831 stepsize= 1.000000 +dualbound = 1826364.186883, lowerbound=1079946.186883, norm of subgrad 1039.970763 dualbound = 1826364.186883, lowerbound=1079946.186883, norm of subgrad 43.627247 stepsize= 1.000000 +dualbound = 1826667.273108, lowerbound=1082375.273108, norm of subgrad 1041.137490 dualbound = 1826667.273108, lowerbound=1082375.273108, norm of subgrad 43.532588 stepsize= 1.000000 +dualbound = 1827006.045954, lowerbound=1080982.045954, norm of subgrad 1040.462419 dualbound = 1827006.045954, lowerbound=1080982.045954, norm of subgrad 43.803799 stepsize= 1.000000 +dualbound = 1827313.117022, lowerbound=1081772.117022, norm of subgrad 1040.850190 dualbound = 1827313.117022, lowerbound=1081772.117022, norm of subgrad 43.635663 stepsize= 1.000000 +dualbound = 1827646.449146, lowerbound=1085042.449146, norm of subgrad 1042.420956 dualbound = 1827646.449146, lowerbound=1085042.449146, norm of subgrad 43.958300 stepsize= 1.000000 +dualbound = 1827959.841916, lowerbound=1082490.841916, norm of subgrad 1041.184826 dualbound = 1827959.841916, lowerbound=1082490.841916, norm of subgrad 43.455641 stepsize= 1.000000 +dualbound = 1828314.581053, lowerbound=1079477.581053, norm of subgrad 1039.710335 dualbound = 1828314.581053, lowerbound=1079477.581053, norm of subgrad 43.298258 stepsize= 1.000000 +dualbound = 1828612.796658, lowerbound=1086774.796658, norm of subgrad 1043.248674 dualbound = 1828612.796658, lowerbound=1086774.796658, norm of subgrad 43.488109 stepsize= 1.000000 +dualbound = 1828929.002408, lowerbound=1078304.002408, norm of subgrad 1039.142917 dualbound = 1828929.002408, lowerbound=1078304.002408, norm of subgrad 42.780904 stepsize= 1.000000 +dualbound = 1829302.083850, lowerbound=1082343.083850, norm of subgrad 1041.107624 dualbound = 1829302.083850, lowerbound=1082343.083850, norm of subgrad 43.989561 stepsize= 1.000000 +dualbound = 1829591.040599, lowerbound=1080519.040599, norm of subgrad 1040.234608 dualbound = 1829591.040599, lowerbound=1080519.040599, norm of subgrad 43.104022 stepsize= 1.000000 +dualbound = 1829912.732933, lowerbound=1083801.732933, norm of subgrad 1041.797837 dualbound = 1829912.732933, lowerbound=1083801.732933, norm of subgrad 43.158920 stepsize= 1.000000 +dualbound = 1830200.802519, lowerbound=1082452.802519, norm of subgrad 1041.182886 dualbound = 1830200.802519, lowerbound=1082452.802519, norm of subgrad 43.555362 stepsize= 1.000000 +dualbound = 1830535.510308, lowerbound=1083713.510308, norm of subgrad 1041.749735 dualbound = 1830535.510308, lowerbound=1083713.510308, norm of subgrad 43.170682 stepsize= 1.000000 +dualbound = 1830879.944184, lowerbound=1081576.944184, norm of subgrad 1040.745860 dualbound = 1830879.944184, lowerbound=1081576.944184, norm of subgrad 43.811344 stepsize= 1.000000 +dualbound = 1831175.426499, lowerbound=1084051.426499, norm of subgrad 1041.940702 dualbound = 1831175.426499, lowerbound=1084051.426499, norm of subgrad 43.410624 stepsize= 1.000000 +dualbound = 1831514.608988, lowerbound=1079771.608988, norm of subgrad 1039.889229 dualbound = 1831514.608988, lowerbound=1079771.608988, norm of subgrad 44.013435 stepsize= 1.000000 +dualbound = 1831826.763475, lowerbound=1085750.763475, norm of subgrad 1042.735232 dualbound = 1831826.763475, lowerbound=1085750.763475, norm of subgrad 43.106316 stepsize= 1.000000 +dualbound = 1832151.250559, lowerbound=1080293.250559, norm of subgrad 1040.109249 dualbound = 1832151.250559, lowerbound=1080293.250559, norm of subgrad 43.110174 stepsize= 1.000000 +dualbound = 1832472.243667, lowerbound=1085928.243667, norm of subgrad 1042.816016 dualbound = 1832472.243667, lowerbound=1085928.243667, norm of subgrad 43.104444 stepsize= 1.000000 +dualbound = 1832787.107932, lowerbound=1079718.107931, norm of subgrad 1039.847156 dualbound = 1832787.107932, lowerbound=1079718.107931, norm of subgrad 43.345868 stepsize= 1.000000 +dualbound = 1833109.261126, lowerbound=1084174.261126, norm of subgrad 1041.990048 dualbound = 1833109.261126, lowerbound=1084174.261126, norm of subgrad 43.487391 stepsize= 1.000000 +dualbound = 1833434.308543, lowerbound=1081795.308543, norm of subgrad 1040.830106 dualbound = 1833434.308543, lowerbound=1081795.308543, norm of subgrad 43.093473 stepsize= 1.000000 +dualbound = 1833724.921296, lowerbound=1084630.921296, norm of subgrad 1042.215871 dualbound = 1833724.921296, lowerbound=1084630.921296, norm of subgrad 43.285249 stepsize= 1.000000 +dualbound = 1834072.904950, lowerbound=1081281.904950, norm of subgrad 1040.615637 dualbound = 1834072.904950, lowerbound=1081281.904950, norm of subgrad 44.124638 stepsize= 1.000000 +dualbound = 1834381.784125, lowerbound=1081216.784125, norm of subgrad 1040.551673 dualbound = 1834381.784125, lowerbound=1081216.784125, norm of subgrad 42.893813 stepsize= 1.000000 +dualbound = 1834705.774014, lowerbound=1084030.774014, norm of subgrad 1041.943268 dualbound = 1834705.774014, lowerbound=1084030.774014, norm of subgrad 44.033963 stepsize= 1.000000 +dualbound = 1835001.850377, lowerbound=1085729.850377, norm of subgrad 1042.726163 dualbound = 1835001.850377, lowerbound=1085729.850377, norm of subgrad 42.942710 stepsize= 1.000000 +dualbound = 1835365.455233, lowerbound=1076968.455233, norm of subgrad 1038.499617 dualbound = 1835365.455233, lowerbound=1076968.455233, norm of subgrad 43.319798 stepsize= 1.000000 +dualbound = 1835670.723336, lowerbound=1084042.723336, norm of subgrad 1041.914451 dualbound = 1835670.723336, lowerbound=1084042.723336, norm of subgrad 42.991489 stepsize= 1.000000 +dualbound = 1835986.731740, lowerbound=1085536.731739, norm of subgrad 1042.650820 dualbound = 1835986.731740, lowerbound=1085536.731739, norm of subgrad 43.589086 stepsize= 1.000000 +dualbound = 1836290.309560, lowerbound=1082581.309560, norm of subgrad 1041.243636 dualbound = 1836290.309560, lowerbound=1082581.309560, norm of subgrad 43.710157 stepsize= 1.000000 +dualbound = 1836607.929418, lowerbound=1081984.929418, norm of subgrad 1040.931760 dualbound = 1836607.929418, lowerbound=1081984.929418, norm of subgrad 43.262222 stepsize= 1.000000 +dualbound = 1836937.193289, lowerbound=1083144.193289, norm of subgrad 1041.486531 dualbound = 1836937.193289, lowerbound=1083144.193289, norm of subgrad 43.350477 stepsize= 1.000000 +dualbound = 1837237.093148, lowerbound=1080652.093148, norm of subgrad 1040.297598 dualbound = 1837237.093148, lowerbound=1080652.093148, norm of subgrad 43.207637 stepsize= 1.000000 +dualbound = 1837558.969867, lowerbound=1085003.969867, norm of subgrad 1042.369402 dualbound = 1837558.969867, lowerbound=1085003.969867, norm of subgrad 43.033437 stepsize= 1.000000 +dualbound = 1837918.374661, lowerbound=1082120.374661, norm of subgrad 1040.958873 dualbound = 1837918.374661, lowerbound=1082120.374661, norm of subgrad 42.829952 stepsize= 1.000000 +dualbound = 1838220.970971, lowerbound=1085247.970971, norm of subgrad 1042.465813 dualbound = 1838220.970971, lowerbound=1085247.970971, norm of subgrad 42.303621 stepsize= 1.000000 +dualbound = 1838555.990632, lowerbound=1078564.990632, norm of subgrad 1039.308419 dualbound = 1838555.990632, lowerbound=1078564.990632, norm of subgrad 43.954746 stepsize= 1.000000 +dualbound = 1838815.014700, lowerbound=1083530.014700, norm of subgrad 1041.686140 dualbound = 1838815.014700, lowerbound=1083530.014700, norm of subgrad 42.883844 stepsize= 1.000000 +dualbound = 1839158.628551, lowerbound=1083543.628551, norm of subgrad 1041.672035 dualbound = 1839158.628551, lowerbound=1083543.628551, norm of subgrad 43.366045 stepsize= 1.000000 +dualbound = 1839495.061616, lowerbound=1081668.061616, norm of subgrad 1040.772339 dualbound = 1839495.061616, lowerbound=1081668.061616, norm of subgrad 43.306271 stepsize= 1.000000 +dualbound = 1839815.999256, lowerbound=1085928.999256, norm of subgrad 1042.844667 dualbound = 1839815.999256, lowerbound=1085928.999256, norm of subgrad 43.782846 stepsize= 1.000000 +dualbound = 1840085.689774, lowerbound=1084247.689774, norm of subgrad 1042.064628 dualbound = 1840085.689774, lowerbound=1084247.689774, norm of subgrad 43.825683 stepsize= 1.000000 +dualbound = 1840399.681750, lowerbound=1085544.681750, norm of subgrad 1042.655112 dualbound = 1840399.681750, lowerbound=1085544.681750, norm of subgrad 43.577425 stepsize= 1.000000 +dualbound = 1840748.715648, lowerbound=1079988.715648, norm of subgrad 1039.959959 dualbound = 1840748.715648, lowerbound=1079988.715648, norm of subgrad 43.324749 stepsize= 1.000000 +dualbound = 1841070.797613, lowerbound=1082964.797613, norm of subgrad 1041.387439 dualbound = 1841070.797613, lowerbound=1082964.797613, norm of subgrad 42.954417 stepsize= 1.000000 +dualbound = 1841385.543151, lowerbound=1085858.543151, norm of subgrad 1042.771568 dualbound = 1841385.543151, lowerbound=1085858.543151, norm of subgrad 42.763834 stepsize= 1.000000 +dualbound = 1841703.012701, lowerbound=1085720.012701, norm of subgrad 1042.726720 dualbound = 1841703.012701, lowerbound=1085720.012701, norm of subgrad 43.318236 stepsize= 1.000000 +dualbound = 1842019.364636, lowerbound=1079439.364636, norm of subgrad 1039.742932 dualbound = 1842019.364636, lowerbound=1079439.364636, norm of subgrad 44.072122 stepsize= 1.000000 +dualbound = 1842318.862093, lowerbound=1082269.862093, norm of subgrad 1041.062372 dualbound = 1842318.862093, lowerbound=1082269.862093, norm of subgrad 42.901019 stepsize= 1.000000 +dualbound = 1842673.027608, lowerbound=1087980.027608, norm of subgrad 1043.808904 dualbound = 1842673.027608, lowerbound=1087980.027608, norm of subgrad 43.716879 stepsize= 1.000000 +dualbound = 1842964.181992, lowerbound=1083403.181992, norm of subgrad 1041.608459 dualbound = 1842964.181992, lowerbound=1083403.181992, norm of subgrad 42.850372 stepsize= 1.000000 +dualbound = 1843299.680483, lowerbound=1082997.680483, norm of subgrad 1041.413789 dualbound = 1843299.680483, lowerbound=1082997.680483, norm of subgrad 43.364715 stepsize= 1.000000 +dualbound = 1843595.681081, lowerbound=1084947.681081, norm of subgrad 1042.350076 dualbound = 1843595.681081, lowerbound=1084947.681081, norm of subgrad 42.918534 stepsize= 1.000000 +dualbound = 1843924.530175, lowerbound=1083429.530175, norm of subgrad 1041.625907 dualbound = 1843924.530175, lowerbound=1083429.530175, norm of subgrad 43.403330 stepsize= 1.000000 +dualbound = 1844235.924212, lowerbound=1084218.924212, norm of subgrad 1042.030194 dualbound = 1844235.924212, lowerbound=1084218.924212, norm of subgrad 43.810889 stepsize= 1.000000 +dualbound = 1844529.877089, lowerbound=1082404.877089, norm of subgrad 1041.127695 dualbound = 1844529.877089, lowerbound=1082404.877089, norm of subgrad 42.848021 stepsize= 1.000000 +dualbound = 1844879.287066, lowerbound=1083931.287066, norm of subgrad 1041.859053 dualbound = 1844879.287066, lowerbound=1083931.287066, norm of subgrad 43.455839 stepsize= 1.000000 +dualbound = 1845190.174870, lowerbound=1082438.174870, norm of subgrad 1041.156172 dualbound = 1845190.174870, lowerbound=1082438.174870, norm of subgrad 43.346139 stepsize= 1.000000 +dualbound = 1845500.049481, lowerbound=1084459.049481, norm of subgrad 1042.133413 dualbound = 1845500.049481, lowerbound=1084459.049481, norm of subgrad 43.507179 stepsize= 1.000000 +dualbound = 1845820.227894, lowerbound=1083311.227894, norm of subgrad 1041.601281 dualbound = 1845820.227894, lowerbound=1083311.227894, norm of subgrad 44.070153 stepsize= 1.000000 +dualbound = 1846084.168793, lowerbound=1084866.168793, norm of subgrad 1042.334960 dualbound = 1846084.168793, lowerbound=1084866.168793, norm of subgrad 43.127032 stepsize= 1.000000 +dualbound = 1846459.885276, lowerbound=1084776.885276, norm of subgrad 1042.267185 dualbound = 1846459.885276, lowerbound=1084776.885276, norm of subgrad 43.814569 stepsize= 1.000000 +dualbound = 1846761.352085, lowerbound=1085194.352085, norm of subgrad 1042.470792 dualbound = 1846761.352085, lowerbound=1085194.352085, norm of subgrad 43.040293 stepsize= 1.000000 +dualbound = 1847091.511819, lowerbound=1086515.511819, norm of subgrad 1043.125837 dualbound = 1847091.511819, lowerbound=1086515.511819, norm of subgrad 43.888036 stepsize= 1.000000 +dualbound = 1847363.846065, lowerbound=1081682.846065, norm of subgrad 1040.837569 dualbound = 1847363.846065, lowerbound=1081682.846065, norm of subgrad 43.958324 stepsize= 1.000000 +dualbound = 1847697.741091, lowerbound=1084631.741091, norm of subgrad 1042.209068 dualbound = 1847697.741091, lowerbound=1084631.741091, norm of subgrad 43.610721 stepsize= 1.000000 +dualbound = 1848029.829174, lowerbound=1082158.829174, norm of subgrad 1041.022012 dualbound = 1848029.829174, lowerbound=1082158.829174, norm of subgrad 43.590000 stepsize= 1.000000 +dualbound = 1848356.059609, lowerbound=1086388.059609, norm of subgrad 1043.012013 dualbound = 1848356.059609, lowerbound=1086388.059609, norm of subgrad 42.570300 stepsize= 1.000000 +dualbound = 1848673.996952, lowerbound=1083751.996952, norm of subgrad 1041.783565 dualbound = 1848673.996952, lowerbound=1083751.996952, norm of subgrad 43.346711 stepsize= 1.000000 +dualbound = 1848966.697382, lowerbound=1086110.697382, norm of subgrad 1042.918356 dualbound = 1848966.697382, lowerbound=1086110.697382, norm of subgrad 43.135837 stepsize= 1.000000 +dualbound = 1849285.435881, lowerbound=1082585.435881, norm of subgrad 1041.226890 dualbound = 1849285.435881, lowerbound=1082585.435881, norm of subgrad 43.436603 stepsize= 1.000000 +dualbound = 1849606.598298, lowerbound=1082639.598298, norm of subgrad 1041.255299 dualbound = 1849606.598298, lowerbound=1082639.598298, norm of subgrad 43.521976 stepsize= 1.000000 +dualbound = 1849894.349054, lowerbound=1086717.349054, norm of subgrad 1043.202449 dualbound = 1849894.349054, lowerbound=1086717.349054, norm of subgrad 42.915624 stepsize= 1.000000 +dualbound = 1850249.750085, lowerbound=1085400.750085, norm of subgrad 1042.571221 dualbound = 1850249.750085, lowerbound=1085400.750085, norm of subgrad 43.696694 stepsize= 1.000000 +dualbound = 1850535.622209, lowerbound=1082387.622208, norm of subgrad 1041.126612 dualbound = 1850535.622209, lowerbound=1082387.622208, norm of subgrad 42.928686 stepsize= 1.000000 +dualbound = 1850887.963492, lowerbound=1085880.963492, norm of subgrad 1042.772729 dualbound = 1850887.963492, lowerbound=1085880.963492, norm of subgrad 42.969074 stepsize= 1.000000 +dualbound = 1851189.904019, lowerbound=1084150.904019, norm of subgrad 1041.968763 dualbound = 1851189.904019, lowerbound=1084150.904019, norm of subgrad 43.010935 stepsize= 1.000000 +dualbound = 1851495.034982, lowerbound=1084633.034982, norm of subgrad 1042.215925 dualbound = 1851495.034982, lowerbound=1084633.034982, norm of subgrad 43.429609 stepsize= 1.000000 +dualbound = 1851797.577703, lowerbound=1083600.577703, norm of subgrad 1041.678251 dualbound = 1851797.577703, lowerbound=1083600.577703, norm of subgrad 42.373845 stepsize= 1.000000 +dualbound = 1852134.806205, lowerbound=1084402.806205, norm of subgrad 1042.102589 dualbound = 1852134.806205, lowerbound=1084402.806205, norm of subgrad 43.729035 stepsize= 1.000000 +dualbound = 1852413.927134, lowerbound=1083570.927134, norm of subgrad 1041.700978 dualbound = 1852413.927134, lowerbound=1083570.927134, norm of subgrad 43.001406 stepsize= 1.000000 +dualbound = 1852735.588697, lowerbound=1085032.588697, norm of subgrad 1042.415747 dualbound = 1852735.588697, lowerbound=1085032.588697, norm of subgrad 43.813943 stepsize= 1.000000 +dualbound = 1853050.802438, lowerbound=1087300.802438, norm of subgrad 1043.479661 dualbound = 1853050.802438, lowerbound=1087300.802438, norm of subgrad 43.176542 stepsize= 1.000000 +dualbound = 1853363.231019, lowerbound=1083112.231019, norm of subgrad 1041.508152 dualbound = 1853363.231019, lowerbound=1083112.231019, norm of subgrad 44.038944 stepsize= 1.000000 +dualbound = 1853665.791415, lowerbound=1087256.791415, norm of subgrad 1043.477739 dualbound = 1853665.791415, lowerbound=1087256.791415, norm of subgrad 43.492073 stepsize= 1.000000 +dualbound = 1853967.025453, lowerbound=1084952.025453, norm of subgrad 1042.370868 dualbound = 1853967.025453, lowerbound=1084952.025453, norm of subgrad 43.430796 stepsize= 1.000000 +dualbound = 1854313.605934, lowerbound=1085219.605934, norm of subgrad 1042.484823 dualbound = 1854313.605934, lowerbound=1085219.605934, norm of subgrad 43.607115 stepsize= 1.000000 +dualbound = 1854625.940189, lowerbound=1084896.940189, norm of subgrad 1042.307507 dualbound = 1854625.940189, lowerbound=1084896.940189, norm of subgrad 42.665375 stepsize= 1.000000 +dualbound = 1854938.637687, lowerbound=1085179.637687, norm of subgrad 1042.491073 dualbound = 1854938.637687, lowerbound=1085179.637687, norm of subgrad 43.825763 stepsize= 1.000000 +dualbound = 1855223.570897, lowerbound=1084141.570897, norm of subgrad 1041.966684 dualbound = 1855223.570897, lowerbound=1084141.570897, norm of subgrad 42.871123 stepsize= 1.000000 +dualbound = 1855577.418401, lowerbound=1080826.418401, norm of subgrad 1040.358313 dualbound = 1855577.418401, lowerbound=1080826.418401, norm of subgrad 43.276408 stepsize= 1.000000 +dualbound = 1855854.082977, lowerbound=1085198.082977, norm of subgrad 1042.460591 dualbound = 1855854.082977, lowerbound=1085198.082977, norm of subgrad 42.457798 stepsize= 1.000000 +dualbound = 1856190.432843, lowerbound=1085376.432843, norm of subgrad 1042.579701 dualbound = 1856190.432843, lowerbound=1085376.432843, norm of subgrad 43.958502 stepsize= 1.000000 +dualbound = 1856480.034608, lowerbound=1084955.034608, norm of subgrad 1042.347847 dualbound = 1856480.034608, lowerbound=1084955.034608, norm of subgrad 42.703650 stepsize= 1.000000 +dualbound = 1856842.513763, lowerbound=1087094.513763, norm of subgrad 1043.357807 dualbound = 1856842.513763, lowerbound=1087094.513763, norm of subgrad 43.168034 stepsize= 1.000000 +dualbound = 1857123.024939, lowerbound=1086317.024939, norm of subgrad 1043.001450 dualbound = 1857123.024939, lowerbound=1086317.024939, norm of subgrad 42.608816 stepsize= 1.000000 +dualbound = 1857455.209457, lowerbound=1082889.209457, norm of subgrad 1041.352587 dualbound = 1857455.209457, lowerbound=1082889.209457, norm of subgrad 43.106664 stepsize= 1.000000 +dualbound = 1857728.212703, lowerbound=1087204.212703, norm of subgrad 1043.440086 dualbound = 1857728.212703, lowerbound=1087204.212703, norm of subgrad 42.848608 stepsize= 1.000000 +dualbound = 1858065.335494, lowerbound=1084199.335494, norm of subgrad 1042.021274 dualbound = 1858065.335494, lowerbound=1084199.335494, norm of subgrad 44.114882 stepsize= 1.000000 +dualbound = 1858366.504661, lowerbound=1081984.504661, norm of subgrad 1040.920989 dualbound = 1858366.504661, lowerbound=1081984.504661, norm of subgrad 42.815525 stepsize= 1.000000 +dualbound = 1858689.228170, lowerbound=1082544.228170, norm of subgrad 1041.221028 dualbound = 1858689.228170, lowerbound=1082544.228170, norm of subgrad 43.814649 stepsize= 1.000000 +dualbound = 1858975.165438, lowerbound=1091274.165438, norm of subgrad 1045.428699 dualbound = 1858975.165438, lowerbound=1091274.165438, norm of subgrad 43.965182 stepsize= 1.000000 +dualbound = 1859298.509080, lowerbound=1082318.509080, norm of subgrad 1041.081413 dualbound = 1859298.509080, lowerbound=1082318.509080, norm of subgrad 43.073700 stepsize= 1.000000 +dualbound = 1859615.313137, lowerbound=1085015.313137, norm of subgrad 1042.389713 dualbound = 1859615.313137, lowerbound=1085015.313137, norm of subgrad 43.333637 stepsize= 1.000000 +dualbound = 1859950.674755, lowerbound=1085779.674755, norm of subgrad 1042.735189 dualbound = 1859950.674755, lowerbound=1085779.674755, norm of subgrad 43.039071 stepsize= 1.000000 +dualbound = 1860259.385341, lowerbound=1086288.385341, norm of subgrad 1042.966627 dualbound = 1860259.385341, lowerbound=1086288.385341, norm of subgrad 42.422996 stepsize= 1.000000 +dualbound = 1860581.652785, lowerbound=1084282.652785, norm of subgrad 1042.019507 dualbound = 1860581.652785, lowerbound=1084282.652785, norm of subgrad 42.944935 stepsize= 1.000000 +dualbound = 1860876.502331, lowerbound=1085313.502331, norm of subgrad 1042.534173 dualbound = 1860876.502331, lowerbound=1085313.502331, norm of subgrad 43.114377 stepsize= 1.000000 +dualbound = 1861179.503034, lowerbound=1081801.503034, norm of subgrad 1040.854218 dualbound = 1861179.503034, lowerbound=1081801.503034, norm of subgrad 43.347442 stepsize= 1.000000 +dualbound = 1861485.094021, lowerbound=1088714.094021, norm of subgrad 1044.159037 dualbound = 1861485.094021, lowerbound=1088714.094021, norm of subgrad 43.122975 stepsize= 1.000000 +dualbound = 1861830.428308, lowerbound=1085094.428308, norm of subgrad 1042.411832 dualbound = 1861830.428308, lowerbound=1085094.428308, norm of subgrad 43.282032 stepsize= 1.000000 +dualbound = 1862123.092497, lowerbound=1085362.092497, norm of subgrad 1042.541650 dualbound = 1862123.092497, lowerbound=1085362.092497, norm of subgrad 42.704381 stepsize= 1.000000 +dualbound = 1862434.728829, lowerbound=1082528.728829, norm of subgrad 1041.199178 dualbound = 1862434.728829, lowerbound=1082528.728829, norm of subgrad 43.343239 stepsize= 1.000000 +dualbound = 1862743.863778, lowerbound=1090482.863778, norm of subgrad 1045.017638 dualbound = 1862743.863778, lowerbound=1090482.863778, norm of subgrad 43.452675 stepsize= 1.000000 +dualbound = 1863055.898198, lowerbound=1083100.898198, norm of subgrad 1041.442700 dualbound = 1863055.898198, lowerbound=1083100.898198, norm of subgrad 42.591483 stepsize= 1.000000 +dualbound = 1863380.222085, lowerbound=1084944.222085, norm of subgrad 1042.345539 dualbound = 1863380.222085, lowerbound=1084944.222085, norm of subgrad 43.177817 stepsize= 1.000000 +dualbound = 1863668.368767, lowerbound=1084986.368767, norm of subgrad 1042.369113 dualbound = 1863668.368767, lowerbound=1084986.368767, norm of subgrad 42.838612 stepsize= 1.000000 +dualbound = 1863999.417474, lowerbound=1088845.417474, norm of subgrad 1044.199893 dualbound = 1863999.417474, lowerbound=1088845.417474, norm of subgrad 42.884131 stepsize= 1.000000 +dualbound = 1864305.424100, lowerbound=1084211.424100, norm of subgrad 1041.995405 dualbound = 1864305.424100, lowerbound=1084211.424100, norm of subgrad 43.000077 stepsize= 1.000000 +dualbound = 1864623.880024, lowerbound=1085632.880024, norm of subgrad 1042.663838 dualbound = 1864623.880024, lowerbound=1085632.880024, norm of subgrad 42.818873 stepsize= 1.000000 +dualbound = 1864932.191905, lowerbound=1084667.191905, norm of subgrad 1042.226075 dualbound = 1864932.191905, lowerbound=1084667.191905, norm of subgrad 43.316416 stepsize= 1.000000 +dualbound = 1865215.411846, lowerbound=1086142.411846, norm of subgrad 1042.970475 dualbound = 1865215.411846, lowerbound=1086142.411846, norm of subgrad 43.911501 stepsize= 1.000000 +dualbound = 1865532.289328, lowerbound=1087256.289328, norm of subgrad 1043.482290 dualbound = 1865532.289328, lowerbound=1087256.289328, norm of subgrad 43.770738 stepsize= 1.000000 +dualbound = 1865846.950538, lowerbound=1084551.950538, norm of subgrad 1042.165510 dualbound = 1865846.950538, lowerbound=1084551.950538, norm of subgrad 43.262700 stepsize= 1.000000 +dualbound = 1866183.381911, lowerbound=1082893.381911, norm of subgrad 1041.360832 dualbound = 1866183.381911, lowerbound=1082893.381911, norm of subgrad 43.306251 stepsize= 1.000000 +dualbound = 1866492.043745, lowerbound=1089249.043745, norm of subgrad 1044.414211 dualbound = 1866492.043745, lowerbound=1089249.043745, norm of subgrad 43.135390 stepsize= 1.000000 +dualbound = 1866801.597931, lowerbound=1082858.597931, norm of subgrad 1041.333567 dualbound = 1866801.597931, lowerbound=1082858.597931, norm of subgrad 42.738205 stepsize= 1.000000 +dualbound = 1867116.184319, lowerbound=1088343.184319, norm of subgrad 1043.979973 dualbound = 1867116.184319, lowerbound=1088343.184319, norm of subgrad 43.192434 stepsize= 1.000000 +dualbound = 1867415.818918, lowerbound=1085718.818918, norm of subgrad 1042.724709 dualbound = 1867415.818918, lowerbound=1085718.818918, norm of subgrad 43.077077 stepsize= 1.000000 +dualbound = 1867723.607133, lowerbound=1083056.607133, norm of subgrad 1041.444961 dualbound = 1867723.607133, lowerbound=1083056.607133, norm of subgrad 43.113666 stepsize= 1.000000 +dualbound = 1868048.700773, lowerbound=1087597.700773, norm of subgrad 1043.610416 dualbound = 1868048.700773, lowerbound=1087597.700773, norm of subgrad 43.012715 stepsize= 1.000000 +dualbound = 1868360.889422, lowerbound=1087322.889422, norm of subgrad 1043.503181 dualbound = 1868360.889422, lowerbound=1087322.889422, norm of subgrad 43.453293 stepsize= 1.000000 +dualbound = 1868646.379965, lowerbound=1085915.379965, norm of subgrad 1042.822315 dualbound = 1868646.379965, lowerbound=1085915.379965, norm of subgrad 42.994076 stepsize= 1.000000 +dualbound = 1868948.403642, lowerbound=1087939.403642, norm of subgrad 1043.782738 dualbound = 1868948.403642, lowerbound=1087939.403642, norm of subgrad 42.953739 stepsize= 1.000000 +dualbound = 1869303.003728, lowerbound=1082654.003728, norm of subgrad 1041.226202 dualbound = 1869303.003728, lowerbound=1082654.003728, norm of subgrad 43.041841 stepsize= 1.000000 +dualbound = 1869617.834211, lowerbound=1086317.834211, norm of subgrad 1042.981704 dualbound = 1869617.834211, lowerbound=1086317.834211, norm of subgrad 42.518590 stepsize= 1.000000 +dualbound = 1869922.818779, lowerbound=1088573.818779, norm of subgrad 1044.084680 dualbound = 1869922.818779, lowerbound=1088573.818779, norm of subgrad 42.941641 stepsize= 1.000000 +dualbound = 1870187.557918, lowerbound=1086487.557918, norm of subgrad 1043.115314 dualbound = 1870187.557918, lowerbound=1086487.557918, norm of subgrad 43.205777 stepsize= 1.000000 +dualbound = 1870490.598569, lowerbound=1084768.598569, norm of subgrad 1042.268007 dualbound = 1870490.598569, lowerbound=1084768.598569, norm of subgrad 43.093395 stepsize= 1.000000 +dualbound = 1870818.332133, lowerbound=1083673.332133, norm of subgrad 1041.732371 dualbound = 1870818.332133, lowerbound=1083673.332133, norm of subgrad 43.136221 stepsize= 1.000000 +dualbound = 1871137.704694, lowerbound=1089493.704694, norm of subgrad 1044.524152 dualbound = 1871137.704694, lowerbound=1089493.704694, norm of subgrad 43.085642 stepsize= 1.000000 +dualbound = 1871449.599637, lowerbound=1086805.599637, norm of subgrad 1043.275419 dualbound = 1871449.599637, lowerbound=1086805.599637, norm of subgrad 43.930570 stepsize= 1.000000 +dualbound = 1871751.243744, lowerbound=1084435.243744, norm of subgrad 1042.117673 dualbound = 1871751.243744, lowerbound=1084435.243744, norm of subgrad 43.308707 stepsize= 1.000000 +dualbound = 1872061.358427, lowerbound=1086155.358427, norm of subgrad 1042.956067 dualbound = 1872061.358427, lowerbound=1086155.358427, norm of subgrad 43.727734 stepsize= 1.000000 +dualbound = 1872364.040631, lowerbound=1087567.040631, norm of subgrad 1043.608183 dualbound = 1872364.040631, lowerbound=1087567.040631, norm of subgrad 43.054410 stepsize= 1.000000 +dualbound = 1872696.172693, lowerbound=1085624.172693, norm of subgrad 1042.675008 dualbound = 1872696.172693, lowerbound=1085624.172693, norm of subgrad 43.348957 stepsize= 1.000000 +dualbound = 1872984.529905, lowerbound=1088644.529905, norm of subgrad 1044.130514 dualbound = 1872984.529905, lowerbound=1088644.529905, norm of subgrad 43.039020 stepsize= 1.000000 +dualbound = 1873325.299184, lowerbound=1082273.299184, norm of subgrad 1041.064983 dualbound = 1873325.299184, lowerbound=1082273.299184, norm of subgrad 43.402411 stepsize= 1.000000 +dualbound = 1873617.451469, lowerbound=1089552.451469, norm of subgrad 1044.577164 dualbound = 1873617.451469, lowerbound=1089552.451469, norm of subgrad 43.372252 stepsize= 1.000000 +dualbound = 1873898.630226, lowerbound=1086446.630226, norm of subgrad 1043.102886 dualbound = 1873898.630226, lowerbound=1086446.630226, norm of subgrad 43.568093 stepsize= 1.000000 +dualbound = 1874228.606675, lowerbound=1086882.606675, norm of subgrad 1043.282132 dualbound = 1874228.606675, lowerbound=1086882.606675, norm of subgrad 43.416315 stepsize= 1.000000 +dualbound = 1874566.523581, lowerbound=1084545.523581, norm of subgrad 1042.107731 dualbound = 1874566.523581, lowerbound=1084545.523581, norm of subgrad 42.200911 stepsize= 1.000000 +dualbound = 1874867.138528, lowerbound=1087698.138528, norm of subgrad 1043.668596 dualbound = 1874867.138528, lowerbound=1087698.138528, norm of subgrad 42.972258 stepsize= 1.000000 +dualbound = 1875166.130203, lowerbound=1086366.130203, norm of subgrad 1043.050876 dualbound = 1875166.130203, lowerbound=1086366.130203, norm of subgrad 43.451026 stepsize= 1.000000 +dualbound = 1875480.052299, lowerbound=1080863.052299, norm of subgrad 1040.378322 dualbound = 1875480.052299, lowerbound=1080863.052299, norm of subgrad 42.870994 stepsize= 1.000000 +dualbound = 1875793.370539, lowerbound=1087524.370539, norm of subgrad 1043.562346 dualbound = 1875793.370539, lowerbound=1087524.370539, norm of subgrad 42.559585 stepsize= 1.000000 +dualbound = 1876111.685844, lowerbound=1086845.685844, norm of subgrad 1043.279774 dualbound = 1876111.685844, lowerbound=1086845.685844, norm of subgrad 43.649918 stepsize= 1.000000 +dualbound = 1876371.206409, lowerbound=1090652.206409, norm of subgrad 1045.108227 dualbound = 1876371.206409, lowerbound=1090652.206409, norm of subgrad 43.110562 stepsize= 1.000000 +dualbound = 1876720.496923, lowerbound=1084926.496923, norm of subgrad 1042.340874 dualbound = 1876720.496923, lowerbound=1084926.496923, norm of subgrad 43.557898 stepsize= 1.000000 +dualbound = 1877026.854412, lowerbound=1085571.854412, norm of subgrad 1042.638410 dualbound = 1877026.854412, lowerbound=1085571.854412, norm of subgrad 42.770989 stepsize= 1.000000 +dualbound = 1877335.657219, lowerbound=1085643.657219, norm of subgrad 1042.678597 dualbound = 1877335.657219, lowerbound=1085643.657219, norm of subgrad 42.939525 stepsize= 1.000000 +dualbound = 1877632.824517, lowerbound=1091929.824517, norm of subgrad 1045.682946 dualbound = 1877632.824517, lowerbound=1091929.824517, norm of subgrad 42.663419 stepsize= 1.000000 +dualbound = 1877955.561180, lowerbound=1084240.561180, norm of subgrad 1041.989233 dualbound = 1877955.561180, lowerbound=1084240.561180, norm of subgrad 42.705230 stepsize= 1.000000 +dualbound = 1878264.245292, lowerbound=1087454.245292, norm of subgrad 1043.534496 dualbound = 1878264.245292, lowerbound=1087454.245292, norm of subgrad 42.646033 stepsize= 1.000000 +dualbound = 1878567.759677, lowerbound=1084434.759677, norm of subgrad 1042.128955 dualbound = 1878567.759677, lowerbound=1084434.759677, norm of subgrad 43.606357 stepsize= 1.000000 +dualbound = 1878848.577069, lowerbound=1088843.577069, norm of subgrad 1044.213856 dualbound = 1878848.577069, lowerbound=1088843.577069, norm of subgrad 42.659318 stepsize= 1.000000 +dualbound = 1879188.130148, lowerbound=1086419.130148, norm of subgrad 1043.044644 dualbound = 1879188.130148, lowerbound=1086419.130148, norm of subgrad 43.157306 stepsize= 1.000000 +dualbound = 1879482.413590, lowerbound=1086063.413590, norm of subgrad 1042.861646 dualbound = 1879482.413590, lowerbound=1086063.413590, norm of subgrad 42.323557 stepsize= 1.000000 +dualbound = 1879808.316881, lowerbound=1089537.316881, norm of subgrad 1044.555559 dualbound = 1879808.316881, lowerbound=1089537.316881, norm of subgrad 43.415473 stepsize= 1.000000 +dualbound = 1880082.886884, lowerbound=1083823.886884, norm of subgrad 1041.804150 dualbound = 1880082.886884, lowerbound=1083823.886884, norm of subgrad 42.503765 stepsize= 1.000000 +dualbound = 1880440.550962, lowerbound=1086354.550962, norm of subgrad 1043.016084 dualbound = 1880440.550962, lowerbound=1086354.550962, norm of subgrad 43.424234 stepsize= 1.000000 +dualbound = 1880720.136553, lowerbound=1086546.136553, norm of subgrad 1043.090186 dualbound = 1880720.136553, lowerbound=1086546.136553, norm of subgrad 42.078327 stepsize= 1.000000 +dualbound = 1881039.946959, lowerbound=1088542.946959, norm of subgrad 1044.080431 dualbound = 1881039.946959, lowerbound=1088542.946959, norm of subgrad 43.368311 stepsize= 1.000000 +dualbound = 1881328.961621, lowerbound=1086929.961621, norm of subgrad 1043.316329 dualbound = 1881328.961621, lowerbound=1086929.961621, norm of subgrad 43.220535 stepsize= 1.000000 +dualbound = 1881660.503788, lowerbound=1085614.503788, norm of subgrad 1042.642558 dualbound = 1881660.503788, lowerbound=1085614.503788, norm of subgrad 42.667812 stepsize= 1.000000 +dualbound = 1881968.959695, lowerbound=1088174.959695, norm of subgrad 1043.878326 dualbound = 1881968.959695, lowerbound=1088174.959695, norm of subgrad 42.608167 stepsize= 1.000000 +dualbound = 1882271.377993, lowerbound=1085729.377993, norm of subgrad 1042.739362 dualbound = 1882271.377993, lowerbound=1085729.377993, norm of subgrad 43.340723 stepsize= 1.000000 +dualbound = 1882568.548213, lowerbound=1088665.548213, norm of subgrad 1044.103706 dualbound = 1882568.548213, lowerbound=1088665.548213, norm of subgrad 42.239439 stepsize= 1.000000 +dualbound = 1882869.876414, lowerbound=1086673.876414, norm of subgrad 1043.180174 dualbound = 1882869.876414, lowerbound=1086673.876414, norm of subgrad 43.038683 stepsize= 1.000000 +dualbound = 1883193.661107, lowerbound=1086555.661107, norm of subgrad 1043.171444 dualbound = 1883193.661107, lowerbound=1086555.661107, norm of subgrad 44.438550 stepsize= 1.000000 +dualbound = 1883466.202838, lowerbound=1086033.202838, norm of subgrad 1042.880723 dualbound = 1883466.202838, lowerbound=1086033.202838, norm of subgrad 42.889879 stepsize= 1.000000 +dualbound = 1883794.250640, lowerbound=1088473.250640, norm of subgrad 1044.055674 dualbound = 1883794.250640, lowerbound=1088473.250640, norm of subgrad 43.669758 stepsize= 1.000000 +dualbound = 1884106.727184, lowerbound=1086307.727184, norm of subgrad 1042.996993 dualbound = 1884106.727184, lowerbound=1086307.727184, norm of subgrad 42.982282 stepsize= 1.000000 +dualbound = 1884436.332969, lowerbound=1089442.332969, norm of subgrad 1044.485200 dualbound = 1884436.332969, lowerbound=1089442.332969, norm of subgrad 42.855639 stepsize= 1.000000 +dualbound = 1884753.997186, lowerbound=1083057.997186, norm of subgrad 1041.435066 dualbound = 1884753.997186, lowerbound=1083057.997186, norm of subgrad 42.972831 stepsize= 1.000000 +dualbound = 1885011.854011, lowerbound=1087933.854011, norm of subgrad 1043.761876 dualbound = 1885011.854011, lowerbound=1087933.854011, norm of subgrad 41.986389 stepsize= 1.000000 +dualbound = 1885347.977311, lowerbound=1090013.977311, norm of subgrad 1044.787527 dualbound = 1885347.977311, lowerbound=1090013.977311, norm of subgrad 43.624801 stepsize= 1.000000 +dualbound = 1885620.600412, lowerbound=1088127.600412, norm of subgrad 1043.939941 dualbound = 1885620.600412, lowerbound=1088127.600412, norm of subgrad 44.222428 stepsize= 1.000000 +dualbound = 1885916.986771, lowerbound=1086585.986771, norm of subgrad 1043.143320 dualbound = 1885916.986771, lowerbound=1086585.986771, norm of subgrad 43.109006 stepsize= 1.000000 +dualbound = 1886254.501149, lowerbound=1086402.501149, norm of subgrad 1043.017019 dualbound = 1886254.501149, lowerbound=1086402.501149, norm of subgrad 42.655766 stepsize= 1.000000 +dualbound = 1886585.074827, lowerbound=1086142.074827, norm of subgrad 1042.897442 dualbound = 1886585.074827, lowerbound=1086142.074827, norm of subgrad 42.703322 stepsize= 1.000000 +dualbound = 1886893.845244, lowerbound=1092544.845244, norm of subgrad 1045.959772 dualbound = 1886893.845244, lowerbound=1092544.845244, norm of subgrad 42.376531 stepsize= 1.000000 +dualbound = 1887183.818995, lowerbound=1084885.818995, norm of subgrad 1042.314165 dualbound = 1887183.818995, lowerbound=1084885.818995, norm of subgrad 42.696297 stepsize= 1.000000 +dualbound = 1887471.266323, lowerbound=1090922.266323, norm of subgrad 1045.240770 dualbound = 1887471.266323, lowerbound=1090922.266323, norm of subgrad 43.513760 stepsize= 1.000000 +dualbound = 1887781.023381, lowerbound=1086727.023381, norm of subgrad 1043.183121 dualbound = 1887781.023381, lowerbound=1086727.023381, norm of subgrad 42.588227 stepsize= 1.000000 +dualbound = 1888092.545787, lowerbound=1087090.545787, norm of subgrad 1043.366928 dualbound = 1888092.545787, lowerbound=1087090.545787, norm of subgrad 42.842997 stepsize= 1.000000 +dualbound = 1888394.566174, lowerbound=1088054.566174, norm of subgrad 1043.837902 dualbound = 1888394.566174, lowerbound=1088054.566174, norm of subgrad 42.953701 stepsize= 1.000000 +dualbound = 1888712.385051, lowerbound=1089714.385051, norm of subgrad 1044.637921 dualbound = 1888712.385051, lowerbound=1089714.385051, norm of subgrad 43.264522 stepsize= 1.000000 +dualbound = 1888974.804441, lowerbound=1088839.804441, norm of subgrad 1044.240779 dualbound = 1888974.804441, lowerbound=1088839.804441, norm of subgrad 43.144170 stepsize= 1.000000 +dualbound = 1889296.834282, lowerbound=1085357.834282, norm of subgrad 1042.533853 dualbound = 1889296.834282, lowerbound=1085357.834282, norm of subgrad 42.907224 stepsize= 1.000000 +dualbound = 1889650.181085, lowerbound=1087756.181085, norm of subgrad 1043.676761 dualbound = 1889650.181085, lowerbound=1087756.181085, norm of subgrad 43.108547 stepsize= 1.000000 +dualbound = 1889928.308723, lowerbound=1087339.308723, norm of subgrad 1043.469362 dualbound = 1889928.308723, lowerbound=1087339.308723, norm of subgrad 42.037217 stepsize= 1.000000 +dualbound = 1890228.675384, lowerbound=1090237.675384, norm of subgrad 1044.926636 dualbound = 1890228.675384, lowerbound=1090237.675384, norm of subgrad 43.981435 stepsize= 1.000000 +dualbound = 1890521.825927, lowerbound=1090958.825927, norm of subgrad 1045.233862 dualbound = 1890521.825927, lowerbound=1090958.825927, norm of subgrad 42.990121 stepsize= 1.000000 +dualbound = 1890825.871805, lowerbound=1084743.871805, norm of subgrad 1042.263821 dualbound = 1890825.871805, lowerbound=1084743.871805, norm of subgrad 43.290252 stepsize= 1.000000 +dualbound = 1891150.642347, lowerbound=1091957.642347, norm of subgrad 1045.695769 dualbound = 1891150.642347, lowerbound=1091957.642347, norm of subgrad 42.974068 stepsize= 1.000000 +dualbound = 1891471.802435, lowerbound=1086283.802435, norm of subgrad 1042.951966 dualbound = 1891471.802435, lowerbound=1086283.802435, norm of subgrad 42.262987 stepsize= 1.000000 +dualbound = 1891772.640911, lowerbound=1089555.640911, norm of subgrad 1044.541833 dualbound = 1891772.640911, lowerbound=1089555.640911, norm of subgrad 42.577441 stepsize= 1.000000 +dualbound = 1892062.932310, lowerbound=1086460.932310, norm of subgrad 1043.053178 dualbound = 1892062.932310, lowerbound=1086460.932310, norm of subgrad 42.300017 stepsize= 1.000000 +dualbound = 1892362.329679, lowerbound=1088142.329679, norm of subgrad 1043.879461 dualbound = 1892362.329679, lowerbound=1088142.329679, norm of subgrad 42.911506 stepsize= 1.000000 +dualbound = 1892669.101390, lowerbound=1087460.101390, norm of subgrad 1043.563655 dualbound = 1892669.101390, lowerbound=1087460.101390, norm of subgrad 43.263977 stepsize= 1.000000 +dualbound = 1892964.522533, lowerbound=1090292.522533, norm of subgrad 1044.932784 dualbound = 1892964.522533, lowerbound=1090292.522533, norm of subgrad 43.444460 stepsize= 1.000000 +dualbound = 1893262.081924, lowerbound=1086980.081924, norm of subgrad 1043.346099 dualbound = 1893262.081924, lowerbound=1086980.081924, norm of subgrad 43.457559 stepsize= 1.000000 +dualbound = 1893578.741418, lowerbound=1091362.741418, norm of subgrad 1045.427540 dualbound = 1893578.741418, lowerbound=1091362.741418, norm of subgrad 43.274236 stepsize= 1.000000 +dualbound = 1893898.575680, lowerbound=1086695.575680, norm of subgrad 1043.186261 dualbound = 1893898.575680, lowerbound=1086695.575680, norm of subgrad 43.148978 stepsize= 1.000000 +dualbound = 1894186.658078, lowerbound=1085740.658078, norm of subgrad 1042.723673 dualbound = 1894186.658078, lowerbound=1085740.658078, norm of subgrad 42.662424 stepsize= 1.000000 +dualbound = 1894503.981142, lowerbound=1090422.981142, norm of subgrad 1044.994728 dualbound = 1894503.981142, lowerbound=1090422.981142, norm of subgrad 43.684357 stepsize= 1.000000 +dualbound = 1894782.333742, lowerbound=1090648.333742, norm of subgrad 1045.112115 dualbound = 1894782.333742, lowerbound=1090648.333742, norm of subgrad 43.466684 stepsize= 1.000000 +dualbound = 1895103.108612, lowerbound=1089136.108612, norm of subgrad 1044.357749 dualbound = 1895103.108612, lowerbound=1089136.108612, norm of subgrad 43.217761 stepsize= 1.000000 +dualbound = 1895414.132794, lowerbound=1085495.132794, norm of subgrad 1042.610729 dualbound = 1895414.132794, lowerbound=1085495.132794, norm of subgrad 43.046767 stepsize= 1.000000 +dualbound = 1895714.430326, lowerbound=1088774.430326, norm of subgrad 1044.201815 dualbound = 1895714.430326, lowerbound=1088774.430326, norm of subgrad 43.396976 stepsize= 1.000000 +dualbound = 1896016.400037, lowerbound=1092278.400037, norm of subgrad 1045.877813 dualbound = 1896016.400037, lowerbound=1092278.400037, norm of subgrad 43.404720 stepsize= 1.000000 +dualbound = 1896335.657662, lowerbound=1085706.657662, norm of subgrad 1042.722234 dualbound = 1896335.657662, lowerbound=1085706.657662, norm of subgrad 43.384993 stepsize= 1.000000 +dualbound = 1896611.142892, lowerbound=1090672.142892, norm of subgrad 1045.074707 dualbound = 1896611.142892, lowerbound=1090672.142892, norm of subgrad 42.243168 stepsize= 1.000000 +dualbound = 1896970.970419, lowerbound=1086019.970419, norm of subgrad 1042.859996 dualbound = 1896970.970419, lowerbound=1086019.970419, norm of subgrad 43.552583 stepsize= 1.000000 +dualbound = 1897232.203282, lowerbound=1090202.203282, norm of subgrad 1044.859418 dualbound = 1897232.203282, lowerbound=1090202.203282, norm of subgrad 42.311143 stepsize= 1.000000 +dualbound = 1897550.984148, lowerbound=1091067.984148, norm of subgrad 1045.286556 dualbound = 1897550.984148, lowerbound=1091067.984148, norm of subgrad 43.298740 stepsize= 1.000000 +dualbound = 1897849.302849, lowerbound=1088259.302849, norm of subgrad 1043.980988 dualbound = 1897849.302849, lowerbound=1088259.302849, norm of subgrad 43.992257 stepsize= 1.000000 +dualbound = 1898137.716519, lowerbound=1089936.716519, norm of subgrad 1044.779745 dualbound = 1898137.716519, lowerbound=1089936.716519, norm of subgrad 43.776862 stepsize= 1.000000 +dualbound = 1898432.368595, lowerbound=1087499.368595, norm of subgrad 1043.607382 dualbound = 1898432.368595, lowerbound=1087499.368595, norm of subgrad 43.722444 stepsize= 1.000000 +dualbound = 1898760.410772, lowerbound=1092166.410772, norm of subgrad 1045.797500 dualbound = 1898760.410772, lowerbound=1092166.410772, norm of subgrad 43.058590 stepsize= 1.000000 +dualbound = 1899068.486862, lowerbound=1086628.486862, norm of subgrad 1043.163212 dualbound = 1899068.486862, lowerbound=1086628.486862, norm of subgrad 43.232813 stepsize= 1.000000 +dualbound = 1899339.611505, lowerbound=1090548.611505, norm of subgrad 1045.059621 dualbound = 1899339.611505, lowerbound=1090548.611505, norm of subgrad 43.268056 stepsize= 1.000000 +dualbound = 1899668.129745, lowerbound=1090821.129745, norm of subgrad 1045.165599 dualbound = 1899668.129745, lowerbound=1090821.129745, norm of subgrad 43.341876 stepsize= 1.000000 +dualbound = 1899995.045355, lowerbound=1086824.045355, norm of subgrad 1043.230102 dualbound = 1899995.045355, lowerbound=1086824.045355, norm of subgrad 42.800883 stepsize= 1.000000 +dualbound = 1900284.819835, lowerbound=1089683.819835, norm of subgrad 1044.604145 dualbound = 1900284.819835, lowerbound=1089683.819835, norm of subgrad 42.470866 stepsize= 1.000000 +dualbound = 1900612.460508, lowerbound=1088845.460508, norm of subgrad 1044.214279 dualbound = 1900612.460508, lowerbound=1088845.460508, norm of subgrad 43.193063 stepsize= 1.000000 +dualbound = 1900880.316801, lowerbound=1089663.316801, norm of subgrad 1044.595767 dualbound = 1900880.316801, lowerbound=1089663.316801, norm of subgrad 42.247560 stepsize= 1.000000 +dualbound = 1901215.035422, lowerbound=1089864.035422, norm of subgrad 1044.688487 dualbound = 1901215.035422, lowerbound=1089864.035422, norm of subgrad 42.950188 stepsize= 1.000000 +dualbound = 1901479.212794, lowerbound=1087713.212794, norm of subgrad 1043.693544 dualbound = 1901479.212794, lowerbound=1087713.212794, norm of subgrad 42.978801 stepsize= 1.000000 +dualbound = 1901811.704090, lowerbound=1090195.704090, norm of subgrad 1044.870664 dualbound = 1901811.704090, lowerbound=1090195.704090, norm of subgrad 43.491278 stepsize= 1.000000 +dualbound = 1902088.759972, lowerbound=1090104.759972, norm of subgrad 1044.838150 dualbound = 1902088.759972, lowerbound=1090104.759972, norm of subgrad 43.116770 stepsize= 1.000000 +dualbound = 1902417.570279, lowerbound=1088144.570279, norm of subgrad 1043.867602 dualbound = 1902417.570279, lowerbound=1088144.570279, norm of subgrad 42.939612 stepsize= 1.000000 +dualbound = 1902718.953986, lowerbound=1088068.953986, norm of subgrad 1043.827550 dualbound = 1902718.953986, lowerbound=1088068.953986, norm of subgrad 42.525095 stepsize= 1.000000 +dualbound = 1903023.680883, lowerbound=1087210.680883, norm of subgrad 1043.391432 dualbound = 1903023.680883, lowerbound=1087210.680883, norm of subgrad 41.949099 stepsize= 1.000000 +dualbound = 1903326.833369, lowerbound=1090931.833369, norm of subgrad 1045.180287 dualbound = 1903326.833369, lowerbound=1090931.833369, norm of subgrad 42.108817 stepsize= 1.000000 +dualbound = 1903633.236730, lowerbound=1089726.236730, norm of subgrad 1044.649815 dualbound = 1903633.236730, lowerbound=1089726.236730, norm of subgrad 43.282830 stepsize= 1.000000 +dualbound = 1903914.333567, lowerbound=1089184.333567, norm of subgrad 1044.392806 dualbound = 1903914.333567, lowerbound=1089184.333567, norm of subgrad 43.047611 stepsize= 1.000000 +dualbound = 1904222.861946, lowerbound=1092790.861946, norm of subgrad 1046.105569 dualbound = 1904222.861946, lowerbound=1092790.861946, norm of subgrad 43.064235 stepsize= 1.000000 +dualbound = 1904536.193437, lowerbound=1086961.193437, norm of subgrad 1043.323149 dualbound = 1904536.193437, lowerbound=1086961.193437, norm of subgrad 43.305098 stepsize= 1.000000 +dualbound = 1904846.261212, lowerbound=1089691.261212, norm of subgrad 1044.602920 dualbound = 1904846.261212, lowerbound=1089691.261212, norm of subgrad 42.591875 stepsize= 1.000000 +dualbound = 1905159.189150, lowerbound=1087755.189150, norm of subgrad 1043.688742 dualbound = 1905159.189150, lowerbound=1087755.189150, norm of subgrad 42.940982 stepsize= 1.000000 +dualbound = 1905456.038101, lowerbound=1088425.038101, norm of subgrad 1044.023964 dualbound = 1905456.038101, lowerbound=1088425.038101, norm of subgrad 43.102772 stepsize= 1.000000 +dualbound = 1905728.089112, lowerbound=1092879.089112, norm of subgrad 1046.157774 dualbound = 1905728.089112, lowerbound=1092879.089112, norm of subgrad 42.884158 stepsize= 1.000000 +dualbound = 1906067.778800, lowerbound=1088029.778800, norm of subgrad 1043.781001 dualbound = 1906067.778800, lowerbound=1088029.778800, norm of subgrad 42.292904 stepsize= 1.000000 +dualbound = 1906377.931051, lowerbound=1087016.931051, norm of subgrad 1043.323503 dualbound = 1906377.931051, lowerbound=1087016.931051, norm of subgrad 42.628069 stepsize= 1.000000 +dualbound = 1906637.991149, lowerbound=1093411.991149, norm of subgrad 1046.394281 dualbound = 1906637.991149, lowerbound=1093411.991149, norm of subgrad 42.297282 stepsize= 1.000000 +dualbound = 1906966.347748, lowerbound=1091609.347748, norm of subgrad 1045.549783 dualbound = 1906966.347748, lowerbound=1091609.347748, norm of subgrad 43.512718 stepsize= 1.000000 +dualbound = 1907244.354937, lowerbound=1090301.354937, norm of subgrad 1044.972897 dualbound = 1907244.354937, lowerbound=1090301.354937, norm of subgrad 44.102236 stepsize= 1.000000 +dualbound = 1907537.800005, lowerbound=1091507.800005, norm of subgrad 1045.487829 dualbound = 1907537.800005, lowerbound=1091507.800005, norm of subgrad 42.783701 stepsize= 1.000000 +dualbound = 1907899.776260, lowerbound=1090778.776260, norm of subgrad 1045.114719 dualbound = 1907899.776260, lowerbound=1090778.776260, norm of subgrad 42.988094 stepsize= 1.000000 +dualbound = 1908168.511376, lowerbound=1092002.511376, norm of subgrad 1045.724874 dualbound = 1908168.511376, lowerbound=1092002.511376, norm of subgrad 42.505707 stepsize= 1.000000 +dualbound = 1908463.401723, lowerbound=1092352.401723, norm of subgrad 1045.881638 dualbound = 1908463.401723, lowerbound=1092352.401723, norm of subgrad 42.554557 stepsize= 1.000000 +dualbound = 1908767.068109, lowerbound=1088488.068109, norm of subgrad 1044.042177 dualbound = 1908767.068109, lowerbound=1088488.068109, norm of subgrad 42.891332 stepsize= 1.000000 +dualbound = 1909096.999898, lowerbound=1087940.999898, norm of subgrad 1043.754760 dualbound = 1909096.999898, lowerbound=1087940.999898, norm of subgrad 42.578537 stepsize= 1.000000 +dualbound = 1909358.406000, lowerbound=1091908.406000, norm of subgrad 1045.684659 dualbound = 1909358.406000, lowerbound=1091908.406000, norm of subgrad 42.537114 stepsize= 1.000000 +dualbound = 1909652.731691, lowerbound=1092134.731691, norm of subgrad 1045.779963 dualbound = 1909652.731691, lowerbound=1092134.731691, norm of subgrad 42.606639 stepsize= 1.000000 +dualbound = 1909954.955759, lowerbound=1091441.955759, norm of subgrad 1045.430034 dualbound = 1909954.955759, lowerbound=1091441.955759, norm of subgrad 42.240077 stepsize= 1.000000 +dualbound = 1910280.441461, lowerbound=1091814.441461, norm of subgrad 1045.635903 dualbound = 1910280.441461, lowerbound=1091814.441461, norm of subgrad 43.191269 stepsize= 1.000000 +dualbound = 1910532.689183, lowerbound=1092454.689183, norm of subgrad 1045.971648 dualbound = 1910532.689183, lowerbound=1092454.689183, norm of subgrad 43.060977 stepsize= 1.000000 +dualbound = 1910860.021421, lowerbound=1088367.021421, norm of subgrad 1044.002405 dualbound = 1910860.021421, lowerbound=1088367.021421, norm of subgrad 43.604269 stepsize= 1.000000 +dualbound = 1911136.708248, lowerbound=1094804.708248, norm of subgrad 1047.075312 dualbound = 1911136.708248, lowerbound=1094804.708248, norm of subgrad 42.879912 stepsize= 1.000000 +dualbound = 1911470.119761, lowerbound=1090267.119761, norm of subgrad 1044.867034 dualbound = 1911470.119761, lowerbound=1090267.119761, norm of subgrad 42.584170 stepsize= 1.000000 +dualbound = 1911760.251833, lowerbound=1095062.251833, norm of subgrad 1047.188260 dualbound = 1911760.251833, lowerbound=1095062.251833, norm of subgrad 42.791729 stepsize= 1.000000 +dualbound = 1912072.634079, lowerbound=1086279.634079, norm of subgrad 1042.958117 dualbound = 1912072.634079, lowerbound=1086279.634079, norm of subgrad 42.360149 stepsize= 1.000000 +dualbound = 1912372.640432, lowerbound=1091653.640432, norm of subgrad 1045.570964 dualbound = 1912372.640432, lowerbound=1091653.640432, norm of subgrad 43.185719 stepsize= 1.000000 +dualbound = 1912630.746694, lowerbound=1090596.746694, norm of subgrad 1045.101788 dualbound = 1912630.746694, lowerbound=1090596.746694, norm of subgrad 43.578736 stepsize= 1.000000 +dualbound = 1912935.120641, lowerbound=1091461.120641, norm of subgrad 1045.491808 dualbound = 1912935.120641, lowerbound=1091461.120641, norm of subgrad 43.547376 stepsize= 1.000000 +dualbound = 1913267.640976, lowerbound=1095473.640976, norm of subgrad 1047.349818 dualbound = 1913267.640976, lowerbound=1095473.640976, norm of subgrad 42.432539 stepsize= 1.000000 +dualbound = 1913582.008669, lowerbound=1088509.008669, norm of subgrad 1044.040233 dualbound = 1913582.008669, lowerbound=1088509.008669, norm of subgrad 42.724322 stepsize= 1.000000 +dualbound = 1913863.352653, lowerbound=1088937.352653, norm of subgrad 1044.251097 dualbound = 1913863.352653, lowerbound=1088937.352653, norm of subgrad 42.477570 stepsize= 1.000000 +dualbound = 1914148.552194, lowerbound=1092676.552194, norm of subgrad 1046.039938 dualbound = 1914148.552194, lowerbound=1092676.552194, norm of subgrad 42.522930 stepsize= 1.000000 +dualbound = 1914469.987722, lowerbound=1092190.987722, norm of subgrad 1045.787257 dualbound = 1914469.987722, lowerbound=1092190.987722, norm of subgrad 42.443321 stepsize= 1.000000 +dualbound = 1914770.296615, lowerbound=1092905.296615, norm of subgrad 1046.155006 dualbound = 1914770.296615, lowerbound=1092905.296615, norm of subgrad 42.840505 stepsize= 1.000000 +dualbound = 1915038.412250, lowerbound=1090585.412250, norm of subgrad 1045.073400 dualbound = 1915038.412250, lowerbound=1090585.412250, norm of subgrad 43.140649 stepsize= 1.000000 +dualbound = 1915369.650494, lowerbound=1090971.650494, norm of subgrad 1045.220384 dualbound = 1915369.650494, lowerbound=1090971.650494, norm of subgrad 42.956236 stepsize= 1.000000 +dualbound = 1915666.793277, lowerbound=1091832.793277, norm of subgrad 1045.663327 dualbound = 1915666.793277, lowerbound=1091832.793277, norm of subgrad 43.314464 stepsize= 1.000000 +dualbound = 1915952.936544, lowerbound=1093135.936544, norm of subgrad 1046.270967 dualbound = 1915952.936544, lowerbound=1093135.936544, norm of subgrad 42.815222 stepsize= 1.000000 +dualbound = 1916256.044718, lowerbound=1088915.044718, norm of subgrad 1044.243767 dualbound = 1916256.044718, lowerbound=1088915.044718, norm of subgrad 42.814813 stepsize= 1.000000 +dualbound = 1916547.107723, lowerbound=1091334.107723, norm of subgrad 1045.380365 dualbound = 1916547.107723, lowerbound=1091334.107723, norm of subgrad 42.155225 stepsize= 1.000000 +dualbound = 1916879.426626, lowerbound=1092970.426626, norm of subgrad 1046.159848 dualbound = 1916879.426626, lowerbound=1092970.426626, norm of subgrad 42.571339 stepsize= 1.000000 +dualbound = 1917142.976281, lowerbound=1090990.976281, norm of subgrad 1045.255460 dualbound = 1917142.976281, lowerbound=1090990.976281, norm of subgrad 42.796608 stepsize= 1.000000 +dualbound = 1917442.319413, lowerbound=1091839.319413, norm of subgrad 1045.650668 dualbound = 1917442.319413, lowerbound=1091839.319413, norm of subgrad 42.957457 stepsize= 1.000000 +dualbound = 1917728.461487, lowerbound=1092241.461487, norm of subgrad 1045.825732 dualbound = 1917728.461487, lowerbound=1092241.461487, norm of subgrad 42.380916 stepsize= 1.000000 +dualbound = 1918076.634460, lowerbound=1088644.634460, norm of subgrad 1044.114761 dualbound = 1918076.634460, lowerbound=1088644.634460, norm of subgrad 43.349429 stepsize= 1.000000 +dualbound = 1918337.582701, lowerbound=1093523.582701, norm of subgrad 1046.436134 dualbound = 1918337.582701, lowerbound=1093523.582701, norm of subgrad 42.023187 stepsize= 1.000000 +dualbound = 1918634.003353, lowerbound=1092579.003353, norm of subgrad 1046.016732 dualbound = 1918634.003353, lowerbound=1092579.003353, norm of subgrad 43.225232 stepsize= 1.000000 +dualbound = 1918949.402314, lowerbound=1091883.402314, norm of subgrad 1045.651664 dualbound = 1918949.402314, lowerbound=1091883.402314, norm of subgrad 42.654413 stepsize= 1.000000 +dualbound = 1919253.886626, lowerbound=1092415.886626, norm of subgrad 1045.902427 dualbound = 1919253.886626, lowerbound=1092415.886626, norm of subgrad 42.432114 stepsize= 1.000000 +dualbound = 1919545.641576, lowerbound=1086835.641576, norm of subgrad 1043.264895 dualbound = 1919545.641576, lowerbound=1086835.641576, norm of subgrad 43.101682 stepsize= 1.000000 +dualbound = 1919829.196296, lowerbound=1095102.196296, norm of subgrad 1047.252212 dualbound = 1919829.196296, lowerbound=1095102.196296, norm of subgrad 43.801310 stepsize= 1.000000 +dualbound = 1920115.813967, lowerbound=1092113.813967, norm of subgrad 1045.800561 dualbound = 1920115.813967, lowerbound=1092113.813967, norm of subgrad 43.262197 stepsize= 1.000000 +dualbound = 1920447.026478, lowerbound=1090627.026478, norm of subgrad 1045.059820 dualbound = 1920447.026478, lowerbound=1090627.026478, norm of subgrad 43.060568 stepsize= 1.000000 +dualbound = 1920731.603180, lowerbound=1092325.603180, norm of subgrad 1045.916155 dualbound = 1920731.603180, lowerbound=1092325.603180, norm of subgrad 43.584134 stepsize= 1.000000 +dualbound = 1921028.748231, lowerbound=1089955.748231, norm of subgrad 1044.773539 dualbound = 1921028.748231, lowerbound=1089955.748231, norm of subgrad 43.510287 stepsize= 1.000000 +dualbound = 1921308.434150, lowerbound=1092547.434150, norm of subgrad 1045.983955 dualbound = 1921308.434150, lowerbound=1092547.434150, norm of subgrad 42.599130 stepsize= 1.000000 +dualbound = 1921644.320999, lowerbound=1091232.320999, norm of subgrad 1045.340290 dualbound = 1921644.320999, lowerbound=1091232.320999, norm of subgrad 42.893902 stepsize= 1.000000 +dualbound = 1921939.974103, lowerbound=1093272.974103, norm of subgrad 1046.315906 dualbound = 1921939.974103, lowerbound=1093272.974103, norm of subgrad 42.422318 stepsize= 1.000000 +dualbound = 1922236.988381, lowerbound=1092621.988381, norm of subgrad 1046.017681 dualbound = 1922236.988381, lowerbound=1092621.988381, norm of subgrad 42.755284 stepsize= 1.000000 +dualbound = 1922520.600636, lowerbound=1091297.600636, norm of subgrad 1045.382992 dualbound = 1922520.600636, lowerbound=1091297.600636, norm of subgrad 42.563039 stepsize= 1.000000 +dualbound = 1922834.188053, lowerbound=1093445.188053, norm of subgrad 1046.372395 dualbound = 1922834.188053, lowerbound=1093445.188053, norm of subgrad 41.995088 stepsize= 1.000000 +dualbound = 1923160.797689, lowerbound=1092514.797689, norm of subgrad 1045.948277 dualbound = 1923160.797689, lowerbound=1092514.797689, norm of subgrad 42.656883 stepsize= 1.000000 +dualbound = 1923399.716747, lowerbound=1091125.716747, norm of subgrad 1045.337131 dualbound = 1923399.716747, lowerbound=1091125.716747, norm of subgrad 42.929233 stepsize= 1.000000 +dualbound = 1923705.737288, lowerbound=1091895.737288, norm of subgrad 1045.677167 dualbound = 1923705.737288, lowerbound=1091895.737288, norm of subgrad 43.023488 stepsize= 1.000000 +dualbound = 1924034.792480, lowerbound=1094915.792480, norm of subgrad 1047.101615 dualbound = 1924034.792480, lowerbound=1094915.792480, norm of subgrad 42.837544 stepsize= 1.000000 +dualbound = 1924332.661376, lowerbound=1095127.661376, norm of subgrad 1047.220923 dualbound = 1924332.661376, lowerbound=1095127.661376, norm of subgrad 42.917000 stepsize= 1.000000 +dualbound = 1924586.884820, lowerbound=1091785.884820, norm of subgrad 1045.647113 dualbound = 1924586.884820, lowerbound=1091785.884820, norm of subgrad 42.967702 stepsize= 1.000000 +dualbound = 1924908.815110, lowerbound=1089093.815110, norm of subgrad 1044.323137 dualbound = 1924908.815110, lowerbound=1089093.815110, norm of subgrad 42.882750 stepsize= 1.000000 +dualbound = 1925199.062207, lowerbound=1093536.062207, norm of subgrad 1046.473154 dualbound = 1925199.062207, lowerbound=1093536.062207, norm of subgrad 43.130582 stepsize= 1.000000 +dualbound = 1925512.236188, lowerbound=1094233.236188, norm of subgrad 1046.802386 dualbound = 1925512.236188, lowerbound=1094233.236188, norm of subgrad 43.303279 stepsize= 1.000000 +dualbound = 1925792.987795, lowerbound=1093979.987795, norm of subgrad 1046.678550 dualbound = 1925792.987795, lowerbound=1093979.987795, norm of subgrad 42.857340 stepsize= 1.000000 +dualbound = 1926094.592173, lowerbound=1092224.592173, norm of subgrad 1045.846830 dualbound = 1926094.592173, lowerbound=1092224.592173, norm of subgrad 43.273599 stepsize= 1.000000 +dualbound = 1926382.206401, lowerbound=1090566.206401, norm of subgrad 1045.059427 dualbound = 1926382.206401, lowerbound=1090566.206401, norm of subgrad 43.250598 stepsize= 1.000000 +dualbound = 1926697.405820, lowerbound=1090615.405820, norm of subgrad 1045.092056 dualbound = 1926697.405820, lowerbound=1090615.405820, norm of subgrad 43.785836 stepsize= 1.000000 +dualbound = 1926974.493703, lowerbound=1093333.493703, norm of subgrad 1046.372541 dualbound = 1926974.493703, lowerbound=1093333.493703, norm of subgrad 42.884588 stepsize= 1.000000 +dualbound = 1927285.387616, lowerbound=1091781.387616, norm of subgrad 1045.609099 dualbound = 1927285.387616, lowerbound=1091781.387616, norm of subgrad 42.753876 stepsize= 1.000000 +dualbound = 1927613.216722, lowerbound=1094615.216722, norm of subgrad 1046.956645 dualbound = 1927613.216722, lowerbound=1094615.216722, norm of subgrad 42.788189 stepsize= 1.000000 +dualbound = 1927868.095888, lowerbound=1094145.095888, norm of subgrad 1046.768884 dualbound = 1927868.095888, lowerbound=1094145.095888, norm of subgrad 42.835490 stepsize= 1.000000 +dualbound = 1928198.473373, lowerbound=1093577.473373, norm of subgrad 1046.441338 dualbound = 1928198.473373, lowerbound=1093577.473373, norm of subgrad 42.336479 stepsize= 1.000000 +dualbound = 1928516.767954, lowerbound=1091894.767954, norm of subgrad 1045.646101 dualbound = 1928516.767954, lowerbound=1091894.767954, norm of subgrad 42.418093 stepsize= 1.000000 +dualbound = 1928806.091587, lowerbound=1090016.091587, norm of subgrad 1044.787582 dualbound = 1928806.091587, lowerbound=1090016.091587, norm of subgrad 43.061858 stepsize= 1.000000 +dualbound = 1929078.029226, lowerbound=1091949.029226, norm of subgrad 1045.700258 dualbound = 1929078.029226, lowerbound=1091949.029226, norm of subgrad 42.566861 stepsize= 1.000000 +dualbound = 1929386.270979, lowerbound=1094516.270979, norm of subgrad 1046.906524 dualbound = 1929386.270979, lowerbound=1094516.270979, norm of subgrad 42.488137 stepsize= 1.000000 +dualbound = 1929701.104749, lowerbound=1092733.104749, norm of subgrad 1046.067925 dualbound = 1929701.104749, lowerbound=1092733.104749, norm of subgrad 42.893284 stepsize= 1.000000 +dualbound = 1929990.952255, lowerbound=1093547.952255, norm of subgrad 1046.479313 dualbound = 1929990.952255, lowerbound=1093547.952255, norm of subgrad 43.137542 stepsize= 1.000000 +dualbound = 1930241.645871, lowerbound=1089865.645871, norm of subgrad 1044.730896 dualbound = 1930241.645871, lowerbound=1089865.645871, norm of subgrad 42.984807 stepsize= 1.000000 +dualbound = 1930553.330054, lowerbound=1093458.330054, norm of subgrad 1046.434580 dualbound = 1930553.330054, lowerbound=1093458.330054, norm of subgrad 43.343791 stepsize= 1.000000 +dualbound = 1930842.654907, lowerbound=1096313.654907, norm of subgrad 1047.797049 dualbound = 1930842.654907, lowerbound=1096313.654907, norm of subgrad 43.061872 stepsize= 1.000000 +dualbound = 1931158.290718, lowerbound=1094600.290718, norm of subgrad 1046.950472 dualbound = 1931158.290718, lowerbound=1094600.290718, norm of subgrad 42.668909 stepsize= 1.000000 +dualbound = 1931455.772761, lowerbound=1093996.772761, norm of subgrad 1046.666027 dualbound = 1931455.772761, lowerbound=1093996.772761, norm of subgrad 42.549760 stepsize= 1.000000 +dualbound = 1931760.363979, lowerbound=1091037.363979, norm of subgrad 1045.272866 dualbound = 1931760.363979, lowerbound=1091037.363979, norm of subgrad 43.157748 stepsize= 1.000000 +dualbound = 1932044.462079, lowerbound=1093270.462079, norm of subgrad 1046.327607 dualbound = 1932044.462079, lowerbound=1093270.462079, norm of subgrad 42.603968 stepsize= 1.000000 +dualbound = 1932369.418825, lowerbound=1093794.418825, norm of subgrad 1046.537825 dualbound = 1932369.418825, lowerbound=1093794.418825, norm of subgrad 42.094617 stepsize= 1.000000 +dualbound = 1932661.270471, lowerbound=1094365.270471, norm of subgrad 1046.868793 dualbound = 1932661.270471, lowerbound=1094365.270471, norm of subgrad 43.137590 stepsize= 1.000000 +dualbound = 1932924.623411, lowerbound=1092685.623411, norm of subgrad 1046.069607 dualbound = 1932924.623411, lowerbound=1092685.623411, norm of subgrad 42.887678 stepsize= 1.000000 +dualbound = 1933232.220361, lowerbound=1094000.220361, norm of subgrad 1046.700636 dualbound = 1933232.220361, lowerbound=1094000.220361, norm of subgrad 43.469494 stepsize= 1.000000 +dualbound = 1933517.909624, lowerbound=1093343.909624, norm of subgrad 1046.376562 dualbound = 1933517.909624, lowerbound=1093343.909624, norm of subgrad 42.961486 stepsize= 1.000000 +dualbound = 1933834.603808, lowerbound=1093990.603808, norm of subgrad 1046.665469 dualbound = 1933834.603808, lowerbound=1093990.603808, norm of subgrad 42.833330 stepsize= 1.000000 +dualbound = 1934132.392017, lowerbound=1092660.392017, norm of subgrad 1046.045597 dualbound = 1934132.392017, lowerbound=1092660.392017, norm of subgrad 42.997537 stepsize= 1.000000 +dualbound = 1934417.485309, lowerbound=1094431.485309, norm of subgrad 1046.912358 dualbound = 1934417.485309, lowerbound=1094431.485309, norm of subgrad 43.348510 stepsize= 1.000000 +dualbound = 1934698.164896, lowerbound=1092805.164896, norm of subgrad 1046.132958 dualbound = 1934698.164896, lowerbound=1092805.164896, norm of subgrad 43.239792 stepsize= 1.000000 +dualbound = 1935014.404588, lowerbound=1093365.404588, norm of subgrad 1046.386833 dualbound = 1935014.404588, lowerbound=1093365.404588, norm of subgrad 43.315583 stepsize= 1.000000 +dualbound = 1935302.913866, lowerbound=1093574.913866, norm of subgrad 1046.476906 dualbound = 1935302.913866, lowerbound=1093574.913866, norm of subgrad 42.749378 stepsize= 1.000000 +dualbound = 1935620.925619, lowerbound=1095307.925619, norm of subgrad 1047.328471 dualbound = 1935620.925619, lowerbound=1095307.925619, norm of subgrad 43.669346 stepsize= 1.000000 +dualbound = 1935879.914216, lowerbound=1093125.914216, norm of subgrad 1046.270001 dualbound = 1935879.914216, lowerbound=1093125.914216, norm of subgrad 42.590945 stepsize= 1.000000 +dualbound = 1936193.987688, lowerbound=1095113.987688, norm of subgrad 1047.215827 dualbound = 1936193.987688, lowerbound=1095113.987688, norm of subgrad 43.140161 stepsize= 1.000000 +dualbound = 1936496.143265, lowerbound=1092125.143265, norm of subgrad 1045.779204 dualbound = 1936496.143265, lowerbound=1092125.143265, norm of subgrad 42.792004 stepsize= 1.000000 +dualbound = 1936783.544898, lowerbound=1097226.544898, norm of subgrad 1048.222565 dualbound = 1936783.544898, lowerbound=1097226.544898, norm of subgrad 42.794879 stepsize= 1.000000 +dualbound = 1937076.153492, lowerbound=1092579.153492, norm of subgrad 1045.974738 dualbound = 1937076.153492, lowerbound=1092579.153492, norm of subgrad 42.149835 stepsize= 1.000000 +dualbound = 1937393.000538, lowerbound=1091276.000538, norm of subgrad 1045.395141 dualbound = 1937393.000538, lowerbound=1091276.000538, norm of subgrad 43.495368 stepsize= 1.000000 +dualbound = 1937641.392201, lowerbound=1096603.392201, norm of subgrad 1047.930528 dualbound = 1937641.392201, lowerbound=1096603.392201, norm of subgrad 42.466359 stepsize= 1.000000 +dualbound = 1937968.321828, lowerbound=1093758.321828, norm of subgrad 1046.554500 dualbound = 1937968.321828, lowerbound=1093758.321828, norm of subgrad 42.952644 stepsize= 1.000000 +dualbound = 1938268.457139, lowerbound=1092877.457139, norm of subgrad 1046.115891 dualbound = 1938268.457139, lowerbound=1092877.457139, norm of subgrad 42.203499 stepsize= 1.000000 +dualbound = 1938573.335916, lowerbound=1094098.335916, norm of subgrad 1046.709289 dualbound = 1938573.335916, lowerbound=1094098.335916, norm of subgrad 42.507397 stepsize= 1.000000 +dualbound = 1938848.438593, lowerbound=1094611.438593, norm of subgrad 1046.969168 dualbound = 1938848.438593, lowerbound=1094611.438593, norm of subgrad 42.521791 stepsize= 1.000000 +dualbound = 1939124.002279, lowerbound=1096031.002279, norm of subgrad 1047.695090 dualbound = 1939124.002279, lowerbound=1096031.002279, norm of subgrad 43.698555 stepsize= 1.000000 +dualbound = 1939407.455897, lowerbound=1094257.455897, norm of subgrad 1046.832105 dualbound = 1939407.455897, lowerbound=1094257.455897, norm of subgrad 43.398774 stepsize= 1.000000 +dualbound = 1939719.505515, lowerbound=1090270.505515, norm of subgrad 1044.889710 dualbound = 1939719.505515, lowerbound=1090270.505515, norm of subgrad 42.849150 stepsize= 1.000000 +dualbound = 1940039.495639, lowerbound=1095894.495639, norm of subgrad 1047.564077 dualbound = 1940039.495639, lowerbound=1095894.495639, norm of subgrad 42.614436 stepsize= 1.000000 +dualbound = 1940322.681036, lowerbound=1094341.681036, norm of subgrad 1046.856571 dualbound = 1940322.681036, lowerbound=1094341.681036, norm of subgrad 43.013781 stepsize= 1.000000 +dualbound = 1940614.433055, lowerbound=1095465.433055, norm of subgrad 1047.366905 dualbound = 1940614.433055, lowerbound=1095465.433055, norm of subgrad 42.470602 stepsize= 1.000000 +dualbound = 1940903.406837, lowerbound=1089044.406837, norm of subgrad 1044.291821 dualbound = 1940903.406837, lowerbound=1089044.406837, norm of subgrad 42.308082 stepsize= 1.000000 +dualbound = 1941195.218131, lowerbound=1094732.218131, norm of subgrad 1047.022071 dualbound = 1941195.218131, lowerbound=1094732.218131, norm of subgrad 42.600602 stepsize= 1.000000 +dualbound = 1941496.803705, lowerbound=1096624.803705, norm of subgrad 1047.932156 dualbound = 1941496.803705, lowerbound=1096624.803705, norm of subgrad 42.878731 stepsize= 1.000000 +dualbound = 1941783.708827, lowerbound=1096423.708827, norm of subgrad 1047.821411 dualbound = 1941783.708827, lowerbound=1096423.708827, norm of subgrad 42.342710 stepsize= 1.000000 +dualbound = 1942084.060122, lowerbound=1090108.060122, norm of subgrad 1044.830159 dualbound = 1942084.060122, lowerbound=1090108.060122, norm of subgrad 43.154968 stepsize= 1.000000 +dualbound = 1942368.586741, lowerbound=1096432.586741, norm of subgrad 1047.823738 dualbound = 1942368.586741, lowerbound=1096432.586741, norm of subgrad 42.267323 stepsize= 1.000000 +dualbound = 1942687.163614, lowerbound=1094386.163614, norm of subgrad 1046.848682 dualbound = 1942687.163614, lowerbound=1094386.163614, norm of subgrad 42.715066 stepsize= 1.000000 +dualbound = 1942968.233724, lowerbound=1096248.233724, norm of subgrad 1047.751513 dualbound = 1942968.233724, lowerbound=1096248.233724, norm of subgrad 42.615374 stepsize= 1.000000 +dualbound = 1943243.598701, lowerbound=1094123.598701, norm of subgrad 1046.757182 dualbound = 1943243.598701, lowerbound=1094123.598701, norm of subgrad 43.039110 stepsize= 1.000000 +dualbound = 1943553.821918, lowerbound=1092699.821918, norm of subgrad 1046.044369 dualbound = 1943553.821918, lowerbound=1092699.821918, norm of subgrad 42.652353 stepsize= 1.000000 +dualbound = 1943852.057299, lowerbound=1096912.057299, norm of subgrad 1048.056324 dualbound = 1943852.057299, lowerbound=1096912.057299, norm of subgrad 42.523351 stepsize= 1.000000 +dualbound = 1944145.566999, lowerbound=1094917.566999, norm of subgrad 1047.120608 dualbound = 1944145.566999, lowerbound=1094917.566999, norm of subgrad 42.866184 stepsize= 1.000000 +dualbound = 1944432.923614, lowerbound=1092634.923614, norm of subgrad 1046.025776 dualbound = 1944432.923614, lowerbound=1092634.923614, norm of subgrad 42.689069 stepsize= 1.000000 +dualbound = 1944712.003859, lowerbound=1093376.003859, norm of subgrad 1046.400977 dualbound = 1944712.003859, lowerbound=1093376.003859, norm of subgrad 43.105455 stepsize= 1.000000 +dualbound = 1945020.325602, lowerbound=1095458.325602, norm of subgrad 1047.380698 dualbound = 1945020.325602, lowerbound=1095458.325602, norm of subgrad 43.085052 stepsize= 1.000000 +dualbound = 1945301.370488, lowerbound=1101168.370488, norm of subgrad 1050.122074 dualbound = 1945301.370488, lowerbound=1101168.370488, norm of subgrad 43.232452 stepsize= 1.000000 +dualbound = 1945588.192442, lowerbound=1092379.192442, norm of subgrad 1045.905919 dualbound = 1945588.192442, lowerbound=1092379.192442, norm of subgrad 42.741338 stepsize= 1.000000 +dualbound = 1945881.854760, lowerbound=1092459.854760, norm of subgrad 1045.954518 dualbound = 1945881.854760, lowerbound=1092459.854760, norm of subgrad 43.065791 stepsize= 1.000000 +dualbound = 1946185.180521, lowerbound=1091083.180521, norm of subgrad 1045.278040 dualbound = 1946185.180521, lowerbound=1091083.180521, norm of subgrad 42.735533 stepsize= 1.000000 +dualbound = 1946509.087285, lowerbound=1094850.087285, norm of subgrad 1047.042543 dualbound = 1946509.087285, lowerbound=1094850.087285, norm of subgrad 42.094023 stepsize= 1.000000 +dualbound = 1946789.735848, lowerbound=1097626.735848, norm of subgrad 1048.414868 dualbound = 1946789.735848, lowerbound=1097626.735848, norm of subgrad 42.751007 stepsize= 1.000000 +dualbound = 1947058.949334, lowerbound=1094593.949334, norm of subgrad 1046.978963 dualbound = 1947058.949334, lowerbound=1094593.949334, norm of subgrad 42.897710 stepsize= 1.000000 +dualbound = 1947345.427688, lowerbound=1095242.427688, norm of subgrad 1047.306272 dualbound = 1947345.427688, lowerbound=1095242.427688, norm of subgrad 43.525606 stepsize= 1.000000 +dualbound = 1947654.292705, lowerbound=1097355.292705, norm of subgrad 1048.298761 dualbound = 1947654.292705, lowerbound=1097355.292705, norm of subgrad 43.403514 stepsize= 1.000000 +dualbound = 1947934.212923, lowerbound=1094219.212923, norm of subgrad 1046.807152 dualbound = 1947934.212923, lowerbound=1094219.212923, norm of subgrad 43.196299 stepsize= 1.000000 +dualbound = 1948230.265760, lowerbound=1094216.265760, norm of subgrad 1046.793803 dualbound = 1948230.265760, lowerbound=1094216.265760, norm of subgrad 43.093536 stepsize= 1.000000 +dualbound = 1948521.812882, lowerbound=1094548.812882, norm of subgrad 1046.914425 dualbound = 1948521.812882, lowerbound=1094548.812882, norm of subgrad 42.101628 stepsize= 1.000000 +dualbound = 1948840.169807, lowerbound=1097781.169807, norm of subgrad 1048.463719 dualbound = 1948840.169807, lowerbound=1097781.169807, norm of subgrad 42.583529 stepsize= 1.000000 +dualbound = 1949110.183555, lowerbound=1093835.183555, norm of subgrad 1046.608419 dualbound = 1949110.183555, lowerbound=1093835.183555, norm of subgrad 42.708474 stepsize= 1.000000 +dualbound = 1949391.246860, lowerbound=1094868.246860, norm of subgrad 1047.100400 dualbound = 1949391.246860, lowerbound=1094868.246860, norm of subgrad 42.802609 stepsize= 1.000000 +dualbound = 1949712.164642, lowerbound=1091625.164642, norm of subgrad 1045.524827 dualbound = 1949712.164642, lowerbound=1091625.164642, norm of subgrad 42.637047 stepsize= 1.000000 +dualbound = 1950013.305057, lowerbound=1094958.305057, norm of subgrad 1047.102337 dualbound = 1950013.305057, lowerbound=1094958.305057, norm of subgrad 42.025473 stepsize= 1.000000 +dualbound = 1950299.775075, lowerbound=1096676.775075, norm of subgrad 1047.932142 dualbound = 1950299.775075, lowerbound=1096676.775075, norm of subgrad 42.088835 stepsize= 1.000000 +dualbound = 1950593.418979, lowerbound=1098071.418979, norm of subgrad 1048.613093 dualbound = 1950593.418979, lowerbound=1098071.418979, norm of subgrad 42.563410 stepsize= 1.000000 +dualbound = 1950878.991711, lowerbound=1096858.991711, norm of subgrad 1048.056769 dualbound = 1950878.991711, lowerbound=1096858.991711, norm of subgrad 43.006659 stepsize= 1.000000 +dualbound = 1951166.420941, lowerbound=1092850.420941, norm of subgrad 1046.118741 dualbound = 1951166.420941, lowerbound=1092850.420941, norm of subgrad 42.443247 stepsize= 1.000000 +dualbound = 1951451.079314, lowerbound=1093439.079314, norm of subgrad 1046.428726 dualbound = 1951451.079314, lowerbound=1093439.079314, norm of subgrad 43.112160 stepsize= 1.000000 +dualbound = 1951727.488730, lowerbound=1097628.488730, norm of subgrad 1048.454810 dualbound = 1951727.488730, lowerbound=1097628.488730, norm of subgrad 43.650996 stepsize= 1.000000 +dualbound = 1952029.596439, lowerbound=1096277.596439, norm of subgrad 1047.766480 dualbound = 1952029.596439, lowerbound=1096277.596439, norm of subgrad 42.884819 stepsize= 1.000000 +dualbound = 1952347.355934, lowerbound=1094269.355934, norm of subgrad 1046.789069 dualbound = 1952347.355934, lowerbound=1094269.355934, norm of subgrad 42.611730 stepsize= 1.000000 +dualbound = 1952629.730343, lowerbound=1096612.730343, norm of subgrad 1047.953115 dualbound = 1952629.730343, lowerbound=1096612.730343, norm of subgrad 43.305593 stepsize= 1.000000 +dualbound = 1952882.053969, lowerbound=1095409.053969, norm of subgrad 1047.361472 dualbound = 1952882.053969, lowerbound=1095409.053969, norm of subgrad 42.536145 stepsize= 1.000000 +dualbound = 1953194.757715, lowerbound=1096317.757715, norm of subgrad 1047.781827 dualbound = 1953194.757715, lowerbound=1096317.757715, norm of subgrad 42.915076 stepsize= 1.000000 +dualbound = 1953493.737869, lowerbound=1095117.737869, norm of subgrad 1047.207113 dualbound = 1953493.737869, lowerbound=1095117.737869, norm of subgrad 42.708081 stepsize= 1.000000 +dualbound = 1953801.114861, lowerbound=1094589.114861, norm of subgrad 1046.955641 dualbound = 1953801.114861, lowerbound=1094589.114861, norm of subgrad 42.829627 stepsize= 1.000000 +dualbound = 1954076.444635, lowerbound=1098949.444635, norm of subgrad 1049.065034 dualbound = 1954076.444635, lowerbound=1098949.444635, norm of subgrad 43.166304 stepsize= 1.000000 +dualbound = 1954357.153138, lowerbound=1090510.153138, norm of subgrad 1045.001030 dualbound = 1954357.153138, lowerbound=1090510.153138, norm of subgrad 42.399393 stepsize= 1.000000 +dualbound = 1954670.500813, lowerbound=1095412.500813, norm of subgrad 1047.356912 dualbound = 1954670.500813, lowerbound=1095412.500813, norm of subgrad 43.096957 stepsize= 1.000000 +dualbound = 1954953.260447, lowerbound=1097203.260447, norm of subgrad 1048.213366 dualbound = 1954953.260447, lowerbound=1097203.260447, norm of subgrad 42.787377 stepsize= 1.000000 +dualbound = 1955243.501101, lowerbound=1094552.501101, norm of subgrad 1046.931469 dualbound = 1955243.501101, lowerbound=1094552.501101, norm of subgrad 42.464581 stepsize= 1.000000 +dualbound = 1955542.006880, lowerbound=1092554.006880, norm of subgrad 1045.987097 dualbound = 1955542.006880, lowerbound=1092554.006880, norm of subgrad 42.819456 stepsize= 1.000000 +dualbound = 1955849.938317, lowerbound=1095805.938317, norm of subgrad 1047.542332 dualbound = 1955849.938317, lowerbound=1095805.938317, norm of subgrad 42.975940 stepsize= 1.000000 +dualbound = 1956102.732653, lowerbound=1097724.732653, norm of subgrad 1048.480678 dualbound = 1956102.732653, lowerbound=1097724.732653, norm of subgrad 42.892824 stepsize= 1.000000 +dualbound = 1956399.384793, lowerbound=1096597.384793, norm of subgrad 1047.950564 dualbound = 1956399.384793, lowerbound=1096597.384793, norm of subgrad 43.584999 stepsize= 1.000000 +dualbound = 1956676.710943, lowerbound=1095472.710943, norm of subgrad 1047.382314 dualbound = 1956676.710943, lowerbound=1095472.710943, norm of subgrad 42.594908 stepsize= 1.000000 +dualbound = 1957005.547516, lowerbound=1094828.547516, norm of subgrad 1047.096723 dualbound = 1957005.547516, lowerbound=1094828.547516, norm of subgrad 43.724553 stepsize= 1.000000 +dualbound = 1957269.154608, lowerbound=1093921.154608, norm of subgrad 1046.644235 dualbound = 1957269.154608, lowerbound=1093921.154608, norm of subgrad 42.504201 stepsize= 1.000000 +dualbound = 1957565.352947, lowerbound=1098642.352947, norm of subgrad 1048.926286 dualbound = 1957565.352947, lowerbound=1098642.352947, norm of subgrad 43.591264 stepsize= 1.000000 +dualbound = 1957876.144509, lowerbound=1096798.144509, norm of subgrad 1048.007225 dualbound = 1957876.144509, lowerbound=1096798.144509, norm of subgrad 42.799434 stepsize= 1.000000 +dualbound = 1958171.554641, lowerbound=1098223.554641, norm of subgrad 1048.731879 dualbound = 1958171.554641, lowerbound=1098223.554641, norm of subgrad 43.708239 stepsize= 1.000000 +dualbound = 1958416.873067, lowerbound=1092176.873067, norm of subgrad 1045.832144 dualbound = 1958416.873067, lowerbound=1092176.873067, norm of subgrad 42.817268 stepsize= 1.000000 +dualbound = 1958743.309837, lowerbound=1094964.309837, norm of subgrad 1047.117142 dualbound = 1958743.309837, lowerbound=1094964.309837, norm of subgrad 42.619676 stepsize= 1.000000 +dualbound = 1959039.328027, lowerbound=1098582.328027, norm of subgrad 1048.874791 dualbound = 1959039.328027, lowerbound=1098582.328027, norm of subgrad 43.035081 stepsize= 1.000000 +dualbound = 1959349.472314, lowerbound=1094298.472314, norm of subgrad 1046.800111 dualbound = 1959349.472314, lowerbound=1094298.472314, norm of subgrad 42.451670 stepsize= 1.000000 +dualbound = 1959636.836789, lowerbound=1096409.836789, norm of subgrad 1047.863463 dualbound = 1959636.836789, lowerbound=1096409.836789, norm of subgrad 43.535784 stepsize= 1.000000 +dualbound = 1959901.280891, lowerbound=1099155.280891, norm of subgrad 1049.166946 dualbound = 1959901.280891, lowerbound=1099155.280891, norm of subgrad 43.132866 stepsize= 1.000000 +dualbound = 1960187.849691, lowerbound=1096120.849691, norm of subgrad 1047.714107 dualbound = 1960187.849691, lowerbound=1096120.849691, norm of subgrad 43.250073 stepsize= 1.000000 +dualbound = 1960469.943347, lowerbound=1094664.943347, norm of subgrad 1047.007614 dualbound = 1960469.943347, lowerbound=1094664.943347, norm of subgrad 42.919619 stepsize= 1.000000 +dualbound = 1960779.213140, lowerbound=1097153.213140, norm of subgrad 1048.182338 dualbound = 1960779.213140, lowerbound=1097153.213140, norm of subgrad 42.921670 stepsize= 1.000000 +dualbound = 1961109.485576, lowerbound=1096733.485576, norm of subgrad 1047.973991 dualbound = 1961109.485576, lowerbound=1096733.485576, norm of subgrad 42.968272 stepsize= 1.000000 +dualbound = 1961369.110886, lowerbound=1096502.110886, norm of subgrad 1047.863116 dualbound = 1961369.110886, lowerbound=1096502.110886, norm of subgrad 42.126302 stepsize= 1.000000 +dualbound = 1961707.692975, lowerbound=1096385.692975, norm of subgrad 1047.793249 dualbound = 1961707.692975, lowerbound=1096385.692975, norm of subgrad 42.703420 stepsize= 1.000000 +dualbound = 1961939.119032, lowerbound=1092957.119032, norm of subgrad 1046.184075 dualbound = 1961939.119032, lowerbound=1092957.119032, norm of subgrad 42.135805 stepsize= 1.000000 +dualbound = 1962239.985578, lowerbound=1098146.985578, norm of subgrad 1048.660091 dualbound = 1962239.985578, lowerbound=1098146.985578, norm of subgrad 42.916973 stepsize= 1.000000 +dualbound = 1962529.466023, lowerbound=1097237.466023, norm of subgrad 1048.197246 dualbound = 1962529.466023, lowerbound=1097237.466023, norm of subgrad 42.065193 stepsize= 1.000000 +dualbound = 1962849.921931, lowerbound=1097359.921931, norm of subgrad 1048.281890 dualbound = 1962849.921931, lowerbound=1097359.921931, norm of subgrad 43.075003 stepsize= 1.000000 +dualbound = 1963093.624606, lowerbound=1099911.624605, norm of subgrad 1049.528763 dualbound = 1963093.624606, lowerbound=1099911.624605, norm of subgrad 42.926713 stepsize= 1.000000 +dualbound = 1963369.276604, lowerbound=1099953.276604, norm of subgrad 1049.586241 dualbound = 1963369.276604, lowerbound=1099953.276604, norm of subgrad 44.200136 stepsize= 1.000000 +dualbound = 1963643.769698, lowerbound=1097895.769698, norm of subgrad 1048.557948 dualbound = 1963643.769698, lowerbound=1097895.769698, norm of subgrad 43.040598 stepsize= 1.000000 +dualbound = 1963977.478670, lowerbound=1096942.478670, norm of subgrad 1048.071791 dualbound = 1963977.478670, lowerbound=1096942.478670, norm of subgrad 42.961715 stepsize= 1.000000 +dualbound = 1964283.554883, lowerbound=1097429.554883, norm of subgrad 1048.290778 dualbound = 1964283.554883, lowerbound=1097429.554883, norm of subgrad 42.309292 stepsize= 1.000000 +dualbound = 1964578.926694, lowerbound=1098285.926694, norm of subgrad 1048.681518 dualbound = 1964578.926694, lowerbound=1098285.926694, norm of subgrad 41.741727 stepsize= 1.000000 +dualbound = 1964870.336075, lowerbound=1097061.336075, norm of subgrad 1048.146143 dualbound = 1964870.336075, lowerbound=1097061.336075, norm of subgrad 42.899993 stepsize= 1.000000 +dualbound = 1965116.723303, lowerbound=1102196.723303, norm of subgrad 1050.592082 dualbound = 1965116.723303, lowerbound=1102196.723303, norm of subgrad 42.348403 stepsize= 1.000000 +dualbound = 1965416.287712, lowerbound=1098310.287712, norm of subgrad 1048.732706 dualbound = 1965416.287712, lowerbound=1098310.287712, norm of subgrad 42.773408 stepsize= 1.000000 +dualbound = 1965700.902626, lowerbound=1096618.902626, norm of subgrad 1047.930772 dualbound = 1965700.902626, lowerbound=1096618.902626, norm of subgrad 42.715511 stepsize= 1.000000 +dualbound = 1966007.112481, lowerbound=1099980.112481, norm of subgrad 1049.518991 dualbound = 1966007.112481, lowerbound=1099980.112481, norm of subgrad 42.617014 stepsize= 1.000000 +dualbound = 1966281.522035, lowerbound=1097750.522035, norm of subgrad 1048.453395 dualbound = 1966281.522035, lowerbound=1097750.522035, norm of subgrad 42.171193 stepsize= 1.000000 +dualbound = 1966558.467906, lowerbound=1095551.467906, norm of subgrad 1047.433753 dualbound = 1966558.467906, lowerbound=1095551.467906, norm of subgrad 42.929545 stepsize= 1.000000 +dualbound = 1966853.462898, lowerbound=1102213.462898, norm of subgrad 1050.607664 dualbound = 1966853.462898, lowerbound=1102213.462898, norm of subgrad 43.104466 stepsize= 1.000000 +dualbound = 1967133.884692, lowerbound=1097390.884692, norm of subgrad 1048.313829 dualbound = 1967133.884692, lowerbound=1097390.884692, norm of subgrad 43.028151 stepsize= 1.000000 +dualbound = 1967421.933581, lowerbound=1101081.933581, norm of subgrad 1050.034254 dualbound = 1967421.933581, lowerbound=1101081.933581, norm of subgrad 42.166917 stepsize= 1.000000 +dualbound = 1967735.778777, lowerbound=1096738.778777, norm of subgrad 1047.966020 dualbound = 1967735.778777, lowerbound=1096738.778777, norm of subgrad 42.518763 stepsize= 1.000000 +dualbound = 1967993.992729, lowerbound=1100581.992729, norm of subgrad 1049.825220 dualbound = 1967993.992729, lowerbound=1100581.992729, norm of subgrad 42.534856 stepsize= 1.000000 +dualbound = 1968267.287978, lowerbound=1099310.287978, norm of subgrad 1049.241292 dualbound = 1968267.287978, lowerbound=1099310.287978, norm of subgrad 43.246910 stepsize= 1.000000 +dualbound = 1968544.784017, lowerbound=1102316.784017, norm of subgrad 1050.653979 dualbound = 1968544.784017, lowerbound=1102316.784017, norm of subgrad 42.831017 stepsize= 1.000000 +dualbound = 1968860.143859, lowerbound=1099613.143859, norm of subgrad 1049.339384 dualbound = 1968860.143859, lowerbound=1099613.143859, norm of subgrad 42.607040 stepsize= 1.000000 +dualbound = 1969137.909424, lowerbound=1096390.909424, norm of subgrad 1047.802419 dualbound = 1969137.909424, lowerbound=1096390.909424, norm of subgrad 42.151697 stepsize= 1.000000 +dualbound = 1969428.858288, lowerbound=1099159.858288, norm of subgrad 1049.146729 dualbound = 1969428.858288, lowerbound=1099159.858288, norm of subgrad 42.894625 stepsize= 1.000000 +dualbound = 1969688.148407, lowerbound=1101836.148407, norm of subgrad 1050.462350 dualbound = 1969688.148407, lowerbound=1101836.148407, norm of subgrad 43.523443 stepsize= 1.000000 +dualbound = 1969982.180189, lowerbound=1096126.180189, norm of subgrad 1047.689448 dualbound = 1969982.180189, lowerbound=1096126.180189, norm of subgrad 42.673549 stepsize= 1.000000 +dualbound = 1970265.195873, lowerbound=1099845.195873, norm of subgrad 1049.476153 dualbound = 1970265.195873, lowerbound=1099845.195873, norm of subgrad 42.872085 stepsize= 1.000000 +dualbound = 1970573.201849, lowerbound=1097955.201849, norm of subgrad 1048.585810 dualbound = 1970573.201849, lowerbound=1097955.201849, norm of subgrad 43.416656 stepsize= 1.000000 +dualbound = 1970841.852870, lowerbound=1099455.852870, norm of subgrad 1049.287784 dualbound = 1970841.852870, lowerbound=1099455.852870, norm of subgrad 42.633919 stepsize= 1.000000 +dualbound = 1971146.906809, lowerbound=1102416.906809, norm of subgrad 1050.685446 dualbound = 1971146.906809, lowerbound=1102416.906809, norm of subgrad 42.755747 stepsize= 1.000000 +dualbound = 1971429.280996, lowerbound=1096183.280996, norm of subgrad 1047.726243 dualbound = 1971429.280996, lowerbound=1096183.280996, norm of subgrad 42.771184 stepsize= 1.000000 +dualbound = 1971700.708080, lowerbound=1101021.708080, norm of subgrad 1050.035098 dualbound = 1971700.708080, lowerbound=1101021.708080, norm of subgrad 42.701605 stepsize= 1.000000 +dualbound = 1971994.824747, lowerbound=1096743.824747, norm of subgrad 1047.965565 dualbound = 1971994.824747, lowerbound=1096743.824747, norm of subgrad 42.215124 stepsize= 1.000000 +dualbound = 1972297.695027, lowerbound=1099993.695027, norm of subgrad 1049.547376 dualbound = 1972297.695027, lowerbound=1099993.695027, norm of subgrad 43.114618 stepsize= 1.000000 +dualbound = 1972546.704036, lowerbound=1103374.704036, norm of subgrad 1051.159219 dualbound = 1972546.704036, lowerbound=1103374.704036, norm of subgrad 42.544201 stepsize= 1.000000 +dualbound = 1972851.209095, lowerbound=1097600.209095, norm of subgrad 1048.416525 dualbound = 1972851.209095, lowerbound=1097600.209095, norm of subgrad 43.376319 stepsize= 1.000000 +dualbound = 1973124.429903, lowerbound=1100911.429903, norm of subgrad 1050.008776 dualbound = 1973124.429903, lowerbound=1100911.429903, norm of subgrad 43.361513 stepsize= 1.000000 +dualbound = 1973414.691492, lowerbound=1099913.691492, norm of subgrad 1049.526889 dualbound = 1973414.691492, lowerbound=1099913.691492, norm of subgrad 43.396562 stepsize= 1.000000 +dualbound = 1973712.034454, lowerbound=1098710.034454, norm of subgrad 1048.944724 dualbound = 1973712.034454, lowerbound=1098710.034454, norm of subgrad 43.270578 stepsize= 1.000000 +dualbound = 1973994.971345, lowerbound=1101879.971345, norm of subgrad 1050.469405 dualbound = 1973994.971345, lowerbound=1101879.971345, norm of subgrad 43.461902 stepsize= 1.000000 +dualbound = 1974280.102931, lowerbound=1098316.102931, norm of subgrad 1048.744537 dualbound = 1974280.102931, lowerbound=1098316.102931, norm of subgrad 42.826762 stepsize= 1.000000 +dualbound = 1974576.311473, lowerbound=1102251.311473, norm of subgrad 1050.605212 dualbound = 1974576.311473, lowerbound=1102251.311473, norm of subgrad 42.616998 stepsize= 1.000000 +dualbound = 1974885.785116, lowerbound=1095811.785116, norm of subgrad 1047.500733 dualbound = 1974885.785116, lowerbound=1095811.785116, norm of subgrad 41.898373 stepsize= 1.000000 +dualbound = 1975174.278439, lowerbound=1098629.278439, norm of subgrad 1048.873814 dualbound = 1975174.278439, lowerbound=1098629.278439, norm of subgrad 42.373262 stepsize= 1.000000 +dualbound = 1975433.515674, lowerbound=1102145.515674, norm of subgrad 1050.548674 dualbound = 1975433.515674, lowerbound=1102145.515674, norm of subgrad 42.026625 stepsize= 1.000000 +dualbound = 1975737.930101, lowerbound=1101416.930101, norm of subgrad 1050.208517 dualbound = 1975737.930101, lowerbound=1101416.930101, norm of subgrad 42.724869 stepsize= 1.000000 +dualbound = 1976000.762058, lowerbound=1100382.762058, norm of subgrad 1049.732234 dualbound = 1976000.762058, lowerbound=1100382.762058, norm of subgrad 42.636041 stepsize= 1.000000 +dualbound = 1976261.504186, lowerbound=1098855.504186, norm of subgrad 1049.026455 dualbound = 1976261.504186, lowerbound=1098855.504186, norm of subgrad 43.147910 stepsize= 1.000000 +dualbound = 1976574.109034, lowerbound=1096101.109034, norm of subgrad 1047.659825 dualbound = 1976574.109034, lowerbound=1096101.109034, norm of subgrad 42.457094 stepsize= 1.000000 +dualbound = 1976866.389194, lowerbound=1102913.389194, norm of subgrad 1050.953086 dualbound = 1976866.389194, lowerbound=1102913.389194, norm of subgrad 43.373727 stepsize= 1.000000 +dualbound = 1977130.694484, lowerbound=1098423.694484, norm of subgrad 1048.780575 dualbound = 1977130.694484, lowerbound=1098423.694484, norm of subgrad 42.205513 stepsize= 1.000000 +dualbound = 1977459.495904, lowerbound=1099727.495904, norm of subgrad 1049.402447 dualbound = 1977459.495904, lowerbound=1099727.495904, norm of subgrad 42.974428 stepsize= 1.000000 +dualbound = 1977693.162234, lowerbound=1100679.162234, norm of subgrad 1049.876737 dualbound = 1977693.162234, lowerbound=1100679.162234, norm of subgrad 42.375303 stepsize= 1.000000 +dualbound = 1977981.706584, lowerbound=1104880.706584, norm of subgrad 1051.905750 dualbound = 1977981.706584, lowerbound=1104880.706584, norm of subgrad 43.744078 stepsize= 1.000000 +dualbound = 1978281.073878, lowerbound=1097011.073878, norm of subgrad 1048.103561 dualbound = 1978281.073878, lowerbound=1097011.073878, norm of subgrad 42.536658 stepsize= 1.000000 +dualbound = 1978571.614861, lowerbound=1099967.614861, norm of subgrad 1049.554484 dualbound = 1978571.614861, lowerbound=1099967.614861, norm of subgrad 43.445840 stepsize= 1.000000 +dualbound = 1978834.045863, lowerbound=1098858.045863, norm of subgrad 1049.018611 dualbound = 1978834.045863, lowerbound=1098858.045863, norm of subgrad 42.946839 stepsize= 1.000000 +dualbound = 1979139.199370, lowerbound=1102048.199370, norm of subgrad 1050.510447 dualbound = 1979139.199370, lowerbound=1102048.199370, norm of subgrad 42.768604 stepsize= 1.000000 +dualbound = 1979437.434781, lowerbound=1098067.434781, norm of subgrad 1048.640279 dualbound = 1979437.434781, lowerbound=1098067.434781, norm of subgrad 43.327075 stepsize= 1.000000 +dualbound = 1979721.830592, lowerbound=1101143.830592, norm of subgrad 1050.069917 dualbound = 1979721.830592, lowerbound=1101143.830592, norm of subgrad 42.277604 stepsize= 1.000000 +dualbound = 1979980.688066, lowerbound=1099397.688066, norm of subgrad 1049.257684 dualbound = 1979980.688066, lowerbound=1099397.688066, norm of subgrad 42.460069 stepsize= 1.000000 +dualbound = 1980282.392131, lowerbound=1102497.392131, norm of subgrad 1050.758484 dualbound = 1980282.392131, lowerbound=1102497.392131, norm of subgrad 43.562645 stepsize= 1.000000 +dualbound = 1980561.623019, lowerbound=1096904.623019, norm of subgrad 1048.099052 dualbound = 1980561.623019, lowerbound=1096904.623019, norm of subgrad 43.430760 stepsize= 1.000000 +dualbound = 1980826.177144, lowerbound=1099299.177144, norm of subgrad 1049.218365 dualbound = 1980826.177144, lowerbound=1099299.177144, norm of subgrad 42.714800 stepsize= 1.000000 +dualbound = 1981145.016163, lowerbound=1100197.016163, norm of subgrad 1049.616604 dualbound = 1981145.016163, lowerbound=1100197.016163, norm of subgrad 42.624395 stepsize= 1.000000 +dualbound = 1981428.794170, lowerbound=1098332.794170, norm of subgrad 1048.735331 dualbound = 1981428.794170, lowerbound=1098332.794170, norm of subgrad 42.388418 stepsize= 1.000000 +dualbound = 1981715.866649, lowerbound=1103103.866649, norm of subgrad 1051.014684 dualbound = 1981715.866649, lowerbound=1103103.866649, norm of subgrad 42.603667 stepsize= 1.000000 +dualbound = 1981988.389312, lowerbound=1098552.389312, norm of subgrad 1048.865287 dualbound = 1981988.389312, lowerbound=1098552.389312, norm of subgrad 42.877997 stepsize= 1.000000 +dualbound = 1982290.362876, lowerbound=1100785.362876, norm of subgrad 1049.921122 dualbound = 1982290.362876, lowerbound=1100785.362876, norm of subgrad 43.022942 stepsize= 1.000000 +dualbound = 1982562.786227, lowerbound=1098527.786227, norm of subgrad 1048.833059 dualbound = 1982562.786227, lowerbound=1098527.786227, norm of subgrad 42.372436 stepsize= 1.000000 +dualbound = 1982842.443154, lowerbound=1101467.443154, norm of subgrad 1050.254942 dualbound = 1982842.443154, lowerbound=1101467.443154, norm of subgrad 42.984380 stepsize= 1.000000 +dualbound = 1983125.128824, lowerbound=1100524.128824, norm of subgrad 1049.801471 dualbound = 1983125.128824, lowerbound=1100524.128824, norm of subgrad 42.914865 stepsize= 1.000000 +dualbound = 1983409.233265, lowerbound=1102594.233265, norm of subgrad 1050.776966 dualbound = 1983409.233265, lowerbound=1102594.233265, norm of subgrad 42.686115 stepsize= 1.000000 +dualbound = 1983679.559874, lowerbound=1099372.559874, norm of subgrad 1049.269536 dualbound = 1983679.559874, lowerbound=1099372.559874, norm of subgrad 43.177849 stepsize= 1.000000 +dualbound = 1983957.712504, lowerbound=1101109.712504, norm of subgrad 1050.071289 dualbound = 1983957.712504, lowerbound=1101109.712504, norm of subgrad 42.639801 stepsize= 1.000000 +dualbound = 1984247.024113, lowerbound=1101092.024113, norm of subgrad 1050.100483 dualbound = 1984247.024113, lowerbound=1101092.024113, norm of subgrad 43.684226 stepsize= 1.000000 +dualbound = 1984513.541613, lowerbound=1101886.541613, norm of subgrad 1050.469677 dualbound = 1984513.541613, lowerbound=1101886.541613, norm of subgrad 43.203212 stepsize= 1.000000 +dualbound = 1984809.658808, lowerbound=1101208.658808, norm of subgrad 1050.098880 dualbound = 1984809.658808, lowerbound=1101208.658808, norm of subgrad 42.368823 stepsize= 1.000000 +dualbound = 1985113.447011, lowerbound=1100096.447011, norm of subgrad 1049.565837 dualbound = 1985113.447011, lowerbound=1100096.447011, norm of subgrad 42.376741 stepsize= 1.000000 +dualbound = 1985381.234025, lowerbound=1101837.234025, norm of subgrad 1050.407175 dualbound = 1985381.234025, lowerbound=1101837.234025, norm of subgrad 42.258573 stepsize= 1.000000 +dualbound = 1985681.135476, lowerbound=1098564.135476, norm of subgrad 1048.860398 dualbound = 1985681.135476, lowerbound=1098564.135476, norm of subgrad 42.940674 stepsize= 1.000000 +dualbound = 1985944.171540, lowerbound=1103501.171540, norm of subgrad 1051.204153 dualbound = 1985944.171540, lowerbound=1103501.171540, norm of subgrad 42.332447 stepsize= 1.000000 +dualbound = 1986262.428860, lowerbound=1100955.428860, norm of subgrad 1049.973061 dualbound = 1986262.428860, lowerbound=1100955.428860, norm of subgrad 42.500086 stepsize= 1.000000 +dualbound = 1986534.336710, lowerbound=1098528.336710, norm of subgrad 1048.823311 dualbound = 1986534.336710, lowerbound=1098528.336710, norm of subgrad 42.117785 stepsize= 1.000000 +dualbound = 1986808.980569, lowerbound=1100287.980569, norm of subgrad 1049.704711 dualbound = 1986808.980569, lowerbound=1100287.980569, norm of subgrad 43.204674 stepsize= 1.000000 +dualbound = 1987078.941022, lowerbound=1098746.941022, norm of subgrad 1048.976616 dualbound = 1987078.941022, lowerbound=1098746.941022, norm of subgrad 43.300814 stepsize= 1.000000 +dualbound = 1987369.131525, lowerbound=1102415.131525, norm of subgrad 1050.673656 dualbound = 1987369.131525, lowerbound=1102415.131525, norm of subgrad 42.310643 stepsize= 1.000000 +dualbound = 1987675.800182, lowerbound=1099304.800182, norm of subgrad 1049.211990 dualbound = 1987675.800182, lowerbound=1099304.800182, norm of subgrad 42.984516 stepsize= 1.000000 +dualbound = 1987927.171980, lowerbound=1101563.171980, norm of subgrad 1050.305276 dualbound = 1987927.171980, lowerbound=1101563.171980, norm of subgrad 42.771156 stepsize= 1.000000 +dualbound = 1988182.780819, lowerbound=1102211.780819, norm of subgrad 1050.589730 dualbound = 1988182.780819, lowerbound=1102211.780819, norm of subgrad 42.220953 stepsize= 1.000000 +dualbound = 1988505.164978, lowerbound=1102033.164978, norm of subgrad 1050.506623 dualbound = 1988505.164978, lowerbound=1102033.164978, norm of subgrad 43.050948 stepsize= 1.000000 +dualbound = 1988748.846916, lowerbound=1101568.846916, norm of subgrad 1050.287983 dualbound = 1988748.846916, lowerbound=1101568.846916, norm of subgrad 42.186277 stepsize= 1.000000 +dualbound = 1989060.511581, lowerbound=1099353.511581, norm of subgrad 1049.214235 dualbound = 1989060.511581, lowerbound=1099353.511581, norm of subgrad 42.528398 stepsize= 1.000000 +dualbound = 1989345.909411, lowerbound=1101404.909411, norm of subgrad 1050.170419 dualbound = 1989345.909411, lowerbound=1101404.909411, norm of subgrad 41.694098 stepsize= 1.000000 +dualbound = 1989622.082108, lowerbound=1099232.082108, norm of subgrad 1049.206882 dualbound = 1989622.082108, lowerbound=1099232.082108, norm of subgrad 43.349426 stepsize= 1.000000 +dualbound = 1989888.092433, lowerbound=1102646.092433, norm of subgrad 1050.856361 dualbound = 1989888.092433, lowerbound=1102646.092433, norm of subgrad 43.806510 stepsize= 1.000000 +dualbound = 1990145.116532, lowerbound=1099426.116532, norm of subgrad 1049.269802 dualbound = 1990145.116532, lowerbound=1099426.116532, norm of subgrad 42.403114 stepsize= 1.000000 +dualbound = 1990483.093223, lowerbound=1100201.093223, norm of subgrad 1049.653797 dualbound = 1990483.093223, lowerbound=1100201.093223, norm of subgrad 43.703280 stepsize= 1.000000 +dualbound = 1990745.357627, lowerbound=1100167.357627, norm of subgrad 1049.625342 dualbound = 1990745.357627, lowerbound=1100167.357627, norm of subgrad 42.523692 stepsize= 1.000000 +dualbound = 1991025.880925, lowerbound=1099823.880925, norm of subgrad 1049.472192 dualbound = 1991025.880925, lowerbound=1099823.880925, norm of subgrad 42.994457 stepsize= 1.000000 +dualbound = 1991311.000535, lowerbound=1100928.000535, norm of subgrad 1050.006667 dualbound = 1991311.000535, lowerbound=1100928.000535, norm of subgrad 43.256440 stepsize= 1.000000 +dualbound = 1991598.447685, lowerbound=1102806.447685, norm of subgrad 1050.897924 dualbound = 1991598.447685, lowerbound=1102806.447685, norm of subgrad 43.213969 stepsize= 1.000000 +dualbound = 1991871.082484, lowerbound=1099127.082484, norm of subgrad 1049.157320 dualbound = 1991871.082484, lowerbound=1099127.082484, norm of subgrad 43.320143 stepsize= 1.000000 +dualbound = 1992147.003744, lowerbound=1098941.003744, norm of subgrad 1049.060534 dualbound = 1992147.003744, lowerbound=1098941.003744, norm of subgrad 43.161572 stepsize= 1.000000 +dualbound = 1992447.645613, lowerbound=1103512.645613, norm of subgrad 1051.235771 dualbound = 1992447.645613, lowerbound=1103512.645613, norm of subgrad 43.412462 stepsize= 1.000000 +dualbound = 1992744.402608, lowerbound=1102449.402608, norm of subgrad 1050.699958 dualbound = 1992744.402608, lowerbound=1102449.402608, norm of subgrad 42.635161 stepsize= 1.000000 +dualbound = 1993031.337997, lowerbound=1102523.337997, norm of subgrad 1050.751321 dualbound = 1993031.337997, lowerbound=1102523.337997, norm of subgrad 42.917775 stepsize= 1.000000 +dualbound = 1993295.916741, lowerbound=1101662.916741, norm of subgrad 1050.325624 dualbound = 1993295.916741, lowerbound=1101662.916741, norm of subgrad 42.256109 stepsize= 1.000000 +dualbound = 1993588.610297, lowerbound=1099140.610297, norm of subgrad 1049.180447 dualbound = 1993588.610297, lowerbound=1099140.610297, norm of subgrad 43.951036 stepsize= 1.000000 +dualbound = 1993823.224583, lowerbound=1103836.224583, norm of subgrad 1051.391090 dualbound = 1993823.224583, lowerbound=1103836.224583, norm of subgrad 42.680374 stepsize= 1.000000 +dualbound = 1994137.862812, lowerbound=1103358.862812, norm of subgrad 1051.126473 dualbound = 1994137.862812, lowerbound=1103358.862812, norm of subgrad 42.692367 stepsize= 1.000000 +dualbound = 1994444.347944, lowerbound=1104357.347944, norm of subgrad 1051.618918 dualbound = 1994444.347944, lowerbound=1104357.347944, norm of subgrad 43.028887 stepsize= 1.000000 +dualbound = 1994677.804390, lowerbound=1098821.804390, norm of subgrad 1049.005626 dualbound = 1994677.804390, lowerbound=1098821.804390, norm of subgrad 42.713656 stepsize= 1.000000 +dualbound = 1994987.732941, lowerbound=1104919.732941, norm of subgrad 1051.878193 dualbound = 1994987.732941, lowerbound=1104919.732941, norm of subgrad 42.871069 stepsize= 1.000000 +dualbound = 1995254.096514, lowerbound=1100750.096514, norm of subgrad 1049.923853 dualbound = 1995254.096514, lowerbound=1100750.096514, norm of subgrad 43.085538 stepsize= 1.000000 +dualbound = 1995546.166840, lowerbound=1101195.166840, norm of subgrad 1050.118168 dualbound = 1995546.166840, lowerbound=1101195.166840, norm of subgrad 42.954282 stepsize= 1.000000 +dualbound = 1995832.280561, lowerbound=1102532.280561, norm of subgrad 1050.741776 dualbound = 1995832.280561, lowerbound=1102532.280561, norm of subgrad 42.568929 stepsize= 1.000000 +dualbound = 1996105.666238, lowerbound=1103034.666238, norm of subgrad 1050.978909 dualbound = 1996105.666238, lowerbound=1103034.666238, norm of subgrad 42.371992 stepsize= 1.000000 +dualbound = 1996381.391076, lowerbound=1103830.391076, norm of subgrad 1051.365964 dualbound = 1996381.391076, lowerbound=1103830.391076, norm of subgrad 42.611323 stepsize= 1.000000 +dualbound = 1996650.079176, lowerbound=1102136.079176, norm of subgrad 1050.573215 dualbound = 1996650.079176, lowerbound=1102136.079176, norm of subgrad 42.856599 stepsize= 1.000000 +dualbound = 1996937.593929, lowerbound=1102037.593929, norm of subgrad 1050.531101 dualbound = 1996937.593929, lowerbound=1102037.593929, norm of subgrad 43.191605 stepsize= 1.000000 +dualbound = 1997207.191584, lowerbound=1106147.191584, norm of subgrad 1052.459591 dualbound = 1997207.191584, lowerbound=1106147.191584, norm of subgrad 42.350887 stepsize= 1.000000 +dualbound = 1997509.697502, lowerbound=1099784.697502, norm of subgrad 1049.424460 dualbound = 1997509.697502, lowerbound=1099784.697502, norm of subgrad 42.538288 stepsize= 1.000000 +dualbound = 1997782.127425, lowerbound=1102645.127425, norm of subgrad 1050.832112 dualbound = 1997782.127425, lowerbound=1102645.127425, norm of subgrad 43.306234 stepsize= 1.000000 +dualbound = 1998054.432087, lowerbound=1099442.432087, norm of subgrad 1049.303308 dualbound = 1998054.432087, lowerbound=1099442.432087, norm of subgrad 43.212321 stepsize= 1.000000 +dualbound = 1998338.122910, lowerbound=1104096.122910, norm of subgrad 1051.482821 dualbound = 1998338.122910, lowerbound=1104096.122910, norm of subgrad 42.469881 stepsize= 1.000000 +dualbound = 1998635.689623, lowerbound=1102445.689623, norm of subgrad 1050.682963 dualbound = 1998635.689623, lowerbound=1102445.689623, norm of subgrad 42.267798 stepsize= 1.000000 +dualbound = 1998894.259784, lowerbound=1105090.259784, norm of subgrad 1051.993945 dualbound = 1998894.259784, lowerbound=1105090.259784, norm of subgrad 43.122734 stepsize= 1.000000 +dualbound = 1999169.869574, lowerbound=1101908.869574, norm of subgrad 1050.474117 dualbound = 1999169.869574, lowerbound=1101908.869574, norm of subgrad 43.157963 stepsize= 1.000000 +dualbound = 1999453.572336, lowerbound=1102843.572336, norm of subgrad 1050.890847 dualbound = 1999453.572336, lowerbound=1102843.572336, norm of subgrad 42.564102 stepsize= 1.000000 +dualbound = 1999737.228553, lowerbound=1100773.228553, norm of subgrad 1049.903914 dualbound = 1999737.228553, lowerbound=1100773.228553, norm of subgrad 42.528299 stepsize= 1.000000 +dualbound = 2000023.572817, lowerbound=1103288.572817, norm of subgrad 1051.103502 dualbound = 2000023.572817, lowerbound=1103288.572817, norm of subgrad 42.618591 stepsize= 1.000000 +dualbound = 2000293.986705, lowerbound=1100775.986705, norm of subgrad 1049.929039 dualbound = 2000293.986705, lowerbound=1100775.986705, norm of subgrad 42.958281 stepsize= 1.000000 +dualbound = 2000570.341111, lowerbound=1103318.341111, norm of subgrad 1051.130031 dualbound = 2000570.341111, lowerbound=1103318.341111, norm of subgrad 42.806009 stepsize= 1.000000 +dualbound = 2000844.384563, lowerbound=1105071.384563, norm of subgrad 1051.971190 dualbound = 2000844.384563, lowerbound=1105071.384563, norm of subgrad 42.965608 stepsize= 1.000000 +dualbound = 2001121.299597, lowerbound=1104425.299597, norm of subgrad 1051.645520 dualbound = 2001121.299597, lowerbound=1104425.299597, norm of subgrad 42.543096 stepsize= 1.000000 +dualbound = 2001411.866798, lowerbound=1103931.866798, norm of subgrad 1051.386640 dualbound = 2001411.866798, lowerbound=1103931.866798, norm of subgrad 42.101867 stepsize= 1.000000 +dualbound = 2001687.228756, lowerbound=1101971.228756, norm of subgrad 1050.473336 dualbound = 2001687.228756, lowerbound=1101971.228756, norm of subgrad 42.407098 stepsize= 1.000000 +dualbound = 2001957.113022, lowerbound=1101432.113022, norm of subgrad 1050.234313 dualbound = 2001957.113022, lowerbound=1101432.113022, norm of subgrad 42.777147 stepsize= 1.000000 +dualbound = 2002235.105232, lowerbound=1104170.105232, norm of subgrad 1051.526084 dualbound = 2002235.105232, lowerbound=1104170.105232, norm of subgrad 42.602725 stepsize= 1.000000 +dualbound = 2002532.983856, lowerbound=1101210.983856, norm of subgrad 1050.114272 dualbound = 2002532.983856, lowerbound=1101210.983856, norm of subgrad 42.742001 stepsize= 1.000000 +dualbound = 2002802.465776, lowerbound=1102969.465776, norm of subgrad 1050.963113 dualbound = 2002802.465776, lowerbound=1102969.465776, norm of subgrad 42.702247 stepsize= 1.000000 +dualbound = 2003080.743115, lowerbound=1104047.743115, norm of subgrad 1051.461717 dualbound = 2003080.743115, lowerbound=1104047.743115, norm of subgrad 42.453237 stepsize= 1.000000 +dualbound = 2003373.675153, lowerbound=1106524.675153, norm of subgrad 1052.613260 dualbound = 2003373.675153, lowerbound=1106524.675153, norm of subgrad 41.987284 stepsize= 1.000000 +dualbound = 2003647.460805, lowerbound=1100739.460805, norm of subgrad 1049.896881 dualbound = 2003647.460805, lowerbound=1100739.460805, norm of subgrad 42.635498 stepsize= 1.000000 +dualbound = 2003894.745860, lowerbound=1101169.745860, norm of subgrad 1050.128443 dualbound = 2003894.745860, lowerbound=1101169.745860, norm of subgrad 42.980054 stepsize= 1.000000 +dualbound = 2004183.969769, lowerbound=1103643.969769, norm of subgrad 1051.307743 dualbound = 2004183.969769, lowerbound=1103643.969769, norm of subgrad 43.511193 stepsize= 1.000000 +dualbound = 2004451.055548, lowerbound=1105999.055548, norm of subgrad 1052.431972 dualbound = 2004451.055548, lowerbound=1105999.055548, norm of subgrad 43.371486 stepsize= 1.000000 +dualbound = 2004737.805551, lowerbound=1100216.805551, norm of subgrad 1049.638417 dualbound = 2004737.805551, lowerbound=1100216.805551, norm of subgrad 42.552908 stepsize= 1.000000 +dualbound = 2005031.514161, lowerbound=1101847.514161, norm of subgrad 1050.428253 dualbound = 2005031.514161, lowerbound=1101847.514161, norm of subgrad 42.961711 stepsize= 1.000000 +dualbound = 2005289.418993, lowerbound=1102134.418993, norm of subgrad 1050.540537 dualbound = 2005289.418993, lowerbound=1102134.418993, norm of subgrad 41.939299 stepsize= 1.000000 +dualbound = 2005594.564938, lowerbound=1104924.564938, norm of subgrad 1051.853871 dualbound = 2005594.564938, lowerbound=1104924.564938, norm of subgrad 42.156209 stepsize= 1.000000 +dualbound = 2005870.975709, lowerbound=1103036.975709, norm of subgrad 1050.954792 dualbound = 2005870.975709, lowerbound=1103036.975709, norm of subgrad 41.778114 stepsize= 1.000000 +dualbound = 2006162.718619, lowerbound=1103565.718619, norm of subgrad 1051.225817 dualbound = 2006162.718619, lowerbound=1103565.718619, norm of subgrad 42.446942 stepsize= 1.000000 +dualbound = 2006409.496901, lowerbound=1102767.496901, norm of subgrad 1050.865594 dualbound = 2006409.496901, lowerbound=1102767.496901, norm of subgrad 42.400216 stepsize= 1.000000 +dualbound = 2006675.193662, lowerbound=1105228.193662, norm of subgrad 1052.063303 dualbound = 2006675.193662, lowerbound=1105228.193662, norm of subgrad 43.297769 stepsize= 1.000000 +dualbound = 2006939.844089, lowerbound=1104132.844089, norm of subgrad 1051.505989 dualbound = 2006939.844089, lowerbound=1104132.844089, norm of subgrad 42.386913 stepsize= 1.000000 +dualbound = 2007283.021385, lowerbound=1103791.021385, norm of subgrad 1051.305865 dualbound = 2007283.021385, lowerbound=1103791.021385, norm of subgrad 42.381332 stepsize= 1.000000 +dualbound = 2007532.284449, lowerbound=1102689.284449, norm of subgrad 1050.816960 dualbound = 2007532.284449, lowerbound=1102689.284449, norm of subgrad 42.145736 stepsize= 1.000000 +dualbound = 2007795.015625, lowerbound=1100020.015625, norm of subgrad 1049.549435 dualbound = 2007795.015625, lowerbound=1100020.015625, norm of subgrad 42.387866 stepsize= 1.000000 +dualbound = 2008110.523984, lowerbound=1106003.523984, norm of subgrad 1052.362354 dualbound = 2008110.523984, lowerbound=1106003.523984, norm of subgrad 42.172365 stepsize= 1.000000 +dualbound = 2008352.902771, lowerbound=1105914.902771, norm of subgrad 1052.374412 dualbound = 2008352.902771, lowerbound=1105914.902771, norm of subgrad 42.654177 stepsize= 1.000000 +dualbound = 2008631.045532, lowerbound=1100074.045532, norm of subgrad 1049.571363 dualbound = 2008631.045532, lowerbound=1100074.045532, norm of subgrad 42.475202 stepsize= 1.000000 +dualbound = 2008917.733992, lowerbound=1105130.733992, norm of subgrad 1051.962325 dualbound = 2008917.733992, lowerbound=1105130.733992, norm of subgrad 42.198204 stepsize= 1.000000 +dualbound = 2009203.533710, lowerbound=1101840.533710, norm of subgrad 1050.390182 dualbound = 2009203.533710, lowerbound=1101840.533710, norm of subgrad 42.009519 stepsize= 1.000000 +dualbound = 2009455.614428, lowerbound=1102584.614428, norm of subgrad 1050.812359 dualbound = 2009455.614428, lowerbound=1102584.614428, norm of subgrad 43.290654 stepsize= 1.000000 +dualbound = 2009728.106998, lowerbound=1105643.106998, norm of subgrad 1052.232440 dualbound = 2009728.106998, lowerbound=1105643.106998, norm of subgrad 42.690661 stepsize= 1.000000 +dualbound = 2010034.963235, lowerbound=1104773.963235, norm of subgrad 1051.811753 dualbound = 2010034.963235, lowerbound=1104773.963235, norm of subgrad 42.905201 stepsize= 1.000000 +dualbound = 2010306.418129, lowerbound=1106148.418129, norm of subgrad 1052.470626 dualbound = 2010306.418129, lowerbound=1106148.418129, norm of subgrad 42.631618 stepsize= 1.000000 +dualbound = 2010591.455588, lowerbound=1102255.455588, norm of subgrad 1050.615275 dualbound = 2010591.455588, lowerbound=1102255.455588, norm of subgrad 42.685331 stepsize= 1.000000 +dualbound = 2010857.118774, lowerbound=1103681.118774, norm of subgrad 1051.273570 dualbound = 2010857.118774, lowerbound=1103681.118774, norm of subgrad 41.960257 stepsize= 1.000000 +dualbound = 2011150.397839, lowerbound=1104366.397839, norm of subgrad 1051.604202 dualbound = 2011150.397839, lowerbound=1104366.397839, norm of subgrad 42.406121 stepsize= 1.000000 +dualbound = 2011396.543727, lowerbound=1103003.543727, norm of subgrad 1050.971714 dualbound = 2011396.543727, lowerbound=1103003.543727, norm of subgrad 42.239151 stepsize= 1.000000 +dualbound = 2011689.540411, lowerbound=1102917.540411, norm of subgrad 1050.922709 dualbound = 2011689.540411, lowerbound=1102917.540411, norm of subgrad 42.591040 stepsize= 1.000000 +dualbound = 2011951.320001, lowerbound=1107400.320001, norm of subgrad 1053.090366 dualbound = 2011951.320001, lowerbound=1107400.320001, norm of subgrad 43.136755 stepsize= 1.000000 +dualbound = 2012228.798830, lowerbound=1103933.798830, norm of subgrad 1051.431310 dualbound = 2012228.798830, lowerbound=1103933.798830, norm of subgrad 43.028814 stepsize= 1.000000 +dualbound = 2012486.464239, lowerbound=1103114.464239, norm of subgrad 1051.037328 dualbound = 2012486.464239, lowerbound=1103114.464239, norm of subgrad 42.692686 stepsize= 1.000000 +dualbound = 2012788.425280, lowerbound=1104863.425280, norm of subgrad 1051.840970 dualbound = 2012788.425280, lowerbound=1104863.425280, norm of subgrad 42.520125 stepsize= 1.000000 +dualbound = 2013055.055205, lowerbound=1104608.055205, norm of subgrad 1051.747144 dualbound = 2013055.055205, lowerbound=1104608.055205, norm of subgrad 42.785861 stepsize= 1.000000 +dualbound = 2013325.938142, lowerbound=1101788.938142, norm of subgrad 1050.402274 dualbound = 2013325.938142, lowerbound=1101788.938142, norm of subgrad 42.742051 stepsize= 1.000000 +dualbound = 2013586.324161, lowerbound=1099153.324161, norm of subgrad 1049.156959 dualbound = 2013586.324161, lowerbound=1099153.324161, norm of subgrad 42.864741 stepsize= 1.000000 +dualbound = 2013865.851252, lowerbound=1106804.851252, norm of subgrad 1052.802855 dualbound = 2013865.851252, lowerbound=1106804.851252, norm of subgrad 43.226463 stepsize= 1.000000 +dualbound = 2014146.232482, lowerbound=1103943.232482, norm of subgrad 1051.418201 dualbound = 2014146.232482, lowerbound=1103943.232482, norm of subgrad 42.630755 stepsize= 1.000000 +dualbound = 2014469.283829, lowerbound=1106300.283829, norm of subgrad 1052.526144 dualbound = 2014469.283829, lowerbound=1106300.283829, norm of subgrad 42.825826 stepsize= 1.000000 +dualbound = 2014706.469337, lowerbound=1099748.469337, norm of subgrad 1049.429116 dualbound = 2014706.469337, lowerbound=1099748.469337, norm of subgrad 42.310584 stepsize= 1.000000 +dualbound = 2015024.876170, lowerbound=1103870.876170, norm of subgrad 1051.357635 dualbound = 2015024.876170, lowerbound=1103870.876170, norm of subgrad 42.431201 stepsize= 1.000000 +dualbound = 2015285.772413, lowerbound=1104868.772413, norm of subgrad 1051.866804 dualbound = 2015285.772413, lowerbound=1104868.772413, norm of subgrad 42.613334 stepsize= 1.000000 +dualbound = 2015526.303618, lowerbound=1104927.303618, norm of subgrad 1051.887020 dualbound = 2015526.303618, lowerbound=1104927.303618, norm of subgrad 42.184490 stepsize= 1.000000 +dualbound = 2015815.561066, lowerbound=1105584.561066, norm of subgrad 1052.208896 dualbound = 2015815.561066, lowerbound=1105584.561066, norm of subgrad 42.991365 stepsize= 1.000000 +dualbound = 2016110.309416, lowerbound=1103295.309416, norm of subgrad 1051.115269 dualbound = 2016110.309416, lowerbound=1103295.309416, norm of subgrad 42.927245 stepsize= 1.000000 +dualbound = 2016359.655267, lowerbound=1103198.655267, norm of subgrad 1051.081660 dualbound = 2016359.655267, lowerbound=1103198.655267, norm of subgrad 42.700654 stepsize= 1.000000 +dualbound = 2016637.445178, lowerbound=1106981.445178, norm of subgrad 1052.850628 dualbound = 2016637.445178, lowerbound=1106981.445178, norm of subgrad 42.317726 stepsize= 1.000000 +dualbound = 2016942.786197, lowerbound=1103649.786197, norm of subgrad 1051.259143 dualbound = 2016942.786197, lowerbound=1103649.786197, norm of subgrad 42.442208 stepsize= 1.000000 +dualbound = 2017212.912553, lowerbound=1105273.912553, norm of subgrad 1052.028000 dualbound = 2017212.912553, lowerbound=1105273.912553, norm of subgrad 41.941940 stepsize= 1.000000 +dualbound = 2017513.424145, lowerbound=1103199.424145, norm of subgrad 1051.024464 dualbound = 2017513.424145, lowerbound=1103199.424145, norm of subgrad 41.874952 stepsize= 1.000000 +dualbound = 2017785.011154, lowerbound=1106668.011154, norm of subgrad 1052.728365 dualbound = 2017785.011154, lowerbound=1106668.011154, norm of subgrad 42.902063 stepsize= 1.000000 +dualbound = 2018000.232547, lowerbound=1102581.232547, norm of subgrad 1050.821218 dualbound = 2018000.232547, lowerbound=1102581.232547, norm of subgrad 43.118690 stepsize= 1.000000 +dualbound = 2018287.141217, lowerbound=1106682.141217, norm of subgrad 1052.736501 dualbound = 2018287.141217, lowerbound=1106682.141217, norm of subgrad 43.115063 stepsize= 1.000000 +dualbound = 2018579.533436, lowerbound=1103004.533436, norm of subgrad 1050.987885 dualbound = 2018579.533436, lowerbound=1103004.533436, norm of subgrad 43.167027 stepsize= 1.000000 +dualbound = 2018863.630292, lowerbound=1104479.630292, norm of subgrad 1051.677056 dualbound = 2018863.630292, lowerbound=1104479.630292, norm of subgrad 42.767942 stepsize= 1.000000 +dualbound = 2019130.205661, lowerbound=1100943.205661, norm of subgrad 1049.972479 dualbound = 2019130.205661, lowerbound=1100943.205661, norm of subgrad 42.018750 stepsize= 1.000000 +dualbound = 2019417.783428, lowerbound=1103427.783428, norm of subgrad 1051.165441 dualbound = 2019417.783428, lowerbound=1103427.783428, norm of subgrad 42.527377 stepsize= 1.000000 +dualbound = 2019685.543072, lowerbound=1103470.543072, norm of subgrad 1051.197671 dualbound = 2019685.543072, lowerbound=1103470.543072, norm of subgrad 42.588257 stepsize= 1.000000 +dualbound = 2019972.141950, lowerbound=1108112.141950, norm of subgrad 1053.359930 dualbound = 2019972.141950, lowerbound=1108112.141950, norm of subgrad 41.732468 stepsize= 1.000000 +dualbound = 2020256.220562, lowerbound=1101815.220562, norm of subgrad 1050.403361 dualbound = 2020256.220562, lowerbound=1101815.220562, norm of subgrad 42.615474 stepsize= 1.000000 +dualbound = 2020520.878389, lowerbound=1104320.878389, norm of subgrad 1051.609185 dualbound = 2020520.878389, lowerbound=1104320.878389, norm of subgrad 42.727717 stepsize= 1.000000 +dualbound = 2020774.861702, lowerbound=1104041.861702, norm of subgrad 1051.477466 dualbound = 2020774.861702, lowerbound=1104041.861702, norm of subgrad 42.626087 stepsize= 1.000000 +dualbound = 2021063.134525, lowerbound=1104827.134525, norm of subgrad 1051.870303 dualbound = 2021063.134525, lowerbound=1104827.134525, norm of subgrad 43.500262 stepsize= 1.000000 +dualbound = 2021310.644490, lowerbound=1103918.644490, norm of subgrad 1051.408410 dualbound = 2021310.644490, lowerbound=1103918.644490, norm of subgrad 42.290779 stepsize= 1.000000 +dualbound = 2021634.772042, lowerbound=1104801.772042, norm of subgrad 1051.820218 dualbound = 2021634.772042, lowerbound=1104801.772042, norm of subgrad 42.989854 stepsize= 1.000000 +dualbound = 2021872.164914, lowerbound=1104309.164914, norm of subgrad 1051.606469 dualbound = 2021872.164914, lowerbound=1104309.164914, norm of subgrad 42.478146 stepsize= 1.000000 +dualbound = 2022158.806967, lowerbound=1106495.806967, norm of subgrad 1052.653698 dualbound = 2022158.806967, lowerbound=1106495.806967, norm of subgrad 43.250920 stepsize= 1.000000 +dualbound = 2022444.292026, lowerbound=1104375.292026, norm of subgrad 1051.645041 dualbound = 2022444.292026, lowerbound=1104375.292026, norm of subgrad 43.214408 stepsize= 1.000000 +dualbound = 2022715.469783, lowerbound=1102967.469783, norm of subgrad 1050.962640 dualbound = 2022715.469783, lowerbound=1102967.469783, norm of subgrad 42.733801 stepsize= 1.000000 +dualbound = 2022990.852477, lowerbound=1106435.852477, norm of subgrad 1052.619994 dualbound = 2022990.852477, lowerbound=1106435.852477, norm of subgrad 42.992821 stepsize= 1.000000 +dualbound = 2023269.391820, lowerbound=1105171.391820, norm of subgrad 1052.004939 dualbound = 2023269.391820, lowerbound=1105171.391820, norm of subgrad 42.679496 stepsize= 1.000000 +dualbound = 2023551.263669, lowerbound=1108205.263669, norm of subgrad 1053.421219 dualbound = 2023551.263669, lowerbound=1108205.263669, norm of subgrad 42.105485 stepsize= 1.000000 +dualbound = 2023840.203875, lowerbound=1102682.203875, norm of subgrad 1050.814067 dualbound = 2023840.203875, lowerbound=1102682.203875, norm of subgrad 42.625582 stepsize= 1.000000 +dualbound = 2024071.183068, lowerbound=1104319.183068, norm of subgrad 1051.597919 dualbound = 2024071.183068, lowerbound=1104319.183068, norm of subgrad 42.071121 stepsize= 1.000000 +dualbound = 2024387.975615, lowerbound=1103169.975615, norm of subgrad 1051.038047 dualbound = 2024387.975615, lowerbound=1103169.975615, norm of subgrad 42.752691 stepsize= 1.000000 +dualbound = 2024635.556026, lowerbound=1106390.556026, norm of subgrad 1052.617953 dualbound = 2024635.556026, lowerbound=1106390.556026, norm of subgrad 43.146036 stepsize= 1.000000 +dualbound = 2024922.354260, lowerbound=1105089.354260, norm of subgrad 1051.972126 dualbound = 2024922.354260, lowerbound=1105089.354260, norm of subgrad 42.927826 stepsize= 1.000000 +dualbound = 2025181.386452, lowerbound=1104739.386452, norm of subgrad 1051.769645 dualbound = 2025181.386452, lowerbound=1104739.386452, norm of subgrad 41.701705 stepsize= 1.000000 +dualbound = 2025463.256933, lowerbound=1105098.256933, norm of subgrad 1051.960673 dualbound = 2025463.256933, lowerbound=1105098.256933, norm of subgrad 42.483767 stepsize= 1.000000 +dualbound = 2025727.634535, lowerbound=1105572.634535, norm of subgrad 1052.164737 dualbound = 2025727.634535, lowerbound=1105572.634535, norm of subgrad 41.741797 stepsize= 1.000000 +dualbound = 2026016.005020, lowerbound=1105242.005020, norm of subgrad 1052.028044 dualbound = 2026016.005020, lowerbound=1105242.005020, norm of subgrad 42.536696 stepsize= 1.000000 +dualbound = 2026251.602462, lowerbound=1105178.602462, norm of subgrad 1052.050190 dualbound = 2026251.602462, lowerbound=1105178.602462, norm of subgrad 43.204137 stepsize= 1.000000 +dualbound = 2026531.729801, lowerbound=1104109.729801, norm of subgrad 1051.484536 dualbound = 2026531.729801, lowerbound=1104109.729801, norm of subgrad 42.309896 stepsize= 1.000000 +dualbound = 2026816.767300, lowerbound=1105151.767300, norm of subgrad 1051.996087 dualbound = 2026816.767300, lowerbound=1105151.767300, norm of subgrad 42.767248 stepsize= 1.000000 +dualbound = 2027082.976236, lowerbound=1103849.976236, norm of subgrad 1051.390972 dualbound = 2027082.976236, lowerbound=1103849.976236, norm of subgrad 42.885999 stepsize= 1.000000 +dualbound = 2027357.857048, lowerbound=1106630.857048, norm of subgrad 1052.713093 dualbound = 2027357.857048, lowerbound=1106630.857048, norm of subgrad 42.998614 stepsize= 1.000000 +dualbound = 2027620.871879, lowerbound=1104545.871879, norm of subgrad 1051.696663 dualbound = 2027620.871879, lowerbound=1104545.871879, norm of subgrad 42.225760 stepsize= 1.000000 +dualbound = 2027906.079029, lowerbound=1105734.079029, norm of subgrad 1052.296099 dualbound = 2027906.079029, lowerbound=1105734.079029, norm of subgrad 43.338287 stepsize= 1.000000 +dualbound = 2028170.282306, lowerbound=1102130.282306, norm of subgrad 1050.510011 dualbound = 2028170.282306, lowerbound=1102130.282306, norm of subgrad 41.294107 stepsize= 1.000000 +dualbound = 2028491.791422, lowerbound=1104819.791422, norm of subgrad 1051.803114 dualbound = 2028491.791422, lowerbound=1104819.791422, norm of subgrad 42.326223 stepsize= 1.000000 +dualbound = 2028716.242576, lowerbound=1106847.242576, norm of subgrad 1052.812064 dualbound = 2028716.242576, lowerbound=1106847.242576, norm of subgrad 42.313723 stepsize= 1.000000 +dualbound = 2029008.650591, lowerbound=1106745.650591, norm of subgrad 1052.760491 dualbound = 2029008.650591, lowerbound=1106745.650591, norm of subgrad 43.027991 stepsize= 1.000000 +dualbound = 2029262.714233, lowerbound=1105476.714233, norm of subgrad 1052.125332 dualbound = 2029262.714233, lowerbound=1105476.714233, norm of subgrad 41.773959 stepsize= 1.000000 +dualbound = 2029579.528248, lowerbound=1104313.528248, norm of subgrad 1051.571457 dualbound = 2029579.528248, lowerbound=1104313.528248, norm of subgrad 42.494870 stepsize= 1.000000 +dualbound = 2029816.749654, lowerbound=1106390.749654, norm of subgrad 1052.590970 dualbound = 2029816.749654, lowerbound=1106390.749654, norm of subgrad 42.358251 stepsize= 1.000000 +dualbound = 2030120.028112, lowerbound=1106954.028112, norm of subgrad 1052.844731 dualbound = 2030120.028112, lowerbound=1106954.028112, norm of subgrad 42.793439 stepsize= 1.000000 +dualbound = 2030364.230498, lowerbound=1102921.230498, norm of subgrad 1050.939689 dualbound = 2030364.230498, lowerbound=1102921.230498, norm of subgrad 42.393424 stepsize= 1.000000 +dualbound = 2030650.766820, lowerbound=1105592.766820, norm of subgrad 1052.195688 dualbound = 2030650.766820, lowerbound=1105592.766820, norm of subgrad 42.538645 stepsize= 1.000000 +dualbound = 2030903.853429, lowerbound=1108135.853429, norm of subgrad 1053.427194 dualbound = 2030903.853429, lowerbound=1108135.853429, norm of subgrad 42.732735 stepsize= 1.000000 +dualbound = 2031183.430338, lowerbound=1102989.430338, norm of subgrad 1050.967378 dualbound = 2031183.430338, lowerbound=1102989.430338, norm of subgrad 42.691649 stepsize= 1.000000 +dualbound = 2031461.551645, lowerbound=1107283.551645, norm of subgrad 1053.005485 dualbound = 2031461.551645, lowerbound=1107283.551645, norm of subgrad 42.604240 stepsize= 1.000000 +dualbound = 2031719.674466, lowerbound=1103159.674466, norm of subgrad 1051.027913 dualbound = 2031719.674466, lowerbound=1103159.674466, norm of subgrad 41.929975 stepsize= 1.000000 +dualbound = 2032009.741417, lowerbound=1109898.741417, norm of subgrad 1054.270241 dualbound = 2032009.741417, lowerbound=1109898.741417, norm of subgrad 43.325131 stepsize= 1.000000 +dualbound = 2032256.059335, lowerbound=1104408.059335, norm of subgrad 1051.660620 dualbound = 2032256.059335, lowerbound=1104408.059335, norm of subgrad 42.758834 stepsize= 1.000000 +dualbound = 2032541.958542, lowerbound=1102805.958542, norm of subgrad 1050.873427 dualbound = 2032541.958542, lowerbound=1102805.958542, norm of subgrad 42.601634 stepsize= 1.000000 +dualbound = 2032829.383685, lowerbound=1102773.383685, norm of subgrad 1050.872677 dualbound = 2032829.383685, lowerbound=1102773.383685, norm of subgrad 42.981684 stepsize= 1.000000 +dualbound = 2033101.634446, lowerbound=1108288.634446, norm of subgrad 1053.508725 dualbound = 2033101.634446, lowerbound=1108288.634446, norm of subgrad 43.176970 stepsize= 1.000000 +dualbound = 2033360.513906, lowerbound=1105702.513906, norm of subgrad 1052.245938 dualbound = 2033360.513906, lowerbound=1105702.513906, norm of subgrad 42.164908 stepsize= 1.000000 +dualbound = 2033642.770554, lowerbound=1109187.770554, norm of subgrad 1053.940592 dualbound = 2033642.770554, lowerbound=1109187.770554, norm of subgrad 43.419542 stepsize= 1.000000 +dualbound = 2033893.661484, lowerbound=1105065.661484, norm of subgrad 1051.949458 dualbound = 2033893.661484, lowerbound=1105065.661484, norm of subgrad 42.224293 stepsize= 1.000000 +dualbound = 2034188.531345, lowerbound=1102134.531345, norm of subgrad 1050.540590 dualbound = 2034188.531345, lowerbound=1102134.531345, norm of subgrad 42.377705 stepsize= 1.000000 +dualbound = 2034446.000214, lowerbound=1105859.000214, norm of subgrad 1052.341200 dualbound = 2034446.000214, lowerbound=1105859.000214, norm of subgrad 42.666953 stepsize= 1.000000 +dualbound = 2034710.308456, lowerbound=1108324.308456, norm of subgrad 1053.510469 dualbound = 2034710.308456, lowerbound=1108324.308456, norm of subgrad 42.711922 stepsize= 1.000000 +dualbound = 2035008.457037, lowerbound=1107616.457037, norm of subgrad 1053.169719 dualbound = 2035008.457037, lowerbound=1107616.457037, norm of subgrad 42.990099 stepsize= 1.000000 +dualbound = 2035267.337966, lowerbound=1102402.337966, norm of subgrad 1050.698500 dualbound = 2035267.337966, lowerbound=1102402.337966, norm of subgrad 42.706919 stepsize= 1.000000 +dualbound = 2035541.458196, lowerbound=1105544.458196, norm of subgrad 1052.171306 dualbound = 2035541.458196, lowerbound=1105544.458196, norm of subgrad 42.357056 stepsize= 1.000000 +dualbound = 2035811.358114, lowerbound=1108058.358114, norm of subgrad 1053.400853 dualbound = 2035811.358114, lowerbound=1108058.358114, norm of subgrad 43.184487 stepsize= 1.000000 +dualbound = 2036070.580821, lowerbound=1104308.580821, norm of subgrad 1051.612372 dualbound = 2036070.580821, lowerbound=1104308.580821, norm of subgrad 42.886160 stepsize= 1.000000 +dualbound = 2036350.641813, lowerbound=1105910.641813, norm of subgrad 1052.360509 dualbound = 2036350.641813, lowerbound=1105910.641813, norm of subgrad 42.802582 stepsize= 1.000000 +dualbound = 2036631.489220, lowerbound=1106511.489220, norm of subgrad 1052.642147 dualbound = 2036631.489220, lowerbound=1106511.489220, norm of subgrad 42.718233 stepsize= 1.000000 +dualbound = 2036891.239197, lowerbound=1104981.239197, norm of subgrad 1051.876057 dualbound = 2036891.239197, lowerbound=1104981.239197, norm of subgrad 41.493975 stepsize= 1.000000 +dualbound = 2037199.800053, lowerbound=1107244.800053, norm of subgrad 1052.976163 dualbound = 2037199.800053, lowerbound=1107244.800053, norm of subgrad 42.691461 stepsize= 1.000000 +dualbound = 2037443.872559, lowerbound=1106055.872559, norm of subgrad 1052.436161 dualbound = 2037443.872559, lowerbound=1106055.872559, norm of subgrad 42.544947 stepsize= 1.000000 +dualbound = 2037733.367471, lowerbound=1104868.367471, norm of subgrad 1051.843794 dualbound = 2037733.367471, lowerbound=1104868.367471, norm of subgrad 42.385079 stepsize= 1.000000 +dualbound = 2037996.590914, lowerbound=1106769.590914, norm of subgrad 1052.739090 dualbound = 2037996.590914, lowerbound=1106769.590914, norm of subgrad 41.871511 stepsize= 1.000000 +dualbound = 2038261.347039, lowerbound=1102792.347039, norm of subgrad 1050.865999 dualbound = 2038261.347039, lowerbound=1102792.347039, norm of subgrad 42.329140 stepsize= 1.000000 +dualbound = 2038511.332199, lowerbound=1109023.332199, norm of subgrad 1053.884876 dualbound = 2038511.332199, lowerbound=1109023.332199, norm of subgrad 43.588819 stepsize= 1.000000 +dualbound = 2038764.899478, lowerbound=1105039.899478, norm of subgrad 1051.951472 dualbound = 2038764.899478, lowerbound=1105039.899478, norm of subgrad 42.609474 stepsize= 1.000000 +dualbound = 2039068.131488, lowerbound=1107405.131488, norm of subgrad 1053.031401 dualbound = 2039068.131488, lowerbound=1107405.131488, norm of subgrad 42.109761 stepsize= 1.000000 +dualbound = 2039342.980216, lowerbound=1102495.980216, norm of subgrad 1050.727834 dualbound = 2039342.980216, lowerbound=1102495.980216, norm of subgrad 42.518804 stepsize= 1.000000 +dualbound = 2039630.199609, lowerbound=1106260.199609, norm of subgrad 1052.515178 dualbound = 2039630.199609, lowerbound=1106260.199609, norm of subgrad 42.605392 stepsize= 1.000000 +dualbound = 2039877.082072, lowerbound=1103901.082072, norm of subgrad 1051.432395 dualbound = 2039877.082072, lowerbound=1103901.082072, norm of subgrad 43.079954 stepsize= 1.000000 +dualbound = 2040135.136939, lowerbound=1109640.136939, norm of subgrad 1054.160394 dualbound = 2040135.136939, lowerbound=1109640.136939, norm of subgrad 43.267249 stepsize= 1.000000 +dualbound = 2040403.230866, lowerbound=1104471.230866, norm of subgrad 1051.682096 dualbound = 2040403.230866, lowerbound=1104471.230866, norm of subgrad 42.802966 stepsize= 1.000000 +dualbound = 2040691.550974, lowerbound=1109768.550974, norm of subgrad 1054.187626 dualbound = 2040691.550974, lowerbound=1109768.550974, norm of subgrad 42.793926 stepsize= 1.000000 +dualbound = 2040978.062478, lowerbound=1100589.062478, norm of subgrad 1049.822872 dualbound = 2040978.062478, lowerbound=1100589.062478, norm of subgrad 42.726005 stepsize= 1.000000 +dualbound = 2041243.540025, lowerbound=1110395.540025, norm of subgrad 1054.487809 dualbound = 2041243.540025, lowerbound=1110395.540025, norm of subgrad 42.596685 stepsize= 1.000000 +dualbound = 2041507.490943, lowerbound=1103540.490943, norm of subgrad 1051.238075 dualbound = 2041507.490943, lowerbound=1103540.490943, norm of subgrad 42.719444 stepsize= 1.000000 +dualbound = 2041802.801007, lowerbound=1110262.801007, norm of subgrad 1054.408271 dualbound = 2041802.801007, lowerbound=1110262.801007, norm of subgrad 42.535986 stepsize= 1.000000 +dualbound = 2042037.226849, lowerbound=1104905.226849, norm of subgrad 1051.884132 dualbound = 2042037.226849, lowerbound=1104905.226849, norm of subgrad 42.301606 stepsize= 1.000000 +dualbound = 2042317.367239, lowerbound=1106269.367239, norm of subgrad 1052.508132 dualbound = 2042317.367239, lowerbound=1106269.367239, norm of subgrad 42.239086 stepsize= 1.000000 +dualbound = 2042605.236569, lowerbound=1105832.236569, norm of subgrad 1052.293798 dualbound = 2042605.236569, lowerbound=1105832.236569, norm of subgrad 42.164788 stepsize= 1.000000 +dualbound = 2042871.994237, lowerbound=1110030.994237, norm of subgrad 1054.275104 dualbound = 2042871.994237, lowerbound=1110030.994237, norm of subgrad 41.614393 stepsize= 1.000000 +dualbound = 2043145.465257, lowerbound=1102457.465257, norm of subgrad 1050.701416 dualbound = 2043145.465257, lowerbound=1102457.465257, norm of subgrad 42.302140 stepsize= 1.000000 +dualbound = 2043386.498531, lowerbound=1109961.498531, norm of subgrad 1054.301901 dualbound = 2043386.498531, lowerbound=1109961.498531, norm of subgrad 42.802258 stepsize= 1.000000 +dualbound = 2043659.296025, lowerbound=1104204.296025, norm of subgrad 1051.562787 dualbound = 2043659.296025, lowerbound=1104204.296025, norm of subgrad 43.044134 stepsize= 1.000000 +dualbound = 2043925.851443, lowerbound=1104045.851443, norm of subgrad 1051.472706 dualbound = 2043925.851443, lowerbound=1104045.851443, norm of subgrad 42.609335 stepsize= 1.000000 +dualbound = 2044196.055773, lowerbound=1106977.055773, norm of subgrad 1052.884161 dualbound = 2044196.055773, lowerbound=1106977.055773, norm of subgrad 43.106894 stepsize= 1.000000 +dualbound = 2044473.851916, lowerbound=1108672.851916, norm of subgrad 1053.662115 dualbound = 2044473.851916, lowerbound=1108672.851916, norm of subgrad 42.529944 stepsize= 1.000000 +dualbound = 2044768.471854, lowerbound=1103808.471854, norm of subgrad 1051.352211 dualbound = 2044768.471854, lowerbound=1103808.471854, norm of subgrad 42.750672 stepsize= 1.000000 +dualbound = 2044990.629754, lowerbound=1110921.629754, norm of subgrad 1054.756669 dualbound = 2044990.629754, lowerbound=1110921.629754, norm of subgrad 42.569448 stepsize= 1.000000 +dualbound = 2045289.977005, lowerbound=1105383.977005, norm of subgrad 1052.093616 dualbound = 2045289.977005, lowerbound=1105383.977005, norm of subgrad 42.618626 stepsize= 1.000000 +dualbound = 2045556.164037, lowerbound=1103894.164037, norm of subgrad 1051.392013 dualbound = 2045556.164037, lowerbound=1103894.164037, norm of subgrad 42.393243 stepsize= 1.000000 +dualbound = 2045812.702139, lowerbound=1101313.702139, norm of subgrad 1050.174606 dualbound = 2045812.702139, lowerbound=1101313.702139, norm of subgrad 42.538666 stepsize= 1.000000 +dualbound = 2046087.584451, lowerbound=1106986.584451, norm of subgrad 1052.873964 dualbound = 2046087.584451, lowerbound=1106986.584451, norm of subgrad 42.800494 stepsize= 1.000000 +dualbound = 2046347.167214, lowerbound=1108251.167214, norm of subgrad 1053.503283 dualbound = 2046347.167214, lowerbound=1108251.167214, norm of subgrad 43.331083 stepsize= 1.000000 +dualbound = 2046624.828546, lowerbound=1107511.828546, norm of subgrad 1053.126217 dualbound = 2046624.828546, lowerbound=1107511.828546, norm of subgrad 42.902929 stepsize= 1.000000 +dualbound = 2046890.250895, lowerbound=1105477.250895, norm of subgrad 1052.154576 dualbound = 2046890.250895, lowerbound=1105477.250895, norm of subgrad 42.631237 stepsize= 1.000000 +dualbound = 2047175.920933, lowerbound=1108223.920933, norm of subgrad 1053.446212 dualbound = 2047175.920933, lowerbound=1108223.920933, norm of subgrad 42.551969 stepsize= 1.000000 +dualbound = 2047468.473216, lowerbound=1105009.473216, norm of subgrad 1051.918948 dualbound = 2047468.473216, lowerbound=1105009.473216, norm of subgrad 42.621031 stepsize= 1.000000 +dualbound = 2047713.355083, lowerbound=1107688.355083, norm of subgrad 1053.254649 dualbound = 2047713.355083, lowerbound=1107688.355083, norm of subgrad 43.610571 stepsize= 1.000000 +dualbound = 2047957.791862, lowerbound=1103851.791862, norm of subgrad 1051.395164 dualbound = 2047957.791862, lowerbound=1103851.791862, norm of subgrad 42.713426 stepsize= 1.000000 +dualbound = 2048260.185155, lowerbound=1109866.185155, norm of subgrad 1054.193618 dualbound = 2048260.185155, lowerbound=1109866.185155, norm of subgrad 41.957041 stepsize= 1.000000 +dualbound = 2048553.001101, lowerbound=1108664.001101, norm of subgrad 1053.633713 dualbound = 2048553.001101, lowerbound=1108664.001101, norm of subgrad 42.104821 stepsize= 1.000000 +dualbound = 2048798.385327, lowerbound=1105621.385327, norm of subgrad 1052.202160 dualbound = 2048798.385327, lowerbound=1105621.385327, norm of subgrad 41.873431 stepsize= 1.000000 +dualbound = 2049062.790710, lowerbound=1108286.790710, norm of subgrad 1053.514495 dualbound = 2049062.790710, lowerbound=1108286.790710, norm of subgrad 43.248184 stepsize= 1.000000 +dualbound = 2049307.283838, lowerbound=1102961.283838, norm of subgrad 1050.985863 dualbound = 2049307.283838, lowerbound=1102961.283838, norm of subgrad 43.063826 stepsize= 1.000000 +dualbound = 2049584.559099, lowerbound=1106412.559099, norm of subgrad 1052.611780 dualbound = 2049584.559099, lowerbound=1106412.559099, norm of subgrad 43.084513 stepsize= 1.000000 +dualbound = 2049882.872553, lowerbound=1108129.872553, norm of subgrad 1053.400623 dualbound = 2049882.872553, lowerbound=1108129.872553, norm of subgrad 42.676849 stepsize= 1.000000 +dualbound = 2050152.011959, lowerbound=1108522.011959, norm of subgrad 1053.600499 dualbound = 2050152.011959, lowerbound=1108522.011959, norm of subgrad 42.674810 stepsize= 1.000000 +dualbound = 2050407.749139, lowerbound=1103718.749139, norm of subgrad 1051.291467 dualbound = 2050407.749139, lowerbound=1103718.749139, norm of subgrad 41.841811 stepsize= 1.000000 +dualbound = 2050698.251763, lowerbound=1109748.251763, norm of subgrad 1054.172781 dualbound = 2050698.251763, lowerbound=1109748.251763, norm of subgrad 42.690779 stepsize= 1.000000 +dualbound = 2050930.030594, lowerbound=1106464.030594, norm of subgrad 1052.644779 dualbound = 2050930.030594, lowerbound=1106464.030594, norm of subgrad 42.764224 stepsize= 1.000000 +dualbound = 2051195.568760, lowerbound=1108182.568760, norm of subgrad 1053.440824 dualbound = 2051195.568760, lowerbound=1108182.568760, norm of subgrad 42.667765 stepsize= 1.000000 +dualbound = 2051491.094523, lowerbound=1104475.094523, norm of subgrad 1051.659210 dualbound = 2051491.094523, lowerbound=1104475.094523, norm of subgrad 42.515006 stepsize= 1.000000 +dualbound = 2051754.931658, lowerbound=1107721.931658, norm of subgrad 1053.216470 dualbound = 2051754.931658, lowerbound=1107721.931658, norm of subgrad 42.506907 stepsize= 1.000000 +dualbound = 2052024.718070, lowerbound=1109847.718070, norm of subgrad 1054.220431 dualbound = 2052024.718070, lowerbound=1109847.718070, norm of subgrad 42.459232 stepsize= 1.000000 +dualbound = 2052267.511270, lowerbound=1108631.511270, norm of subgrad 1053.670969 dualbound = 2052267.511270, lowerbound=1108631.511270, norm of subgrad 42.822812 stepsize= 1.000000 +dualbound = 2052564.176973, lowerbound=1107439.176973, norm of subgrad 1053.070832 dualbound = 2052564.176973, lowerbound=1107439.176973, norm of subgrad 42.610629 stepsize= 1.000000 +dualbound = 2052783.141801, lowerbound=1107081.141801, norm of subgrad 1052.954482 dualbound = 2052783.141801, lowerbound=1107081.141801, norm of subgrad 43.022841 stepsize= 1.000000 +dualbound = 2053064.160037, lowerbound=1109130.160037, norm of subgrad 1053.894283 dualbound = 2053064.160037, lowerbound=1109130.160037, norm of subgrad 42.942033 stepsize= 1.000000 +dualbound = 2053364.681603, lowerbound=1108041.681603, norm of subgrad 1053.352591 dualbound = 2053364.681603, lowerbound=1108041.681603, norm of subgrad 42.550224 stepsize= 1.000000 +dualbound = 2053615.371708, lowerbound=1106265.371708, norm of subgrad 1052.492932 dualbound = 2053615.371708, lowerbound=1106265.371708, norm of subgrad 41.553461 stepsize= 1.000000 +dualbound = 2053903.577707, lowerbound=1106555.577707, norm of subgrad 1052.664988 dualbound = 2053903.577707, lowerbound=1106555.577707, norm of subgrad 42.850974 stepsize= 1.000000 +dualbound = 2054156.937976, lowerbound=1109815.937976, norm of subgrad 1054.212473 dualbound = 2054156.937976, lowerbound=1109815.937976, norm of subgrad 42.442435 stepsize= 1.000000 +dualbound = 2054419.316351, lowerbound=1108634.316351, norm of subgrad 1053.646201 dualbound = 2054419.316351, lowerbound=1108634.316351, norm of subgrad 42.407292 stepsize= 1.000000 +dualbound = 2054704.288450, lowerbound=1107038.288450, norm of subgrad 1052.895193 dualbound = 2054704.288450, lowerbound=1107038.288450, norm of subgrad 42.836574 stepsize= 1.000000 +dualbound = 2054934.186307, lowerbound=1106123.186307, norm of subgrad 1052.433934 dualbound = 2054934.186307, lowerbound=1106123.186307, norm of subgrad 41.519849 stepsize= 1.000000 +dualbound = 2055253.878664, lowerbound=1105976.878664, norm of subgrad 1052.355396 dualbound = 2055253.878664, lowerbound=1105976.878664, norm of subgrad 42.363810 stepsize= 1.000000 +dualbound = 2055486.628448, lowerbound=1113232.628448, norm of subgrad 1055.829356 dualbound = 2055486.628448, lowerbound=1113232.628448, norm of subgrad 42.139646 stepsize= 1.000000 +dualbound = 2055745.102508, lowerbound=1105997.102508, norm of subgrad 1052.438170 dualbound = 2055745.102508, lowerbound=1105997.102508, norm of subgrad 43.445069 stepsize= 1.000000 +dualbound = 2055970.913663, lowerbound=1107843.913663, norm of subgrad 1053.338936 dualbound = 2055970.913663, lowerbound=1107843.913663, norm of subgrad 43.644142 stepsize= 1.000000 +dualbound = 2056270.529332, lowerbound=1105740.529332, norm of subgrad 1052.277781 dualbound = 2056270.529332, lowerbound=1105740.529332, norm of subgrad 42.983900 stepsize= 1.000000 +dualbound = 2056539.843072, lowerbound=1108743.843072, norm of subgrad 1053.736135 dualbound = 2056539.843072, lowerbound=1108743.843072, norm of subgrad 43.420200 stepsize= 1.000000 +dualbound = 2056791.612077, lowerbound=1107968.612077, norm of subgrad 1053.358729 dualbound = 2056791.612077, lowerbound=1107968.612077, norm of subgrad 42.985684 stepsize= 1.000000 +dualbound = 2057081.003279, lowerbound=1107914.003279, norm of subgrad 1053.294832 dualbound = 2057081.003279, lowerbound=1107914.003279, norm of subgrad 42.489895 stepsize= 1.000000 +dualbound = 2057362.425886, lowerbound=1109452.425886, norm of subgrad 1054.027242 dualbound = 2057362.425886, lowerbound=1109452.425886, norm of subgrad 42.454948 stepsize= 1.000000 +dualbound = 2057594.733474, lowerbound=1111093.733474, norm of subgrad 1054.817867 dualbound = 2057594.733474, lowerbound=1111093.733474, norm of subgrad 42.181840 stepsize= 1.000000 +dualbound = 2057893.494360, lowerbound=1106507.494360, norm of subgrad 1052.632649 dualbound = 2057893.494360, lowerbound=1106507.494360, norm of subgrad 42.740623 stepsize= 1.000000 +dualbound = 2058132.779273, lowerbound=1107613.779273, norm of subgrad 1053.157528 dualbound = 2058132.779273, lowerbound=1107613.779273, norm of subgrad 42.027193 stepsize= 1.000000 +dualbound = 2058445.577188, lowerbound=1106022.577188, norm of subgrad 1052.403239 dualbound = 2058445.577188, lowerbound=1106022.577188, norm of subgrad 42.927822 stepsize= 1.000000 +dualbound = 2058640.815093, lowerbound=1108609.815093, norm of subgrad 1053.654979 dualbound = 2058640.815093, lowerbound=1108609.815093, norm of subgrad 42.121703 stepsize= 1.000000 +dualbound = 2058948.590046, lowerbound=1108468.590046, norm of subgrad 1053.563757 dualbound = 2058948.590046, lowerbound=1108468.590046, norm of subgrad 42.845944 stepsize= 1.000000 +dualbound = 2059182.829710, lowerbound=1110813.829710, norm of subgrad 1054.711254 dualbound = 2059182.829710, lowerbound=1110813.829710, norm of subgrad 42.851367 stepsize= 1.000000 +dualbound = 2059442.030009, lowerbound=1107930.030009, norm of subgrad 1053.352757 dualbound = 2059442.030009, lowerbound=1107930.030009, norm of subgrad 43.372806 stepsize= 1.000000 +dualbound = 2059721.426287, lowerbound=1107698.426287, norm of subgrad 1053.211007 dualbound = 2059721.426287, lowerbound=1107698.426287, norm of subgrad 42.829853 stepsize= 1.000000 +dualbound = 2059999.404991, lowerbound=1106953.404991, norm of subgrad 1052.868180 dualbound = 2059999.404991, lowerbound=1106953.404991, norm of subgrad 43.081071 stepsize= 1.000000 +dualbound = 2060243.880200, lowerbound=1110150.880200, norm of subgrad 1054.387443 dualbound = 2060243.880200, lowerbound=1110150.880200, norm of subgrad 42.737281 stepsize= 1.000000 +dualbound = 2060540.294548, lowerbound=1107687.294548, norm of subgrad 1053.209521 dualbound = 2060540.294548, lowerbound=1107687.294548, norm of subgrad 43.120927 stepsize= 1.000000 +dualbound = 2060782.910525, lowerbound=1107679.910525, norm of subgrad 1053.187025 dualbound = 2060782.910525, lowerbound=1107679.910525, norm of subgrad 42.019233 stepsize= 1.000000 +dualbound = 2061067.193812, lowerbound=1111161.193812, norm of subgrad 1054.820456 dualbound = 2061067.193812, lowerbound=1111161.193812, norm of subgrad 42.062849 stepsize= 1.000000 +dualbound = 2061325.587640, lowerbound=1104896.587640, norm of subgrad 1051.844850 dualbound = 2061325.587640, lowerbound=1104896.587640, norm of subgrad 41.706041 stepsize= 1.000000 +dualbound = 2061592.316917, lowerbound=1109062.316917, norm of subgrad 1053.830782 dualbound = 2061592.316917, lowerbound=1109062.316917, norm of subgrad 41.996777 stepsize= 1.000000 +dualbound = 2061871.715195, lowerbound=1103944.715195, norm of subgrad 1051.437452 dualbound = 2061871.715195, lowerbound=1103944.715195, norm of subgrad 43.074334 stepsize= 1.000000 +dualbound = 2062084.103338, lowerbound=1111381.103338, norm of subgrad 1054.976352 dualbound = 2062084.103338, lowerbound=1111381.103338, norm of subgrad 42.501625 stepsize= 1.000000 +dualbound = 2062387.648797, lowerbound=1109793.648797, norm of subgrad 1054.221347 dualbound = 2062387.648797, lowerbound=1109793.648797, norm of subgrad 43.503396 stepsize= 1.000000 +dualbound = 2062629.322342, lowerbound=1108968.322342, norm of subgrad 1053.821295 dualbound = 2062629.322342, lowerbound=1108968.322342, norm of subgrad 42.575504 stepsize= 1.000000 +dualbound = 2062896.761673, lowerbound=1111423.761673, norm of subgrad 1054.981877 dualbound = 2062896.761673, lowerbound=1111423.761673, norm of subgrad 42.783634 stepsize= 1.000000 +dualbound = 2063177.645622, lowerbound=1105766.645622, norm of subgrad 1052.269759 dualbound = 2063177.645622, lowerbound=1105766.645622, norm of subgrad 42.259720 stepsize= 1.000000 +dualbound = 2063438.716315, lowerbound=1106493.716315, norm of subgrad 1052.606629 dualbound = 2063438.716315, lowerbound=1106493.716315, norm of subgrad 41.809935 stepsize= 1.000000 +dualbound = 2063717.025517, lowerbound=1109827.025517, norm of subgrad 1054.205400 dualbound = 2063717.025517, lowerbound=1109827.025517, norm of subgrad 42.430051 stepsize= 1.000000 +dualbound = 2063993.953484, lowerbound=1108307.953484, norm of subgrad 1053.461415 dualbound = 2063993.953484, lowerbound=1108307.953484, norm of subgrad 41.832140 stepsize= 1.000000 +dualbound = 2064253.564051, lowerbound=1108283.564051, norm of subgrad 1053.490182 dualbound = 2064253.564051, lowerbound=1108283.564051, norm of subgrad 42.633444 stepsize= 1.000000 +dualbound = 2064504.991660, lowerbound=1111072.991660, norm of subgrad 1054.789549 dualbound = 2064504.991660, lowerbound=1111072.991660, norm of subgrad 41.945531 stepsize= 1.000000 +dualbound = 2064788.294390, lowerbound=1105382.294390, norm of subgrad 1052.072381 dualbound = 2064788.294390, lowerbound=1105382.294390, norm of subgrad 41.920195 stepsize= 1.000000 +dualbound = 2065041.901125, lowerbound=1109426.901125, norm of subgrad 1054.021300 dualbound = 2065041.901125, lowerbound=1109426.901125, norm of subgrad 42.280099 stepsize= 1.000000 +dualbound = 2065301.266361, lowerbound=1105386.266361, norm of subgrad 1052.139851 dualbound = 2065301.266361, lowerbound=1105386.266361, norm of subgrad 43.259279 stepsize= 1.000000 +dualbound = 2065521.306689, lowerbound=1112272.306689, norm of subgrad 1055.401965 dualbound = 2065521.306689, lowerbound=1112272.306689, norm of subgrad 42.673649 stepsize= 1.000000 +dualbound = 2065786.626510, lowerbound=1111450.626510, norm of subgrad 1055.008354 dualbound = 2065786.626510, lowerbound=1111450.626510, norm of subgrad 43.096634 stepsize= 1.000000 +dualbound = 2066070.736887, lowerbound=1109148.736887, norm of subgrad 1053.895506 dualbound = 2066070.736887, lowerbound=1109148.736887, norm of subgrad 42.791476 stepsize= 1.000000 +dualbound = 2066348.103398, lowerbound=1109167.103398, norm of subgrad 1053.893782 dualbound = 2066348.103398, lowerbound=1109167.103398, norm of subgrad 42.454287 stepsize= 1.000000 +dualbound = 2066620.287173, lowerbound=1107417.287173, norm of subgrad 1053.068985 dualbound = 2066620.287173, lowerbound=1107417.287173, norm of subgrad 42.534501 stepsize= 1.000000 +dualbound = 2066868.576769, lowerbound=1110148.576769, norm of subgrad 1054.357424 dualbound = 2066868.576769, lowerbound=1110148.576769, norm of subgrad 42.062924 stepsize= 1.000000 +dualbound = 2067149.910151, lowerbound=1107759.910151, norm of subgrad 1053.206015 dualbound = 2067149.910151, lowerbound=1107759.910151, norm of subgrad 42.003969 stepsize= 1.000000 +dualbound = 2067415.559391, lowerbound=1107254.559391, norm of subgrad 1052.980797 dualbound = 2067415.559391, lowerbound=1107254.559391, norm of subgrad 42.185889 stepsize= 1.000000 +dualbound = 2067645.910989, lowerbound=1106753.910989, norm of subgrad 1052.761564 dualbound = 2067645.910989, lowerbound=1106753.910989, norm of subgrad 42.229748 stepsize= 1.000000 +dualbound = 2067935.202028, lowerbound=1111240.202028, norm of subgrad 1054.862172 dualbound = 2067935.202028, lowerbound=1111240.202028, norm of subgrad 42.229031 stepsize= 1.000000 +dualbound = 2068203.472509, lowerbound=1108838.472509, norm of subgrad 1053.733587 dualbound = 2068203.472509, lowerbound=1108838.472509, norm of subgrad 42.240626 stepsize= 1.000000 +dualbound = 2068425.643831, lowerbound=1112973.643831, norm of subgrad 1055.759747 dualbound = 2068425.643831, lowerbound=1112973.643831, norm of subgrad 43.326335 stepsize= 1.000000 +dualbound = 2068687.122739, lowerbound=1108199.122739, norm of subgrad 1053.457224 dualbound = 2068687.122739, lowerbound=1108199.122739, norm of subgrad 42.830817 stepsize= 1.000000 +dualbound = 2068966.135961, lowerbound=1111839.135961, norm of subgrad 1055.155977 dualbound = 2068966.135961, lowerbound=1111839.135961, norm of subgrad 42.355793 stepsize= 1.000000 +dualbound = 2069254.107933, lowerbound=1109071.107933, norm of subgrad 1053.852982 dualbound = 2069254.107933, lowerbound=1109071.107933, norm of subgrad 42.696276 stepsize= 1.000000 +dualbound = 2069486.369717, lowerbound=1108192.369717, norm of subgrad 1053.451171 dualbound = 2069486.369717, lowerbound=1108192.369717, norm of subgrad 42.417706 stepsize= 1.000000 +dualbound = 2069777.160921, lowerbound=1107503.160921, norm of subgrad 1053.090291 dualbound = 2069777.160921, lowerbound=1107503.160921, norm of subgrad 42.270453 stepsize= 1.000000 +dualbound = 2070021.267621, lowerbound=1111936.267621, norm of subgrad 1055.202477 dualbound = 2070021.267621, lowerbound=1111936.267621, norm of subgrad 41.953626 stepsize= 1.000000 +dualbound = 2070292.881887, lowerbound=1108650.881887, norm of subgrad 1053.615149 dualbound = 2070292.881887, lowerbound=1108650.881887, norm of subgrad 41.540514 stepsize= 1.000000 +dualbound = 2070576.670984, lowerbound=1108651.670984, norm of subgrad 1053.648267 dualbound = 2070576.670984, lowerbound=1108651.670984, norm of subgrad 42.506342 stepsize= 1.000000 +dualbound = 2070779.106769, lowerbound=1107949.106769, norm of subgrad 1053.340452 dualbound = 2070779.106769, lowerbound=1107949.106769, norm of subgrad 42.183359 stepsize= 1.000000 +dualbound = 2071063.045174, lowerbound=1110812.045174, norm of subgrad 1054.677223 dualbound = 2071063.045174, lowerbound=1110812.045174, norm of subgrad 42.613829 stepsize= 1.000000 +dualbound = 2071322.385158, lowerbound=1108678.385158, norm of subgrad 1053.660944 dualbound = 2071322.385158, lowerbound=1108678.385158, norm of subgrad 42.217769 stepsize= 1.000000 +dualbound = 2071619.791884, lowerbound=1109366.791884, norm of subgrad 1053.985195 dualbound = 2071619.791884, lowerbound=1109366.791884, norm of subgrad 42.607590 stepsize= 1.000000 +dualbound = 2071852.452522, lowerbound=1109634.452522, norm of subgrad 1054.112163 dualbound = 2071852.452522, lowerbound=1109634.452522, norm of subgrad 41.840897 stepsize= 1.000000 +dualbound = 2072127.434232, lowerbound=1107348.434232, norm of subgrad 1053.019674 dualbound = 2072127.434232, lowerbound=1107348.434232, norm of subgrad 42.154261 stepsize= 1.000000 +dualbound = 2072367.544774, lowerbound=1111949.544774, norm of subgrad 1055.210190 dualbound = 2072367.544774, lowerbound=1111949.544774, norm of subgrad 41.941752 stepsize= 1.000000 +dualbound = 2072652.564702, lowerbound=1107711.564702, norm of subgrad 1053.196831 dualbound = 2072652.564702, lowerbound=1107711.564702, norm of subgrad 42.391272 stepsize= 1.000000 +dualbound = 2072900.732425, lowerbound=1110471.732425, norm of subgrad 1054.513031 dualbound = 2072900.732425, lowerbound=1110471.732425, norm of subgrad 42.120870 stepsize= 1.000000 +dualbound = 2073164.350421, lowerbound=1109609.350421, norm of subgrad 1054.134882 dualbound = 2073164.350421, lowerbound=1109609.350421, norm of subgrad 43.065276 stepsize= 1.000000 +dualbound = 2073432.630334, lowerbound=1108893.630334, norm of subgrad 1053.752642 dualbound = 2073432.630334, lowerbound=1108893.630334, norm of subgrad 42.062809 stepsize= 1.000000 +dualbound = 2073703.506111, lowerbound=1109081.506111, norm of subgrad 1053.845105 dualbound = 2073703.506111, lowerbound=1109081.506111, norm of subgrad 42.176721 stepsize= 1.000000 +dualbound = 2073955.717106, lowerbound=1109134.717106, norm of subgrad 1053.904036 dualbound = 2073955.717106, lowerbound=1109134.717106, norm of subgrad 42.792651 stepsize= 1.000000 +dualbound = 2074217.478141, lowerbound=1110240.478141, norm of subgrad 1054.417601 dualbound = 2074217.478141, lowerbound=1110240.478141, norm of subgrad 42.635209 stepsize= 1.000000 +dualbound = 2074459.359955, lowerbound=1109044.359955, norm of subgrad 1053.849781 dualbound = 2074459.359955, lowerbound=1109044.359955, norm of subgrad 42.389643 stepsize= 1.000000 +dualbound = 2074736.119504, lowerbound=1108830.119504, norm of subgrad 1053.737216 dualbound = 2074736.119504, lowerbound=1108830.119504, norm of subgrad 42.529514 stepsize= 1.000000 +dualbound = 2075010.295545, lowerbound=1111191.295545, norm of subgrad 1054.856528 dualbound = 2075010.295545, lowerbound=1111191.295545, norm of subgrad 42.487363 stepsize= 1.000000 +dualbound = 2075278.555558, lowerbound=1111003.555558, norm of subgrad 1054.797874 dualbound = 2075278.555558, lowerbound=1111003.555558, norm of subgrad 43.165496 stepsize= 1.000000 +dualbound = 2075513.262036, lowerbound=1108845.262036, norm of subgrad 1053.792324 dualbound = 2075513.262036, lowerbound=1108845.262036, norm of subgrad 43.216970 stepsize= 1.000000 +dualbound = 2075792.756606, lowerbound=1109443.756606, norm of subgrad 1054.018385 dualbound = 2075792.756606, lowerbound=1109443.756606, norm of subgrad 42.314236 stepsize= 1.000000 +dualbound = 2076072.297908, lowerbound=1109547.297908, norm of subgrad 1054.051373 dualbound = 2076072.297908, lowerbound=1109547.297908, norm of subgrad 41.911112 stepsize= 1.000000 +dualbound = 2076317.300236, lowerbound=1109897.300236, norm of subgrad 1054.233987 dualbound = 2076317.300236, lowerbound=1109897.300236, norm of subgrad 41.916612 stepsize= 1.000000 +dualbound = 2076568.513778, lowerbound=1114035.513778, norm of subgrad 1056.184413 dualbound = 2076568.513778, lowerbound=1114035.513778, norm of subgrad 41.727851 stepsize= 1.000000 +dualbound = 2076831.418319, lowerbound=1109138.418319, norm of subgrad 1053.891085 dualbound = 2076831.418319, lowerbound=1109138.418319, norm of subgrad 42.554724 stepsize= 1.000000 +dualbound = 2077089.966506, lowerbound=1111896.966506, norm of subgrad 1055.169639 dualbound = 2077089.966506, lowerbound=1111896.966506, norm of subgrad 41.767789 stepsize= 1.000000 +dualbound = 2077367.795947, lowerbound=1107160.795947, norm of subgrad 1052.946720 dualbound = 2077367.795947, lowerbound=1107160.795947, norm of subgrad 42.589077 stepsize= 1.000000 +dualbound = 2077601.223358, lowerbound=1112179.223358, norm of subgrad 1055.336071 dualbound = 2077601.223358, lowerbound=1112179.223358, norm of subgrad 42.289803 stepsize= 1.000000 +dualbound = 2077855.398188, lowerbound=1110341.398188, norm of subgrad 1054.482526 dualbound = 2077855.398188, lowerbound=1110341.398188, norm of subgrad 42.967137 stepsize= 1.000000 +dualbound = 2078110.095960, lowerbound=1109145.095960, norm of subgrad 1053.907062 dualbound = 2078110.095960, lowerbound=1109145.095960, norm of subgrad 42.774967 stepsize= 1.000000 +dualbound = 2078373.268920, lowerbound=1107942.268920, norm of subgrad 1053.357142 dualbound = 2078373.268920, lowerbound=1107942.268920, norm of subgrad 43.384017 stepsize= 1.000000 +dualbound = 2078651.142537, lowerbound=1113617.142537, norm of subgrad 1056.021374 dualbound = 2078651.142537, lowerbound=1113617.142537, norm of subgrad 42.917055 stepsize= 1.000000 +dualbound = 2078917.929412, lowerbound=1106859.929412, norm of subgrad 1052.806216 dualbound = 2078917.929412, lowerbound=1106859.929412, norm of subgrad 42.518077 stepsize= 1.000000 +dualbound = 2079169.109829, lowerbound=1113894.109829, norm of subgrad 1056.154397 dualbound = 2079169.109829, lowerbound=1113894.109829, norm of subgrad 42.651851 stepsize= 1.000000 +dualbound = 2079433.436980, lowerbound=1108831.436980, norm of subgrad 1053.751601 dualbound = 2079433.436980, lowerbound=1108831.436980, norm of subgrad 42.723848 stepsize= 1.000000 +dualbound = 2079679.353070, lowerbound=1112281.353070, norm of subgrad 1055.388721 dualbound = 2079679.353070, lowerbound=1112281.353070, norm of subgrad 42.543109 stepsize= 1.000000 +dualbound = 2079950.043168, lowerbound=1110799.043168, norm of subgrad 1054.673430 dualbound = 2079950.043168, lowerbound=1110799.043168, norm of subgrad 42.516939 stepsize= 1.000000 +dualbound = 2080206.545438, lowerbound=1111859.545438, norm of subgrad 1055.180812 dualbound = 2080206.545438, lowerbound=1111859.545438, norm of subgrad 42.467661 stepsize= 1.000000 +dualbound = 2080488.424241, lowerbound=1107216.424241, norm of subgrad 1052.963639 dualbound = 2080488.424241, lowerbound=1107216.424241, norm of subgrad 42.401401 stepsize= 1.000000 +dualbound = 2080727.413394, lowerbound=1110013.413394, norm of subgrad 1054.335057 dualbound = 2080727.413394, lowerbound=1110013.413394, norm of subgrad 42.988244 stepsize= 1.000000 +dualbound = 2080982.218460, lowerbound=1110615.218460, norm of subgrad 1054.585330 dualbound = 2080982.218460, lowerbound=1110615.218460, norm of subgrad 42.306088 stepsize= 1.000000 +dualbound = 2081264.961383, lowerbound=1112425.961383, norm of subgrad 1055.416961 dualbound = 2081264.961383, lowerbound=1112425.961383, norm of subgrad 41.973121 stepsize= 1.000000 +dualbound = 2081526.465940, lowerbound=1108507.465940, norm of subgrad 1053.590274 dualbound = 2081526.465940, lowerbound=1108507.465940, norm of subgrad 42.502995 stepsize= 1.000000 +dualbound = 2081731.651209, lowerbound=1111021.651209, norm of subgrad 1054.820673 dualbound = 2081731.651209, lowerbound=1111021.651209, norm of subgrad 42.780665 stepsize= 1.000000 +dualbound = 2082019.210356, lowerbound=1112653.210356, norm of subgrad 1055.513245 dualbound = 2082019.210356, lowerbound=1112653.210356, norm of subgrad 41.743971 stepsize= 1.000000 +dualbound = 2082297.505297, lowerbound=1105999.505297, norm of subgrad 1052.397503 dualbound = 2082297.505297, lowerbound=1105999.505297, norm of subgrad 42.653194 stepsize= 1.000000 +dualbound = 2082533.858488, lowerbound=1113234.858488, norm of subgrad 1055.840830 dualbound = 2082533.858488, lowerbound=1113234.858488, norm of subgrad 42.442351 stepsize= 1.000000 +dualbound = 2082797.007544, lowerbound=1113582.007544, norm of subgrad 1055.975382 dualbound = 2082797.007544, lowerbound=1113582.007544, norm of subgrad 42.013677 stepsize= 1.000000 +dualbound = 2083048.467994, lowerbound=1108796.467994, norm of subgrad 1053.711758 dualbound = 2083048.467994, lowerbound=1108796.467994, norm of subgrad 41.993576 stepsize= 1.000000 +dualbound = 2083331.186535, lowerbound=1109783.186535, norm of subgrad 1054.175121 dualbound = 2083331.186535, lowerbound=1109783.186535, norm of subgrad 42.245929 stepsize= 1.000000 +dualbound = 2083554.442576, lowerbound=1108390.442576, norm of subgrad 1053.569857 dualbound = 2083554.442576, lowerbound=1108390.442576, norm of subgrad 42.921510 stepsize= 1.000000 +dualbound = 2083816.145617, lowerbound=1114110.145617, norm of subgrad 1056.253826 dualbound = 2083816.145617, lowerbound=1114110.145617, norm of subgrad 42.704836 stepsize= 1.000000 +dualbound = 2084081.272274, lowerbound=1113685.272274, norm of subgrad 1056.060733 dualbound = 2084081.272274, lowerbound=1113685.272274, norm of subgrad 42.943296 stepsize= 1.000000 +dualbound = 2084322.595629, lowerbound=1111637.595629, norm of subgrad 1055.085113 dualbound = 2084322.595629, lowerbound=1111637.595629, norm of subgrad 42.524385 stepsize= 1.000000 +dualbound = 2084615.660656, lowerbound=1114434.660656, norm of subgrad 1056.361520 dualbound = 2084615.660656, lowerbound=1114434.660656, norm of subgrad 41.929286 stepsize= 1.000000 +dualbound = 2084872.199378, lowerbound=1111796.199378, norm of subgrad 1055.121415 dualbound = 2084872.199378, lowerbound=1111796.199378, norm of subgrad 41.731747 stepsize= 1.000000 +dualbound = 2085106.742728, lowerbound=1111901.742728, norm of subgrad 1055.215496 dualbound = 2085106.742728, lowerbound=1111901.742728, norm of subgrad 42.573975 stepsize= 1.000000 +dualbound = 2085393.358667, lowerbound=1106355.358667, norm of subgrad 1052.558957 dualbound = 2085393.358667, lowerbound=1106355.358667, norm of subgrad 42.563082 stepsize= 1.000000 +dualbound = 2085658.392777, lowerbound=1112013.392777, norm of subgrad 1055.208222 dualbound = 2085658.392777, lowerbound=1112013.392777, norm of subgrad 41.425042 stepsize= 1.000000 +dualbound = 2085914.440115, lowerbound=1107781.440115, norm of subgrad 1053.212913 dualbound = 2085914.440115, lowerbound=1107781.440115, norm of subgrad 41.617873 stepsize= 1.000000 +dualbound = 2086168.809684, lowerbound=1115624.809684, norm of subgrad 1056.936994 dualbound = 2086168.809684, lowerbound=1115624.809684, norm of subgrad 41.777620 stepsize= 1.000000 +dualbound = 2086427.083157, lowerbound=1110380.083157, norm of subgrad 1054.452030 dualbound = 2086427.083157, lowerbound=1110380.083157, norm of subgrad 41.800400 stepsize= 1.000000 +dualbound = 2086656.084276, lowerbound=1112424.084276, norm of subgrad 1055.462972 dualbound = 2086656.084276, lowerbound=1112424.084276, norm of subgrad 42.508836 stepsize= 1.000000 +dualbound = 2086907.799903, lowerbound=1111357.799903, norm of subgrad 1054.913646 dualbound = 2086907.799903, lowerbound=1111357.799903, norm of subgrad 41.673920 stepsize= 1.000000 +dualbound = 2087203.572951, lowerbound=1112162.572951, norm of subgrad 1055.313969 dualbound = 2087203.572951, lowerbound=1112162.572951, norm of subgrad 42.670517 stepsize= 1.000000 +dualbound = 2087425.704906, lowerbound=1111185.704906, norm of subgrad 1054.860040 dualbound = 2087425.704906, lowerbound=1111185.704906, norm of subgrad 42.025373 stepsize= 1.000000 +dualbound = 2087706.376435, lowerbound=1112049.376435, norm of subgrad 1055.259388 dualbound = 2087706.376435, lowerbound=1112049.376435, norm of subgrad 42.469654 stepsize= 1.000000 +dualbound = 2087935.942358, lowerbound=1115136.942358, norm of subgrad 1056.751126 dualbound = 2087935.942358, lowerbound=1115136.942358, norm of subgrad 42.609458 stepsize= 1.000000 +dualbound = 2088205.009495, lowerbound=1108974.009495, norm of subgrad 1053.808811 dualbound = 2088205.009495, lowerbound=1108974.009495, norm of subgrad 42.521373 stepsize= 1.000000 +dualbound = 2088484.605161, lowerbound=1113589.605161, norm of subgrad 1055.972824 dualbound = 2088484.605161, lowerbound=1113589.605161, norm of subgrad 42.054675 stepsize= 1.000000 +dualbound = 2088733.502052, lowerbound=1109038.502052, norm of subgrad 1053.874519 dualbound = 2088733.502052, lowerbound=1109038.502052, norm of subgrad 43.149703 stepsize= 1.000000 +dualbound = 2088945.608008, lowerbound=1116320.608008, norm of subgrad 1057.293057 dualbound = 2088945.608008, lowerbound=1116320.608008, norm of subgrad 41.953617 stepsize= 1.000000 +dualbound = 2089255.278297, lowerbound=1110450.278297, norm of subgrad 1054.503333 dualbound = 2089255.278297, lowerbound=1110450.278297, norm of subgrad 42.856391 stepsize= 1.000000 +dualbound = 2089486.699699, lowerbound=1115470.699699, norm of subgrad 1056.868819 dualbound = 2089486.699699, lowerbound=1115470.699699, norm of subgrad 41.622367 stepsize= 1.000000 +dualbound = 2089778.125611, lowerbound=1110637.125611, norm of subgrad 1054.569640 dualbound = 2089778.125611, lowerbound=1110637.125611, norm of subgrad 42.088311 stepsize= 1.000000 +dualbound = 2090002.054402, lowerbound=1111281.054402, norm of subgrad 1054.900021 dualbound = 2090002.054402, lowerbound=1111281.054402, norm of subgrad 41.915734 stepsize= 1.000000 +dualbound = 2090265.980601, lowerbound=1112182.980601, norm of subgrad 1055.333587 dualbound = 2090265.980601, lowerbound=1112182.980601, norm of subgrad 42.543227 stepsize= 1.000000 +dualbound = 2090540.516330, lowerbound=1110496.516330, norm of subgrad 1054.536162 dualbound = 2090540.516330, lowerbound=1110496.516330, norm of subgrad 42.714585 stepsize= 1.000000 +dualbound = 2090783.532040, lowerbound=1109006.532040, norm of subgrad 1053.836577 dualbound = 2090783.532040, lowerbound=1109006.532040, norm of subgrad 42.520768 stepsize= 1.000000 +dualbound = 2091035.918263, lowerbound=1113681.918263, norm of subgrad 1056.038786 dualbound = 2091035.918263, lowerbound=1113681.918263, norm of subgrad 42.289316 stepsize= 1.000000 +dualbound = 2091317.652668, lowerbound=1111054.652668, norm of subgrad 1054.791284 dualbound = 2091317.652668, lowerbound=1111054.652668, norm of subgrad 42.564474 stepsize= 1.000000 +dualbound = 2091564.515005, lowerbound=1114416.515005, norm of subgrad 1056.355771 dualbound = 2091564.515005, lowerbound=1114416.515005, norm of subgrad 41.447103 stepsize= 1.000000 +dualbound = 2091809.290084, lowerbound=1110961.290084, norm of subgrad 1054.742286 dualbound = 2091809.290084, lowerbound=1110961.290084, norm of subgrad 42.009226 stepsize= 1.000000 +dualbound = 2092061.015556, lowerbound=1113736.015556, norm of subgrad 1056.036939 dualbound = 2092061.015556, lowerbound=1113736.015556, norm of subgrad 41.589968 stepsize= 1.000000 +dualbound = 2092345.663492, lowerbound=1111332.663492, norm of subgrad 1054.905523 dualbound = 2092345.663492, lowerbound=1111332.663492, norm of subgrad 42.162162 stepsize= 1.000000 +dualbound = 2092563.180044, lowerbound=1109614.180044, norm of subgrad 1054.123892 dualbound = 2092563.180044, lowerbound=1109614.180044, norm of subgrad 42.196168 stepsize= 1.000000 +dualbound = 2092839.023529, lowerbound=1114912.023529, norm of subgrad 1056.628612 dualbound = 2092839.023529, lowerbound=1114912.023529, norm of subgrad 42.753286 stepsize= 1.000000 +dualbound = 2093097.295959, lowerbound=1111743.295959, norm of subgrad 1055.107244 dualbound = 2093097.295959, lowerbound=1111743.295959, norm of subgrad 42.027044 stepsize= 1.000000 +dualbound = 2093375.503362, lowerbound=1113361.503362, norm of subgrad 1055.880440 dualbound = 2093375.503362, lowerbound=1113361.503362, norm of subgrad 42.428851 stepsize= 1.000000 +dualbound = 2093595.023269, lowerbound=1109462.023269, norm of subgrad 1054.078756 dualbound = 2093595.023269, lowerbound=1109462.023269, norm of subgrad 42.889625 stepsize= 1.000000 +dualbound = 2093864.812372, lowerbound=1113528.812372, norm of subgrad 1055.963926 dualbound = 2093864.812372, lowerbound=1113528.812372, norm of subgrad 42.435706 stepsize= 1.000000 +dualbound = 2094130.973711, lowerbound=1112562.973711, norm of subgrad 1055.503185 dualbound = 2094130.973711, lowerbound=1112562.973711, norm of subgrad 42.310298 stepsize= 1.000000 +dualbound = 2094401.457471, lowerbound=1115978.457471, norm of subgrad 1057.109009 dualbound = 2094401.457471, lowerbound=1115978.457471, norm of subgrad 42.088998 stepsize= 1.000000 +dualbound = 2094646.672345, lowerbound=1111954.672345, norm of subgrad 1055.190349 dualbound = 2094646.672345, lowerbound=1111954.672345, norm of subgrad 41.439291 stepsize= 1.000000 +dualbound = 2094924.215517, lowerbound=1111549.215517, norm of subgrad 1055.018585 dualbound = 2094924.215517, lowerbound=1111549.215517, norm of subgrad 42.338436 stepsize= 1.000000 +dualbound = 2095173.557490, lowerbound=1114199.557490, norm of subgrad 1056.247867 dualbound = 2095173.557490, lowerbound=1114199.557490, norm of subgrad 41.344189 stepsize= 1.000000 +dualbound = 2095415.972970, lowerbound=1112896.972970, norm of subgrad 1055.662812 dualbound = 2095415.972970, lowerbound=1112896.972970, norm of subgrad 42.064421 stepsize= 1.000000 +dualbound = 2095680.517777, lowerbound=1111835.517777, norm of subgrad 1055.151893 dualbound = 2095680.517777, lowerbound=1111835.517777, norm of subgrad 42.125346 stepsize= 1.000000 +dualbound = 2095927.076530, lowerbound=1112135.076530, norm of subgrad 1055.303310 dualbound = 2095927.076530, lowerbound=1112135.076530, norm of subgrad 42.149244 stepsize= 1.000000 +dualbound = 2096158.897238, lowerbound=1118110.897238, norm of subgrad 1058.149279 dualbound = 2096158.897238, lowerbound=1118110.897238, norm of subgrad 42.436078 stepsize= 1.000000 +dualbound = 2096418.036049, lowerbound=1109888.036049, norm of subgrad 1054.227222 dualbound = 2096418.036049, lowerbound=1109888.036049, norm of subgrad 42.025454 stepsize= 1.000000 +dualbound = 2096679.720869, lowerbound=1111828.720869, norm of subgrad 1055.159097 dualbound = 2096679.720869, lowerbound=1111828.720869, norm of subgrad 42.351916 stepsize= 1.000000 +dualbound = 2096930.359094, lowerbound=1111625.359094, norm of subgrad 1055.073627 dualbound = 2096930.359094, lowerbound=1111625.359094, norm of subgrad 42.492802 stepsize= 1.000000 +dualbound = 2097172.713864, lowerbound=1115001.713864, norm of subgrad 1056.659223 dualbound = 2097172.713864, lowerbound=1115001.713864, norm of subgrad 42.063699 stepsize= 1.000000 +dualbound = 2097448.097843, lowerbound=1113060.097843, norm of subgrad 1055.719232 dualbound = 2097448.097843, lowerbound=1113060.097843, norm of subgrad 41.933089 stepsize= 1.000000 +dualbound = 2097733.659487, lowerbound=1109871.659487, norm of subgrad 1054.189575 dualbound = 2097733.659487, lowerbound=1109871.659487, norm of subgrad 41.587999 stepsize= 1.000000 +dualbound = 2097947.226206, lowerbound=1111679.226206, norm of subgrad 1055.092520 dualbound = 2097947.226206, lowerbound=1111679.226206, norm of subgrad 41.887548 stepsize= 1.000000 +dualbound = 2098194.527411, lowerbound=1116058.527411, norm of subgrad 1057.188028 dualbound = 2098194.527411, lowerbound=1116058.527411, norm of subgrad 42.840416 stepsize= 1.000000 +dualbound = 2098462.130910, lowerbound=1111878.130910, norm of subgrad 1055.154553 dualbound = 2098462.130910, lowerbound=1111878.130910, norm of subgrad 41.720540 stepsize= 1.000000 +dualbound = 2098737.384355, lowerbound=1115774.384355, norm of subgrad 1056.999236 dualbound = 2098737.384355, lowerbound=1115774.384355, norm of subgrad 41.812121 stepsize= 1.000000 +dualbound = 2098979.857650, lowerbound=1112636.857650, norm of subgrad 1055.550500 dualbound = 2098979.857650, lowerbound=1112636.857650, norm of subgrad 42.337611 stepsize= 1.000000 +dualbound = 2099228.123134, lowerbound=1113049.123134, norm of subgrad 1055.738662 dualbound = 2099228.123134, lowerbound=1113049.123134, norm of subgrad 42.228728 stepsize= 1.000000 +dualbound = 2099502.358621, lowerbound=1113017.358621, norm of subgrad 1055.696622 dualbound = 2099502.358621, lowerbound=1113017.358621, norm of subgrad 41.859712 stepsize= 1.000000 +dualbound = 2099747.177691, lowerbound=1114574.177691, norm of subgrad 1056.445539 dualbound = 2099747.177691, lowerbound=1114574.177691, norm of subgrad 41.806926 stepsize= 1.000000 +dualbound = 2100005.048193, lowerbound=1111780.048193, norm of subgrad 1055.094805 dualbound = 2100005.048193, lowerbound=1111780.048193, norm of subgrad 41.265852 stepsize= 1.000000 +dualbound = 2100272.074828, lowerbound=1115370.074828, norm of subgrad 1056.828309 dualbound = 2100272.074828, lowerbound=1115370.074828, norm of subgrad 42.225900 stepsize= 1.000000 +dualbound = 2100504.528815, lowerbound=1112571.528815, norm of subgrad 1055.499185 dualbound = 2100504.528815, lowerbound=1112571.528815, norm of subgrad 41.706762 stepsize= 1.000000 +dualbound = 2100767.902989, lowerbound=1113392.902989, norm of subgrad 1055.931770 dualbound = 2100767.902989, lowerbound=1113392.902989, norm of subgrad 43.155233 stepsize= 1.000000 +dualbound = 2100979.923329, lowerbound=1112309.923329, norm of subgrad 1055.441104 dualbound = 2100979.923329, lowerbound=1112309.923329, norm of subgrad 43.104760 stepsize= 1.000000 +dualbound = 2101264.738844, lowerbound=1113770.738844, norm of subgrad 1056.087467 dualbound = 2101264.738844, lowerbound=1113770.738844, norm of subgrad 42.834747 stepsize= 1.000000 +dualbound = 2101525.333315, lowerbound=1114080.333315, norm of subgrad 1056.208944 dualbound = 2101525.333315, lowerbound=1114080.333315, norm of subgrad 41.923674 stepsize= 1.000000 +dualbound = 2101803.346806, lowerbound=1112113.346806, norm of subgrad 1055.264586 dualbound = 2101803.346806, lowerbound=1112113.346806, norm of subgrad 41.809251 stepsize= 1.000000 +dualbound = 2102040.361496, lowerbound=1112891.361496, norm of subgrad 1055.653997 dualbound = 2102040.361496, lowerbound=1112891.361496, norm of subgrad 41.845127 stepsize= 1.000000 +dualbound = 2102271.707119, lowerbound=1113934.707119, norm of subgrad 1056.160361 dualbound = 2102271.707119, lowerbound=1113934.707119, norm of subgrad 42.087357 stepsize= 1.000000 +dualbound = 2102531.895367, lowerbound=1114286.895367, norm of subgrad 1056.340805 dualbound = 2102531.895367, lowerbound=1114286.895367, norm of subgrad 42.769010 stepsize= 1.000000 +dualbound = 2102779.094040, lowerbound=1112618.094040, norm of subgrad 1055.538770 dualbound = 2102779.094040, lowerbound=1112618.094040, norm of subgrad 42.322555 stepsize= 1.000000 +dualbound = 2103066.769864, lowerbound=1111809.769864, norm of subgrad 1055.115998 dualbound = 2103066.769864, lowerbound=1111809.769864, norm of subgrad 41.805213 stepsize= 1.000000 +dualbound = 2103325.645153, lowerbound=1114746.645153, norm of subgrad 1056.516751 dualbound = 2103325.645153, lowerbound=1114746.645153, norm of subgrad 41.711812 stepsize= 1.000000 +dualbound = 2103565.093604, lowerbound=1110740.093604, norm of subgrad 1054.627467 dualbound = 2103565.093604, lowerbound=1110740.093604, norm of subgrad 41.694705 stepsize= 1.000000 +dualbound = 2103827.280889, lowerbound=1111746.280889, norm of subgrad 1055.111502 dualbound = 2103827.280889, lowerbound=1111746.280889, norm of subgrad 42.144837 stepsize= 1.000000 +dualbound = 2104068.588325, lowerbound=1113682.588325, norm of subgrad 1056.032949 dualbound = 2104068.588325, lowerbound=1113682.588325, norm of subgrad 42.003660 stepsize= 1.000000 +dualbound = 2104334.260130, lowerbound=1112976.260130, norm of subgrad 1055.655370 dualbound = 2104334.260130, lowerbound=1112976.260130, norm of subgrad 41.202813 stepsize= 1.000000 +dualbound = 2104605.266063, lowerbound=1118016.266063, norm of subgrad 1058.082826 dualbound = 2104605.266063, lowerbound=1118016.266063, norm of subgrad 42.355707 stepsize= 1.000000 +dualbound = 2104835.638448, lowerbound=1113849.638448, norm of subgrad 1056.093575 dualbound = 2104835.638448, lowerbound=1113849.638448, norm of subgrad 41.404980 stepsize= 1.000000 +dualbound = 2105116.204132, lowerbound=1116130.204132, norm of subgrad 1057.167538 dualbound = 2105116.204132, lowerbound=1116130.204132, norm of subgrad 41.875598 stepsize= 1.000000 +dualbound = 2105361.280634, lowerbound=1110411.280634, norm of subgrad 1054.477255 dualbound = 2105361.280634, lowerbound=1110411.280634, norm of subgrad 41.905566 stepsize= 1.000000 +dualbound = 2105603.796575, lowerbound=1112466.796575, norm of subgrad 1055.480363 dualbound = 2105603.796575, lowerbound=1112466.796575, norm of subgrad 42.597135 stepsize= 1.000000 +dualbound = 2105848.919574, lowerbound=1114175.919574, norm of subgrad 1056.269814 dualbound = 2105848.919574, lowerbound=1114175.919574, norm of subgrad 42.132209 stepsize= 1.000000 +dualbound = 2106097.123426, lowerbound=1113728.123426, norm of subgrad 1056.090964 dualbound = 2106097.123426, lowerbound=1113728.123426, norm of subgrad 42.990741 stepsize= 1.000000 +dualbound = 2106316.367425, lowerbound=1115238.367425, norm of subgrad 1056.802899 dualbound = 2106316.367425, lowerbound=1115238.367425, norm of subgrad 42.582203 stepsize= 1.000000 +dualbound = 2106618.633627, lowerbound=1110547.633627, norm of subgrad 1054.569881 dualbound = 2106618.633627, lowerbound=1110547.633627, norm of subgrad 43.269691 stepsize= 1.000000 +dualbound = 2106865.315848, lowerbound=1117160.315848, norm of subgrad 1057.692449 dualbound = 2106865.315848, lowerbound=1117160.315848, norm of subgrad 42.422662 stepsize= 1.000000 +dualbound = 2107116.504209, lowerbound=1113790.504209, norm of subgrad 1056.086883 dualbound = 2107116.504209, lowerbound=1113790.504209, norm of subgrad 42.192278 stepsize= 1.000000 +dualbound = 2107376.835357, lowerbound=1112509.835357, norm of subgrad 1055.459064 dualbound = 2107376.835357, lowerbound=1112509.835357, norm of subgrad 41.765191 stepsize= 1.000000 +dualbound = 2107652.630167, lowerbound=1116248.630167, norm of subgrad 1057.233007 dualbound = 2107652.630167, lowerbound=1116248.630167, norm of subgrad 42.057042 stepsize= 1.000000 +dualbound = 2107894.373400, lowerbound=1113692.373400, norm of subgrad 1056.030953 dualbound = 2107894.373400, lowerbound=1113692.373400, norm of subgrad 41.841884 stepsize= 1.000000 +dualbound = 2108140.709333, lowerbound=1110687.709333, norm of subgrad 1054.615906 dualbound = 2108140.709333, lowerbound=1110687.709333, norm of subgrad 42.110995 stepsize= 1.000000 +dualbound = 2108388.116849, lowerbound=1116957.116849, norm of subgrad 1057.582676 dualbound = 2108388.116849, lowerbound=1116957.116849, norm of subgrad 42.088092 stepsize= 1.000000 +dualbound = 2108656.947448, lowerbound=1112144.947448, norm of subgrad 1055.312251 dualbound = 2108656.947448, lowerbound=1112144.947448, norm of subgrad 42.518591 stepsize= 1.000000 +dualbound = 2108894.645219, lowerbound=1111589.645219, norm of subgrad 1055.041537 dualbound = 2108894.645219, lowerbound=1111589.645219, norm of subgrad 41.960669 stepsize= 1.000000 +dualbound = 2109156.488347, lowerbound=1114298.488347, norm of subgrad 1056.348659 dualbound = 2109156.488347, lowerbound=1114298.488347, norm of subgrad 42.846740 stepsize= 1.000000 +dualbound = 2109410.971229, lowerbound=1116078.971229, norm of subgrad 1057.169320 dualbound = 2109410.971229, lowerbound=1116078.971229, norm of subgrad 42.219461 stepsize= 1.000000 +dualbound = 2109674.997014, lowerbound=1109714.997014, norm of subgrad 1054.145150 dualbound = 2109674.997014, lowerbound=1109714.997014, norm of subgrad 42.083557 stepsize= 1.000000 +dualbound = 2109924.265327, lowerbound=1116481.265327, norm of subgrad 1057.348696 dualbound = 2109924.265327, lowerbound=1116481.265327, norm of subgrad 41.883986 stepsize= 1.000000 +dualbound = 2110180.227390, lowerbound=1115430.227390, norm of subgrad 1056.852037 dualbound = 2110180.227390, lowerbound=1115430.227390, norm of subgrad 41.975732 stepsize= 1.000000 +dualbound = 2110458.424202, lowerbound=1109459.424202, norm of subgrad 1054.002099 dualbound = 2110458.424202, lowerbound=1109459.424202, norm of subgrad 41.703679 stepsize= 1.000000 +dualbound = 2110687.225811, lowerbound=1114984.225811, norm of subgrad 1056.624922 dualbound = 2110687.225811, lowerbound=1114984.225811, norm of subgrad 41.240776 stepsize= 1.000000 +dualbound = 2110953.749777, lowerbound=1118256.749777, norm of subgrad 1058.172835 dualbound = 2110953.749777, lowerbound=1118256.749777, norm of subgrad 41.707601 stepsize= 1.000000 +dualbound = 2111198.646920, lowerbound=1113354.646920, norm of subgrad 1055.887137 dualbound = 2111198.646920, lowerbound=1113354.646920, norm of subgrad 42.283533 stepsize= 1.000000 +dualbound = 2111426.182721, lowerbound=1114172.182721, norm of subgrad 1056.262365 dualbound = 2111426.182721, lowerbound=1114172.182721, norm of subgrad 41.779610 stepsize= 1.000000 +dualbound = 2111705.955626, lowerbound=1115823.955626, norm of subgrad 1057.025996 dualbound = 2111705.955626, lowerbound=1115823.955626, norm of subgrad 41.949647 stepsize= 1.000000 +dualbound = 2111950.342075, lowerbound=1112816.342075, norm of subgrad 1055.627937 dualbound = 2111950.342075, lowerbound=1112816.342075, norm of subgrad 42.170919 stepsize= 1.000000 +dualbound = 2112204.771327, lowerbound=1113371.771327, norm of subgrad 1055.914187 dualbound = 2112204.771327, lowerbound=1113371.771327, norm of subgrad 42.865245 stepsize= 1.000000 +dualbound = 2112450.426757, lowerbound=1115419.426757, norm of subgrad 1056.828002 dualbound = 2112450.426757, lowerbound=1115419.426757, norm of subgrad 41.372158 stepsize= 1.000000 +dualbound = 2112743.339365, lowerbound=1113827.339365, norm of subgrad 1056.092486 dualbound = 2112743.339365, lowerbound=1113827.339365, norm of subgrad 42.390006 stepsize= 1.000000 +dualbound = 2112968.630337, lowerbound=1111308.630337, norm of subgrad 1054.905982 dualbound = 2112968.630337, lowerbound=1111308.630337, norm of subgrad 41.752736 stepsize= 1.000000 +dualbound = 2113213.549564, lowerbound=1115259.549564, norm of subgrad 1056.797308 dualbound = 2113213.549564, lowerbound=1115259.549564, norm of subgrad 42.496108 stepsize= 1.000000 +dualbound = 2113487.154623, lowerbound=1112081.154623, norm of subgrad 1055.270655 dualbound = 2113487.154623, lowerbound=1112081.154623, norm of subgrad 42.291903 stepsize= 1.000000 +dualbound = 2113718.154388, lowerbound=1118708.154388, norm of subgrad 1058.454134 dualbound = 2113718.154388, lowerbound=1118708.154388, norm of subgrad 42.988368 stepsize= 1.000000 +dualbound = 2113955.043507, lowerbound=1112437.043507, norm of subgrad 1055.464847 dualbound = 2113955.043507, lowerbound=1112437.043507, norm of subgrad 42.495754 stepsize= 1.000000 +dualbound = 2114248.574778, lowerbound=1110546.574778, norm of subgrad 1054.531922 dualbound = 2114248.574778, lowerbound=1110546.574778, norm of subgrad 42.243713 stepsize= 1.000000 +dualbound = 2114488.016832, lowerbound=1115100.016832, norm of subgrad 1056.765829 dualbound = 2114488.016832, lowerbound=1115100.016832, norm of subgrad 43.513700 stepsize= 1.000000 +dualbound = 2114711.758046, lowerbound=1115721.758046, norm of subgrad 1057.022118 dualbound = 2114711.758046, lowerbound=1115721.758046, norm of subgrad 42.399778 stepsize= 1.000000 +dualbound = 2114992.664738, lowerbound=1114462.664738, norm of subgrad 1056.374301 dualbound = 2114992.664738, lowerbound=1114462.664738, norm of subgrad 41.772080 stepsize= 1.000000 +dualbound = 2115274.397955, lowerbound=1113058.397955, norm of subgrad 1055.735004 dualbound = 2115274.397955, lowerbound=1113058.397955, norm of subgrad 42.423263 stepsize= 1.000000 +dualbound = 2115498.994730, lowerbound=1115686.994730, norm of subgrad 1056.980603 dualbound = 2115498.994730, lowerbound=1115686.994730, norm of subgrad 41.780340 stepsize= 1.000000 +dualbound = 2115757.748338, lowerbound=1114798.748338, norm of subgrad 1056.550400 dualbound = 2115757.748338, lowerbound=1114798.748338, norm of subgrad 41.937496 stepsize= 1.000000 +dualbound = 2116015.457449, lowerbound=1112959.457449, norm of subgrad 1055.684829 dualbound = 2116015.457449, lowerbound=1112959.457449, norm of subgrad 42.056023 stepsize= 1.000000 +dualbound = 2116259.837747, lowerbound=1115913.837747, norm of subgrad 1057.082228 dualbound = 2116259.837747, lowerbound=1115913.837747, norm of subgrad 41.873384 stepsize= 1.000000 +dualbound = 2116512.389146, lowerbound=1111422.389146, norm of subgrad 1054.961795 dualbound = 2116512.389146, lowerbound=1111422.389146, norm of subgrad 42.125425 stepsize= 1.000000 +dualbound = 2116771.905514, lowerbound=1115665.905514, norm of subgrad 1056.972046 dualbound = 2116771.905514, lowerbound=1115665.905514, norm of subgrad 42.231699 stepsize= 1.000000 +dualbound = 2117022.019397, lowerbound=1116846.019397, norm of subgrad 1057.541971 dualbound = 2117022.019397, lowerbound=1116846.019397, norm of subgrad 42.415963 stepsize= 1.000000 +dualbound = 2117265.726217, lowerbound=1113932.726217, norm of subgrad 1056.159896 dualbound = 2117265.726217, lowerbound=1113932.726217, norm of subgrad 42.245791 stepsize= 1.000000 +dualbound = 2117509.271915, lowerbound=1112054.271915, norm of subgrad 1055.274027 dualbound = 2117509.271915, lowerbound=1112054.271915, norm of subgrad 42.338466 stepsize= 1.000000 +dualbound = 2117773.540416, lowerbound=1115343.540416, norm of subgrad 1056.813390 dualbound = 2117773.540416, lowerbound=1115343.540416, norm of subgrad 42.133935 stepsize= 1.000000 +dualbound = 2118031.877319, lowerbound=1117925.877319, norm of subgrad 1058.046727 dualbound = 2118031.877319, lowerbound=1117925.877319, norm of subgrad 42.371416 stepsize= 1.000000 +dualbound = 2118275.607025, lowerbound=1110455.607025, norm of subgrad 1054.504437 dualbound = 2118275.607025, lowerbound=1110455.607025, norm of subgrad 42.044378 stepsize= 1.000000 +dualbound = 2118549.906249, lowerbound=1114865.906249, norm of subgrad 1056.555681 dualbound = 2118549.906249, lowerbound=1114865.906249, norm of subgrad 41.452373 stepsize= 1.000000 +dualbound = 2118801.046371, lowerbound=1115566.046371, norm of subgrad 1056.906356 dualbound = 2118801.046371, lowerbound=1115566.046371, norm of subgrad 41.667015 stepsize= 1.000000 +dualbound = 2119067.263304, lowerbound=1115038.263304, norm of subgrad 1056.661849 dualbound = 2119067.263304, lowerbound=1115038.263304, norm of subgrad 41.978768 stepsize= 1.000000 +dualbound = 2119295.096068, lowerbound=1114192.096068, norm of subgrad 1056.278418 dualbound = 2119295.096068, lowerbound=1114192.096068, norm of subgrad 41.950361 stepsize= 1.000000 +dualbound = 2119571.471406, lowerbound=1115695.471406, norm of subgrad 1056.953391 dualbound = 2119571.471406, lowerbound=1115695.471406, norm of subgrad 41.609799 stepsize= 1.000000 +dualbound = 2119826.401650, lowerbound=1113061.401650, norm of subgrad 1055.731690 dualbound = 2119826.401650, lowerbound=1113061.401650, norm of subgrad 41.987263 stepsize= 1.000000 +dualbound = 2120055.420896, lowerbound=1113763.420896, norm of subgrad 1056.080215 dualbound = 2120055.420896, lowerbound=1113763.420896, norm of subgrad 42.083479 stepsize= 1.000000 +dualbound = 2120318.073238, lowerbound=1116680.073238, norm of subgrad 1057.437030 dualbound = 2120318.073238, lowerbound=1116680.073238, norm of subgrad 41.900505 stepsize= 1.000000 +dualbound = 2120579.915711, lowerbound=1110657.915711, norm of subgrad 1054.590876 dualbound = 2120579.915711, lowerbound=1110657.915711, norm of subgrad 42.021928 stepsize= 1.000000 +dualbound = 2120833.737038, lowerbound=1114917.737038, norm of subgrad 1056.616646 dualbound = 2120833.737038, lowerbound=1114917.737038, norm of subgrad 42.128628 stepsize= 1.000000 +dualbound = 2121074.606984, lowerbound=1115236.606984, norm of subgrad 1056.766581 dualbound = 2121074.606984, lowerbound=1115236.606984, norm of subgrad 41.950804 stepsize= 1.000000 +dualbound = 2121332.193852, lowerbound=1113789.193852, norm of subgrad 1056.089577 dualbound = 2121332.193852, lowerbound=1113789.193852, norm of subgrad 42.350760 stepsize= 1.000000 +dualbound = 2121610.726200, lowerbound=1113909.726200, norm of subgrad 1056.126757 dualbound = 2121610.726200, lowerbound=1113909.726200, norm of subgrad 42.101453 stepsize= 1.000000 +dualbound = 2121813.929324, lowerbound=1114255.929324, norm of subgrad 1056.308634 dualbound = 2121813.929324, lowerbound=1114255.929324, norm of subgrad 41.655769 stepsize= 1.000000 +dualbound = 2122085.177323, lowerbound=1116060.177323, norm of subgrad 1057.194011 dualbound = 2122085.177323, lowerbound=1116060.177323, norm of subgrad 43.246364 stepsize= 1.000000 +dualbound = 2122312.155381, lowerbound=1116230.155381, norm of subgrad 1057.234201 dualbound = 2122312.155381, lowerbound=1116230.155381, norm of subgrad 41.725029 stepsize= 1.000000 +dualbound = 2122605.577647, lowerbound=1116148.577647, norm of subgrad 1057.197511 dualbound = 2122605.577647, lowerbound=1116148.577647, norm of subgrad 42.560807 stepsize= 1.000000 +dualbound = 2122815.436564, lowerbound=1112740.436564, norm of subgrad 1055.626087 dualbound = 2122815.436564, lowerbound=1112740.436564, norm of subgrad 42.612896 stepsize= 1.000000 +dualbound = 2123079.430124, lowerbound=1113986.430124, norm of subgrad 1056.205203 dualbound = 2123079.430124, lowerbound=1113986.430124, norm of subgrad 42.976663 stepsize= 1.000000 +dualbound = 2123348.857691, lowerbound=1115583.857691, norm of subgrad 1056.931340 dualbound = 2123348.857691, lowerbound=1115583.857691, norm of subgrad 42.301626 stepsize= 1.000000 +dualbound = 2123621.170785, lowerbound=1115498.170785, norm of subgrad 1056.856268 dualbound = 2123621.170785, lowerbound=1115498.170785, norm of subgrad 41.464600 stepsize= 1.000000 +dualbound = 2123885.625658, lowerbound=1118543.625658, norm of subgrad 1058.320663 dualbound = 2123885.625658, lowerbound=1118543.625658, norm of subgrad 41.993510 stepsize= 1.000000 +dualbound = 2124102.065930, lowerbound=1114904.065930, norm of subgrad 1056.629578 dualbound = 2124102.065930, lowerbound=1114904.065930, norm of subgrad 42.171558 stepsize= 1.000000 +dualbound = 2124330.547039, lowerbound=1110893.547039, norm of subgrad 1054.769902 dualbound = 2124330.547039, lowerbound=1110893.547039, norm of subgrad 43.295278 stepsize= 1.000000 +dualbound = 2124577.146678, lowerbound=1117308.146678, norm of subgrad 1057.774620 dualbound = 2124577.146678, lowerbound=1117308.146678, norm of subgrad 42.727036 stepsize= 1.000000 +dualbound = 2124849.448525, lowerbound=1113462.448525, norm of subgrad 1055.915455 dualbound = 2124849.448525, lowerbound=1113462.448525, norm of subgrad 42.039289 stepsize= 1.000000 +dualbound = 2125139.518217, lowerbound=1117787.518217, norm of subgrad 1057.957711 dualbound = 2125139.518217, lowerbound=1117787.518217, norm of subgrad 42.155304 stepsize= 1.000000 +dualbound = 2125378.445473, lowerbound=1110347.445473, norm of subgrad 1054.444141 dualbound = 2125378.445473, lowerbound=1110347.445473, norm of subgrad 41.760355 stepsize= 1.000000 +dualbound = 2125619.371614, lowerbound=1117730.371614, norm of subgrad 1057.952916 dualbound = 2125619.371614, lowerbound=1117730.371614, norm of subgrad 42.129872 stepsize= 1.000000 +dualbound = 2125867.843396, lowerbound=1116183.843396, norm of subgrad 1057.208042 dualbound = 2125867.843396, lowerbound=1116183.843396, norm of subgrad 41.874476 stepsize= 1.000000 +dualbound = 2126152.582646, lowerbound=1113853.582646, norm of subgrad 1056.092128 dualbound = 2126152.582646, lowerbound=1113853.582646, norm of subgrad 41.973078 stepsize= 1.000000 +dualbound = 2126381.278159, lowerbound=1115743.278159, norm of subgrad 1057.002024 dualbound = 2126381.278159, lowerbound=1115743.278159, norm of subgrad 41.697668 stepsize= 1.000000 +dualbound = 2126604.170967, lowerbound=1114385.170967, norm of subgrad 1056.396313 dualbound = 2126604.170967, lowerbound=1114385.170967, norm of subgrad 42.554586 stepsize= 1.000000 +dualbound = 2126876.448075, lowerbound=1115648.448075, norm of subgrad 1056.985548 dualbound = 2126876.448075, lowerbound=1115648.448075, norm of subgrad 42.921756 stepsize= 1.000000 +dualbound = 2127105.356612, lowerbound=1114879.356612, norm of subgrad 1056.618359 dualbound = 2127105.356612, lowerbound=1114879.356612, norm of subgrad 42.330941 stepsize= 1.000000 +dualbound = 2127376.447856, lowerbound=1113333.447855, norm of subgrad 1055.860051 dualbound = 2127376.447856, lowerbound=1113333.447855, norm of subgrad 42.167419 stepsize= 1.000000 +dualbound = 2127624.012698, lowerbound=1116972.012698, norm of subgrad 1057.602956 dualbound = 2127624.012698, lowerbound=1116972.012698, norm of subgrad 42.421278 stepsize= 1.000000 +dualbound = 2127854.055405, lowerbound=1115611.055405, norm of subgrad 1056.990092 dualbound = 2127854.055405, lowerbound=1115611.055405, norm of subgrad 42.977235 stepsize= 1.000000 +dualbound = 2128101.497463, lowerbound=1114139.497463, norm of subgrad 1056.244525 dualbound = 2128101.497463, lowerbound=1114139.497463, norm of subgrad 41.957622 stepsize= 1.000000 +dualbound = 2128371.041307, lowerbound=1115524.041307, norm of subgrad 1056.910612 dualbound = 2128371.041307, lowerbound=1115524.041307, norm of subgrad 42.491691 stepsize= 1.000000 +dualbound = 2128654.152342, lowerbound=1114884.152342, norm of subgrad 1056.617316 dualbound = 2128654.152342, lowerbound=1114884.152342, norm of subgrad 42.884858 stepsize= 1.000000 +dualbound = 2128862.130093, lowerbound=1116561.130093, norm of subgrad 1057.408686 dualbound = 2128862.130093, lowerbound=1116561.130093, norm of subgrad 41.952089 stepsize= 1.000000 +dualbound = 2129116.387316, lowerbound=1113254.387316, norm of subgrad 1055.827347 dualbound = 2129116.387316, lowerbound=1113254.387316, norm of subgrad 42.086307 stepsize= 1.000000 +dualbound = 2129392.128502, lowerbound=1114087.128502, norm of subgrad 1056.236303 dualbound = 2129392.128502, lowerbound=1114087.128502, norm of subgrad 42.705283 stepsize= 1.000000 +dualbound = 2129627.471721, lowerbound=1119098.471721, norm of subgrad 1058.610633 dualbound = 2129627.471721, lowerbound=1119098.471721, norm of subgrad 42.347883 stepsize= 1.000000 +dualbound = 2129907.337690, lowerbound=1117704.337690, norm of subgrad 1057.918871 dualbound = 2129907.337690, lowerbound=1117704.337690, norm of subgrad 42.045998 stepsize= 1.000000 +dualbound = 2130151.276362, lowerbound=1114531.276362, norm of subgrad 1056.418135 dualbound = 2130151.276362, lowerbound=1114531.276362, norm of subgrad 41.616567 stepsize= 1.000000 +dualbound = 2130408.297661, lowerbound=1112860.297661, norm of subgrad 1055.616549 dualbound = 2130408.297661, lowerbound=1112860.297661, norm of subgrad 41.509292 stepsize= 1.000000 +dualbound = 2130655.470345, lowerbound=1114825.470345, norm of subgrad 1056.599958 dualbound = 2130655.470345, lowerbound=1114825.470345, norm of subgrad 42.722040 stepsize= 1.000000 +dualbound = 2130856.796326, lowerbound=1116488.796326, norm of subgrad 1057.392924 dualbound = 2130856.796326, lowerbound=1116488.796326, norm of subgrad 42.335871 stepsize= 1.000000 +dualbound = 2131122.535670, lowerbound=1113842.535670, norm of subgrad 1056.109623 dualbound = 2131122.535670, lowerbound=1113842.535670, norm of subgrad 42.317128 stepsize= 1.000000 +dualbound = 2131425.553896, lowerbound=1118553.553896, norm of subgrad 1058.305511 dualbound = 2131425.553896, lowerbound=1118553.553896, norm of subgrad 41.952571 stepsize= 1.000000 +dualbound = 2131642.480790, lowerbound=1113281.480790, norm of subgrad 1055.843493 dualbound = 2131642.480790, lowerbound=1113281.480790, norm of subgrad 41.724416 stepsize= 1.000000 +dualbound = 2131882.240632, lowerbound=1119109.240632, norm of subgrad 1058.588324 dualbound = 2131882.240632, lowerbound=1119109.240632, norm of subgrad 41.710428 stepsize= 1.000000 +dualbound = 2132144.735070, lowerbound=1114081.735070, norm of subgrad 1056.222389 dualbound = 2132144.735070, lowerbound=1114081.735070, norm of subgrad 42.266943 stepsize= 1.000000 +dualbound = 2132373.997464, lowerbound=1115924.997464, norm of subgrad 1057.115414 dualbound = 2132373.997464, lowerbound=1115924.997464, norm of subgrad 42.394132 stepsize= 1.000000 +dualbound = 2132611.031934, lowerbound=1115663.031934, norm of subgrad 1056.998596 dualbound = 2132611.031934, lowerbound=1115663.031934, norm of subgrad 42.661862 stepsize= 1.000000 +dualbound = 2132873.384261, lowerbound=1114339.384261, norm of subgrad 1056.312162 dualbound = 2132873.384261, lowerbound=1114339.384261, norm of subgrad 41.453013 stepsize= 1.000000 +dualbound = 2133149.799184, lowerbound=1119252.799184, norm of subgrad 1058.658018 dualbound = 2133149.799184, lowerbound=1119252.799184, norm of subgrad 42.194963 stepsize= 1.000000 +dualbound = 2133375.649760, lowerbound=1112722.649760, norm of subgrad 1055.591611 dualbound = 2133375.649760, lowerbound=1112722.649760, norm of subgrad 42.152705 stepsize= 1.000000 +dualbound = 2133636.982109, lowerbound=1115794.982109, norm of subgrad 1057.036888 dualbound = 2133636.982109, lowerbound=1115794.982109, norm of subgrad 42.347755 stepsize= 1.000000 +dualbound = 2133888.610497, lowerbound=1113978.610497, norm of subgrad 1056.204815 dualbound = 2133888.610497, lowerbound=1113978.610497, norm of subgrad 42.914198 stepsize= 1.000000 +dualbound = 2134117.021746, lowerbound=1114901.021746, norm of subgrad 1056.636182 dualbound = 2134117.021746, lowerbound=1114901.021746, norm of subgrad 42.513660 stepsize= 1.000000 +dualbound = 2134368.304955, lowerbound=1117136.304955, norm of subgrad 1057.691025 dualbound = 2134368.304955, lowerbound=1117136.304955, norm of subgrad 42.723333 stepsize= 1.000000 +dualbound = 2134654.815536, lowerbound=1114492.815536, norm of subgrad 1056.397565 dualbound = 2134654.815536, lowerbound=1114492.815536, norm of subgrad 42.065551 stepsize= 1.000000 +dualbound = 2134900.944155, lowerbound=1120098.944155, norm of subgrad 1059.075042 dualbound = 2134900.944155, lowerbound=1120098.944155, norm of subgrad 42.274444 stepsize= 1.000000 +dualbound = 2135123.942775, lowerbound=1113576.942775, norm of subgrad 1055.988609 dualbound = 2135123.942775, lowerbound=1113576.942775, norm of subgrad 41.928494 stepsize= 1.000000 +dualbound = 2135380.221599, lowerbound=1114852.221599, norm of subgrad 1056.625866 dualbound = 2135380.221599, lowerbound=1114852.221599, norm of subgrad 43.154129 stepsize= 1.000000 +dualbound = 2135622.191956, lowerbound=1113805.191956, norm of subgrad 1056.079160 dualbound = 2135622.191956, lowerbound=1113805.191956, norm of subgrad 41.712952 stepsize= 1.000000 +dualbound = 2135919.465223, lowerbound=1118389.465223, norm of subgrad 1058.258695 dualbound = 2135919.465223, lowerbound=1118389.465223, norm of subgrad 42.652940 stepsize= 1.000000 +dualbound = 2136126.786663, lowerbound=1116241.786663, norm of subgrad 1057.242066 dualbound = 2136126.786663, lowerbound=1116241.786663, norm of subgrad 41.549025 stepsize= 1.000000 +dualbound = 2136414.991524, lowerbound=1116402.991524, norm of subgrad 1057.321612 dualbound = 2136414.991524, lowerbound=1116402.991524, norm of subgrad 42.593484 stepsize= 1.000000 +dualbound = 2136648.842068, lowerbound=1116009.842068, norm of subgrad 1057.131421 dualbound = 2136648.842068, lowerbound=1116009.842068, norm of subgrad 41.843166 stepsize= 1.000000 +dualbound = 2136914.960191, lowerbound=1113503.960191, norm of subgrad 1055.925168 dualbound = 2136914.960191, lowerbound=1113503.960191, norm of subgrad 41.714723 stepsize= 1.000000 +dualbound = 2137168.181551, lowerbound=1113335.181551, norm of subgrad 1055.870817 dualbound = 2137168.181551, lowerbound=1113335.181551, norm of subgrad 42.204518 stepsize= 1.000000 +dualbound = 2137398.506994, lowerbound=1119684.506994, norm of subgrad 1058.877475 dualbound = 2137398.506994, lowerbound=1119684.506994, norm of subgrad 42.039570 stepsize= 1.000000 +dualbound = 2137663.861387, lowerbound=1114961.861387, norm of subgrad 1056.635160 dualbound = 2137663.861387, lowerbound=1114961.861387, norm of subgrad 42.206094 stepsize= 1.000000 +dualbound = 2137894.100019, lowerbound=1118344.100019, norm of subgrad 1058.243403 dualbound = 2137894.100019, lowerbound=1118344.100019, norm of subgrad 42.014743 stepsize= 1.000000 +dualbound = 2138150.698979, lowerbound=1111464.698979, norm of subgrad 1054.976160 dualbound = 2138150.698979, lowerbound=1111464.698979, norm of subgrad 42.030929 stepsize= 1.000000 +dualbound = 2138418.318785, lowerbound=1118573.318785, norm of subgrad 1058.348864 dualbound = 2138418.318785, lowerbound=1118573.318785, norm of subgrad 42.386552 stepsize= 1.000000 +dualbound = 2138625.110908, lowerbound=1115046.110908, norm of subgrad 1056.673133 dualbound = 2138625.110908, lowerbound=1115046.110908, norm of subgrad 41.458318 stepsize= 1.000000 +dualbound = 2138905.151567, lowerbound=1117425.151567, norm of subgrad 1057.794475 dualbound = 2138905.151567, lowerbound=1117425.151567, norm of subgrad 42.237905 stepsize= 1.000000 +dualbound = 2139139.658727, lowerbound=1113273.658727, norm of subgrad 1055.842630 dualbound = 2139139.658727, lowerbound=1113273.658727, norm of subgrad 42.006037 stepsize= 1.000000 +dualbound = 2139384.367663, lowerbound=1118976.367663, norm of subgrad 1058.574687 dualbound = 2139384.367663, lowerbound=1118976.367663, norm of subgrad 42.996615 stepsize= 1.000000 +dualbound = 2139633.934287, lowerbound=1114535.934287, norm of subgrad 1056.479500 dualbound = 2139633.934287, lowerbound=1114535.934287, norm of subgrad 43.157463 stepsize= 1.000000 +dualbound = 2139868.400206, lowerbound=1114862.400206, norm of subgrad 1056.620272 dualbound = 2139868.400206, lowerbound=1114862.400206, norm of subgrad 42.643475 stepsize= 1.000000 +dualbound = 2140148.100861, lowerbound=1115192.100861, norm of subgrad 1056.762557 dualbound = 2140148.100861, lowerbound=1115192.100861, norm of subgrad 42.833406 stepsize= 1.000000 +dualbound = 2140383.554237, lowerbound=1116898.554237, norm of subgrad 1057.581937 dualbound = 2140383.554237, lowerbound=1116898.554237, norm of subgrad 42.619871 stepsize= 1.000000 +dualbound = 2140646.409019, lowerbound=1116744.409019, norm of subgrad 1057.488728 dualbound = 2140646.409019, lowerbound=1116744.409019, norm of subgrad 42.436479 stepsize= 1.000000 +dualbound = 2140898.742530, lowerbound=1114296.742530, norm of subgrad 1056.324165 dualbound = 2140898.742530, lowerbound=1114296.742530, norm of subgrad 42.146572 stepsize= 1.000000 +dualbound = 2141136.337304, lowerbound=1116575.337304, norm of subgrad 1057.388451 dualbound = 2141136.337304, lowerbound=1116575.337304, norm of subgrad 41.624449 stepsize= 1.000000 +dualbound = 2141422.461510, lowerbound=1115985.461510, norm of subgrad 1057.108538 dualbound = 2141422.461510, lowerbound=1115985.461510, norm of subgrad 42.179666 stepsize= 1.000000 +dualbound = 2141652.821265, lowerbound=1111725.821265, norm of subgrad 1055.091854 dualbound = 2141652.821265, lowerbound=1111725.821265, norm of subgrad 41.513368 stepsize= 1.000000 +dualbound = 2141934.622686, lowerbound=1117974.622686, norm of subgrad 1058.023923 dualbound = 2141934.622686, lowerbound=1117974.622686, norm of subgrad 41.494595 stepsize= 1.000000 +dualbound = 2142157.850627, lowerbound=1115180.850627, norm of subgrad 1056.732630 dualbound = 2142157.850627, lowerbound=1115180.850627, norm of subgrad 41.547899 stepsize= 1.000000 +dualbound = 2142403.162498, lowerbound=1114760.162498, norm of subgrad 1056.556275 dualbound = 2142403.162498, lowerbound=1114760.162498, norm of subgrad 42.382920 stepsize= 1.000000 +dualbound = 2142635.625892, lowerbound=1116624.625892, norm of subgrad 1057.459042 dualbound = 2142635.625892, lowerbound=1116624.625892, norm of subgrad 42.748841 stepsize= 1.000000 +dualbound = 2142888.846854, lowerbound=1119618.846854, norm of subgrad 1058.854497 dualbound = 2142888.846854, lowerbound=1119618.846854, norm of subgrad 42.511422 stepsize= 1.000000 +dualbound = 2143147.210049, lowerbound=1115372.210049, norm of subgrad 1056.828373 dualbound = 2143147.210049, lowerbound=1115372.210049, norm of subgrad 42.099444 stepsize= 1.000000 +dualbound = 2143382.018477, lowerbound=1116802.018477, norm of subgrad 1057.514548 dualbound = 2143382.018477, lowerbound=1116802.018477, norm of subgrad 42.069091 stepsize= 1.000000 +dualbound = 2143656.215347, lowerbound=1114770.215347, norm of subgrad 1056.555827 dualbound = 2143656.215347, lowerbound=1114770.215347, norm of subgrad 42.593390 stepsize= 1.000000 +dualbound = 2143879.151194, lowerbound=1120579.151194, norm of subgrad 1059.286152 dualbound = 2143879.151194, lowerbound=1120579.151194, norm of subgrad 41.604517 stepsize= 1.000000 +dualbound = 2144131.273779, lowerbound=1112031.273779, norm of subgrad 1055.262656 dualbound = 2144131.273779, lowerbound=1112031.273779, norm of subgrad 42.427852 stepsize= 1.000000 +dualbound = 2144372.185948, lowerbound=1120616.185948, norm of subgrad 1059.293248 dualbound = 2144372.185948, lowerbound=1120616.185948, norm of subgrad 41.556133 stepsize= 1.000000 +dualbound = 2144667.020938, lowerbound=1113725.020938, norm of subgrad 1056.033627 dualbound = 2144667.020938, lowerbound=1113725.020938, norm of subgrad 42.152521 stepsize= 1.000000 +dualbound = 2144888.885254, lowerbound=1116644.885254, norm of subgrad 1057.405261 dualbound = 2144888.885254, lowerbound=1116644.885254, norm of subgrad 41.022729 stepsize= 1.000000 +dualbound = 2145173.109244, lowerbound=1118307.109244, norm of subgrad 1058.194268 dualbound = 2145173.109244, lowerbound=1118307.109244, norm of subgrad 41.859575 stepsize= 1.000000 +dualbound = 2145380.357887, lowerbound=1117279.357887, norm of subgrad 1057.715159 dualbound = 2145380.357887, lowerbound=1117279.357887, norm of subgrad 41.100470 stepsize= 1.000000 +dualbound = 2145670.807019, lowerbound=1117647.807019, norm of subgrad 1057.877501 dualbound = 2145670.807019, lowerbound=1117647.807019, norm of subgrad 41.802502 stepsize= 1.000000 +dualbound = 2145898.378790, lowerbound=1117082.378790, norm of subgrad 1057.649932 dualbound = 2145898.378790, lowerbound=1117082.378790, norm of subgrad 42.054391 stepsize= 1.000000 +dualbound = 2146120.325914, lowerbound=1116063.325914, norm of subgrad 1057.185095 dualbound = 2146120.325914, lowerbound=1116063.325914, norm of subgrad 42.413997 stepsize= 1.000000 +dualbound = 2146379.560354, lowerbound=1117281.560354, norm of subgrad 1057.718091 dualbound = 2146379.560354, lowerbound=1117281.560354, norm of subgrad 41.776003 stepsize= 1.000000 +dualbound = 2146637.550833, lowerbound=1115613.550833, norm of subgrad 1056.917949 dualbound = 2146637.550833, lowerbound=1115613.550833, norm of subgrad 41.472768 stepsize= 1.000000 +dualbound = 2146880.611587, lowerbound=1116386.611587, norm of subgrad 1057.336092 dualbound = 2146880.611587, lowerbound=1116386.611587, norm of subgrad 42.615264 stepsize= 1.000000 +dualbound = 2147107.638985, lowerbound=1117889.638985, norm of subgrad 1058.044252 dualbound = 2147107.638985, lowerbound=1117889.638985, norm of subgrad 42.367764 stepsize= 1.000000 +dualbound = 2147356.852214, lowerbound=1114659.852214, norm of subgrad 1056.459111 dualbound = 2147356.852214, lowerbound=1114659.852214, norm of subgrad 41.172967 stepsize= 1.000000 +dualbound = 2147622.835055, lowerbound=1115711.835055, norm of subgrad 1056.970120 dualbound = 2147622.835055, lowerbound=1115711.835055, norm of subgrad 41.713102 stepsize= 1.000000 +dualbound = 2147855.028801, lowerbound=1118073.028801, norm of subgrad 1058.125715 dualbound = 2147855.028801, lowerbound=1118073.028801, norm of subgrad 42.298862 stepsize= 1.000000 +dualbound = 2148110.912022, lowerbound=1118593.912022, norm of subgrad 1058.359066 dualbound = 2148110.912022, lowerbound=1118593.912022, norm of subgrad 42.259712 stepsize= 1.000000 +dualbound = 2148359.448338, lowerbound=1118978.448338, norm of subgrad 1058.552997 dualbound = 2148359.448338, lowerbound=1118978.448338, norm of subgrad 42.479834 stepsize= 1.000000 +dualbound = 2148609.844090, lowerbound=1113516.844090, norm of subgrad 1055.965361 dualbound = 2148609.844090, lowerbound=1113516.844090, norm of subgrad 42.383909 stepsize= 1.000000 +dualbound = 2148849.259575, lowerbound=1119326.259575, norm of subgrad 1058.714437 dualbound = 2148849.259575, lowerbound=1119326.259575, norm of subgrad 42.301483 stepsize= 1.000000 +dualbound = 2149104.876941, lowerbound=1116021.876941, norm of subgrad 1057.163127 dualbound = 2149104.876941, lowerbound=1116021.876941, norm of subgrad 42.750642 stepsize= 1.000000 +dualbound = 2149341.829466, lowerbound=1119243.829466, norm of subgrad 1058.675507 dualbound = 2149341.829466, lowerbound=1119243.829466, norm of subgrad 42.272361 stepsize= 1.000000 +dualbound = 2149600.587858, lowerbound=1112500.587858, norm of subgrad 1055.492107 dualbound = 2149600.587858, lowerbound=1112500.587858, norm of subgrad 42.682062 stepsize= 1.000000 +dualbound = 2149839.264171, lowerbound=1119763.264171, norm of subgrad 1058.914191 dualbound = 2149839.264171, lowerbound=1119763.264171, norm of subgrad 42.126907 stepsize= 1.000000 +dualbound = 2150098.998953, lowerbound=1116245.998953, norm of subgrad 1057.240275 dualbound = 2150098.998953, lowerbound=1116245.998953, norm of subgrad 42.080100 stepsize= 1.000000 +dualbound = 2150346.180247, lowerbound=1117881.180247, norm of subgrad 1058.009064 dualbound = 2150346.180247, lowerbound=1117881.180247, norm of subgrad 41.823215 stepsize= 1.000000 +dualbound = 2150577.386675, lowerbound=1114776.386675, norm of subgrad 1056.552595 dualbound = 2150577.386675, lowerbound=1114776.386675, norm of subgrad 41.930972 stepsize= 1.000000 +dualbound = 2150828.476945, lowerbound=1119443.476945, norm of subgrad 1058.782072 dualbound = 2150828.476945, lowerbound=1119443.476945, norm of subgrad 42.744476 stepsize= 1.000000 +dualbound = 2151066.277111, lowerbound=1119865.277111, norm of subgrad 1058.976051 dualbound = 2151066.277111, lowerbound=1119865.277111, norm of subgrad 42.459394 stepsize= 1.000000 +dualbound = 2151330.620950, lowerbound=1116137.620950, norm of subgrad 1057.189964 dualbound = 2151330.620950, lowerbound=1116137.620950, norm of subgrad 42.158556 stepsize= 1.000000 +dualbound = 2151578.573763, lowerbound=1118238.573763, norm of subgrad 1058.169917 dualbound = 2151578.573763, lowerbound=1118238.573763, norm of subgrad 41.628750 stepsize= 1.000000 +dualbound = 2151849.418269, lowerbound=1118238.418269, norm of subgrad 1058.181184 dualbound = 2151849.418269, lowerbound=1118238.418269, norm of subgrad 42.188203 stepsize= 1.000000 +dualbound = 2152065.274855, lowerbound=1115711.274855, norm of subgrad 1057.002022 dualbound = 2152065.274855, lowerbound=1115711.274855, norm of subgrad 41.926800 stepsize= 1.000000 +dualbound = 2152308.296059, lowerbound=1118918.296059, norm of subgrad 1058.519389 dualbound = 2152308.296059, lowerbound=1118918.296059, norm of subgrad 42.285000 stepsize= 1.000000 +dualbound = 2152560.222332, lowerbound=1114335.222332, norm of subgrad 1056.343326 dualbound = 2152560.222332, lowerbound=1114335.222332, norm of subgrad 42.165463 stepsize= 1.000000 +dualbound = 2152802.029215, lowerbound=1119142.029215, norm of subgrad 1058.611368 dualbound = 2152802.029215, lowerbound=1119142.029215, norm of subgrad 41.926208 stepsize= 1.000000 +dualbound = 2153078.160721, lowerbound=1118399.160721, norm of subgrad 1058.275560 dualbound = 2153078.160721, lowerbound=1118399.160721, norm of subgrad 42.709853 stepsize= 1.000000 +dualbound = 2153297.303758, lowerbound=1118016.303758, norm of subgrad 1058.083789 dualbound = 2153297.303758, lowerbound=1118016.303758, norm of subgrad 41.762939 stepsize= 1.000000 +dualbound = 2153559.866920, lowerbound=1119135.866920, norm of subgrad 1058.603735 dualbound = 2153559.866920, lowerbound=1119135.866920, norm of subgrad 42.054288 stepsize= 1.000000 +dualbound = 2153772.051476, lowerbound=1119786.051476, norm of subgrad 1058.948559 dualbound = 2153772.051476, lowerbound=1119786.051476, norm of subgrad 42.405006 stepsize= 1.000000 +dualbound = 2154030.809670, lowerbound=1115674.809670, norm of subgrad 1056.972000 dualbound = 2154030.809670, lowerbound=1115674.809670, norm of subgrad 42.116009 stepsize= 1.000000 +dualbound = 2154290.216600, lowerbound=1119651.216600, norm of subgrad 1058.832478 dualbound = 2154290.216600, lowerbound=1119651.216600, norm of subgrad 41.646211 stepsize= 1.000000 +dualbound = 2154541.634396, lowerbound=1115985.634396, norm of subgrad 1057.118080 dualbound = 2154541.634396, lowerbound=1115985.634396, norm of subgrad 42.004973 stepsize= 1.000000 +dualbound = 2154788.466118, lowerbound=1119372.466118, norm of subgrad 1058.756094 dualbound = 2154788.466118, lowerbound=1119372.466118, norm of subgrad 42.881601 stepsize= 1.000000 +dualbound = 2155002.171781, lowerbound=1120423.171781, norm of subgrad 1059.239903 dualbound = 2155002.171781, lowerbound=1120423.171781, norm of subgrad 42.186558 stepsize= 1.000000 +dualbound = 2155283.375672, lowerbound=1116554.375672, norm of subgrad 1057.360570 dualbound = 2155283.375672, lowerbound=1116554.375672, norm of subgrad 41.691772 stepsize= 1.000000 +dualbound = 2155515.720419, lowerbound=1114559.720419, norm of subgrad 1056.430178 dualbound = 2155515.720419, lowerbound=1114559.720419, norm of subgrad 41.440858 stepsize= 1.000000 +dualbound = 2155783.561137, lowerbound=1120523.561137, norm of subgrad 1059.238198 dualbound = 2155783.561137, lowerbound=1120523.561137, norm of subgrad 41.591354 stepsize= 1.000000 +dualbound = 2156037.294194, lowerbound=1115787.294194, norm of subgrad 1057.002031 dualbound = 2156037.294194, lowerbound=1115787.294194, norm of subgrad 41.469664 stepsize= 1.000000 +dualbound = 2156267.130780, lowerbound=1119249.130780, norm of subgrad 1058.673288 dualbound = 2156267.130780, lowerbound=1119249.130780, norm of subgrad 42.069426 stepsize= 1.000000 +dualbound = 2156502.643983, lowerbound=1114809.643983, norm of subgrad 1056.571646 dualbound = 2156502.643983, lowerbound=1114809.643983, norm of subgrad 42.065582 stepsize= 1.000000 +dualbound = 2156754.474286, lowerbound=1122496.474286, norm of subgrad 1060.204449 dualbound = 2156754.474286, lowerbound=1122496.474286, norm of subgrad 42.294566 stepsize= 1.000000 +dualbound = 2156977.217530, lowerbound=1120323.217530, norm of subgrad 1059.154010 dualbound = 2156977.217530, lowerbound=1120323.217530, norm of subgrad 41.312749 stepsize= 1.000000 +dualbound = 2157253.090338, lowerbound=1118550.090338, norm of subgrad 1058.298677 dualbound = 2157253.090338, lowerbound=1118550.090338, norm of subgrad 41.495455 stepsize= 1.000000 +dualbound = 2157497.297053, lowerbound=1114713.297053, norm of subgrad 1056.489610 dualbound = 2157497.297053, lowerbound=1114713.297053, norm of subgrad 41.245687 stepsize= 1.000000 +dualbound = 2157739.792798, lowerbound=1120697.792798, norm of subgrad 1059.375662 dualbound = 2157739.792798, lowerbound=1120697.792798, norm of subgrad 42.678985 stepsize= 1.000000 +dualbound = 2157965.864007, lowerbound=1116603.864007, norm of subgrad 1057.404305 dualbound = 2157965.864007, lowerbound=1116603.864007, norm of subgrad 41.546013 stepsize= 1.000000 +dualbound = 2158204.860169, lowerbound=1114284.860169, norm of subgrad 1056.331321 dualbound = 2158204.860169, lowerbound=1114284.860169, norm of subgrad 42.308346 stepsize= 1.000000 +dualbound = 2158464.938649, lowerbound=1120043.938649, norm of subgrad 1059.059459 dualbound = 2158464.938649, lowerbound=1120043.938649, norm of subgrad 42.697523 stepsize= 1.000000 +dualbound = 2158701.928260, lowerbound=1119361.928260, norm of subgrad 1058.729866 dualbound = 2158701.928260, lowerbound=1119361.928260, norm of subgrad 42.237301 stepsize= 1.000000 +dualbound = 2158946.676398, lowerbound=1116644.676398, norm of subgrad 1057.453865 dualbound = 2158946.676398, lowerbound=1116644.676398, norm of subgrad 42.529380 stepsize= 1.000000 +dualbound = 2159185.281295, lowerbound=1118422.281295, norm of subgrad 1058.281286 dualbound = 2159185.281295, lowerbound=1118422.281295, norm of subgrad 42.137927 stepsize= 1.000000 +dualbound = 2159458.242450, lowerbound=1118954.242450, norm of subgrad 1058.541092 dualbound = 2159458.242450, lowerbound=1118954.242450, norm of subgrad 42.754662 stepsize= 1.000000 +dualbound = 2159672.857262, lowerbound=1120196.857262, norm of subgrad 1059.103799 dualbound = 2159672.857262, lowerbound=1120196.857262, norm of subgrad 41.456179 stepsize= 1.000000 +dualbound = 2159952.705604, lowerbound=1116580.705604, norm of subgrad 1057.361672 dualbound = 2159952.705604, lowerbound=1116580.705604, norm of subgrad 41.386572 stepsize= 1.000000 +dualbound = 2160212.454185, lowerbound=1118138.454185, norm of subgrad 1058.124971 dualbound = 2160212.454185, lowerbound=1118138.454185, norm of subgrad 41.829996 stepsize= 1.000000 +dualbound = 2160452.248345, lowerbound=1118849.248345, norm of subgrad 1058.455123 dualbound = 2160452.248345, lowerbound=1118849.248345, norm of subgrad 41.446280 stepsize= 1.000000 +dualbound = 2160690.187968, lowerbound=1116847.187968, norm of subgrad 1057.505172 dualbound = 2160690.187968, lowerbound=1116847.187968, norm of subgrad 41.327226 stepsize= 1.000000 +dualbound = 2160928.140715, lowerbound=1120713.140715, norm of subgrad 1059.344203 dualbound = 2160928.140715, lowerbound=1120713.140715, norm of subgrad 41.652764 stepsize= 1.000000 +dualbound = 2161165.963875, lowerbound=1121050.963875, norm of subgrad 1059.527708 dualbound = 2161165.963875, lowerbound=1121050.963875, norm of subgrad 42.259001 stepsize= 1.000000 +dualbound = 2161392.897948, lowerbound=1116072.897948, norm of subgrad 1057.172596 dualbound = 2161392.897948, lowerbound=1116072.897948, norm of subgrad 42.046808 stepsize= 1.000000 +dualbound = 2161658.563106, lowerbound=1123226.563106, norm of subgrad 1060.568981 dualbound = 2161658.563106, lowerbound=1123226.563106, norm of subgrad 42.961205 stepsize= 1.000000 +dualbound = 2161873.757641, lowerbound=1119309.757641, norm of subgrad 1058.707588 dualbound = 2161873.757641, lowerbound=1119309.757641, norm of subgrad 42.038013 stepsize= 1.000000 +dualbound = 2162137.626794, lowerbound=1122595.626794, norm of subgrad 1060.245079 dualbound = 2162137.626794, lowerbound=1122595.626794, norm of subgrad 42.283202 stepsize= 1.000000 +dualbound = 2162392.837901, lowerbound=1121862.837900, norm of subgrad 1059.898975 dualbound = 2162392.837901, lowerbound=1121862.837900, norm of subgrad 42.168840 stepsize= 1.000000 +dualbound = 2162628.754525, lowerbound=1119815.754525, norm of subgrad 1058.901201 dualbound = 2162628.754525, lowerbound=1119815.754525, norm of subgrad 41.132914 stepsize= 1.000000 +dualbound = 2162876.695647, lowerbound=1118096.695647, norm of subgrad 1058.113744 dualbound = 2162876.695647, lowerbound=1118096.695647, norm of subgrad 41.903951 stepsize= 1.000000 +dualbound = 2163117.774538, lowerbound=1119597.774538, norm of subgrad 1058.800630 dualbound = 2163117.774538, lowerbound=1119597.774538, norm of subgrad 41.256259 stepsize= 1.000000 +dualbound = 2163359.566337, lowerbound=1119977.566337, norm of subgrad 1058.980909 dualbound = 2163359.566337, lowerbound=1119977.566337, norm of subgrad 41.289124 stepsize= 1.000000 +dualbound = 2163603.807370, lowerbound=1122419.807370, norm of subgrad 1060.171593 dualbound = 2163603.807370, lowerbound=1122419.807370, norm of subgrad 42.287599 stepsize= 1.000000 +dualbound = 2163825.769977, lowerbound=1117450.769977, norm of subgrad 1057.821237 dualbound = 2163825.769977, lowerbound=1117450.769977, norm of subgrad 41.916138 stepsize= 1.000000 +dualbound = 2164072.683189, lowerbound=1124801.683189, norm of subgrad 1061.289161 dualbound = 2164072.683189, lowerbound=1124801.683189, norm of subgrad 42.189018 stepsize= 1.000000 +dualbound = 2164315.695892, lowerbound=1117920.695892, norm of subgrad 1058.038135 dualbound = 2164315.695892, lowerbound=1117920.695892, norm of subgrad 42.035850 stepsize= 1.000000 +dualbound = 2164553.904535, lowerbound=1118753.904535, norm of subgrad 1058.432759 dualbound = 2164553.904535, lowerbound=1118753.904535, norm of subgrad 42.002484 stepsize= 1.000000 +dualbound = 2164791.637108, lowerbound=1119981.637108, norm of subgrad 1058.988497 dualbound = 2164791.637108, lowerbound=1119981.637108, norm of subgrad 41.385173 stepsize= 1.000000 +dualbound = 2165072.786354, lowerbound=1125196.786354, norm of subgrad 1061.454562 dualbound = 2165072.786354, lowerbound=1125196.786354, norm of subgrad 42.073142 stepsize= 1.000000 +dualbound = 2165290.090125, lowerbound=1119331.090125, norm of subgrad 1058.682242 dualbound = 2165290.090125, lowerbound=1119331.090125, norm of subgrad 41.161921 stepsize= 1.000000 +dualbound = 2165520.385974, lowerbound=1122480.385974, norm of subgrad 1060.220442 dualbound = 2165520.385974, lowerbound=1122480.385974, norm of subgrad 42.629753 stepsize= 1.000000 +dualbound = 2165751.823168, lowerbound=1119481.823168, norm of subgrad 1058.780819 dualbound = 2165751.823168, lowerbound=1119481.823168, norm of subgrad 42.029004 stepsize= 1.000000 +dualbound = 2166023.632981, lowerbound=1121793.632981, norm of subgrad 1059.825756 dualbound = 2166023.632981, lowerbound=1121793.632981, norm of subgrad 41.337753 stepsize= 1.000000 +dualbound = 2166269.013651, lowerbound=1120243.013651, norm of subgrad 1059.140224 dualbound = 2166269.013651, lowerbound=1120243.013651, norm of subgrad 42.194557 stepsize= 1.000000 +dualbound = 2166497.152205, lowerbound=1121807.152205, norm of subgrad 1059.880725 dualbound = 2166497.152205, lowerbound=1121807.152205, norm of subgrad 42.049240 stepsize= 1.000000 +dualbound = 2166718.729267, lowerbound=1117255.729267, norm of subgrad 1057.711080 dualbound = 2166718.729267, lowerbound=1117255.729267, norm of subgrad 41.455724 stepsize= 1.000000 +dualbound = 2166976.217673, lowerbound=1125196.217673, norm of subgrad 1061.468896 dualbound = 2166976.217673, lowerbound=1125196.217673, norm of subgrad 42.160270 stepsize= 1.000000 +dualbound = 2167217.533346, lowerbound=1116880.533346, norm of subgrad 1057.536067 dualbound = 2167217.533346, lowerbound=1116880.533346, norm of subgrad 41.753032 stepsize= 1.000000 +dualbound = 2167456.992392, lowerbound=1124694.992392, norm of subgrad 1061.229943 dualbound = 2167456.992392, lowerbound=1124694.992392, norm of subgrad 41.874324 stepsize= 1.000000 +dualbound = 2167689.324030, lowerbound=1118521.324030, norm of subgrad 1058.302567 dualbound = 2167689.324030, lowerbound=1118521.324030, norm of subgrad 41.416562 stepsize= 1.000000 +dualbound = 2167958.876980, lowerbound=1119124.876980, norm of subgrad 1058.589570 dualbound = 2167958.876980, lowerbound=1119124.876980, norm of subgrad 41.911251 stepsize= 1.000000 +dualbound = 2168171.105206, lowerbound=1122486.105206, norm of subgrad 1060.196258 dualbound = 2168171.105206, lowerbound=1122486.105206, norm of subgrad 41.740008 stepsize= 1.000000 +dualbound = 2168427.781669, lowerbound=1124165.781669, norm of subgrad 1061.017805 dualbound = 2168427.781669, lowerbound=1124165.781669, norm of subgrad 43.007865 stepsize= 1.000000 +dualbound = 2168649.701645, lowerbound=1118695.701645, norm of subgrad 1058.398650 dualbound = 2168649.701645, lowerbound=1118695.701645, norm of subgrad 41.640365 stepsize= 1.000000 +dualbound = 2168933.169893, lowerbound=1122168.169893, norm of subgrad 1060.030740 dualbound = 2168933.169893, lowerbound=1122168.169893, norm of subgrad 42.195595 stepsize= 1.000000 +dualbound = 2169139.784277, lowerbound=1121520.784277, norm of subgrad 1059.741848 dualbound = 2169139.784277, lowerbound=1121520.784277, norm of subgrad 41.696695 stepsize= 1.000000 +dualbound = 2169370.631651, lowerbound=1120683.631651, norm of subgrad 1059.335467 dualbound = 2169370.631651, lowerbound=1120683.631651, norm of subgrad 41.699489 stepsize= 1.000000 +dualbound = 2169636.178655, lowerbound=1121715.178655, norm of subgrad 1059.825542 dualbound = 2169636.178655, lowerbound=1121715.178655, norm of subgrad 42.196528 stepsize= 1.000000 +dualbound = 2169869.205662, lowerbound=1120302.205662, norm of subgrad 1059.130873 dualbound = 2169869.205662, lowerbound=1120302.205662, norm of subgrad 41.097774 stepsize= 1.000000 +dualbound = 2170114.378049, lowerbound=1120639.378049, norm of subgrad 1059.299003 dualbound = 2170114.378049, lowerbound=1120639.378049, norm of subgrad 41.474961 stepsize= 1.000000 +dualbound = 2170346.487038, lowerbound=1117653.487038, norm of subgrad 1057.904290 dualbound = 2170346.487038, lowerbound=1117653.487038, norm of subgrad 41.714614 stepsize= 1.000000 +dualbound = 2170576.530525, lowerbound=1122805.530525, norm of subgrad 1060.343119 dualbound = 2170576.530525, lowerbound=1122805.530525, norm of subgrad 41.857419 stepsize= 1.000000 +dualbound = 2170837.377932, lowerbound=1121368.377932, norm of subgrad 1059.662861 dualbound = 2170837.377932, lowerbound=1121368.377932, norm of subgrad 42.164528 stepsize= 1.000000 +dualbound = 2171072.740149, lowerbound=1123943.740149, norm of subgrad 1060.886771 dualbound = 2171072.740149, lowerbound=1123943.740149, norm of subgrad 42.099433 stepsize= 1.000000 +dualbound = 2171326.073308, lowerbound=1121373.073308, norm of subgrad 1059.655167 dualbound = 2171326.073308, lowerbound=1121373.073308, norm of subgrad 41.825030 stepsize= 1.000000 +dualbound = 2171570.920415, lowerbound=1120657.920415, norm of subgrad 1059.310587 dualbound = 2171570.920415, lowerbound=1120657.920415, norm of subgrad 41.543316 stepsize= 1.000000 +dualbound = 2171817.550139, lowerbound=1120898.550139, norm of subgrad 1059.410473 dualbound = 2171817.550139, lowerbound=1120898.550139, norm of subgrad 41.214436 stepsize= 1.000000 +dualbound = 2172039.637969, lowerbound=1122111.637969, norm of subgrad 1060.035206 dualbound = 2172039.637969, lowerbound=1122111.637969, norm of subgrad 42.250300 stepsize= 1.000000 +dualbound = 2172264.096911, lowerbound=1124578.096911, norm of subgrad 1061.184761 dualbound = 2172264.096911, lowerbound=1124578.096911, norm of subgrad 41.945905 stepsize= 1.000000 +dualbound = 2172551.116805, lowerbound=1118084.116805, norm of subgrad 1058.067633 dualbound = 2172551.116805, lowerbound=1118084.116805, norm of subgrad 41.352387 stepsize= 1.000000 +dualbound = 2172778.250335, lowerbound=1121898.250335, norm of subgrad 1059.884546 dualbound = 2172778.250335, lowerbound=1121898.250335, norm of subgrad 41.038196 stepsize= 1.000000 +dualbound = 2173016.860024, lowerbound=1119239.860024, norm of subgrad 1058.632542 dualbound = 2173016.860024, lowerbound=1119239.860024, norm of subgrad 41.250572 stepsize= 1.000000 +dualbound = 2173244.266098, lowerbound=1122220.266098, norm of subgrad 1060.043993 dualbound = 2173244.266098, lowerbound=1122220.266098, norm of subgrad 41.235980 stepsize= 1.000000 +dualbound = 2173483.563155, lowerbound=1120232.563155, norm of subgrad 1059.118295 dualbound = 2173483.563155, lowerbound=1120232.563155, norm of subgrad 41.692890 stepsize= 1.000000 +dualbound = 2173720.903422, lowerbound=1121762.903422, norm of subgrad 1059.833432 dualbound = 2173720.903422, lowerbound=1121762.903422, norm of subgrad 41.489038 stepsize= 1.000000 +dualbound = 2173985.532032, lowerbound=1124684.532032, norm of subgrad 1061.206168 dualbound = 2173985.532032, lowerbound=1124684.532032, norm of subgrad 41.696866 stepsize= 1.000000 +dualbound = 2174208.767792, lowerbound=1118557.767792, norm of subgrad 1058.335848 dualbound = 2174208.767792, lowerbound=1118557.767792, norm of subgrad 41.716133 stepsize= 1.000000 +dualbound = 2174458.345135, lowerbound=1121768.345135, norm of subgrad 1059.861475 dualbound = 2174458.345135, lowerbound=1121768.345135, norm of subgrad 42.279751 stepsize= 1.000000 +dualbound = 2174679.080741, lowerbound=1122508.080741, norm of subgrad 1060.211338 dualbound = 2174679.080741, lowerbound=1122508.080741, norm of subgrad 41.961120 stepsize= 1.000000 +dualbound = 2174943.864211, lowerbound=1117792.864211, norm of subgrad 1057.978196 dualbound = 2174943.864211, lowerbound=1117792.864211, norm of subgrad 42.305833 stepsize= 1.000000 +dualbound = 2175169.261590, lowerbound=1124002.261590, norm of subgrad 1060.930375 dualbound = 2175169.261590, lowerbound=1124002.261590, norm of subgrad 42.383928 stepsize= 1.000000 +dualbound = 2175392.268073, lowerbound=1118782.268073, norm of subgrad 1058.462219 dualbound = 2175392.268073, lowerbound=1118782.268073, norm of subgrad 42.225661 stepsize= 1.000000 +dualbound = 2175638.705616, lowerbound=1122337.705616, norm of subgrad 1060.139475 dualbound = 2175638.705616, lowerbound=1122337.705616, norm of subgrad 42.478672 stepsize= 1.000000 +dualbound = 2175892.222867, lowerbound=1121715.222867, norm of subgrad 1059.787348 dualbound = 2175892.222867, lowerbound=1121715.222867, norm of subgrad 41.079402 stepsize= 1.000000 +dualbound = 2176117.850490, lowerbound=1119632.850490, norm of subgrad 1058.829000 dualbound = 2176117.850490, lowerbound=1119632.850490, norm of subgrad 41.371822 stepsize= 1.000000 +dualbound = 2176372.684141, lowerbound=1122668.684141, norm of subgrad 1060.249822 dualbound = 2176372.684141, lowerbound=1122668.684141, norm of subgrad 41.422622 stepsize= 1.000000 +dualbound = 2176636.782659, lowerbound=1122084.782659, norm of subgrad 1059.982445 dualbound = 2176636.782659, lowerbound=1122084.782659, norm of subgrad 41.738454 stepsize= 1.000000 +dualbound = 2176836.230140, lowerbound=1125898.230140, norm of subgrad 1061.803763 dualbound = 2176836.230140, lowerbound=1125898.230140, norm of subgrad 41.574601 stepsize= 1.000000 +dualbound = 2177105.058271, lowerbound=1119849.058271, norm of subgrad 1058.938647 dualbound = 2177105.058271, lowerbound=1119849.058271, norm of subgrad 42.081209 stepsize= 1.000000 +dualbound = 2177318.142672, lowerbound=1118023.142672, norm of subgrad 1058.077569 dualbound = 2177318.142672, lowerbound=1118023.142672, norm of subgrad 41.449782 stepsize= 1.000000 +dualbound = 2177575.990791, lowerbound=1124394.990791, norm of subgrad 1061.131467 dualbound = 2177575.990791, lowerbound=1124394.990791, norm of subgrad 43.160724 stepsize= 1.000000 +dualbound = 2177796.973578, lowerbound=1120429.973578, norm of subgrad 1059.198741 dualbound = 2177796.973578, lowerbound=1120429.973578, norm of subgrad 41.145872 stepsize= 1.000000 +dualbound = 2178080.144916, lowerbound=1123210.144916, norm of subgrad 1060.498065 dualbound = 2178080.144916, lowerbound=1123210.144916, norm of subgrad 41.583306 stepsize= 1.000000 +dualbound = 2178296.938199, lowerbound=1121320.938199, norm of subgrad 1059.631511 dualbound = 2178296.938199, lowerbound=1121320.938199, norm of subgrad 41.410063 stepsize= 1.000000 +dualbound = 2178520.038829, lowerbound=1125842.038829, norm of subgrad 1061.761291 dualbound = 2178520.038829, lowerbound=1125842.038829, norm of subgrad 41.449977 stepsize= 1.000000 +dualbound = 2178765.833897, lowerbound=1118364.833897, norm of subgrad 1058.258869 dualbound = 2178765.833897, lowerbound=1118364.833897, norm of subgrad 42.341411 stepsize= 1.000000 +dualbound = 2179000.494042, lowerbound=1126694.494042, norm of subgrad 1062.190893 dualbound = 2179000.494042, lowerbound=1126694.494042, norm of subgrad 42.304375 stepsize= 1.000000 +dualbound = 2179216.497010, lowerbound=1122723.497010, norm of subgrad 1060.340746 dualbound = 2179216.497010, lowerbound=1122723.497010, norm of subgrad 42.602852 stepsize= 1.000000 +dualbound = 2179462.819239, lowerbound=1122188.819239, norm of subgrad 1060.040008 dualbound = 2179462.819239, lowerbound=1122188.819239, norm of subgrad 41.741134 stepsize= 1.000000 +dualbound = 2179731.228571, lowerbound=1118274.228571, norm of subgrad 1058.163139 dualbound = 2179731.228571, lowerbound=1118274.228571, norm of subgrad 41.272380 stepsize= 1.000000 +dualbound = 2179991.794061, lowerbound=1124434.794061, norm of subgrad 1061.067290 dualbound = 2179991.794061, lowerbound=1124434.794061, norm of subgrad 41.104324 stepsize= 1.000000 +dualbound = 2180204.246078, lowerbound=1122319.246078, norm of subgrad 1060.093980 dualbound = 2180204.246078, lowerbound=1122319.246078, norm of subgrad 41.139422 stepsize= 1.000000 +dualbound = 2180456.816756, lowerbound=1125626.816756, norm of subgrad 1061.628851 dualbound = 2180456.816756, lowerbound=1125626.816756, norm of subgrad 41.006959 stepsize= 1.000000 +dualbound = 2180687.726546, lowerbound=1119052.726546, norm of subgrad 1058.590443 dualbound = 2180687.726546, lowerbound=1119052.726546, norm of subgrad 42.330955 stepsize= 1.000000 +dualbound = 2180923.646273, lowerbound=1124988.646273, norm of subgrad 1061.375827 dualbound = 2180923.646273, lowerbound=1124988.646273, norm of subgrad 42.022848 stepsize= 1.000000 +dualbound = 2181149.928635, lowerbound=1116552.928635, norm of subgrad 1057.401971 dualbound = 2181149.928635, lowerbound=1116552.928635, norm of subgrad 42.098484 stepsize= 1.000000 +dualbound = 2181407.432936, lowerbound=1123158.432936, norm of subgrad 1060.515173 dualbound = 2181407.432936, lowerbound=1123158.432936, norm of subgrad 42.326166 stepsize= 1.000000 +dualbound = 2181623.420787, lowerbound=1124601.420787, norm of subgrad 1061.207530 dualbound = 2181623.420787, lowerbound=1124601.420787, norm of subgrad 42.142471 stepsize= 1.000000 +dualbound = 2181879.028302, lowerbound=1121527.028302, norm of subgrad 1059.724506 dualbound = 2181879.028302, lowerbound=1121527.028302, norm of subgrad 41.768499 stepsize= 1.000000 +dualbound = 2182134.819340, lowerbound=1119783.819340, norm of subgrad 1058.885650 dualbound = 2182134.819340, lowerbound=1119783.819340, norm of subgrad 41.361710 stepsize= 1.000000 +dualbound = 2182393.059503, lowerbound=1122206.059503, norm of subgrad 1060.030216 dualbound = 2182393.059503, lowerbound=1122206.059503, norm of subgrad 41.427529 stepsize= 1.000000 +dualbound = 2182620.085541, lowerbound=1120961.085541, norm of subgrad 1059.452729 dualbound = 2182620.085541, lowerbound=1120961.085541, norm of subgrad 41.304068 stepsize= 1.000000 +dualbound = 2182860.036502, lowerbound=1124566.036502, norm of subgrad 1061.155048 dualbound = 2182860.036502, lowerbound=1124566.036502, norm of subgrad 41.520488 stepsize= 1.000000 +dualbound = 2183100.041704, lowerbound=1120752.041704, norm of subgrad 1059.376723 dualbound = 2183100.041704, lowerbound=1120752.041704, norm of subgrad 42.035761 stepsize= 1.000000 +dualbound = 2183323.436437, lowerbound=1125043.436437, norm of subgrad 1061.384208 dualbound = 2183323.436437, lowerbound=1125043.436437, norm of subgrad 41.429395 stepsize= 1.000000 +dualbound = 2183577.264050, lowerbound=1122803.264050, norm of subgrad 1060.322245 dualbound = 2183577.264050, lowerbound=1122803.264050, norm of subgrad 41.639256 stepsize= 1.000000 +dualbound = 2183805.286462, lowerbound=1122696.286462, norm of subgrad 1060.291133 dualbound = 2183805.286462, lowerbound=1122696.286462, norm of subgrad 41.821315 stepsize= 1.000000 +dualbound = 2184052.331987, lowerbound=1119252.331987, norm of subgrad 1058.682829 dualbound = 2184052.331987, lowerbound=1119252.331987, norm of subgrad 42.474057 stepsize= 1.000000 +dualbound = 2184272.100931, lowerbound=1122076.100931, norm of subgrad 1060.001463 dualbound = 2184272.100931, lowerbound=1122076.100931, norm of subgrad 41.794365 stepsize= 1.000000 +dualbound = 2184508.946763, lowerbound=1121686.946763, norm of subgrad 1059.811279 dualbound = 2184508.946763, lowerbound=1121686.946763, norm of subgrad 41.831159 stepsize= 1.000000 +dualbound = 2184761.102639, lowerbound=1121569.102639, norm of subgrad 1059.776440 dualbound = 2184761.102639, lowerbound=1121569.102639, norm of subgrad 42.534173 stepsize= 1.000000 +dualbound = 2184969.441403, lowerbound=1126062.441402, norm of subgrad 1061.898037 dualbound = 2184969.441403, lowerbound=1126062.441402, norm of subgrad 42.111029 stepsize= 1.000000 +dualbound = 2185235.421489, lowerbound=1122715.421489, norm of subgrad 1060.297327 dualbound = 2185235.421489, lowerbound=1122715.421489, norm of subgrad 42.201660 stepsize= 1.000000 +dualbound = 2185479.241258, lowerbound=1123572.241258, norm of subgrad 1060.679142 dualbound = 2185479.241258, lowerbound=1123572.241258, norm of subgrad 41.374144 stepsize= 1.000000 +dualbound = 2185735.176102, lowerbound=1123919.176102, norm of subgrad 1060.846443 dualbound = 2185735.176102, lowerbound=1123919.176102, norm of subgrad 41.616521 stepsize= 1.000000 +dualbound = 2185939.904333, lowerbound=1118199.904333, norm of subgrad 1058.190864 dualbound = 2185939.904333, lowerbound=1118199.904333, norm of subgrad 42.103779 stepsize= 1.000000 +dualbound = 2186202.372331, lowerbound=1124272.372331, norm of subgrad 1061.026094 dualbound = 2186202.372331, lowerbound=1124272.372331, norm of subgrad 42.029371 stepsize= 1.000000 +dualbound = 2186427.123386, lowerbound=1121757.123386, norm of subgrad 1059.837782 dualbound = 2186427.123386, lowerbound=1121757.123386, norm of subgrad 41.518081 stepsize= 1.000000 +dualbound = 2186674.286401, lowerbound=1120106.286401, norm of subgrad 1059.067650 dualbound = 2186674.286401, lowerbound=1120106.286401, norm of subgrad 42.013843 stepsize= 1.000000 +dualbound = 2186909.159957, lowerbound=1125620.159957, norm of subgrad 1061.674225 dualbound = 2186909.159957, lowerbound=1125620.159957, norm of subgrad 42.034195 stepsize= 1.000000 +dualbound = 2187143.120015, lowerbound=1122037.120015, norm of subgrad 1060.001000 dualbound = 2187143.120015, lowerbound=1122037.120015, norm of subgrad 42.414149 stepsize= 1.000000 +dualbound = 2187376.464134, lowerbound=1123596.464134, norm of subgrad 1060.732984 dualbound = 2187376.464134, lowerbound=1123596.464134, norm of subgrad 42.324273 stepsize= 1.000000 +dualbound = 2187628.868057, lowerbound=1122595.868057, norm of subgrad 1060.248965 dualbound = 2187628.868057, lowerbound=1122595.868057, norm of subgrad 42.242205 stepsize= 1.000000 +dualbound = 2187885.591590, lowerbound=1122867.591590, norm of subgrad 1060.365310 dualbound = 2187885.591590, lowerbound=1122867.591590, norm of subgrad 41.996709 stepsize= 1.000000 +dualbound = 2188112.931459, lowerbound=1122508.931459, norm of subgrad 1060.182971 dualbound = 2188112.931459, lowerbound=1122508.931459, norm of subgrad 41.307867 stepsize= 1.000000 +dualbound = 2188373.302415, lowerbound=1119497.302415, norm of subgrad 1058.771128 dualbound = 2188373.302415, lowerbound=1119497.302415, norm of subgrad 41.944856 stepsize= 1.000000 +dualbound = 2188585.769934, lowerbound=1122549.769934, norm of subgrad 1060.208833 dualbound = 2188585.769934, lowerbound=1122549.769934, norm of subgrad 41.297306 stepsize= 1.000000 +dualbound = 2188839.016204, lowerbound=1127166.016204, norm of subgrad 1062.388825 dualbound = 2188839.016204, lowerbound=1127166.016204, norm of subgrad 41.919521 stepsize= 1.000000 +dualbound = 2189058.986190, lowerbound=1123564.986190, norm of subgrad 1060.709190 dualbound = 2189058.986190, lowerbound=1123564.986190, norm of subgrad 41.940076 stepsize= 1.000000 +dualbound = 2189304.512222, lowerbound=1121713.512222, norm of subgrad 1059.830889 dualbound = 2189304.512222, lowerbound=1121713.512222, norm of subgrad 42.113252 stepsize= 1.000000 +dualbound = 2189552.822805, lowerbound=1121253.822805, norm of subgrad 1059.591819 dualbound = 2189552.822805, lowerbound=1121253.822805, norm of subgrad 41.584980 stepsize= 1.000000 +dualbound = 2189803.439890, lowerbound=1125881.439890, norm of subgrad 1061.783142 dualbound = 2189803.439890, lowerbound=1125881.439890, norm of subgrad 41.864270 stepsize= 1.000000 +dualbound = 2189999.662313, lowerbound=1121150.662313, norm of subgrad 1059.536060 dualbound = 2189999.662313, lowerbound=1121150.662313, norm of subgrad 40.770362 stepsize= 1.000000 +dualbound = 2190262.846177, lowerbound=1123118.846177, norm of subgrad 1060.499338 dualbound = 2190262.846177, lowerbound=1123118.846177, norm of subgrad 42.463912 stepsize= 1.000000 +dualbound = 2190470.841658, lowerbound=1124154.841658, norm of subgrad 1060.988144 dualbound = 2190470.841658, lowerbound=1124154.841658, norm of subgrad 41.820993 stepsize= 1.000000 +dualbound = 2190732.551608, lowerbound=1122332.551608, norm of subgrad 1060.119593 dualbound = 2190732.551608, lowerbound=1122332.551608, norm of subgrad 42.222150 stepsize= 1.000000 +dualbound = 2190968.483292, lowerbound=1123114.483292, norm of subgrad 1060.475593 dualbound = 2190968.483292, lowerbound=1123114.483292, norm of subgrad 41.592447 stepsize= 1.000000 +dualbound = 2191218.681369, lowerbound=1123748.681369, norm of subgrad 1060.782108 dualbound = 2191218.681369, lowerbound=1123748.681369, norm of subgrad 41.954715 stepsize= 1.000000 +dualbound = 2191439.645315, lowerbound=1121243.645315, norm of subgrad 1059.595038 dualbound = 2191439.645315, lowerbound=1121243.645315, norm of subgrad 41.460390 stepsize= 1.000000 +dualbound = 2191696.609379, lowerbound=1122664.609379, norm of subgrad 1060.242241 dualbound = 2191696.609379, lowerbound=1122664.609379, norm of subgrad 41.303318 stepsize= 1.000000 +dualbound = 2191934.269731, lowerbound=1121029.269731, norm of subgrad 1059.535403 dualbound = 2191934.269731, lowerbound=1121029.269731, norm of subgrad 42.704336 stepsize= 1.000000 +dualbound = 2192136.789592, lowerbound=1124724.789592, norm of subgrad 1061.293922 dualbound = 2192136.789592, lowerbound=1124724.789592, norm of subgrad 42.690981 stepsize= 1.000000 +dualbound = 2192362.222128, lowerbound=1120364.222128, norm of subgrad 1059.217741 dualbound = 2192362.222128, lowerbound=1120364.222128, norm of subgrad 42.466840 stepsize= 1.000000 +dualbound = 2192628.884611, lowerbound=1122084.884611, norm of subgrad 1060.005134 dualbound = 2192628.884611, lowerbound=1122084.884611, norm of subgrad 42.339845 stepsize= 1.000000 +dualbound = 2192881.376862, lowerbound=1120812.376862, norm of subgrad 1059.378769 dualbound = 2192881.376862, lowerbound=1120812.376862, norm of subgrad 41.514964 stepsize= 1.000000 +dualbound = 2193127.405474, lowerbound=1125461.405474, norm of subgrad 1061.582972 dualbound = 2193127.405474, lowerbound=1125461.405474, norm of subgrad 41.749594 stepsize= 1.000000 +dualbound = 2193348.751692, lowerbound=1123365.751692, norm of subgrad 1060.611499 dualbound = 2193348.751692, lowerbound=1123365.751692, norm of subgrad 41.861035 stepsize= 1.000000 +dualbound = 2193580.131023, lowerbound=1124862.131023, norm of subgrad 1061.321408 dualbound = 2193580.131023, lowerbound=1124862.131023, norm of subgrad 42.099636 stepsize= 1.000000 +dualbound = 2193844.417379, lowerbound=1119900.417379, norm of subgrad 1058.960064 dualbound = 2193844.417379, lowerbound=1119900.417379, norm of subgrad 41.955767 stepsize= 1.000000 +dualbound = 2194068.339723, lowerbound=1128996.339723, norm of subgrad 1063.259300 dualbound = 2194068.339723, lowerbound=1128996.339723, norm of subgrad 41.808161 stepsize= 1.000000 +dualbound = 2194302.344620, lowerbound=1123773.344620, norm of subgrad 1060.772523 dualbound = 2194302.344620, lowerbound=1123773.344620, norm of subgrad 41.218987 stepsize= 1.000000 +dualbound = 2194546.689176, lowerbound=1118852.689176, norm of subgrad 1058.455804 dualbound = 2194546.689176, lowerbound=1118852.689176, norm of subgrad 41.477036 stepsize= 1.000000 +dualbound = 2194779.584790, lowerbound=1125401.584790, norm of subgrad 1061.594831 dualbound = 2194779.584790, lowerbound=1125401.584790, norm of subgrad 42.601592 stepsize= 1.000000 +dualbound = 2195002.810373, lowerbound=1123387.810373, norm of subgrad 1060.633683 dualbound = 2195002.810373, lowerbound=1123387.810373, norm of subgrad 42.180868 stepsize= 1.000000 +dualbound = 2195267.611490, lowerbound=1120119.611490, norm of subgrad 1059.078662 dualbound = 2195267.611490, lowerbound=1120119.611490, norm of subgrad 42.341482 stepsize= 1.000000 +dualbound = 2195499.524135, lowerbound=1124931.524135, norm of subgrad 1061.365406 dualbound = 2195499.524135, lowerbound=1124931.524135, norm of subgrad 42.390006 stepsize= 1.000000 +dualbound = 2195704.371616, lowerbound=1124633.371616, norm of subgrad 1061.214574 dualbound = 2195704.371616, lowerbound=1124633.371616, norm of subgrad 41.807266 stepsize= 1.000000 +dualbound = 2195988.387565, lowerbound=1122123.387565, norm of subgrad 1060.006787 dualbound = 2195988.387565, lowerbound=1122123.387565, norm of subgrad 42.130938 stepsize= 1.000000 +dualbound = 2196212.765497, lowerbound=1122617.765497, norm of subgrad 1060.250803 dualbound = 2196212.765497, lowerbound=1122617.765497, norm of subgrad 41.693860 stepsize= 1.000000 +dualbound = 2196434.138684, lowerbound=1125314.138684, norm of subgrad 1061.528209 dualbound = 2196434.138684, lowerbound=1125314.138684, norm of subgrad 41.825509 stepsize= 1.000000 +dualbound = 2196680.716146, lowerbound=1120567.716146, norm of subgrad 1059.277922 dualbound = 2196680.716146, lowerbound=1120567.716146, norm of subgrad 41.815995 stepsize= 1.000000 +dualbound = 2196929.919157, lowerbound=1125532.919157, norm of subgrad 1061.657157 dualbound = 2196929.919157, lowerbound=1125532.919157, norm of subgrad 42.804241 stepsize= 1.000000 +dualbound = 2197151.579896, lowerbound=1122090.579896, norm of subgrad 1059.998858 dualbound = 2197151.579896, lowerbound=1122090.579896, norm of subgrad 41.577166 stepsize= 1.000000 +dualbound = 2197414.744066, lowerbound=1127478.744066, norm of subgrad 1062.569877 dualbound = 2197414.744066, lowerbound=1127478.744066, norm of subgrad 42.885477 stepsize= 1.000000 +dualbound = 2197630.246743, lowerbound=1122585.246743, norm of subgrad 1060.218018 dualbound = 2197630.246743, lowerbound=1122585.246743, norm of subgrad 41.140037 stepsize= 1.000000 +dualbound = 2197882.587094, lowerbound=1123274.587094, norm of subgrad 1060.548720 dualbound = 2197882.587094, lowerbound=1123274.587094, norm of subgrad 41.729370 stepsize= 1.000000 +dualbound = 2198132.099848, lowerbound=1124117.099848, norm of subgrad 1060.942081 dualbound = 2198132.099848, lowerbound=1124117.099848, norm of subgrad 41.599432 stepsize= 1.000000 +dualbound = 2198365.547614, lowerbound=1122023.547614, norm of subgrad 1059.958276 dualbound = 2198365.547614, lowerbound=1122023.547614, norm of subgrad 41.490333 stepsize= 1.000000 +dualbound = 2198597.150444, lowerbound=1121336.150444, norm of subgrad 1059.650013 dualbound = 2198597.150444, lowerbound=1121336.150444, norm of subgrad 41.876041 stepsize= 1.000000 +dualbound = 2198827.782655, lowerbound=1127346.782655, norm of subgrad 1062.471544 dualbound = 2198827.782655, lowerbound=1127346.782655, norm of subgrad 41.588847 stepsize= 1.000000 +dualbound = 2199066.536021, lowerbound=1121521.536021, norm of subgrad 1059.729464 dualbound = 2199066.536021, lowerbound=1121521.536021, norm of subgrad 41.758273 stepsize= 1.000000 +dualbound = 2199291.265076, lowerbound=1125701.265076, norm of subgrad 1061.720427 dualbound = 2199291.265076, lowerbound=1125701.265076, norm of subgrad 42.115663 stepsize= 1.000000 +dualbound = 2199538.796342, lowerbound=1121769.796342, norm of subgrad 1059.842345 dualbound = 2199538.796342, lowerbound=1121769.796342, norm of subgrad 41.755614 stepsize= 1.000000 +dualbound = 2199771.509256, lowerbound=1121818.509256, norm of subgrad 1059.880422 dualbound = 2199771.509256, lowerbound=1121818.509256, norm of subgrad 41.960850 stepsize= 1.000000 +dualbound = 2199996.431887, lowerbound=1123519.431887, norm of subgrad 1060.713643 dualbound = 2199996.431887, lowerbound=1123519.431887, norm of subgrad 42.648829 stepsize= 1.000000 +dualbound = 2200242.090301, lowerbound=1126138.090301, norm of subgrad 1061.891280 dualbound = 2200242.090301, lowerbound=1126138.090301, norm of subgrad 41.480820 stepsize= 1.000000 +dualbound = 2200489.645476, lowerbound=1123599.645476, norm of subgrad 1060.721285 dualbound = 2200489.645476, lowerbound=1123599.645476, norm of subgrad 42.161062 stepsize= 1.000000 +dualbound = 2200729.410890, lowerbound=1128002.410890, norm of subgrad 1062.791800 dualbound = 2200729.410890, lowerbound=1128002.410890, norm of subgrad 41.997207 stepsize= 1.000000 +dualbound = 2200955.381905, lowerbound=1120533.381905, norm of subgrad 1059.309389 dualbound = 2200955.381905, lowerbound=1120533.381905, norm of subgrad 42.766471 stepsize= 1.000000 +dualbound = 2201175.365915, lowerbound=1124167.365915, norm of subgrad 1060.986977 dualbound = 2201175.365915, lowerbound=1124167.365915, norm of subgrad 41.784973 stepsize= 1.000000 +dualbound = 2201453.522330, lowerbound=1121187.522330, norm of subgrad 1059.570442 dualbound = 2201453.522330, lowerbound=1121187.522330, norm of subgrad 42.191900 stepsize= 1.000000 +dualbound = 2201702.313904, lowerbound=1123194.313904, norm of subgrad 1060.513231 dualbound = 2201702.313904, lowerbound=1123194.313904, norm of subgrad 41.746755 stepsize= 1.000000 +dualbound = 2201932.465624, lowerbound=1124491.465624, norm of subgrad 1061.154779 dualbound = 2201932.465624, lowerbound=1124491.465624, norm of subgrad 42.286543 stepsize= 1.000000 +dualbound = 2202136.269088, lowerbound=1121854.269088, norm of subgrad 1059.927955 dualbound = 2202136.269088, lowerbound=1121854.269088, norm of subgrad 42.388719 stepsize= 1.000000 +dualbound = 2202388.542143, lowerbound=1124361.542143, norm of subgrad 1061.060574 dualbound = 2202388.542143, lowerbound=1124361.542143, norm of subgrad 41.716580 stepsize= 1.000000 +dualbound = 2202657.156001, lowerbound=1121508.156001, norm of subgrad 1059.742495 dualbound = 2202657.156001, lowerbound=1121508.156001, norm of subgrad 42.598285 stepsize= 1.000000 +dualbound = 2202860.577942, lowerbound=1128337.577941, norm of subgrad 1062.961231 dualbound = 2202860.577942, lowerbound=1128337.577941, norm of subgrad 41.861939 stepsize= 1.000000 +dualbound = 2203108.516735, lowerbound=1125029.516735, norm of subgrad 1061.416750 dualbound = 2203108.516735, lowerbound=1125029.516735, norm of subgrad 42.707596 stepsize= 1.000000 +dualbound = 2203338.801119, lowerbound=1124474.801119, norm of subgrad 1061.104048 dualbound = 2203338.801119, lowerbound=1124474.801119, norm of subgrad 41.198111 stepsize= 1.000000 +dualbound = 2203584.042536, lowerbound=1123084.042536, norm of subgrad 1060.452754 dualbound = 2203584.042536, lowerbound=1123084.042536, norm of subgrad 41.487847 stepsize= 1.000000 +dualbound = 2203824.964341, lowerbound=1123187.964341, norm of subgrad 1060.489021 dualbound = 2203824.964341, lowerbound=1123187.964341, norm of subgrad 41.108659 stepsize= 1.000000 +dualbound = 2204076.366927, lowerbound=1123737.366927, norm of subgrad 1060.779132 dualbound = 2204076.366927, lowerbound=1123737.366927, norm of subgrad 42.028592 stepsize= 1.000000 +dualbound = 2204263.617766, lowerbound=1122686.617766, norm of subgrad 1060.296476 dualbound = 2204263.617766, lowerbound=1122686.617766, norm of subgrad 41.584262 stepsize= 1.000000 +dualbound = 2204517.998215, lowerbound=1123485.998215, norm of subgrad 1060.644614 dualbound = 2204517.998215, lowerbound=1123485.998215, norm of subgrad 41.657898 stepsize= 1.000000 +dualbound = 2204751.148776, lowerbound=1125565.148776, norm of subgrad 1061.663859 dualbound = 2204751.148776, lowerbound=1125565.148776, norm of subgrad 42.404605 stepsize= 1.000000 +dualbound = 2204975.609582, lowerbound=1123113.609582, norm of subgrad 1060.492154 dualbound = 2204975.609582, lowerbound=1123113.609582, norm of subgrad 41.886284 stepsize= 1.000000 +dualbound = 2205229.836851, lowerbound=1126922.836851, norm of subgrad 1062.272487 dualbound = 2205229.836851, lowerbound=1126922.836851, norm of subgrad 41.883496 stepsize= 1.000000 +dualbound = 2205481.098114, lowerbound=1126332.098114, norm of subgrad 1062.018878 dualbound = 2205481.098114, lowerbound=1126332.098114, norm of subgrad 42.464824 stepsize= 1.000000 +dualbound = 2205695.044425, lowerbound=1121534.044425, norm of subgrad 1059.745273 dualbound = 2205695.044425, lowerbound=1121534.044425, norm of subgrad 41.712664 stepsize= 1.000000 +dualbound = 2205948.011375, lowerbound=1126711.011375, norm of subgrad 1062.167130 dualbound = 2205948.011375, lowerbound=1126711.011375, norm of subgrad 41.724896 stepsize= 1.000000 +dualbound = 2206173.211482, lowerbound=1124492.211482, norm of subgrad 1061.125446 dualbound = 2206173.211482, lowerbound=1124492.211482, norm of subgrad 41.475295 stepsize= 1.000000 +dualbound = 2206428.893064, lowerbound=1123974.893064, norm of subgrad 1060.875531 dualbound = 2206428.893064, lowerbound=1123974.893064, norm of subgrad 41.685508 stepsize= 1.000000 +dualbound = 2206658.383166, lowerbound=1124816.383166, norm of subgrad 1061.273472 dualbound = 2206658.383166, lowerbound=1124816.383166, norm of subgrad 41.406402 stepsize= 1.000000 +dualbound = 2206893.849985, lowerbound=1121519.849985, norm of subgrad 1059.733858 dualbound = 2206893.849985, lowerbound=1121519.849985, norm of subgrad 41.850529 stepsize= 1.000000 +dualbound = 2207100.191032, lowerbound=1128902.191032, norm of subgrad 1063.224901 dualbound = 2207100.191032, lowerbound=1128902.191032, norm of subgrad 41.849027 stepsize= 1.000000 +dualbound = 2207354.753329, lowerbound=1123624.753329, norm of subgrad 1060.742548 dualbound = 2207354.753329, lowerbound=1123624.753329, norm of subgrad 42.480140 stepsize= 1.000000 +dualbound = 2207562.856472, lowerbound=1124665.856472, norm of subgrad 1061.213389 dualbound = 2207562.856472, lowerbound=1124665.856472, norm of subgrad 41.425875 stepsize= 1.000000 +dualbound = 2207817.488128, lowerbound=1127360.488128, norm of subgrad 1062.489288 dualbound = 2207817.488128, lowerbound=1127360.488128, norm of subgrad 42.161969 stepsize= 1.000000 +dualbound = 2208052.998735, lowerbound=1123041.998735, norm of subgrad 1060.456976 dualbound = 2208052.998735, lowerbound=1123041.998735, norm of subgrad 41.982265 stepsize= 1.000000 +dualbound = 2208286.857198, lowerbound=1124497.857198, norm of subgrad 1061.131404 dualbound = 2208286.857198, lowerbound=1124497.857198, norm of subgrad 41.663635 stepsize= 1.000000 +dualbound = 2208543.901102, lowerbound=1123472.901102, norm of subgrad 1060.650226 dualbound = 2208543.901102, lowerbound=1123472.901102, norm of subgrad 41.988616 stepsize= 1.000000 +dualbound = 2208750.798423, lowerbound=1125045.798423, norm of subgrad 1061.389089 dualbound = 2208750.798423, lowerbound=1125045.798423, norm of subgrad 41.326714 stepsize= 1.000000 +dualbound = 2208992.942202, lowerbound=1125922.942202, norm of subgrad 1061.832351 dualbound = 2208992.942202, lowerbound=1125922.942202, norm of subgrad 42.510514 stepsize= 1.000000 +dualbound = 2209227.265887, lowerbound=1123513.265887, norm of subgrad 1060.673025 dualbound = 2209227.265887, lowerbound=1123513.265887, norm of subgrad 41.812961 stepsize= 1.000000 +dualbound = 2209472.942375, lowerbound=1126109.942375, norm of subgrad 1061.878968 dualbound = 2209472.942375, lowerbound=1126109.942375, norm of subgrad 41.505138 stepsize= 1.000000 +dualbound = 2209723.118045, lowerbound=1123195.118045, norm of subgrad 1060.514553 dualbound = 2209723.118045, lowerbound=1123195.118045, norm of subgrad 41.787267 stepsize= 1.000000 +dualbound = 2209917.038171, lowerbound=1125580.038171, norm of subgrad 1061.633665 dualbound = 2209917.038171, lowerbound=1125580.038171, norm of subgrad 40.986829 stepsize= 1.000000 +dualbound = 2210200.726830, lowerbound=1121442.726830, norm of subgrad 1059.707850 dualbound = 2210200.726830, lowerbound=1121442.726830, norm of subgrad 42.681245 stepsize= 1.000000 +dualbound = 2210403.004618, lowerbound=1129241.004618, norm of subgrad 1063.364474 dualbound = 2210403.004618, lowerbound=1129241.004618, norm of subgrad 41.295009 stepsize= 1.000000 +dualbound = 2210652.420950, lowerbound=1122777.420950, norm of subgrad 1060.323734 dualbound = 2210652.420950, lowerbound=1122777.420950, norm of subgrad 41.933475 stepsize= 1.000000 +dualbound = 2210886.376342, lowerbound=1122933.376342, norm of subgrad 1060.382184 dualbound = 2210886.376342, lowerbound=1122933.376342, norm of subgrad 41.363697 stepsize= 1.000000 +dualbound = 2211133.573192, lowerbound=1128486.573192, norm of subgrad 1062.995096 dualbound = 2211133.573192, lowerbound=1128486.573192, norm of subgrad 41.463199 stepsize= 1.000000 +dualbound = 2211359.013415, lowerbound=1122364.013415, norm of subgrad 1060.144336 dualbound = 2211359.013415, lowerbound=1122364.013415, norm of subgrad 42.040935 stepsize= 1.000000 +dualbound = 2211565.320973, lowerbound=1125905.320973, norm of subgrad 1061.816519 dualbound = 2211565.320973, lowerbound=1125905.320973, norm of subgrad 41.896391 stepsize= 1.000000 +dualbound = 2211802.208985, lowerbound=1125519.208985, norm of subgrad 1061.645048 dualbound = 2211802.208985, lowerbound=1125519.208985, norm of subgrad 42.519266 stepsize= 1.000000 +dualbound = 2212034.816829, lowerbound=1128429.816829, norm of subgrad 1063.023902 dualbound = 2212034.816829, lowerbound=1128429.816829, norm of subgrad 42.692011 stepsize= 1.000000 +dualbound = 2212262.077145, lowerbound=1122157.077145, norm of subgrad 1060.071732 dualbound = 2212262.077145, lowerbound=1122157.077145, norm of subgrad 42.687941 stepsize= 1.000000 +dualbound = 2212495.204906, lowerbound=1122448.204906, norm of subgrad 1060.182628 dualbound = 2212495.204906, lowerbound=1122448.204906, norm of subgrad 42.096648 stepsize= 1.000000 +dualbound = 2212734.949360, lowerbound=1128244.949359, norm of subgrad 1062.918600 dualbound = 2212734.949360, lowerbound=1128244.949359, norm of subgrad 42.317189 stepsize= 1.000000 +dualbound = 2212980.810245, lowerbound=1125140.810245, norm of subgrad 1061.440912 dualbound = 2212980.810245, lowerbound=1125140.810245, norm of subgrad 41.974527 stepsize= 1.000000 +dualbound = 2213224.209438, lowerbound=1127146.209438, norm of subgrad 1062.396917 dualbound = 2213224.209438, lowerbound=1127146.209438, norm of subgrad 42.242149 stepsize= 1.000000 +dualbound = 2213453.548237, lowerbound=1126387.548237, norm of subgrad 1062.054400 dualbound = 2213453.548237, lowerbound=1126387.548237, norm of subgrad 42.442182 stepsize= 1.000000 +dualbound = 2213675.092965, lowerbound=1125604.092965, norm of subgrad 1061.670897 dualbound = 2213675.092965, lowerbound=1125604.092965, norm of subgrad 41.982672 stepsize= 1.000000 +dualbound = 2213898.134627, lowerbound=1125976.134627, norm of subgrad 1061.845156 dualbound = 2213898.134627, lowerbound=1125976.134627, norm of subgrad 41.976680 stepsize= 1.000000 +dualbound = 2214148.442266, lowerbound=1120675.442266, norm of subgrad 1059.330658 dualbound = 2214148.442266, lowerbound=1120675.442266, norm of subgrad 41.908324 stepsize= 1.000000 +dualbound = 2214394.633433, lowerbound=1127006.633433, norm of subgrad 1062.341110 dualbound = 2214394.633433, lowerbound=1127006.633433, norm of subgrad 42.522831 stepsize= 1.000000 +dualbound = 2214603.635315, lowerbound=1125752.635315, norm of subgrad 1061.721543 dualbound = 2214603.635315, lowerbound=1125752.635315, norm of subgrad 41.340076 stepsize= 1.000000 +dualbound = 2214877.829416, lowerbound=1129227.829416, norm of subgrad 1063.369094 dualbound = 2214877.829416, lowerbound=1129227.829416, norm of subgrad 42.428694 stepsize= 1.000000 +dualbound = 2215072.685319, lowerbound=1127757.685319, norm of subgrad 1062.687012 dualbound = 2215072.685319, lowerbound=1127757.685319, norm of subgrad 41.723565 stepsize= 1.000000 +dualbound = 2215314.856457, lowerbound=1124801.856457, norm of subgrad 1061.299607 dualbound = 2215314.856457, lowerbound=1124801.856457, norm of subgrad 42.393055 stepsize= 1.000000 +dualbound = 2215551.941702, lowerbound=1125964.941702, norm of subgrad 1061.816341 dualbound = 2215551.941702, lowerbound=1125964.941702, norm of subgrad 41.546182 stepsize= 1.000000 +dualbound = 2215793.352150, lowerbound=1122143.352150, norm of subgrad 1060.018562 dualbound = 2215793.352150, lowerbound=1122143.352150, norm of subgrad 41.682256 stepsize= 1.000000 +dualbound = 2216021.047517, lowerbound=1126066.047517, norm of subgrad 1061.881372 dualbound = 2216021.047517, lowerbound=1126066.047517, norm of subgrad 41.877146 stepsize= 1.000000 +dualbound = 2216251.248753, lowerbound=1126458.248753, norm of subgrad 1062.087213 dualbound = 2216251.248753, lowerbound=1126458.248753, norm of subgrad 42.440561 stepsize= 1.000000 +dualbound = 2216450.737925, lowerbound=1127310.737925, norm of subgrad 1062.502583 dualbound = 2216450.737925, lowerbound=1127310.737925, norm of subgrad 42.432171 stepsize= 1.000000 +dualbound = 2216688.884849, lowerbound=1126146.884849, norm of subgrad 1061.947685 dualbound = 2216688.884849, lowerbound=1126146.884849, norm of subgrad 42.710033 stepsize= 1.000000 +dualbound = 2216955.113375, lowerbound=1122236.113375, norm of subgrad 1060.096276 dualbound = 2216955.113375, lowerbound=1122236.113375, norm of subgrad 42.827894 stepsize= 1.000000 +dualbound = 2217172.681286, lowerbound=1131689.681286, norm of subgrad 1064.535899 dualbound = 2217172.681286, lowerbound=1131689.681286, norm of subgrad 42.006760 stepsize= 1.000000 +dualbound = 2217410.518300, lowerbound=1123393.518300, norm of subgrad 1060.667016 dualbound = 2217410.518300, lowerbound=1123393.518300, norm of subgrad 43.114232 stepsize= 1.000000 +dualbound = 2217647.002163, lowerbound=1125198.002163, norm of subgrad 1061.481042 dualbound = 2217647.002163, lowerbound=1125198.002163, norm of subgrad 42.195780 stepsize= 1.000000 +dualbound = 2217910.018403, lowerbound=1125805.018403, norm of subgrad 1061.710892 dualbound = 2217910.018403, lowerbound=1125805.018403, norm of subgrad 41.085475 stepsize= 1.000000 +dualbound = 2218149.127508, lowerbound=1124802.127508, norm of subgrad 1061.243670 dualbound = 2218149.127508, lowerbound=1124802.127508, norm of subgrad 40.928097 stepsize= 1.000000 +dualbound = 2218388.784782, lowerbound=1128352.784782, norm of subgrad 1062.955683 dualbound = 2218388.784782, lowerbound=1128352.784782, norm of subgrad 41.972101 stepsize= 1.000000 +dualbound = 2218562.024083, lowerbound=1126529.024083, norm of subgrad 1062.134184 dualbound = 2218562.024083, lowerbound=1126529.024083, norm of subgrad 42.109848 stepsize= 1.000000 +dualbound = 2218813.133693, lowerbound=1126667.133693, norm of subgrad 1062.196372 dualbound = 2218813.133693, lowerbound=1126667.133693, norm of subgrad 42.954739 stepsize= 1.000000 +dualbound = 2219027.805295, lowerbound=1127229.805295, norm of subgrad 1062.466378 dualbound = 2219027.805295, lowerbound=1127229.805295, norm of subgrad 42.657609 stepsize= 1.000000 +dualbound = 2219256.953585, lowerbound=1124299.953585, norm of subgrad 1061.017414 dualbound = 2219256.953585, lowerbound=1124299.953585, norm of subgrad 41.074911 stepsize= 1.000000 +dualbound = 2219552.355960, lowerbound=1125334.355960, norm of subgrad 1061.526898 dualbound = 2219552.355960, lowerbound=1125334.355960, norm of subgrad 42.431149 stepsize= 1.000000 +dualbound = 2219752.794472, lowerbound=1124271.794472, norm of subgrad 1061.014512 dualbound = 2219752.794472, lowerbound=1124271.794472, norm of subgrad 40.993152 stepsize= 1.000000 +dualbound = 2220004.562466, lowerbound=1125478.562466, norm of subgrad 1061.603298 dualbound = 2220004.562466, lowerbound=1125478.562466, norm of subgrad 42.127995 stepsize= 1.000000 +dualbound = 2220232.128716, lowerbound=1130890.128716, norm of subgrad 1064.163582 dualbound = 2220232.128716, lowerbound=1130890.128716, norm of subgrad 42.208604 stepsize= 1.000000 +dualbound = 2220472.018910, lowerbound=1121662.018910, norm of subgrad 1059.776400 dualbound = 2220472.018910, lowerbound=1121662.018910, norm of subgrad 41.278205 stepsize= 1.000000 +dualbound = 2220686.920543, lowerbound=1125934.920543, norm of subgrad 1061.817273 dualbound = 2220686.920543, lowerbound=1125934.920543, norm of subgrad 41.664153 stepsize= 1.000000 +dualbound = 2220909.275843, lowerbound=1126494.275843, norm of subgrad 1062.052859 dualbound = 2220909.275843, lowerbound=1126494.275843, norm of subgrad 41.040898 stepsize= 1.000000 +dualbound = 2221156.734264, lowerbound=1128218.734264, norm of subgrad 1062.913324 dualbound = 2221156.734264, lowerbound=1128218.734264, norm of subgrad 42.584721 stepsize= 1.000000 +dualbound = 2221370.513875, lowerbound=1127419.513875, norm of subgrad 1062.521771 dualbound = 2221370.513875, lowerbound=1127419.513875, norm of subgrad 41.794493 stepsize= 1.000000 +dualbound = 2221617.182942, lowerbound=1130024.182942, norm of subgrad 1063.741126 dualbound = 2221617.182942, lowerbound=1130024.182942, norm of subgrad 42.043657 stepsize= 1.000000 +dualbound = 2221831.505768, lowerbound=1125188.505768, norm of subgrad 1061.476098 dualbound = 2221831.505768, lowerbound=1125188.505768, norm of subgrad 41.920434 stepsize= 1.000000 +dualbound = 2222062.298170, lowerbound=1126787.298170, norm of subgrad 1062.235048 dualbound = 2222062.298170, lowerbound=1126787.298170, norm of subgrad 42.270467 stepsize= 1.000000 +dualbound = 2222303.919700, lowerbound=1122847.919700, norm of subgrad 1060.367823 dualbound = 2222303.919700, lowerbound=1122847.919700, norm of subgrad 42.114386 stepsize= 1.000000 +dualbound = 2222532.276588, lowerbound=1134233.276588, norm of subgrad 1065.713975 dualbound = 2222532.276588, lowerbound=1134233.276588, norm of subgrad 41.729569 stepsize= 1.000000 +dualbound = 2222760.199645, lowerbound=1122382.199645, norm of subgrad 1060.146782 dualbound = 2222760.199645, lowerbound=1122382.199645, norm of subgrad 41.915666 stepsize= 1.000000 +dualbound = 2222991.624783, lowerbound=1129269.624783, norm of subgrad 1063.382163 dualbound = 2222991.624783, lowerbound=1129269.624783, norm of subgrad 41.754343 stepsize= 1.000000 +dualbound = 2223228.820963, lowerbound=1126758.820963, norm of subgrad 1062.202815 dualbound = 2223228.820963, lowerbound=1126758.820963, norm of subgrad 41.871186 stepsize= 1.000000 +dualbound = 2223462.463201, lowerbound=1129525.463201, norm of subgrad 1063.518906 dualbound = 2223462.463201, lowerbound=1129525.463201, norm of subgrad 42.197657 stepsize= 1.000000 +dualbound = 2223685.376002, lowerbound=1121547.376002, norm of subgrad 1059.745430 dualbound = 2223685.376002, lowerbound=1121547.376002, norm of subgrad 41.664287 stepsize= 1.000000 +dualbound = 2223927.736335, lowerbound=1127672.736335, norm of subgrad 1062.615517 dualbound = 2223927.736335, lowerbound=1127672.736335, norm of subgrad 41.489280 stepsize= 1.000000 +dualbound = 2224175.449965, lowerbound=1127109.449965, norm of subgrad 1062.365497 dualbound = 2224175.449965, lowerbound=1127109.449965, norm of subgrad 41.937020 stepsize= 1.000000 +dualbound = 2224384.698694, lowerbound=1126103.698694, norm of subgrad 1061.937239 dualbound = 2224384.698694, lowerbound=1126103.698694, norm of subgrad 42.617470 stepsize= 1.000000 +dualbound = 2224606.498086, lowerbound=1129754.498086, norm of subgrad 1063.619527 dualbound = 2224606.498086, lowerbound=1129754.498086, norm of subgrad 41.878388 stepsize= 1.000000 +dualbound = 2224851.095737, lowerbound=1129319.095737, norm of subgrad 1063.411536 dualbound = 2224851.095737, lowerbound=1129319.095737, norm of subgrad 42.066586 stepsize= 1.000000 +dualbound = 2225075.137717, lowerbound=1124913.137717, norm of subgrad 1061.339784 dualbound = 2225075.137717, lowerbound=1124913.137717, norm of subgrad 41.869344 stepsize= 1.000000 +dualbound = 2225299.039193, lowerbound=1131838.039193, norm of subgrad 1064.601352 dualbound = 2225299.039193, lowerbound=1131838.039193, norm of subgrad 41.975010 stepsize= 1.000000 +dualbound = 2225544.940132, lowerbound=1121312.940132, norm of subgrad 1059.648970 dualbound = 2225544.940132, lowerbound=1121312.940132, norm of subgrad 42.295401 stepsize= 1.000000 +dualbound = 2225768.879898, lowerbound=1126159.879898, norm of subgrad 1061.943445 dualbound = 2225768.879898, lowerbound=1126159.879898, norm of subgrad 42.284037 stepsize= 1.000000 +dualbound = 2225998.111887, lowerbound=1129559.111887, norm of subgrad 1063.504166 dualbound = 2225998.111887, lowerbound=1129559.111887, norm of subgrad 41.367040 stepsize= 1.000000 +dualbound = 2226249.140443, lowerbound=1130002.140443, norm of subgrad 1063.728415 dualbound = 2226249.140443, lowerbound=1130002.140443, norm of subgrad 42.036039 stepsize= 1.000000 +dualbound = 2226437.821680, lowerbound=1126606.821680, norm of subgrad 1062.160921 dualbound = 2226437.821680, lowerbound=1126606.821680, norm of subgrad 42.043801 stepsize= 1.000000 +dualbound = 2226684.693148, lowerbound=1128547.693148, norm of subgrad 1063.049243 dualbound = 2226684.693148, lowerbound=1128547.693148, norm of subgrad 42.105480 stepsize= 1.000000 +dualbound = 2226919.609671, lowerbound=1124275.609671, norm of subgrad 1061.029505 dualbound = 2226919.609671, lowerbound=1124275.609671, norm of subgrad 41.748252 stepsize= 1.000000 +dualbound = 2227149.950525, lowerbound=1129694.950525, norm of subgrad 1063.630552 dualbound = 2227149.950525, lowerbound=1129694.950525, norm of subgrad 42.957431 stepsize= 1.000000 +dualbound = 2227340.207117, lowerbound=1126705.207117, norm of subgrad 1062.217119 dualbound = 2227340.207117, lowerbound=1126705.207117, norm of subgrad 42.311424 stepsize= 1.000000 +dualbound = 2227621.427583, lowerbound=1128387.427583, norm of subgrad 1062.938581 dualbound = 2227621.427583, lowerbound=1128387.427583, norm of subgrad 41.619953 stepsize= 1.000000 +dualbound = 2227887.092687, lowerbound=1120803.092687, norm of subgrad 1059.350316 dualbound = 2227887.092687, lowerbound=1120803.092687, norm of subgrad 41.056852 stepsize= 1.000000 +dualbound = 2228100.485853, lowerbound=1131751.485853, norm of subgrad 1064.522656 dualbound = 2228100.485853, lowerbound=1131751.485853, norm of subgrad 40.870444 stepsize= 1.000000 +dualbound = 2228322.590983, lowerbound=1123612.590983, norm of subgrad 1060.711832 dualbound = 2228322.590983, lowerbound=1123612.590983, norm of subgrad 41.462093 stepsize= 1.000000 +dualbound = 2228549.609083, lowerbound=1130830.609083, norm of subgrad 1064.109773 dualbound = 2228549.609083, lowerbound=1130830.609083, norm of subgrad 41.545374 stepsize= 1.000000 +dualbound = 2228768.229038, lowerbound=1128480.229038, norm of subgrad 1063.032092 dualbound = 2228768.229038, lowerbound=1128480.229038, norm of subgrad 42.138106 stepsize= 1.000000 +dualbound = 2228994.104558, lowerbound=1128884.104558, norm of subgrad 1063.216396 dualbound = 2228994.104558, lowerbound=1128884.104558, norm of subgrad 42.081772 stepsize= 1.000000 +dualbound = 2229219.562926, lowerbound=1127931.562926, norm of subgrad 1062.762703 dualbound = 2229219.562926, lowerbound=1127931.562926, norm of subgrad 41.933976 stepsize= 1.000000 +dualbound = 2229447.289447, lowerbound=1127282.289447, norm of subgrad 1062.482607 dualbound = 2229447.289447, lowerbound=1127282.289447, norm of subgrad 42.599607 stepsize= 1.000000 +dualbound = 2229683.279101, lowerbound=1128385.279101, norm of subgrad 1062.999191 dualbound = 2229683.279101, lowerbound=1128385.279101, norm of subgrad 42.637890 stepsize= 1.000000 +dualbound = 2229914.547477, lowerbound=1125351.547477, norm of subgrad 1061.575973 dualbound = 2229914.547477, lowerbound=1125351.547477, norm of subgrad 42.699747 stepsize= 1.000000 +dualbound = 2230138.511835, lowerbound=1124183.511835, norm of subgrad 1060.996471 dualbound = 2230138.511835, lowerbound=1124183.511835, norm of subgrad 41.880358 stepsize= 1.000000 +dualbound = 2230370.628141, lowerbound=1129732.628141, norm of subgrad 1063.592322 dualbound = 2230370.628141, lowerbound=1129732.628141, norm of subgrad 41.570618 stepsize= 1.000000 +dualbound = 2230621.444619, lowerbound=1122810.444619, norm of subgrad 1060.342136 dualbound = 2230621.444619, lowerbound=1122810.444619, norm of subgrad 42.021619 stepsize= 1.000000 +dualbound = 2230854.509435, lowerbound=1128888.509435, norm of subgrad 1063.222230 dualbound = 2230854.509435, lowerbound=1128888.509435, norm of subgrad 42.261860 stepsize= 1.000000 +dualbound = 2231073.636751, lowerbound=1129042.636751, norm of subgrad 1063.275899 dualbound = 2231073.636751, lowerbound=1129042.636751, norm of subgrad 41.618834 stepsize= 1.000000 +dualbound = 2231311.067441, lowerbound=1127470.067441, norm of subgrad 1062.546501 dualbound = 2231311.067441, lowerbound=1127470.067441, norm of subgrad 42.100246 stepsize= 1.000000 +dualbound = 2231542.621954, lowerbound=1128960.621954, norm of subgrad 1063.278243 dualbound = 2231542.621954, lowerbound=1128960.621954, norm of subgrad 42.796665 stepsize= 1.000000 +dualbound = 2231756.226063, lowerbound=1126982.226063, norm of subgrad 1062.327739 dualbound = 2231756.226063, lowerbound=1126982.226063, norm of subgrad 42.090428 stepsize= 1.000000 +dualbound = 2231991.759896, lowerbound=1131262.759896, norm of subgrad 1064.338649 dualbound = 2231991.759896, lowerbound=1131262.759896, norm of subgrad 42.302882 stepsize= 1.000000 +dualbound = 2232229.654288, lowerbound=1132293.654288, norm of subgrad 1064.806393 dualbound = 2232229.654288, lowerbound=1132293.654288, norm of subgrad 41.915324 stepsize= 1.000000 +dualbound = 2232458.599590, lowerbound=1121605.599590, norm of subgrad 1059.769597 dualbound = 2232458.599590, lowerbound=1121605.599590, norm of subgrad 41.652675 stepsize= 1.000000 +dualbound = 2232685.765599, lowerbound=1129713.765599, norm of subgrad 1063.609311 dualbound = 2232685.765599, lowerbound=1129713.765599, norm of subgrad 42.168306 stepsize= 1.000000 +dualbound = 2232900.844518, lowerbound=1123627.844518, norm of subgrad 1060.742120 dualbound = 2232900.844518, lowerbound=1123627.844518, norm of subgrad 41.965211 stepsize= 1.000000 +dualbound = 2233155.841424, lowerbound=1128513.841424, norm of subgrad 1063.007922 dualbound = 2233155.841424, lowerbound=1128513.841424, norm of subgrad 41.557152 stepsize= 1.000000 +dualbound = 2233355.199810, lowerbound=1130349.199810, norm of subgrad 1063.887776 dualbound = 2233355.199810, lowerbound=1130349.199810, norm of subgrad 41.320193 stepsize= 1.000000 +dualbound = 2233611.034549, lowerbound=1128306.034549, norm of subgrad 1062.904527 dualbound = 2233611.034549, lowerbound=1128306.034549, norm of subgrad 41.422636 stepsize= 1.000000 +dualbound = 2233844.769296, lowerbound=1125278.769296, norm of subgrad 1061.498832 dualbound = 2233844.769296, lowerbound=1125278.769296, norm of subgrad 41.650147 stepsize= 1.000000 +dualbound = 2234046.609216, lowerbound=1131591.609216, norm of subgrad 1064.518957 dualbound = 2234046.609216, lowerbound=1131591.609216, norm of subgrad 42.553965 stepsize= 1.000000 +dualbound = 2234290.927060, lowerbound=1128365.927060, norm of subgrad 1062.956221 dualbound = 2234290.927060, lowerbound=1128365.927060, norm of subgrad 41.884578 stepsize= 1.000000 +dualbound = 2234525.938699, lowerbound=1125863.938699, norm of subgrad 1061.786202 dualbound = 2234525.938699, lowerbound=1125863.938699, norm of subgrad 41.964409 stepsize= 1.000000 +dualbound = 2234758.171891, lowerbound=1129262.171891, norm of subgrad 1063.394645 dualbound = 2234758.171891, lowerbound=1129262.171891, norm of subgrad 42.169102 stepsize= 1.000000 +dualbound = 2234974.674478, lowerbound=1129758.674478, norm of subgrad 1063.594695 dualbound = 2234974.674478, lowerbound=1129758.674478, norm of subgrad 41.127881 stepsize= 1.000000 +dualbound = 2235231.021434, lowerbound=1128656.021434, norm of subgrad 1063.076207 dualbound = 2235231.021434, lowerbound=1128656.021434, norm of subgrad 41.609458 stepsize= 1.000000 +dualbound = 2235464.639254, lowerbound=1129325.639254, norm of subgrad 1063.375587 dualbound = 2235464.639254, lowerbound=1129325.639254, norm of subgrad 40.934311 stepsize= 1.000000 +dualbound = 2235673.196520, lowerbound=1124111.196520, norm of subgrad 1060.960035 dualbound = 2235673.196520, lowerbound=1124111.196520, norm of subgrad 41.636009 stepsize= 1.000000 +dualbound = 2235897.985468, lowerbound=1131126.985468, norm of subgrad 1064.243856 dualbound = 2235897.985468, lowerbound=1131126.985468, norm of subgrad 41.385854 stepsize= 1.000000 +dualbound = 2236133.166424, lowerbound=1127510.166424, norm of subgrad 1062.562077 dualbound = 2236133.166424, lowerbound=1127510.166424, norm of subgrad 41.990248 stepsize= 1.000000 +dualbound = 2236363.411583, lowerbound=1129020.411583, norm of subgrad 1063.264977 dualbound = 2236363.411583, lowerbound=1129020.411583, norm of subgrad 41.740210 stepsize= 1.000000 +dualbound = 2236594.604443, lowerbound=1130427.604443, norm of subgrad 1063.930263 dualbound = 2236594.604443, lowerbound=1130427.604443, norm of subgrad 41.847256 stepsize= 1.000000 +dualbound = 2236808.508209, lowerbound=1128304.508209, norm of subgrad 1062.926389 dualbound = 2236808.508209, lowerbound=1128304.508209, norm of subgrad 41.495828 stepsize= 1.000000 +dualbound = 2237075.557808, lowerbound=1129706.557808, norm of subgrad 1063.586648 dualbound = 2237075.557808, lowerbound=1129706.557808, norm of subgrad 42.155066 stepsize= 1.000000 +dualbound = 2237256.448972, lowerbound=1125581.448972, norm of subgrad 1061.661645 dualbound = 2237256.448972, lowerbound=1125581.448972, norm of subgrad 41.531809 stepsize= 1.000000 +dualbound = 2237502.178195, lowerbound=1130715.178195, norm of subgrad 1064.033448 dualbound = 2237502.178195, lowerbound=1130715.178195, norm of subgrad 41.203510 stepsize= 1.000000 +dualbound = 2237749.289896, lowerbound=1130770.289896, norm of subgrad 1064.076261 dualbound = 2237749.289896, lowerbound=1130770.289896, norm of subgrad 41.654672 stepsize= 1.000000 +dualbound = 2237956.827768, lowerbound=1126071.827768, norm of subgrad 1061.898690 dualbound = 2237956.827768, lowerbound=1126071.827768, norm of subgrad 42.006403 stepsize= 1.000000 +dualbound = 2238161.175088, lowerbound=1129724.175088, norm of subgrad 1063.620785 dualbound = 2238161.175088, lowerbound=1129724.175088, norm of subgrad 42.063610 stepsize= 1.000000 +dualbound = 2238413.117562, lowerbound=1129502.117562, norm of subgrad 1063.483012 dualbound = 2238413.117562, lowerbound=1129502.117562, norm of subgrad 41.784476 stepsize= 1.000000 +dualbound = 2238653.133562, lowerbound=1132727.133562, norm of subgrad 1064.974710 dualbound = 2238653.133562, lowerbound=1132727.133562, norm of subgrad 41.036764 stepsize= 1.000000 +dualbound = 2238887.377876, lowerbound=1124180.377876, norm of subgrad 1061.012902 dualbound = 2238887.377876, lowerbound=1124180.377876, norm of subgrad 42.452848 stepsize= 1.000000 +dualbound = 2239083.131963, lowerbound=1129608.131963, norm of subgrad 1063.539906 dualbound = 2239083.131963, lowerbound=1129608.131963, norm of subgrad 41.288668 stepsize= 1.000000 +dualbound = 2239338.608376, lowerbound=1126125.608376, norm of subgrad 1061.913183 dualbound = 2239338.608376, lowerbound=1126125.608376, norm of subgrad 42.302203 stepsize= 1.000000 +dualbound = 2239556.302877, lowerbound=1134460.302877, norm of subgrad 1065.792336 dualbound = 2239556.302877, lowerbound=1134460.302877, norm of subgrad 40.874130 stepsize= 1.000000 +dualbound = 2239809.023182, lowerbound=1127486.023182, norm of subgrad 1062.540834 dualbound = 2239809.023182, lowerbound=1127486.023182, norm of subgrad 41.949020 stepsize= 1.000000 +dualbound = 2240005.302369, lowerbound=1133513.302369, norm of subgrad 1065.367215 dualbound = 2240005.302369, lowerbound=1133513.302369, norm of subgrad 41.113005 stepsize= 1.000000 +dualbound = 2240259.353200, lowerbound=1123455.353200, norm of subgrad 1060.618854 dualbound = 2240259.353200, lowerbound=1123455.353200, norm of subgrad 41.364850 stepsize= 1.000000 +dualbound = 2240470.658100, lowerbound=1128982.658100, norm of subgrad 1063.242521 dualbound = 2240470.658100, lowerbound=1128982.658100, norm of subgrad 41.392087 stepsize= 1.000000 +dualbound = 2240693.710422, lowerbound=1125409.710422, norm of subgrad 1061.539783 dualbound = 2240693.710422, lowerbound=1125409.710422, norm of subgrad 40.988441 stepsize= 1.000000 +dualbound = 2240932.181826, lowerbound=1131711.181826, norm of subgrad 1064.542710 dualbound = 2240932.181826, lowerbound=1131711.181826, norm of subgrad 42.171927 stepsize= 1.000000 +dualbound = 2241138.999145, lowerbound=1130058.999145, norm of subgrad 1063.756081 dualbound = 2241138.999145, lowerbound=1130058.999145, norm of subgrad 41.530920 stepsize= 1.000000 +dualbound = 2241377.862222, lowerbound=1128447.862222, norm of subgrad 1062.986765 dualbound = 2241377.862222, lowerbound=1128447.862222, norm of subgrad 41.615659 stepsize= 1.000000 +dualbound = 2241613.588746, lowerbound=1127852.588746, norm of subgrad 1062.714726 dualbound = 2241613.588746, lowerbound=1127852.588746, norm of subgrad 41.781892 stepsize= 1.000000 +dualbound = 2241859.379053, lowerbound=1130953.379053, norm of subgrad 1064.125641 dualbound = 2241859.379053, lowerbound=1130953.379053, norm of subgrad 40.691403 stepsize= 1.000000 +dualbound = 2242075.395434, lowerbound=1126290.395434, norm of subgrad 1061.966758 dualbound = 2242075.395434, lowerbound=1126290.395434, norm of subgrad 41.219126 stepsize= 1.000000 +dualbound = 2242303.497214, lowerbound=1130785.497214, norm of subgrad 1064.096094 dualbound = 2242303.497214, lowerbound=1130785.497214, norm of subgrad 41.750470 stepsize= 1.000000 +dualbound = 2242518.134557, lowerbound=1135003.134557, norm of subgrad 1066.072762 dualbound = 2242518.134557, lowerbound=1135003.134557, norm of subgrad 41.504667 stepsize= 1.000000 +dualbound = 2242752.783970, lowerbound=1125430.783970, norm of subgrad 1061.582208 dualbound = 2242752.783970, lowerbound=1125430.783970, norm of subgrad 41.960093 stepsize= 1.000000 +dualbound = 2242970.874031, lowerbound=1126460.874031, norm of subgrad 1062.061144 dualbound = 2242970.874031, lowerbound=1126460.874031, norm of subgrad 41.606370 stepsize= 1.000000 +dualbound = 2243233.142861, lowerbound=1127966.142861, norm of subgrad 1062.730983 dualbound = 2243233.142861, lowerbound=1127966.142861, norm of subgrad 41.149348 stepsize= 1.000000 +dualbound = 2243448.301782, lowerbound=1127065.301782, norm of subgrad 1062.339542 dualbound = 2243448.301782, lowerbound=1127065.301782, norm of subgrad 41.414477 stepsize= 1.000000 +dualbound = 2243646.033522, lowerbound=1131142.033522, norm of subgrad 1064.250926 dualbound = 2243646.033522, lowerbound=1131142.033522, norm of subgrad 41.057664 stepsize= 1.000000 +dualbound = 2243900.944507, lowerbound=1127774.944507, norm of subgrad 1062.676783 dualbound = 2243900.944507, lowerbound=1127774.944507, norm of subgrad 41.975123 stepsize= 1.000000 +dualbound = 2244111.402098, lowerbound=1131383.402098, norm of subgrad 1064.379351 dualbound = 2244111.402098, lowerbound=1131383.402098, norm of subgrad 41.598769 stepsize= 1.000000 +dualbound = 2244333.672241, lowerbound=1127688.672241, norm of subgrad 1062.620192 dualbound = 2244333.672241, lowerbound=1127688.672241, norm of subgrad 41.173658 stepsize= 1.000000 +dualbound = 2244556.138558, lowerbound=1130457.138558, norm of subgrad 1063.930984 dualbound = 2244556.138558, lowerbound=1130457.138558, norm of subgrad 41.406114 stepsize= 1.000000 +dualbound = 2244796.123193, lowerbound=1130337.123193, norm of subgrad 1063.888210 dualbound = 2244796.123193, lowerbound=1130337.123193, norm of subgrad 41.964087 stepsize= 1.000000 +dualbound = 2244995.392059, lowerbound=1125328.392059, norm of subgrad 1061.556589 dualbound = 2244995.392059, lowerbound=1125328.392059, norm of subgrad 42.110199 stepsize= 1.000000 +dualbound = 2245235.116803, lowerbound=1132457.116803, norm of subgrad 1064.891599 dualbound = 2245235.116803, lowerbound=1132457.116803, norm of subgrad 42.151213 stepsize= 1.000000 +dualbound = 2245472.557784, lowerbound=1128315.557784, norm of subgrad 1062.919827 dualbound = 2245472.557784, lowerbound=1128315.557784, norm of subgrad 41.478199 stepsize= 1.000000 +dualbound = 2245705.373539, lowerbound=1130001.373539, norm of subgrad 1063.720064 dualbound = 2245705.373539, lowerbound=1130001.373539, norm of subgrad 41.615090 stepsize= 1.000000 +dualbound = 2245924.785239, lowerbound=1128010.785239, norm of subgrad 1062.776922 dualbound = 2245924.785239, lowerbound=1128010.785239, norm of subgrad 41.272408 stepsize= 1.000000 +dualbound = 2246134.903811, lowerbound=1131819.903811, norm of subgrad 1064.569351 dualbound = 2246134.903811, lowerbound=1131819.903811, norm of subgrad 41.208234 stepsize= 1.000000 +dualbound = 2246415.656045, lowerbound=1132651.656045, norm of subgrad 1064.940212 dualbound = 2246415.656045, lowerbound=1132651.656045, norm of subgrad 41.554208 stepsize= 1.000000 +dualbound = 2246610.724877, lowerbound=1126018.724877, norm of subgrad 1061.846846 dualbound = 2246610.724877, lowerbound=1126018.724877, norm of subgrad 41.171214 stepsize= 1.000000 +dualbound = 2246832.156481, lowerbound=1129926.156481, norm of subgrad 1063.704920 dualbound = 2246832.156481, lowerbound=1129926.156481, norm of subgrad 41.993233 stepsize= 1.000000 +dualbound = 2247043.903497, lowerbound=1129577.903497, norm of subgrad 1063.561895 dualbound = 2247043.903497, lowerbound=1129577.903497, norm of subgrad 42.399847 stepsize= 1.000000 +dualbound = 2247283.378049, lowerbound=1129860.378049, norm of subgrad 1063.655197 dualbound = 2247283.378049, lowerbound=1129860.378049, norm of subgrad 41.730978 stepsize= 1.000000 +dualbound = 2247527.725897, lowerbound=1129272.725897, norm of subgrad 1063.386913 dualbound = 2247527.725897, lowerbound=1129272.725897, norm of subgrad 41.992236 stepsize= 1.000000 +dualbound = 2247736.395087, lowerbound=1129732.395087, norm of subgrad 1063.625120 dualbound = 2247736.395087, lowerbound=1129732.395087, norm of subgrad 42.126823 stepsize= 1.000000 +dualbound = 2247964.686344, lowerbound=1130028.686344, norm of subgrad 1063.723031 dualbound = 2247964.686344, lowerbound=1130028.686344, norm of subgrad 41.307278 stepsize= 1.000000 +dualbound = 2248205.677620, lowerbound=1129261.677620, norm of subgrad 1063.363850 dualbound = 2248205.677620, lowerbound=1129261.677620, norm of subgrad 41.496883 stepsize= 1.000000 +dualbound = 2248425.071308, lowerbound=1128186.071308, norm of subgrad 1062.854210 dualbound = 2248425.071308, lowerbound=1128186.071308, norm of subgrad 41.138713 stepsize= 1.000000 +dualbound = 2248662.912793, lowerbound=1128671.912793, norm of subgrad 1063.071923 dualbound = 2248662.912793, lowerbound=1128671.912793, norm of subgrad 41.083348 stepsize= 1.000000 +dualbound = 2248879.328075, lowerbound=1131401.328075, norm of subgrad 1064.390120 dualbound = 2248879.328075, lowerbound=1131401.328075, norm of subgrad 41.730268 stepsize= 1.000000 +dualbound = 2249096.013653, lowerbound=1130334.013653, norm of subgrad 1063.891918 dualbound = 2249096.013653, lowerbound=1130334.013653, norm of subgrad 41.817288 stepsize= 1.000000 +dualbound = 2249336.405233, lowerbound=1128665.405233, norm of subgrad 1063.097082 dualbound = 2249336.405233, lowerbound=1128665.405233, norm of subgrad 41.837681 stepsize= 1.000000 +dualbound = 2249531.646459, lowerbound=1128722.646459, norm of subgrad 1063.147519 dualbound = 2249531.646459, lowerbound=1128722.646459, norm of subgrad 41.895599 stepsize= 1.000000 +dualbound = 2249792.346825, lowerbound=1133007.346825, norm of subgrad 1065.128794 dualbound = 2249792.346825, lowerbound=1133007.346825, norm of subgrad 41.865264 stepsize= 1.000000 +dualbound = 2250015.482957, lowerbound=1130496.482957, norm of subgrad 1063.952294 dualbound = 2250015.482957, lowerbound=1130496.482957, norm of subgrad 41.486578 stepsize= 1.000000 +dualbound = 2250219.912855, lowerbound=1130063.912855, norm of subgrad 1063.784242 dualbound = 2250219.912855, lowerbound=1130063.912855, norm of subgrad 42.159577 stepsize= 1.000000 +dualbound = 2250452.740547, lowerbound=1130418.740547, norm of subgrad 1063.925627 dualbound = 2250452.740547, lowerbound=1130418.740547, norm of subgrad 41.854841 stepsize= 1.000000 +dualbound = 2250662.157393, lowerbound=1129666.157393, norm of subgrad 1063.566245 dualbound = 2250662.157393, lowerbound=1129666.157393, norm of subgrad 41.429661 stepsize= 1.000000 +dualbound = 2250911.046376, lowerbound=1127371.046376, norm of subgrad 1062.493787 dualbound = 2250911.046376, lowerbound=1127371.046376, norm of subgrad 42.081932 stepsize= 1.000000 +dualbound = 2251144.662975, lowerbound=1131238.662975, norm of subgrad 1064.287397 dualbound = 2251144.662975, lowerbound=1131238.662975, norm of subgrad 41.262775 stepsize= 1.000000 +dualbound = 2251385.774599, lowerbound=1127188.774599, norm of subgrad 1062.353884 dualbound = 2251385.774599, lowerbound=1127188.774599, norm of subgrad 40.596941 stepsize= 1.000000 +dualbound = 2251594.247103, lowerbound=1131335.247103, norm of subgrad 1064.348743 dualbound = 2251594.247103, lowerbound=1131335.247103, norm of subgrad 41.369947 stepsize= 1.000000 +dualbound = 2251813.616140, lowerbound=1134033.616140, norm of subgrad 1065.604812 dualbound = 2251813.616140, lowerbound=1134033.616140, norm of subgrad 41.223404 stepsize= 1.000000 +dualbound = 2252040.957564, lowerbound=1125153.957564, norm of subgrad 1061.428734 dualbound = 2252040.957564, lowerbound=1125153.957564, norm of subgrad 41.283670 stepsize= 1.000000 +dualbound = 2252262.358963, lowerbound=1132356.358963, norm of subgrad 1064.810011 dualbound = 2252262.358963, lowerbound=1132356.358963, norm of subgrad 41.053641 stepsize= 1.000000 +dualbound = 2252509.862761, lowerbound=1126716.862761, norm of subgrad 1062.155762 dualbound = 2252509.862761, lowerbound=1126716.862761, norm of subgrad 41.297746 stepsize= 1.000000 +dualbound = 2252718.451947, lowerbound=1133818.451947, norm of subgrad 1065.538104 dualbound = 2252718.451947, lowerbound=1133818.451947, norm of subgrad 41.971290 stepsize= 1.000000 +dualbound = 2252933.135358, lowerbound=1129657.135358, norm of subgrad 1063.571876 dualbound = 2252933.135358, lowerbound=1129657.135358, norm of subgrad 41.745460 stepsize= 1.000000 +dualbound = 2253166.818628, lowerbound=1129838.818628, norm of subgrad 1063.685019 dualbound = 2253166.818628, lowerbound=1129838.818628, norm of subgrad 42.669465 stepsize= 1.000000 +dualbound = 2253366.866728, lowerbound=1126535.866728, norm of subgrad 1062.128931 dualbound = 2253366.866728, lowerbound=1126535.866728, norm of subgrad 42.214312 stepsize= 1.000000 +dualbound = 2253627.158047, lowerbound=1130802.158047, norm of subgrad 1064.103453 dualbound = 2253627.158047, lowerbound=1130802.158047, norm of subgrad 42.122338 stepsize= 1.000000 +dualbound = 2253837.203716, lowerbound=1128161.203716, norm of subgrad 1062.880616 dualbound = 2253837.203716, lowerbound=1128161.203716, norm of subgrad 42.000544 stepsize= 1.000000 +dualbound = 2254065.305238, lowerbound=1131572.305238, norm of subgrad 1064.452585 dualbound = 2254065.305238, lowerbound=1131572.305238, norm of subgrad 41.413784 stepsize= 1.000000 +dualbound = 2254304.232634, lowerbound=1128456.232634, norm of subgrad 1062.986469 dualbound = 2254304.232634, lowerbound=1128456.232634, norm of subgrad 41.508161 stepsize= 1.000000 +dualbound = 2254528.230572, lowerbound=1133295.230572, norm of subgrad 1065.246089 dualbound = 2254528.230572, lowerbound=1133295.230572, norm of subgrad 40.963373 stepsize= 1.000000 +dualbound = 2254749.119819, lowerbound=1132411.119819, norm of subgrad 1064.802855 dualbound = 2254749.119819, lowerbound=1132411.119819, norm of subgrad 40.185685 stepsize= 1.000000 +dualbound = 2255013.353719, lowerbound=1130311.353719, norm of subgrad 1063.843200 dualbound = 2255013.353719, lowerbound=1130311.353719, norm of subgrad 41.415382 stepsize= 1.000000 +dualbound = 2255195.619985, lowerbound=1128890.619985, norm of subgrad 1063.198768 dualbound = 2255195.619985, lowerbound=1128890.619985, norm of subgrad 41.027628 stepsize= 1.000000 +dualbound = 2255433.993071, lowerbound=1130231.993071, norm of subgrad 1063.833630 dualbound = 2255433.993071, lowerbound=1130231.993071, norm of subgrad 41.813551 stepsize= 1.000000 +dualbound = 2255648.395926, lowerbound=1130115.395926, norm of subgrad 1063.759557 dualbound = 2255648.395926, lowerbound=1130115.395926, norm of subgrad 41.029293 stepsize= 1.000000 +dualbound = 2255888.856097, lowerbound=1135465.856097, norm of subgrad 1066.280383 dualbound = 2255888.856097, lowerbound=1135465.856097, norm of subgrad 41.574754 stepsize= 1.000000 +dualbound = 2256114.334120, lowerbound=1129047.334120, norm of subgrad 1063.253184 dualbound = 2256114.334120, lowerbound=1129047.334120, norm of subgrad 41.054574 stepsize= 1.000000 +dualbound = 2256346.188965, lowerbound=1129366.188965, norm of subgrad 1063.423335 dualbound = 2256346.188965, lowerbound=1129366.188965, norm of subgrad 41.651589 stepsize= 1.000000 +dualbound = 2256555.852068, lowerbound=1129861.852068, norm of subgrad 1063.662471 dualbound = 2256555.852068, lowerbound=1129861.852068, norm of subgrad 41.541101 stepsize= 1.000000 +dualbound = 2256783.621425, lowerbound=1128456.621425, norm of subgrad 1063.009700 dualbound = 2256783.621425, lowerbound=1128456.621425, norm of subgrad 41.961522 stepsize= 1.000000 +dualbound = 2257010.833073, lowerbound=1132770.833073, norm of subgrad 1065.039827 dualbound = 2257010.833073, lowerbound=1132770.833073, norm of subgrad 42.026321 stepsize= 1.000000 +dualbound = 2257215.381659, lowerbound=1134143.381659, norm of subgrad 1065.688220 dualbound = 2257215.381659, lowerbound=1134143.381659, norm of subgrad 41.863452 stepsize= 1.000000 +dualbound = 2257443.209429, lowerbound=1129929.209429, norm of subgrad 1063.701184 dualbound = 2257443.209429, lowerbound=1129929.209429, norm of subgrad 41.938381 stepsize= 1.000000 +dualbound = 2257679.914693, lowerbound=1131669.914693, norm of subgrad 1064.514403 dualbound = 2257679.914693, lowerbound=1131669.914693, norm of subgrad 41.924996 stepsize= 1.000000 +dualbound = 2257905.049075, lowerbound=1130524.049075, norm of subgrad 1063.924362 dualbound = 2257905.049075, lowerbound=1130524.049075, norm of subgrad 40.449158 stepsize= 1.000000 +dualbound = 2258176.730335, lowerbound=1128283.730335, norm of subgrad 1062.871455 dualbound = 2258176.730335, lowerbound=1128283.730335, norm of subgrad 41.032685 stepsize= 1.000000 +dualbound = 2258364.108534, lowerbound=1132870.108534, norm of subgrad 1065.060143 dualbound = 2258364.108534, lowerbound=1132870.108534, norm of subgrad 40.870261 stepsize= 1.000000 +dualbound = 2258586.701531, lowerbound=1130383.701531, norm of subgrad 1063.893651 dualbound = 2258586.701531, lowerbound=1130383.701531, norm of subgrad 41.335130 stepsize= 1.000000 +dualbound = 2258810.457995, lowerbound=1127925.457995, norm of subgrad 1062.753244 dualbound = 2258810.457995, lowerbound=1127925.457995, norm of subgrad 41.746335 stepsize= 1.000000 +dualbound = 2259012.771898, lowerbound=1130669.771898, norm of subgrad 1064.037016 dualbound = 2259012.771898, lowerbound=1130669.771898, norm of subgrad 41.319655 stepsize= 1.000000 +dualbound = 2259260.192536, lowerbound=1132761.192536, norm of subgrad 1065.028729 dualbound = 2259260.192536, lowerbound=1132761.192536, norm of subgrad 42.100126 stepsize= 1.000000 +dualbound = 2259494.887867, lowerbound=1135773.887867, norm of subgrad 1066.395746 dualbound = 2259494.887867, lowerbound=1135773.887867, norm of subgrad 40.751630 stepsize= 1.000000 +dualbound = 2259714.167956, lowerbound=1128915.167956, norm of subgrad 1063.222539 dualbound = 2259714.167956, lowerbound=1128915.167956, norm of subgrad 41.788516 stepsize= 1.000000 +dualbound = 2259912.903707, lowerbound=1129155.903707, norm of subgrad 1063.342797 dualbound = 2259912.903707, lowerbound=1129155.903707, norm of subgrad 41.722125 stepsize= 1.000000 +dualbound = 2260146.941941, lowerbound=1128892.941941, norm of subgrad 1063.198919 dualbound = 2260146.941941, lowerbound=1128892.941941, norm of subgrad 41.629776 stepsize= 1.000000 +dualbound = 2260372.868556, lowerbound=1130937.868556, norm of subgrad 1064.142786 dualbound = 2260372.868556, lowerbound=1130937.868556, norm of subgrad 41.084384 stepsize= 1.000000 +dualbound = 2260585.954849, lowerbound=1132156.954849, norm of subgrad 1064.726235 dualbound = 2260585.954849, lowerbound=1132156.954849, norm of subgrad 41.207843 stepsize= 1.000000 +dualbound = 2260810.365418, lowerbound=1129501.365418, norm of subgrad 1063.464793 dualbound = 2260810.365418, lowerbound=1129501.365418, norm of subgrad 40.992811 stepsize= 1.000000 +dualbound = 2261071.628845, lowerbound=1131940.628845, norm of subgrad 1064.597402 dualbound = 2261071.628845, lowerbound=1131940.628845, norm of subgrad 41.088483 stepsize= 1.000000 +dualbound = 2261284.797993, lowerbound=1131749.797993, norm of subgrad 1064.515288 dualbound = 2261284.797993, lowerbound=1131749.797993, norm of subgrad 40.696058 stepsize= 1.000000 +dualbound = 2261510.029082, lowerbound=1129042.029082, norm of subgrad 1063.258214 dualbound = 2261510.029082, lowerbound=1129042.029082, norm of subgrad 41.245983 stepsize= 1.000000 +dualbound = 2261727.557442, lowerbound=1130939.557442, norm of subgrad 1064.158615 dualbound = 2261727.557442, lowerbound=1130939.557442, norm of subgrad 41.370622 stepsize= 1.000000 +dualbound = 2261948.796592, lowerbound=1134178.796592, norm of subgrad 1065.694045 dualbound = 2261948.796592, lowerbound=1134178.796592, norm of subgrad 41.788026 stepsize= 1.000000 +dualbound = 2262155.949655, lowerbound=1126921.949655, norm of subgrad 1062.292309 dualbound = 2262155.949655, lowerbound=1126921.949655, norm of subgrad 41.834831 stepsize= 1.000000 +dualbound = 2262382.107780, lowerbound=1133401.107780, norm of subgrad 1065.325822 dualbound = 2262382.107780, lowerbound=1133401.107780, norm of subgrad 41.763119 stepsize= 1.000000 +dualbound = 2262619.921448, lowerbound=1127231.921448, norm of subgrad 1062.426902 dualbound = 2262619.921448, lowerbound=1127231.921448, norm of subgrad 41.914361 stepsize= 1.000000 +dualbound = 2262834.788734, lowerbound=1136281.788734, norm of subgrad 1066.677453 dualbound = 2262834.788734, lowerbound=1136281.788734, norm of subgrad 41.639732 stepsize= 1.000000 +dualbound = 2263061.336537, lowerbound=1129948.336537, norm of subgrad 1063.707355 dualbound = 2263061.336537, lowerbound=1129948.336537, norm of subgrad 41.851497 stepsize= 1.000000 +dualbound = 2263298.213936, lowerbound=1133234.213936, norm of subgrad 1065.224490 dualbound = 2263298.213936, lowerbound=1133234.213936, norm of subgrad 41.302269 stepsize= 1.000000 +dualbound = 2263518.234302, lowerbound=1130577.234302, norm of subgrad 1063.970974 dualbound = 2263518.234302, lowerbound=1130577.234302, norm of subgrad 40.951439 stepsize= 1.000000 +dualbound = 2263758.924623, lowerbound=1130942.924623, norm of subgrad 1064.165365 dualbound = 2263758.924623, lowerbound=1130942.924623, norm of subgrad 41.781459 stepsize= 1.000000 +dualbound = 2263952.077690, lowerbound=1133061.077690, norm of subgrad 1065.153547 dualbound = 2263952.077690, lowerbound=1133061.077690, norm of subgrad 41.038434 stepsize= 1.000000 +dualbound = 2264205.392759, lowerbound=1131355.392759, norm of subgrad 1064.321565 dualbound = 2264205.392759, lowerbound=1131355.392759, norm of subgrad 40.967244 stepsize= 1.000000 +dualbound = 2264401.460793, lowerbound=1130068.460793, norm of subgrad 1063.739846 dualbound = 2264401.460793, lowerbound=1130068.460793, norm of subgrad 40.866466 stepsize= 1.000000 +dualbound = 2264659.039154, lowerbound=1132681.039154, norm of subgrad 1064.944148 dualbound = 2264659.039154, lowerbound=1132681.039154, norm of subgrad 41.019244 stepsize= 1.000000 +dualbound = 2264894.872685, lowerbound=1132032.872685, norm of subgrad 1064.646830 dualbound = 2264894.872685, lowerbound=1132032.872685, norm of subgrad 40.936946 stepsize= 1.000000 +dualbound = 2265099.424403, lowerbound=1131437.424403, norm of subgrad 1064.395803 dualbound = 2265099.424403, lowerbound=1131437.424403, norm of subgrad 41.298326 stepsize= 1.000000 +dualbound = 2265285.781852, lowerbound=1131654.781852, norm of subgrad 1064.514341 dualbound = 2265285.781852, lowerbound=1131654.781852, norm of subgrad 41.501295 stepsize= 1.000000 +dualbound = 2265523.742538, lowerbound=1129855.742538, norm of subgrad 1063.644556 dualbound = 2265523.742538, lowerbound=1129855.742538, norm of subgrad 41.496514 stepsize= 1.000000 +dualbound = 2265754.279035, lowerbound=1135327.279035, norm of subgrad 1066.213993 dualbound = 2265754.279035, lowerbound=1135327.279035, norm of subgrad 41.419035 stepsize= 1.000000 +dualbound = 2265997.466556, lowerbound=1130289.466556, norm of subgrad 1063.839493 dualbound = 2265997.466556, lowerbound=1130289.466556, norm of subgrad 41.330225 stepsize= 1.000000 +dualbound = 2266189.084171, lowerbound=1133767.084171, norm of subgrad 1065.500391 dualbound = 2266189.084171, lowerbound=1133767.084171, norm of subgrad 41.420015 stepsize= 1.000000 +dualbound = 2266429.630985, lowerbound=1133817.630985, norm of subgrad 1065.526457 dualbound = 2266429.630985, lowerbound=1133817.630985, norm of subgrad 42.065982 stepsize= 1.000000 +dualbound = 2266652.519744, lowerbound=1131379.519744, norm of subgrad 1064.389271 dualbound = 2266652.519744, lowerbound=1131379.519744, norm of subgrad 42.046269 stepsize= 1.000000 +dualbound = 2266854.785577, lowerbound=1131835.785577, norm of subgrad 1064.592310 dualbound = 2266854.785577, lowerbound=1131835.785577, norm of subgrad 41.512237 stepsize= 1.000000 +dualbound = 2267088.123579, lowerbound=1134201.123579, norm of subgrad 1065.672616 dualbound = 2267088.123579, lowerbound=1134201.123579, norm of subgrad 41.113720 stepsize= 1.000000 +dualbound = 2267311.090705, lowerbound=1134230.090705, norm of subgrad 1065.694183 dualbound = 2267311.090705, lowerbound=1134230.090705, norm of subgrad 41.194261 stepsize= 1.000000 +dualbound = 2267531.556832, lowerbound=1128442.556832, norm of subgrad 1063.000262 dualbound = 2267531.556832, lowerbound=1128442.556832, norm of subgrad 41.802705 stepsize= 1.000000 +dualbound = 2267759.307843, lowerbound=1130039.307843, norm of subgrad 1063.705931 dualbound = 2267759.307843, lowerbound=1130039.307843, norm of subgrad 40.727767 stepsize= 1.000000 +dualbound = 2267993.814702, lowerbound=1129919.814702, norm of subgrad 1063.669975 dualbound = 2267993.814702, lowerbound=1129919.814702, norm of subgrad 41.334088 stepsize= 1.000000 +dualbound = 2268227.419260, lowerbound=1134070.419260, norm of subgrad 1065.604251 dualbound = 2268227.419260, lowerbound=1134070.419260, norm of subgrad 40.934149 stepsize= 1.000000 +dualbound = 2268451.945273, lowerbound=1131460.945273, norm of subgrad 1064.364573 dualbound = 2268451.945273, lowerbound=1131460.945273, norm of subgrad 40.441637 stepsize= 1.000000 +dualbound = 2268678.835938, lowerbound=1127719.835938, norm of subgrad 1062.608976 dualbound = 2268678.835938, lowerbound=1127719.835938, norm of subgrad 40.557252 stepsize= 1.000000 +dualbound = 2268907.899665, lowerbound=1136135.899665, norm of subgrad 1066.589377 dualbound = 2268907.899665, lowerbound=1136135.899665, norm of subgrad 41.304524 stepsize= 1.000000 +dualbound = 2269095.358010, lowerbound=1128112.358010, norm of subgrad 1062.803537 dualbound = 2269095.358010, lowerbound=1128112.358010, norm of subgrad 40.329373 stepsize= 1.000000 +dualbound = 2269331.483434, lowerbound=1133774.483434, norm of subgrad 1065.509964 dualbound = 2269331.483434, lowerbound=1133774.483434, norm of subgrad 42.108496 stepsize= 1.000000 +dualbound = 2269526.084441, lowerbound=1137831.084441, norm of subgrad 1067.421231 dualbound = 2269526.084441, lowerbound=1137831.084441, norm of subgrad 41.852133 stepsize= 1.000000 +dualbound = 2269755.797082, lowerbound=1130976.797082, norm of subgrad 1064.202423 dualbound = 2269755.797082, lowerbound=1130976.797082, norm of subgrad 42.186641 stepsize= 1.000000 +dualbound = 2269980.716678, lowerbound=1132179.716678, norm of subgrad 1064.758525 dualbound = 2269980.716678, lowerbound=1132179.716678, norm of subgrad 41.903694 stepsize= 1.000000 +dualbound = 2270200.086876, lowerbound=1133587.086876, norm of subgrad 1065.433286 dualbound = 2270200.086876, lowerbound=1133587.086876, norm of subgrad 42.194433 stepsize= 1.000000 +dualbound = 2270418.662669, lowerbound=1128595.662669, norm of subgrad 1063.046407 dualbound = 2270418.662669, lowerbound=1128595.662669, norm of subgrad 41.116612 stepsize= 1.000000 +dualbound = 2270659.141183, lowerbound=1133744.141183, norm of subgrad 1065.500418 dualbound = 2270659.141183, lowerbound=1133744.141183, norm of subgrad 42.278582 stepsize= 1.000000 +dualbound = 2270883.299435, lowerbound=1133385.299435, norm of subgrad 1065.289773 dualbound = 2270883.299435, lowerbound=1133385.299435, norm of subgrad 41.001930 stepsize= 1.000000 +dualbound = 2271113.925330, lowerbound=1132445.925330, norm of subgrad 1064.825303 dualbound = 2271113.925330, lowerbound=1132445.925330, norm of subgrad 40.467591 stepsize= 1.000000 +dualbound = 2271356.143641, lowerbound=1131367.143641, norm of subgrad 1064.319099 dualbound = 2271356.143641, lowerbound=1131367.143641, norm of subgrad 40.622879 stepsize= 1.000000 +dualbound = 2271577.908620, lowerbound=1132457.908620, norm of subgrad 1064.870841 dualbound = 2271577.908620, lowerbound=1132457.908620, norm of subgrad 41.397645 stepsize= 1.000000 +dualbound = 2271758.904992, lowerbound=1134739.904992, norm of subgrad 1065.932880 dualbound = 2271758.904992, lowerbound=1134739.904992, norm of subgrad 40.669354 stepsize= 1.000000 +dualbound = 2272007.894147, lowerbound=1132505.894147, norm of subgrad 1064.891494 dualbound = 2272007.894147, lowerbound=1132505.894147, norm of subgrad 41.677202 stepsize= 1.000000 +dualbound = 2272201.011262, lowerbound=1136942.011262, norm of subgrad 1066.966265 dualbound = 2272201.011262, lowerbound=1136942.011262, norm of subgrad 40.842589 stepsize= 1.000000 +dualbound = 2272427.548700, lowerbound=1132787.548700, norm of subgrad 1065.026548 dualbound = 2272427.548700, lowerbound=1132787.548700, norm of subgrad 41.479362 stepsize= 1.000000 +dualbound = 2272651.777154, lowerbound=1130259.777154, norm of subgrad 1063.818959 dualbound = 2272651.777154, lowerbound=1130259.777154, norm of subgrad 40.929555 stepsize= 1.000000 +dualbound = 2272887.777977, lowerbound=1132836.777977, norm of subgrad 1065.038862 dualbound = 2272887.777977, lowerbound=1132836.777977, norm of subgrad 41.315866 stepsize= 1.000000 +dualbound = 2273063.931604, lowerbound=1131559.931604, norm of subgrad 1064.503138 dualbound = 2273063.931604, lowerbound=1131559.931604, norm of subgrad 42.227404 stepsize= 1.000000 +dualbound = 2273299.346569, lowerbound=1132223.346569, norm of subgrad 1064.747551 dualbound = 2273299.346569, lowerbound=1132223.346569, norm of subgrad 41.223961 stepsize= 1.000000 +dualbound = 2273552.873252, lowerbound=1135034.873252, norm of subgrad 1066.049189 dualbound = 2273552.873252, lowerbound=1135034.873252, norm of subgrad 40.982029 stepsize= 1.000000 +dualbound = 2273768.647872, lowerbound=1134675.647872, norm of subgrad 1065.909775 dualbound = 2273768.647872, lowerbound=1134675.647872, norm of subgrad 41.276805 stepsize= 1.000000 +dualbound = 2273961.579241, lowerbound=1133587.579241, norm of subgrad 1065.398789 dualbound = 2273961.579241, lowerbound=1133587.579241, norm of subgrad 40.986966 stepsize= 1.000000 +dualbound = 2274208.098647, lowerbound=1129827.098647, norm of subgrad 1063.644254 dualbound = 2274208.098647, lowerbound=1129827.098647, norm of subgrad 41.934704 stepsize= 1.000000 +dualbound = 2274403.651786, lowerbound=1132411.651786, norm of subgrad 1064.863678 dualbound = 2274403.651786, lowerbound=1132411.651786, norm of subgrad 41.455436 stepsize= 1.000000 +dualbound = 2274624.042238, lowerbound=1134492.042238, norm of subgrad 1065.829744 dualbound = 2274624.042238, lowerbound=1134492.042238, norm of subgrad 41.489643 stepsize= 1.000000 +dualbound = 2274843.258250, lowerbound=1132535.258250, norm of subgrad 1064.924062 dualbound = 2274843.258250, lowerbound=1132535.258250, norm of subgrad 41.799713 stepsize= 1.000000 +dualbound = 2275075.060646, lowerbound=1133028.060646, norm of subgrad 1065.139456 dualbound = 2275075.060646, lowerbound=1133028.060646, norm of subgrad 41.542778 stepsize= 1.000000 +dualbound = 2275290.089495, lowerbound=1132125.089495, norm of subgrad 1064.710801 dualbound = 2275290.089495, lowerbound=1132125.089495, norm of subgrad 41.219278 stepsize= 1.000000 +dualbound = 2275546.215598, lowerbound=1138616.215598, norm of subgrad 1067.719633 dualbound = 2275546.215598, lowerbound=1138616.215598, norm of subgrad 40.805957 stepsize= 1.000000 +dualbound = 2275753.662252, lowerbound=1128881.662252, norm of subgrad 1063.164457 dualbound = 2275753.662252, lowerbound=1128881.662252, norm of subgrad 40.551777 stepsize= 1.000000 +dualbound = 2275989.342700, lowerbound=1134312.342700, norm of subgrad 1065.760922 dualbound = 2275989.342700, lowerbound=1134312.342700, norm of subgrad 42.067570 stepsize= 1.000000 +dualbound = 2276184.801854, lowerbound=1129669.801854, norm of subgrad 1063.568898 dualbound = 2276184.801854, lowerbound=1129669.801854, norm of subgrad 41.285096 stepsize= 1.000000 +dualbound = 2276417.447293, lowerbound=1133756.447293, norm of subgrad 1065.492115 dualbound = 2276417.447293, lowerbound=1133756.447293, norm of subgrad 41.828763 stepsize= 1.000000 +dualbound = 2276629.876990, lowerbound=1133509.876990, norm of subgrad 1065.378279 dualbound = 2276629.876990, lowerbound=1133509.876990, norm of subgrad 41.634477 stepsize= 1.000000 +dualbound = 2276861.035663, lowerbound=1129409.035663, norm of subgrad 1063.421852 dualbound = 2276861.035663, lowerbound=1129409.035663, norm of subgrad 41.087208 stepsize= 1.000000 +dualbound = 2277096.915268, lowerbound=1133739.915269, norm of subgrad 1065.472625 dualbound = 2277096.915268, lowerbound=1133739.915269, norm of subgrad 41.567771 stepsize= 1.000000 +dualbound = 2277307.787451, lowerbound=1134904.787451, norm of subgrad 1066.026166 dualbound = 2277307.787451, lowerbound=1134904.787451, norm of subgrad 41.447222 stepsize= 1.000000 +dualbound = 2277522.547150, lowerbound=1129092.547150, norm of subgrad 1063.295607 dualbound = 2277522.547150, lowerbound=1129092.547150, norm of subgrad 41.469986 stepsize= 1.000000 +dualbound = 2277749.659742, lowerbound=1129819.659742, norm of subgrad 1063.640757 dualbound = 2277749.659742, lowerbound=1129819.659742, norm of subgrad 41.702669 stepsize= 1.000000 +dualbound = 2277961.376862, lowerbound=1136799.376862, norm of subgrad 1066.942537 dualbound = 2277961.376862, lowerbound=1136799.376862, norm of subgrad 42.174840 stepsize= 1.000000 +dualbound = 2278184.804664, lowerbound=1133783.804664, norm of subgrad 1065.480082 dualbound = 2278184.804664, lowerbound=1133783.804664, norm of subgrad 41.078313 stepsize= 1.000000 +dualbound = 2278425.178972, lowerbound=1132035.178972, norm of subgrad 1064.689241 dualbound = 2278425.178972, lowerbound=1132035.178972, norm of subgrad 42.052043 stepsize= 1.000000 +dualbound = 2278624.719221, lowerbound=1133135.719221, norm of subgrad 1065.198441 dualbound = 2278624.719221, lowerbound=1133135.719221, norm of subgrad 41.370766 stepsize= 1.000000 +dualbound = 2278863.756780, lowerbound=1132502.756780, norm of subgrad 1064.869831 dualbound = 2278863.756780, lowerbound=1132502.756780, norm of subgrad 41.037027 stepsize= 1.000000 +dualbound = 2279076.442635, lowerbound=1131635.442635, norm of subgrad 1064.463923 dualbound = 2279076.442635, lowerbound=1131635.442635, norm of subgrad 40.751514 stepsize= 1.000000 +dualbound = 2279328.833536, lowerbound=1137278.833536, norm of subgrad 1067.118004 dualbound = 2279328.833536, lowerbound=1137278.833536, norm of subgrad 41.405204 stepsize= 1.000000 +dualbound = 2279518.659162, lowerbound=1133167.659162, norm of subgrad 1065.190433 dualbound = 2279518.659162, lowerbound=1133167.659162, norm of subgrad 40.654958 stepsize= 1.000000 +dualbound = 2279770.420959, lowerbound=1133385.420959, norm of subgrad 1065.295931 dualbound = 2279770.420959, lowerbound=1133385.420959, norm of subgrad 41.494118 stepsize= 1.000000 +dualbound = 2279962.797872, lowerbound=1128742.797872, norm of subgrad 1063.131600 dualbound = 2279962.797872, lowerbound=1128742.797872, norm of subgrad 41.211369 stepsize= 1.000000 +dualbound = 2280189.531535, lowerbound=1137859.531535, norm of subgrad 1067.405046 dualbound = 2280189.531535, lowerbound=1137859.531535, norm of subgrad 41.481727 stepsize= 1.000000 +dualbound = 2280417.015215, lowerbound=1130187.015215, norm of subgrad 1063.810141 dualbound = 2280417.015215, lowerbound=1130187.015215, norm of subgrad 41.623115 stepsize= 1.000000 +dualbound = 2280607.109025, lowerbound=1137867.109025, norm of subgrad 1067.439511 dualbound = 2280607.109025, lowerbound=1137867.109025, norm of subgrad 41.834123 stepsize= 1.000000 +dualbound = 2280839.216467, lowerbound=1126839.216467, norm of subgrad 1062.249131 dualbound = 2280839.216467, lowerbound=1126839.216467, norm of subgrad 42.025081 stepsize= 1.000000 +dualbound = 2281067.640844, lowerbound=1134502.640844, norm of subgrad 1065.837530 dualbound = 2281067.640844, lowerbound=1134502.640844, norm of subgrad 41.658425 stepsize= 1.000000 +dualbound = 2281292.557055, lowerbound=1136684.557055, norm of subgrad 1066.847485 dualbound = 2281292.557055, lowerbound=1136684.557055, norm of subgrad 41.278520 stepsize= 1.000000 +dualbound = 2281511.268373, lowerbound=1134159.268373, norm of subgrad 1065.669399 dualbound = 2281511.268373, lowerbound=1134159.268373, norm of subgrad 41.360746 stepsize= 1.000000 +dualbound = 2281708.488171, lowerbound=1129806.488171, norm of subgrad 1063.626574 dualbound = 2281708.488171, lowerbound=1129806.488171, norm of subgrad 41.136599 stepsize= 1.000000 +dualbound = 2281958.202749, lowerbound=1135305.202749, norm of subgrad 1066.215364 dualbound = 2281958.202749, lowerbound=1135305.202749, norm of subgrad 41.948952 stepsize= 1.000000 +dualbound = 2282159.248348, lowerbound=1133439.248348, norm of subgrad 1065.321664 dualbound = 2282159.248348, lowerbound=1133439.248348, norm of subgrad 40.890654 stepsize= 1.000000 +dualbound = 2282400.604501, lowerbound=1135985.604501, norm of subgrad 1066.525482 dualbound = 2282400.604501, lowerbound=1135985.604501, norm of subgrad 41.621583 stepsize= 1.000000 +dualbound = 2282614.122688, lowerbound=1133160.122688, norm of subgrad 1065.172344 dualbound = 2282614.122688, lowerbound=1133160.122688, norm of subgrad 40.564987 stepsize= 1.000000 +dualbound = 2282852.759939, lowerbound=1133424.759939, norm of subgrad 1065.321435 dualbound = 2282852.759939, lowerbound=1133424.759939, norm of subgrad 41.516711 stepsize= 1.000000 +dualbound = 2283026.235569, lowerbound=1133591.235569, norm of subgrad 1065.410829 dualbound = 2283026.235569, lowerbound=1133591.235569, norm of subgrad 41.017992 stepsize= 1.000000 +dualbound = 2283295.363761, lowerbound=1134043.363761, norm of subgrad 1065.594840 dualbound = 2283295.363761, lowerbound=1134043.363761, norm of subgrad 41.450310 stepsize= 1.000000 +dualbound = 2283500.807272, lowerbound=1136779.807272, norm of subgrad 1066.869630 dualbound = 2283500.807272, lowerbound=1136779.807272, norm of subgrad 40.452979 stepsize= 1.000000 +dualbound = 2283741.402813, lowerbound=1131278.402813, norm of subgrad 1064.297610 dualbound = 2283741.402813, lowerbound=1131278.402813, norm of subgrad 41.129011 stepsize= 1.000000 +dualbound = 2283919.135143, lowerbound=1136137.135143, norm of subgrad 1066.612458 dualbound = 2283919.135143, lowerbound=1136137.135143, norm of subgrad 41.264177 stepsize= 1.000000 +dualbound = 2284137.415353, lowerbound=1135390.415353, norm of subgrad 1066.248759 dualbound = 2284137.415353, lowerbound=1135390.415353, norm of subgrad 41.403867 stepsize= 1.000000 +dualbound = 2284350.681727, lowerbound=1132211.681727, norm of subgrad 1064.760387 dualbound = 2284350.681727, lowerbound=1132211.681727, norm of subgrad 41.427845 stepsize= 1.000000 +dualbound = 2284581.978261, lowerbound=1133232.978261, norm of subgrad 1065.203726 dualbound = 2284581.978261, lowerbound=1133232.978261, norm of subgrad 40.709907 stepsize= 1.000000 +dualbound = 2284816.064750, lowerbound=1134420.064750, norm of subgrad 1065.761730 dualbound = 2284816.064750, lowerbound=1134420.064750, norm of subgrad 40.768695 stepsize= 1.000000 +dualbound = 2285042.696414, lowerbound=1133079.696414, norm of subgrad 1065.141632 dualbound = 2285042.696414, lowerbound=1133079.696414, norm of subgrad 40.910044 stepsize= 1.000000 +dualbound = 2285264.836586, lowerbound=1134695.836586, norm of subgrad 1065.894853 dualbound = 2285264.836586, lowerbound=1134695.836586, norm of subgrad 40.720267 stepsize= 1.000000 +dualbound = 2285493.161783, lowerbound=1139139.161783, norm of subgrad 1068.030974 dualbound = 2285493.161783, lowerbound=1139139.161783, norm of subgrad 42.182048 stepsize= 1.000000 +dualbound = 2285649.493262, lowerbound=1132040.493262, norm of subgrad 1064.663559 dualbound = 2285649.493262, lowerbound=1132040.493262, norm of subgrad 40.302996 stepsize= 1.000000 +dualbound = 2285937.259100, lowerbound=1136586.259100, norm of subgrad 1066.797665 dualbound = 2285937.259100, lowerbound=1136586.259100, norm of subgrad 41.937642 stepsize= 1.000000 +dualbound = 2286120.023712, lowerbound=1132553.023712, norm of subgrad 1064.899537 dualbound = 2286120.023712, lowerbound=1132553.023712, norm of subgrad 40.506353 stepsize= 1.000000 +dualbound = 2286344.714527, lowerbound=1133724.714527, norm of subgrad 1065.489894 dualbound = 2286344.714527, lowerbound=1133724.714527, norm of subgrad 42.055806 stepsize= 1.000000 +dualbound = 2286541.640848, lowerbound=1130761.640848, norm of subgrad 1064.077366 dualbound = 2286541.640848, lowerbound=1130761.640848, norm of subgrad 41.181626 stepsize= 1.000000 +dualbound = 2286796.392597, lowerbound=1137095.392597, norm of subgrad 1067.054072 dualbound = 2286796.392597, lowerbound=1137095.392597, norm of subgrad 41.997045 stepsize= 1.000000 +dualbound = 2287000.160328, lowerbound=1135023.160328, norm of subgrad 1066.074181 dualbound = 2287000.160328, lowerbound=1135023.160328, norm of subgrad 41.167557 stepsize= 1.000000 +dualbound = 2287235.801042, lowerbound=1135478.801042, norm of subgrad 1066.281295 dualbound = 2287235.801042, lowerbound=1135478.801042, norm of subgrad 41.384064 stepsize= 1.000000 +dualbound = 2287448.733745, lowerbound=1134138.733745, norm of subgrad 1065.663518 dualbound = 2287448.733745, lowerbound=1134138.733745, norm of subgrad 41.387591 stepsize= 1.000000 +dualbound = 2287670.054169, lowerbound=1132540.054169, norm of subgrad 1064.927253 dualbound = 2287670.054169, lowerbound=1132540.054169, norm of subgrad 41.848780 stepsize= 1.000000 +dualbound = 2287873.790763, lowerbound=1136125.790763, norm of subgrad 1066.582294 dualbound = 2287873.790763, lowerbound=1136125.790763, norm of subgrad 40.935762 stepsize= 1.000000 +dualbound = 2288120.843823, lowerbound=1135505.843823, norm of subgrad 1066.262090 dualbound = 2288120.843823, lowerbound=1135505.843823, norm of subgrad 40.694632 stepsize= 1.000000 +dualbound = 2288351.534068, lowerbound=1133936.534068, norm of subgrad 1065.548466 dualbound = 2288351.534068, lowerbound=1133936.534068, norm of subgrad 41.081507 stepsize= 1.000000 +dualbound = 2288529.906096, lowerbound=1135524.906096, norm of subgrad 1066.314169 dualbound = 2288529.906096, lowerbound=1135524.906096, norm of subgrad 40.980142 stepsize= 1.000000 +dualbound = 2288761.039686, lowerbound=1132922.039686, norm of subgrad 1065.069500 dualbound = 2288761.039686, lowerbound=1132922.039686, norm of subgrad 41.013822 stepsize= 1.000000 +dualbound = 2288974.537046, lowerbound=1136857.537046, norm of subgrad 1066.966043 dualbound = 2288974.537046, lowerbound=1136857.537046, norm of subgrad 42.101038 stepsize= 1.000000 +dualbound = 2289185.794756, lowerbound=1132403.794756, norm of subgrad 1064.850597 dualbound = 2289185.794756, lowerbound=1132403.794756, norm of subgrad 41.403595 stepsize= 1.000000 +dualbound = 2289416.411816, lowerbound=1137903.411816, norm of subgrad 1067.423258 dualbound = 2289416.411816, lowerbound=1137903.411816, norm of subgrad 41.468266 stepsize= 1.000000 +dualbound = 2289607.154758, lowerbound=1136554.154758, norm of subgrad 1066.807928 dualbound = 2289607.154758, lowerbound=1136554.154758, norm of subgrad 41.421528 stepsize= 1.000000 +dualbound = 2289839.391878, lowerbound=1131675.391878, norm of subgrad 1064.505233 dualbound = 2289839.391878, lowerbound=1131675.391878, norm of subgrad 41.572071 stepsize= 1.000000 +dualbound = 2290069.217660, lowerbound=1133102.217660, norm of subgrad 1065.152204 dualbound = 2290069.217660, lowerbound=1133102.217660, norm of subgrad 40.949063 stepsize= 1.000000 +dualbound = 2290286.540917, lowerbound=1136942.540917, norm of subgrad 1066.951986 dualbound = 2290286.540917, lowerbound=1136942.540917, norm of subgrad 40.759333 stepsize= 1.000000 +dualbound = 2290516.229016, lowerbound=1132530.229016, norm of subgrad 1064.872400 dualbound = 2290516.229016, lowerbound=1132530.229016, norm of subgrad 40.653267 stepsize= 1.000000 +dualbound = 2290728.229276, lowerbound=1137029.229276, norm of subgrad 1067.027286 dualbound = 2290728.229276, lowerbound=1137029.229276, norm of subgrad 41.593272 stepsize= 1.000000 +dualbound = 2290913.499436, lowerbound=1132592.499436, norm of subgrad 1064.969718 dualbound = 2290913.499436, lowerbound=1132592.499436, norm of subgrad 41.872069 stepsize= 1.000000 +dualbound = 2291141.322906, lowerbound=1134129.322906, norm of subgrad 1065.662387 dualbound = 2291141.322906, lowerbound=1134129.322906, norm of subgrad 41.651212 stepsize= 1.000000 +dualbound = 2291356.042022, lowerbound=1136800.042022, norm of subgrad 1066.921760 dualbound = 2291356.042022, lowerbound=1136800.042022, norm of subgrad 41.673962 stepsize= 1.000000 +dualbound = 2291611.993389, lowerbound=1135237.993389, norm of subgrad 1066.134604 dualbound = 2291611.993389, lowerbound=1135237.993389, norm of subgrad 40.754771 stepsize= 1.000000 +dualbound = 2291812.482657, lowerbound=1138772.482657, norm of subgrad 1067.832142 dualbound = 2291812.482657, lowerbound=1138772.482657, norm of subgrad 41.152026 stepsize= 1.000000 +dualbound = 2292034.700640, lowerbound=1130631.700640, norm of subgrad 1063.981532 dualbound = 2292034.700640, lowerbound=1130631.700640, norm of subgrad 40.585933 stepsize= 1.000000 +dualbound = 2292245.795023, lowerbound=1134566.795023, norm of subgrad 1065.837603 dualbound = 2292245.795023, lowerbound=1134566.795023, norm of subgrad 40.670559 stepsize= 1.000000 +dualbound = 2292508.004708, lowerbound=1136573.004708, norm of subgrad 1066.768956 dualbound = 2292508.004708, lowerbound=1136573.004708, norm of subgrad 41.051306 stepsize= 1.000000 +dualbound = 2292708.083239, lowerbound=1137484.083239, norm of subgrad 1067.195429 dualbound = 2292708.083239, lowerbound=1137484.083239, norm of subgrad 40.275036 stepsize= 1.000000 +dualbound = 2292942.347298, lowerbound=1130209.347298, norm of subgrad 1063.788206 dualbound = 2292942.347298, lowerbound=1130209.347298, norm of subgrad 40.868864 stepsize= 1.000000 +dualbound = 2293122.736178, lowerbound=1134153.736178, norm of subgrad 1065.669149 dualbound = 2293122.736178, lowerbound=1134153.736178, norm of subgrad 40.955938 stepsize= 1.000000 +dualbound = 2293340.496406, lowerbound=1139370.496406, norm of subgrad 1068.114927 dualbound = 2293340.496406, lowerbound=1139370.496406, norm of subgrad 41.433805 stepsize= 1.000000 +dualbound = 2293549.700865, lowerbound=1133170.700865, norm of subgrad 1065.215331 dualbound = 2293549.700865, lowerbound=1133170.700865, norm of subgrad 41.499451 stepsize= 1.000000 +dualbound = 2293758.917830, lowerbound=1132097.917830, norm of subgrad 1064.694753 dualbound = 2293758.917830, lowerbound=1132097.917830, norm of subgrad 41.063572 stepsize= 1.000000 +dualbound = 2293991.877777, lowerbound=1137084.877777, norm of subgrad 1067.036025 dualbound = 2293991.877777, lowerbound=1137084.877777, norm of subgrad 41.399999 stepsize= 1.000000 +dualbound = 2294209.634998, lowerbound=1134657.634998, norm of subgrad 1065.927125 dualbound = 2294209.634998, lowerbound=1134657.634998, norm of subgrad 41.961378 stepsize= 1.000000 +dualbound = 2294403.684019, lowerbound=1138506.684019, norm of subgrad 1067.720321 dualbound = 2294403.684019, lowerbound=1138506.684019, norm of subgrad 41.401075 stepsize= 1.000000 +dualbound = 2294630.874360, lowerbound=1133660.874360, norm of subgrad 1065.446796 dualbound = 2294630.874360, lowerbound=1133660.874360, norm of subgrad 41.751531 stepsize= 1.000000 +dualbound = 2294834.348384, lowerbound=1134585.348384, norm of subgrad 1065.857096 dualbound = 2294834.348384, lowerbound=1134585.348384, norm of subgrad 40.859198 stepsize= 1.000000 +dualbound = 2295079.809572, lowerbound=1133959.809572, norm of subgrad 1065.561734 dualbound = 2295079.809572, lowerbound=1133959.809572, norm of subgrad 41.321437 stepsize= 1.000000 +dualbound = 2295299.822251, lowerbound=1134204.822251, norm of subgrad 1065.688426 dualbound = 2295299.822251, lowerbound=1134204.822251, norm of subgrad 41.316010 stepsize= 1.000000 +dualbound = 2295505.462844, lowerbound=1135339.462844, norm of subgrad 1066.230961 dualbound = 2295505.462844, lowerbound=1135339.462844, norm of subgrad 41.408219 stepsize= 1.000000 +dualbound = 2295724.463427, lowerbound=1138791.463427, norm of subgrad 1067.808252 dualbound = 2295724.463427, lowerbound=1138791.463427, norm of subgrad 40.521606 stepsize= 1.000000 +dualbound = 2295956.194253, lowerbound=1137633.194253, norm of subgrad 1067.308388 dualbound = 2295956.194253, lowerbound=1137633.194253, norm of subgrad 41.781944 stepsize= 1.000000 +dualbound = 2296118.477703, lowerbound=1135275.477703, norm of subgrad 1066.204707 dualbound = 2296118.477703, lowerbound=1135275.477703, norm of subgrad 40.979061 stepsize= 1.000000 +dualbound = 2296375.655374, lowerbound=1131768.655374, norm of subgrad 1064.542463 dualbound = 2296375.655374, lowerbound=1131768.655374, norm of subgrad 41.703449 stepsize= 1.000000 +dualbound = 2296577.656682, lowerbound=1138630.656682, norm of subgrad 1067.775565 dualbound = 2296577.656682, lowerbound=1138630.656682, norm of subgrad 41.424646 stepsize= 1.000000 +dualbound = 2296797.161842, lowerbound=1133649.161842, norm of subgrad 1065.456786 dualbound = 2296797.161842, lowerbound=1133649.161842, norm of subgrad 42.053599 stepsize= 1.000000 +dualbound = 2297001.737489, lowerbound=1136757.737489, norm of subgrad 1066.897248 dualbound = 2297001.737489, lowerbound=1136757.737489, norm of subgrad 41.431578 stepsize= 1.000000 +dualbound = 2297255.550680, lowerbound=1133094.550680, norm of subgrad 1065.159871 dualbound = 2297255.550680, lowerbound=1133094.550680, norm of subgrad 41.530870 stepsize= 1.000000 +dualbound = 2297466.924140, lowerbound=1139159.924140, norm of subgrad 1068.031331 dualbound = 2297466.924140, lowerbound=1139159.924140, norm of subgrad 41.741747 stepsize= 1.000000 +dualbound = 2297671.808181, lowerbound=1131322.808181, norm of subgrad 1064.339142 dualbound = 2297671.808181, lowerbound=1131322.808181, norm of subgrad 41.229650 stepsize= 1.000000 +dualbound = 2297897.905250, lowerbound=1137515.905250, norm of subgrad 1067.232358 dualbound = 2297897.905250, lowerbound=1137515.905250, norm of subgrad 41.171557 stepsize= 1.000000 +dualbound = 2298137.072789, lowerbound=1137374.072789, norm of subgrad 1067.124675 dualbound = 2298137.072789, lowerbound=1137374.072789, norm of subgrad 40.251305 stepsize= 1.000000 +dualbound = 2298329.481429, lowerbound=1133953.481429, norm of subgrad 1065.573311 dualbound = 2298329.481429, lowerbound=1133953.481429, norm of subgrad 41.053729 stepsize= 1.000000 +dualbound = 2298538.751533, lowerbound=1135482.751533, norm of subgrad 1066.281272 dualbound = 2298538.751533, lowerbound=1135482.751533, norm of subgrad 41.015486 stepsize= 1.000000 +dualbound = 2298785.110264, lowerbound=1135889.110264, norm of subgrad 1066.452113 dualbound = 2298785.110264, lowerbound=1135889.110264, norm of subgrad 40.955570 stepsize= 1.000000 +dualbound = 2298976.534434, lowerbound=1137627.534434, norm of subgrad 1067.294493 dualbound = 2298976.534434, lowerbound=1137627.534434, norm of subgrad 41.005172 stepsize= 1.000000 +dualbound = 2299194.547933, lowerbound=1141064.547933, norm of subgrad 1068.936644 dualbound = 2299194.547933, lowerbound=1141064.547933, norm of subgrad 42.178353 stepsize= 1.000000 +dualbound = 2299369.015313, lowerbound=1133413.015313, norm of subgrad 1065.333288 dualbound = 2299369.015313, lowerbound=1133413.015313, norm of subgrad 41.188195 stepsize= 1.000000 +dualbound = 2299638.357530, lowerbound=1135295.357530, norm of subgrad 1066.185893 dualbound = 2299638.357530, lowerbound=1135295.357530, norm of subgrad 41.549275 stepsize= 1.000000 +dualbound = 2299854.028576, lowerbound=1136683.028576, norm of subgrad 1066.822398 dualbound = 2299854.028576, lowerbound=1136683.028576, norm of subgrad 40.529878 stepsize= 1.000000 +dualbound = 2300074.592558, lowerbound=1136897.592558, norm of subgrad 1066.946387 dualbound = 2300074.592558, lowerbound=1136897.592558, norm of subgrad 41.201505 stepsize= 1.000000 +dualbound = 2300284.536055, lowerbound=1134157.536055, norm of subgrad 1065.660610 dualbound = 2300284.536055, lowerbound=1134157.536055, norm of subgrad 41.048063 stepsize= 1.000000 +dualbound = 2300495.478036, lowerbound=1135562.478036, norm of subgrad 1066.350542 dualbound = 2300495.478036, lowerbound=1135562.478036, norm of subgrad 41.856206 stepsize= 1.000000 +dualbound = 2300696.006336, lowerbound=1130866.006336, norm of subgrad 1064.101972 dualbound = 2300696.006336, lowerbound=1130866.006336, norm of subgrad 40.589756 stepsize= 1.000000 +dualbound = 2300948.394321, lowerbound=1137305.394321, norm of subgrad 1067.130917 dualbound = 2300948.394321, lowerbound=1137305.394321, norm of subgrad 41.417243 stepsize= 1.000000 +dualbound = 2301101.458205, lowerbound=1138526.458205, norm of subgrad 1067.725835 dualbound = 2301101.458205, lowerbound=1138526.458205, norm of subgrad 40.805194 stepsize= 1.000000 +dualbound = 2301324.149902, lowerbound=1136538.149902, norm of subgrad 1066.807925 dualbound = 2301324.149902, lowerbound=1136538.149902, norm of subgrad 41.996330 stepsize= 1.000000 +dualbound = 2301533.032140, lowerbound=1136863.032140, norm of subgrad 1066.921287 dualbound = 2301533.032140, lowerbound=1136863.032140, norm of subgrad 40.827469 stepsize= 1.000000 +dualbound = 2301788.380068, lowerbound=1134331.380068, norm of subgrad 1065.753433 dualbound = 2301788.380068, lowerbound=1134331.380068, norm of subgrad 41.884937 stepsize= 1.000000 +dualbound = 2301972.172868, lowerbound=1136356.172868, norm of subgrad 1066.677633 dualbound = 2301972.172868, lowerbound=1136356.172868, norm of subgrad 40.358305 stepsize= 1.000000 +dualbound = 2302210.234058, lowerbound=1134382.234058, norm of subgrad 1065.768377 dualbound = 2302210.234058, lowerbound=1134382.234058, norm of subgrad 41.449502 stepsize= 1.000000 +dualbound = 2302402.784528, lowerbound=1140713.784528, norm of subgrad 1068.757589 dualbound = 2302402.784528, lowerbound=1140713.784528, norm of subgrad 41.491571 stepsize= 1.000000 +dualbound = 2302621.824525, lowerbound=1134171.824525, norm of subgrad 1065.691712 dualbound = 2302621.824525, lowerbound=1134171.824525, norm of subgrad 41.785643 stepsize= 1.000000 +dualbound = 2302818.637161, lowerbound=1136656.637161, norm of subgrad 1066.863458 dualbound = 2302818.637161, lowerbound=1136656.637161, norm of subgrad 41.687080 stepsize= 1.000000 +dualbound = 2303060.746508, lowerbound=1136568.746508, norm of subgrad 1066.781490 dualbound = 2303060.746508, lowerbound=1136568.746508, norm of subgrad 41.183848 stepsize= 1.000000 +dualbound = 2303267.130749, lowerbound=1137916.130749, norm of subgrad 1067.401111 dualbound = 2303267.130749, lowerbound=1137916.130749, norm of subgrad 40.439884 stepsize= 1.000000 +dualbound = 2303498.916275, lowerbound=1133076.916275, norm of subgrad 1065.152063 dualbound = 2303498.916275, lowerbound=1133076.916275, norm of subgrad 41.276937 stepsize= 1.000000 +dualbound = 2303710.923157, lowerbound=1138995.923157, norm of subgrad 1067.928801 dualbound = 2303710.923157, lowerbound=1138995.923157, norm of subgrad 41.085361 stepsize= 1.000000 +dualbound = 2303922.680692, lowerbound=1132422.680692, norm of subgrad 1064.821901 dualbound = 2303922.680692, lowerbound=1132422.680692, norm of subgrad 40.432135 stepsize= 1.000000 +dualbound = 2304145.061741, lowerbound=1139657.061741, norm of subgrad 1068.208342 dualbound = 2304145.061741, lowerbound=1139657.061741, norm of subgrad 40.427479 stepsize= 1.000000 +dualbound = 2304351.512170, lowerbound=1134058.512170, norm of subgrad 1065.623532 dualbound = 2304351.512170, lowerbound=1134058.512170, norm of subgrad 41.248642 stepsize= 1.000000 +dualbound = 2304557.455115, lowerbound=1138447.455115, norm of subgrad 1067.660740 dualbound = 2304557.455115, lowerbound=1138447.455115, norm of subgrad 40.717846 stepsize= 1.000000 +dualbound = 2304783.400122, lowerbound=1132390.400122, norm of subgrad 1064.834447 dualbound = 2304783.400122, lowerbound=1132390.400122, norm of subgrad 41.327291 stepsize= 1.000000 +dualbound = 2304990.917114, lowerbound=1140454.917114, norm of subgrad 1068.616824 dualbound = 2304990.917114, lowerbound=1140454.917114, norm of subgrad 41.164511 stepsize= 1.000000 +dualbound = 2305209.424427, lowerbound=1134420.424427, norm of subgrad 1065.809751 dualbound = 2305209.424427, lowerbound=1134420.424427, norm of subgrad 41.815156 stepsize= 1.000000 +dualbound = 2305413.745064, lowerbound=1137262.745064, norm of subgrad 1067.116556 dualbound = 2305413.745064, lowerbound=1137262.745064, norm of subgrad 40.979515 stepsize= 1.000000 +dualbound = 2305656.178918, lowerbound=1135426.178918, norm of subgrad 1066.243021 dualbound = 2305656.178918, lowerbound=1135426.178918, norm of subgrad 41.114886 stepsize= 1.000000 +dualbound = 2305857.722714, lowerbound=1141010.722714, norm of subgrad 1068.882932 dualbound = 2305857.722714, lowerbound=1141010.722714, norm of subgrad 41.249773 stepsize= 1.000000 +dualbound = 2306073.269905, lowerbound=1133089.269905, norm of subgrad 1065.156453 dualbound = 2306073.269905, lowerbound=1133089.269905, norm of subgrad 41.043236 stepsize= 1.000000 +dualbound = 2306266.406390, lowerbound=1139134.406390, norm of subgrad 1068.012362 dualbound = 2306266.406390, lowerbound=1139134.406390, norm of subgrad 41.341704 stepsize= 1.000000 +dualbound = 2306471.382039, lowerbound=1133628.382039, norm of subgrad 1065.446095 dualbound = 2306471.382039, lowerbound=1133628.382039, norm of subgrad 41.856608 stepsize= 1.000000 +dualbound = 2306722.983938, lowerbound=1138332.983938, norm of subgrad 1067.620712 dualbound = 2306722.983938, lowerbound=1138332.983938, norm of subgrad 41.624535 stepsize= 1.000000 +dualbound = 2306925.461236, lowerbound=1133356.461236, norm of subgrad 1065.314724 dualbound = 2306925.461236, lowerbound=1133356.461236, norm of subgrad 41.731011 stepsize= 1.000000 +dualbound = 2307138.344386, lowerbound=1135841.344386, norm of subgrad 1066.483635 dualbound = 2307138.344386, lowerbound=1135841.344386, norm of subgrad 41.939041 stepsize= 1.000000 +dualbound = 2307303.997118, lowerbound=1135315.997118, norm of subgrad 1066.214330 dualbound = 2307303.997118, lowerbound=1135315.997118, norm of subgrad 40.775639 stepsize= 1.000000 +dualbound = 2307577.161301, lowerbound=1141208.161301, norm of subgrad 1068.943947 dualbound = 2307577.161301, lowerbound=1141208.161301, norm of subgrad 41.305740 stepsize= 1.000000 +dualbound = 2307788.067202, lowerbound=1135785.067202, norm of subgrad 1066.412710 dualbound = 2307788.067202, lowerbound=1135785.067202, norm of subgrad 40.766480 stepsize= 1.000000 +dualbound = 2308008.296485, lowerbound=1133758.296485, norm of subgrad 1065.469050 dualbound = 2308008.296485, lowerbound=1133758.296485, norm of subgrad 41.063722 stepsize= 1.000000 +dualbound = 2308211.821763, lowerbound=1136536.821763, norm of subgrad 1066.758090 dualbound = 2308211.821763, lowerbound=1136536.821763, norm of subgrad 40.491052 stepsize= 1.000000 +dualbound = 2308428.987356, lowerbound=1136138.987356, norm of subgrad 1066.577699 dualbound = 2308428.987356, lowerbound=1136138.987356, norm of subgrad 40.818692 stepsize= 1.000000 +dualbound = 2308638.706361, lowerbound=1140669.706361, norm of subgrad 1068.724336 dualbound = 2308638.706361, lowerbound=1140669.706361, norm of subgrad 41.372926 stepsize= 1.000000 +dualbound = 2308859.410485, lowerbound=1136994.410485, norm of subgrad 1066.970670 dualbound = 2308859.410485, lowerbound=1136994.410485, norm of subgrad 40.653464 stepsize= 1.000000 +dualbound = 2309083.563353, lowerbound=1137000.563353, norm of subgrad 1066.999795 dualbound = 2309083.563353, lowerbound=1137000.563353, norm of subgrad 41.378169 stepsize= 1.000000 +dualbound = 2309282.776127, lowerbound=1136102.776127, norm of subgrad 1066.559317 dualbound = 2309282.776127, lowerbound=1136102.776127, norm of subgrad 40.561223 stepsize= 1.000000 +dualbound = 2309508.620555, lowerbound=1136004.620555, norm of subgrad 1066.555962 dualbound = 2309508.620555, lowerbound=1136004.620555, norm of subgrad 41.986241 stepsize= 1.000000 +dualbound = 2309702.051726, lowerbound=1138869.051726, norm of subgrad 1067.904514 dualbound = 2309702.051726, lowerbound=1138869.051726, norm of subgrad 41.766388 stepsize= 1.000000 +dualbound = 2309909.314234, lowerbound=1134342.314234, norm of subgrad 1065.768415 dualbound = 2309909.314234, lowerbound=1134342.314234, norm of subgrad 41.560348 stepsize= 1.000000 +dualbound = 2310145.200728, lowerbound=1137239.200728, norm of subgrad 1067.092405 dualbound = 2310145.200728, lowerbound=1137239.200728, norm of subgrad 41.023000 stepsize= 1.000000 +dualbound = 2310372.831569, lowerbound=1138244.831569, norm of subgrad 1067.561629 dualbound = 2310372.831569, lowerbound=1138244.831569, norm of subgrad 40.873351 stepsize= 1.000000 +dualbound = 2310558.558991, lowerbound=1134287.558991, norm of subgrad 1065.718330 dualbound = 2310558.558991, lowerbound=1134287.558991, norm of subgrad 40.666048 stepsize= 1.000000 +dualbound = 2310794.404951, lowerbound=1137875.404951, norm of subgrad 1067.403113 dualbound = 2310794.404951, lowerbound=1137875.404951, norm of subgrad 41.350284 stepsize= 1.000000 +dualbound = 2310978.449693, lowerbound=1137065.449693, norm of subgrad 1067.036293 dualbound = 2310978.449693, lowerbound=1137065.449693, norm of subgrad 41.049296 stepsize= 1.000000 +dualbound = 2311205.508057, lowerbound=1135623.508057, norm of subgrad 1066.334145 dualbound = 2311205.508057, lowerbound=1135623.508057, norm of subgrad 40.890810 stepsize= 1.000000 +dualbound = 2311421.603343, lowerbound=1133951.603343, norm of subgrad 1065.592137 dualbound = 2311421.603343, lowerbound=1133951.603343, norm of subgrad 41.846090 stepsize= 1.000000 +dualbound = 2311611.243653, lowerbound=1135151.243653, norm of subgrad 1066.137535 dualbound = 2311611.243653, lowerbound=1135151.243653, norm of subgrad 41.080900 stepsize= 1.000000 +dualbound = 2311857.195162, lowerbound=1137640.195162, norm of subgrad 1067.265288 dualbound = 2311857.195162, lowerbound=1137640.195162, norm of subgrad 40.754773 stepsize= 1.000000 +dualbound = 2312078.336880, lowerbound=1137778.336880, norm of subgrad 1067.362327 dualbound = 2312078.336880, lowerbound=1137778.336880, norm of subgrad 41.293362 stepsize= 1.000000 +dualbound = 2312281.718359, lowerbound=1139054.718359, norm of subgrad 1067.968032 dualbound = 2312281.718359, lowerbound=1139054.718359, norm of subgrad 41.284155 stepsize= 1.000000 +dualbound = 2312488.742921, lowerbound=1134224.742921, norm of subgrad 1065.729676 dualbound = 2312488.742921, lowerbound=1134224.742921, norm of subgrad 41.976476 stepsize= 1.000000 +dualbound = 2312699.412661, lowerbound=1138767.412661, norm of subgrad 1067.831172 dualbound = 2312699.412661, lowerbound=1138767.412661, norm of subgrad 41.311860 stepsize= 1.000000 +dualbound = 2312936.846982, lowerbound=1135953.846982, norm of subgrad 1066.483402 dualbound = 2312936.846982, lowerbound=1135953.846982, norm of subgrad 40.870947 stepsize= 1.000000 +dualbound = 2313160.442895, lowerbound=1138897.442895, norm of subgrad 1067.872859 dualbound = 2313160.442895, lowerbound=1138897.442895, norm of subgrad 40.970671 stepsize= 1.000000 +dualbound = 2313335.453305, lowerbound=1136083.453305, norm of subgrad 1066.592449 dualbound = 2313335.453305, lowerbound=1136083.453305, norm of subgrad 41.364362 stepsize= 1.000000 +dualbound = 2313559.564160, lowerbound=1138450.564160, norm of subgrad 1067.698723 dualbound = 2313559.564160, lowerbound=1138450.564160, norm of subgrad 41.882107 stepsize= 1.000000 +dualbound = 2313771.011301, lowerbound=1136352.011301, norm of subgrad 1066.702401 dualbound = 2313771.011301, lowerbound=1136352.011301, norm of subgrad 41.393806 stepsize= 1.000000 +dualbound = 2313983.300107, lowerbound=1138762.300107, norm of subgrad 1067.833461 dualbound = 2313983.300107, lowerbound=1138762.300107, norm of subgrad 41.452247 stepsize= 1.000000 +dualbound = 2314232.076541, lowerbound=1134258.076541, norm of subgrad 1065.695114 dualbound = 2314232.076541, lowerbound=1134258.076541, norm of subgrad 41.191946 stepsize= 1.000000 +dualbound = 2314430.432249, lowerbound=1136984.432249, norm of subgrad 1066.999265 dualbound = 2314430.432249, lowerbound=1136984.432249, norm of subgrad 41.247493 stepsize= 1.000000 +dualbound = 2314639.407993, lowerbound=1137330.407993, norm of subgrad 1067.135140 dualbound = 2314639.407993, lowerbound=1137330.407993, norm of subgrad 40.693682 stepsize= 1.000000 +dualbound = 2314869.324982, lowerbound=1137260.324982, norm of subgrad 1067.108394 dualbound = 2314869.324982, lowerbound=1137260.324982, norm of subgrad 41.108600 stepsize= 1.000000 +dualbound = 2315063.550341, lowerbound=1135725.550341, norm of subgrad 1066.427940 dualbound = 2315063.550341, lowerbound=1135725.550341, norm of subgrad 41.680035 stepsize= 1.000000 +dualbound = 2315277.474946, lowerbound=1140517.474946, norm of subgrad 1068.642351 dualbound = 2315277.474946, lowerbound=1140517.474946, norm of subgrad 41.145165 stepsize= 1.000000 +dualbound = 2315497.767752, lowerbound=1134595.767752, norm of subgrad 1065.865736 dualbound = 2315497.767752, lowerbound=1134595.767752, norm of subgrad 41.161788 stepsize= 1.000000 +dualbound = 2315728.357864, lowerbound=1139930.357864, norm of subgrad 1068.349361 dualbound = 2315728.357864, lowerbound=1139930.357864, norm of subgrad 40.872853 stepsize= 1.000000 +dualbound = 2315939.924905, lowerbound=1134841.924905, norm of subgrad 1065.958688 dualbound = 2315939.924905, lowerbound=1134841.924905, norm of subgrad 40.466863 stepsize= 1.000000 +dualbound = 2316158.606535, lowerbound=1138396.606535, norm of subgrad 1067.631306 dualbound = 2316158.606535, lowerbound=1138396.606535, norm of subgrad 40.726915 stepsize= 1.000000 +dualbound = 2316356.227207, lowerbound=1133049.227207, norm of subgrad 1065.154086 dualbound = 2316356.227207, lowerbound=1133049.227207, norm of subgrad 41.250705 stepsize= 1.000000 +dualbound = 2316556.844702, lowerbound=1140451.844702, norm of subgrad 1068.621001 dualbound = 2316556.844702, lowerbound=1140451.844702, norm of subgrad 41.226417 stepsize= 1.000000 +dualbound = 2316774.564397, lowerbound=1136625.564397, norm of subgrad 1066.835303 dualbound = 2316774.564397, lowerbound=1136625.564397, norm of subgrad 41.589899 stepsize= 1.000000 +dualbound = 2316973.590610, lowerbound=1134213.590610, norm of subgrad 1065.711777 dualbound = 2316973.590610, lowerbound=1134213.590610, norm of subgrad 41.557505 stepsize= 1.000000 +dualbound = 2317202.572052, lowerbound=1139304.572052, norm of subgrad 1068.084534 dualbound = 2317202.572052, lowerbound=1139304.572052, norm of subgrad 41.581023 stepsize= 1.000000 +dualbound = 2317403.248386, lowerbound=1142532.248386, norm of subgrad 1069.577135 dualbound = 2317403.248386, lowerbound=1142532.248386, norm of subgrad 40.788189 stepsize= 1.000000 +dualbound = 2317634.251935, lowerbound=1132340.251935, norm of subgrad 1064.801508 dualbound = 2317634.251935, lowerbound=1132340.251935, norm of subgrad 41.146124 stepsize= 1.000000 +dualbound = 2317850.738410, lowerbound=1140606.738410, norm of subgrad 1068.674758 dualbound = 2317850.738410, lowerbound=1140606.738410, norm of subgrad 40.932707 stepsize= 1.000000 +dualbound = 2318062.890769, lowerbound=1134420.890769, norm of subgrad 1065.781352 dualbound = 2318062.890769, lowerbound=1134420.890769, norm of subgrad 41.001858 stepsize= 1.000000 +dualbound = 2318279.717627, lowerbound=1138261.717627, norm of subgrad 1067.591082 dualbound = 2318279.717627, lowerbound=1138261.717627, norm of subgrad 41.301657 stepsize= 1.000000 +dualbound = 2318449.549474, lowerbound=1136946.549474, norm of subgrad 1067.004475 dualbound = 2318449.549474, lowerbound=1136946.549474, norm of subgrad 41.494962 stepsize= 1.000000 +dualbound = 2318713.596215, lowerbound=1134972.596215, norm of subgrad 1066.023732 dualbound = 2318713.596215, lowerbound=1134972.596215, norm of subgrad 41.207363 stepsize= 1.000000 +dualbound = 2318926.169944, lowerbound=1140235.169944, norm of subgrad 1068.481245 dualbound = 2318926.169944, lowerbound=1140235.169944, norm of subgrad 40.367979 stepsize= 1.000000 +dualbound = 2319118.741742, lowerbound=1137899.741742, norm of subgrad 1067.424818 dualbound = 2319118.741742, lowerbound=1137899.741742, norm of subgrad 41.092235 stepsize= 1.000000 +dualbound = 2319320.024518, lowerbound=1132350.024518, norm of subgrad 1064.821593 dualbound = 2319320.024518, lowerbound=1132350.024518, norm of subgrad 41.185954 stepsize= 1.000000 +dualbound = 2319558.492976, lowerbound=1143315.492976, norm of subgrad 1069.946491 dualbound = 2319558.492976, lowerbound=1143315.492976, norm of subgrad 41.333624 stepsize= 1.000000 +dualbound = 2319769.160385, lowerbound=1137031.160385, norm of subgrad 1067.020225 dualbound = 2319769.160385, lowerbound=1137031.160385, norm of subgrad 41.372302 stepsize= 1.000000 +dualbound = 2319985.862500, lowerbound=1135289.862500, norm of subgrad 1066.183785 dualbound = 2319985.862500, lowerbound=1135289.862500, norm of subgrad 40.923124 stepsize= 1.000000 +dualbound = 2320206.126219, lowerbound=1135908.126219, norm of subgrad 1066.460091 dualbound = 2320206.126219, lowerbound=1135908.126219, norm of subgrad 40.611128 stepsize= 1.000000 +dualbound = 2320417.807063, lowerbound=1137259.807063, norm of subgrad 1067.118928 dualbound = 2320417.807063, lowerbound=1137259.807063, norm of subgrad 41.166501 stepsize= 1.000000 +dualbound = 2320628.706007, lowerbound=1136797.706007, norm of subgrad 1066.926289 dualbound = 2320628.706007, lowerbound=1136797.706007, norm of subgrad 41.771988 stepsize= 1.000000 +dualbound = 2320815.259015, lowerbound=1138637.259015, norm of subgrad 1067.772569 dualbound = 2320815.259015, lowerbound=1138637.259015, norm of subgrad 41.079837 stepsize= 1.000000 +dualbound = 2321053.387760, lowerbound=1138748.387760, norm of subgrad 1067.817582 dualbound = 2321053.387760, lowerbound=1138748.387760, norm of subgrad 41.522629 stepsize= 1.000000 +dualbound = 2321271.521034, lowerbound=1139157.521034, norm of subgrad 1068.019907 dualbound = 2321271.521034, lowerbound=1139157.521034, norm of subgrad 41.558793 stepsize= 1.000000 +dualbound = 2321462.721049, lowerbound=1133842.721049, norm of subgrad 1065.526499 dualbound = 2321462.721049, lowerbound=1133842.721049, norm of subgrad 41.172807 stepsize= 1.000000 +dualbound = 2321674.608214, lowerbound=1142528.608214, norm of subgrad 1069.597872 dualbound = 2321674.608214, lowerbound=1142528.608214, norm of subgrad 41.507676 stepsize= 1.000000 +dualbound = 2321902.310263, lowerbound=1133696.310263, norm of subgrad 1065.479850 dualbound = 2321902.310263, lowerbound=1133696.310263, norm of subgrad 42.174661 stepsize= 1.000000 +dualbound = 2322114.598795, lowerbound=1141683.598795, norm of subgrad 1069.179872 dualbound = 2322114.598795, lowerbound=1141683.598795, norm of subgrad 40.918071 stepsize= 1.000000 +dualbound = 2322371.821819, lowerbound=1134969.821819, norm of subgrad 1066.015864 dualbound = 2322371.821819, lowerbound=1134969.821819, norm of subgrad 40.953913 stepsize= 1.000000 +dualbound = 2322577.859897, lowerbound=1136235.859897, norm of subgrad 1066.628736 dualbound = 2322577.859897, lowerbound=1136235.859897, norm of subgrad 40.829378 stepsize= 1.000000 +dualbound = 2322755.772988, lowerbound=1140289.772988, norm of subgrad 1068.525981 dualbound = 2322755.772988, lowerbound=1140289.772988, norm of subgrad 40.446422 stepsize= 1.000000 +dualbound = 2322994.415505, lowerbound=1135946.415505, norm of subgrad 1066.505703 dualbound = 2322994.415505, lowerbound=1135946.415505, norm of subgrad 41.552888 stepsize= 1.000000 +dualbound = 2323166.241245, lowerbound=1135678.241245, norm of subgrad 1066.425919 dualbound = 2323166.241245, lowerbound=1135678.241245, norm of subgrad 41.926432 stepsize= 1.000000 +dualbound = 2323386.649462, lowerbound=1139320.649462, norm of subgrad 1068.113126 dualbound = 2323386.649462, lowerbound=1139320.649462, norm of subgrad 42.016761 stepsize= 1.000000 +dualbound = 2323584.211061, lowerbound=1138204.211061, norm of subgrad 1067.578199 dualbound = 2323584.211061, lowerbound=1138204.211061, norm of subgrad 41.431408 stepsize= 1.000000 +dualbound = 2323853.184569, lowerbound=1135927.184569, norm of subgrad 1066.469495 dualbound = 2323853.184569, lowerbound=1135927.184569, norm of subgrad 41.218606 stepsize= 1.000000 +dualbound = 2324033.411799, lowerbound=1141230.411799, norm of subgrad 1068.971661 dualbound = 2324033.411799, lowerbound=1141230.411799, norm of subgrad 40.622989 stepsize= 1.000000 +dualbound = 2324266.232989, lowerbound=1137341.232989, norm of subgrad 1067.155206 dualbound = 2324266.232989, lowerbound=1137341.232989, norm of subgrad 41.374161 stepsize= 1.000000 +dualbound = 2324468.486221, lowerbound=1140164.486221, norm of subgrad 1068.493559 dualbound = 2324468.486221, lowerbound=1140164.486221, norm of subgrad 41.427687 stepsize= 1.000000 +dualbound = 2324687.799169, lowerbound=1134821.799169, norm of subgrad 1065.980206 dualbound = 2324687.799169, lowerbound=1134821.799169, norm of subgrad 41.368018 stepsize= 1.000000 +dualbound = 2324905.242614, lowerbound=1136342.242614, norm of subgrad 1066.679072 dualbound = 2324905.242614, lowerbound=1136342.242614, norm of subgrad 40.981013 stepsize= 1.000000 +dualbound = 2325106.953950, lowerbound=1139686.953950, norm of subgrad 1068.259778 dualbound = 2325106.953950, lowerbound=1139686.953950, norm of subgrad 41.154724 stepsize= 1.000000 +dualbound = 2325330.707302, lowerbound=1136484.707302, norm of subgrad 1066.757567 dualbound = 2325330.707302, lowerbound=1136484.707302, norm of subgrad 41.361254 stepsize= 1.000000 +dualbound = 2325533.742558, lowerbound=1135661.742558, norm of subgrad 1066.356761 dualbound = 2325533.742558, lowerbound=1135661.742558, norm of subgrad 40.718979 stepsize= 1.000000 +dualbound = 2325772.602955, lowerbound=1141353.602955, norm of subgrad 1069.018523 dualbound = 2325772.602955, lowerbound=1141353.602955, norm of subgrad 41.059230 stepsize= 1.000000 +dualbound = 2325982.787525, lowerbound=1138685.787525, norm of subgrad 1067.769539 dualbound = 2325982.787525, lowerbound=1138685.787525, norm of subgrad 40.696248 stepsize= 1.000000 +dualbound = 2326193.010445, lowerbound=1138927.010445, norm of subgrad 1067.901686 dualbound = 2326193.010445, lowerbound=1138927.010445, norm of subgrad 41.197365 stepsize= 1.000000 +dualbound = 2326396.650140, lowerbound=1133417.650140, norm of subgrad 1065.316221 dualbound = 2326396.650140, lowerbound=1133417.650140, norm of subgrad 41.044363 stepsize= 1.000000 +dualbound = 2326614.217921, lowerbound=1142825.217921, norm of subgrad 1069.704734 dualbound = 2326614.217921, lowerbound=1142825.217921, norm of subgrad 40.750065 stepsize= 1.000000 +dualbound = 2326820.109328, lowerbound=1136336.109328, norm of subgrad 1066.702446 dualbound = 2326820.109328, lowerbound=1136336.109328, norm of subgrad 41.519771 stepsize= 1.000000 +dualbound = 2327003.969931, lowerbound=1140543.969931, norm of subgrad 1068.670656 dualbound = 2327003.969931, lowerbound=1140543.969931, norm of subgrad 41.192968 stepsize= 1.000000 +dualbound = 2327220.988172, lowerbound=1136887.988172, norm of subgrad 1066.936731 dualbound = 2327220.988172, lowerbound=1136887.988172, norm of subgrad 41.024605 stepsize= 1.000000 +dualbound = 2327480.348619, lowerbound=1137254.348619, norm of subgrad 1067.079354 dualbound = 2327480.348619, lowerbound=1137254.348619, norm of subgrad 40.784316 stepsize= 1.000000 +dualbound = 2327674.280136, lowerbound=1138456.280136, norm of subgrad 1067.676580 dualbound = 2327674.280136, lowerbound=1138456.280136, norm of subgrad 40.877029 stepsize= 1.000000 +dualbound = 2327863.688141, lowerbound=1137824.688141, norm of subgrad 1067.385913 dualbound = 2327863.688141, lowerbound=1137824.688141, norm of subgrad 40.956172 stepsize= 1.000000 +dualbound = 2328098.684010, lowerbound=1135318.684010, norm of subgrad 1066.184639 dualbound = 2328098.684010, lowerbound=1135318.684010, norm of subgrad 40.816613 stepsize= 1.000000 +dualbound = 2328333.706565, lowerbound=1137663.706565, norm of subgrad 1067.285204 dualbound = 2328333.706565, lowerbound=1137663.706565, norm of subgrad 40.853672 stepsize= 1.000000 +dualbound = 2328511.577111, lowerbound=1143699.577111, norm of subgrad 1070.164276 dualbound = 2328511.577111, lowerbound=1143699.577111, norm of subgrad 41.591712 stepsize= 1.000000 +dualbound = 2328714.418738, lowerbound=1137962.418738, norm of subgrad 1067.486027 dualbound = 2328714.418738, lowerbound=1137962.418738, norm of subgrad 42.033815 stepsize= 1.000000 +dualbound = 2328917.924897, lowerbound=1137759.924897, norm of subgrad 1067.372440 dualbound = 2328917.924897, lowerbound=1137759.924897, norm of subgrad 41.563279 stepsize= 1.000000 +dualbound = 2329158.295583, lowerbound=1138441.295583, norm of subgrad 1067.683144 dualbound = 2329158.295583, lowerbound=1138441.295583, norm of subgrad 41.789600 stepsize= 1.000000 +dualbound = 2329363.960268, lowerbound=1139064.960268, norm of subgrad 1067.986873 dualbound = 2329363.960268, lowerbound=1139064.960268, norm of subgrad 41.673309 stepsize= 1.000000 +dualbound = 2329599.829458, lowerbound=1137436.829458, norm of subgrad 1067.158296 dualbound = 2329599.829458, lowerbound=1137436.829458, norm of subgrad 40.322068 stepsize= 1.000000 +dualbound = 2329822.598194, lowerbound=1137555.598194, norm of subgrad 1067.247206 dualbound = 2329822.598194, lowerbound=1137555.598194, norm of subgrad 41.033751 stepsize= 1.000000 +dualbound = 2329994.255967, lowerbound=1137966.255967, norm of subgrad 1067.445200 dualbound = 2329994.255967, lowerbound=1137966.255967, norm of subgrad 40.554380 stepsize= 1.000000 +dualbound = 2330230.152325, lowerbound=1137114.152325, norm of subgrad 1067.027719 dualbound = 2330230.152325, lowerbound=1137114.152325, norm of subgrad 40.864365 stepsize= 1.000000 +dualbound = 2330427.848548, lowerbound=1143545.848548, norm of subgrad 1070.077497 dualbound = 2330427.848548, lowerbound=1143545.848548, norm of subgrad 41.445099 stepsize= 1.000000 +dualbound = 2330641.919840, lowerbound=1134311.919840, norm of subgrad 1065.733982 dualbound = 2330641.919840, lowerbound=1134311.919840, norm of subgrad 41.122637 stepsize= 1.000000 +dualbound = 2330864.647191, lowerbound=1137726.647191, norm of subgrad 1067.341392 dualbound = 2330864.647191, lowerbound=1137726.647191, norm of subgrad 41.397190 stepsize= 1.000000 +dualbound = 2331065.935109, lowerbound=1141505.935109, norm of subgrad 1069.093043 dualbound = 2331065.935109, lowerbound=1141505.935109, norm of subgrad 40.685230 stepsize= 1.000000 +dualbound = 2331303.060349, lowerbound=1140221.060349, norm of subgrad 1068.481661 dualbound = 2331303.060349, lowerbound=1140221.060349, norm of subgrad 40.854929 stepsize= 1.000000 +dualbound = 2331519.909856, lowerbound=1132746.909856, norm of subgrad 1064.980709 dualbound = 2331519.909856, lowerbound=1132746.909856, norm of subgrad 40.667549 stepsize= 1.000000 +dualbound = 2331735.202058, lowerbound=1140512.202058, norm of subgrad 1068.669360 dualbound = 2331735.202058, lowerbound=1140512.202058, norm of subgrad 41.920069 stepsize= 1.000000 +dualbound = 2331902.736114, lowerbound=1137473.736114, norm of subgrad 1067.275848 dualbound = 2331902.736114, lowerbound=1137473.736114, norm of subgrad 42.089596 stepsize= 1.000000 +dualbound = 2332099.301365, lowerbound=1137968.301365, norm of subgrad 1067.521570 dualbound = 2332099.301365, lowerbound=1137968.301365, norm of subgrad 42.785105 stepsize= 1.000000 +dualbound = 2332325.737761, lowerbound=1134853.737761, norm of subgrad 1066.001284 dualbound = 2332325.737761, lowerbound=1134853.737761, norm of subgrad 41.610532 stepsize= 1.000000 +dualbound = 2332552.616614, lowerbound=1139670.616614, norm of subgrad 1068.249323 dualbound = 2332552.616614, lowerbound=1139670.616614, norm of subgrad 41.386941 stepsize= 1.000000 +dualbound = 2332790.988617, lowerbound=1135850.988617, norm of subgrad 1066.461433 dualbound = 2332790.988617, lowerbound=1135850.988617, norm of subgrad 41.561665 stepsize= 1.000000 +dualbound = 2332999.230417, lowerbound=1142952.230417, norm of subgrad 1069.791209 dualbound = 2332999.230417, lowerbound=1142952.230417, norm of subgrad 41.342978 stepsize= 1.000000 +dualbound = 2333201.117311, lowerbound=1138723.117311, norm of subgrad 1067.801535 dualbound = 2333201.117311, lowerbound=1138723.117311, norm of subgrad 40.974222 stepsize= 1.000000 +dualbound = 2333412.481735, lowerbound=1136456.481735, norm of subgrad 1066.780428 dualbound = 2333412.481735, lowerbound=1136456.481735, norm of subgrad 42.135074 stepsize= 1.000000 +dualbound = 2333612.154160, lowerbound=1140392.154160, norm of subgrad 1068.559851 dualbound = 2333612.154160, lowerbound=1140392.154160, norm of subgrad 40.344422 stepsize= 1.000000 +dualbound = 2333873.539682, lowerbound=1135210.539682, norm of subgrad 1066.125949 dualbound = 2333873.539682, lowerbound=1135210.539682, norm of subgrad 40.931473 stepsize= 1.000000 +dualbound = 2334059.813865, lowerbound=1141338.813865, norm of subgrad 1069.009735 dualbound = 2334059.813865, lowerbound=1141338.813865, norm of subgrad 40.364269 stepsize= 1.000000 +dualbound = 2334265.976568, lowerbound=1139443.976568, norm of subgrad 1068.142770 dualbound = 2334265.976568, lowerbound=1139443.976568, norm of subgrad 41.123749 stepsize= 1.000000 +dualbound = 2334474.538574, lowerbound=1136063.538574, norm of subgrad 1066.582176 dualbound = 2334474.538574, lowerbound=1136063.538574, norm of subgrad 41.744006 stepsize= 1.000000 +dualbound = 2334682.577658, lowerbound=1140412.577658, norm of subgrad 1068.597949 dualbound = 2334682.577658, lowerbound=1140412.577658, norm of subgrad 41.195134 stepsize= 1.000000 +dualbound = 2334917.356767, lowerbound=1136947.356767, norm of subgrad 1066.975331 dualbound = 2334917.356767, lowerbound=1136947.356767, norm of subgrad 41.518419 stepsize= 1.000000 +dualbound = 2335100.255081, lowerbound=1138060.255081, norm of subgrad 1067.540283 dualbound = 2335100.255081, lowerbound=1138060.255081, norm of subgrad 42.010693 stepsize= 1.000000 +dualbound = 2335337.336671, lowerbound=1138788.336671, norm of subgrad 1067.844716 dualbound = 2335337.336671, lowerbound=1138788.336671, norm of subgrad 41.726270 stepsize= 1.000000 +dualbound = 2335550.927746, lowerbound=1133516.927746, norm of subgrad 1065.376425 dualbound = 2335550.927746, lowerbound=1133516.927746, norm of subgrad 41.516154 stepsize= 1.000000 +dualbound = 2335768.354822, lowerbound=1142014.354822, norm of subgrad 1069.341552 dualbound = 2335768.354822, lowerbound=1142014.354822, norm of subgrad 41.163419 stepsize= 1.000000 +dualbound = 2335966.514679, lowerbound=1134406.514679, norm of subgrad 1065.776484 dualbound = 2335966.514679, lowerbound=1134406.514679, norm of subgrad 40.879822 stepsize= 1.000000 +dualbound = 2336189.895415, lowerbound=1140769.895415, norm of subgrad 1068.778226 dualbound = 2336189.895415, lowerbound=1140769.895415, norm of subgrad 41.717871 stepsize= 1.000000 +dualbound = 2336395.857037, lowerbound=1137782.857037, norm of subgrad 1067.350391 dualbound = 2336395.857037, lowerbound=1137782.857037, norm of subgrad 40.742627 stepsize= 1.000000 +dualbound = 2336614.170881, lowerbound=1139033.170881, norm of subgrad 1067.950453 dualbound = 2336614.170881, lowerbound=1139033.170881, norm of subgrad 41.271223 stepsize= 1.000000 +dualbound = 2336819.273615, lowerbound=1139547.273615, norm of subgrad 1068.204228 dualbound = 2336819.273615, lowerbound=1139547.273615, norm of subgrad 41.450003 stepsize= 1.000000 +dualbound = 2337021.691497, lowerbound=1139398.691497, norm of subgrad 1068.144509 dualbound = 2337021.691497, lowerbound=1139398.691497, norm of subgrad 41.670348 stepsize= 1.000000 +dualbound = 2337232.022751, lowerbound=1135976.022751, norm of subgrad 1066.524272 dualbound = 2337232.022751, lowerbound=1135976.022751, norm of subgrad 41.331964 stepsize= 1.000000 +dualbound = 2337465.776515, lowerbound=1143779.776515, norm of subgrad 1070.161098 dualbound = 2337465.776515, lowerbound=1143779.776515, norm of subgrad 41.215941 stepsize= 1.000000 +dualbound = 2337684.944741, lowerbound=1139547.944741, norm of subgrad 1068.180202 dualbound = 2337684.944741, lowerbound=1139547.944741, norm of subgrad 40.989855 stepsize= 1.000000 +dualbound = 2337876.637882, lowerbound=1138046.637882, norm of subgrad 1067.515638 dualbound = 2337876.637882, lowerbound=1138046.637882, norm of subgrad 41.649648 stepsize= 1.000000 +dualbound = 2338069.336984, lowerbound=1139517.336984, norm of subgrad 1068.184599 dualbound = 2338069.336984, lowerbound=1139517.336984, norm of subgrad 41.154576 stepsize= 1.000000 +dualbound = 2338326.306619, lowerbound=1139024.306619, norm of subgrad 1067.954731 dualbound = 2338326.306619, lowerbound=1139024.306619, norm of subgrad 41.951992 stepsize= 1.000000 +dualbound = 2338504.160696, lowerbound=1136977.160696, norm of subgrad 1067.006636 dualbound = 2338504.160696, lowerbound=1136977.160696, norm of subgrad 41.277767 stepsize= 1.000000 +dualbound = 2338739.844395, lowerbound=1139603.844395, norm of subgrad 1068.217602 dualbound = 2338739.844395, lowerbound=1139603.844395, norm of subgrad 41.481125 stepsize= 1.000000 +dualbound = 2338945.942481, lowerbound=1135012.942481, norm of subgrad 1066.036558 dualbound = 2338945.942481, lowerbound=1135012.942481, norm of subgrad 40.337304 stepsize= 1.000000 +dualbound = 2339179.505549, lowerbound=1144565.505549, norm of subgrad 1070.552897 dualbound = 2339179.505549, lowerbound=1144565.505549, norm of subgrad 41.851679 stepsize= 1.000000 +dualbound = 2339354.137347, lowerbound=1134709.137347, norm of subgrad 1065.943309 dualbound = 2339354.137347, lowerbound=1134709.137347, norm of subgrad 41.238717 stepsize= 1.000000 +dualbound = 2339566.064254, lowerbound=1142505.064254, norm of subgrad 1069.586866 dualbound = 2339566.064254, lowerbound=1142505.064254, norm of subgrad 41.508155 stepsize= 1.000000 +dualbound = 2339779.412990, lowerbound=1138420.412990, norm of subgrad 1067.663998 dualbound = 2339779.412990, lowerbound=1138420.412990, norm of subgrad 41.223158 stepsize= 1.000000 +dualbound = 2339993.345521, lowerbound=1138991.345521, norm of subgrad 1067.944917 dualbound = 2339993.345521, lowerbound=1138991.345521, norm of subgrad 41.580434 stepsize= 1.000000 +dualbound = 2340216.480057, lowerbound=1139932.480057, norm of subgrad 1068.378435 dualbound = 2340216.480057, lowerbound=1139932.480057, norm of subgrad 41.510656 stepsize= 1.000000 +dualbound = 2340444.460467, lowerbound=1139511.460467, norm of subgrad 1068.162188 dualbound = 2340444.460467, lowerbound=1139511.460467, norm of subgrad 41.072867 stepsize= 1.000000 +dualbound = 2340630.971586, lowerbound=1139672.971586, norm of subgrad 1068.257914 dualbound = 2340630.971586, lowerbound=1139672.971586, norm of subgrad 41.091497 stepsize= 1.000000 +dualbound = 2340872.772247, lowerbound=1139269.772247, norm of subgrad 1068.024238 dualbound = 2340872.772247, lowerbound=1139269.772247, norm of subgrad 40.593111 stepsize= 1.000000 +dualbound = 2341094.248975, lowerbound=1138781.248975, norm of subgrad 1067.821263 dualbound = 2341094.248975, lowerbound=1138781.248975, norm of subgrad 41.018005 stepsize= 1.000000 +dualbound = 2341273.776562, lowerbound=1139214.776562, norm of subgrad 1068.069650 dualbound = 2341273.776562, lowerbound=1139214.776562, norm of subgrad 41.683661 stepsize= 1.000000 +dualbound = 2341474.914087, lowerbound=1142541.914087, norm of subgrad 1069.603157 dualbound = 2341474.914087, lowerbound=1142541.914087, norm of subgrad 41.353809 stepsize= 1.000000 +dualbound = 2341730.598021, lowerbound=1140037.598021, norm of subgrad 1068.390190 dualbound = 2341730.598021, lowerbound=1140037.598021, norm of subgrad 40.935119 stepsize= 1.000000 +dualbound = 2341929.718056, lowerbound=1140599.718056, norm of subgrad 1068.698142 dualbound = 2341929.718056, lowerbound=1140599.718056, norm of subgrad 41.414008 stepsize= 1.000000 +dualbound = 2342131.256208, lowerbound=1139325.256208, norm of subgrad 1068.095153 dualbound = 2342131.256208, lowerbound=1139325.256208, norm of subgrad 41.273940 stepsize= 1.000000 +dualbound = 2342317.956836, lowerbound=1138276.956836, norm of subgrad 1067.638495 dualbound = 2342317.956836, lowerbound=1138276.956836, norm of subgrad 41.972618 stepsize= 1.000000 +dualbound = 2342551.721591, lowerbound=1142707.721591, norm of subgrad 1069.704035 dualbound = 2342551.721591, lowerbound=1142707.721591, norm of subgrad 42.341053 stepsize= 1.000000 +dualbound = 2342728.691071, lowerbound=1134616.691071, norm of subgrad 1065.875551 dualbound = 2342728.691071, lowerbound=1134616.691071, norm of subgrad 40.632124 stepsize= 1.000000 +dualbound = 2343005.812475, lowerbound=1142691.812475, norm of subgrad 1069.629287 dualbound = 2343005.812475, lowerbound=1142691.812475, norm of subgrad 41.135403 stepsize= 1.000000 +dualbound = 2343166.160624, lowerbound=1135379.160624, norm of subgrad 1066.261300 dualbound = 2343166.160624, lowerbound=1135379.160624, norm of subgrad 41.162460 stepsize= 1.000000 +dualbound = 2343391.289376, lowerbound=1142741.289376, norm of subgrad 1069.668776 dualbound = 2343391.289376, lowerbound=1142741.289376, norm of subgrad 40.928337 stepsize= 1.000000 +dualbound = 2343624.634924, lowerbound=1136522.634924, norm of subgrad 1066.785656 dualbound = 2343624.634924, lowerbound=1136522.634924, norm of subgrad 41.741413 stepsize= 1.000000 +dualbound = 2343814.996946, lowerbound=1139037.996946, norm of subgrad 1067.955522 dualbound = 2343814.996946, lowerbound=1139037.996946, norm of subgrad 41.004415 stepsize= 1.000000 +dualbound = 2344035.851944, lowerbound=1142353.851944, norm of subgrad 1069.510567 dualbound = 2344035.851944, lowerbound=1142353.851944, norm of subgrad 41.471135 stepsize= 1.000000 +dualbound = 2344252.268471, lowerbound=1138727.268471, norm of subgrad 1067.768827 dualbound = 2344252.268471, lowerbound=1138727.268471, norm of subgrad 40.241975 stepsize= 1.000000 +dualbound = 2344477.483372, lowerbound=1139892.483372, norm of subgrad 1068.348016 dualbound = 2344477.483372, lowerbound=1139892.483372, norm of subgrad 41.233662 stepsize= 1.000000 +dualbound = 2344673.554647, lowerbound=1139614.554647, norm of subgrad 1068.233380 dualbound = 2344673.554647, lowerbound=1139614.554647, norm of subgrad 41.280398 stepsize= 1.000000 +dualbound = 2344888.543897, lowerbound=1141244.543897, norm of subgrad 1069.009141 dualbound = 2344888.543897, lowerbound=1141244.543897, norm of subgrad 41.844823 stepsize= 1.000000 +dualbound = 2345081.066126, lowerbound=1142173.066126, norm of subgrad 1069.424175 dualbound = 2345081.066126, lowerbound=1142173.066126, norm of subgrad 41.079462 stepsize= 1.000000 +dualbound = 2345315.744454, lowerbound=1139042.744454, norm of subgrad 1067.962427 dualbound = 2345315.744454, lowerbound=1139042.744454, norm of subgrad 41.661473 stepsize= 1.000000 +dualbound = 2345536.148678, lowerbound=1144759.148678, norm of subgrad 1070.603638 dualbound = 2345536.148678, lowerbound=1144759.148678, norm of subgrad 40.662074 stepsize= 1.000000 +dualbound = 2345721.653824, lowerbound=1135547.653824, norm of subgrad 1066.316395 dualbound = 2345721.653824, lowerbound=1135547.653824, norm of subgrad 40.847340 stepsize= 1.000000 +dualbound = 2345931.749207, lowerbound=1140933.749207, norm of subgrad 1068.838505 dualbound = 2345931.749207, lowerbound=1140933.749207, norm of subgrad 41.135087 stepsize= 1.000000 +dualbound = 2346143.717605, lowerbound=1140656.717605, norm of subgrad 1068.732295 dualbound = 2346143.717605, lowerbound=1140656.717605, norm of subgrad 41.760848 stepsize= 1.000000 +dualbound = 2346338.968110, lowerbound=1140805.968110, norm of subgrad 1068.789487 dualbound = 2346338.968110, lowerbound=1140805.968110, norm of subgrad 41.234094 stepsize= 1.000000 +dualbound = 2346559.815567, lowerbound=1135994.815567, norm of subgrad 1066.571524 dualbound = 2346559.815567, lowerbound=1135994.815567, norm of subgrad 42.436393 stepsize= 1.000000 +dualbound = 2346745.674864, lowerbound=1145972.674864, norm of subgrad 1071.236050 dualbound = 2346745.674864, lowerbound=1145972.674864, norm of subgrad 41.950677 stepsize= 1.000000 +dualbound = 2346968.626273, lowerbound=1134969.626273, norm of subgrad 1066.029374 dualbound = 2346968.626273, lowerbound=1134969.626273, norm of subgrad 40.889502 stepsize= 1.000000 +dualbound = 2347183.671626, lowerbound=1142926.671626, norm of subgrad 1069.781600 dualbound = 2347183.671626, lowerbound=1142926.671626, norm of subgrad 41.485484 stepsize= 1.000000 +dualbound = 2347400.476769, lowerbound=1141500.476769, norm of subgrad 1069.117616 dualbound = 2347400.476769, lowerbound=1141500.476769, norm of subgrad 41.578903 stepsize= 1.000000 +dualbound = 2347602.500319, lowerbound=1137671.500319, norm of subgrad 1067.322116 dualbound = 2347602.500319, lowerbound=1137671.500319, norm of subgrad 41.316142 stepsize= 1.000000 +dualbound = 2347834.420541, lowerbound=1142746.420541, norm of subgrad 1069.666500 dualbound = 2347834.420541, lowerbound=1142746.420541, norm of subgrad 40.889121 stepsize= 1.000000 +dualbound = 2348058.307166, lowerbound=1140914.307166, norm of subgrad 1068.803213 dualbound = 2348058.307166, lowerbound=1140914.307166, norm of subgrad 40.618796 stepsize= 1.000000 +dualbound = 2348260.309489, lowerbound=1136472.309489, norm of subgrad 1066.738632 dualbound = 2348260.309489, lowerbound=1136472.309489, norm of subgrad 40.755396 stepsize= 1.000000 +dualbound = 2348444.032991, lowerbound=1143967.032991, norm of subgrad 1070.292966 dualbound = 2348444.032991, lowerbound=1143967.032991, norm of subgrad 41.757915 stepsize= 1.000000 +dualbound = 2348673.505620, lowerbound=1139657.505620, norm of subgrad 1068.221656 dualbound = 2348673.505620, lowerbound=1139657.505620, norm of subgrad 40.859180 stepsize= 1.000000 +dualbound = 2348903.664942, lowerbound=1139757.664942, norm of subgrad 1068.301299 dualbound = 2348903.664942, lowerbound=1139757.664942, norm of subgrad 41.715217 stepsize= 1.000000 +dualbound = 2349076.846685, lowerbound=1142207.846685, norm of subgrad 1069.453060 dualbound = 2349076.846685, lowerbound=1142207.846685, norm of subgrad 41.172585 stepsize= 1.000000 +dualbound = 2349299.980807, lowerbound=1146175.980807, norm of subgrad 1071.285200 dualbound = 2349299.980807, lowerbound=1146175.980807, norm of subgrad 41.220555 stepsize= 1.000000 +dualbound = 2349524.350682, lowerbound=1137234.350682, norm of subgrad 1067.078887 dualbound = 2349524.350682, lowerbound=1137234.350682, norm of subgrad 40.587805 stepsize= 1.000000 +dualbound = 2349729.788671, lowerbound=1140809.788671, norm of subgrad 1068.758527 dualbound = 2349729.788671, lowerbound=1140809.788671, norm of subgrad 40.502321 stepsize= 1.000000 +dualbound = 2349959.685473, lowerbound=1140864.685473, norm of subgrad 1068.775320 dualbound = 2349959.685473, lowerbound=1140864.685473, norm of subgrad 40.569654 stepsize= 1.000000 +dualbound = 2350139.899975, lowerbound=1141488.899975, norm of subgrad 1069.093494 dualbound = 2350139.899975, lowerbound=1141488.899975, norm of subgrad 40.647442 stepsize= 1.000000 +dualbound = 2350358.969171, lowerbound=1139855.969171, norm of subgrad 1068.319226 dualbound = 2350358.969171, lowerbound=1139855.969171, norm of subgrad 40.854243 stepsize= 1.000000 +dualbound = 2350575.244634, lowerbound=1141663.244634, norm of subgrad 1069.201686 dualbound = 2350575.244634, lowerbound=1141663.244634, norm of subgrad 41.776494 stepsize= 1.000000 +dualbound = 2350738.166697, lowerbound=1136242.166697, norm of subgrad 1066.707629 dualbound = 2350738.166697, lowerbound=1136242.166697, norm of subgrad 42.260171 stepsize= 1.000000 +dualbound = 2350946.315678, lowerbound=1138107.315678, norm of subgrad 1067.531412 dualbound = 2350946.315678, lowerbound=1138107.315678, norm of subgrad 41.522873 stepsize= 1.000000 +dualbound = 2351205.764417, lowerbound=1146793.764416, norm of subgrad 1071.615493 dualbound = 2351205.764417, lowerbound=1146793.764416, norm of subgrad 42.725270 stepsize= 1.000000 +dualbound = 2351367.898655, lowerbound=1140547.898655, norm of subgrad 1068.661733 dualbound = 2351367.898655, lowerbound=1140547.898655, norm of subgrad 40.646454 stepsize= 1.000000 +dualbound = 2351628.906709, lowerbound=1141012.906709, norm of subgrad 1068.876469 dualbound = 2351628.906709, lowerbound=1141012.906709, norm of subgrad 41.773294 stepsize= 1.000000 +dualbound = 2351821.624766, lowerbound=1139274.624766, norm of subgrad 1068.069579 dualbound = 2351821.624766, lowerbound=1139274.624766, norm of subgrad 41.118342 stepsize= 1.000000 +dualbound = 2352042.356692, lowerbound=1137908.356692, norm of subgrad 1067.433537 dualbound = 2352042.356692, lowerbound=1137908.356692, norm of subgrad 41.553964 stepsize= 1.000000 +dualbound = 2352245.144115, lowerbound=1140610.144115, norm of subgrad 1068.720330 dualbound = 2352245.144115, lowerbound=1140610.144115, norm of subgrad 41.902117 stepsize= 1.000000 +dualbound = 2352449.855788, lowerbound=1143217.855788, norm of subgrad 1069.932641 dualbound = 2352449.855788, lowerbound=1143217.855788, norm of subgrad 41.745798 stepsize= 1.000000 +dualbound = 2352660.622961, lowerbound=1142124.622961, norm of subgrad 1069.441734 dualbound = 2352660.622961, lowerbound=1142124.622961, norm of subgrad 42.329271 stepsize= 1.000000 +dualbound = 2352883.825773, lowerbound=1137127.825773, norm of subgrad 1067.045841 dualbound = 2352883.825773, lowerbound=1137127.825773, norm of subgrad 41.014666 stepsize= 1.000000 +dualbound = 2353105.388735, lowerbound=1140580.388735, norm of subgrad 1068.693777 dualbound = 2353105.388735, lowerbound=1140580.388735, norm of subgrad 41.803863 stepsize= 1.000000 +dualbound = 2353283.288121, lowerbound=1141662.288121, norm of subgrad 1069.193288 dualbound = 2353283.288121, lowerbound=1141662.288121, norm of subgrad 41.108386 stepsize= 1.000000 +dualbound = 2353539.968134, lowerbound=1139115.968134, norm of subgrad 1067.956445 dualbound = 2353539.968134, lowerbound=1139115.968134, norm of subgrad 40.886184 stepsize= 1.000000 +dualbound = 2353751.732624, lowerbound=1142098.732624, norm of subgrad 1069.374459 dualbound = 2353751.732624, lowerbound=1142098.732624, norm of subgrad 40.923887 stepsize= 1.000000 +dualbound = 2353954.118571, lowerbound=1137798.118571, norm of subgrad 1067.361288 dualbound = 2353954.118571, lowerbound=1137798.118571, norm of subgrad 40.796886 stepsize= 1.000000 +dualbound = 2354143.255636, lowerbound=1139781.255636, norm of subgrad 1068.309532 dualbound = 2354143.255636, lowerbound=1139781.255636, norm of subgrad 41.147747 stepsize= 1.000000 +dualbound = 2354363.041229, lowerbound=1142609.041229, norm of subgrad 1069.616306 dualbound = 2354363.041229, lowerbound=1142609.041229, norm of subgrad 41.107002 stepsize= 1.000000 +dualbound = 2354570.243772, lowerbound=1142091.243772, norm of subgrad 1069.349449 dualbound = 2354570.243772, lowerbound=1142091.243772, norm of subgrad 40.301396 stepsize= 1.000000 +dualbound = 2354773.177571, lowerbound=1139786.177571, norm of subgrad 1068.315112 dualbound = 2354773.177571, lowerbound=1139786.177571, norm of subgrad 41.399684 stepsize= 1.000000 +dualbound = 2354964.736357, lowerbound=1142866.736357, norm of subgrad 1069.767609 dualbound = 2354964.736357, lowerbound=1142866.736357, norm of subgrad 41.563912 stepsize= 1.000000 +dualbound = 2355173.424181, lowerbound=1143796.424181, norm of subgrad 1070.203450 dualbound = 2355173.424181, lowerbound=1143796.424181, norm of subgrad 41.805356 stepsize= 1.000000 +dualbound = 2355391.004391, lowerbound=1143439.004391, norm of subgrad 1070.007946 dualbound = 2355391.004391, lowerbound=1143439.004391, norm of subgrad 41.177424 stepsize= 1.000000 +dualbound = 2355600.793828, lowerbound=1140696.793828, norm of subgrad 1068.750576 dualbound = 2355600.793828, lowerbound=1140696.793828, norm of subgrad 41.722769 stepsize= 1.000000 +dualbound = 2355804.326240, lowerbound=1137098.326240, norm of subgrad 1067.040452 dualbound = 2355804.326240, lowerbound=1137098.326240, norm of subgrad 40.994297 stepsize= 1.000000 +dualbound = 2356014.342171, lowerbound=1140936.342171, norm of subgrad 1068.856090 dualbound = 2356014.342171, lowerbound=1140936.342171, norm of subgrad 41.557381 stepsize= 1.000000 +dualbound = 2356242.327127, lowerbound=1140390.327127, norm of subgrad 1068.551041 dualbound = 2356242.327127, lowerbound=1140390.327127, norm of subgrad 40.484379 stepsize= 1.000000 +dualbound = 2356467.588246, lowerbound=1143381.588246, norm of subgrad 1069.968966 dualbound = 2356467.588246, lowerbound=1143381.588246, norm of subgrad 40.954379 stepsize= 1.000000 +dualbound = 2356668.017202, lowerbound=1137350.017202, norm of subgrad 1067.162601 dualbound = 2356668.017202, lowerbound=1137350.017202, norm of subgrad 41.066153 stepsize= 1.000000 +dualbound = 2356861.710184, lowerbound=1146864.710184, norm of subgrad 1071.621067 dualbound = 2356861.710184, lowerbound=1146864.710184, norm of subgrad 41.239459 stepsize= 1.000000 +dualbound = 2357072.062761, lowerbound=1140827.062761, norm of subgrad 1068.785321 dualbound = 2357072.062761, lowerbound=1140827.062761, norm of subgrad 41.053046 stepsize= 1.000000 +dualbound = 2357275.846709, lowerbound=1138969.846709, norm of subgrad 1067.939065 dualbound = 2357275.846709, lowerbound=1138969.846709, norm of subgrad 41.566621 stepsize= 1.000000 +dualbound = 2357465.136560, lowerbound=1137518.136560, norm of subgrad 1067.242773 dualbound = 2357465.136560, lowerbound=1137518.136560, norm of subgrad 40.966936 stepsize= 1.000000 +dualbound = 2357724.777697, lowerbound=1145866.777697, norm of subgrad 1071.129674 dualbound = 2357724.777697, lowerbound=1145866.777697, norm of subgrad 41.371985 stepsize= 1.000000 +dualbound = 2357928.322482, lowerbound=1137739.322482, norm of subgrad 1067.310790 dualbound = 2357928.322482, lowerbound=1137739.322482, norm of subgrad 40.206278 stepsize= 1.000000 +dualbound = 2358143.647287, lowerbound=1141799.647287, norm of subgrad 1069.241155 dualbound = 2358143.647287, lowerbound=1141799.647287, norm of subgrad 41.137876 stepsize= 1.000000 +dualbound = 2358337.427025, lowerbound=1145679.427025, norm of subgrad 1071.082362 dualbound = 2358337.427025, lowerbound=1145679.427025, norm of subgrad 41.614658 stepsize= 1.000000 +dualbound = 2358529.237386, lowerbound=1139871.237386, norm of subgrad 1068.365685 dualbound = 2358529.237386, lowerbound=1139871.237386, norm of subgrad 41.542874 stepsize= 1.000000 +dualbound = 2358739.458599, lowerbound=1138439.458599, norm of subgrad 1067.674791 dualbound = 2358739.458599, lowerbound=1138439.458599, norm of subgrad 41.233739 stepsize= 1.000000 +dualbound = 2358952.817596, lowerbound=1141072.817596, norm of subgrad 1068.927882 dualbound = 2358952.817596, lowerbound=1141072.817596, norm of subgrad 41.801423 stepsize= 1.000000 +dualbound = 2359167.281397, lowerbound=1142397.281397, norm of subgrad 1069.531805 dualbound = 2359167.281397, lowerbound=1142397.281397, norm of subgrad 41.418158 stepsize= 1.000000 +dualbound = 2359399.462726, lowerbound=1141051.462726, norm of subgrad 1068.899183 dualbound = 2359399.462726, lowerbound=1141051.462726, norm of subgrad 41.547338 stepsize= 1.000000 +dualbound = 2359605.459013, lowerbound=1142032.459013, norm of subgrad 1069.335522 dualbound = 2359605.459013, lowerbound=1142032.459013, norm of subgrad 40.644757 stepsize= 1.000000 +dualbound = 2359834.575838, lowerbound=1140276.575838, norm of subgrad 1068.533376 dualbound = 2359834.575838, lowerbound=1140276.575838, norm of subgrad 41.426040 stepsize= 1.000000 +dualbound = 2359981.175170, lowerbound=1140862.175170, norm of subgrad 1068.809700 dualbound = 2359981.175170, lowerbound=1140862.175170, norm of subgrad 40.479616 stepsize= 1.000000 +dualbound = 2360229.429828, lowerbound=1139683.429828, norm of subgrad 1068.272170 dualbound = 2360229.429828, lowerbound=1139683.429828, norm of subgrad 42.074394 stepsize= 1.000000 +dualbound = 2360412.937741, lowerbound=1141248.937741, norm of subgrad 1069.034582 dualbound = 2360412.937741, lowerbound=1141248.937741, norm of subgrad 42.065519 stepsize= 1.000000 +dualbound = 2360626.101591, lowerbound=1140503.101591, norm of subgrad 1068.638901 dualbound = 2360626.101591, lowerbound=1140503.101591, norm of subgrad 41.220915 stepsize= 1.000000 +dualbound = 2360845.274741, lowerbound=1141993.274741, norm of subgrad 1069.301770 dualbound = 2360845.274741, lowerbound=1141993.274741, norm of subgrad 40.400163 stepsize= 1.000000 +dualbound = 2361094.218884, lowerbound=1144566.218884, norm of subgrad 1070.523806 dualbound = 2361094.218884, lowerbound=1144566.218884, norm of subgrad 41.278858 stepsize= 1.000000 +dualbound = 2361258.843067, lowerbound=1141938.843067, norm of subgrad 1069.305309 dualbound = 2361258.843067, lowerbound=1141938.843067, norm of subgrad 40.492273 stepsize= 1.000000 +dualbound = 2361473.528178, lowerbound=1139679.528178, norm of subgrad 1068.265196 dualbound = 2361473.528178, lowerbound=1139679.528178, norm of subgrad 41.541366 stepsize= 1.000000 +dualbound = 2361670.498347, lowerbound=1139236.498347, norm of subgrad 1068.064838 dualbound = 2361670.498347, lowerbound=1139236.498347, norm of subgrad 41.508676 stepsize= 1.000000 +dualbound = 2361892.082027, lowerbound=1141621.082027, norm of subgrad 1069.161392 dualbound = 2361892.082027, lowerbound=1141621.082027, norm of subgrad 41.310818 stepsize= 1.000000 +dualbound = 2362108.686415, lowerbound=1141373.686415, norm of subgrad 1069.029320 dualbound = 2362108.686415, lowerbound=1141373.686415, norm of subgrad 40.824066 stepsize= 1.000000 +dualbound = 2362344.858572, lowerbound=1143282.858572, norm of subgrad 1069.927502 dualbound = 2362344.858572, lowerbound=1143282.858572, norm of subgrad 41.208884 stepsize= 1.000000 +dualbound = 2362526.776976, lowerbound=1141562.776976, norm of subgrad 1069.122433 dualbound = 2362526.776976, lowerbound=1141562.776976, norm of subgrad 40.520592 stepsize= 1.000000 +dualbound = 2362746.364979, lowerbound=1143979.364979, norm of subgrad 1070.276770 dualbound = 2362746.364979, lowerbound=1143979.364979, norm of subgrad 41.624368 stepsize= 1.000000 +dualbound = 2362922.624938, lowerbound=1147505.624938, norm of subgrad 1071.947119 dualbound = 2362922.624938, lowerbound=1147505.624938, norm of subgrad 41.728407 stepsize= 1.000000 +dualbound = 2363146.895286, lowerbound=1135152.895286, norm of subgrad 1066.135496 dualbound = 2363146.895286, lowerbound=1135152.895286, norm of subgrad 41.427893 stepsize= 1.000000 +dualbound = 2363366.671260, lowerbound=1140032.671260, norm of subgrad 1068.415964 dualbound = 2363366.671260, lowerbound=1140032.671260, norm of subgrad 41.228339 stepsize= 1.000000 +dualbound = 2363577.052037, lowerbound=1139716.052037, norm of subgrad 1068.268249 dualbound = 2363577.052037, lowerbound=1139716.052037, norm of subgrad 41.126400 stepsize= 1.000000 +dualbound = 2363763.488802, lowerbound=1145601.488802, norm of subgrad 1071.041777 dualbound = 2363763.488802, lowerbound=1145601.488802, norm of subgrad 41.417831 stepsize= 1.000000 +dualbound = 2363994.381926, lowerbound=1141494.381926, norm of subgrad 1069.103541 dualbound = 2363994.381926, lowerbound=1141494.381926, norm of subgrad 41.459536 stepsize= 1.000000 +dualbound = 2364197.348701, lowerbound=1142860.348701, norm of subgrad 1069.734242 dualbound = 2364197.348701, lowerbound=1142860.348701, norm of subgrad 40.914139 stepsize= 1.000000 +dualbound = 2364412.090186, lowerbound=1141050.090186, norm of subgrad 1068.868135 dualbound = 2364412.090186, lowerbound=1141050.090186, norm of subgrad 40.543082 stepsize= 1.000000 +dualbound = 2364642.691501, lowerbound=1138849.691501, norm of subgrad 1067.873444 dualbound = 2364642.691501, lowerbound=1138849.691501, norm of subgrad 41.648545 stepsize= 1.000000 +dualbound = 2364812.973473, lowerbound=1142944.973473, norm of subgrad 1069.784545 dualbound = 2364812.973473, lowerbound=1142944.973473, norm of subgrad 40.795612 stepsize= 1.000000 +dualbound = 2365037.585419, lowerbound=1145958.585419, norm of subgrad 1071.180930 dualbound = 2365037.585419, lowerbound=1145958.585419, norm of subgrad 41.165665 stepsize= 1.000000 +dualbound = 2365257.220365, lowerbound=1136122.220365, norm of subgrad 1066.556712 dualbound = 2365257.220365, lowerbound=1136122.220365, norm of subgrad 40.504752 stepsize= 1.000000 +dualbound = 2365483.298676, lowerbound=1144554.298676, norm of subgrad 1070.509364 dualbound = 2365483.298676, lowerbound=1144554.298676, norm of subgrad 40.768595 stepsize= 1.000000 +dualbound = 2365666.107342, lowerbound=1142715.107342, norm of subgrad 1069.689257 dualbound = 2365666.107342, lowerbound=1142715.107342, norm of subgrad 41.265102 stepsize= 1.000000 +dualbound = 2365842.955926, lowerbound=1143855.955926, norm of subgrad 1070.227992 dualbound = 2365842.955926, lowerbound=1143855.955926, norm of subgrad 41.338222 stepsize= 1.000000 +dualbound = 2366076.138736, lowerbound=1139564.138736, norm of subgrad 1068.193868 dualbound = 2366076.138736, lowerbound=1139564.138736, norm of subgrad 41.318069 stepsize= 1.000000 +dualbound = 2366302.772508, lowerbound=1141678.772508, norm of subgrad 1069.178083 dualbound = 2366302.772508, lowerbound=1141678.772508, norm of subgrad 41.105155 stepsize= 1.000000 +dualbound = 2366499.096083, lowerbound=1144072.096083, norm of subgrad 1070.328966 dualbound = 2366499.096083, lowerbound=1144072.096083, norm of subgrad 41.573111 stepsize= 1.000000 +dualbound = 2366702.753821, lowerbound=1139255.753821, norm of subgrad 1068.050445 dualbound = 2366702.753821, lowerbound=1139255.753821, norm of subgrad 40.983628 stepsize= 1.000000 +dualbound = 2366916.815608, lowerbound=1140836.815608, norm of subgrad 1068.825437 dualbound = 2366916.815608, lowerbound=1140836.815608, norm of subgrad 42.012638 stepsize= 1.000000 +dualbound = 2367099.779043, lowerbound=1144750.779043, norm of subgrad 1070.637557 dualbound = 2367099.779043, lowerbound=1144750.779043, norm of subgrad 41.194216 stepsize= 1.000000 +dualbound = 2367339.339487, lowerbound=1136844.339487, norm of subgrad 1066.960796 dualbound = 2367339.339487, lowerbound=1136844.339487, norm of subgrad 42.433011 stepsize= 1.000000 +dualbound = 2367503.319014, lowerbound=1144396.319014, norm of subgrad 1070.472475 dualbound = 2367503.319014, lowerbound=1144396.319014, norm of subgrad 40.975353 stepsize= 1.000000 +dualbound = 2367735.698085, lowerbound=1139564.698085, norm of subgrad 1068.217065 dualbound = 2367735.698085, lowerbound=1139564.698085, norm of subgrad 41.897244 stepsize= 1.000000 +dualbound = 2367964.847111, lowerbound=1145065.847111, norm of subgrad 1070.752468 dualbound = 2367964.847111, lowerbound=1145065.847111, norm of subgrad 40.916366 stepsize= 1.000000 +dualbound = 2368159.350937, lowerbound=1143617.350937, norm of subgrad 1070.071657 dualbound = 2368159.350937, lowerbound=1143617.350937, norm of subgrad 40.379498 stepsize= 1.000000 +dualbound = 2368358.856710, lowerbound=1144994.856710, norm of subgrad 1070.778155 dualbound = 2368358.856710, lowerbound=1144994.856710, norm of subgrad 42.077378 stepsize= 1.000000 +dualbound = 2368569.590891, lowerbound=1139280.590891, norm of subgrad 1068.061604 dualbound = 2368569.590891, lowerbound=1139280.590891, norm of subgrad 41.057693 stepsize= 1.000000 +dualbound = 2368796.144750, lowerbound=1141322.144750, norm of subgrad 1068.998197 dualbound = 2368796.144750, lowerbound=1141322.144750, norm of subgrad 40.762162 stepsize= 1.000000 +dualbound = 2369029.439049, lowerbound=1141746.439049, norm of subgrad 1069.212065 dualbound = 2369029.439049, lowerbound=1141746.439049, norm of subgrad 41.246749 stepsize= 1.000000 +dualbound = 2369199.104589, lowerbound=1145724.104589, norm of subgrad 1071.108353 dualbound = 2369199.104589, lowerbound=1145724.104589, norm of subgrad 41.456791 stepsize= 1.000000 +dualbound = 2369402.424457, lowerbound=1141417.424457, norm of subgrad 1069.097014 dualbound = 2369402.424457, lowerbound=1141417.424457, norm of subgrad 41.884602 stepsize= 1.000000 +dualbound = 2369637.350024, lowerbound=1141326.350024, norm of subgrad 1069.029162 dualbound = 2369637.350024, lowerbound=1141326.350024, norm of subgrad 41.616410 stepsize= 1.000000 +dualbound = 2369815.042798, lowerbound=1145666.042798, norm of subgrad 1071.043436 dualbound = 2369815.042798, lowerbound=1145666.042798, norm of subgrad 40.567139 stepsize= 1.000000 +dualbound = 2370057.639427, lowerbound=1144500.639428, norm of subgrad 1070.519799 dualbound = 2370057.639427, lowerbound=1144500.639428, norm of subgrad 41.887906 stepsize= 1.000000 +dualbound = 2370234.709915, lowerbound=1142471.709915, norm of subgrad 1069.584831 dualbound = 2370234.709915, lowerbound=1142471.709915, norm of subgrad 41.437549 stepsize= 1.000000 +dualbound = 2370458.246900, lowerbound=1138793.246900, norm of subgrad 1067.844205 dualbound = 2370458.246900, lowerbound=1138793.246900, norm of subgrad 41.491409 stepsize= 1.000000 +dualbound = 2370682.249435, lowerbound=1145498.249435, norm of subgrad 1070.963701 dualbound = 2370682.249435, lowerbound=1145498.249435, norm of subgrad 41.097476 stepsize= 1.000000 +dualbound = 2370866.784292, lowerbound=1136242.784292, norm of subgrad 1066.658232 dualbound = 2370866.784292, lowerbound=1136242.784292, norm of subgrad 41.249665 stepsize= 1.000000 +dualbound = 2371073.253746, lowerbound=1144682.253746, norm of subgrad 1070.605088 dualbound = 2371073.253746, lowerbound=1144682.253746, norm of subgrad 41.466486 stepsize= 1.000000 +dualbound = 2371303.690248, lowerbound=1143082.690248, norm of subgrad 1069.846573 dualbound = 2371303.690248, lowerbound=1143082.690248, norm of subgrad 41.466089 stepsize= 1.000000 +dualbound = 2371504.917835, lowerbound=1143769.917835, norm of subgrad 1070.143410 dualbound = 2371504.917835, lowerbound=1143769.917835, norm of subgrad 40.475024 stepsize= 1.000000 +dualbound = 2371719.718145, lowerbound=1138799.718145, norm of subgrad 1067.851449 dualbound = 2371719.718145, lowerbound=1138799.718145, norm of subgrad 41.494582 stepsize= 1.000000 +dualbound = 2371898.649253, lowerbound=1144582.649253, norm of subgrad 1070.580053 dualbound = 2371898.649253, lowerbound=1144582.649253, norm of subgrad 41.688501 stepsize= 1.000000 +dualbound = 2372120.819875, lowerbound=1140744.819875, norm of subgrad 1068.764155 dualbound = 2372120.819875, lowerbound=1140744.819875, norm of subgrad 41.643374 stepsize= 1.000000 +dualbound = 2372328.181628, lowerbound=1143423.181628, norm of subgrad 1070.006627 dualbound = 2372328.181628, lowerbound=1143423.181628, norm of subgrad 41.211185 stepsize= 1.000000 +dualbound = 2372548.672467, lowerbound=1143605.672467, norm of subgrad 1070.077881 dualbound = 2372548.672467, lowerbound=1143605.672467, norm of subgrad 41.005985 stepsize= 1.000000 +dualbound = 2372776.159852, lowerbound=1140134.159852, norm of subgrad 1068.462989 dualbound = 2372776.159852, lowerbound=1140134.159852, norm of subgrad 41.309652 stepsize= 1.000000 +dualbound = 2372970.646872, lowerbound=1143446.646872, norm of subgrad 1070.005442 dualbound = 2372970.646872, lowerbound=1143446.646872, norm of subgrad 40.736802 stepsize= 1.000000 +dualbound = 2373157.376187, lowerbound=1142936.376187, norm of subgrad 1069.781462 dualbound = 2373157.376187, lowerbound=1142936.376187, norm of subgrad 41.021084 stepsize= 1.000000 +dualbound = 2373390.898048, lowerbound=1143278.898048, norm of subgrad 1069.927987 dualbound = 2373390.898048, lowerbound=1143278.898048, norm of subgrad 41.237384 stepsize= 1.000000 +dualbound = 2373580.524735, lowerbound=1141367.524735, norm of subgrad 1069.040001 dualbound = 2373580.524735, lowerbound=1141367.524735, norm of subgrad 40.848827 stepsize= 1.000000 +dualbound = 2373794.426169, lowerbound=1145248.426169, norm of subgrad 1070.882545 dualbound = 2373794.426169, lowerbound=1145248.426169, norm of subgrad 41.891544 stepsize= 1.000000 +dualbound = 2373974.005381, lowerbound=1143616.005381, norm of subgrad 1070.125696 dualbound = 2373974.005381, lowerbound=1143616.005381, norm of subgrad 41.624262 stepsize= 1.000000 +dualbound = 2374175.017653, lowerbound=1147002.017653, norm of subgrad 1071.677665 dualbound = 2374175.017653, lowerbound=1147002.017653, norm of subgrad 41.134077 stepsize= 1.000000 +dualbound = 2374407.175918, lowerbound=1136789.175918, norm of subgrad 1066.914793 dualbound = 2374407.175918, lowerbound=1136789.175918, norm of subgrad 41.834893 stepsize= 1.000000 +dualbound = 2374604.061018, lowerbound=1146131.061018, norm of subgrad 1071.289438 dualbound = 2374604.061018, lowerbound=1146131.061018, norm of subgrad 41.555807 stepsize= 1.000000 +dualbound = 2374812.764555, lowerbound=1137155.764555, norm of subgrad 1067.052372 dualbound = 2374812.764555, lowerbound=1137155.764555, norm of subgrad 40.665754 stepsize= 1.000000 +dualbound = 2375056.615653, lowerbound=1143642.615653, norm of subgrad 1070.075519 dualbound = 2375056.615653, lowerbound=1143642.615653, norm of subgrad 40.778071 stepsize= 1.000000 +dualbound = 2375260.966837, lowerbound=1143304.966837, norm of subgrad 1069.951385 dualbound = 2375260.966837, lowerbound=1143304.966837, norm of subgrad 41.174642 stepsize= 1.000000 +dualbound = 2375458.855346, lowerbound=1142603.855346, norm of subgrad 1069.612012 dualbound = 2375458.855346, lowerbound=1142603.855346, norm of subgrad 40.790790 stepsize= 1.000000 +dualbound = 2375666.424598, lowerbound=1145917.424598, norm of subgrad 1071.160317 dualbound = 2375666.424598, lowerbound=1145917.424598, norm of subgrad 40.921501 stepsize= 1.000000 +dualbound = 2375864.982231, lowerbound=1141114.982231, norm of subgrad 1068.929363 dualbound = 2375864.982231, lowerbound=1141114.982231, norm of subgrad 41.152857 stepsize= 1.000000 +dualbound = 2376057.680398, lowerbound=1141696.680398, norm of subgrad 1069.236027 dualbound = 2376057.680398, lowerbound=1141696.680398, norm of subgrad 41.972588 stepsize= 1.000000 +dualbound = 2376243.447002, lowerbound=1146678.447002, norm of subgrad 1071.534622 dualbound = 2376243.447002, lowerbound=1146678.447002, norm of subgrad 41.155396 stepsize= 1.000000 +dualbound = 2376477.976250, lowerbound=1135498.976250, norm of subgrad 1066.316077 dualbound = 2376477.976250, lowerbound=1135498.976250, norm of subgrad 42.018201 stepsize= 1.000000 +dualbound = 2376708.275244, lowerbound=1142498.275244, norm of subgrad 1069.583692 dualbound = 2376708.275244, lowerbound=1142498.275244, norm of subgrad 41.728875 stepsize= 1.000000 +dualbound = 2376896.470442, lowerbound=1143706.470442, norm of subgrad 1070.123577 dualbound = 2376896.470442, lowerbound=1143706.470442, norm of subgrad 40.573331 stepsize= 1.000000 +dualbound = 2377130.477896, lowerbound=1141929.477896, norm of subgrad 1069.284096 dualbound = 2377130.477896, lowerbound=1141929.477896, norm of subgrad 40.902414 stepsize= 1.000000 +dualbound = 2377316.108446, lowerbound=1144006.108446, norm of subgrad 1070.300009 dualbound = 2377316.108446, lowerbound=1144006.108446, norm of subgrad 41.492536 stepsize= 1.000000 +dualbound = 2377536.672107, lowerbound=1144654.672107, norm of subgrad 1070.576327 dualbound = 2377536.672107, lowerbound=1144654.672107, norm of subgrad 41.225765 stepsize= 1.000000 +dualbound = 2377720.905765, lowerbound=1143047.905765, norm of subgrad 1069.863031 dualbound = 2377720.905765, lowerbound=1143047.905765, norm of subgrad 41.752050 stepsize= 1.000000 +dualbound = 2377933.574070, lowerbound=1144524.574070, norm of subgrad 1070.499684 dualbound = 2377933.574070, lowerbound=1144524.574070, norm of subgrad 40.714473 stepsize= 1.000000 +dualbound = 2378180.875625, lowerbound=1147422.875625, norm of subgrad 1071.820823 dualbound = 2378180.875625, lowerbound=1147422.875625, norm of subgrad 40.302625 stepsize= 1.000000 +dualbound = 2378379.384932, lowerbound=1136832.384932, norm of subgrad 1066.939260 dualbound = 2378379.384932, lowerbound=1136832.384932, norm of subgrad 41.539250 stepsize= 1.000000 +dualbound = 2378538.191993, lowerbound=1146749.191993, norm of subgrad 1071.560634 dualbound = 2378538.191993, lowerbound=1146749.191993, norm of subgrad 40.642429 stepsize= 1.000000 +dualbound = 2378767.876373, lowerbound=1141543.876373, norm of subgrad 1069.117803 dualbound = 2378767.876373, lowerbound=1141543.876373, norm of subgrad 41.215099 stepsize= 1.000000 +dualbound = 2378966.250266, lowerbound=1142778.250266, norm of subgrad 1069.699140 dualbound = 2378966.250266, lowerbound=1142778.250266, norm of subgrad 40.943545 stepsize= 1.000000 +dualbound = 2379187.572848, lowerbound=1143039.572848, norm of subgrad 1069.839975 dualbound = 2379187.572848, lowerbound=1143039.572848, norm of subgrad 41.705187 stepsize= 1.000000 +dualbound = 2379389.587688, lowerbound=1142745.587688, norm of subgrad 1069.715190 dualbound = 2379389.587688, lowerbound=1142745.587688, norm of subgrad 41.797307 stepsize= 1.000000 +dualbound = 2379586.817705, lowerbound=1141900.817705, norm of subgrad 1069.305764 dualbound = 2379586.817705, lowerbound=1141900.817705, norm of subgrad 41.367016 stepsize= 1.000000 +dualbound = 2379811.842123, lowerbound=1145855.842123, norm of subgrad 1071.151176 dualbound = 2379811.842123, lowerbound=1145855.842123, norm of subgrad 41.641619 stepsize= 1.000000 +dualbound = 2380013.093576, lowerbound=1139056.093576, norm of subgrad 1067.947140 dualbound = 2380013.093576, lowerbound=1139056.093576, norm of subgrad 40.697069 stepsize= 1.000000 +dualbound = 2380234.198378, lowerbound=1142330.198378, norm of subgrad 1069.487353 dualbound = 2380234.198378, lowerbound=1142330.198378, norm of subgrad 41.159504 stepsize= 1.000000 +dualbound = 2380424.268231, lowerbound=1146357.268231, norm of subgrad 1071.416011 dualbound = 2380424.268231, lowerbound=1146357.268231, norm of subgrad 42.012734 stepsize= 1.000000 +dualbound = 2380596.095950, lowerbound=1145467.095950, norm of subgrad 1070.991641 dualbound = 2380596.095950, lowerbound=1145467.095950, norm of subgrad 41.567147 stepsize= 1.000000 +dualbound = 2380836.529333, lowerbound=1143173.529333, norm of subgrad 1069.899775 dualbound = 2380836.529333, lowerbound=1143173.529333, norm of subgrad 41.862076 stepsize= 1.000000 +dualbound = 2381050.522950, lowerbound=1143505.522950, norm of subgrad 1070.038561 dualbound = 2381050.522950, lowerbound=1143505.522950, norm of subgrad 41.121693 stepsize= 1.000000 +dualbound = 2381247.845508, lowerbound=1144494.845508, norm of subgrad 1070.483931 dualbound = 2381247.845508, lowerbound=1144494.845508, norm of subgrad 40.476197 stepsize= 1.000000 +dualbound = 2381499.992750, lowerbound=1143681.992750, norm of subgrad 1070.103263 dualbound = 2381499.992750, lowerbound=1143681.992750, norm of subgrad 41.123561 stepsize= 1.000000 +dualbound = 2381691.878289, lowerbound=1148534.878289, norm of subgrad 1072.383270 dualbound = 2381691.878289, lowerbound=1148534.878289, norm of subgrad 40.778494 stepsize= 1.000000 +dualbound = 2381883.124386, lowerbound=1145051.124386, norm of subgrad 1070.769408 dualbound = 2381883.124386, lowerbound=1145051.124386, norm of subgrad 41.076101 stepsize= 1.000000 +dualbound = 2382072.985540, lowerbound=1141231.985540, norm of subgrad 1068.986429 dualbound = 2382072.985540, lowerbound=1141231.985540, norm of subgrad 41.107921 stepsize= 1.000000 +dualbound = 2382284.523985, lowerbound=1141642.523985, norm of subgrad 1069.170952 dualbound = 2382284.523985, lowerbound=1141642.523985, norm of subgrad 41.176916 stepsize= 1.000000 +dualbound = 2382503.675750, lowerbound=1139218.675750, norm of subgrad 1068.028406 dualbound = 2382503.675750, lowerbound=1139218.675750, norm of subgrad 41.050600 stepsize= 1.000000 +dualbound = 2382699.604358, lowerbound=1147152.604358, norm of subgrad 1071.752585 dualbound = 2382699.604358, lowerbound=1147152.604358, norm of subgrad 41.193793 stepsize= 1.000000 +dualbound = 2382910.593426, lowerbound=1142235.593426, norm of subgrad 1069.443123 dualbound = 2382910.593426, lowerbound=1142235.593426, norm of subgrad 41.036436 stepsize= 1.000000 +dualbound = 2383122.954463, lowerbound=1147660.954463, norm of subgrad 1072.001844 dualbound = 2383122.954463, lowerbound=1147660.954463, norm of subgrad 41.705648 stepsize= 1.000000 +dualbound = 2383325.262249, lowerbound=1145338.262249, norm of subgrad 1070.932893 dualbound = 2383325.262249, lowerbound=1145338.262249, norm of subgrad 41.967938 stepsize= 1.000000 +dualbound = 2383525.994107, lowerbound=1143931.994107, norm of subgrad 1070.253705 dualbound = 2383525.994107, lowerbound=1143931.994107, norm of subgrad 41.373081 stepsize= 1.000000 +dualbound = 2383737.733720, lowerbound=1141649.733720, norm of subgrad 1069.205188 dualbound = 2383737.733720, lowerbound=1141649.733720, norm of subgrad 41.973082 stepsize= 1.000000 +dualbound = 2383925.873049, lowerbound=1145821.873049, norm of subgrad 1071.149790 dualbound = 2383925.873049, lowerbound=1145821.873049, norm of subgrad 41.570895 stepsize= 1.000000 +dualbound = 2384159.588497, lowerbound=1137609.588497, norm of subgrad 1067.282338 dualbound = 2384159.588497, lowerbound=1137609.588497, norm of subgrad 41.421196 stepsize= 1.000000 +dualbound = 2384382.171303, lowerbound=1143446.171303, norm of subgrad 1070.036995 dualbound = 2384382.171303, lowerbound=1143446.171303, norm of subgrad 41.899675 stepsize= 1.000000 +dualbound = 2384574.602746, lowerbound=1149334.602746, norm of subgrad 1072.773789 dualbound = 2384574.602746, lowerbound=1149334.602746, norm of subgrad 41.248411 stepsize= 1.000000 +dualbound = 2384777.582629, lowerbound=1144452.582629, norm of subgrad 1070.495485 dualbound = 2384777.582629, lowerbound=1144452.582629, norm of subgrad 41.363993 stepsize= 1.000000 +dualbound = 2384970.191669, lowerbound=1142469.191669, norm of subgrad 1069.580381 dualbound = 2384970.191669, lowerbound=1142469.191669, norm of subgrad 41.540451 stepsize= 1.000000 +dualbound = 2385181.834979, lowerbound=1140666.834979, norm of subgrad 1068.753870 dualbound = 2385181.834979, lowerbound=1140666.834979, norm of subgrad 42.185819 stepsize= 1.000000 +dualbound = 2385383.269853, lowerbound=1146276.269853, norm of subgrad 1071.338541 dualbound = 2385383.269853, lowerbound=1146276.269853, norm of subgrad 41.127058 stepsize= 1.000000 +dualbound = 2385627.872252, lowerbound=1143217.872252, norm of subgrad 1069.910684 dualbound = 2385627.872252, lowerbound=1143217.872252, norm of subgrad 41.660562 stepsize= 1.000000 +dualbound = 2385787.258540, lowerbound=1143957.258540, norm of subgrad 1070.266443 dualbound = 2385787.258540, lowerbound=1143957.258540, norm of subgrad 40.894820 stepsize= 1.000000 +dualbound = 2386030.261545, lowerbound=1146419.261545, norm of subgrad 1071.401074 dualbound = 2386030.261545, lowerbound=1146419.261545, norm of subgrad 41.521115 stepsize= 1.000000 +dualbound = 2386221.547502, lowerbound=1139994.547502, norm of subgrad 1068.367702 dualbound = 2386221.547502, lowerbound=1139994.547502, norm of subgrad 40.078497 stepsize= 1.000000 +dualbound = 2386463.818857, lowerbound=1149969.818857, norm of subgrad 1073.033466 dualbound = 2386463.818857, lowerbound=1149969.818857, norm of subgrad 40.905640 stepsize= 1.000000 +dualbound = 2386657.721170, lowerbound=1139001.721170, norm of subgrad 1067.934324 dualbound = 2386657.721170, lowerbound=1139001.721170, norm of subgrad 40.937786 stepsize= 1.000000 +dualbound = 2386832.771295, lowerbound=1147837.771295, norm of subgrad 1072.077782 dualbound = 2386832.771295, lowerbound=1147837.771295, norm of subgrad 41.085887 stepsize= 1.000000 +dualbound = 2387028.704257, lowerbound=1143450.704257, norm of subgrad 1070.013413 dualbound = 2387028.704257, lowerbound=1143450.704257, norm of subgrad 40.913726 stepsize= 1.000000 +dualbound = 2387273.129296, lowerbound=1144396.129296, norm of subgrad 1070.453703 dualbound = 2387273.129296, lowerbound=1144396.129296, norm of subgrad 41.465950 stepsize= 1.000000 +dualbound = 2387451.263494, lowerbound=1146426.263494, norm of subgrad 1071.438875 dualbound = 2387451.263494, lowerbound=1146426.263494, norm of subgrad 41.630928 stepsize= 1.000000 +dualbound = 2387665.124131, lowerbound=1143955.124131, norm of subgrad 1070.237415 dualbound = 2387665.124131, lowerbound=1143955.124131, norm of subgrad 40.827205 stepsize= 1.000000 +dualbound = 2387873.404309, lowerbound=1144732.404309, norm of subgrad 1070.611229 dualbound = 2387873.404309, lowerbound=1144732.404309, norm of subgrad 41.039983 stepsize= 1.000000 +dualbound = 2388092.010432, lowerbound=1143271.010432, norm of subgrad 1069.929442 dualbound = 2388092.010432, lowerbound=1143271.010432, norm of subgrad 41.189879 stepsize= 1.000000 +dualbound = 2388293.069793, lowerbound=1146319.069793, norm of subgrad 1071.366917 dualbound = 2388293.069793, lowerbound=1146319.069793, norm of subgrad 41.340771 stepsize= 1.000000 +dualbound = 2388488.497521, lowerbound=1144935.497521, norm of subgrad 1070.739229 dualbound = 2388488.497521, lowerbound=1144935.497521, norm of subgrad 41.742397 stepsize= 1.000000 +dualbound = 2388687.665924, lowerbound=1145454.665924, norm of subgrad 1070.955959 dualbound = 2388687.665924, lowerbound=1145454.665924, norm of subgrad 41.123818 stepsize= 1.000000 +dualbound = 2388898.429851, lowerbound=1145032.429851, norm of subgrad 1070.772819 dualbound = 2388898.429851, lowerbound=1145032.429851, norm of subgrad 41.626481 stepsize= 1.000000 +dualbound = 2389121.627111, lowerbound=1147057.627111, norm of subgrad 1071.713874 dualbound = 2389121.627111, lowerbound=1147057.627111, norm of subgrad 41.667700 stepsize= 1.000000 +dualbound = 2389333.680296, lowerbound=1142768.680296, norm of subgrad 1069.701678 dualbound = 2389333.680296, lowerbound=1142768.680296, norm of subgrad 41.292290 stepsize= 1.000000 +dualbound = 2389521.659741, lowerbound=1141736.659741, norm of subgrad 1069.198139 dualbound = 2389521.659741, lowerbound=1141736.659741, norm of subgrad 40.447243 stepsize= 1.000000 +dualbound = 2389752.406869, lowerbound=1147110.406869, norm of subgrad 1071.724501 dualbound = 2389752.406869, lowerbound=1147110.406869, norm of subgrad 41.397429 stepsize= 1.000000 +dualbound = 2389919.253885, lowerbound=1145658.253885, norm of subgrad 1071.084149 dualbound = 2389919.253885, lowerbound=1145658.253885, norm of subgrad 41.591430 stepsize= 1.000000 +dualbound = 2390130.239491, lowerbound=1148665.239491, norm of subgrad 1072.444050 dualbound = 2390130.239491, lowerbound=1148665.239491, norm of subgrad 41.012018 stepsize= 1.000000 +dualbound = 2390359.636645, lowerbound=1142160.636645, norm of subgrad 1069.408545 dualbound = 2390359.636645, lowerbound=1142160.636645, norm of subgrad 41.272232 stepsize= 1.000000 +dualbound = 2390538.487590, lowerbound=1150878.487590, norm of subgrad 1073.522467 dualbound = 2390538.487590, lowerbound=1150878.487590, norm of subgrad 41.843171 stepsize= 1.000000 +dualbound = 2390740.942051, lowerbound=1143413.942051, norm of subgrad 1070.019599 dualbound = 2390740.942051, lowerbound=1143413.942051, norm of subgrad 41.598731 stepsize= 1.000000 +dualbound = 2390949.832839, lowerbound=1146127.832839, norm of subgrad 1071.307534 dualbound = 2390949.832839, lowerbound=1146127.832839, norm of subgrad 42.200602 stepsize= 1.000000 +dualbound = 2391160.674333, lowerbound=1142197.674333, norm of subgrad 1069.434745 dualbound = 2391160.674333, lowerbound=1142197.674333, norm of subgrad 41.277615 stepsize= 1.000000 +dualbound = 2391376.618186, lowerbound=1147454.618186, norm of subgrad 1071.876214 dualbound = 2391376.618186, lowerbound=1147454.618186, norm of subgrad 40.987118 stepsize= 1.000000 +dualbound = 2391581.621760, lowerbound=1145480.621760, norm of subgrad 1070.957339 dualbound = 2391581.621760, lowerbound=1145480.621760, norm of subgrad 40.914589 stepsize= 1.000000 +dualbound = 2391788.848366, lowerbound=1142473.848366, norm of subgrad 1069.556847 dualbound = 2391788.848366, lowerbound=1142473.848366, norm of subgrad 41.051512 stepsize= 1.000000 +dualbound = 2391999.863442, lowerbound=1144077.863442, norm of subgrad 1070.308303 dualbound = 2391999.863442, lowerbound=1144077.863442, norm of subgrad 41.146264 stepsize= 1.000000 +dualbound = 2392184.304251, lowerbound=1146380.304251, norm of subgrad 1071.390827 dualbound = 2392184.304251, lowerbound=1146380.304251, norm of subgrad 41.017567 stepsize= 1.000000 +dualbound = 2392396.727164, lowerbound=1143300.727164, norm of subgrad 1069.976975 dualbound = 2392396.727164, lowerbound=1143300.727164, norm of subgrad 41.981221 stepsize= 1.000000 +dualbound = 2392600.189686, lowerbound=1146832.189686, norm of subgrad 1071.595628 dualbound = 2392600.189686, lowerbound=1146832.189686, norm of subgrad 41.090906 stepsize= 1.000000 +dualbound = 2392837.495809, lowerbound=1148827.495809, norm of subgrad 1072.501979 dualbound = 2392837.495809, lowerbound=1148827.495809, norm of subgrad 40.869379 stepsize= 1.000000 +dualbound = 2393031.331272, lowerbound=1145237.331272, norm of subgrad 1070.866159 dualbound = 2393031.331272, lowerbound=1145237.331272, norm of subgrad 41.362247 stepsize= 1.000000 +dualbound = 2393222.444737, lowerbound=1144289.444737, norm of subgrad 1070.417416 dualbound = 2393222.444737, lowerbound=1144289.444737, norm of subgrad 41.171756 stepsize= 1.000000 +dualbound = 2393433.532788, lowerbound=1145157.532788, norm of subgrad 1070.856915 dualbound = 2393433.532788, lowerbound=1145157.532788, norm of subgrad 42.285790 stepsize= 1.000000 +dualbound = 2393598.698631, lowerbound=1146360.698631, norm of subgrad 1071.405011 dualbound = 2393598.698631, lowerbound=1146360.698631, norm of subgrad 41.390408 stepsize= 1.000000 +dualbound = 2393851.637389, lowerbound=1147480.637389, norm of subgrad 1071.903744 dualbound = 2393851.637389, lowerbound=1147480.637389, norm of subgrad 41.832269 stepsize= 1.000000 +dualbound = 2394066.521284, lowerbound=1144332.521284, norm of subgrad 1070.439873 dualbound = 2394066.521284, lowerbound=1144332.521284, norm of subgrad 41.519681 stepsize= 1.000000 +dualbound = 2394256.591798, lowerbound=1144524.591798, norm of subgrad 1070.515573 dualbound = 2394256.591798, lowerbound=1144524.591798, norm of subgrad 40.854259 stepsize= 1.000000 +dualbound = 2394474.375820, lowerbound=1145536.375820, norm of subgrad 1070.991772 dualbound = 2394474.375820, lowerbound=1145536.375820, norm of subgrad 41.289030 stepsize= 1.000000 +dualbound = 2394671.348813, lowerbound=1147162.348813, norm of subgrad 1071.735671 dualbound = 2394671.348813, lowerbound=1147162.348813, norm of subgrad 40.644471 stepsize= 1.000000 +dualbound = 2394885.418599, lowerbound=1144444.418599, norm of subgrad 1070.475791 dualbound = 2394885.418599, lowerbound=1144444.418599, norm of subgrad 41.086126 stepsize= 1.000000 +dualbound = 2395097.095658, lowerbound=1143343.095658, norm of subgrad 1069.981820 dualbound = 2395097.095658, lowerbound=1143343.095658, norm of subgrad 41.589386 stepsize= 1.000000 +dualbound = 2395284.847031, lowerbound=1144077.847031, norm of subgrad 1070.329784 dualbound = 2395284.847031, lowerbound=1144077.847031, norm of subgrad 41.421629 stepsize= 1.000000 +dualbound = 2395485.159863, lowerbound=1148720.159863, norm of subgrad 1072.472452 dualbound = 2395485.159863, lowerbound=1148720.159863, norm of subgrad 40.955010 stepsize= 1.000000 +dualbound = 2395710.281826, lowerbound=1143111.281826, norm of subgrad 1069.854795 dualbound = 2395710.281826, lowerbound=1143111.281826, norm of subgrad 41.268898 stepsize= 1.000000 +dualbound = 2395915.140260, lowerbound=1145287.140260, norm of subgrad 1070.868405 dualbound = 2395915.140260, lowerbound=1145287.140260, norm of subgrad 40.949462 stepsize= 1.000000 +dualbound = 2396121.502548, lowerbound=1146175.502548, norm of subgrad 1071.277976 dualbound = 2396121.502548, lowerbound=1146175.502548, norm of subgrad 40.833348 stepsize= 1.000000 +dualbound = 2396324.394015, lowerbound=1153050.394015, norm of subgrad 1074.534036 dualbound = 2396324.394015, lowerbound=1153050.394015, norm of subgrad 42.141327 stepsize= 1.000000 +dualbound = 2396517.790016, lowerbound=1143201.790016, norm of subgrad 1069.905038 dualbound = 2396517.790016, lowerbound=1143201.790016, norm of subgrad 41.090096 stepsize= 1.000000 +dualbound = 2396739.069478, lowerbound=1144197.069478, norm of subgrad 1070.359318 dualbound = 2396739.069478, lowerbound=1144197.069478, norm of subgrad 41.149477 stepsize= 1.000000 +dualbound = 2396919.135875, lowerbound=1145916.135875, norm of subgrad 1071.190056 dualbound = 2396919.135875, lowerbound=1145916.135875, norm of subgrad 41.377124 stepsize= 1.000000 +dualbound = 2397135.259460, lowerbound=1150652.259460, norm of subgrad 1073.360731 dualbound = 2397135.259460, lowerbound=1150652.259460, norm of subgrad 40.830425 stepsize= 1.000000 +dualbound = 2397359.414283, lowerbound=1142699.414283, norm of subgrad 1069.644995 dualbound = 2397359.414283, lowerbound=1142699.414283, norm of subgrad 40.806309 stepsize= 1.000000 +dualbound = 2397555.245090, lowerbound=1146899.245090, norm of subgrad 1071.638113 dualbound = 2397555.245090, lowerbound=1146899.245090, norm of subgrad 41.289597 stepsize= 1.000000 +dualbound = 2397731.443139, lowerbound=1146320.443139, norm of subgrad 1071.390892 dualbound = 2397731.443139, lowerbound=1146320.443139, norm of subgrad 41.643704 stepsize= 1.000000 +dualbound = 2397939.693443, lowerbound=1152814.693443, norm of subgrad 1074.440177 dualbound = 2397939.693443, lowerbound=1152814.693443, norm of subgrad 42.605754 stepsize= 1.000000 +dualbound = 2398126.012946, lowerbound=1145083.012946, norm of subgrad 1070.829124 dualbound = 2398126.012946, lowerbound=1145083.012946, norm of subgrad 42.170126 stepsize= 1.000000 +dualbound = 2398371.296402, lowerbound=1143594.296402, norm of subgrad 1070.057146 dualbound = 2398371.296402, lowerbound=1143594.296402, norm of subgrad 40.905788 stepsize= 1.000000 +dualbound = 2398562.826613, lowerbound=1145976.826613, norm of subgrad 1071.199714 dualbound = 2398562.826613, lowerbound=1145976.826613, norm of subgrad 41.030845 stepsize= 1.000000 +dualbound = 2398766.557306, lowerbound=1144705.557306, norm of subgrad 1070.618306 dualbound = 2398766.557306, lowerbound=1144705.557306, norm of subgrad 41.493743 stepsize= 1.000000 +dualbound = 2398963.969232, lowerbound=1151831.969232, norm of subgrad 1073.921305 dualbound = 2398963.969232, lowerbound=1151831.969232, norm of subgrad 40.895133 stepsize= 1.000000 +dualbound = 2399186.378470, lowerbound=1145884.378470, norm of subgrad 1071.134155 dualbound = 2399186.378470, lowerbound=1145884.378470, norm of subgrad 40.821676 stepsize= 1.000000 +dualbound = 2399392.633288, lowerbound=1144106.633288, norm of subgrad 1070.308195 dualbound = 2399392.633288, lowerbound=1144106.633288, norm of subgrad 40.733952 stepsize= 1.000000 +dualbound = 2399591.948094, lowerbound=1147598.948094, norm of subgrad 1071.967326 dualbound = 2399591.948094, lowerbound=1147598.948094, norm of subgrad 41.404285 stepsize= 1.000000 +dualbound = 2399797.145646, lowerbound=1151301.145646, norm of subgrad 1073.711854 dualbound = 2399797.145646, lowerbound=1151301.145646, norm of subgrad 41.966624 stepsize= 1.000000 +dualbound = 2399982.214308, lowerbound=1151223.214308, norm of subgrad 1073.645758 dualbound = 2399982.214308, lowerbound=1151223.214308, norm of subgrad 40.952029 stepsize= 1.000000 +dualbound = 2400213.634926, lowerbound=1148051.634926, norm of subgrad 1072.184049 dualbound = 2400213.634926, lowerbound=1148051.634926, norm of subgrad 41.933526 stepsize= 1.000000 +dualbound = 2400379.468933, lowerbound=1143077.468933, norm of subgrad 1069.837123 dualbound = 2400379.468933, lowerbound=1143077.468933, norm of subgrad 40.494864 stepsize= 1.000000 +dualbound = 2400626.036735, lowerbound=1147409.036735, norm of subgrad 1071.883873 dualbound = 2400626.036735, lowerbound=1147409.036735, norm of subgrad 42.101874 stepsize= 1.000000 +dualbound = 2400803.135984, lowerbound=1149616.135984, norm of subgrad 1072.903134 dualbound = 2400803.135984, lowerbound=1149616.135984, norm of subgrad 41.013403 stepsize= 1.000000 +dualbound = 2401009.706334, lowerbound=1142162.706334, norm of subgrad 1069.408578 dualbound = 2401009.706334, lowerbound=1142162.706334, norm of subgrad 40.970359 stepsize= 1.000000 +dualbound = 2401236.533056, lowerbound=1149537.533056, norm of subgrad 1072.855784 dualbound = 2401236.533056, lowerbound=1149537.533056, norm of subgrad 41.337957 stepsize= 1.000000 +dualbound = 2401441.555203, lowerbound=1147690.555203, norm of subgrad 1072.011453 dualbound = 2401441.555203, lowerbound=1147690.555203, norm of subgrad 41.509302 stepsize= 1.000000 +dualbound = 2401625.409712, lowerbound=1146956.409712, norm of subgrad 1071.675515 dualbound = 2401625.409712, lowerbound=1146956.409712, norm of subgrad 41.422874 stepsize= 1.000000 +dualbound = 2401839.461121, lowerbound=1147686.461121, norm of subgrad 1072.018872 dualbound = 2401839.461121, lowerbound=1147686.461121, norm of subgrad 41.857513 stepsize= 1.000000 +dualbound = 2402041.092710, lowerbound=1148740.092710, norm of subgrad 1072.473353 dualbound = 2402041.092710, lowerbound=1148740.092710, norm of subgrad 40.750848 stepsize= 1.000000 +dualbound = 2402257.769737, lowerbound=1145019.769737, norm of subgrad 1070.730484 dualbound = 2402257.769737, lowerbound=1145019.769737, norm of subgrad 40.751405 stepsize= 1.000000 +dualbound = 2402459.368746, lowerbound=1149804.368746, norm of subgrad 1072.990386 dualbound = 2402459.368746, lowerbound=1149804.368746, norm of subgrad 41.298898 stepsize= 1.000000 +dualbound = 2402654.018102, lowerbound=1149177.018102, norm of subgrad 1072.681229 dualbound = 2402654.018102, lowerbound=1149177.018102, norm of subgrad 40.775598 stepsize= 1.000000 +dualbound = 2402848.510268, lowerbound=1146484.510268, norm of subgrad 1071.455790 dualbound = 2402848.510268, lowerbound=1146484.510268, norm of subgrad 41.563111 stepsize= 1.000000 +dualbound = 2403062.590135, lowerbound=1148133.590135, norm of subgrad 1072.191489 dualbound = 2403062.590135, lowerbound=1148133.590135, norm of subgrad 40.927740 stepsize= 1.000000 +dualbound = 2403267.270094, lowerbound=1149820.270094, norm of subgrad 1073.026221 dualbound = 2403267.270094, lowerbound=1149820.270094, norm of subgrad 42.067564 stepsize= 1.000000 +dualbound = 2403424.868988, lowerbound=1146012.868988, norm of subgrad 1071.239408 dualbound = 2403424.868988, lowerbound=1146012.868988, norm of subgrad 41.214062 stepsize= 1.000000 +dualbound = 2403661.357939, lowerbound=1146347.357939, norm of subgrad 1071.415119 dualbound = 2403661.357939, lowerbound=1146347.357939, norm of subgrad 42.655468 stepsize= 1.000000 +dualbound = 2403844.627324, lowerbound=1144768.627324, norm of subgrad 1070.645426 dualbound = 2403844.627324, lowerbound=1144768.627324, norm of subgrad 41.185791 stepsize= 1.000000 +dualbound = 2404082.837879, lowerbound=1150452.837879, norm of subgrad 1073.269229 dualbound = 2404082.837879, lowerbound=1150452.837879, norm of subgrad 41.136487 stepsize= 1.000000 +dualbound = 2404300.239286, lowerbound=1144416.239286, norm of subgrad 1070.466365 dualbound = 2404300.239286, lowerbound=1144416.239286, norm of subgrad 41.223797 stepsize= 1.000000 +dualbound = 2404479.192792, lowerbound=1149754.192792, norm of subgrad 1072.922734 dualbound = 2404479.192792, lowerbound=1149754.192792, norm of subgrad 39.849134 stepsize= 1.000000 +dualbound = 2404721.901694, lowerbound=1147872.901694, norm of subgrad 1072.040532 dualbound = 2404721.901694, lowerbound=1147872.901694, norm of subgrad 40.505665 stepsize= 1.000000 +dualbound = 2404902.107825, lowerbound=1151159.107825, norm of subgrad 1073.605658 dualbound = 2404902.107825, lowerbound=1151159.107825, norm of subgrad 40.622729 stepsize= 1.000000 +dualbound = 2405100.874606, lowerbound=1147799.874606, norm of subgrad 1072.040519 dualbound = 2405100.874606, lowerbound=1147799.874606, norm of subgrad 40.862780 stepsize= 1.000000 +dualbound = 2405296.440576, lowerbound=1150057.440576, norm of subgrad 1073.109240 dualbound = 2405296.440576, lowerbound=1150057.440576, norm of subgrad 41.250042 stepsize= 1.000000 +dualbound = 2405503.279136, lowerbound=1146040.279136, norm of subgrad 1071.247534 dualbound = 2405503.279136, lowerbound=1146040.279136, norm of subgrad 41.687391 stepsize= 1.000000 +dualbound = 2405681.482671, lowerbound=1148932.482671, norm of subgrad 1072.584954 dualbound = 2405681.482671, lowerbound=1148932.482671, norm of subgrad 41.039049 stepsize= 1.000000 +dualbound = 2405910.647877, lowerbound=1151085.647877, norm of subgrad 1073.563993 dualbound = 2405910.647877, lowerbound=1151085.647877, norm of subgrad 41.026396 stepsize= 1.000000 +dualbound = 2406121.684352, lowerbound=1147664.684352, norm of subgrad 1071.997054 dualbound = 2406121.684352, lowerbound=1147664.684352, norm of subgrad 41.521518 stepsize= 1.000000 +dualbound = 2406291.971312, lowerbound=1148795.971312, norm of subgrad 1072.500336 dualbound = 2406291.971312, lowerbound=1148795.971312, norm of subgrad 40.389194 stepsize= 1.000000 +dualbound = 2406515.128249, lowerbound=1148407.128249, norm of subgrad 1072.333497 dualbound = 2406515.128249, lowerbound=1148407.128249, norm of subgrad 41.414453 stepsize= 1.000000 +dualbound = 2406723.163685, lowerbound=1146639.163685, norm of subgrad 1071.513959 dualbound = 2406723.163685, lowerbound=1146639.163685, norm of subgrad 41.364664 stepsize= 1.000000 +dualbound = 2406919.352747, lowerbound=1149102.352747, norm of subgrad 1072.689309 dualbound = 2406919.352747, lowerbound=1149102.352747, norm of subgrad 41.906909 stepsize= 1.000000 +dualbound = 2407098.073902, lowerbound=1150121.073902, norm of subgrad 1073.113262 dualbound = 2407098.073902, lowerbound=1150121.073902, norm of subgrad 40.369805 stepsize= 1.000000 +dualbound = 2407337.048459, lowerbound=1148111.048459, norm of subgrad 1072.187506 dualbound = 2407337.048459, lowerbound=1148111.048459, norm of subgrad 41.400176 stepsize= 1.000000 +dualbound = 2407510.078798, lowerbound=1147406.078798, norm of subgrad 1071.870365 dualbound = 2407510.078798, lowerbound=1147406.078798, norm of subgrad 40.902694 stepsize= 1.000000 +dualbound = 2407726.171004, lowerbound=1150345.171004, norm of subgrad 1073.248420 dualbound = 2407726.171004, lowerbound=1150345.171004, norm of subgrad 41.630424 stepsize= 1.000000 +dualbound = 2407914.001964, lowerbound=1147528.001964, norm of subgrad 1071.916975 dualbound = 2407914.001964, lowerbound=1147528.001964, norm of subgrad 40.814592 stepsize= 1.000000 +dualbound = 2408138.692493, lowerbound=1148431.692493, norm of subgrad 1072.361270 dualbound = 2408138.692493, lowerbound=1148431.692493, norm of subgrad 41.853202 stepsize= 1.000000 +dualbound = 2408309.869912, lowerbound=1148746.869912, norm of subgrad 1072.506816 dualbound = 2408309.869912, lowerbound=1148746.869912, norm of subgrad 41.172532 stepsize= 1.000000 +dualbound = 2408520.128308, lowerbound=1150802.128308, norm of subgrad 1073.478052 dualbound = 2408520.128308, lowerbound=1150802.128308, norm of subgrad 41.991170 stepsize= 1.000000 +dualbound = 2408718.363876, lowerbound=1144726.363876, norm of subgrad 1070.663049 dualbound = 2408718.363876, lowerbound=1144726.363876, norm of subgrad 42.322991 stepsize= 1.000000 +dualbound = 2408907.719451, lowerbound=1151972.719451, norm of subgrad 1074.024543 dualbound = 2408907.719451, lowerbound=1151972.719451, norm of subgrad 41.777453 stepsize= 1.000000 +dualbound = 2409130.163257, lowerbound=1147909.163257, norm of subgrad 1072.083562 dualbound = 2409130.163257, lowerbound=1147909.163257, norm of subgrad 40.944399 stepsize= 1.000000 +dualbound = 2409372.358675, lowerbound=1148874.358675, norm of subgrad 1072.547602 dualbound = 2409372.358675, lowerbound=1148874.358675, norm of subgrad 41.547508 stepsize= 1.000000 +dualbound = 2409518.276256, lowerbound=1147848.276256, norm of subgrad 1072.093875 dualbound = 2409518.276256, lowerbound=1147848.276256, norm of subgrad 41.023378 stepsize= 1.000000 +dualbound = 2409733.930114, lowerbound=1147058.930114, norm of subgrad 1071.700952 dualbound = 2409733.930114, lowerbound=1147058.930114, norm of subgrad 41.226858 stepsize= 1.000000 +dualbound = 2409948.639999, lowerbound=1147852.639999, norm of subgrad 1072.082385 dualbound = 2409948.639999, lowerbound=1147852.639999, norm of subgrad 41.505540 stepsize= 1.000000 +dualbound = 2410152.945658, lowerbound=1149740.945658, norm of subgrad 1072.930075 dualbound = 2410152.945658, lowerbound=1149740.945658, norm of subgrad 40.525371 stepsize= 1.000000 +dualbound = 2410369.648606, lowerbound=1151911.648606, norm of subgrad 1073.952815 dualbound = 2410369.648606, lowerbound=1151911.648606, norm of subgrad 40.984179 stepsize= 1.000000 +dualbound = 2410557.543828, lowerbound=1147218.543828, norm of subgrad 1071.757222 dualbound = 2410557.543828, lowerbound=1147218.543828, norm of subgrad 40.409098 stepsize= 1.000000 +dualbound = 2410768.969322, lowerbound=1147604.969322, norm of subgrad 1071.982728 dualbound = 2410768.969322, lowerbound=1147604.969322, norm of subgrad 41.873924 stepsize= 1.000000 +dualbound = 2410949.362905, lowerbound=1152595.362905, norm of subgrad 1074.276670 dualbound = 2410949.362905, lowerbound=1152595.362905, norm of subgrad 40.686528 stepsize= 1.000000 +dualbound = 2411196.179506, lowerbound=1147729.179506, norm of subgrad 1071.986091 dualbound = 2411196.179506, lowerbound=1147729.179506, norm of subgrad 40.887854 stepsize= 1.000000 +dualbound = 2411359.606244, lowerbound=1148898.606244, norm of subgrad 1072.561237 dualbound = 2411359.606244, lowerbound=1148898.606244, norm of subgrad 40.650052 stepsize= 1.000000 +dualbound = 2411589.597397, lowerbound=1150706.597397, norm of subgrad 1073.391167 dualbound = 2411589.597397, lowerbound=1150706.597397, norm of subgrad 41.133820 stepsize= 1.000000 +dualbound = 2411755.941664, lowerbound=1145426.941664, norm of subgrad 1070.956555 dualbound = 2411755.941664, lowerbound=1145426.941664, norm of subgrad 41.077296 stepsize= 1.000000 +dualbound = 2411971.610803, lowerbound=1145625.610803, norm of subgrad 1071.021760 dualbound = 2411971.610803, lowerbound=1145625.610803, norm of subgrad 40.959360 stepsize= 1.000000 +dualbound = 2412187.483031, lowerbound=1150651.483031, norm of subgrad 1073.376673 dualbound = 2412187.483031, lowerbound=1150651.483031, norm of subgrad 41.253754 stepsize= 1.000000 +dualbound = 2412375.691349, lowerbound=1150767.691349, norm of subgrad 1073.470396 dualbound = 2412375.691349, lowerbound=1150767.691349, norm of subgrad 41.942917 stepsize= 1.000000 +dualbound = 2412549.498861, lowerbound=1147768.498861, norm of subgrad 1072.050138 dualbound = 2412549.498861, lowerbound=1147768.498861, norm of subgrad 41.192323 stepsize= 1.000000 +dualbound = 2412789.926432, lowerbound=1144373.926432, norm of subgrad 1070.463884 dualbound = 2412789.926432, lowerbound=1144373.926432, norm of subgrad 41.945531 stepsize= 1.000000 +dualbound = 2412968.546842, lowerbound=1150657.546842, norm of subgrad 1073.420955 dualbound = 2412968.546842, lowerbound=1150657.546842, norm of subgrad 41.876251 stepsize= 1.000000 +dualbound = 2413159.406696, lowerbound=1147337.406696, norm of subgrad 1071.817805 dualbound = 2413159.406696, lowerbound=1147337.406696, norm of subgrad 40.581521 stepsize= 1.000000 +dualbound = 2413417.225347, lowerbound=1150749.225347, norm of subgrad 1073.400776 dualbound = 2413417.225347, lowerbound=1150749.225347, norm of subgrad 41.204595 stepsize= 1.000000 +dualbound = 2413612.527030, lowerbound=1145807.527030, norm of subgrad 1071.117887 dualbound = 2413612.527030, lowerbound=1145807.527030, norm of subgrad 41.003679 stepsize= 1.000000 +dualbound = 2413780.073082, lowerbound=1153088.073082, norm of subgrad 1074.548311 dualbound = 2413780.073082, lowerbound=1153088.073082, norm of subgrad 41.635875 stepsize= 1.000000 +dualbound = 2413966.605707, lowerbound=1146896.605707, norm of subgrad 1071.660677 dualbound = 2413966.605707, lowerbound=1146896.605707, norm of subgrad 41.791538 stepsize= 1.000000 +dualbound = 2414173.729480, lowerbound=1149097.729480, norm of subgrad 1072.674102 dualbound = 2414173.729480, lowerbound=1149097.729480, norm of subgrad 41.702803 stepsize= 1.000000 +dualbound = 2414392.636047, lowerbound=1149073.636047, norm of subgrad 1072.652617 dualbound = 2414392.636047, lowerbound=1149073.636047, norm of subgrad 41.580122 stepsize= 1.000000 +dualbound = 2414592.732673, lowerbound=1156159.732673, norm of subgrad 1075.958053 dualbound = 2414592.732673, lowerbound=1156159.732673, norm of subgrad 41.546319 stepsize= 1.000000 +dualbound = 2414786.062362, lowerbound=1149462.062362, norm of subgrad 1072.822009 dualbound = 2414786.062362, lowerbound=1149462.062362, norm of subgrad 40.967422 stepsize= 1.000000 +dualbound = 2415013.170786, lowerbound=1150586.170786, norm of subgrad 1073.343920 dualbound = 2415013.170786, lowerbound=1150586.170786, norm of subgrad 41.329268 stepsize= 1.000000 +dualbound = 2415191.326650, lowerbound=1143726.326650, norm of subgrad 1070.142666 dualbound = 2415191.326650, lowerbound=1143726.326650, norm of subgrad 40.708179 stepsize= 1.000000 +dualbound = 2415419.029492, lowerbound=1151732.029492, norm of subgrad 1073.859874 dualbound = 2415419.029492, lowerbound=1151732.029492, norm of subgrad 40.874232 stepsize= 1.000000 +dualbound = 2415611.076137, lowerbound=1145843.076137, norm of subgrad 1071.127479 dualbound = 2415611.076137, lowerbound=1145843.076137, norm of subgrad 40.780469 stepsize= 1.000000 +dualbound = 2415801.196100, lowerbound=1152256.196100, norm of subgrad 1074.136489 dualbound = 2415801.196100, lowerbound=1152256.196100, norm of subgrad 41.268874 stepsize= 1.000000 +dualbound = 2416009.406272, lowerbound=1148276.406272, norm of subgrad 1072.274874 dualbound = 2416009.406272, lowerbound=1148276.406272, norm of subgrad 41.294191 stepsize= 1.000000 +dualbound = 2416220.315043, lowerbound=1154225.315043, norm of subgrad 1075.050378 dualbound = 2416220.315043, lowerbound=1154225.315043, norm of subgrad 41.459725 stepsize= 1.000000 +dualbound = 2416412.956404, lowerbound=1147046.956404, norm of subgrad 1071.724758 dualbound = 2416412.956404, lowerbound=1147046.956404, norm of subgrad 41.709008 stepsize= 1.000000 +dualbound = 2416597.565212, lowerbound=1151875.565212, norm of subgrad 1073.980710 dualbound = 2416597.565212, lowerbound=1151875.565212, norm of subgrad 41.756542 stepsize= 1.000000 +dualbound = 2416823.428634, lowerbound=1143002.428634, norm of subgrad 1069.829159 dualbound = 2416823.428634, lowerbound=1143002.428634, norm of subgrad 41.926882 stepsize= 1.000000 +dualbound = 2417003.151729, lowerbound=1151137.151729, norm of subgrad 1073.612664 dualbound = 2417003.151729, lowerbound=1151137.151729, norm of subgrad 41.069735 stepsize= 1.000000 +dualbound = 2417239.877434, lowerbound=1147440.877434, norm of subgrad 1071.889396 dualbound = 2417239.877434, lowerbound=1147440.877434, norm of subgrad 41.745966 stepsize= 1.000000 +dualbound = 2417415.139291, lowerbound=1150210.139291, norm of subgrad 1073.185044 dualbound = 2417415.139291, lowerbound=1150210.139291, norm of subgrad 41.124954 stepsize= 1.000000 +dualbound = 2417626.657411, lowerbound=1148101.657411, norm of subgrad 1072.212506 dualbound = 2417626.657411, lowerbound=1148101.657411, norm of subgrad 41.827241 stepsize= 1.000000 +dualbound = 2417803.590787, lowerbound=1151689.590787, norm of subgrad 1073.878760 dualbound = 2417803.590787, lowerbound=1151689.590787, norm of subgrad 41.266613 stepsize= 1.000000 +dualbound = 2418015.861237, lowerbound=1145570.861237, norm of subgrad 1071.027012 dualbound = 2418015.861237, lowerbound=1145570.861237, norm of subgrad 41.716549 stepsize= 1.000000 +dualbound = 2418224.006264, lowerbound=1153712.006264, norm of subgrad 1074.799519 dualbound = 2418224.006264, lowerbound=1153712.006264, norm of subgrad 41.111373 stepsize= 1.000000 +dualbound = 2418436.640612, lowerbound=1151564.640612, norm of subgrad 1073.815459 dualbound = 2418436.640612, lowerbound=1151564.640612, norm of subgrad 41.564821 stepsize= 1.000000 +dualbound = 2418623.473209, lowerbound=1148814.473209, norm of subgrad 1072.529940 dualbound = 2418623.473209, lowerbound=1148814.473209, norm of subgrad 41.144047 stepsize= 1.000000 +dualbound = 2418846.545432, lowerbound=1146810.545432, norm of subgrad 1071.592061 dualbound = 2418846.545432, lowerbound=1146810.545432, norm of subgrad 41.497858 stepsize= 1.000000 +dualbound = 2419024.861069, lowerbound=1152135.861069, norm of subgrad 1074.069300 dualbound = 2419024.861069, lowerbound=1152135.861069, norm of subgrad 40.832777 stepsize= 1.000000 +dualbound = 2419234.040074, lowerbound=1148101.040074, norm of subgrad 1072.192632 dualbound = 2419234.040074, lowerbound=1148101.040074, norm of subgrad 41.293813 stepsize= 1.000000 +dualbound = 2419433.890610, lowerbound=1150454.890610, norm of subgrad 1073.319566 dualbound = 2419433.890610, lowerbound=1150454.890610, norm of subgrad 41.950573 stepsize= 1.000000 +dualbound = 2419627.860346, lowerbound=1146621.860346, norm of subgrad 1071.504951 dualbound = 2419627.860346, lowerbound=1146621.860346, norm of subgrad 41.170010 stepsize= 1.000000 +dualbound = 2419857.698164, lowerbound=1152454.698164, norm of subgrad 1074.259139 dualbound = 2419857.698164, lowerbound=1152454.698164, norm of subgrad 42.518676 stepsize= 1.000000 +dualbound = 2420015.629691, lowerbound=1145603.629691, norm of subgrad 1071.057249 dualbound = 2420015.629691, lowerbound=1145603.629691, norm of subgrad 41.447938 stepsize= 1.000000 +dualbound = 2420271.535612, lowerbound=1155148.535612, norm of subgrad 1075.463405 dualbound = 2420271.535612, lowerbound=1155148.535612, norm of subgrad 41.580114 stepsize= 1.000000 +dualbound = 2420463.577997, lowerbound=1148110.577997, norm of subgrad 1072.172830 dualbound = 2420463.577997, lowerbound=1148110.577997, norm of subgrad 40.448021 stepsize= 1.000000 +dualbound = 2420664.152534, lowerbound=1152397.152534, norm of subgrad 1074.199308 dualbound = 2420664.152534, lowerbound=1152397.152534, norm of subgrad 41.322809 stepsize= 1.000000 +dualbound = 2420832.086105, lowerbound=1146191.086105, norm of subgrad 1071.300185 dualbound = 2420832.086105, lowerbound=1146191.086105, norm of subgrad 40.754553 stepsize= 1.000000 +dualbound = 2421072.032303, lowerbound=1150494.032303, norm of subgrad 1073.299135 dualbound = 2421072.032303, lowerbound=1150494.032303, norm of subgrad 41.436049 stepsize= 1.000000 +dualbound = 2421268.319360, lowerbound=1150583.319360, norm of subgrad 1073.337468 dualbound = 2421268.319360, lowerbound=1150583.319360, norm of subgrad 40.820180 stepsize= 1.000000 +dualbound = 2421449.183388, lowerbound=1151916.183388, norm of subgrad 1073.997292 dualbound = 2421449.183388, lowerbound=1151916.183388, norm of subgrad 41.651699 stepsize= 1.000000 +dualbound = 2421635.286073, lowerbound=1147491.286073, norm of subgrad 1071.924571 dualbound = 2421635.286073, lowerbound=1147491.286073, norm of subgrad 41.437938 stepsize= 1.000000 +dualbound = 2421871.886413, lowerbound=1150195.886413, norm of subgrad 1073.167688 dualbound = 2421871.886413, lowerbound=1150195.886413, norm of subgrad 41.588464 stepsize= 1.000000 +dualbound = 2422074.996643, lowerbound=1152271.996643, norm of subgrad 1074.150826 dualbound = 2422074.996643, lowerbound=1152271.996643, norm of subgrad 41.606613 stepsize= 1.000000 +dualbound = 2422255.664578, lowerbound=1152369.664578, norm of subgrad 1074.204201 dualbound = 2422255.664578, lowerbound=1152369.664578, norm of subgrad 41.541160 stepsize= 1.000000 +dualbound = 2422475.617051, lowerbound=1147761.617051, norm of subgrad 1072.038067 dualbound = 2422475.617051, lowerbound=1147761.617051, norm of subgrad 41.520507 stepsize= 1.000000 +dualbound = 2422669.804910, lowerbound=1149511.804910, norm of subgrad 1072.836336 dualbound = 2422669.804910, lowerbound=1149511.804910, norm of subgrad 40.745403 stepsize= 1.000000 +dualbound = 2422911.167901, lowerbound=1148597.167901, norm of subgrad 1072.448212 dualbound = 2422911.167901, lowerbound=1148597.167901, norm of subgrad 42.300863 stepsize= 1.000000 +dualbound = 2423055.156486, lowerbound=1153570.156486, norm of subgrad 1074.760976 dualbound = 2423055.156486, lowerbound=1153570.156486, norm of subgrad 41.048612 stepsize= 1.000000 +dualbound = 2423278.865185, lowerbound=1147158.865185, norm of subgrad 1071.742443 dualbound = 2423278.865185, lowerbound=1147158.865185, norm of subgrad 41.191124 stepsize= 1.000000 +dualbound = 2423508.261637, lowerbound=1152390.261637, norm of subgrad 1074.180740 dualbound = 2423508.261637, lowerbound=1152390.261637, norm of subgrad 41.272224 stepsize= 1.000000 +dualbound = 2423675.678422, lowerbound=1148162.678422, norm of subgrad 1072.250287 dualbound = 2423675.678422, lowerbound=1148162.678422, norm of subgrad 41.538137 stepsize= 1.000000 +dualbound = 2423881.744533, lowerbound=1151046.744533, norm of subgrad 1073.588722 dualbound = 2423881.744533, lowerbound=1151046.744533, norm of subgrad 41.857689 stepsize= 1.000000 +dualbound = 2424063.129169, lowerbound=1146756.129169, norm of subgrad 1071.583002 dualbound = 2424063.129169, lowerbound=1146756.129169, norm of subgrad 41.417202 stepsize= 1.000000 +dualbound = 2424295.634928, lowerbound=1149605.634928, norm of subgrad 1072.896843 dualbound = 2424295.634928, lowerbound=1149605.634928, norm of subgrad 41.647398 stepsize= 1.000000 +dualbound = 2424493.571780, lowerbound=1154923.571780, norm of subgrad 1075.389033 dualbound = 2424493.571780, lowerbound=1154923.571780, norm of subgrad 41.664576 stepsize= 1.000000 +dualbound = 2424666.631261, lowerbound=1153960.631261, norm of subgrad 1074.931919 dualbound = 2424666.631261, lowerbound=1153960.631261, norm of subgrad 41.122494 stepsize= 1.000000 +dualbound = 2424875.337430, lowerbound=1146803.337430, norm of subgrad 1071.603162 dualbound = 2424875.337430, lowerbound=1146803.337430, norm of subgrad 41.697796 stepsize= 1.000000 +dualbound = 2425076.047176, lowerbound=1152474.047176, norm of subgrad 1074.221135 dualbound = 2425076.047176, lowerbound=1152474.047176, norm of subgrad 40.959855 stepsize= 1.000000 +dualbound = 2425304.201740, lowerbound=1150697.201740, norm of subgrad 1073.417534 dualbound = 2425304.201740, lowerbound=1150697.201740, norm of subgrad 41.906498 stepsize= 1.000000 +dualbound = 2425474.317775, lowerbound=1151445.317775, norm of subgrad 1073.791096 dualbound = 2425474.317775, lowerbound=1151445.317775, norm of subgrad 41.858285 stepsize= 1.000000 +dualbound = 2425672.935007, lowerbound=1146670.935007, norm of subgrad 1071.516185 dualbound = 2425672.935007, lowerbound=1146670.935007, norm of subgrad 40.922087 stepsize= 1.000000 +dualbound = 2425897.181573, lowerbound=1154380.181573, norm of subgrad 1075.109381 dualbound = 2425897.181573, lowerbound=1154380.181573, norm of subgrad 41.282521 stepsize= 1.000000 +dualbound = 2426091.707949, lowerbound=1146758.707949, norm of subgrad 1071.562274 dualbound = 2426091.707949, lowerbound=1146758.707949, norm of subgrad 41.006419 stepsize= 1.000000 +dualbound = 2426293.819202, lowerbound=1153129.819202, norm of subgrad 1074.544005 dualbound = 2426293.819202, lowerbound=1153129.819202, norm of subgrad 41.438041 stepsize= 1.000000 +dualbound = 2426494.739521, lowerbound=1148714.739521, norm of subgrad 1072.461067 dualbound = 2426494.739521, lowerbound=1148714.739521, norm of subgrad 40.729846 stepsize= 1.000000 +dualbound = 2426702.194347, lowerbound=1152768.194347, norm of subgrad 1074.363158 dualbound = 2426702.194347, lowerbound=1152768.194347, norm of subgrad 41.175901 stepsize= 1.000000 +dualbound = 2426881.540303, lowerbound=1147057.540303, norm of subgrad 1071.747890 dualbound = 2426881.540303, lowerbound=1147057.540303, norm of subgrad 42.016020 stepsize= 1.000000 +dualbound = 2427066.401675, lowerbound=1157441.401675, norm of subgrad 1076.566023 dualbound = 2427066.401675, lowerbound=1157441.401675, norm of subgrad 41.687665 stepsize= 1.000000 +dualbound = 2427294.566628, lowerbound=1148868.566628, norm of subgrad 1072.568211 dualbound = 2427294.566628, lowerbound=1148868.566628, norm of subgrad 41.978149 stepsize= 1.000000 +dualbound = 2427484.422485, lowerbound=1147919.422485, norm of subgrad 1072.115862 dualbound = 2427484.422485, lowerbound=1147919.422485, norm of subgrad 41.265674 stepsize= 1.000000 +dualbound = 2427665.127550, lowerbound=1151158.127550, norm of subgrad 1073.636870 dualbound = 2427665.127550, lowerbound=1151158.127550, norm of subgrad 41.457268 stepsize= 1.000000 +dualbound = 2427880.140260, lowerbound=1153058.140260, norm of subgrad 1074.505533 dualbound = 2427880.140260, lowerbound=1153058.140260, norm of subgrad 41.460978 stepsize= 1.000000 +dualbound = 2428099.011142, lowerbound=1147368.011142, norm of subgrad 1071.835814 dualbound = 2428099.011142, lowerbound=1147368.011142, norm of subgrad 41.022809 stepsize= 1.000000 +dualbound = 2428302.097835, lowerbound=1151564.097835, norm of subgrad 1073.789597 dualbound = 2428302.097835, lowerbound=1151564.097835, norm of subgrad 40.780960 stepsize= 1.000000 +dualbound = 2428511.309186, lowerbound=1151209.309186, norm of subgrad 1073.642543 dualbound = 2428511.309186, lowerbound=1151209.309186, norm of subgrad 41.330514 stepsize= 1.000000 +dualbound = 2428689.820539, lowerbound=1155924.820539, norm of subgrad 1075.842842 dualbound = 2428689.820539, lowerbound=1155924.820539, norm of subgrad 41.127987 stepsize= 1.000000 +dualbound = 2428882.725053, lowerbound=1149059.725053, norm of subgrad 1072.665710 dualbound = 2428882.725053, lowerbound=1149059.725053, norm of subgrad 41.772054 stepsize= 1.000000 +dualbound = 2429065.882073, lowerbound=1150144.882073, norm of subgrad 1073.186322 dualbound = 2429065.882073, lowerbound=1150144.882073, norm of subgrad 42.037567 stepsize= 1.000000 +dualbound = 2429275.864044, lowerbound=1148678.864044, norm of subgrad 1072.468118 dualbound = 2429275.864044, lowerbound=1148678.864044, norm of subgrad 41.460607 stepsize= 1.000000 +dualbound = 2429503.872639, lowerbound=1151791.872639, norm of subgrad 1073.908689 dualbound = 2429503.872639, lowerbound=1151791.872639, norm of subgrad 41.424734 stepsize= 1.000000 +dualbound = 2429688.910607, lowerbound=1151705.910607, norm of subgrad 1073.891014 dualbound = 2429688.910607, lowerbound=1151705.910607, norm of subgrad 41.485395 stepsize= 1.000000 +dualbound = 2429898.854022, lowerbound=1153327.854022, norm of subgrad 1074.638011 dualbound = 2429898.854022, lowerbound=1153327.854022, norm of subgrad 41.580565 stepsize= 1.000000 +dualbound = 2430075.085593, lowerbound=1148639.085593, norm of subgrad 1072.461228 dualbound = 2430075.085593, lowerbound=1148639.085593, norm of subgrad 41.354946 stepsize= 1.000000 +dualbound = 2430273.888599, lowerbound=1150575.888599, norm of subgrad 1073.345186 dualbound = 2430273.888599, lowerbound=1150575.888599, norm of subgrad 41.143687 stepsize= 1.000000 +dualbound = 2430503.095909, lowerbound=1151231.095909, norm of subgrad 1073.632663 dualbound = 2430503.095909, lowerbound=1151231.095909, norm of subgrad 41.051277 stepsize= 1.000000 +dualbound = 2430706.750618, lowerbound=1150288.750618, norm of subgrad 1073.244497 dualbound = 2430706.750618, lowerbound=1150288.750618, norm of subgrad 42.055377 stepsize= 1.000000 +dualbound = 2430857.774420, lowerbound=1151029.774420, norm of subgrad 1073.617145 dualbound = 2430857.774420, lowerbound=1151029.774420, norm of subgrad 42.131031 stepsize= 1.000000 +dualbound = 2431095.023663, lowerbound=1149586.023663, norm of subgrad 1072.875586 dualbound = 2431095.023663, lowerbound=1149586.023663, norm of subgrad 41.391415 stepsize= 1.000000 +dualbound = 2431299.258344, lowerbound=1154281.258344, norm of subgrad 1075.074536 dualbound = 2431299.258344, lowerbound=1154281.258344, norm of subgrad 41.330796 stepsize= 1.000000 +dualbound = 2431482.947238, lowerbound=1152935.947238, norm of subgrad 1074.478919 dualbound = 2431482.947238, lowerbound=1152935.947238, norm of subgrad 41.865127 stepsize= 1.000000 +dualbound = 2431695.006434, lowerbound=1149539.006434, norm of subgrad 1072.883035 dualbound = 2431695.006434, lowerbound=1149539.006434, norm of subgrad 41.845659 stepsize= 1.000000 +dualbound = 2431914.371123, lowerbound=1150612.371123, norm of subgrad 1073.354262 dualbound = 2431914.371123, lowerbound=1150612.371123, norm of subgrad 41.186948 stepsize= 1.000000 +dualbound = 2432105.242506, lowerbound=1152040.242506, norm of subgrad 1074.036425 dualbound = 2432105.242506, lowerbound=1152040.242506, norm of subgrad 41.290088 stepsize= 1.000000 +dualbound = 2432288.210618, lowerbound=1152584.210618, norm of subgrad 1074.314298 dualbound = 2432288.210618, lowerbound=1152584.210618, norm of subgrad 41.832620 stepsize= 1.000000 +dualbound = 2432477.903151, lowerbound=1152573.903151, norm of subgrad 1074.302519 dualbound = 2432477.903151, lowerbound=1152573.903151, norm of subgrad 41.733590 stepsize= 1.000000 +dualbound = 2432684.613581, lowerbound=1151483.613581, norm of subgrad 1073.779593 dualbound = 2432684.613581, lowerbound=1151483.613581, norm of subgrad 41.541671 stepsize= 1.000000 +dualbound = 2432890.436463, lowerbound=1153736.436463, norm of subgrad 1074.815071 dualbound = 2432890.436463, lowerbound=1153736.436463, norm of subgrad 41.192510 stepsize= 1.000000 +dualbound = 2433097.416341, lowerbound=1150246.416341, norm of subgrad 1073.176321 dualbound = 2433097.416341, lowerbound=1150246.416341, norm of subgrad 40.840909 stepsize= 1.000000 +dualbound = 2433299.681011, lowerbound=1146232.681011, norm of subgrad 1071.300929 dualbound = 2433299.681011, lowerbound=1146232.681011, norm of subgrad 40.684944 stepsize= 1.000000 +dualbound = 2433519.720125, lowerbound=1150826.720125, norm of subgrad 1073.418241 dualbound = 2433519.720125, lowerbound=1150826.720125, norm of subgrad 40.249709 stepsize= 1.000000 +dualbound = 2433707.930769, lowerbound=1155333.930769, norm of subgrad 1075.522631 dualbound = 2433707.930769, lowerbound=1155333.930769, norm of subgrad 40.040113 stepsize= 1.000000 +dualbound = 2433915.040143, lowerbound=1146839.040143, norm of subgrad 1071.591825 dualbound = 2433915.040143, lowerbound=1146839.040143, norm of subgrad 40.952526 stepsize= 1.000000 +dualbound = 2434087.526235, lowerbound=1153487.526235, norm of subgrad 1074.702994 dualbound = 2434087.526235, lowerbound=1153487.526235, norm of subgrad 40.883812 stepsize= 1.000000 +dualbound = 2434290.330607, lowerbound=1155240.330607, norm of subgrad 1075.547921 dualbound = 2434290.330607, lowerbound=1155240.330607, norm of subgrad 42.021475 stepsize= 1.000000 +dualbound = 2434456.016448, lowerbound=1154114.016448, norm of subgrad 1075.037681 dualbound = 2434456.016448, lowerbound=1154114.016448, norm of subgrad 41.924764 stepsize= 1.000000 +dualbound = 2434680.762650, lowerbound=1151596.762650, norm of subgrad 1073.831813 dualbound = 2434680.762650, lowerbound=1151596.762650, norm of subgrad 41.746212 stepsize= 1.000000 +dualbound = 2434886.854644, lowerbound=1153117.854644, norm of subgrad 1074.536111 dualbound = 2434886.854644, lowerbound=1153117.854644, norm of subgrad 41.425741 stepsize= 1.000000 +dualbound = 2435068.417407, lowerbound=1155157.417407, norm of subgrad 1075.506122 dualbound = 2435068.417407, lowerbound=1155157.417407, norm of subgrad 41.684083 stepsize= 1.000000 +dualbound = 2435255.677047, lowerbound=1148338.677047, norm of subgrad 1072.320697 dualbound = 2435255.677047, lowerbound=1148338.677047, norm of subgrad 41.476013 stepsize= 1.000000 +dualbound = 2435467.644024, lowerbound=1151361.644024, norm of subgrad 1073.744217 dualbound = 2435467.644024, lowerbound=1151361.644024, norm of subgrad 42.154086 stepsize= 1.000000 +dualbound = 2435680.265295, lowerbound=1149618.265295, norm of subgrad 1072.914379 dualbound = 2435680.265295, lowerbound=1149618.265295, norm of subgrad 41.708767 stepsize= 1.000000 +dualbound = 2435869.358233, lowerbound=1152758.358233, norm of subgrad 1074.391157 dualbound = 2435869.358233, lowerbound=1152758.358233, norm of subgrad 41.798241 stepsize= 1.000000 +dualbound = 2436062.558910, lowerbound=1154136.558910, norm of subgrad 1075.005841 dualbound = 2436062.558910, lowerbound=1154136.558910, norm of subgrad 41.160669 stepsize= 1.000000 +dualbound = 2436294.223721, lowerbound=1153839.223721, norm of subgrad 1074.862421 dualbound = 2436294.223721, lowerbound=1153839.223721, norm of subgrad 41.492949 stepsize= 1.000000 +dualbound = 2436448.503025, lowerbound=1152491.503025, norm of subgrad 1074.259979 dualbound = 2436448.503025, lowerbound=1152491.503025, norm of subgrad 41.198050 stepsize= 1.000000 +dualbound = 2436703.820815, lowerbound=1148380.820815, norm of subgrad 1072.322163 dualbound = 2436703.820815, lowerbound=1148380.820815, norm of subgrad 41.824847 stepsize= 1.000000 +dualbound = 2436851.486163, lowerbound=1154278.486163, norm of subgrad 1075.075572 dualbound = 2436851.486163, lowerbound=1154278.486163, norm of subgrad 40.702154 stepsize= 1.000000 +dualbound = 2437099.512302, lowerbound=1153651.512302, norm of subgrad 1074.768120 dualbound = 2437099.512302, lowerbound=1153651.512302, norm of subgrad 41.509350 stepsize= 1.000000 +dualbound = 2437265.932075, lowerbound=1149396.932075, norm of subgrad 1072.777671 dualbound = 2437265.932075, lowerbound=1149396.932075, norm of subgrad 40.266857 stepsize= 1.000000 +dualbound = 2437496.912387, lowerbound=1154443.912387, norm of subgrad 1075.134835 dualbound = 2437496.912387, lowerbound=1154443.912387, norm of subgrad 41.255064 stepsize= 1.000000 +dualbound = 2437679.768746, lowerbound=1151389.768746, norm of subgrad 1073.722855 dualbound = 2437679.768746, lowerbound=1151389.768746, norm of subgrad 40.912790 stepsize= 1.000000 +dualbound = 2437885.033513, lowerbound=1152545.033513, norm of subgrad 1074.270000 dualbound = 2437885.033513, lowerbound=1152545.033513, norm of subgrad 41.427826 stepsize= 1.000000 +dualbound = 2438074.553878, lowerbound=1150244.553878, norm of subgrad 1073.169397 dualbound = 2438074.553878, lowerbound=1150244.553878, norm of subgrad 40.466287 stepsize= 1.000000 +dualbound = 2438298.506430, lowerbound=1151936.506430, norm of subgrad 1073.980683 dualbound = 2438298.506430, lowerbound=1151936.506430, norm of subgrad 41.496416 stepsize= 1.000000 +dualbound = 2438464.416434, lowerbound=1150078.416434, norm of subgrad 1073.144173 dualbound = 2438464.416434, lowerbound=1150078.416434, norm of subgrad 41.544073 stepsize= 1.000000 +dualbound = 2438649.716787, lowerbound=1153150.716787, norm of subgrad 1074.552799 dualbound = 2438649.716787, lowerbound=1153150.716787, norm of subgrad 41.210440 stepsize= 1.000000 +dualbound = 2438881.596933, lowerbound=1151649.596933, norm of subgrad 1073.823355 dualbound = 2438881.596933, lowerbound=1151649.596933, norm of subgrad 40.974140 stepsize= 1.000000 +dualbound = 2439079.009087, lowerbound=1153304.009087, norm of subgrad 1074.607374 dualbound = 2439079.009087, lowerbound=1153304.009087, norm of subgrad 40.919582 stepsize= 1.000000 +dualbound = 2439285.345930, lowerbound=1153774.345930, norm of subgrad 1074.857361 dualbound = 2439285.345930, lowerbound=1153774.345930, norm of subgrad 41.837027 stepsize= 1.000000 +dualbound = 2439434.430636, lowerbound=1153096.430636, norm of subgrad 1074.552665 dualbound = 2439434.430636, lowerbound=1153096.430636, norm of subgrad 41.425653 stepsize= 1.000000 +dualbound = 2439655.032131, lowerbound=1151059.032131, norm of subgrad 1073.600034 dualbound = 2439655.032131, lowerbound=1151059.032131, norm of subgrad 42.173469 stepsize= 1.000000 +dualbound = 2439841.915977, lowerbound=1158039.915977, norm of subgrad 1076.850926 dualbound = 2439841.915977, lowerbound=1158039.915977, norm of subgrad 41.891334 stepsize= 1.000000 +dualbound = 2440035.446112, lowerbound=1150873.446112, norm of subgrad 1073.512201 dualbound = 2440035.446112, lowerbound=1150873.446112, norm of subgrad 41.815429 stepsize= 1.000000 +dualbound = 2440260.267092, lowerbound=1154095.267092, norm of subgrad 1074.961054 dualbound = 2440260.267092, lowerbound=1154095.267092, norm of subgrad 40.875677 stepsize= 1.000000 +dualbound = 2440502.639805, lowerbound=1148329.639805, norm of subgrad 1072.262859 dualbound = 2440502.639805, lowerbound=1148329.639805, norm of subgrad 40.747671 stepsize= 1.000000 +dualbound = 2440658.264236, lowerbound=1155007.264236, norm of subgrad 1075.427480 dualbound = 2440658.264236, lowerbound=1155007.264236, norm of subgrad 41.141517 stepsize= 1.000000 +dualbound = 2440828.313659, lowerbound=1151589.313659, norm of subgrad 1073.823223 dualbound = 2440828.313659, lowerbound=1151589.313659, norm of subgrad 40.951794 stepsize= 1.000000 +dualbound = 2441055.951669, lowerbound=1157251.951669, norm of subgrad 1076.451091 dualbound = 2441055.951669, lowerbound=1157251.951669, norm of subgrad 41.504675 stepsize= 1.000000 +dualbound = 2441234.827952, lowerbound=1152383.827952, norm of subgrad 1074.192640 dualbound = 2441234.827952, lowerbound=1152383.827952, norm of subgrad 41.047245 stepsize= 1.000000 +dualbound = 2441468.119013, lowerbound=1155965.119013, norm of subgrad 1075.839727 dualbound = 2441468.119013, lowerbound=1155965.119013, norm of subgrad 41.222458 stepsize= 1.000000 +dualbound = 2441633.870401, lowerbound=1151047.870401, norm of subgrad 1073.560371 dualbound = 2441633.870401, lowerbound=1151047.870401, norm of subgrad 40.617132 stepsize= 1.000000 +dualbound = 2441855.181877, lowerbound=1155490.181877, norm of subgrad 1075.648261 dualbound = 2441855.181877, lowerbound=1155490.181877, norm of subgrad 41.836724 stepsize= 1.000000 +dualbound = 2442023.058579, lowerbound=1153481.058579, norm of subgrad 1074.713012 dualbound = 2442023.058579, lowerbound=1153481.058579, norm of subgrad 41.168880 stepsize= 1.000000 +dualbound = 2442228.765616, lowerbound=1154415.765616, norm of subgrad 1075.162204 dualbound = 2442228.765616, lowerbound=1154415.765616, norm of subgrad 41.996512 stepsize= 1.000000 +dualbound = 2442414.245203, lowerbound=1149949.245203, norm of subgrad 1073.100762 dualbound = 2442414.245203, lowerbound=1149949.245203, norm of subgrad 42.207577 stepsize= 1.000000 +dualbound = 2442604.443677, lowerbound=1151682.443677, norm of subgrad 1073.898246 dualbound = 2442604.443677, lowerbound=1151682.443677, norm of subgrad 42.014265 stepsize= 1.000000 +dualbound = 2442830.329166, lowerbound=1156191.329166, norm of subgrad 1075.969948 dualbound = 2442830.329166, lowerbound=1156191.329166, norm of subgrad 41.783795 stepsize= 1.000000 +dualbound = 2443038.175911, lowerbound=1153132.175911, norm of subgrad 1074.531608 dualbound = 2443038.175911, lowerbound=1153132.175911, norm of subgrad 41.156369 stepsize= 1.000000 +dualbound = 2443214.432924, lowerbound=1152424.432924, norm of subgrad 1074.191991 dualbound = 2443214.432924, lowerbound=1152424.432924, norm of subgrad 40.500087 stepsize= 1.000000 +dualbound = 2443458.134028, lowerbound=1154948.134028, norm of subgrad 1075.374881 dualbound = 2443458.134028, lowerbound=1154948.134028, norm of subgrad 41.553593 stepsize= 1.000000 +dualbound = 2443604.701042, lowerbound=1151203.701042, norm of subgrad 1073.644122 dualbound = 2443604.701042, lowerbound=1151203.701042, norm of subgrad 40.676369 stepsize= 1.000000 +dualbound = 2443830.918550, lowerbound=1153878.918550, norm of subgrad 1074.833438 dualbound = 2443830.918550, lowerbound=1153878.918550, norm of subgrad 40.177326 stepsize= 1.000000 +dualbound = 2444057.596237, lowerbound=1148340.596237, norm of subgrad 1072.300143 dualbound = 2444057.596237, lowerbound=1148340.596237, norm of subgrad 41.396590 stepsize= 1.000000 +dualbound = 2444223.255505, lowerbound=1153717.255505, norm of subgrad 1074.796379 dualbound = 2444223.255505, lowerbound=1153717.255505, norm of subgrad 40.443285 stepsize= 1.000000 +dualbound = 2444428.092034, lowerbound=1150744.092034, norm of subgrad 1073.445896 dualbound = 2444428.092034, lowerbound=1150744.092034, norm of subgrad 41.795174 stepsize= 1.000000 +dualbound = 2444608.766968, lowerbound=1156982.766968, norm of subgrad 1076.326050 dualbound = 2444608.766968, lowerbound=1156982.766968, norm of subgrad 40.935009 stepsize= 1.000000 +dualbound = 2444806.974891, lowerbound=1153384.974891, norm of subgrad 1074.674823 dualbound = 2444806.974891, lowerbound=1153384.974891, norm of subgrad 41.703812 stepsize= 1.000000 +dualbound = 2445001.369048, lowerbound=1151526.369048, norm of subgrad 1073.788326 dualbound = 2445001.369048, lowerbound=1151526.369048, norm of subgrad 41.102240 stepsize= 1.000000 +dualbound = 2445182.001056, lowerbound=1154331.001056, norm of subgrad 1075.123249 dualbound = 2445182.001056, lowerbound=1154331.001056, norm of subgrad 41.708896 stepsize= 1.000000 +dualbound = 2445404.449919, lowerbound=1155496.449919, norm of subgrad 1075.614917 dualbound = 2445404.449919, lowerbound=1155496.449919, norm of subgrad 40.907809 stepsize= 1.000000 +dualbound = 2445613.691237, lowerbound=1155571.691237, norm of subgrad 1075.681501 dualbound = 2445613.691237, lowerbound=1155571.691237, norm of subgrad 41.572122 stepsize= 1.000000 +dualbound = 2445774.538043, lowerbound=1150623.538043, norm of subgrad 1073.398127 dualbound = 2445774.538043, lowerbound=1150623.538043, norm of subgrad 41.483091 stepsize= 1.000000 +dualbound = 2445993.573071, lowerbound=1152355.573071, norm of subgrad 1074.178557 dualbound = 2445993.573071, lowerbound=1152355.573071, norm of subgrad 41.509457 stepsize= 1.000000 +dualbound = 2446203.224105, lowerbound=1153165.224105, norm of subgrad 1074.549777 dualbound = 2446203.224105, lowerbound=1153165.224105, norm of subgrad 41.251073 stepsize= 1.000000 +dualbound = 2446391.015308, lowerbound=1154973.015308, norm of subgrad 1075.392959 dualbound = 2446391.015308, lowerbound=1154973.015308, norm of subgrad 41.046208 stepsize= 1.000000 +dualbound = 2446607.999183, lowerbound=1156487.999183, norm of subgrad 1076.100367 dualbound = 2446607.999183, lowerbound=1156487.999183, norm of subgrad 41.484743 stepsize= 1.000000 +dualbound = 2446782.417991, lowerbound=1152101.417991, norm of subgrad 1074.065370 dualbound = 2446782.417991, lowerbound=1152101.417991, norm of subgrad 41.102540 stepsize= 1.000000 +dualbound = 2446975.561918, lowerbound=1157088.561918, norm of subgrad 1076.375660 dualbound = 2446975.561918, lowerbound=1157088.561918, norm of subgrad 41.099196 stepsize= 1.000000 +dualbound = 2447174.853300, lowerbound=1151896.853300, norm of subgrad 1074.015760 dualbound = 2447174.853300, lowerbound=1151896.853300, norm of subgrad 42.571016 stepsize= 1.000000 +dualbound = 2447326.357918, lowerbound=1153430.357918, norm of subgrad 1074.733157 dualbound = 2447326.357918, lowerbound=1153430.357918, norm of subgrad 42.101124 stepsize= 1.000000 +dualbound = 2447567.239079, lowerbound=1154635.239079, norm of subgrad 1075.233574 dualbound = 2447567.239079, lowerbound=1154635.239079, norm of subgrad 41.627889 stepsize= 1.000000 +dualbound = 2447763.132604, lowerbound=1155166.132604, norm of subgrad 1075.492042 dualbound = 2447763.132604, lowerbound=1155166.132604, norm of subgrad 41.387118 stepsize= 1.000000 +dualbound = 2447945.180026, lowerbound=1159568.180026, norm of subgrad 1077.548690 dualbound = 2447945.180026, lowerbound=1159568.180026, norm of subgrad 41.533690 stepsize= 1.000000 +dualbound = 2448177.699765, lowerbound=1148580.699765, norm of subgrad 1072.414425 dualbound = 2448177.699765, lowerbound=1148580.699765, norm of subgrad 41.527337 stepsize= 1.000000 +dualbound = 2448344.955972, lowerbound=1157863.955972, norm of subgrad 1076.754826 dualbound = 2448344.955972, lowerbound=1157863.955972, norm of subgrad 41.282638 stepsize= 1.000000 +dualbound = 2448570.547782, lowerbound=1150302.547782, norm of subgrad 1073.191291 dualbound = 2448570.547782, lowerbound=1150302.547782, norm of subgrad 40.774892 stepsize= 1.000000 +dualbound = 2448768.134311, lowerbound=1154046.134311, norm of subgrad 1074.980062 dualbound = 2448768.134311, lowerbound=1154046.134311, norm of subgrad 41.636361 stepsize= 1.000000 +dualbound = 2448923.494515, lowerbound=1156043.494515, norm of subgrad 1075.908683 dualbound = 2448923.494515, lowerbound=1156043.494515, norm of subgrad 41.126150 stepsize= 1.000000 +dualbound = 2449139.659692, lowerbound=1153604.659692, norm of subgrad 1074.740275 dualbound = 2449139.659692, lowerbound=1153604.659692, norm of subgrad 40.965414 stepsize= 1.000000 +dualbound = 2449353.614399, lowerbound=1156946.614399, norm of subgrad 1076.288351 dualbound = 2449353.614399, lowerbound=1156946.614399, norm of subgrad 40.791601 stepsize= 1.000000 +dualbound = 2449552.630708, lowerbound=1153106.630708, norm of subgrad 1074.515998 dualbound = 2449552.630708, lowerbound=1153106.630708, norm of subgrad 40.951390 stepsize= 1.000000 +dualbound = 2449724.849087, lowerbound=1155711.849087, norm of subgrad 1075.764309 dualbound = 2449724.849087, lowerbound=1155711.849087, norm of subgrad 41.583872 stepsize= 1.000000 +dualbound = 2449893.219460, lowerbound=1154729.219460, norm of subgrad 1075.288435 dualbound = 2449893.219460, lowerbound=1154729.219460, norm of subgrad 41.041082 stepsize= 1.000000 +dualbound = 2450123.511398, lowerbound=1155411.511398, norm of subgrad 1075.606113 dualbound = 2450123.511398, lowerbound=1155411.511398, norm of subgrad 41.800621 stepsize= 1.000000 +dualbound = 2450295.219087, lowerbound=1157655.219087, norm of subgrad 1076.649070 dualbound = 2450295.219087, lowerbound=1157655.219087, norm of subgrad 41.106054 stepsize= 1.000000 +dualbound = 2450507.674069, lowerbound=1155292.674069, norm of subgrad 1075.556449 dualbound = 2450507.674069, lowerbound=1155292.674069, norm of subgrad 41.730744 stepsize= 1.000000 +dualbound = 2450690.414351, lowerbound=1154709.414351, norm of subgrad 1075.289456 dualbound = 2450690.414351, lowerbound=1154709.414351, norm of subgrad 41.481807 stepsize= 1.000000 +dualbound = 2450881.599913, lowerbound=1154206.599913, norm of subgrad 1075.066323 dualbound = 2450881.599913, lowerbound=1154206.599913, norm of subgrad 41.859116 stepsize= 1.000000 +dualbound = 2451090.248491, lowerbound=1153484.248491, norm of subgrad 1074.704726 dualbound = 2451090.248491, lowerbound=1153484.248491, norm of subgrad 41.408315 stepsize= 1.000000 +dualbound = 2451278.311319, lowerbound=1151518.311319, norm of subgrad 1073.767345 dualbound = 2451278.311319, lowerbound=1151518.311319, norm of subgrad 40.571700 stepsize= 1.000000 +dualbound = 2451510.505183, lowerbound=1152057.505183, norm of subgrad 1074.023512 dualbound = 2451510.505183, lowerbound=1152057.505183, norm of subgrad 41.245531 stepsize= 1.000000 +dualbound = 2451687.963697, lowerbound=1159057.963697, norm of subgrad 1077.284068 dualbound = 2451687.963697, lowerbound=1159057.963697, norm of subgrad 40.748724 stepsize= 1.000000 +dualbound = 2451867.353973, lowerbound=1156602.353973, norm of subgrad 1076.177659 dualbound = 2451867.353973, lowerbound=1156602.353973, norm of subgrad 41.658016 stepsize= 1.000000 +dualbound = 2452083.394621, lowerbound=1154015.394621, norm of subgrad 1074.945764 dualbound = 2452083.394621, lowerbound=1154015.394621, norm of subgrad 41.340545 stepsize= 1.000000 +dualbound = 2452248.213400, lowerbound=1155308.213400, norm of subgrad 1075.563672 dualbound = 2452248.213400, lowerbound=1155308.213400, norm of subgrad 41.156030 stepsize= 1.000000 +dualbound = 2452465.186101, lowerbound=1155472.186101, norm of subgrad 1075.624091 dualbound = 2452465.186101, lowerbound=1155472.186101, norm of subgrad 41.375992 stepsize= 1.000000 +dualbound = 2452644.980757, lowerbound=1154745.980757, norm of subgrad 1075.275770 dualbound = 2452644.980757, lowerbound=1154745.980757, norm of subgrad 40.642277 stepsize= 1.000000 +dualbound = 2452851.027681, lowerbound=1152323.027681, norm of subgrad 1074.164805 dualbound = 2452851.027681, lowerbound=1152323.027681, norm of subgrad 41.388971 stepsize= 1.000000 +dualbound = 2453038.717746, lowerbound=1157051.717746, norm of subgrad 1076.390597 dualbound = 2453038.717746, lowerbound=1157051.717746, norm of subgrad 41.865141 stepsize= 1.000000 +dualbound = 2453221.110373, lowerbound=1155351.110373, norm of subgrad 1075.577571 dualbound = 2453221.110373, lowerbound=1155351.110373, norm of subgrad 41.211559 stepsize= 1.000000 +dualbound = 2453439.920984, lowerbound=1150575.920984, norm of subgrad 1073.345201 dualbound = 2453439.920984, lowerbound=1150575.920984, norm of subgrad 41.386116 stepsize= 1.000000 +dualbound = 2453631.603878, lowerbound=1156674.603878, norm of subgrad 1076.217731 dualbound = 2453631.603878, lowerbound=1156674.603878, norm of subgrad 41.972406 stepsize= 1.000000 +dualbound = 2453806.026622, lowerbound=1156178.026622, norm of subgrad 1075.970272 dualbound = 2453806.026622, lowerbound=1156178.026622, norm of subgrad 41.333071 stepsize= 1.000000 +dualbound = 2454025.571165, lowerbound=1156834.571165, norm of subgrad 1076.256276 dualbound = 2454025.571165, lowerbound=1156834.571165, norm of subgrad 41.382902 stepsize= 1.000000 +dualbound = 2454231.590765, lowerbound=1157208.590765, norm of subgrad 1076.413764 dualbound = 2454231.590765, lowerbound=1157208.590765, norm of subgrad 40.792396 stepsize= 1.000000 +dualbound = 2454422.574479, lowerbound=1155972.574479, norm of subgrad 1075.854811 dualbound = 2454422.574479, lowerbound=1155972.574479, norm of subgrad 41.011995 stepsize= 1.000000 +dualbound = 2454598.535304, lowerbound=1157002.535304, norm of subgrad 1076.346383 dualbound = 2454598.535304, lowerbound=1157002.535304, norm of subgrad 41.169902 stepsize= 1.000000 +dualbound = 2454789.207174, lowerbound=1158315.207174, norm of subgrad 1076.975491 dualbound = 2454789.207174, lowerbound=1158315.207174, norm of subgrad 41.852979 stepsize= 1.000000 +dualbound = 2454968.485025, lowerbound=1156806.485025, norm of subgrad 1076.248803 dualbound = 2454968.485025, lowerbound=1156806.485025, norm of subgrad 41.039954 stepsize= 1.000000 +dualbound = 2455194.915013, lowerbound=1149632.915013, norm of subgrad 1072.915614 dualbound = 2455194.915013, lowerbound=1149632.915013, norm of subgrad 41.730444 stepsize= 1.000000 +dualbound = 2455363.723922, lowerbound=1157402.723922, norm of subgrad 1076.553168 dualbound = 2455363.723922, lowerbound=1157402.723922, norm of subgrad 41.627021 stepsize= 1.000000 +dualbound = 2455554.276852, lowerbound=1158107.276852, norm of subgrad 1076.853879 dualbound = 2455554.276852, lowerbound=1158107.276852, norm of subgrad 41.201370 stepsize= 1.000000 +dualbound = 2455767.218067, lowerbound=1157348.218067, norm of subgrad 1076.514848 dualbound = 2455767.218067, lowerbound=1157348.218067, norm of subgrad 41.820345 stepsize= 1.000000 +dualbound = 2455968.538567, lowerbound=1153575.538567, norm of subgrad 1074.782554 dualbound = 2455968.538567, lowerbound=1153575.538567, norm of subgrad 42.229380 stepsize= 1.000000 +dualbound = 2456117.996237, lowerbound=1153945.996237, norm of subgrad 1074.943253 dualbound = 2456117.996237, lowerbound=1153945.996237, norm of subgrad 41.309293 stepsize= 1.000000 +dualbound = 2456367.157268, lowerbound=1152126.157268, norm of subgrad 1074.054076 dualbound = 2456367.157268, lowerbound=1152126.157268, norm of subgrad 41.414503 stepsize= 1.000000 +dualbound = 2456556.334383, lowerbound=1159043.334383, norm of subgrad 1077.286561 dualbound = 2456556.334383, lowerbound=1159043.334383, norm of subgrad 41.136080 stepsize= 1.000000 +dualbound = 2456737.927778, lowerbound=1150122.927778, norm of subgrad 1073.127172 dualbound = 2456737.927778, lowerbound=1150122.927778, norm of subgrad 40.750379 stepsize= 1.000000 +dualbound = 2456944.051740, lowerbound=1156707.051740, norm of subgrad 1076.218403 dualbound = 2456944.051740, lowerbound=1156707.051740, norm of subgrad 41.774681 stepsize= 1.000000 +dualbound = 2457124.938262, lowerbound=1153404.938262, norm of subgrad 1074.632932 dualbound = 2457124.938262, lowerbound=1153404.938262, norm of subgrad 40.148307 stepsize= 1.000000 +dualbound = 2457335.764256, lowerbound=1161743.764256, norm of subgrad 1078.510438 dualbound = 2457335.764256, lowerbound=1161743.764256, norm of subgrad 40.642662 stepsize= 1.000000 +dualbound = 2457525.981783, lowerbound=1152251.981783, norm of subgrad 1074.163387 dualbound = 2457525.981783, lowerbound=1152251.981783, norm of subgrad 42.014492 stepsize= 1.000000 +dualbound = 2457697.325059, lowerbound=1155266.325059, norm of subgrad 1075.547919 dualbound = 2457697.325059, lowerbound=1155266.325059, norm of subgrad 41.332110 stepsize= 1.000000 +dualbound = 2457887.365803, lowerbound=1159069.365803, norm of subgrad 1077.317672 dualbound = 2457887.365803, lowerbound=1159069.365803, norm of subgrad 41.641815 stepsize= 1.000000 +dualbound = 2458093.157045, lowerbound=1156456.157045, norm of subgrad 1076.087430 dualbound = 2458093.157045, lowerbound=1156456.157045, norm of subgrad 41.397962 stepsize= 1.000000 +dualbound = 2458282.369725, lowerbound=1156069.369725, norm of subgrad 1075.914202 dualbound = 2458282.369725, lowerbound=1156069.369725, norm of subgrad 41.366807 stepsize= 1.000000 +dualbound = 2458460.916840, lowerbound=1154183.916840, norm of subgrad 1075.026938 dualbound = 2458460.916840, lowerbound=1154183.916840, norm of subgrad 40.957870 stepsize= 1.000000 +dualbound = 2458693.861037, lowerbound=1156491.861037, norm of subgrad 1076.079858 dualbound = 2458693.861037, lowerbound=1156491.861037, norm of subgrad 41.096766 stepsize= 1.000000 +dualbound = 2458872.345667, lowerbound=1156584.345667, norm of subgrad 1076.107497 dualbound = 2458872.345667, lowerbound=1156584.345667, norm of subgrad 40.018554 stepsize= 1.000000 +dualbound = 2459061.621855, lowerbound=1154178.621855, norm of subgrad 1075.032847 dualbound = 2459061.621855, lowerbound=1154178.621855, norm of subgrad 41.307096 stepsize= 1.000000 +dualbound = 2459225.088700, lowerbound=1155297.088700, norm of subgrad 1075.565939 dualbound = 2459225.088700, lowerbound=1155297.088700, norm of subgrad 41.333604 stepsize= 1.000000 +dualbound = 2459455.624991, lowerbound=1158454.624991, norm of subgrad 1077.000290 dualbound = 2459455.624991, lowerbound=1158454.624991, norm of subgrad 41.298139 stepsize= 1.000000 +dualbound = 2459637.578104, lowerbound=1155636.578104, norm of subgrad 1075.680519 dualbound = 2459637.578104, lowerbound=1155636.578104, norm of subgrad 40.422186 stepsize= 1.000000 +dualbound = 2459856.902018, lowerbound=1157592.902018, norm of subgrad 1076.601088 dualbound = 2459856.902018, lowerbound=1157592.902018, norm of subgrad 41.186453 stepsize= 1.000000 +dualbound = 2460025.910953, lowerbound=1155895.910953, norm of subgrad 1075.818717 dualbound = 2460025.910953, lowerbound=1155895.910953, norm of subgrad 40.730933 stepsize= 1.000000 +dualbound = 2460203.101660, lowerbound=1159534.101660, norm of subgrad 1077.529629 dualbound = 2460203.101660, lowerbound=1159534.101660, norm of subgrad 41.390708 stepsize= 1.000000 +dualbound = 2460415.929087, lowerbound=1158534.929087, norm of subgrad 1077.045463 dualbound = 2460415.929087, lowerbound=1158534.929087, norm of subgrad 41.289556 stepsize= 1.000000 +dualbound = 2460603.905285, lowerbound=1155985.905285, norm of subgrad 1075.881455 dualbound = 2460603.905285, lowerbound=1155985.905285, norm of subgrad 41.508748 stepsize= 1.000000 +dualbound = 2460778.948633, lowerbound=1152532.948633, norm of subgrad 1074.290440 dualbound = 2460778.948633, lowerbound=1152532.948633, norm of subgrad 41.737793 stepsize= 1.000000 +dualbound = 2460974.175482, lowerbound=1158028.175482, norm of subgrad 1076.802756 dualbound = 2460974.175482, lowerbound=1158028.175482, norm of subgrad 40.880641 stepsize= 1.000000 +dualbound = 2461208.663640, lowerbound=1156971.663640, norm of subgrad 1076.324609 dualbound = 2461208.663640, lowerbound=1156971.663640, norm of subgrad 41.683188 stepsize= 1.000000 +dualbound = 2461375.536028, lowerbound=1155339.536028, norm of subgrad 1075.551736 dualbound = 2461375.536028, lowerbound=1155339.536028, norm of subgrad 40.482989 stepsize= 1.000000 +dualbound = 2461603.045501, lowerbound=1159667.045501, norm of subgrad 1077.597349 dualbound = 2461603.045501, lowerbound=1159667.045501, norm of subgrad 42.148659 stepsize= 1.000000 +dualbound = 2461738.782853, lowerbound=1157876.782853, norm of subgrad 1076.738958 dualbound = 2461738.782853, lowerbound=1157876.782853, norm of subgrad 40.320433 stepsize= 1.000000 +dualbound = 2461979.188638, lowerbound=1154125.188638, norm of subgrad 1074.986599 dualbound = 2461979.188638, lowerbound=1154125.188638, norm of subgrad 41.369140 stepsize= 1.000000 +dualbound = 2462149.566487, lowerbound=1156121.566487, norm of subgrad 1075.918476 dualbound = 2462149.566487, lowerbound=1156121.566487, norm of subgrad 40.612533 stepsize= 1.000000 +dualbound = 2462360.592572, lowerbound=1155208.592572, norm of subgrad 1075.488072 dualbound = 2462360.592572, lowerbound=1155208.592572, norm of subgrad 40.951509 stepsize= 1.000000 +dualbound = 2462524.106393, lowerbound=1157394.106393, norm of subgrad 1076.544986 dualbound = 2462524.106393, lowerbound=1157394.106393, norm of subgrad 41.454961 stepsize= 1.000000 +dualbound = 2462724.099353, lowerbound=1156946.099353, norm of subgrad 1076.303907 dualbound = 2462724.099353, lowerbound=1156946.099353, norm of subgrad 41.036483 stepsize= 1.000000 +dualbound = 2462936.092869, lowerbound=1159414.092869, norm of subgrad 1077.456771 dualbound = 2462936.092869, lowerbound=1159414.092869, norm of subgrad 41.364157 stepsize= 1.000000 +dualbound = 2463107.121927, lowerbound=1154509.121927, norm of subgrad 1075.187017 dualbound = 2463107.121927, lowerbound=1154509.121927, norm of subgrad 41.097799 stepsize= 1.000000 +dualbound = 2463323.476801, lowerbound=1157496.476801, norm of subgrad 1076.556305 dualbound = 2463323.476801, lowerbound=1157496.476801, norm of subgrad 41.150393 stepsize= 1.000000 +dualbound = 2463476.238217, lowerbound=1155236.238217, norm of subgrad 1075.507433 dualbound = 2463476.238217, lowerbound=1155236.238217, norm of subgrad 40.407443 stepsize= 1.000000 +dualbound = 2463690.783409, lowerbound=1159140.783409, norm of subgrad 1077.374950 dualbound = 2463690.783409, lowerbound=1159140.783409, norm of subgrad 42.550502 stepsize= 1.000000 +dualbound = 2463856.002824, lowerbound=1154257.002824, norm of subgrad 1075.055814 dualbound = 2463856.002824, lowerbound=1154257.002824, norm of subgrad 40.659801 stepsize= 1.000000 +dualbound = 2464083.220509, lowerbound=1157241.220509, norm of subgrad 1076.418701 dualbound = 2464083.220509, lowerbound=1157241.220509, norm of subgrad 40.782566 stepsize= 1.000000 +dualbound = 2464252.998136, lowerbound=1161118.998136, norm of subgrad 1078.235131 dualbound = 2464252.998136, lowerbound=1161118.998136, norm of subgrad 40.518855 stepsize= 1.000000 +dualbound = 2464466.812588, lowerbound=1157994.812588, norm of subgrad 1076.786336 dualbound = 2464466.812588, lowerbound=1157994.812588, norm of subgrad 41.083019 stepsize= 1.000000 +dualbound = 2464658.977341, lowerbound=1154216.977341, norm of subgrad 1075.018129 dualbound = 2464658.977341, lowerbound=1154216.977341, norm of subgrad 40.486600 stepsize= 1.000000 +dualbound = 2464829.593164, lowerbound=1159282.593164, norm of subgrad 1077.405027 dualbound = 2464829.593164, lowerbound=1159282.593164, norm of subgrad 41.104937 stepsize= 1.000000 +dualbound = 2465002.307802, lowerbound=1155897.307802, norm of subgrad 1075.832844 dualbound = 2465002.307802, lowerbound=1155897.307802, norm of subgrad 41.130459 stepsize= 1.000000 +dualbound = 2465237.595542, lowerbound=1156231.595542, norm of subgrad 1075.984942 dualbound = 2465237.595542, lowerbound=1156231.595542, norm of subgrad 41.800571 stepsize= 1.000000 +dualbound = 2465387.860427, lowerbound=1156350.860427, norm of subgrad 1076.023634 dualbound = 2465387.860427, lowerbound=1156350.860427, norm of subgrad 40.326975 stepsize= 1.000000 +dualbound = 2465629.969502, lowerbound=1157947.969502, norm of subgrad 1076.778979 dualbound = 2465629.969502, lowerbound=1157947.969502, norm of subgrad 41.798434 stepsize= 1.000000 +dualbound = 2465790.406394, lowerbound=1159721.406394, norm of subgrad 1077.612364 dualbound = 2465790.406394, lowerbound=1159721.406394, norm of subgrad 41.078424 stepsize= 1.000000 +dualbound = 2465961.470875, lowerbound=1156588.470875, norm of subgrad 1076.171209 dualbound = 2465961.470875, lowerbound=1156588.470875, norm of subgrad 41.557965 stepsize= 1.000000 +dualbound = 2466162.578626, lowerbound=1160892.578626, norm of subgrad 1078.178825 dualbound = 2466162.578626, lowerbound=1160892.578626, norm of subgrad 42.167615 stepsize= 1.000000 +dualbound = 2466385.476594, lowerbound=1154349.476594, norm of subgrad 1075.103007 dualbound = 2466385.476594, lowerbound=1154349.476594, norm of subgrad 41.471653 stepsize= 1.000000 +dualbound = 2466549.542369, lowerbound=1158091.542369, norm of subgrad 1076.852609 dualbound = 2466549.542369, lowerbound=1158091.542369, norm of subgrad 41.037370 stepsize= 1.000000 +dualbound = 2466762.287365, lowerbound=1152744.287365, norm of subgrad 1074.344585 dualbound = 2466762.287365, lowerbound=1152744.287365, norm of subgrad 41.045645 stepsize= 1.000000 +dualbound = 2466958.119676, lowerbound=1159783.119676, norm of subgrad 1077.617799 dualbound = 2466958.119676, lowerbound=1159783.119676, norm of subgrad 40.900273 stepsize= 1.000000 +dualbound = 2467143.783590, lowerbound=1155519.783590, norm of subgrad 1075.656443 dualbound = 2467143.783590, lowerbound=1155519.783590, norm of subgrad 41.263348 stepsize= 1.000000 +dualbound = 2467330.838745, lowerbound=1160131.838745, norm of subgrad 1077.804638 dualbound = 2467330.838745, lowerbound=1160131.838745, norm of subgrad 41.449429 stepsize= 1.000000 +dualbound = 2467509.565271, lowerbound=1152857.565271, norm of subgrad 1074.419641 dualbound = 2467509.565271, lowerbound=1152857.565271, norm of subgrad 41.215610 stepsize= 1.000000 +dualbound = 2467717.559453, lowerbound=1160493.559453, norm of subgrad 1077.969183 dualbound = 2467717.559453, lowerbound=1160493.559453, norm of subgrad 41.617234 stepsize= 1.000000 +dualbound = 2467933.218653, lowerbound=1155776.218653, norm of subgrad 1075.765411 dualbound = 2467933.218653, lowerbound=1155776.218653, norm of subgrad 41.360116 stepsize= 1.000000 +dualbound = 2468118.853028, lowerbound=1160076.853028, norm of subgrad 1077.767068 dualbound = 2468118.853028, lowerbound=1160076.853028, norm of subgrad 41.117325 stepsize= 1.000000 +dualbound = 2468291.383002, lowerbound=1156142.383002, norm of subgrad 1075.935120 dualbound = 2468291.383002, lowerbound=1156142.383002, norm of subgrad 40.823155 stepsize= 1.000000 +dualbound = 2468495.507464, lowerbound=1157802.507464, norm of subgrad 1076.721184 dualbound = 2468495.507464, lowerbound=1157802.507464, norm of subgrad 41.594765 stepsize= 1.000000 +dualbound = 2468668.463535, lowerbound=1153961.463535, norm of subgrad 1074.909514 dualbound = 2468668.463535, lowerbound=1153961.463535, norm of subgrad 40.521057 stepsize= 1.000000 +dualbound = 2468866.605275, lowerbound=1156764.605275, norm of subgrad 1076.229811 dualbound = 2468866.605275, lowerbound=1156764.605275, norm of subgrad 41.281252 stepsize= 1.000000 +dualbound = 2469069.183930, lowerbound=1155881.183930, norm of subgrad 1075.824421 dualbound = 2469069.183930, lowerbound=1155881.183930, norm of subgrad 41.467803 stepsize= 1.000000 +dualbound = 2469255.471144, lowerbound=1159898.471144, norm of subgrad 1077.695445 dualbound = 2469255.471144, lowerbound=1159898.471144, norm of subgrad 41.416026 stepsize= 1.000000 +dualbound = 2469428.527948, lowerbound=1157339.527948, norm of subgrad 1076.504309 dualbound = 2469428.527948, lowerbound=1157339.527948, norm of subgrad 41.171068 stepsize= 1.000000 +dualbound = 2469638.694740, lowerbound=1159638.694740, norm of subgrad 1077.545217 dualbound = 2469638.694740, lowerbound=1159638.694740, norm of subgrad 40.928802 stepsize= 1.000000 +dualbound = 2469839.795779, lowerbound=1159342.795779, norm of subgrad 1077.415331 dualbound = 2469839.795779, lowerbound=1159342.795779, norm of subgrad 41.013425 stepsize= 1.000000 +dualbound = 2470003.543309, lowerbound=1155083.543309, norm of subgrad 1075.475961 dualbound = 2470003.543309, lowerbound=1155083.543309, norm of subgrad 41.578210 stepsize= 1.000000 +dualbound = 2470162.236958, lowerbound=1155162.236958, norm of subgrad 1075.519984 dualbound = 2470162.236958, lowerbound=1155162.236958, norm of subgrad 41.709635 stepsize= 1.000000 +dualbound = 2470393.956314, lowerbound=1161194.956314, norm of subgrad 1078.268963 dualbound = 2470393.956314, lowerbound=1161194.956314, norm of subgrad 41.239779 stepsize= 1.000000 +dualbound = 2470587.663587, lowerbound=1157040.663587, norm of subgrad 1076.335293 dualbound = 2470587.663587, lowerbound=1157040.663587, norm of subgrad 40.628897 stepsize= 1.000000 +dualbound = 2470794.297499, lowerbound=1158465.297499, norm of subgrad 1077.001067 dualbound = 2470794.297499, lowerbound=1158465.297499, norm of subgrad 40.897847 stepsize= 1.000000 +dualbound = 2470964.581312, lowerbound=1155249.581312, norm of subgrad 1075.506663 dualbound = 2470964.581312, lowerbound=1155249.581312, norm of subgrad 40.438643 stepsize= 1.000000 +dualbound = 2471180.100722, lowerbound=1157522.100722, norm of subgrad 1076.569134 dualbound = 2471180.100722, lowerbound=1157522.100722, norm of subgrad 41.164541 stepsize= 1.000000 +dualbound = 2471360.845404, lowerbound=1156140.845404, norm of subgrad 1075.943235 dualbound = 2471360.845404, lowerbound=1156140.845404, norm of subgrad 41.155129 stepsize= 1.000000 +dualbound = 2471554.651480, lowerbound=1155471.651480, norm of subgrad 1075.637788 dualbound = 2471554.651480, lowerbound=1155471.651480, norm of subgrad 41.458486 stepsize= 1.000000 +dualbound = 2471731.001836, lowerbound=1163451.001836, norm of subgrad 1079.331739 dualbound = 2471731.001836, lowerbound=1163451.001836, norm of subgrad 41.016464 stepsize= 1.000000 +dualbound = 2471927.572635, lowerbound=1155217.572635, norm of subgrad 1075.527114 dualbound = 2471927.572635, lowerbound=1155217.572635, norm of subgrad 41.684179 stepsize= 1.000000 +dualbound = 2472125.433436, lowerbound=1156995.433436, norm of subgrad 1076.332864 dualbound = 2472125.433436, lowerbound=1156995.433436, norm of subgrad 41.168687 stepsize= 1.000000 +dualbound = 2472309.291654, lowerbound=1158377.291654, norm of subgrad 1077.010813 dualbound = 2472309.291654, lowerbound=1158377.291654, norm of subgrad 41.938744 stepsize= 1.000000 +dualbound = 2472510.458324, lowerbound=1159518.458324, norm of subgrad 1077.503345 dualbound = 2472510.458324, lowerbound=1159518.458324, norm of subgrad 41.184544 stepsize= 1.000000 +dualbound = 2472702.496774, lowerbound=1154620.496774, norm of subgrad 1075.225789 dualbound = 2472702.496774, lowerbound=1154620.496774, norm of subgrad 41.012662 stepsize= 1.000000 +dualbound = 2472899.540498, lowerbound=1159797.540498, norm of subgrad 1077.647688 dualbound = 2472899.540498, lowerbound=1159797.540498, norm of subgrad 41.521606 stepsize= 1.000000 +dualbound = 2473074.959406, lowerbound=1156663.959406, norm of subgrad 1076.170971 dualbound = 2473074.959406, lowerbound=1156663.959406, norm of subgrad 40.686839 stepsize= 1.000000 +dualbound = 2473312.662623, lowerbound=1159375.662623, norm of subgrad 1077.411557 dualbound = 2473312.662623, lowerbound=1159375.662623, norm of subgrad 40.959776 stepsize= 1.000000 +dualbound = 2473469.595828, lowerbound=1155573.595828, norm of subgrad 1075.676343 dualbound = 2473469.595828, lowerbound=1155573.595828, norm of subgrad 40.779078 stepsize= 1.000000 +dualbound = 2473664.810874, lowerbound=1159082.810874, norm of subgrad 1077.318807 dualbound = 2473664.810874, lowerbound=1159082.810874, norm of subgrad 41.571806 stepsize= 1.000000 +dualbound = 2473837.810049, lowerbound=1154972.810049, norm of subgrad 1075.395653 dualbound = 2473837.810049, lowerbound=1154972.810049, norm of subgrad 40.938969 stepsize= 1.000000 +dualbound = 2474039.597741, lowerbound=1156463.597741, norm of subgrad 1076.091352 dualbound = 2474039.597741, lowerbound=1156463.597741, norm of subgrad 41.361669 stepsize= 1.000000 +dualbound = 2474221.645641, lowerbound=1160970.645641, norm of subgrad 1078.187203 dualbound = 2474221.645641, lowerbound=1160970.645641, norm of subgrad 41.219509 stepsize= 1.000000 +dualbound = 2474405.674456, lowerbound=1156604.674456, norm of subgrad 1076.164799 dualbound = 2474405.674456, lowerbound=1156604.674456, norm of subgrad 41.352495 stepsize= 1.000000 +dualbound = 2474620.360269, lowerbound=1162523.360269, norm of subgrad 1078.865311 dualbound = 2474620.360269, lowerbound=1162523.360269, norm of subgrad 40.517722 stepsize= 1.000000 +dualbound = 2474839.776516, lowerbound=1157138.776516, norm of subgrad 1076.387373 dualbound = 2474839.776516, lowerbound=1157138.776516, norm of subgrad 41.114672 stepsize= 1.000000 +dualbound = 2474986.969381, lowerbound=1156318.969381, norm of subgrad 1076.039948 dualbound = 2474986.969381, lowerbound=1156318.969381, norm of subgrad 41.111955 stepsize= 1.000000 +dualbound = 2475178.325320, lowerbound=1159792.325320, norm of subgrad 1077.608614 dualbound = 2475178.325320, lowerbound=1159792.325320, norm of subgrad 40.488961 stepsize= 1.000000 +dualbound = 2475389.723766, lowerbound=1156230.723766, norm of subgrad 1075.979890 dualbound = 2475389.723766, lowerbound=1156230.723766, norm of subgrad 41.393217 stepsize= 1.000000 +dualbound = 2475583.217213, lowerbound=1158899.217213, norm of subgrad 1077.184393 dualbound = 2475583.217213, lowerbound=1158899.217213, norm of subgrad 40.255353 stepsize= 1.000000 +dualbound = 2475775.630986, lowerbound=1157535.630986, norm of subgrad 1076.568916 dualbound = 2475775.630986, lowerbound=1157535.630986, norm of subgrad 40.711347 stepsize= 1.000000 +dualbound = 2475955.120023, lowerbound=1154669.120023, norm of subgrad 1075.237704 dualbound = 2475955.120023, lowerbound=1154669.120023, norm of subgrad 40.576952 stepsize= 1.000000 +dualbound = 2476156.727619, lowerbound=1158254.727619, norm of subgrad 1076.924198 dualbound = 2476156.727619, lowerbound=1158254.727619, norm of subgrad 41.383663 stepsize= 1.000000 +dualbound = 2476324.904711, lowerbound=1160111.904711, norm of subgrad 1077.785649 dualbound = 2476324.904711, lowerbound=1160111.904711, norm of subgrad 40.965560 stepsize= 1.000000 +dualbound = 2476559.685243, lowerbound=1159251.685243, norm of subgrad 1077.366087 dualbound = 2476559.685243, lowerbound=1159251.685243, norm of subgrad 41.240521 stepsize= 1.000000 +dualbound = 2476694.351022, lowerbound=1158328.351022, norm of subgrad 1076.998306 dualbound = 2476694.351022, lowerbound=1158328.351022, norm of subgrad 41.613288 stepsize= 1.000000 +dualbound = 2476872.813325, lowerbound=1156437.813325, norm of subgrad 1076.103068 dualbound = 2476872.813325, lowerbound=1156437.813325, norm of subgrad 41.694871 stepsize= 1.000000 +dualbound = 2477086.973261, lowerbound=1160421.973261, norm of subgrad 1077.903972 dualbound = 2477086.973261, lowerbound=1160421.973261, norm of subgrad 40.855354 stepsize= 1.000000 +dualbound = 2477303.431190, lowerbound=1156313.431190, norm of subgrad 1076.024364 dualbound = 2477303.431190, lowerbound=1156313.431190, norm of subgrad 41.610791 stepsize= 1.000000 +dualbound = 2477461.267760, lowerbound=1155779.267760, norm of subgrad 1075.775194 dualbound = 2477461.267760, lowerbound=1155779.267760, norm of subgrad 40.875868 stepsize= 1.000000 +dualbound = 2477650.867072, lowerbound=1157295.867072, norm of subgrad 1076.497500 dualbound = 2477650.867072, lowerbound=1157295.867072, norm of subgrad 41.720490 stepsize= 1.000000 +dualbound = 2477865.150979, lowerbound=1161832.150979, norm of subgrad 1078.569029 dualbound = 2477865.150979, lowerbound=1161832.150979, norm of subgrad 41.149531 stepsize= 1.000000 +dualbound = 2478050.782544, lowerbound=1156241.782544, norm of subgrad 1075.979917 dualbound = 2478050.782544, lowerbound=1156241.782544, norm of subgrad 40.946692 stepsize= 1.000000 +dualbound = 2478263.990369, lowerbound=1162720.990369, norm of subgrad 1078.977289 dualbound = 2478263.990369, lowerbound=1162720.990369, norm of subgrad 41.039101 stepsize= 1.000000 +dualbound = 2478433.520743, lowerbound=1155346.520743, norm of subgrad 1075.580086 dualbound = 2478433.520743, lowerbound=1155346.520743, norm of subgrad 41.176818 stepsize= 1.000000 +dualbound = 2478619.482714, lowerbound=1160674.482714, norm of subgrad 1078.024342 dualbound = 2478619.482714, lowerbound=1160674.482714, norm of subgrad 40.595098 stepsize= 1.000000 +dualbound = 2478850.510990, lowerbound=1157789.510990, norm of subgrad 1076.681713 dualbound = 2478850.510990, lowerbound=1157789.510990, norm of subgrad 41.049096 stepsize= 1.000000 +dualbound = 2479010.353767, lowerbound=1158482.353767, norm of subgrad 1077.061444 dualbound = 2479010.353767, lowerbound=1158482.353767, norm of subgrad 41.699434 stepsize= 1.000000 +dualbound = 2479163.104384, lowerbound=1155162.104384, norm of subgrad 1075.492959 dualbound = 2479163.104384, lowerbound=1155162.104384, norm of subgrad 40.935933 stepsize= 1.000000 +dualbound = 2479407.535681, lowerbound=1160761.535681, norm of subgrad 1078.065182 dualbound = 2479407.535681, lowerbound=1160761.535681, norm of subgrad 41.321076 stepsize= 1.000000 +dualbound = 2479585.357939, lowerbound=1158118.357939, norm of subgrad 1076.846023 dualbound = 2479585.357939, lowerbound=1158118.357939, norm of subgrad 40.704082 stepsize= 1.000000 +dualbound = 2479770.470304, lowerbound=1157864.470304, norm of subgrad 1076.730454 dualbound = 2479770.470304, lowerbound=1157864.470304, norm of subgrad 40.854772 stepsize= 1.000000 +dualbound = 2479952.136592, lowerbound=1158737.136592, norm of subgrad 1077.139330 dualbound = 2479952.136592, lowerbound=1158737.136592, norm of subgrad 40.910467 stepsize= 1.000000 +dualbound = 2480154.342548, lowerbound=1154421.342548, norm of subgrad 1075.118292 dualbound = 2480154.342548, lowerbound=1154421.342548, norm of subgrad 40.745625 stepsize= 1.000000 +dualbound = 2480340.393912, lowerbound=1158716.393912, norm of subgrad 1077.116704 dualbound = 2480340.393912, lowerbound=1158716.393912, norm of subgrad 40.620824 stepsize= 1.000000 +dualbound = 2480550.364121, lowerbound=1159495.364121, norm of subgrad 1077.501445 dualbound = 2480550.364121, lowerbound=1159495.364121, norm of subgrad 41.520720 stepsize= 1.000000 +dualbound = 2480719.286666, lowerbound=1156168.286666, norm of subgrad 1075.953199 dualbound = 2480719.286666, lowerbound=1156168.286666, norm of subgrad 40.938033 stepsize= 1.000000 +dualbound = 2480925.079340, lowerbound=1156583.079340, norm of subgrad 1076.131999 dualbound = 2480925.079340, lowerbound=1156583.079340, norm of subgrad 41.021856 stepsize= 1.000000 +dualbound = 2481113.915445, lowerbound=1162981.915445, norm of subgrad 1079.116729 dualbound = 2481113.915445, lowerbound=1162981.915445, norm of subgrad 41.229069 stepsize= 1.000000 +dualbound = 2481317.043901, lowerbound=1154104.043901, norm of subgrad 1074.961880 dualbound = 2481317.043901, lowerbound=1154104.043901, norm of subgrad 40.523184 stepsize= 1.000000 +dualbound = 2481499.530382, lowerbound=1160648.530382, norm of subgrad 1078.016943 dualbound = 2481499.530382, lowerbound=1160648.530382, norm of subgrad 40.675379 stepsize= 1.000000 +dualbound = 2481690.180108, lowerbound=1159076.180108, norm of subgrad 1077.280920 dualbound = 2481690.180108, lowerbound=1159076.180108, norm of subgrad 40.603568 stepsize= 1.000000 +dualbound = 2481881.404940, lowerbound=1162360.404940, norm of subgrad 1078.840769 dualbound = 2481881.404940, lowerbound=1162360.404940, norm of subgrad 41.571924 stepsize= 1.000000 +dualbound = 2482028.036681, lowerbound=1155006.036681, norm of subgrad 1075.435278 dualbound = 2482028.036681, lowerbound=1155006.036681, norm of subgrad 41.250839 stepsize= 1.000000 +dualbound = 2482248.260076, lowerbound=1157932.260076, norm of subgrad 1076.797688 dualbound = 2482248.260076, lowerbound=1157932.260076, norm of subgrad 42.204542 stepsize= 1.000000 +dualbound = 2482406.799462, lowerbound=1158261.799462, norm of subgrad 1076.978087 dualbound = 2482406.799462, lowerbound=1158261.799462, norm of subgrad 42.172733 stepsize= 1.000000 +dualbound = 2482603.901789, lowerbound=1157942.901789, norm of subgrad 1076.790092 dualbound = 2482603.901789, lowerbound=1157942.901789, norm of subgrad 41.606518 stepsize= 1.000000 +dualbound = 2482849.300464, lowerbound=1156759.300464, norm of subgrad 1076.203652 dualbound = 2482849.300464, lowerbound=1156759.300464, norm of subgrad 41.235891 stepsize= 1.000000 +dualbound = 2483019.517595, lowerbound=1164156.517595, norm of subgrad 1079.651572 dualbound = 2483019.517595, lowerbound=1164156.517595, norm of subgrad 40.758031 stepsize= 1.000000 +dualbound = 2483214.685408, lowerbound=1155818.685408, norm of subgrad 1075.761909 dualbound = 2483214.685408, lowerbound=1155818.685408, norm of subgrad 40.498985 stepsize= 1.000000 +dualbound = 2483392.556478, lowerbound=1161426.556478, norm of subgrad 1078.391653 dualbound = 2483392.556478, lowerbound=1161426.556478, norm of subgrad 40.986230 stepsize= 1.000000 +dualbound = 2483582.322932, lowerbound=1156474.322932, norm of subgrad 1076.101911 dualbound = 2483582.322932, lowerbound=1156474.322932, norm of subgrad 41.361413 stepsize= 1.000000 +dualbound = 2483764.716500, lowerbound=1157772.716500, norm of subgrad 1076.674843 dualbound = 2483764.716500, lowerbound=1157772.716500, norm of subgrad 40.477075 stepsize= 1.000000 +dualbound = 2483978.102104, lowerbound=1157995.102104, norm of subgrad 1076.789256 dualbound = 2483978.102104, lowerbound=1157995.102104, norm of subgrad 41.150767 stepsize= 1.000000 +dualbound = 2484149.656128, lowerbound=1160365.656128, norm of subgrad 1077.908464 dualbound = 2484149.656128, lowerbound=1160365.656128, norm of subgrad 41.140661 stepsize= 1.000000 +dualbound = 2484351.084308, lowerbound=1158385.084308, norm of subgrad 1076.954077 dualbound = 2484351.084308, lowerbound=1158385.084308, norm of subgrad 40.576202 stepsize= 1.000000 +dualbound = 2484567.704681, lowerbound=1159565.704681, norm of subgrad 1077.515060 dualbound = 2484567.704681, lowerbound=1159565.704681, norm of subgrad 41.104992 stepsize= 1.000000 +dualbound = 2484732.614007, lowerbound=1157286.614007, norm of subgrad 1076.466727 dualbound = 2484732.614007, lowerbound=1157286.614007, norm of subgrad 40.729711 stepsize= 1.000000 +dualbound = 2484918.211247, lowerbound=1158802.211247, norm of subgrad 1077.189961 dualbound = 2484918.211247, lowerbound=1158802.211247, norm of subgrad 41.492135 stepsize= 1.000000 +dualbound = 2485100.840503, lowerbound=1161187.840503, norm of subgrad 1078.311106 dualbound = 2485100.840503, lowerbound=1161187.840503, norm of subgrad 41.828570 stepsize= 1.000000 +dualbound = 2485285.024614, lowerbound=1156841.024614, norm of subgrad 1076.290400 dualbound = 2485285.024614, lowerbound=1156841.024614, norm of subgrad 41.763430 stepsize= 1.000000 +dualbound = 2485468.393782, lowerbound=1156295.393782, norm of subgrad 1076.039680 dualbound = 2485468.393782, lowerbound=1156295.393782, norm of subgrad 41.825461 stepsize= 1.000000 +dualbound = 2485691.921187, lowerbound=1162544.921187, norm of subgrad 1078.911452 dualbound = 2485691.921187, lowerbound=1162544.921187, norm of subgrad 41.575563 stepsize= 1.000000 +dualbound = 2485880.471165, lowerbound=1156768.471165, norm of subgrad 1076.262269 dualbound = 2485880.471165, lowerbound=1156768.471165, norm of subgrad 41.958908 stepsize= 1.000000 +dualbound = 2486034.338219, lowerbound=1160132.338219, norm of subgrad 1077.809509 dualbound = 2486034.338219, lowerbound=1160132.338219, norm of subgrad 41.168763 stepsize= 1.000000 +dualbound = 2486272.313577, lowerbound=1157277.313577, norm of subgrad 1076.463336 dualbound = 2486272.313577, lowerbound=1157277.313577, norm of subgrad 41.641030 stepsize= 1.000000 +dualbound = 2486432.315279, lowerbound=1161946.315279, norm of subgrad 1078.622416 dualbound = 2486432.315279, lowerbound=1161946.315279, norm of subgrad 40.496934 stepsize= 1.000000 +dualbound = 2486622.440525, lowerbound=1156604.440525, norm of subgrad 1076.156792 dualbound = 2486622.440525, lowerbound=1156604.440525, norm of subgrad 41.220447 stepsize= 1.000000 +dualbound = 2486832.694833, lowerbound=1158967.694833, norm of subgrad 1077.244956 dualbound = 2486832.694833, lowerbound=1158967.694833, norm of subgrad 41.222012 stepsize= 1.000000 +dualbound = 2487018.693445, lowerbound=1157757.693445, norm of subgrad 1076.684120 dualbound = 2487018.693445, lowerbound=1157757.693445, norm of subgrad 40.951174 stepsize= 1.000000 +dualbound = 2487207.443442, lowerbound=1158490.443442, norm of subgrad 1076.990921 dualbound = 2487207.443442, lowerbound=1158490.443442, norm of subgrad 40.096758 stepsize= 1.000000 +dualbound = 2487411.929150, lowerbound=1158651.929150, norm of subgrad 1077.090957 dualbound = 2487411.929150, lowerbound=1158651.929150, norm of subgrad 40.957120 stepsize= 1.000000 +dualbound = 2487584.862472, lowerbound=1157231.862472, norm of subgrad 1076.443618 dualbound = 2487584.862472, lowerbound=1157231.862472, norm of subgrad 40.889281 stepsize= 1.000000 +dualbound = 2487782.560737, lowerbound=1161087.560737, norm of subgrad 1078.222872 dualbound = 2487782.560737, lowerbound=1161087.560737, norm of subgrad 40.923077 stepsize= 1.000000 +dualbound = 2487972.691177, lowerbound=1159050.691177, norm of subgrad 1077.283014 dualbound = 2487972.691177, lowerbound=1159050.691177, norm of subgrad 40.964990 stepsize= 1.000000 +dualbound = 2488182.132853, lowerbound=1161160.132853, norm of subgrad 1078.251887 dualbound = 2488182.132853, lowerbound=1161160.132853, norm of subgrad 40.944373 stepsize= 1.000000 +dualbound = 2488346.265902, lowerbound=1159015.265902, norm of subgrad 1077.260073 dualbound = 2488346.265902, lowerbound=1159015.265902, norm of subgrad 40.473856 stepsize= 1.000000 +dualbound = 2488568.547081, lowerbound=1158453.547081, norm of subgrad 1077.000718 dualbound = 2488568.547081, lowerbound=1158453.547081, norm of subgrad 41.222338 stepsize= 1.000000 +dualbound = 2488733.534240, lowerbound=1160533.534240, norm of subgrad 1077.981231 dualbound = 2488733.534240, lowerbound=1160533.534240, norm of subgrad 40.926607 stepsize= 1.000000 +dualbound = 2488917.080088, lowerbound=1160671.080088, norm of subgrad 1078.047346 dualbound = 2488917.080088, lowerbound=1160671.080088, norm of subgrad 41.213418 stepsize= 1.000000 +dualbound = 2489117.212189, lowerbound=1159574.212189, norm of subgrad 1077.523184 dualbound = 2489117.212189, lowerbound=1159574.212189, norm of subgrad 41.013804 stepsize= 1.000000 +dualbound = 2489295.813520, lowerbound=1154544.813520, norm of subgrad 1075.187339 dualbound = 2489295.813520, lowerbound=1154544.813520, norm of subgrad 40.762744 stepsize= 1.000000 +dualbound = 2489494.667703, lowerbound=1158913.667703, norm of subgrad 1077.226841 dualbound = 2489494.667703, lowerbound=1158913.667703, norm of subgrad 41.265654 stepsize= 1.000000 +dualbound = 2489691.173665, lowerbound=1159293.173665, norm of subgrad 1077.401584 dualbound = 2489691.173665, lowerbound=1159293.173665, norm of subgrad 41.200800 stepsize= 1.000000 +dualbound = 2489875.498052, lowerbound=1161126.498052, norm of subgrad 1078.257621 dualbound = 2489875.498052, lowerbound=1161126.498052, norm of subgrad 41.198597 stepsize= 1.000000 +dualbound = 2490062.130251, lowerbound=1158833.130251, norm of subgrad 1077.177390 dualbound = 2490062.130251, lowerbound=1158833.130251, norm of subgrad 40.799904 stepsize= 1.000000 +dualbound = 2490272.896598, lowerbound=1162167.896598, norm of subgrad 1078.739031 dualbound = 2490272.896598, lowerbound=1162167.896598, norm of subgrad 41.482121 stepsize= 1.000000 +dualbound = 2490436.873973, lowerbound=1157000.873973, norm of subgrad 1076.360011 dualbound = 2490436.873973, lowerbound=1157000.873973, norm of subgrad 41.400210 stepsize= 1.000000 +dualbound = 2490607.592780, lowerbound=1155290.592780, norm of subgrad 1075.533632 dualbound = 2490607.592780, lowerbound=1155290.592780, norm of subgrad 40.653644 stepsize= 1.000000 +dualbound = 2490820.721569, lowerbound=1159324.721569, norm of subgrad 1077.408336 dualbound = 2490820.721569, lowerbound=1159324.721569, norm of subgrad 41.196223 stepsize= 1.000000 +dualbound = 2491008.758619, lowerbound=1164953.758619, norm of subgrad 1080.040165 dualbound = 2491008.758619, lowerbound=1164953.758619, norm of subgrad 41.485384 stepsize= 1.000000 +dualbound = 2491183.244815, lowerbound=1155554.244815, norm of subgrad 1075.661771 dualbound = 2491183.244815, lowerbound=1155554.244815, norm of subgrad 40.847108 stepsize= 1.000000 +dualbound = 2491374.087258, lowerbound=1162056.087258, norm of subgrad 1078.688596 dualbound = 2491374.087258, lowerbound=1162056.087258, norm of subgrad 41.277626 stepsize= 1.000000 +dualbound = 2491559.764425, lowerbound=1161220.764425, norm of subgrad 1078.300405 dualbound = 2491559.764425, lowerbound=1161220.764425, norm of subgrad 41.190741 stepsize= 1.000000 +dualbound = 2491764.796275, lowerbound=1159006.796275, norm of subgrad 1077.257071 dualbound = 2491764.796275, lowerbound=1159006.796275, norm of subgrad 41.000388 stepsize= 1.000000 +dualbound = 2491966.997053, lowerbound=1156400.997053, norm of subgrad 1076.070164 dualbound = 2491966.997053, lowerbound=1156400.997053, norm of subgrad 41.571634 stepsize= 1.000000 +dualbound = 2492128.483565, lowerbound=1158898.483565, norm of subgrad 1077.222114 dualbound = 2492128.483565, lowerbound=1158898.483565, norm of subgrad 40.871586 stepsize= 1.000000 +dualbound = 2492338.271026, lowerbound=1159972.271026, norm of subgrad 1077.703703 dualbound = 2492338.271026, lowerbound=1159972.271026, norm of subgrad 41.021793 stepsize= 1.000000 +dualbound = 2492531.783219, lowerbound=1161543.783219, norm of subgrad 1078.425604 dualbound = 2492531.783219, lowerbound=1161543.783219, norm of subgrad 40.638802 stepsize= 1.000000 +dualbound = 2492726.528350, lowerbound=1159059.528350, norm of subgrad 1077.280153 dualbound = 2492726.528350, lowerbound=1159059.528350, norm of subgrad 40.838035 stepsize= 1.000000 +dualbound = 2492934.689168, lowerbound=1158208.689168, norm of subgrad 1076.891679 dualbound = 2492934.689168, lowerbound=1158208.689168, norm of subgrad 41.172331 stepsize= 1.000000 +dualbound = 2493094.370442, lowerbound=1159602.370442, norm of subgrad 1077.557131 dualbound = 2493094.370442, lowerbound=1159602.370442, norm of subgrad 41.069225 stepsize= 1.000000 +dualbound = 2493292.990016, lowerbound=1160977.990016, norm of subgrad 1078.142379 dualbound = 2493292.990016, lowerbound=1160977.990016, norm of subgrad 40.144982 stepsize= 1.000000 +dualbound = 2493494.721336, lowerbound=1159451.721336, norm of subgrad 1077.485833 dualbound = 2493494.721336, lowerbound=1159451.721336, norm of subgrad 41.541922 stepsize= 1.000000 +dualbound = 2493651.989299, lowerbound=1158426.989299, norm of subgrad 1077.017636 dualbound = 2493651.989299, lowerbound=1158426.989299, norm of subgrad 41.197912 stepsize= 1.000000 +dualbound = 2493855.124012, lowerbound=1160041.124012, norm of subgrad 1077.757915 dualbound = 2493855.124012, lowerbound=1160041.124012, norm of subgrad 41.522701 stepsize= 1.000000 +dualbound = 2494055.061433, lowerbound=1155705.061433, norm of subgrad 1075.722112 dualbound = 2494055.061433, lowerbound=1155705.061433, norm of subgrad 40.901558 stepsize= 1.000000 +dualbound = 2494227.278743, lowerbound=1158600.278743, norm of subgrad 1077.069301 dualbound = 2494227.278743, lowerbound=1158600.278743, norm of subgrad 40.622867 stepsize= 1.000000 +dualbound = 2494422.577904, lowerbound=1161443.577904, norm of subgrad 1078.367552 dualbound = 2494422.577904, lowerbound=1161443.577904, norm of subgrad 40.352189 stepsize= 1.000000 +dualbound = 2494629.470196, lowerbound=1158812.470196, norm of subgrad 1077.165015 dualbound = 2494629.470196, lowerbound=1158812.470196, norm of subgrad 40.974288 stepsize= 1.000000 +dualbound = 2494791.297705, lowerbound=1161255.297705, norm of subgrad 1078.298334 dualbound = 2494791.297705, lowerbound=1161255.297705, norm of subgrad 40.420632 stepsize= 1.000000 +dualbound = 2494972.484063, lowerbound=1159184.484063, norm of subgrad 1077.363673 dualbound = 2494972.484063, lowerbound=1159184.484063, norm of subgrad 41.342307 stepsize= 1.000000 +dualbound = 2495179.295245, lowerbound=1159871.295245, norm of subgrad 1077.671237 dualbound = 2495179.295245, lowerbound=1159871.295245, norm of subgrad 41.361953 stepsize= 1.000000 +dualbound = 2495358.054378, lowerbound=1159143.054378, norm of subgrad 1077.333307 dualbound = 2495358.054378, lowerbound=1159143.054378, norm of subgrad 41.021447 stepsize= 1.000000 +dualbound = 2495557.520041, lowerbound=1159217.520041, norm of subgrad 1077.379005 dualbound = 2495557.520041, lowerbound=1159217.520041, norm of subgrad 41.562792 stepsize= 1.000000 +dualbound = 2495727.651513, lowerbound=1156893.651513, norm of subgrad 1076.295337 dualbound = 2495727.651513, lowerbound=1156893.651513, norm of subgrad 41.086877 stepsize= 1.000000 +dualbound = 2495921.148787, lowerbound=1158948.148787, norm of subgrad 1077.253057 dualbound = 2495921.148787, lowerbound=1158948.148787, norm of subgrad 41.466821 stepsize= 1.000000 +dualbound = 2496122.941503, lowerbound=1162443.941503, norm of subgrad 1078.853531 dualbound = 2496122.941503, lowerbound=1162443.941503, norm of subgrad 41.021857 stepsize= 1.000000 +dualbound = 2496298.231889, lowerbound=1160093.231889, norm of subgrad 1077.783017 dualbound = 2496298.231889, lowerbound=1160093.231889, norm of subgrad 41.210319 stepsize= 1.000000 +dualbound = 2496498.636005, lowerbound=1159950.636005, norm of subgrad 1077.702480 dualbound = 2496498.636005, lowerbound=1159950.636005, norm of subgrad 41.138840 stepsize= 1.000000 +dualbound = 2496675.789007, lowerbound=1158628.789007, norm of subgrad 1077.102033 dualbound = 2496675.789007, lowerbound=1158628.789007, norm of subgrad 41.196517 stepsize= 1.000000 +dualbound = 2496863.120291, lowerbound=1159463.120291, norm of subgrad 1077.477666 dualbound = 2496863.120291, lowerbound=1159463.120291, norm of subgrad 41.016232 stepsize= 1.000000 +dualbound = 2497064.537317, lowerbound=1160036.537317, norm of subgrad 1077.740014 dualbound = 2497064.537317, lowerbound=1160036.537317, norm of subgrad 41.090352 stepsize= 1.000000 +dualbound = 2497232.462524, lowerbound=1155533.462524, norm of subgrad 1075.662801 dualbound = 2497232.462524, lowerbound=1155533.462524, norm of subgrad 41.047840 stepsize= 1.000000 +dualbound = 2497439.370793, lowerbound=1159286.370793, norm of subgrad 1077.388681 dualbound = 2497439.370793, lowerbound=1159286.370793, norm of subgrad 41.071989 stepsize= 1.000000 +dualbound = 2497624.557226, lowerbound=1164762.557226, norm of subgrad 1079.935441 dualbound = 2497624.557226, lowerbound=1164762.557226, norm of subgrad 41.026655 stepsize= 1.000000 +dualbound = 2497802.598726, lowerbound=1161761.598726, norm of subgrad 1078.564601 dualbound = 2497802.598726, lowerbound=1161761.598726, norm of subgrad 41.449264 stepsize= 1.000000 +dualbound = 2498013.109287, lowerbound=1157260.109287, norm of subgrad 1076.439552 dualbound = 2498013.109287, lowerbound=1157260.109287, norm of subgrad 40.896339 stepsize= 1.000000 +dualbound = 2498181.289407, lowerbound=1153890.289407, norm of subgrad 1074.871755 dualbound = 2498181.289407, lowerbound=1153890.289407, norm of subgrad 40.338321 stepsize= 1.000000 +dualbound = 2498404.540473, lowerbound=1165261.540473, norm of subgrad 1080.159498 dualbound = 2498404.540473, lowerbound=1165261.540473, norm of subgrad 41.306792 stepsize= 1.000000 +dualbound = 2498567.311840, lowerbound=1159317.311840, norm of subgrad 1077.399792 dualbound = 2498567.311840, lowerbound=1159317.311840, norm of subgrad 40.444670 stepsize= 1.000000 +dualbound = 2498768.771001, lowerbound=1160290.771001, norm of subgrad 1077.865841 dualbound = 2498768.771001, lowerbound=1160290.771001, norm of subgrad 41.297205 stepsize= 1.000000 +dualbound = 2498955.072359, lowerbound=1158579.072359, norm of subgrad 1077.049707 dualbound = 2498955.072359, lowerbound=1158579.072359, norm of subgrad 40.537654 stepsize= 1.000000 +dualbound = 2499137.511620, lowerbound=1161351.511620, norm of subgrad 1078.359176 dualbound = 2499137.511620, lowerbound=1161351.511620, norm of subgrad 41.102789 stepsize= 1.000000 +dualbound = 2499318.100438, lowerbound=1162366.100438, norm of subgrad 1078.808185 dualbound = 2499318.100438, lowerbound=1162366.100438, norm of subgrad 40.516525 stepsize= 1.000000 +dualbound = 2499528.678578, lowerbound=1156092.678578, norm of subgrad 1075.914345 dualbound = 2499528.678578, lowerbound=1156092.678578, norm of subgrad 41.347045 stepsize= 1.000000 +dualbound = 2499677.663398, lowerbound=1159847.663398, norm of subgrad 1077.692286 dualbound = 2499677.663398, lowerbound=1159847.663398, norm of subgrad 41.496805 stepsize= 1.000000 +dualbound = 2499866.626729, lowerbound=1159590.626729, norm of subgrad 1077.515952 dualbound = 2499866.626729, lowerbound=1159590.626729, norm of subgrad 40.484112 stepsize= 1.000000 +dualbound = 2500066.589152, lowerbound=1159992.589152, norm of subgrad 1077.714521 dualbound = 2500066.589152, lowerbound=1159992.589152, norm of subgrad 40.938520 stepsize= 1.000000 +dualbound = 2500280.959917, lowerbound=1162161.959917, norm of subgrad 1078.728863 dualbound = 2500280.959917, lowerbound=1162161.959917, norm of subgrad 41.332442 stepsize= 1.000000 +dualbound = 2500423.283362, lowerbound=1156717.283362, norm of subgrad 1076.206432 dualbound = 2500423.283362, lowerbound=1156717.283362, norm of subgrad 40.562587 stepsize= 1.000000 +dualbound = 2500645.234684, lowerbound=1160831.234683, norm of subgrad 1078.105855 dualbound = 2500645.234684, lowerbound=1160831.234683, norm of subgrad 41.266831 stepsize= 1.000000 +dualbound = 2500817.638651, lowerbound=1160029.638651, norm of subgrad 1077.716400 dualbound = 2500817.638651, lowerbound=1160029.638651, norm of subgrad 40.192088 stepsize= 1.000000 +dualbound = 2501050.320898, lowerbound=1161457.320898, norm of subgrad 1078.388298 dualbound = 2501050.320898, lowerbound=1161457.320898, norm of subgrad 41.190803 stepsize= 1.000000 +dualbound = 2501184.635233, lowerbound=1160395.635233, norm of subgrad 1077.925617 dualbound = 2501184.635233, lowerbound=1160395.635233, norm of subgrad 40.771489 stepsize= 1.000000 +dualbound = 2501381.462164, lowerbound=1162067.462164, norm of subgrad 1078.670229 dualbound = 2501381.462164, lowerbound=1162067.462164, norm of subgrad 40.728699 stepsize= 1.000000 +dualbound = 2501583.581818, lowerbound=1161747.581818, norm of subgrad 1078.562275 dualbound = 2501583.581818, lowerbound=1161747.581818, norm of subgrad 41.846382 stepsize= 1.000000 +dualbound = 2501759.700026, lowerbound=1160195.700026, norm of subgrad 1077.816172 dualbound = 2501759.700026, lowerbound=1160195.700026, norm of subgrad 40.842603 stepsize= 1.000000 +dualbound = 2501953.221233, lowerbound=1159263.221233, norm of subgrad 1077.405319 dualbound = 2501953.221233, lowerbound=1159263.221233, norm of subgrad 41.623566 stepsize= 1.000000 +dualbound = 2502126.943106, lowerbound=1157723.943106, norm of subgrad 1076.693523 dualbound = 2502126.943106, lowerbound=1157723.943106, norm of subgrad 41.457471 stepsize= 1.000000 +dualbound = 2502323.345396, lowerbound=1160430.345396, norm of subgrad 1077.941253 dualbound = 2502323.345396, lowerbound=1160430.345396, norm of subgrad 41.513881 stepsize= 1.000000 +dualbound = 2502513.491159, lowerbound=1161082.491159, norm of subgrad 1078.217738 dualbound = 2502513.491159, lowerbound=1161082.491159, norm of subgrad 40.757156 stepsize= 1.000000 +dualbound = 2502739.284402, lowerbound=1160698.284402, norm of subgrad 1078.027033 dualbound = 2502739.284402, lowerbound=1160698.284402, norm of subgrad 40.863104 stepsize= 1.000000 +dualbound = 2502902.668130, lowerbound=1158883.668130, norm of subgrad 1077.187388 dualbound = 2502902.668130, lowerbound=1158883.668130, norm of subgrad 40.154498 stepsize= 1.000000 +dualbound = 2503112.085988, lowerbound=1158095.085988, norm of subgrad 1076.818038 dualbound = 2503112.085988, lowerbound=1158095.085988, norm of subgrad 40.637641 stepsize= 1.000000 +dualbound = 2503294.840022, lowerbound=1159359.840022, norm of subgrad 1077.444124 dualbound = 2503294.840022, lowerbound=1159359.840022, norm of subgrad 41.337078 stepsize= 1.000000 +dualbound = 2503458.090873, lowerbound=1160822.090873, norm of subgrad 1078.095121 dualbound = 2503458.090873, lowerbound=1160822.090873, norm of subgrad 40.376365 stepsize= 1.000000 +dualbound = 2503678.317987, lowerbound=1158423.317987, norm of subgrad 1076.996434 dualbound = 2503678.317987, lowerbound=1158423.317987, norm of subgrad 41.451503 stepsize= 1.000000 +dualbound = 2503835.040885, lowerbound=1164441.040885, norm of subgrad 1079.785183 dualbound = 2503835.040885, lowerbound=1164441.040885, norm of subgrad 40.641394 stepsize= 1.000000 +dualbound = 2504044.566178, lowerbound=1160883.566178, norm of subgrad 1078.142183 dualbound = 2504044.566178, lowerbound=1160883.566178, norm of subgrad 41.430970 stepsize= 1.000000 +dualbound = 2504188.356574, lowerbound=1159378.356574, norm of subgrad 1077.454109 dualbound = 2504188.356574, lowerbound=1159378.356574, norm of subgrad 40.899760 stepsize= 1.000000 +dualbound = 2504394.068470, lowerbound=1160289.068470, norm of subgrad 1077.864123 dualbound = 2504394.068470, lowerbound=1160289.068470, norm of subgrad 41.324471 stepsize= 1.000000 +dualbound = 2504596.629492, lowerbound=1162133.629492, norm of subgrad 1078.708315 dualbound = 2504596.629492, lowerbound=1162133.629492, norm of subgrad 40.994646 stepsize= 1.000000 +dualbound = 2504760.148637, lowerbound=1156944.148637, norm of subgrad 1076.320653 dualbound = 2504760.148637, lowerbound=1156944.148637, norm of subgrad 41.055075 stepsize= 1.000000 +dualbound = 2504955.565574, lowerbound=1163516.565574, norm of subgrad 1079.363037 dualbound = 2504955.565574, lowerbound=1163516.565574, norm of subgrad 41.272472 stepsize= 1.000000 +dualbound = 2505148.751720, lowerbound=1160288.751720, norm of subgrad 1077.864904 dualbound = 2505148.751720, lowerbound=1160288.751720, norm of subgrad 41.196919 stepsize= 1.000000 +dualbound = 2505327.240293, lowerbound=1160772.240293, norm of subgrad 1078.056232 dualbound = 2505327.240293, lowerbound=1160772.240293, norm of subgrad 40.143350 stepsize= 1.000000 +dualbound = 2505572.334978, lowerbound=1159058.334978, norm of subgrad 1077.300949 dualbound = 2505572.334978, lowerbound=1159058.334978, norm of subgrad 42.001127 stepsize= 1.000000 +dualbound = 2505684.706087, lowerbound=1162278.706087, norm of subgrad 1078.791317 dualbound = 2505684.706087, lowerbound=1162278.706087, norm of subgrad 40.303488 stepsize= 1.000000 +dualbound = 2505907.882668, lowerbound=1157447.882668, norm of subgrad 1076.525375 dualbound = 2505907.882668, lowerbound=1157447.882668, norm of subgrad 41.014346 stepsize= 1.000000 +dualbound = 2506114.421624, lowerbound=1162021.421624, norm of subgrad 1078.656304 dualbound = 2506114.421624, lowerbound=1162021.421624, norm of subgrad 41.043135 stepsize= 1.000000 +dualbound = 2506315.346886, lowerbound=1157015.346886, norm of subgrad 1076.336075 dualbound = 2506315.346886, lowerbound=1157015.346886, norm of subgrad 41.047841 stepsize= 1.000000 +dualbound = 2506443.960075, lowerbound=1157999.960075, norm of subgrad 1076.844910 dualbound = 2506443.960075, lowerbound=1157999.960075, norm of subgrad 41.516421 stepsize= 1.000000 +dualbound = 2506653.358637, lowerbound=1159854.358637, norm of subgrad 1077.703279 dualbound = 2506653.358637, lowerbound=1159854.358637, norm of subgrad 42.419318 stepsize= 1.000000 +dualbound = 2506824.746522, lowerbound=1165258.746522, norm of subgrad 1080.164685 dualbound = 2506824.746522, lowerbound=1165258.746522, norm of subgrad 40.845904 stepsize= 1.000000 +dualbound = 2507085.623199, lowerbound=1157576.623199, norm of subgrad 1076.585632 dualbound = 2507085.623199, lowerbound=1157576.623199, norm of subgrad 41.483451 stepsize= 1.000000 +dualbound = 2507242.324014, lowerbound=1161402.324014, norm of subgrad 1078.387836 dualbound = 2507242.324014, lowerbound=1161402.324014, norm of subgrad 40.923109 stepsize= 1.000000 +dualbound = 2507407.033302, lowerbound=1161176.033301, norm of subgrad 1078.271317 dualbound = 2507407.033302, lowerbound=1161176.033301, norm of subgrad 40.714976 stepsize= 1.000000 +dualbound = 2507621.058990, lowerbound=1157576.058990, norm of subgrad 1076.563542 dualbound = 2507621.058990, lowerbound=1157576.058990, norm of subgrad 40.336406 stepsize= 1.000000 +dualbound = 2507841.589210, lowerbound=1158755.589210, norm of subgrad 1077.119580 dualbound = 2507841.589210, lowerbound=1158755.589210, norm of subgrad 40.639023 stepsize= 1.000000 +dualbound = 2507984.061832, lowerbound=1164642.061832, norm of subgrad 1079.841221 dualbound = 2507984.061832, lowerbound=1164642.061832, norm of subgrad 39.464828 stepsize= 1.000000 +dualbound = 2508207.972726, lowerbound=1159208.972726, norm of subgrad 1077.329556 dualbound = 2508207.972726, lowerbound=1159208.972726, norm of subgrad 40.668303 stepsize= 1.000000 +dualbound = 2508371.983231, lowerbound=1164236.983231, norm of subgrad 1079.668460 dualbound = 2508371.983231, lowerbound=1164236.983231, norm of subgrad 40.137395 stepsize= 1.000000 +dualbound = 2508549.072882, lowerbound=1156095.072882, norm of subgrad 1075.903840 dualbound = 2508549.072882, lowerbound=1156095.072882, norm of subgrad 40.633602 stepsize= 1.000000 +dualbound = 2508739.352691, lowerbound=1164743.352691, norm of subgrad 1079.940902 dualbound = 2508739.352691, lowerbound=1164743.352691, norm of subgrad 41.464199 stepsize= 1.000000 +dualbound = 2508899.523997, lowerbound=1158697.523997, norm of subgrad 1077.172467 dualbound = 2508899.523997, lowerbound=1158697.523997, norm of subgrad 41.990133 stepsize= 1.000000 +dualbound = 2509090.148986, lowerbound=1161973.148986, norm of subgrad 1078.664521 dualbound = 2509090.148986, lowerbound=1161973.148986, norm of subgrad 41.648829 stepsize= 1.000000 +dualbound = 2509308.286350, lowerbound=1158888.286350, norm of subgrad 1077.190460 dualbound = 2509308.286350, lowerbound=1158888.286350, norm of subgrad 40.855078 stepsize= 1.000000 +dualbound = 2509481.051730, lowerbound=1162744.051730, norm of subgrad 1078.977781 dualbound = 2509481.051730, lowerbound=1162744.051730, norm of subgrad 40.271148 stepsize= 1.000000 +dualbound = 2509670.332766, lowerbound=1159824.332766, norm of subgrad 1077.681926 dualbound = 2509670.332766, lowerbound=1159824.332766, norm of subgrad 41.991440 stepsize= 1.000000 +dualbound = 2509858.785607, lowerbound=1160543.785607, norm of subgrad 1077.987377 dualbound = 2509858.785607, lowerbound=1160543.785607, norm of subgrad 41.248671 stepsize= 1.000000 +dualbound = 2510054.578419, lowerbound=1161617.578419, norm of subgrad 1078.481144 dualbound = 2510054.578419, lowerbound=1161617.578419, norm of subgrad 41.228544 stepsize= 1.000000 +dualbound = 2510230.760024, lowerbound=1161159.760024, norm of subgrad 1078.284174 dualbound = 2510230.760024, lowerbound=1161159.760024, norm of subgrad 41.390598 stepsize= 1.000000 +dualbound = 2510402.390726, lowerbound=1159397.390726, norm of subgrad 1077.484752 dualbound = 2510402.390726, lowerbound=1159397.390726, norm of subgrad 41.804673 stepsize= 1.000000 +dualbound = 2510624.358764, lowerbound=1162113.358764, norm of subgrad 1078.714216 dualbound = 2510624.358764, lowerbound=1162113.358764, norm of subgrad 41.628933 stepsize= 1.000000 +dualbound = 2510785.059635, lowerbound=1160515.059635, norm of subgrad 1077.967560 dualbound = 2510785.059635, lowerbound=1160515.059635, norm of subgrad 40.739426 stepsize= 1.000000 +dualbound = 2510975.635329, lowerbound=1161580.635329, norm of subgrad 1078.469117 dualbound = 2510975.635329, lowerbound=1161580.635329, norm of subgrad 41.298616 stepsize= 1.000000 +dualbound = 2511181.658182, lowerbound=1161504.658182, norm of subgrad 1078.394945 dualbound = 2511181.658182, lowerbound=1161504.658182, norm of subgrad 40.460139 stepsize= 1.000000 +dualbound = 2511385.556640, lowerbound=1162101.556640, norm of subgrad 1078.686496 dualbound = 2511385.556640, lowerbound=1162101.556640, norm of subgrad 40.827668 stepsize= 1.000000 +dualbound = 2511534.293430, lowerbound=1162775.293430, norm of subgrad 1079.024232 dualbound = 2511534.293430, lowerbound=1162775.293430, norm of subgrad 40.825688 stepsize= 1.000000 +dualbound = 2511743.121072, lowerbound=1161566.121072, norm of subgrad 1078.433642 dualbound = 2511743.121072, lowerbound=1161566.121072, norm of subgrad 40.765520 stepsize= 1.000000 +dualbound = 2511913.476091, lowerbound=1163555.476091, norm of subgrad 1079.380135 dualbound = 2511913.476091, lowerbound=1163555.476091, norm of subgrad 40.943315 stepsize= 1.000000 +dualbound = 2512116.049406, lowerbound=1161831.049406, norm of subgrad 1078.572227 dualbound = 2512116.049406, lowerbound=1161831.049406, norm of subgrad 41.104420 stepsize= 1.000000 +dualbound = 2512283.620050, lowerbound=1162344.620050, norm of subgrad 1078.816305 dualbound = 2512283.620050, lowerbound=1162344.620050, norm of subgrad 40.835899 stepsize= 1.000000 +dualbound = 2512485.518066, lowerbound=1160686.518066, norm of subgrad 1078.048477 dualbound = 2512485.518066, lowerbound=1160686.518066, norm of subgrad 41.278300 stepsize= 1.000000 +dualbound = 2512657.092879, lowerbound=1160385.092879, norm of subgrad 1077.913305 dualbound = 2512657.092879, lowerbound=1160385.092879, norm of subgrad 41.031388 stepsize= 1.000000 +dualbound = 2512860.377497, lowerbound=1161821.377497, norm of subgrad 1078.555690 dualbound = 2512860.377497, lowerbound=1161821.377497, norm of subgrad 40.795645 stepsize= 1.000000 +dualbound = 2513063.907929, lowerbound=1160326.907929, norm of subgrad 1077.871471 dualbound = 2513063.907929, lowerbound=1160326.907929, norm of subgrad 41.030847 stepsize= 1.000000 +dualbound = 2513221.093615, lowerbound=1160657.093615, norm of subgrad 1078.035757 dualbound = 2513221.093615, lowerbound=1160657.093615, norm of subgrad 40.757646 stepsize= 1.000000 +dualbound = 2513412.636690, lowerbound=1163910.636690, norm of subgrad 1079.525654 dualbound = 2513412.636690, lowerbound=1163910.636690, norm of subgrad 40.700652 stepsize= 1.000000 +dualbound = 2513612.476617, lowerbound=1160710.476617, norm of subgrad 1078.069792 dualbound = 2513612.476617, lowerbound=1160710.476617, norm of subgrad 41.519151 stepsize= 1.000000 +dualbound = 2513782.137736, lowerbound=1160568.137736, norm of subgrad 1078.005166 dualbound = 2513782.137736, lowerbound=1160568.137736, norm of subgrad 41.190546 stepsize= 1.000000 +dualbound = 2513962.292539, lowerbound=1162313.292539, norm of subgrad 1078.807811 dualbound = 2513962.292539, lowerbound=1162313.292539, norm of subgrad 41.147962 stepsize= 1.000000 +dualbound = 2514171.963269, lowerbound=1164013.963269, norm of subgrad 1079.593425 dualbound = 2514171.963269, lowerbound=1164013.963269, norm of subgrad 41.444791 stepsize= 1.000000 +dualbound = 2514343.548816, lowerbound=1160993.548816, norm of subgrad 1078.201534 dualbound = 2514343.548816, lowerbound=1160993.548816, norm of subgrad 41.189629 stepsize= 1.000000 +dualbound = 2514550.373448, lowerbound=1163020.373448, norm of subgrad 1079.099334 dualbound = 2514550.373448, lowerbound=1163020.373448, norm of subgrad 40.519435 stepsize= 1.000000 +dualbound = 2514723.975852, lowerbound=1164328.975852, norm of subgrad 1079.745329 dualbound = 2514723.975852, lowerbound=1164328.975852, norm of subgrad 41.165549 stepsize= 1.000000 +dualbound = 2514892.526246, lowerbound=1160572.526246, norm of subgrad 1077.999316 dualbound = 2514892.526246, lowerbound=1160572.526246, norm of subgrad 40.970116 stepsize= 1.000000 +dualbound = 2515101.008024, lowerbound=1159550.008024, norm of subgrad 1077.478542 dualbound = 2515101.008024, lowerbound=1159550.008024, norm of subgrad 40.230359 stepsize= 1.000000 +dualbound = 2515281.334285, lowerbound=1160187.334285, norm of subgrad 1077.836414 dualbound = 2515281.334285, lowerbound=1160187.334285, norm of subgrad 41.525008 stepsize= 1.000000 +dualbound = 2515457.272352, lowerbound=1164807.272352, norm of subgrad 1079.963551 dualbound = 2515457.272352, lowerbound=1164807.272352, norm of subgrad 41.108856 stepsize= 1.000000 +dualbound = 2515651.681221, lowerbound=1162465.681221, norm of subgrad 1078.863143 dualbound = 2515651.681221, lowerbound=1162465.681221, norm of subgrad 40.919541 stepsize= 1.000000 +dualbound = 2515852.228699, lowerbound=1160134.228699, norm of subgrad 1077.785335 dualbound = 2515852.228699, lowerbound=1160134.228699, norm of subgrad 41.079770 stepsize= 1.000000 +dualbound = 2516033.272146, lowerbound=1162258.272146, norm of subgrad 1078.777212 dualbound = 2516033.272146, lowerbound=1162258.272146, norm of subgrad 41.024913 stepsize= 1.000000 +dualbound = 2516174.008976, lowerbound=1162512.008976, norm of subgrad 1078.943469 dualbound = 2516174.008976, lowerbound=1162512.008976, norm of subgrad 41.805943 stepsize= 1.000000 +dualbound = 2516406.138113, lowerbound=1163271.138113, norm of subgrad 1079.241928 dualbound = 2516406.138113, lowerbound=1163271.138113, norm of subgrad 41.522634 stepsize= 1.000000 +dualbound = 2516567.287305, lowerbound=1161593.287305, norm of subgrad 1078.463855 dualbound = 2516567.287305, lowerbound=1161593.287305, norm of subgrad 40.646638 stepsize= 1.000000 +dualbound = 2516781.267105, lowerbound=1161410.267105, norm of subgrad 1078.359526 dualbound = 2516781.267105, lowerbound=1161410.267105, norm of subgrad 40.779649 stepsize= 1.000000 +dualbound = 2516947.816202, lowerbound=1165337.816202, norm of subgrad 1080.204525 dualbound = 2516947.816202, lowerbound=1165337.816202, norm of subgrad 40.872351 stepsize= 1.000000 +dualbound = 2517124.888938, lowerbound=1162240.888938, norm of subgrad 1078.775643 dualbound = 2517124.888938, lowerbound=1162240.888938, norm of subgrad 41.146965 stepsize= 1.000000 +dualbound = 2517333.676378, lowerbound=1164939.676378, norm of subgrad 1080.013276 dualbound = 2517333.676378, lowerbound=1164939.676378, norm of subgrad 41.204216 stepsize= 1.000000 +dualbound = 2517500.532528, lowerbound=1159841.532528, norm of subgrad 1077.642581 dualbound = 2517500.532528, lowerbound=1159841.532528, norm of subgrad 40.482788 stepsize= 1.000000 +dualbound = 2517717.279116, lowerbound=1163311.279116, norm of subgrad 1079.244773 dualbound = 2517717.279116, lowerbound=1163311.279116, norm of subgrad 40.923668 stepsize= 1.000000 +dualbound = 2517868.297040, lowerbound=1161208.297040, norm of subgrad 1078.267266 dualbound = 2517868.297040, lowerbound=1161208.297040, norm of subgrad 40.037706 stepsize= 1.000000 +dualbound = 2518086.755288, lowerbound=1163826.755288, norm of subgrad 1079.469664 dualbound = 2518086.755288, lowerbound=1163826.755288, norm of subgrad 40.576573 stepsize= 1.000000 +dualbound = 2518267.082178, lowerbound=1162780.082178, norm of subgrad 1078.991697 dualbound = 2518267.082178, lowerbound=1162780.082178, norm of subgrad 40.290531 stepsize= 1.000000 +dualbound = 2518453.849734, lowerbound=1161903.849734, norm of subgrad 1078.586505 dualbound = 2518453.849734, lowerbound=1161903.849734, norm of subgrad 40.395143 stepsize= 1.000000 +dualbound = 2518633.322368, lowerbound=1163491.322368, norm of subgrad 1079.359218 dualbound = 2518633.322368, lowerbound=1163491.322368, norm of subgrad 41.285259 stepsize= 1.000000 +dualbound = 2518802.795007, lowerbound=1157327.795007, norm of subgrad 1076.499324 dualbound = 2518802.795007, lowerbound=1157327.795007, norm of subgrad 41.139672 stepsize= 1.000000 +dualbound = 2518985.483552, lowerbound=1162594.483552, norm of subgrad 1078.944616 dualbound = 2518985.483552, lowerbound=1162594.483552, norm of subgrad 41.348380 stepsize= 1.000000 +dualbound = 2519177.154929, lowerbound=1166088.154929, norm of subgrad 1080.543916 dualbound = 2519177.154929, lowerbound=1166088.154929, norm of subgrad 40.971592 stepsize= 1.000000 +dualbound = 2519355.111839, lowerbound=1164314.111839, norm of subgrad 1079.717607 dualbound = 2519355.111839, lowerbound=1164314.111839, norm of subgrad 40.668869 stepsize= 1.000000 +dualbound = 2519569.482334, lowerbound=1165957.482334, norm of subgrad 1080.471417 dualbound = 2519569.482334, lowerbound=1165957.482334, norm of subgrad 40.931290 stepsize= 1.000000 +dualbound = 2519714.807904, lowerbound=1161430.807904, norm of subgrad 1078.421906 dualbound = 2519714.807904, lowerbound=1161430.807904, norm of subgrad 41.331895 stepsize= 1.000000 +dualbound = 2519903.666273, lowerbound=1162567.666273, norm of subgrad 1078.927090 dualbound = 2519903.666273, lowerbound=1162567.666273, norm of subgrad 41.289931 stepsize= 1.000000 +dualbound = 2520091.909653, lowerbound=1160928.909653, norm of subgrad 1078.190572 dualbound = 2520091.909653, lowerbound=1160928.909653, norm of subgrad 41.883689 stepsize= 1.000000 +dualbound = 2520278.924974, lowerbound=1162829.924974, norm of subgrad 1079.061131 dualbound = 2520278.924974, lowerbound=1162829.924974, norm of subgrad 41.593453 stepsize= 1.000000 +dualbound = 2520475.527066, lowerbound=1163021.527066, norm of subgrad 1079.131376 dualbound = 2520475.527066, lowerbound=1163021.527066, norm of subgrad 41.226231 stepsize= 1.000000 +dualbound = 2520667.538548, lowerbound=1165523.538548, norm of subgrad 1080.280306 dualbound = 2520667.538548, lowerbound=1165523.538548, norm of subgrad 40.914685 stepsize= 1.000000 +dualbound = 2520850.783526, lowerbound=1159988.783526, norm of subgrad 1077.714611 dualbound = 2520850.783526, lowerbound=1159988.783526, norm of subgrad 40.782901 stepsize= 1.000000 +dualbound = 2521033.814731, lowerbound=1157717.814731, norm of subgrad 1076.665136 dualbound = 2521033.814731, lowerbound=1157717.814731, norm of subgrad 40.902704 stepsize= 1.000000 +dualbound = 2521217.711620, lowerbound=1162797.711620, norm of subgrad 1079.016085 dualbound = 2521217.711620, lowerbound=1162797.711620, norm of subgrad 40.766370 stepsize= 1.000000 +dualbound = 2521421.108557, lowerbound=1160750.108557, norm of subgrad 1078.076578 dualbound = 2521421.108557, lowerbound=1160750.108557, norm of subgrad 41.260113 stepsize= 1.000000 +dualbound = 2521568.399626, lowerbound=1161778.399626, norm of subgrad 1078.570072 dualbound = 2521568.399626, lowerbound=1161778.399626, norm of subgrad 41.015742 stepsize= 1.000000 +dualbound = 2521771.964186, lowerbound=1163002.964186, norm of subgrad 1079.145015 dualbound = 2521771.964186, lowerbound=1163002.964186, norm of subgrad 41.887523 stepsize= 1.000000 +dualbound = 2521965.055826, lowerbound=1164396.055826, norm of subgrad 1079.784264 dualbound = 2521965.055826, lowerbound=1164396.055826, norm of subgrad 41.606389 stepsize= 1.000000 +dualbound = 2522148.995681, lowerbound=1164797.995681, norm of subgrad 1079.927773 dualbound = 2522148.995681, lowerbound=1164797.995681, norm of subgrad 40.372514 stepsize= 1.000000 +dualbound = 2522344.126424, lowerbound=1166145.126424, norm of subgrad 1080.556397 dualbound = 2522344.126424, lowerbound=1166145.126424, norm of subgrad 40.646411 stepsize= 1.000000 +dualbound = 2522512.167760, lowerbound=1163318.167760, norm of subgrad 1079.269275 dualbound = 2522512.167760, lowerbound=1163318.167760, norm of subgrad 40.890602 stepsize= 1.000000 +dualbound = 2522712.084206, lowerbound=1161212.084206, norm of subgrad 1078.250937 dualbound = 2522712.084206, lowerbound=1161212.084206, norm of subgrad 40.161131 stepsize= 1.000000 +dualbound = 2522910.160400, lowerbound=1163695.160400, norm of subgrad 1079.421215 dualbound = 2522910.160400, lowerbound=1163695.160400, norm of subgrad 40.658040 stepsize= 1.000000 +dualbound = 2523069.992497, lowerbound=1166756.992497, norm of subgrad 1080.851050 dualbound = 2523069.992497, lowerbound=1166756.992497, norm of subgrad 40.519527 stepsize= 1.000000 +dualbound = 2523276.466294, lowerbound=1162537.466294, norm of subgrad 1078.876947 dualbound = 2523276.466294, lowerbound=1162537.466294, norm of subgrad 40.552112 stepsize= 1.000000 +dualbound = 2523476.441307, lowerbound=1161363.441307, norm of subgrad 1078.322513 dualbound = 2523476.441307, lowerbound=1161363.441307, norm of subgrad 40.199192 stepsize= 1.000000 +dualbound = 2523633.893023, lowerbound=1164849.893023, norm of subgrad 1079.956431 dualbound = 2523633.893023, lowerbound=1164849.893023, norm of subgrad 40.167795 stepsize= 1.000000 +dualbound = 2523828.418119, lowerbound=1162022.418119, norm of subgrad 1078.666500 dualbound = 2523828.418119, lowerbound=1162022.418119, norm of subgrad 41.152462 stepsize= 1.000000 +dualbound = 2524013.422269, lowerbound=1164882.422269, norm of subgrad 1079.972417 dualbound = 2524013.422269, lowerbound=1164882.422269, norm of subgrad 40.533988 stepsize= 1.000000 +dualbound = 2524199.208492, lowerbound=1162776.208492, norm of subgrad 1079.026046 dualbound = 2524199.208492, lowerbound=1162776.208492, norm of subgrad 41.313269 stepsize= 1.000000 +dualbound = 2524376.955891, lowerbound=1165671.955891, norm of subgrad 1080.411012 dualbound = 2524376.955891, lowerbound=1165671.955891, norm of subgrad 42.352655 stepsize= 1.000000 +dualbound = 2524526.877337, lowerbound=1162180.877337, norm of subgrad 1078.752000 dualbound = 2524526.877337, lowerbound=1162180.877337, norm of subgrad 40.925804 stepsize= 1.000000 +dualbound = 2524735.880987, lowerbound=1161760.880987, norm of subgrad 1078.559633 dualbound = 2524735.880987, lowerbound=1161760.880987, norm of subgrad 41.701363 stepsize= 1.000000 +dualbound = 2524886.201784, lowerbound=1162565.201784, norm of subgrad 1078.937997 dualbound = 2524886.201784, lowerbound=1162565.201784, norm of subgrad 41.137827 stepsize= 1.000000 +dualbound = 2525090.262108, lowerbound=1163827.262108, norm of subgrad 1079.510195 dualbound = 2525090.262108, lowerbound=1163827.262108, norm of subgrad 41.461552 stepsize= 1.000000 +dualbound = 2525302.838386, lowerbound=1162244.838386, norm of subgrad 1078.755226 dualbound = 2525302.838386, lowerbound=1162244.838386, norm of subgrad 40.994832 stepsize= 1.000000 +dualbound = 2525473.477103, lowerbound=1163983.477103, norm of subgrad 1079.543643 dualbound = 2525473.477103, lowerbound=1163983.477103, norm of subgrad 40.020479 stepsize= 1.000000 +dualbound = 2525690.747857, lowerbound=1160603.747857, norm of subgrad 1078.015653 dualbound = 2525690.747857, lowerbound=1160603.747857, norm of subgrad 41.608542 stepsize= 1.000000 +dualbound = 2525828.053707, lowerbound=1164969.053707, norm of subgrad 1080.052801 dualbound = 2525828.053707, lowerbound=1164969.053707, norm of subgrad 41.015922 stepsize= 1.000000 +dualbound = 2526034.624915, lowerbound=1163683.624915, norm of subgrad 1079.396417 dualbound = 2526034.624915, lowerbound=1163683.624915, norm of subgrad 40.243897 stepsize= 1.000000 +dualbound = 2526261.324507, lowerbound=1159134.324507, norm of subgrad 1077.300480 dualbound = 2526261.324507, lowerbound=1159134.324507, norm of subgrad 40.849720 stepsize= 1.000000 +dualbound = 2526406.008799, lowerbound=1163067.008799, norm of subgrad 1079.151986 dualbound = 2526406.008799, lowerbound=1163067.008799, norm of subgrad 40.579358 stepsize= 1.000000 +dualbound = 2526600.378718, lowerbound=1160093.378718, norm of subgrad 1077.789580 dualbound = 2526600.378718, lowerbound=1160093.378718, norm of subgrad 41.609733 stepsize= 1.000000 +dualbound = 2526741.582873, lowerbound=1165561.582873, norm of subgrad 1080.327998 dualbound = 2526741.582873, lowerbound=1165561.582873, norm of subgrad 41.087762 stepsize= 1.000000 +dualbound = 2526950.164407, lowerbound=1160774.164407, norm of subgrad 1078.078923 dualbound = 2526950.164407, lowerbound=1160774.164407, norm of subgrad 41.092354 stepsize= 1.000000 +dualbound = 2527166.654441, lowerbound=1165878.654441, norm of subgrad 1080.423831 dualbound = 2527166.654441, lowerbound=1165878.654441, norm of subgrad 40.663129 stepsize= 1.000000 +dualbound = 2527336.127980, lowerbound=1164454.127980, norm of subgrad 1079.769016 dualbound = 2527336.127980, lowerbound=1164454.127980, norm of subgrad 40.205392 stepsize= 1.000000 +dualbound = 2527521.753378, lowerbound=1166560.753378, norm of subgrad 1080.787099 dualbound = 2527521.753378, lowerbound=1166560.753378, norm of subgrad 41.540648 stepsize= 1.000000 +dualbound = 2527697.308857, lowerbound=1159415.308857, norm of subgrad 1077.458727 dualbound = 2527697.308857, lowerbound=1159415.308857, norm of subgrad 40.957972 stepsize= 1.000000 +dualbound = 2527895.505880, lowerbound=1162701.505880, norm of subgrad 1079.008112 dualbound = 2527895.505880, lowerbound=1162701.505880, norm of subgrad 41.895072 stepsize= 1.000000 +dualbound = 2528060.464376, lowerbound=1164655.464376, norm of subgrad 1079.897895 dualbound = 2528060.464376, lowerbound=1164655.464376, norm of subgrad 41.096940 stepsize= 1.000000 +dualbound = 2528260.630344, lowerbound=1165893.630344, norm of subgrad 1080.441405 dualbound = 2528260.630344, lowerbound=1165893.630344, norm of subgrad 40.745134 stepsize= 1.000000 +dualbound = 2528453.076435, lowerbound=1163232.076435, norm of subgrad 1079.212248 dualbound = 2528453.076435, lowerbound=1163232.076435, norm of subgrad 40.736299 stepsize= 1.000000 +dualbound = 2528651.068515, lowerbound=1160972.068515, norm of subgrad 1078.119227 dualbound = 2528651.068515, lowerbound=1160972.068515, norm of subgrad 39.585251 stepsize= 1.000000 +dualbound = 2528847.434678, lowerbound=1161364.434678, norm of subgrad 1078.306281 dualbound = 2528847.434678, lowerbound=1161364.434678, norm of subgrad 39.703478 stepsize= 1.000000 +dualbound = 2529027.192527, lowerbound=1165128.192527, norm of subgrad 1080.050551 dualbound = 2529027.192527, lowerbound=1165128.192527, norm of subgrad 39.506428 stepsize= 1.000000 +dualbound = 2529195.089688, lowerbound=1164018.089688, norm of subgrad 1079.589315 dualbound = 2529195.089688, lowerbound=1164018.089688, norm of subgrad 40.778636 stepsize= 1.000000 +dualbound = 2529374.003528, lowerbound=1164844.003528, norm of subgrad 1079.962964 dualbound = 2529374.003528, lowerbound=1164844.003528, norm of subgrad 40.680632 stepsize= 1.000000 +dualbound = 2529555.993630, lowerbound=1163154.993630, norm of subgrad 1079.202017 dualbound = 2529555.993630, lowerbound=1163154.993630, norm of subgrad 41.279415 stepsize= 1.000000 +dualbound = 2529730.279982, lowerbound=1164492.279982, norm of subgrad 1079.812613 dualbound = 2529730.279982, lowerbound=1164492.279982, norm of subgrad 40.954687 stepsize= 1.000000 +dualbound = 2529909.631060, lowerbound=1162795.631060, norm of subgrad 1079.028559 dualbound = 2529909.631060, lowerbound=1162795.631060, norm of subgrad 41.065205 stepsize= 1.000000 +dualbound = 2530090.035154, lowerbound=1161489.035154, norm of subgrad 1078.439166 dualbound = 2530090.035154, lowerbound=1161489.035154, norm of subgrad 41.501857 stepsize= 1.000000 +dualbound = 2530274.147730, lowerbound=1167045.147730, norm of subgrad 1081.010244 dualbound = 2530274.147730, lowerbound=1167045.147730, norm of subgrad 41.498344 stepsize= 1.000000 +dualbound = 2530459.256244, lowerbound=1166322.256244, norm of subgrad 1080.687863 dualbound = 2530459.256244, lowerbound=1166322.256244, norm of subgrad 41.822345 stepsize= 1.000000 +dualbound = 2530649.425173, lowerbound=1163881.425173, norm of subgrad 1079.557977 dualbound = 2530649.425173, lowerbound=1163881.425173, norm of subgrad 41.882800 stepsize= 1.000000 +dualbound = 2530802.616349, lowerbound=1164629.616349, norm of subgrad 1079.891947 dualbound = 2530802.616349, lowerbound=1164629.616349, norm of subgrad 41.111935 stepsize= 1.000000 +dualbound = 2531040.768063, lowerbound=1159026.768063, norm of subgrad 1077.283049 dualbound = 2531040.768063, lowerbound=1159026.768063, norm of subgrad 41.834815 stepsize= 1.000000 +dualbound = 2531187.324145, lowerbound=1164450.324145, norm of subgrad 1079.761698 dualbound = 2531187.324145, lowerbound=1164450.324145, norm of subgrad 39.768783 stepsize= 1.000000 +dualbound = 2531437.511955, lowerbound=1162793.511955, norm of subgrad 1078.971043 dualbound = 2531437.511955, lowerbound=1162793.511955, norm of subgrad 40.437456 stepsize= 1.000000 +dualbound = 2531583.633697, lowerbound=1168421.633697, norm of subgrad 1081.645336 dualbound = 2531583.633697, lowerbound=1168421.633697, norm of subgrad 41.001485 stepsize= 1.000000 +dualbound = 2531772.814144, lowerbound=1163761.814144, norm of subgrad 1079.453479 dualbound = 2531772.814144, lowerbound=1163761.814144, norm of subgrad 40.585471 stepsize= 1.000000 +dualbound = 2531920.260207, lowerbound=1163001.260207, norm of subgrad 1079.126156 dualbound = 2531920.260207, lowerbound=1163001.260207, norm of subgrad 40.736299 stepsize= 1.000000 +dualbound = 2532113.287796, lowerbound=1158388.287796, norm of subgrad 1076.980635 dualbound = 2532113.287796, lowerbound=1158388.287796, norm of subgrad 41.134263 stepsize= 1.000000 +dualbound = 2532317.469723, lowerbound=1168885.469723, norm of subgrad 1081.876365 dualbound = 2532317.469723, lowerbound=1168885.469723, norm of subgrad 42.132908 stepsize= 1.000000 +dualbound = 2532478.410077, lowerbound=1165658.410077, norm of subgrad 1080.376976 dualbound = 2532478.410077, lowerbound=1165658.410077, norm of subgrad 41.435979 stepsize= 1.000000 +dualbound = 2532649.336487, lowerbound=1162150.336487, norm of subgrad 1078.726257 dualbound = 2532649.336487, lowerbound=1162150.336487, norm of subgrad 40.876967 stepsize= 1.000000 +dualbound = 2532878.633857, lowerbound=1162626.633857, norm of subgrad 1078.941905 dualbound = 2532878.633857, lowerbound=1162626.633857, norm of subgrad 41.452351 stepsize= 1.000000 +dualbound = 2533033.471972, lowerbound=1165305.471972, norm of subgrad 1080.209920 dualbound = 2533033.471972, lowerbound=1165305.471972, norm of subgrad 41.265459 stepsize= 1.000000 +dualbound = 2533234.113315, lowerbound=1164861.113315, norm of subgrad 1079.962089 dualbound = 2533234.113315, lowerbound=1164861.113315, norm of subgrad 40.714142 stepsize= 1.000000 +dualbound = 2533430.548153, lowerbound=1160299.548153, norm of subgrad 1077.837904 dualbound = 2533430.548153, lowerbound=1160299.548153, norm of subgrad 40.391024 stepsize= 1.000000 +dualbound = 2533595.113263, lowerbound=1163013.113263, norm of subgrad 1079.160838 dualbound = 2533595.113263, lowerbound=1163013.113263, norm of subgrad 41.708094 stepsize= 1.000000 +dualbound = 2533786.659882, lowerbound=1165162.659882, norm of subgrad 1080.114188 dualbound = 2533786.659882, lowerbound=1165162.659882, norm of subgrad 40.933441 stepsize= 1.000000 +dualbound = 2533981.133360, lowerbound=1165688.133360, norm of subgrad 1080.409706 dualbound = 2533981.133360, lowerbound=1165688.133360, norm of subgrad 42.325802 stepsize= 1.000000 +dualbound = 2534141.305702, lowerbound=1166798.305702, norm of subgrad 1080.881726 dualbound = 2534141.305702, lowerbound=1166798.305702, norm of subgrad 40.831022 stepsize= 1.000000 +dualbound = 2534337.890741, lowerbound=1159572.890741, norm of subgrad 1077.494729 dualbound = 2534337.890741, lowerbound=1159572.890741, norm of subgrad 40.231642 stepsize= 1.000000 +dualbound = 2534539.566056, lowerbound=1164136.566057, norm of subgrad 1079.616398 dualbound = 2534539.566056, lowerbound=1164136.566057, norm of subgrad 40.455844 stepsize= 1.000000 +dualbound = 2534708.107505, lowerbound=1164667.107505, norm of subgrad 1079.904212 dualbound = 2534708.107505, lowerbound=1164667.107505, norm of subgrad 41.164808 stepsize= 1.000000 +dualbound = 2534905.226070, lowerbound=1163708.226070, norm of subgrad 1079.437921 dualbound = 2534905.226070, lowerbound=1163708.226070, norm of subgrad 40.928212 stepsize= 1.000000 +dualbound = 2535094.795914, lowerbound=1163108.795914, norm of subgrad 1079.156521 dualbound = 2535094.795914, lowerbound=1163108.795914, norm of subgrad 40.737818 stepsize= 1.000000 +dualbound = 2535275.745940, lowerbound=1167016.745940, norm of subgrad 1080.983231 dualbound = 2535275.745940, lowerbound=1167016.745940, norm of subgrad 41.096837 stepsize= 1.000000 +dualbound = 2535438.482324, lowerbound=1165745.482324, norm of subgrad 1080.387191 dualbound = 2535438.482324, lowerbound=1165745.482324, norm of subgrad 40.666158 stepsize= 1.000000 +dualbound = 2535643.754534, lowerbound=1162829.754534, norm of subgrad 1079.047151 dualbound = 2535643.754534, lowerbound=1162829.754534, norm of subgrad 41.452047 stepsize= 1.000000 +dualbound = 2535813.883364, lowerbound=1164634.883364, norm of subgrad 1079.903645 dualbound = 2535813.883364, lowerbound=1164634.883364, norm of subgrad 41.558740 stepsize= 1.000000 +dualbound = 2535970.936657, lowerbound=1163567.936657, norm of subgrad 1079.394708 dualbound = 2535970.936657, lowerbound=1163567.936657, norm of subgrad 41.012843 stepsize= 1.000000 +dualbound = 2536199.874793, lowerbound=1163813.874793, norm of subgrad 1079.458603 dualbound = 2536199.874793, lowerbound=1163813.874793, norm of subgrad 40.570163 stepsize= 1.000000 +dualbound = 2536376.370617, lowerbound=1164346.370617, norm of subgrad 1079.714023 dualbound = 2536376.370617, lowerbound=1164346.370617, norm of subgrad 40.155894 stepsize= 1.000000 +dualbound = 2536551.806282, lowerbound=1162713.806282, norm of subgrad 1078.938277 dualbound = 2536551.806282, lowerbound=1162713.806282, norm of subgrad 39.616104 stepsize= 1.000000 +dualbound = 2536767.967855, lowerbound=1165904.967855, norm of subgrad 1080.467477 dualbound = 2536767.967855, lowerbound=1165904.967855, norm of subgrad 41.486884 stepsize= 1.000000 +dualbound = 2536912.437955, lowerbound=1167363.437955, norm of subgrad 1081.163927 dualbound = 2536912.437955, lowerbound=1167363.437955, norm of subgrad 41.188228 stepsize= 1.000000 +dualbound = 2537091.622275, lowerbound=1164018.622275, norm of subgrad 1079.570573 dualbound = 2537091.622275, lowerbound=1164018.622275, norm of subgrad 40.412675 stepsize= 1.000000 +dualbound = 2537294.877390, lowerbound=1161043.877390, norm of subgrad 1078.183137 dualbound = 2537294.877390, lowerbound=1161043.877390, norm of subgrad 40.475364 stepsize= 1.000000 +dualbound = 2537465.183164, lowerbound=1167508.183164, norm of subgrad 1081.235027 dualbound = 2537465.183164, lowerbound=1167508.183164, norm of subgrad 41.608963 stepsize= 1.000000 +dualbound = 2537603.732942, lowerbound=1162854.732942, norm of subgrad 1079.062896 dualbound = 2537603.732942, lowerbound=1162854.732942, norm of subgrad 40.749844 stepsize= 1.000000 +dualbound = 2537841.035202, lowerbound=1160896.035202, norm of subgrad 1078.131734 dualbound = 2537841.035202, lowerbound=1160896.035202, norm of subgrad 41.343709 stepsize= 1.000000 +dualbound = 2538029.248028, lowerbound=1165555.248028, norm of subgrad 1080.301462 dualbound = 2538029.248028, lowerbound=1165555.248028, norm of subgrad 41.039162 stepsize= 1.000000 +dualbound = 2538189.359925, lowerbound=1164977.359925, norm of subgrad 1080.062665 dualbound = 2538189.359925, lowerbound=1164977.359925, norm of subgrad 41.450113 stepsize= 1.000000 +dualbound = 2538374.046055, lowerbound=1162490.046055, norm of subgrad 1078.920315 dualbound = 2538374.046055, lowerbound=1162490.046055, norm of subgrad 41.996263 stepsize= 1.000000 +dualbound = 2538547.135736, lowerbound=1165318.135736, norm of subgrad 1080.192175 dualbound = 2538547.135736, lowerbound=1165318.135736, norm of subgrad 40.866731 stepsize= 1.000000 +dualbound = 2538784.595313, lowerbound=1165581.595313, norm of subgrad 1080.290514 dualbound = 2538784.595313, lowerbound=1165581.595313, norm of subgrad 41.029984 stepsize= 1.000000 +dualbound = 2538927.092074, lowerbound=1166915.092074, norm of subgrad 1080.920484 dualbound = 2538927.092074, lowerbound=1166915.092074, norm of subgrad 40.205681 stepsize= 1.000000 +dualbound = 2539135.599683, lowerbound=1160487.599683, norm of subgrad 1077.936269 dualbound = 2539135.599683, lowerbound=1160487.599683, norm of subgrad 40.835127 stepsize= 1.000000 +dualbound = 2539323.727688, lowerbound=1161692.727688, norm of subgrad 1078.512275 dualbound = 2539323.727688, lowerbound=1161692.727688, norm of subgrad 41.038129 stepsize= 1.000000 +dualbound = 2539479.287704, lowerbound=1167400.287704, norm of subgrad 1081.168483 dualbound = 2539479.287704, lowerbound=1167400.287704, norm of subgrad 40.994634 stepsize= 1.000000 +dualbound = 2539686.518873, lowerbound=1162530.518873, norm of subgrad 1078.882996 dualbound = 2539686.518873, lowerbound=1162530.518873, norm of subgrad 40.807244 stepsize= 1.000000 +dualbound = 2539867.058063, lowerbound=1165554.058063, norm of subgrad 1080.300911 dualbound = 2539867.058063, lowerbound=1165554.058063, norm of subgrad 40.945564 stepsize= 1.000000 +dualbound = 2540022.096917, lowerbound=1165085.096917, norm of subgrad 1080.102355 dualbound = 2540022.096917, lowerbound=1165085.096917, norm of subgrad 41.122243 stepsize= 1.000000 +dualbound = 2540212.018214, lowerbound=1165189.018214, norm of subgrad 1080.128704 dualbound = 2540212.018214, lowerbound=1165189.018214, norm of subgrad 40.974642 stepsize= 1.000000 +dualbound = 2540423.030148, lowerbound=1164083.030148, norm of subgrad 1079.606887 dualbound = 2540423.030148, lowerbound=1164083.030148, norm of subgrad 40.975748 stepsize= 1.000000 +dualbound = 2540596.017898, lowerbound=1165142.017898, norm of subgrad 1080.123149 dualbound = 2540596.017898, lowerbound=1165142.017898, norm of subgrad 41.194511 stepsize= 1.000000 +dualbound = 2540748.059649, lowerbound=1165408.059649, norm of subgrad 1080.227781 dualbound = 2540748.059649, lowerbound=1165408.059649, norm of subgrad 40.448013 stepsize= 1.000000 +dualbound = 2540945.860373, lowerbound=1167420.860373, norm of subgrad 1081.143774 dualbound = 2540945.860373, lowerbound=1167420.860373, norm of subgrad 40.605427 stepsize= 1.000000 +dualbound = 2541143.070093, lowerbound=1163469.070093, norm of subgrad 1079.315556 dualbound = 2541143.070093, lowerbound=1163469.070093, norm of subgrad 40.622773 stepsize= 1.000000 +dualbound = 2541319.449391, lowerbound=1166420.449391, norm of subgrad 1080.682400 dualbound = 2541319.449391, lowerbound=1166420.449391, norm of subgrad 40.377956 stepsize= 1.000000 +dualbound = 2541505.469215, lowerbound=1164361.469215, norm of subgrad 1079.718699 dualbound = 2541505.469215, lowerbound=1164361.469215, norm of subgrad 40.212185 stepsize= 1.000000 +dualbound = 2541712.306567, lowerbound=1167388.306567, norm of subgrad 1081.131956 dualbound = 2541712.306567, lowerbound=1167388.306567, norm of subgrad 40.802418 stepsize= 1.000000 +dualbound = 2541858.538596, lowerbound=1164941.538596, norm of subgrad 1079.997009 dualbound = 2541858.538596, lowerbound=1164941.538596, norm of subgrad 39.977894 stepsize= 1.000000 +dualbound = 2542054.556103, lowerbound=1162221.556103, norm of subgrad 1078.772708 dualbound = 2542054.556103, lowerbound=1162221.556103, norm of subgrad 41.533330 stepsize= 1.000000 +dualbound = 2542223.186859, lowerbound=1171596.186859, norm of subgrad 1083.094265 dualbound = 2542223.186859, lowerbound=1171596.186859, norm of subgrad 40.812140 stepsize= 1.000000 +dualbound = 2542414.299694, lowerbound=1159617.299694, norm of subgrad 1077.539465 dualbound = 2542414.299694, lowerbound=1159617.299694, norm of subgrad 40.805794 stepsize= 1.000000 +dualbound = 2542589.759185, lowerbound=1167872.759185, norm of subgrad 1081.395284 dualbound = 2542589.759185, lowerbound=1167872.759185, norm of subgrad 41.454306 stepsize= 1.000000 +dualbound = 2542759.759185, lowerbound=1162269.759185, norm of subgrad 1078.780682 dualbound = 2542759.759185, lowerbound=1162269.759185, norm of subgrad 40.841156 stepsize= 1.000000 +dualbound = 2542960.045691, lowerbound=1168369.045691, norm of subgrad 1081.574799 dualbound = 2542960.045691, lowerbound=1168369.045691, norm of subgrad 40.438676 stepsize= 1.000000 +dualbound = 2543150.200439, lowerbound=1166646.200439, norm of subgrad 1080.809974 dualbound = 2543150.200439, lowerbound=1166646.200439, norm of subgrad 41.160111 stepsize= 1.000000 +dualbound = 2543319.248566, lowerbound=1162463.248566, norm of subgrad 1078.872211 dualbound = 2543319.248566, lowerbound=1162463.248566, norm of subgrad 40.878456 stepsize= 1.000000 +dualbound = 2543477.253545, lowerbound=1164989.253545, norm of subgrad 1080.025580 dualbound = 2543477.253545, lowerbound=1164989.253545, norm of subgrad 40.298945 stepsize= 1.000000 +dualbound = 2543690.544161, lowerbound=1165961.544161, norm of subgrad 1080.478387 dualbound = 2543690.544161, lowerbound=1165961.544161, norm of subgrad 41.052291 stepsize= 1.000000 +dualbound = 2543853.217519, lowerbound=1167117.217519, norm of subgrad 1081.018139 dualbound = 2543853.217519, lowerbound=1167117.217519, norm of subgrad 40.566900 stepsize= 1.000000 +dualbound = 2544051.643077, lowerbound=1166290.643077, norm of subgrad 1080.644550 dualbound = 2544051.643077, lowerbound=1166290.643077, norm of subgrad 41.236217 stepsize= 1.000000 +dualbound = 2544235.323852, lowerbound=1164082.323852, norm of subgrad 1079.593592 dualbound = 2544235.323852, lowerbound=1164082.323852, norm of subgrad 40.294922 stepsize= 1.000000 +dualbound = 2544421.283392, lowerbound=1170109.283392, norm of subgrad 1082.391003 dualbound = 2544421.283392, lowerbound=1170109.283392, norm of subgrad 40.582749 stepsize= 1.000000 +dualbound = 2544603.062704, lowerbound=1163942.062704, norm of subgrad 1079.530019 dualbound = 2544603.062704, lowerbound=1163942.062704, norm of subgrad 40.308551 stepsize= 1.000000 +dualbound = 2544791.495496, lowerbound=1167429.495496, norm of subgrad 1081.172741 dualbound = 2544791.495496, lowerbound=1167429.495496, norm of subgrad 41.151340 stepsize= 1.000000 +dualbound = 2544944.576353, lowerbound=1160798.576353, norm of subgrad 1078.103231 dualbound = 2544944.576353, lowerbound=1160798.576353, norm of subgrad 40.756360 stepsize= 1.000000 +dualbound = 2545145.851690, lowerbound=1168142.851690, norm of subgrad 1081.484097 dualbound = 2545145.851690, lowerbound=1168142.851690, norm of subgrad 40.820036 stepsize= 1.000000 +dualbound = 2545309.651920, lowerbound=1167753.651920, norm of subgrad 1081.319866 dualbound = 2545309.651920, lowerbound=1167753.651920, norm of subgrad 40.777448 stepsize= 1.000000 +dualbound = 2545492.449006, lowerbound=1169773.449006, norm of subgrad 1082.237242 dualbound = 2545492.449006, lowerbound=1169773.449006, norm of subgrad 40.580748 stepsize= 1.000000 +dualbound = 2545680.831432, lowerbound=1162885.831432, norm of subgrad 1079.074989 dualbound = 2545680.831432, lowerbound=1162885.831432, norm of subgrad 41.296276 stepsize= 1.000000 +dualbound = 2545828.267101, lowerbound=1164355.267101, norm of subgrad 1079.757967 dualbound = 2545828.267101, lowerbound=1164355.267101, norm of subgrad 40.858728 stepsize= 1.000000 +dualbound = 2546036.005125, lowerbound=1165685.005125, norm of subgrad 1080.350408 dualbound = 2546036.005125, lowerbound=1165685.005125, norm of subgrad 40.984607 stepsize= 1.000000 +dualbound = 2546211.517497, lowerbound=1167855.517497, norm of subgrad 1081.375752 dualbound = 2546211.517497, lowerbound=1167855.517497, norm of subgrad 41.152307 stepsize= 1.000000 +dualbound = 2546400.269250, lowerbound=1165436.269250, norm of subgrad 1080.230656 dualbound = 2546400.269250, lowerbound=1165436.269250, norm of subgrad 40.629444 stepsize= 1.000000 +dualbound = 2546595.187252, lowerbound=1164730.187252, norm of subgrad 1079.883414 dualbound = 2546595.187252, lowerbound=1164730.187252, norm of subgrad 40.161150 stepsize= 1.000000 +dualbound = 2546804.417663, lowerbound=1165722.417663, norm of subgrad 1080.326533 dualbound = 2546804.417663, lowerbound=1165722.417663, norm of subgrad 39.902762 stepsize= 1.000000 +dualbound = 2546978.129228, lowerbound=1164933.129228, norm of subgrad 1079.981541 dualbound = 2546978.129228, lowerbound=1164933.129228, norm of subgrad 40.008894 stepsize= 1.000000 +dualbound = 2547144.150341, lowerbound=1167255.150341, norm of subgrad 1081.111997 dualbound = 2547144.150341, lowerbound=1167255.150341, norm of subgrad 41.400738 stepsize= 1.000000 +dualbound = 2547290.791131, lowerbound=1165180.791131, norm of subgrad 1080.169334 dualbound = 2547290.791131, lowerbound=1165180.791131, norm of subgrad 41.612988 stepsize= 1.000000 +dualbound = 2547489.975724, lowerbound=1167199.975724, norm of subgrad 1081.068442 dualbound = 2547489.975724, lowerbound=1167199.975724, norm of subgrad 41.330190 stepsize= 1.000000 +dualbound = 2547679.749212, lowerbound=1164963.749212, norm of subgrad 1079.997106 dualbound = 2547679.749212, lowerbound=1164963.749212, norm of subgrad 40.246410 stepsize= 1.000000 +dualbound = 2547867.516266, lowerbound=1167756.516266, norm of subgrad 1081.333675 dualbound = 2547867.516266, lowerbound=1167756.516266, norm of subgrad 41.397670 stepsize= 1.000000 +dualbound = 2548026.822030, lowerbound=1164979.822030, norm of subgrad 1080.059638 dualbound = 2548026.822030, lowerbound=1164979.822030, norm of subgrad 41.331656 stepsize= 1.000000 +dualbound = 2548190.310256, lowerbound=1167413.310256, norm of subgrad 1081.180517 dualbound = 2548190.310256, lowerbound=1167413.310256, norm of subgrad 41.249100 stepsize= 1.000000 +dualbound = 2548385.088487, lowerbound=1163658.088487, norm of subgrad 1079.424425 dualbound = 2548385.088487, lowerbound=1163658.088487, norm of subgrad 41.155537 stepsize= 1.000000 +dualbound = 2548563.194450, lowerbound=1168268.194450, norm of subgrad 1081.583189 dualbound = 2548563.194450, lowerbound=1168268.194450, norm of subgrad 41.618577 stepsize= 1.000000 +dualbound = 2548762.996333, lowerbound=1169275.996333, norm of subgrad 1082.000460 dualbound = 2548762.996333, lowerbound=1169275.996333, norm of subgrad 40.605442 stepsize= 1.000000 +dualbound = 2548944.034458, lowerbound=1166379.034458, norm of subgrad 1080.655373 dualbound = 2548944.034458, lowerbound=1166379.034458, norm of subgrad 40.224845 stepsize= 1.000000 +dualbound = 2549112.994640, lowerbound=1162173.994640, norm of subgrad 1078.744175 dualbound = 2549112.994640, lowerbound=1162173.994640, norm of subgrad 41.036084 stepsize= 1.000000 +dualbound = 2549303.160165, lowerbound=1168374.160165, norm of subgrad 1081.596117 dualbound = 2549303.160165, lowerbound=1168374.160165, norm of subgrad 40.818691 stepsize= 1.000000 +dualbound = 2549503.078332, lowerbound=1165896.078332, norm of subgrad 1080.431894 dualbound = 2549503.078332, lowerbound=1165896.078332, norm of subgrad 40.458845 stepsize= 1.000000 +dualbound = 2549680.559978, lowerbound=1166186.559978, norm of subgrad 1080.557523 dualbound = 2549680.559978, lowerbound=1166186.559978, norm of subgrad 39.943481 stepsize= 1.000000 +dualbound = 2549863.169107, lowerbound=1170575.169107, norm of subgrad 1082.638060 dualbound = 2549863.169107, lowerbound=1170575.169107, norm of subgrad 41.383682 stepsize= 1.000000 +dualbound = 2550002.804252, lowerbound=1165918.804252, norm of subgrad 1080.478507 dualbound = 2550002.804252, lowerbound=1165918.804252, norm of subgrad 40.677207 stepsize= 1.000000 +dualbound = 2550222.975755, lowerbound=1164177.975755, norm of subgrad 1079.684665 dualbound = 2550222.975755, lowerbound=1164177.975755, norm of subgrad 41.966314 stepsize= 1.000000 +dualbound = 2550383.098887, lowerbound=1165313.098887, norm of subgrad 1080.187067 dualbound = 2550383.098887, lowerbound=1165313.098887, norm of subgrad 40.634014 stepsize= 1.000000 +dualbound = 2550580.031196, lowerbound=1165454.031196, norm of subgrad 1080.246283 dualbound = 2550580.031196, lowerbound=1165454.031196, norm of subgrad 40.925937 stepsize= 1.000000 +dualbound = 2550762.315143, lowerbound=1163316.315143, norm of subgrad 1079.225794 dualbound = 2550762.315143, lowerbound=1163316.315143, norm of subgrad 39.928485 stepsize= 1.000000 +dualbound = 2550966.288157, lowerbound=1169110.288157, norm of subgrad 1081.929891 dualbound = 2550966.288157, lowerbound=1169110.288157, norm of subgrad 40.816333 stepsize= 1.000000 +dualbound = 2551120.182846, lowerbound=1164247.182846, norm of subgrad 1079.688466 dualbound = 2551120.182846, lowerbound=1164247.182846, norm of subgrad 40.421463 stepsize= 1.000000 +dualbound = 2551297.953701, lowerbound=1165727.953701, norm of subgrad 1080.390649 dualbound = 2551297.953701, lowerbound=1165727.953701, norm of subgrad 41.155447 stepsize= 1.000000 +dualbound = 2551484.387381, lowerbound=1169230.387381, norm of subgrad 1081.995096 dualbound = 2551484.387381, lowerbound=1169230.387381, norm of subgrad 40.858704 stepsize= 1.000000 +dualbound = 2551662.416980, lowerbound=1167089.416980, norm of subgrad 1080.991867 dualbound = 2551662.416980, lowerbound=1167089.416980, norm of subgrad 40.398386 stepsize= 1.000000 +dualbound = 2551872.211079, lowerbound=1166660.211079, norm of subgrad 1080.752151 dualbound = 2551872.211079, lowerbound=1166660.211079, norm of subgrad 39.683675 stepsize= 1.000000 +dualbound = 2552042.169586, lowerbound=1171187.169586, norm of subgrad 1082.857410 dualbound = 2552042.169586, lowerbound=1171187.169586, norm of subgrad 39.534270 stepsize= 1.000000 +dualbound = 2552198.560200, lowerbound=1165397.560200, norm of subgrad 1080.241436 dualbound = 2552198.560200, lowerbound=1165397.560200, norm of subgrad 40.992568 stepsize= 1.000000 +dualbound = 2552344.287133, lowerbound=1164668.287133, norm of subgrad 1079.912629 dualbound = 2552344.287133, lowerbound=1164668.287133, norm of subgrad 41.094123 stepsize= 1.000000 +dualbound = 2552559.282990, lowerbound=1165061.282990, norm of subgrad 1080.086239 dualbound = 2552559.282990, lowerbound=1165061.282990, norm of subgrad 41.713258 stepsize= 1.000000 +dualbound = 2552726.623439, lowerbound=1167096.623439, norm of subgrad 1081.043303 dualbound = 2552726.623439, lowerbound=1167096.623439, norm of subgrad 41.537218 stepsize= 1.000000 +dualbound = 2552935.532681, lowerbound=1166407.532681, norm of subgrad 1080.679662 dualbound = 2552935.532681, lowerbound=1166407.532681, norm of subgrad 40.864523 stepsize= 1.000000 +dualbound = 2553097.173885, lowerbound=1164991.173885, norm of subgrad 1080.026932 dualbound = 2553097.173885, lowerbound=1164991.173885, norm of subgrad 40.356427 stepsize= 1.000000 +dualbound = 2553325.095840, lowerbound=1173779.095840, norm of subgrad 1084.071075 dualbound = 2553325.095840, lowerbound=1173779.095840, norm of subgrad 40.729866 stepsize= 1.000000 +dualbound = 2553470.429014, lowerbound=1165774.429014, norm of subgrad 1080.387629 dualbound = 2553470.429014, lowerbound=1165774.429014, norm of subgrad 40.104029 stepsize= 1.000000 +dualbound = 2553661.686845, lowerbound=1164851.686845, norm of subgrad 1079.984114 dualbound = 2553661.686845, lowerbound=1164851.686845, norm of subgrad 41.294768 stepsize= 1.000000 +dualbound = 2553827.286964, lowerbound=1163885.286964, norm of subgrad 1079.505112 dualbound = 2553827.286964, lowerbound=1163885.286964, norm of subgrad 40.144740 stepsize= 1.000000 +dualbound = 2554033.399517, lowerbound=1166211.399517, norm of subgrad 1080.569942 dualbound = 2554033.399517, lowerbound=1166211.399517, norm of subgrad 40.325086 stepsize= 1.000000 +dualbound = 2554213.074489, lowerbound=1164018.074489, norm of subgrad 1079.535583 dualbound = 2554213.074489, lowerbound=1164018.074489, norm of subgrad 39.480058 stepsize= 1.000000 +dualbound = 2554409.448940, lowerbound=1167511.448940, norm of subgrad 1081.176419 dualbound = 2554409.448940, lowerbound=1167511.448940, norm of subgrad 40.340729 stepsize= 1.000000 +dualbound = 2554548.636127, lowerbound=1172215.636127, norm of subgrad 1083.405112 dualbound = 2554548.636127, lowerbound=1172215.636127, norm of subgrad 41.111886 stepsize= 1.000000 +dualbound = 2554717.024767, lowerbound=1166416.024767, norm of subgrad 1080.715978 dualbound = 2554717.024767, lowerbound=1166416.024767, norm of subgrad 41.223642 stepsize= 1.000000 +dualbound = 2554893.284019, lowerbound=1166517.284019, norm of subgrad 1080.713785 dualbound = 2554893.284019, lowerbound=1166517.284019, norm of subgrad 40.015738 stepsize= 1.000000 +dualbound = 2555114.931608, lowerbound=1164005.931608, norm of subgrad 1079.549411 dualbound = 2555114.931608, lowerbound=1164005.931608, norm of subgrad 40.529589 stepsize= 1.000000 +dualbound = 2555272.480656, lowerbound=1170839.480656, norm of subgrad 1082.699626 dualbound = 2555272.480656, lowerbound=1170839.480656, norm of subgrad 39.453125 stepsize= 1.000000 +dualbound = 2555441.552516, lowerbound=1166663.552516, norm of subgrad 1080.809212 dualbound = 2555441.552516, lowerbound=1166663.552516, norm of subgrad 40.670282 stepsize= 1.000000 +dualbound = 2555619.545624, lowerbound=1163769.545624, norm of subgrad 1079.458913 dualbound = 2555619.545624, lowerbound=1163769.545624, norm of subgrad 40.496828 stepsize= 1.000000 +dualbound = 2555819.049316, lowerbound=1165548.049316, norm of subgrad 1080.307849 dualbound = 2555819.049316, lowerbound=1165548.049316, norm of subgrad 41.430710 stepsize= 1.000000 +dualbound = 2555981.776892, lowerbound=1170037.776892, norm of subgrad 1082.378759 dualbound = 2555981.776892, lowerbound=1170037.776892, norm of subgrad 40.850062 stepsize= 1.000000 +dualbound = 2556173.127444, lowerbound=1160534.127444, norm of subgrad 1077.974085 dualbound = 2556173.127444, lowerbound=1160534.127444, norm of subgrad 41.053021 stepsize= 1.000000 +dualbound = 2556315.603413, lowerbound=1169317.603413, norm of subgrad 1082.049261 dualbound = 2556315.603413, lowerbound=1169317.603413, norm of subgrad 40.687541 stepsize= 1.000000 +dualbound = 2556527.159711, lowerbound=1162988.159711, norm of subgrad 1079.114526 dualbound = 2556527.159711, lowerbound=1162988.159711, norm of subgrad 41.370960 stepsize= 1.000000 +dualbound = 2556701.337178, lowerbound=1167806.337178, norm of subgrad 1081.329893 dualbound = 2556701.337178, lowerbound=1167806.337178, norm of subgrad 40.523789 stepsize= 1.000000 +dualbound = 2556892.686777, lowerbound=1166854.686777, norm of subgrad 1080.876351 dualbound = 2556892.686777, lowerbound=1166854.686777, norm of subgrad 40.377588 stepsize= 1.000000 +dualbound = 2557082.272150, lowerbound=1170768.272150, norm of subgrad 1082.680596 dualbound = 2557082.272150, lowerbound=1170768.272150, norm of subgrad 40.231646 stepsize= 1.000000 +dualbound = 2557275.471308, lowerbound=1167786.471308, norm of subgrad 1081.321169 dualbound = 2557275.471308, lowerbound=1167786.471308, norm of subgrad 40.770077 stepsize= 1.000000 +dualbound = 2557416.365605, lowerbound=1169236.365605, norm of subgrad 1081.988616 dualbound = 2557416.365605, lowerbound=1169236.365605, norm of subgrad 40.048649 stepsize= 1.000000 +dualbound = 2557627.174584, lowerbound=1168879.174584, norm of subgrad 1081.836020 dualbound = 2557627.174584, lowerbound=1168879.174584, norm of subgrad 41.240865 stepsize= 1.000000 +dualbound = 2557788.965060, lowerbound=1165139.965060, norm of subgrad 1080.097665 dualbound = 2557788.965060, lowerbound=1165139.965060, norm of subgrad 40.407802 stepsize= 1.000000 +dualbound = 2557962.186996, lowerbound=1165411.186996, norm of subgrad 1080.232932 dualbound = 2557962.186996, lowerbound=1165411.186996, norm of subgrad 40.807131 stepsize= 1.000000 +dualbound = 2558166.625854, lowerbound=1166483.625854, norm of subgrad 1080.690347 dualbound = 2558166.625854, lowerbound=1166483.625854, norm of subgrad 40.155185 stepsize= 1.000000 +dualbound = 2558355.106291, lowerbound=1165503.106291, norm of subgrad 1080.227803 dualbound = 2558355.106291, lowerbound=1165503.106291, norm of subgrad 39.717508 stepsize= 1.000000 +dualbound = 2558540.676376, lowerbound=1169091.676376, norm of subgrad 1081.926373 dualbound = 2558540.676376, lowerbound=1169091.676376, norm of subgrad 40.725546 stepsize= 1.000000 +dualbound = 2558711.780649, lowerbound=1163192.780649, norm of subgrad 1079.186166 dualbound = 2558711.780649, lowerbound=1163192.780649, norm of subgrad 40.262939 stepsize= 1.000000 +dualbound = 2558881.965411, lowerbound=1166352.965411, norm of subgrad 1080.690967 dualbound = 2558881.965411, lowerbound=1166352.965411, norm of subgrad 41.354380 stepsize= 1.000000 +dualbound = 2559022.078333, lowerbound=1167963.078333, norm of subgrad 1081.432882 dualbound = 2559022.078333, lowerbound=1167963.078333, norm of subgrad 40.915925 stepsize= 1.000000 +dualbound = 2559256.194674, lowerbound=1167091.194674, norm of subgrad 1080.992227 dualbound = 2559256.194674, lowerbound=1167091.194674, norm of subgrad 41.074522 stepsize= 1.000000 +dualbound = 2559402.201766, lowerbound=1168054.201766, norm of subgrad 1081.424617 dualbound = 2559402.201766, lowerbound=1168054.201766, norm of subgrad 39.635932 stepsize= 1.000000 +dualbound = 2559615.430375, lowerbound=1170060.430375, norm of subgrad 1082.371669 dualbound = 2559615.430375, lowerbound=1170060.430375, norm of subgrad 41.002788 stepsize= 1.000000 +dualbound = 2559783.915682, lowerbound=1164517.915682, norm of subgrad 1079.787440 dualbound = 2559783.915682, lowerbound=1164517.915682, norm of subgrad 39.893424 stepsize= 1.000000 +dualbound = 2559976.840076, lowerbound=1165289.840076, norm of subgrad 1080.182318 dualbound = 2559976.840076, lowerbound=1165289.840076, norm of subgrad 41.193742 stepsize= 1.000000 +dualbound = 2560122.147349, lowerbound=1165744.147349, norm of subgrad 1080.422671 dualbound = 2560122.147349, lowerbound=1165744.147349, norm of subgrad 41.404194 stepsize= 1.000000 +dualbound = 2560299.322552, lowerbound=1169982.322552, norm of subgrad 1082.354527 dualbound = 2560299.322552, lowerbound=1169982.322552, norm of subgrad 41.063064 stepsize= 1.000000 +dualbound = 2560510.449648, lowerbound=1167361.449648, norm of subgrad 1081.105661 dualbound = 2560510.449648, lowerbound=1167361.449648, norm of subgrad 40.486135 stepsize= 1.000000 +dualbound = 2560686.709825, lowerbound=1168110.709825, norm of subgrad 1081.470161 dualbound = 2560686.709825, lowerbound=1168110.709825, norm of subgrad 40.537146 stepsize= 1.000000 +dualbound = 2560847.178010, lowerbound=1169172.178010, norm of subgrad 1081.952022 dualbound = 2560847.178010, lowerbound=1169172.178010, norm of subgrad 40.105713 stepsize= 1.000000 +dualbound = 2561043.080367, lowerbound=1165078.080367, norm of subgrad 1080.082904 dualbound = 2561043.080367, lowerbound=1165078.080367, norm of subgrad 41.193475 stepsize= 1.000000 +dualbound = 2561214.100297, lowerbound=1164870.100297, norm of subgrad 1079.988935 dualbound = 2561214.100297, lowerbound=1164870.100297, norm of subgrad 40.951434 stepsize= 1.000000 +dualbound = 2561393.482238, lowerbound=1167631.482238, norm of subgrad 1081.244876 dualbound = 2561393.482238, lowerbound=1167631.482238, norm of subgrad 40.476931 stepsize= 1.000000 +dualbound = 2561592.958732, lowerbound=1168605.958732, norm of subgrad 1081.664439 dualbound = 2561592.958732, lowerbound=1168605.958732, norm of subgrad 39.893314 stepsize= 1.000000 +dualbound = 2561746.006437, lowerbound=1170381.006437, norm of subgrad 1082.552080 dualbound = 2561746.006437, lowerbound=1170381.006437, norm of subgrad 41.122350 stepsize= 1.000000 +dualbound = 2561906.069414, lowerbound=1168135.069414, norm of subgrad 1081.487434 dualbound = 2561906.069414, lowerbound=1168135.069414, norm of subgrad 40.497691 stepsize= 1.000000 +dualbound = 2562108.462007, lowerbound=1164920.462007, norm of subgrad 1079.990492 dualbound = 2562108.462007, lowerbound=1164920.462007, norm of subgrad 40.760184 stepsize= 1.000000 +dualbound = 2562306.050750, lowerbound=1166172.050750, norm of subgrad 1080.572557 dualbound = 2562306.050750, lowerbound=1166172.050750, norm of subgrad 40.774854 stepsize= 1.000000 +dualbound = 2562443.410727, lowerbound=1168456.410727, norm of subgrad 1081.641535 dualbound = 2562443.410727, lowerbound=1168456.410727, norm of subgrad 40.365331 stepsize= 1.000000 +dualbound = 2562644.254905, lowerbound=1166415.254905, norm of subgrad 1080.689713 dualbound = 2562644.254905, lowerbound=1166415.254905, norm of subgrad 40.937076 stepsize= 1.000000 +dualbound = 2562822.523697, lowerbound=1166881.523697, norm of subgrad 1080.931785 dualbound = 2562822.523697, lowerbound=1166881.523697, norm of subgrad 41.355396 stepsize= 1.000000 +dualbound = 2562996.786728, lowerbound=1169805.786728, norm of subgrad 1082.253107 dualbound = 2562996.786728, lowerbound=1169805.786728, norm of subgrad 40.500161 stepsize= 1.000000 +dualbound = 2563205.494689, lowerbound=1167062.494689, norm of subgrad 1080.968776 dualbound = 2563205.494689, lowerbound=1167062.494689, norm of subgrad 40.493308 stepsize= 1.000000 +dualbound = 2563375.396455, lowerbound=1164008.396455, norm of subgrad 1079.592236 dualbound = 2563375.396455, lowerbound=1164008.396455, norm of subgrad 40.998802 stepsize= 1.000000 +dualbound = 2563529.837147, lowerbound=1169009.837147, norm of subgrad 1081.894559 dualbound = 2563529.837147, lowerbound=1169009.837147, norm of subgrad 40.502354 stepsize= 1.000000 +dualbound = 2563741.362077, lowerbound=1167532.362077, norm of subgrad 1081.211063 dualbound = 2563741.362077, lowerbound=1167532.362077, norm of subgrad 41.188893 stepsize= 1.000000 +dualbound = 2563918.229139, lowerbound=1164692.229139, norm of subgrad 1079.876488 dualbound = 2563918.229139, lowerbound=1164692.229139, norm of subgrad 40.222718 stepsize= 1.000000 +dualbound = 2564108.807306, lowerbound=1167241.807306, norm of subgrad 1081.059114 dualbound = 2564108.807306, lowerbound=1167241.807306, norm of subgrad 40.467001 stepsize= 1.000000 +dualbound = 2564291.291726, lowerbound=1167571.291726, norm of subgrad 1081.204093 dualbound = 2564291.291726, lowerbound=1167571.291726, norm of subgrad 40.168202 stepsize= 1.000000 +dualbound = 2564443.453610, lowerbound=1169838.453610, norm of subgrad 1082.316245 dualbound = 2564443.453610, lowerbound=1169838.453610, norm of subgrad 41.498938 stepsize= 1.000000 +dualbound = 2564611.955207, lowerbound=1170557.955207, norm of subgrad 1082.622721 dualbound = 2564611.955207, lowerbound=1170557.955207, norm of subgrad 41.018308 stepsize= 1.000000 +dualbound = 2564813.310922, lowerbound=1167698.310922, norm of subgrad 1081.273005 dualbound = 2564813.310922, lowerbound=1167698.310922, norm of subgrad 40.673772 stepsize= 1.000000 +dualbound = 2564996.842584, lowerbound=1167723.842584, norm of subgrad 1081.291747 dualbound = 2564996.842584, lowerbound=1167723.842584, norm of subgrad 40.639041 stepsize= 1.000000 +dualbound = 2565137.713312, lowerbound=1167292.713312, norm of subgrad 1081.108558 dualbound = 2565137.713312, lowerbound=1167292.713312, norm of subgrad 40.544676 stepsize= 1.000000 +dualbound = 2565327.926607, lowerbound=1169238.926607, norm of subgrad 1082.006898 dualbound = 2565327.926607, lowerbound=1169238.926607, norm of subgrad 41.112204 stepsize= 1.000000 +dualbound = 2565528.214007, lowerbound=1168491.214007, norm of subgrad 1081.643293 dualbound = 2565528.214007, lowerbound=1168491.214007, norm of subgrad 40.758894 stepsize= 1.000000 +dualbound = 2565709.472210, lowerbound=1165393.472210, norm of subgrad 1080.225195 dualbound = 2565709.472210, lowerbound=1165393.472210, norm of subgrad 40.917700 stepsize= 1.000000 +dualbound = 2565880.598802, lowerbound=1169040.598802, norm of subgrad 1081.918019 dualbound = 2565880.598802, lowerbound=1169040.598802, norm of subgrad 40.952736 stepsize= 1.000000 +dualbound = 2566062.971154, lowerbound=1168682.971154, norm of subgrad 1081.718065 dualbound = 2566062.971154, lowerbound=1168682.971154, norm of subgrad 40.166807 stepsize= 1.000000 +dualbound = 2566243.794375, lowerbound=1164514.794375, norm of subgrad 1079.782753 dualbound = 2566243.794375, lowerbound=1164514.794375, norm of subgrad 39.960271 stepsize= 1.000000 +dualbound = 2566434.658684, lowerbound=1166589.658684, norm of subgrad 1080.784279 dualbound = 2566434.658684, lowerbound=1166589.658684, norm of subgrad 41.180873 stepsize= 1.000000 +dualbound = 2566593.014219, lowerbound=1166360.014219, norm of subgrad 1080.642871 dualbound = 2566593.014219, lowerbound=1166360.014219, norm of subgrad 39.841631 stepsize= 1.000000 +dualbound = 2566793.428693, lowerbound=1170319.428693, norm of subgrad 1082.471445 dualbound = 2566793.428693, lowerbound=1170319.428693, norm of subgrad 40.316429 stepsize= 1.000000 +dualbound = 2566962.142591, lowerbound=1165735.142591, norm of subgrad 1080.357877 dualbound = 2566962.142591, lowerbound=1165735.142591, norm of subgrad 40.083836 stepsize= 1.000000 +dualbound = 2567145.509577, lowerbound=1171137.509577, norm of subgrad 1082.855258 dualbound = 2567145.509577, lowerbound=1171137.509577, norm of subgrad 40.266202 stepsize= 1.000000 +dualbound = 2567319.754944, lowerbound=1165944.754944, norm of subgrad 1080.466915 dualbound = 2567319.754944, lowerbound=1165944.754944, norm of subgrad 40.475244 stepsize= 1.000000 +dualbound = 2567504.755763, lowerbound=1169178.755763, norm of subgrad 1081.984637 dualbound = 2567504.755763, lowerbound=1169178.755763, norm of subgrad 41.194670 stepsize= 1.000000 +dualbound = 2567632.605333, lowerbound=1168181.605333, norm of subgrad 1081.548707 dualbound = 2567632.605333, lowerbound=1168181.605333, norm of subgrad 41.156404 stepsize= 1.000000 +dualbound = 2567861.058478, lowerbound=1169760.058478, norm of subgrad 1082.223664 dualbound = 2567861.058478, lowerbound=1169760.058478, norm of subgrad 40.944513 stepsize= 1.000000 +dualbound = 2568034.165414, lowerbound=1166240.165414, norm of subgrad 1080.611940 dualbound = 2568034.165414, lowerbound=1166240.165414, norm of subgrad 40.683005 stepsize= 1.000000 +dualbound = 2568194.567359, lowerbound=1164564.567359, norm of subgrad 1079.865069 dualbound = 2568194.567359, lowerbound=1164564.567359, norm of subgrad 41.284403 stepsize= 1.000000 +dualbound = 2568376.717650, lowerbound=1168842.717650, norm of subgrad 1081.808078 dualbound = 2568376.717650, lowerbound=1168842.717650, norm of subgrad 40.597417 stepsize= 1.000000 +dualbound = 2568587.053144, lowerbound=1167097.053144, norm of subgrad 1081.002800 dualbound = 2568587.053144, lowerbound=1167097.053144, norm of subgrad 40.991895 stepsize= 1.000000 +dualbound = 2568748.291972, lowerbound=1169320.291972, norm of subgrad 1082.038027 dualbound = 2568748.291972, lowerbound=1169320.291972, norm of subgrad 40.586190 stepsize= 1.000000 +dualbound = 2568946.250232, lowerbound=1167853.250232, norm of subgrad 1081.332627 dualbound = 2568946.250232, lowerbound=1167853.250232, norm of subgrad 40.310771 stepsize= 1.000000 +dualbound = 2569112.689845, lowerbound=1167990.689845, norm of subgrad 1081.370746 dualbound = 2569112.689845, lowerbound=1167990.689845, norm of subgrad 39.222948 stepsize= 1.000000 +dualbound = 2569293.125816, lowerbound=1166010.125816, norm of subgrad 1080.455981 dualbound = 2569293.125816, lowerbound=1166010.125816, norm of subgrad 39.439016 stepsize= 1.000000 +dualbound = 2569480.595466, lowerbound=1166117.595466, norm of subgrad 1080.518670 dualbound = 2569480.595466, lowerbound=1166117.595466, norm of subgrad 39.880693 stepsize= 1.000000 +dualbound = 2569655.611444, lowerbound=1165966.611444, norm of subgrad 1080.448801 dualbound = 2569655.611444, lowerbound=1165966.611444, norm of subgrad 39.724249 stepsize= 1.000000 +dualbound = 2569812.751784, lowerbound=1169575.751784, norm of subgrad 1082.155604 dualbound = 2569812.751784, lowerbound=1169575.751784, norm of subgrad 40.523331 stepsize= 1.000000 +dualbound = 2569983.667639, lowerbound=1169937.667639, norm of subgrad 1082.320039 dualbound = 2569983.667639, lowerbound=1169937.667639, norm of subgrad 40.619156 stepsize= 1.000000 +dualbound = 2570170.339906, lowerbound=1169836.339906, norm of subgrad 1082.274614 dualbound = 2570170.339906, lowerbound=1169836.339906, norm of subgrad 40.849385 stepsize= 1.000000 +dualbound = 2570353.536153, lowerbound=1165937.536153, norm of subgrad 1080.489026 dualbound = 2570353.536153, lowerbound=1165937.536153, norm of subgrad 41.257681 stepsize= 1.000000 +dualbound = 2570511.146080, lowerbound=1171663.146080, norm of subgrad 1083.139948 dualbound = 2570511.146080, lowerbound=1171663.146080, norm of subgrad 41.068357 stepsize= 1.000000 +dualbound = 2570704.152311, lowerbound=1167050.152311, norm of subgrad 1080.960292 dualbound = 2570704.152311, lowerbound=1167050.152311, norm of subgrad 40.224448 stepsize= 1.000000 +dualbound = 2570901.120553, lowerbound=1168911.120553, norm of subgrad 1081.847087 dualbound = 2570901.120553, lowerbound=1168911.120553, norm of subgrad 40.975215 stepsize= 1.000000 +dualbound = 2571050.121516, lowerbound=1166748.121516, norm of subgrad 1080.851572 dualbound = 2571050.121516, lowerbound=1166748.121516, norm of subgrad 40.509270 stepsize= 1.000000 +dualbound = 2571239.725988, lowerbound=1165709.725988, norm of subgrad 1080.384064 dualbound = 2571239.725988, lowerbound=1165709.725988, norm of subgrad 41.347364 stepsize= 1.000000 +dualbound = 2571399.693184, lowerbound=1170936.693184, norm of subgrad 1082.810091 dualbound = 2571399.693184, lowerbound=1170936.693184, norm of subgrad 41.242784 stepsize= 1.000000 +dualbound = 2571589.706816, lowerbound=1168061.706816, norm of subgrad 1081.461376 dualbound = 2571589.706816, lowerbound=1168061.706816, norm of subgrad 41.073272 stepsize= 1.000000 +dualbound = 2571757.804872, lowerbound=1165634.804872, norm of subgrad 1080.357258 dualbound = 2571757.804872, lowerbound=1165634.804872, norm of subgrad 41.292833 stepsize= 1.000000 +dualbound = 2571951.192835, lowerbound=1171309.192835, norm of subgrad 1082.969156 dualbound = 2571951.192835, lowerbound=1171309.192835, norm of subgrad 41.308449 stepsize= 1.000000 +dualbound = 2572145.302991, lowerbound=1169549.302991, norm of subgrad 1082.151701 dualbound = 2572145.302991, lowerbound=1169549.302991, norm of subgrad 41.195997 stepsize= 1.000000 +dualbound = 2572319.107778, lowerbound=1169899.107778, norm of subgrad 1082.299454 dualbound = 2572319.107778, lowerbound=1169899.107778, norm of subgrad 40.580843 stepsize= 1.000000 +dualbound = 2572482.405330, lowerbound=1167096.405330, norm of subgrad 1080.994175 dualbound = 2572482.405330, lowerbound=1167096.405330, norm of subgrad 40.190765 stepsize= 1.000000 +dualbound = 2572672.383544, lowerbound=1166581.383544, norm of subgrad 1080.752230 dualbound = 2572672.383544, lowerbound=1166581.383544, norm of subgrad 40.422496 stepsize= 1.000000 +dualbound = 2572850.225669, lowerbound=1166552.225669, norm of subgrad 1080.747994 dualbound = 2572850.225669, lowerbound=1166552.225669, norm of subgrad 40.519651 stepsize= 1.000000 +dualbound = 2573039.322622, lowerbound=1167864.322622, norm of subgrad 1081.379361 dualbound = 2573039.322622, lowerbound=1167864.322622, norm of subgrad 41.304926 stepsize= 1.000000 +dualbound = 2573200.271287, lowerbound=1167326.271287, norm of subgrad 1081.119453 dualbound = 2573200.271287, lowerbound=1167326.271287, norm of subgrad 40.668768 stepsize= 1.000000 +dualbound = 2573382.711062, lowerbound=1168114.711062, norm of subgrad 1081.508073 dualbound = 2573382.711062, lowerbound=1168114.711062, norm of subgrad 41.562480 stepsize= 1.000000 +dualbound = 2573534.289174, lowerbound=1170342.289174, norm of subgrad 1082.533274 dualbound = 2573534.289174, lowerbound=1170342.289174, norm of subgrad 41.080143 stepsize= 1.000000 +dualbound = 2573723.757365, lowerbound=1165515.757365, norm of subgrad 1080.303549 dualbound = 2573723.757365, lowerbound=1165515.757365, norm of subgrad 41.586875 stepsize= 1.000000 +dualbound = 2573900.618725, lowerbound=1167418.618725, norm of subgrad 1081.164936 dualbound = 2573900.618725, lowerbound=1167418.618725, norm of subgrad 40.937286 stepsize= 1.000000 +dualbound = 2574088.882953, lowerbound=1163950.882953, norm of subgrad 1079.530399 dualbound = 2574088.882953, lowerbound=1163950.882953, norm of subgrad 40.289753 stepsize= 1.000000 +dualbound = 2574281.806900, lowerbound=1169719.806900, norm of subgrad 1082.209225 dualbound = 2574281.806900, lowerbound=1169719.806900, norm of subgrad 40.619256 stepsize= 1.000000 +dualbound = 2574433.251180, lowerbound=1167529.251180, norm of subgrad 1081.233209 dualbound = 2574433.251180, lowerbound=1167529.251180, norm of subgrad 41.078514 stepsize= 1.000000 +dualbound = 2574616.855936, lowerbound=1171883.855936, norm of subgrad 1083.233519 dualbound = 2574616.855936, lowerbound=1171883.855936, norm of subgrad 41.165577 stepsize= 1.000000 +dualbound = 2574805.592259, lowerbound=1168255.592259, norm of subgrad 1081.533445 dualbound = 2574805.592259, lowerbound=1168255.592259, norm of subgrad 40.592319 stepsize= 1.000000 +dualbound = 2574986.003466, lowerbound=1172952.003466, norm of subgrad 1083.722291 dualbound = 2574986.003466, lowerbound=1172952.003466, norm of subgrad 41.017206 stepsize= 1.000000 +dualbound = 2575158.690944, lowerbound=1166451.690944, norm of subgrad 1080.728315 dualbound = 2575158.690944, lowerbound=1166451.690944, norm of subgrad 41.166582 stepsize= 1.000000 +dualbound = 2575341.495760, lowerbound=1170479.495760, norm of subgrad 1082.575400 dualbound = 2575341.495760, lowerbound=1170479.495760, norm of subgrad 40.899937 stepsize= 1.000000 +dualbound = 2575515.948041, lowerbound=1163792.948041, norm of subgrad 1079.438719 dualbound = 2575515.948041, lowerbound=1163792.948041, norm of subgrad 39.616313 stepsize= 1.000000 +dualbound = 2575723.247143, lowerbound=1167015.247143, norm of subgrad 1080.928882 dualbound = 2575723.247143, lowerbound=1167015.247143, norm of subgrad 39.991238 stepsize= 1.000000 +dualbound = 2575907.742849, lowerbound=1170326.742849, norm of subgrad 1082.465123 dualbound = 2575907.742849, lowerbound=1170326.742849, norm of subgrad 39.855937 stepsize= 1.000000 +dualbound = 2576072.869815, lowerbound=1168816.869815, norm of subgrad 1081.808611 dualbound = 2576072.869815, lowerbound=1168816.869815, norm of subgrad 40.720105 stepsize= 1.000000 +dualbound = 2576208.290854, lowerbound=1165728.290854, norm of subgrad 1080.419498 dualbound = 2576208.290854, lowerbound=1165728.290854, norm of subgrad 41.393490 stepsize= 1.000000 +dualbound = 2576397.264937, lowerbound=1171846.264937, norm of subgrad 1083.224476 dualbound = 2576397.264937, lowerbound=1171846.264937, norm of subgrad 41.448451 stepsize= 1.000000 +dualbound = 2576564.853664, lowerbound=1164366.853664, norm of subgrad 1079.736474 dualbound = 2576564.853664, lowerbound=1164366.853664, norm of subgrad 40.392929 stepsize= 1.000000 +dualbound = 2576779.885823, lowerbound=1172285.885823, norm of subgrad 1083.387228 dualbound = 2576779.885823, lowerbound=1172285.885823, norm of subgrad 40.706660 stepsize= 1.000000 +dualbound = 2576963.705115, lowerbound=1169164.705115, norm of subgrad 1081.961508 dualbound = 2576963.705115, lowerbound=1169164.705115, norm of subgrad 40.740880 stepsize= 1.000000 +dualbound = 2577127.937211, lowerbound=1168867.937211, norm of subgrad 1081.826205 dualbound = 2577127.937211, lowerbound=1168867.937211, norm of subgrad 40.549132 stepsize= 1.000000 +dualbound = 2577311.185117, lowerbound=1165779.185117, norm of subgrad 1080.393533 dualbound = 2577311.185117, lowerbound=1165779.185117, norm of subgrad 40.672447 stepsize= 1.000000 +dualbound = 2577496.091327, lowerbound=1170307.091327, norm of subgrad 1082.488841 dualbound = 2577496.091327, lowerbound=1170307.091327, norm of subgrad 40.741947 stepsize= 1.000000 +dualbound = 2577665.195235, lowerbound=1169198.195235, norm of subgrad 1081.978833 dualbound = 2577665.195235, lowerbound=1169198.195235, norm of subgrad 40.609160 stepsize= 1.000000 +dualbound = 2577826.600782, lowerbound=1170105.600782, norm of subgrad 1082.401774 dualbound = 2577826.600782, lowerbound=1170105.600782, norm of subgrad 40.612874 stepsize= 1.000000 +dualbound = 2577995.570429, lowerbound=1166886.570429, norm of subgrad 1080.919317 dualbound = 2577995.570429, lowerbound=1166886.570429, norm of subgrad 40.853025 stepsize= 1.000000 +dualbound = 2578192.208291, lowerbound=1168244.208291, norm of subgrad 1081.554533 dualbound = 2578192.208291, lowerbound=1168244.208291, norm of subgrad 41.384029 stepsize= 1.000000 +dualbound = 2578353.826006, lowerbound=1167636.826006, norm of subgrad 1081.275093 dualbound = 2578353.826006, lowerbound=1167636.826006, norm of subgrad 40.995338 stepsize= 1.000000 +dualbound = 2578525.201873, lowerbound=1171698.201873, norm of subgrad 1083.137204 dualbound = 2578525.201873, lowerbound=1171698.201873, norm of subgrad 40.735437 stepsize= 1.000000 +dualbound = 2578714.153538, lowerbound=1169751.153538, norm of subgrad 1082.224170 dualbound = 2578714.153538, lowerbound=1169751.153538, norm of subgrad 40.582652 stepsize= 1.000000 +dualbound = 2578895.241859, lowerbound=1170598.241859, norm of subgrad 1082.634399 dualbound = 2578895.241859, lowerbound=1170598.241859, norm of subgrad 40.988880 stepsize= 1.000000 +dualbound = 2579074.784269, lowerbound=1163320.784269, norm of subgrad 1079.229255 dualbound = 2579074.784269, lowerbound=1163320.784269, norm of subgrad 39.931722 stepsize= 1.000000 +dualbound = 2579259.392223, lowerbound=1170795.392223, norm of subgrad 1082.703742 dualbound = 2579259.392223, lowerbound=1170795.392223, norm of subgrad 40.455011 stepsize= 1.000000 +dualbound = 2579445.894748, lowerbound=1170180.894748, norm of subgrad 1082.419925 dualbound = 2579445.894748, lowerbound=1170180.894748, norm of subgrad 40.478420 stepsize= 1.000000 +dualbound = 2579599.990446, lowerbound=1170283.990446, norm of subgrad 1082.455999 dualbound = 2579599.990446, lowerbound=1170283.990446, norm of subgrad 39.762994 stepsize= 1.000000 +dualbound = 2579799.395920, lowerbound=1169837.395920, norm of subgrad 1082.262166 dualbound = 2579799.395920, lowerbound=1169837.395920, norm of subgrad 40.662089 stepsize= 1.000000 +dualbound = 2579954.118378, lowerbound=1168536.118378, norm of subgrad 1081.689936 dualbound = 2579954.118378, lowerbound=1168536.118378, norm of subgrad 40.886703 stepsize= 1.000000 +dualbound = 2580117.164961, lowerbound=1169362.164961, norm of subgrad 1082.095266 dualbound = 2580117.164961, lowerbound=1169362.164961, norm of subgrad 41.605848 stepsize= 1.000000 +dualbound = 2580308.068884, lowerbound=1164581.068884, norm of subgrad 1079.858819 dualbound = 2580308.068884, lowerbound=1164581.068884, norm of subgrad 41.290482 stepsize= 1.000000 +dualbound = 2580474.596642, lowerbound=1173150.596642, norm of subgrad 1083.797766 dualbound = 2580474.596642, lowerbound=1173150.596642, norm of subgrad 40.416924 stepsize= 1.000000 +dualbound = 2580686.288314, lowerbound=1167172.288314, norm of subgrad 1081.005684 dualbound = 2580686.288314, lowerbound=1167172.288314, norm of subgrad 40.158333 stepsize= 1.000000 +dualbound = 2580852.631439, lowerbound=1170702.631439, norm of subgrad 1082.673834 dualbound = 2580852.631439, lowerbound=1170702.631439, norm of subgrad 40.575154 stepsize= 1.000000 +dualbound = 2581035.824691, lowerbound=1170905.824691, norm of subgrad 1082.745965 dualbound = 2581035.824691, lowerbound=1170905.824691, norm of subgrad 40.201906 stepsize= 1.000000 +dualbound = 2581194.645616, lowerbound=1170922.645616, norm of subgrad 1082.826692 dualbound = 2581194.645616, lowerbound=1170922.645616, norm of subgrad 41.830861 stepsize= 1.000000 +dualbound = 2581346.662307, lowerbound=1167989.662307, norm of subgrad 1081.444711 dualbound = 2581346.662307, lowerbound=1167989.662307, norm of subgrad 41.048955 stepsize= 1.000000 +dualbound = 2581550.499925, lowerbound=1163889.499925, norm of subgrad 1079.531611 dualbound = 2581550.499925, lowerbound=1163889.499925, norm of subgrad 41.265453 stepsize= 1.000000 +dualbound = 2581730.487000, lowerbound=1170642.487000, norm of subgrad 1082.664069 dualbound = 2581730.487000, lowerbound=1170642.487000, norm of subgrad 41.218771 stepsize= 1.000000 +dualbound = 2581908.534232, lowerbound=1170892.534232, norm of subgrad 1082.774461 dualbound = 2581908.534232, lowerbound=1170892.534232, norm of subgrad 41.061505 stepsize= 1.000000 +dualbound = 2582087.058148, lowerbound=1170946.058148, norm of subgrad 1082.762697 dualbound = 2582087.058148, lowerbound=1170946.058148, norm of subgrad 40.093939 stepsize= 1.000000 +dualbound = 2582288.676268, lowerbound=1166633.676268, norm of subgrad 1080.793540 dualbound = 2582288.676268, lowerbound=1166633.676268, norm of subgrad 41.019728 stepsize= 1.000000 +dualbound = 2582412.098162, lowerbound=1170565.098162, norm of subgrad 1082.612626 dualbound = 2582412.098162, lowerbound=1170565.098162, norm of subgrad 40.105136 stepsize= 1.000000 +dualbound = 2582628.395280, lowerbound=1167824.395280, norm of subgrad 1081.318360 dualbound = 2582628.395280, lowerbound=1167824.395280, norm of subgrad 40.512925 stepsize= 1.000000 +dualbound = 2582805.148436, lowerbound=1171521.148436, norm of subgrad 1083.047159 dualbound = 2582805.148436, lowerbound=1171521.148436, norm of subgrad 40.580206 stepsize= 1.000000 +dualbound = 2582960.011988, lowerbound=1169115.011988, norm of subgrad 1081.943627 dualbound = 2582960.011988, lowerbound=1169115.011988, norm of subgrad 40.519915 stepsize= 1.000000 +dualbound = 2583136.200753, lowerbound=1170472.200753, norm of subgrad 1082.569721 dualbound = 2583136.200753, lowerbound=1170472.200753, norm of subgrad 40.757684 stepsize= 1.000000 +dualbound = 2583335.426762, lowerbound=1166718.426762, norm of subgrad 1080.835523 dualbound = 2583335.426762, lowerbound=1166718.426762, norm of subgrad 41.063682 stepsize= 1.000000 +dualbound = 2583508.948880, lowerbound=1174541.948880, norm of subgrad 1084.486030 dualbound = 2583508.948880, lowerbound=1174541.948880, norm of subgrad 41.731548 stepsize= 1.000000 +dualbound = 2583673.113061, lowerbound=1170796.113061, norm of subgrad 1082.741018 dualbound = 2583673.113061, lowerbound=1170796.113061, norm of subgrad 41.184514 stepsize= 1.000000 +dualbound = 2583842.402577, lowerbound=1169699.402577, norm of subgrad 1082.212734 dualbound = 2583842.402577, lowerbound=1169699.402577, norm of subgrad 40.672958 stepsize= 1.000000 +dualbound = 2584032.493433, lowerbound=1169511.493433, norm of subgrad 1082.095880 dualbound = 2584032.493433, lowerbound=1169511.493433, norm of subgrad 40.125937 stepsize= 1.000000 +dualbound = 2584230.221352, lowerbound=1169628.221352, norm of subgrad 1082.137801 dualbound = 2584230.221352, lowerbound=1169628.221352, norm of subgrad 39.896465 stepsize= 1.000000 +dualbound = 2584384.820332, lowerbound=1171665.820332, norm of subgrad 1083.114869 dualbound = 2584384.820332, lowerbound=1171665.820332, norm of subgrad 40.331117 stepsize= 1.000000 +dualbound = 2584566.035625, lowerbound=1168986.035625, norm of subgrad 1081.852594 dualbound = 2584566.035625, lowerbound=1168986.035625, norm of subgrad 40.002691 stepsize= 1.000000 +dualbound = 2584739.535688, lowerbound=1168738.535688, norm of subgrad 1081.743748 dualbound = 2584739.535688, lowerbound=1168738.535688, norm of subgrad 40.056211 stepsize= 1.000000 +dualbound = 2584931.776327, lowerbound=1172167.776327, norm of subgrad 1083.338256 dualbound = 2584931.776327, lowerbound=1172167.776327, norm of subgrad 40.573891 stepsize= 1.000000 +dualbound = 2585079.206777, lowerbound=1166894.206777, norm of subgrad 1080.902959 dualbound = 2585079.206777, lowerbound=1166894.206777, norm of subgrad 40.055342 stepsize= 1.000000 +dualbound = 2585256.879429, lowerbound=1171368.879429, norm of subgrad 1082.979630 dualbound = 2585256.879429, lowerbound=1171368.879429, norm of subgrad 40.665374 stepsize= 1.000000 +dualbound = 2585436.770531, lowerbound=1169583.770531, norm of subgrad 1082.186107 dualbound = 2585436.770531, lowerbound=1169583.770531, norm of subgrad 41.507723 stepsize= 1.000000 +dualbound = 2585600.315091, lowerbound=1165338.315091, norm of subgrad 1080.192721 dualbound = 2585600.315091, lowerbound=1165338.315091, norm of subgrad 40.515979 stepsize= 1.000000 +dualbound = 2585813.504261, lowerbound=1170415.504261, norm of subgrad 1082.511203 dualbound = 2585813.504261, lowerbound=1170415.504261, norm of subgrad 40.350826 stepsize= 1.000000 +dualbound = 2585992.349211, lowerbound=1174273.349211, norm of subgrad 1084.295785 dualbound = 2585992.349211, lowerbound=1174273.349211, norm of subgrad 40.035546 stepsize= 1.000000 +dualbound = 2586161.221740, lowerbound=1166853.221740, norm of subgrad 1080.911292 dualbound = 2586161.221740, lowerbound=1166853.221740, norm of subgrad 41.047199 stepsize= 1.000000 +dualbound = 2586294.769710, lowerbound=1168604.769710, norm of subgrad 1081.746629 dualbound = 2586294.769710, lowerbound=1168604.769710, norm of subgrad 41.286172 stepsize= 1.000000 +dualbound = 2586470.508600, lowerbound=1168824.508600, norm of subgrad 1081.812141 dualbound = 2586470.508600, lowerbound=1168824.508600, norm of subgrad 40.850201 stepsize= 1.000000 +dualbound = 2586697.512170, lowerbound=1168909.512170, norm of subgrad 1081.808907 dualbound = 2586697.512170, lowerbound=1168909.512170, norm of subgrad 40.348526 stepsize= 1.000000 +dualbound = 2586885.563295, lowerbound=1170996.563295, norm of subgrad 1082.770781 dualbound = 2586885.563295, lowerbound=1170996.563295, norm of subgrad 39.800140 stepsize= 1.000000 +dualbound = 2587048.682864, lowerbound=1172193.682864, norm of subgrad 1083.385750 dualbound = 2587048.682864, lowerbound=1172193.682864, norm of subgrad 41.159684 stepsize= 1.000000 +dualbound = 2587180.302365, lowerbound=1167084.302365, norm of subgrad 1081.022804 dualbound = 2587180.302365, lowerbound=1167084.302365, norm of subgrad 40.713874 stepsize= 1.000000 +dualbound = 2587391.481173, lowerbound=1173657.481173, norm of subgrad 1084.050036 dualbound = 2587391.481173, lowerbound=1173657.481173, norm of subgrad 41.450920 stepsize= 1.000000 +dualbound = 2587541.942091, lowerbound=1172261.942091, norm of subgrad 1083.404791 dualbound = 2587541.942091, lowerbound=1172261.942091, norm of subgrad 40.675065 stepsize= 1.000000 +dualbound = 2587742.078296, lowerbound=1165103.078296, norm of subgrad 1080.059757 dualbound = 2587742.078296, lowerbound=1165103.078296, norm of subgrad 40.325379 stepsize= 1.000000 +dualbound = 2587923.877500, lowerbound=1169418.877500, norm of subgrad 1082.078499 dualbound = 2587923.877500, lowerbound=1169418.877500, norm of subgrad 40.703798 stepsize= 1.000000 +dualbound = 2588098.540271, lowerbound=1166900.540271, norm of subgrad 1080.919303 dualbound = 2588098.540271, lowerbound=1166900.540271, norm of subgrad 40.751230 stepsize= 1.000000 +dualbound = 2588264.371327, lowerbound=1174185.371327, norm of subgrad 1084.285650 dualbound = 2588264.371327, lowerbound=1174185.371327, norm of subgrad 40.691904 stepsize= 1.000000 +dualbound = 2588461.047317, lowerbound=1170117.047317, norm of subgrad 1082.377498 dualbound = 2588461.047317, lowerbound=1170117.047317, norm of subgrad 40.257620 stepsize= 1.000000 +dualbound = 2588629.568754, lowerbound=1170064.568754, norm of subgrad 1082.364342 dualbound = 2588629.568754, lowerbound=1170064.568754, norm of subgrad 40.205988 stepsize= 1.000000 +dualbound = 2588798.665039, lowerbound=1168407.665039, norm of subgrad 1081.612068 dualbound = 2588798.665039, lowerbound=1168407.665039, norm of subgrad 40.572112 stepsize= 1.000000 +dualbound = 2588958.381972, lowerbound=1170322.381972, norm of subgrad 1082.459414 dualbound = 2588958.381972, lowerbound=1170322.381972, norm of subgrad 39.442578 stepsize= 1.000000 +dualbound = 2589164.972498, lowerbound=1169942.972498, norm of subgrad 1082.286456 dualbound = 2589164.972498, lowerbound=1169942.972498, norm of subgrad 40.094769 stepsize= 1.000000 +dualbound = 2589322.657365, lowerbound=1169998.657365, norm of subgrad 1082.333894 dualbound = 2589322.657365, lowerbound=1169998.657365, norm of subgrad 40.070998 stepsize= 1.000000 +dualbound = 2589486.795818, lowerbound=1170042.795818, norm of subgrad 1082.382463 dualbound = 2589486.795818, lowerbound=1170042.795818, norm of subgrad 40.904015 stepsize= 1.000000 +dualbound = 2589665.781093, lowerbound=1169923.781093, norm of subgrad 1082.308080 dualbound = 2589665.781093, lowerbound=1169923.781093, norm of subgrad 40.570744 stepsize= 1.000000 +dualbound = 2589866.276765, lowerbound=1168601.276765, norm of subgrad 1081.661350 dualbound = 2589866.276765, lowerbound=1168601.276765, norm of subgrad 39.881019 stepsize= 1.000000 +dualbound = 2590029.511075, lowerbound=1168683.511075, norm of subgrad 1081.752981 dualbound = 2590029.511075, lowerbound=1168683.511075, norm of subgrad 40.856264 stepsize= 1.000000 +dualbound = 2590190.054367, lowerbound=1171602.054367, norm of subgrad 1083.106206 dualbound = 2590190.054367, lowerbound=1171602.054367, norm of subgrad 40.957823 stepsize= 1.000000 +dualbound = 2590356.867203, lowerbound=1170295.867203, norm of subgrad 1082.508599 dualbound = 2590356.867203, lowerbound=1170295.867203, norm of subgrad 41.180248 stepsize= 1.000000 +dualbound = 2590553.390608, lowerbound=1167901.390608, norm of subgrad 1081.378468 dualbound = 2590553.390608, lowerbound=1167901.390608, norm of subgrad 40.920941 stepsize= 1.000000 +dualbound = 2590717.868112, lowerbound=1175132.868112, norm of subgrad 1084.705890 dualbound = 2590717.868112, lowerbound=1175132.868112, norm of subgrad 40.230306 stepsize= 1.000000 +dualbound = 2590910.824724, lowerbound=1171156.824724, norm of subgrad 1082.890495 dualbound = 2590910.824724, lowerbound=1171156.824724, norm of subgrad 41.084749 stepsize= 1.000000 +dualbound = 2591078.250074, lowerbound=1167230.250074, norm of subgrad 1081.045443 dualbound = 2591078.250074, lowerbound=1167230.250074, norm of subgrad 39.955292 stepsize= 1.000000 +dualbound = 2591274.348456, lowerbound=1170525.348456, norm of subgrad 1082.606738 dualbound = 2591274.348456, lowerbound=1170525.348456, norm of subgrad 41.329147 stepsize= 1.000000 +dualbound = 2591396.314001, lowerbound=1167265.314001, norm of subgrad 1081.093573 dualbound = 2591396.314001, lowerbound=1167265.314001, norm of subgrad 40.248796 stepsize= 1.000000 +dualbound = 2591604.615842, lowerbound=1174301.615842, norm of subgrad 1084.353086 dualbound = 2591604.615842, lowerbound=1174301.615842, norm of subgrad 41.572850 stepsize= 1.000000 +dualbound = 2591758.973326, lowerbound=1169521.973326, norm of subgrad 1082.141383 dualbound = 2591758.973326, lowerbound=1169521.973326, norm of subgrad 40.772018 stepsize= 1.000000 +dualbound = 2591957.429184, lowerbound=1170903.429184, norm of subgrad 1082.768410 dualbound = 2591957.429184, lowerbound=1170903.429184, norm of subgrad 41.017751 stepsize= 1.000000 +dualbound = 2592102.509657, lowerbound=1174448.509657, norm of subgrad 1084.405141 dualbound = 2592102.509657, lowerbound=1174448.509657, norm of subgrad 40.386637 stepsize= 1.000000 +dualbound = 2592317.284117, lowerbound=1170601.284117, norm of subgrad 1082.608094 dualbound = 2592317.284117, lowerbound=1170601.284117, norm of subgrad 40.666626 stepsize= 1.000000 +dualbound = 2592451.380219, lowerbound=1167371.380219, norm of subgrad 1081.155114 dualbound = 2592451.380219, lowerbound=1167371.380219, norm of subgrad 40.732003 stepsize= 1.000000 +dualbound = 2592648.144892, lowerbound=1169145.144892, norm of subgrad 1081.948772 dualbound = 2592648.144892, lowerbound=1169145.144892, norm of subgrad 40.801528 stepsize= 1.000000 +dualbound = 2592827.033785, lowerbound=1168868.033785, norm of subgrad 1081.823014 dualbound = 2592827.033785, lowerbound=1168868.033785, norm of subgrad 40.643436 stepsize= 1.000000 +dualbound = 2593001.505533, lowerbound=1170781.505533, norm of subgrad 1082.715801 dualbound = 2593001.505533, lowerbound=1170781.505533, norm of subgrad 40.822442 stepsize= 1.000000 +dualbound = 2593180.191850, lowerbound=1169790.191850, norm of subgrad 1082.233890 dualbound = 2593180.191850, lowerbound=1169790.191850, norm of subgrad 40.232901 stepsize= 1.000000 +dualbound = 2593374.465198, lowerbound=1171809.465198, norm of subgrad 1083.163637 dualbound = 2593374.465198, lowerbound=1171809.465198, norm of subgrad 40.351869 stepsize= 1.000000 +dualbound = 2593539.351136, lowerbound=1171656.351136, norm of subgrad 1083.079568 dualbound = 2593539.351136, lowerbound=1171656.351136, norm of subgrad 39.621786 stepsize= 1.000000 +dualbound = 2593730.637484, lowerbound=1167961.637484, norm of subgrad 1081.390604 dualbound = 2593730.637484, lowerbound=1167961.637484, norm of subgrad 40.438674 stepsize= 1.000000 +dualbound = 2593883.704869, lowerbound=1171300.704869, norm of subgrad 1082.922760 dualbound = 2593883.704869, lowerbound=1171300.704869, norm of subgrad 39.674518 stepsize= 1.000000 +dualbound = 2594099.820344, lowerbound=1168776.820344, norm of subgrad 1081.733710 dualbound = 2594099.820344, lowerbound=1168776.820344, norm of subgrad 39.838618 stepsize= 1.000000 +dualbound = 2594252.956298, lowerbound=1171784.956298, norm of subgrad 1083.154632 dualbound = 2594252.956298, lowerbound=1171784.956298, norm of subgrad 39.901578 stepsize= 1.000000 +dualbound = 2594395.966846, lowerbound=1173572.966846, norm of subgrad 1084.000446 dualbound = 2594395.966846, lowerbound=1173572.966846, norm of subgrad 40.336219 stepsize= 1.000000 +dualbound = 2594581.849136, lowerbound=1171881.849136, norm of subgrad 1083.224284 dualbound = 2594581.849136, lowerbound=1171881.849136, norm of subgrad 40.974166 stepsize= 1.000000 +dualbound = 2594724.265154, lowerbound=1166174.265154, norm of subgrad 1080.599493 dualbound = 2594724.265154, lowerbound=1166174.265154, norm of subgrad 40.784997 stepsize= 1.000000 +dualbound = 2594894.234716, lowerbound=1175019.234716, norm of subgrad 1084.653509 dualbound = 2594894.234716, lowerbound=1175019.234716, norm of subgrad 40.298506 stepsize= 1.000000 +dualbound = 2595098.754953, lowerbound=1171091.754953, norm of subgrad 1082.852601 dualbound = 2595098.754953, lowerbound=1171091.754953, norm of subgrad 41.018535 stepsize= 1.000000 +dualbound = 2595248.772544, lowerbound=1167647.772544, norm of subgrad 1081.255646 dualbound = 2595248.772544, lowerbound=1167647.772544, norm of subgrad 40.199721 stepsize= 1.000000 +dualbound = 2595439.293490, lowerbound=1170185.293490, norm of subgrad 1082.420571 dualbound = 2595439.293490, lowerbound=1170185.293490, norm of subgrad 40.490998 stepsize= 1.000000 +dualbound = 2595624.108386, lowerbound=1171023.108386, norm of subgrad 1082.844453 dualbound = 2595624.108386, lowerbound=1171023.108386, norm of subgrad 41.398247 stepsize= 1.000000 +dualbound = 2595778.581789, lowerbound=1170439.581789, norm of subgrad 1082.569435 dualbound = 2595778.581789, lowerbound=1170439.581789, norm of subgrad 40.883657 stepsize= 1.000000 +dualbound = 2595968.235771, lowerbound=1168377.235771, norm of subgrad 1081.624351 dualbound = 2595968.235771, lowerbound=1168377.235771, norm of subgrad 41.516912 stepsize= 1.000000 +dualbound = 2596146.065038, lowerbound=1170327.065038, norm of subgrad 1082.499915 dualbound = 2596146.065038, lowerbound=1170327.065038, norm of subgrad 40.704168 stepsize= 1.000000 +dualbound = 2596315.867661, lowerbound=1169833.867661, norm of subgrad 1082.273472 dualbound = 2596315.867661, lowerbound=1169833.867661, norm of subgrad 40.642375 stepsize= 1.000000 +dualbound = 2596486.311503, lowerbound=1174176.311503, norm of subgrad 1084.284700 dualbound = 2596486.311503, lowerbound=1174176.311503, norm of subgrad 40.834346 stepsize= 1.000000 +dualbound = 2596678.958679, lowerbound=1169463.958679, norm of subgrad 1082.074840 dualbound = 2596678.958679, lowerbound=1169463.958679, norm of subgrad 40.182673 stepsize= 1.000000 +dualbound = 2596859.813394, lowerbound=1174733.813394, norm of subgrad 1084.509481 dualbound = 2596859.813394, lowerbound=1174733.813394, norm of subgrad 40.098064 stepsize= 1.000000 +dualbound = 2597020.544358, lowerbound=1172461.544358, norm of subgrad 1083.453065 dualbound = 2597020.544358, lowerbound=1172461.544358, norm of subgrad 39.619830 stepsize= 1.000000 +dualbound = 2597198.787468, lowerbound=1171349.787468, norm of subgrad 1082.947731 dualbound = 2597198.787468, lowerbound=1171349.787468, norm of subgrad 40.053004 stepsize= 1.000000 +dualbound = 2597355.808013, lowerbound=1168711.808013, norm of subgrad 1081.756353 dualbound = 2597355.808013, lowerbound=1168711.808013, norm of subgrad 40.521853 stepsize= 1.000000 +dualbound = 2597555.465062, lowerbound=1173452.465062, norm of subgrad 1083.925489 dualbound = 2597555.465062, lowerbound=1173452.465062, norm of subgrad 40.517367 stepsize= 1.000000 +dualbound = 2597718.388481, lowerbound=1168870.388481, norm of subgrad 1081.798682 dualbound = 2597718.388481, lowerbound=1168870.388481, norm of subgrad 39.760828 stepsize= 1.000000 +dualbound = 2597902.210962, lowerbound=1171516.210962, norm of subgrad 1083.037955 dualbound = 2597902.210962, lowerbound=1171516.210962, norm of subgrad 40.482372 stepsize= 1.000000 +dualbound = 2598048.802747, lowerbound=1171138.802747, norm of subgrad 1082.868322 dualbound = 2598048.802747, lowerbound=1171138.802747, norm of subgrad 40.144636 stepsize= 1.000000 +dualbound = 2598241.086818, lowerbound=1172188.086818, norm of subgrad 1083.347168 dualbound = 2598241.086818, lowerbound=1172188.086818, norm of subgrad 40.562101 stepsize= 1.000000 +dualbound = 2598425.662966, lowerbound=1171634.662966, norm of subgrad 1083.081559 dualbound = 2598425.662966, lowerbound=1171634.662966, norm of subgrad 40.194230 stepsize= 1.000000 +dualbound = 2598597.614132, lowerbound=1170252.614132, norm of subgrad 1082.479845 dualbound = 2598597.614132, lowerbound=1170252.614132, norm of subgrad 41.011598 stepsize= 1.000000 +dualbound = 2598754.659255, lowerbound=1167151.659255, norm of subgrad 1081.034994 dualbound = 2598754.659255, lowerbound=1167151.659255, norm of subgrad 40.522156 stepsize= 1.000000 +dualbound = 2598943.966714, lowerbound=1170446.966714, norm of subgrad 1082.558066 dualbound = 2598943.966714, lowerbound=1170446.966714, norm of subgrad 40.918302 stepsize= 1.000000 +dualbound = 2599102.075164, lowerbound=1174904.075164, norm of subgrad 1084.633152 dualbound = 2599102.075164, lowerbound=1174904.075164, norm of subgrad 41.025705 stepsize= 1.000000 +dualbound = 2599268.693850, lowerbound=1169745.693850, norm of subgrad 1082.237356 dualbound = 2599268.693850, lowerbound=1169745.693850, norm of subgrad 40.726143 stepsize= 1.000000 +dualbound = 2599466.062242, lowerbound=1175715.062242, norm of subgrad 1084.957632 dualbound = 2599466.062242, lowerbound=1175715.062242, norm of subgrad 40.191646 stepsize= 1.000000 +dualbound = 2599640.886552, lowerbound=1173657.886552, norm of subgrad 1084.014708 dualbound = 2599640.886552, lowerbound=1173657.886552, norm of subgrad 40.060258 stepsize= 1.000000 +dualbound = 2599813.717588, lowerbound=1170553.717588, norm of subgrad 1082.557951 dualbound = 2599813.717588, lowerbound=1170553.717588, norm of subgrad 39.380592 stepsize= 1.000000 +dualbound = 2599977.867742, lowerbound=1172131.867742, norm of subgrad 1083.306451 dualbound = 2599977.867742, lowerbound=1172131.867742, norm of subgrad 39.813944 stepsize= 1.000000 +dualbound = 2600144.110970, lowerbound=1170760.110970, norm of subgrad 1082.690681 dualbound = 2600144.110970, lowerbound=1170760.110970, norm of subgrad 40.314306 stepsize= 1.000000 +dualbound = 2600322.126872, lowerbound=1170428.126872, norm of subgrad 1082.557216 dualbound = 2600322.126872, lowerbound=1170428.126872, norm of subgrad 40.987997 stepsize= 1.000000 +dualbound = 2600466.290066, lowerbound=1171548.290066, norm of subgrad 1083.061074 dualbound = 2600466.290066, lowerbound=1171548.290066, norm of subgrad 40.213968 stepsize= 1.000000 +dualbound = 2600673.556630, lowerbound=1171506.556630, norm of subgrad 1083.027957 dualbound = 2600673.556630, lowerbound=1171506.556630, norm of subgrad 40.623473 stepsize= 1.000000 +dualbound = 2600851.195241, lowerbound=1168429.195241, norm of subgrad 1081.607690 dualbound = 2600851.195241, lowerbound=1168429.195241, norm of subgrad 40.294399 stepsize= 1.000000 +dualbound = 2601029.470237, lowerbound=1169616.470237, norm of subgrad 1082.179038 dualbound = 2601029.470237, lowerbound=1169616.470237, norm of subgrad 40.905684 stepsize= 1.000000 +dualbound = 2601179.402805, lowerbound=1172431.402805, norm of subgrad 1083.459922 dualbound = 2601179.402805, lowerbound=1172431.402805, norm of subgrad 40.049127 stepsize= 1.000000 +dualbound = 2601375.156390, lowerbound=1170366.156390, norm of subgrad 1082.494876 dualbound = 2601375.156390, lowerbound=1170366.156390, norm of subgrad 40.308232 stepsize= 1.000000 +dualbound = 2601537.232980, lowerbound=1174381.232980, norm of subgrad 1084.373198 dualbound = 2601537.232980, lowerbound=1174381.232980, norm of subgrad 40.571869 stepsize= 1.000000 +dualbound = 2601692.257891, lowerbound=1171568.257891, norm of subgrad 1083.087835 dualbound = 2601692.257891, lowerbound=1171568.257891, norm of subgrad 40.816968 stepsize= 1.000000 +dualbound = 2601891.237724, lowerbound=1172635.237724, norm of subgrad 1083.573365 dualbound = 2601891.237724, lowerbound=1172635.237724, norm of subgrad 41.170133 stepsize= 1.000000 +dualbound = 2602047.070769, lowerbound=1173240.070769, norm of subgrad 1083.832584 dualbound = 2602047.070769, lowerbound=1173240.070769, norm of subgrad 40.110261 stepsize= 1.000000 +dualbound = 2602234.265413, lowerbound=1173720.265413, norm of subgrad 1084.054088 dualbound = 2602234.265413, lowerbound=1173720.265413, norm of subgrad 40.499317 stepsize= 1.000000 +dualbound = 2602408.768894, lowerbound=1173088.768894, norm of subgrad 1083.745712 dualbound = 2602408.768894, lowerbound=1173088.768894, norm of subgrad 39.881117 stepsize= 1.000000 +dualbound = 2602594.172648, lowerbound=1169535.172648, norm of subgrad 1082.133621 dualbound = 2602594.172648, lowerbound=1169535.172648, norm of subgrad 40.784847 stepsize= 1.000000 +dualbound = 2602744.025581, lowerbound=1170158.025581, norm of subgrad 1082.420448 dualbound = 2602744.025581, lowerbound=1170158.025581, norm of subgrad 40.321867 stepsize= 1.000000 +dualbound = 2602909.486898, lowerbound=1173974.486898, norm of subgrad 1084.204541 dualbound = 2602909.486898, lowerbound=1173974.486898, norm of subgrad 41.115220 stepsize= 1.000000 +dualbound = 2603105.177242, lowerbound=1172262.177242, norm of subgrad 1083.371671 dualbound = 2603105.177242, lowerbound=1172262.177242, norm of subgrad 40.344645 stepsize= 1.000000 +dualbound = 2603295.921283, lowerbound=1169703.921283, norm of subgrad 1082.155221 dualbound = 2603295.921283, lowerbound=1169703.921283, norm of subgrad 39.328667 stepsize= 1.000000 +dualbound = 2603487.223784, lowerbound=1172790.223784, norm of subgrad 1083.589047 dualbound = 2603487.223784, lowerbound=1172790.223784, norm of subgrad 39.576540 stepsize= 1.000000 +dualbound = 2603631.655772, lowerbound=1169478.655772, norm of subgrad 1082.114900 dualbound = 2603631.655772, lowerbound=1169478.655772, norm of subgrad 40.477549 stepsize= 1.000000 +dualbound = 2603786.025679, lowerbound=1172305.025679, norm of subgrad 1083.397907 dualbound = 2603786.025679, lowerbound=1172305.025679, norm of subgrad 40.004624 stepsize= 1.000000 +dualbound = 2603983.298762, lowerbound=1171266.298762, norm of subgrad 1082.917956 dualbound = 2603983.298762, lowerbound=1171266.298762, norm of subgrad 40.524969 stepsize= 1.000000 +dualbound = 2604150.285598, lowerbound=1175542.285598, norm of subgrad 1084.917640 dualbound = 2604150.285598, lowerbound=1175542.285598, norm of subgrad 40.877706 stepsize= 1.000000 +dualbound = 2604315.302397, lowerbound=1177036.302397, norm of subgrad 1085.574181 dualbound = 2604315.302397, lowerbound=1177036.302397, norm of subgrad 40.000210 stepsize= 1.000000 +dualbound = 2604496.436522, lowerbound=1172232.436522, norm of subgrad 1083.367637 dualbound = 2604496.436522, lowerbound=1172232.436522, norm of subgrad 40.424425 stepsize= 1.000000 +dualbound = 2604665.048501, lowerbound=1173879.048501, norm of subgrad 1084.125476 dualbound = 2604665.048501, lowerbound=1173879.048501, norm of subgrad 40.219547 stepsize= 1.000000 +dualbound = 2604839.198555, lowerbound=1172258.198555, norm of subgrad 1083.376757 dualbound = 2604839.198555, lowerbound=1172258.198555, norm of subgrad 40.263508 stepsize= 1.000000 +dualbound = 2604986.861304, lowerbound=1172565.861304, norm of subgrad 1083.525201 dualbound = 2604986.861304, lowerbound=1172565.861304, norm of subgrad 40.108138 stepsize= 1.000000 +dualbound = 2605185.118238, lowerbound=1172762.118238, norm of subgrad 1083.614839 dualbound = 2605185.118238, lowerbound=1172762.118238, norm of subgrad 40.709421 stepsize= 1.000000 +dualbound = 2605372.852854, lowerbound=1169791.852854, norm of subgrad 1082.218025 dualbound = 2605372.852854, lowerbound=1169791.852854, norm of subgrad 39.896549 stepsize= 1.000000 +dualbound = 2605538.966335, lowerbound=1167233.966335, norm of subgrad 1081.061037 dualbound = 2605538.966335, lowerbound=1167233.966335, norm of subgrad 40.312696 stepsize= 1.000000 +dualbound = 2605726.485338, lowerbound=1173941.485338, norm of subgrad 1084.123833 dualbound = 2605726.485338, lowerbound=1173941.485338, norm of subgrad 39.629774 stepsize= 1.000000 +dualbound = 2605890.509371, lowerbound=1168413.509371, norm of subgrad 1081.581023 dualbound = 2605890.509371, lowerbound=1168413.509371, norm of subgrad 39.598283 stepsize= 1.000000 +dualbound = 2606052.232203, lowerbound=1174407.232203, norm of subgrad 1084.367204 dualbound = 2606052.232203, lowerbound=1174407.232203, norm of subgrad 40.083947 stepsize= 1.000000 +dualbound = 2606235.504018, lowerbound=1171709.504018, norm of subgrad 1083.136420 dualbound = 2606235.504018, lowerbound=1171709.504018, norm of subgrad 40.721884 stepsize= 1.000000 +dualbound = 2606399.769345, lowerbound=1175003.769345, norm of subgrad 1084.642692 dualbound = 2606399.769345, lowerbound=1175003.769345, norm of subgrad 40.128111 stepsize= 1.000000 +dualbound = 2606549.103493, lowerbound=1170549.103493, norm of subgrad 1082.624175 dualbound = 2606549.103493, lowerbound=1170549.103493, norm of subgrad 40.930846 stepsize= 1.000000 +dualbound = 2606735.118901, lowerbound=1172361.118901, norm of subgrad 1083.433948 dualbound = 2606735.118901, lowerbound=1172361.118901, norm of subgrad 40.669588 stepsize= 1.000000 +dualbound = 2606915.237087, lowerbound=1171126.237087, norm of subgrad 1082.850976 dualbound = 2606915.237087, lowerbound=1171126.237087, norm of subgrad 40.250692 stepsize= 1.000000 +dualbound = 2607095.200888, lowerbound=1171504.200888, norm of subgrad 1083.046721 dualbound = 2607095.200888, lowerbound=1171504.200888, norm of subgrad 40.816220 stepsize= 1.000000 +dualbound = 2607238.575132, lowerbound=1173192.575132, norm of subgrad 1083.835585 dualbound = 2607238.575132, lowerbound=1173192.575132, norm of subgrad 40.624798 stepsize= 1.000000 +dualbound = 2607412.622841, lowerbound=1170632.622841, norm of subgrad 1082.624414 dualbound = 2607412.622841, lowerbound=1170632.622841, norm of subgrad 40.212532 stepsize= 1.000000 +dualbound = 2607607.226068, lowerbound=1172544.226068, norm of subgrad 1083.493990 dualbound = 2607607.226068, lowerbound=1172544.226068, norm of subgrad 40.119861 stepsize= 1.000000 +dualbound = 2607791.544304, lowerbound=1172038.544304, norm of subgrad 1083.262916 dualbound = 2607791.544304, lowerbound=1172038.544304, norm of subgrad 40.053942 stepsize= 1.000000 +dualbound = 2607940.638061, lowerbound=1174250.638061, norm of subgrad 1084.308830 dualbound = 2607940.638061, lowerbound=1174250.638061, norm of subgrad 40.300047 stepsize= 1.000000 +dualbound = 2608117.184134, lowerbound=1172187.184134, norm of subgrad 1083.338905 dualbound = 2608117.184134, lowerbound=1172187.184134, norm of subgrad 40.156520 stepsize= 1.000000 +dualbound = 2608293.903044, lowerbound=1172523.903044, norm of subgrad 1083.489688 dualbound = 2608293.903044, lowerbound=1172523.903044, norm of subgrad 40.033972 stepsize= 1.000000 +dualbound = 2608448.969337, lowerbound=1173062.969337, norm of subgrad 1083.738884 dualbound = 2608448.969337, lowerbound=1173062.969337, norm of subgrad 39.775197 stepsize= 1.000000 +dualbound = 2608637.009572, lowerbound=1170848.009572, norm of subgrad 1082.701256 dualbound = 2608637.009572, lowerbound=1170848.009572, norm of subgrad 39.774869 stepsize= 1.000000 +dualbound = 2608843.270728, lowerbound=1170893.270728, norm of subgrad 1082.728623 dualbound = 2608843.270728, lowerbound=1170893.270728, norm of subgrad 40.177869 stepsize= 1.000000 +dualbound = 2608969.729605, lowerbound=1173038.729605, norm of subgrad 1083.754460 dualbound = 2608969.729605, lowerbound=1173038.729605, norm of subgrad 40.142980 stepsize= 1.000000 +dualbound = 2609135.876594, lowerbound=1170983.876594, norm of subgrad 1082.802326 dualbound = 2609135.876594, lowerbound=1170983.876594, norm of subgrad 40.535750 stepsize= 1.000000 +dualbound = 2609314.784045, lowerbound=1176704.784045, norm of subgrad 1085.443128 dualbound = 2609314.784045, lowerbound=1176704.784045, norm of subgrad 40.754232 stepsize= 1.000000 +dualbound = 2609501.233288, lowerbound=1171454.233288, norm of subgrad 1082.992721 dualbound = 2609501.233288, lowerbound=1171454.233288, norm of subgrad 40.068058 stepsize= 1.000000 +dualbound = 2609685.953160, lowerbound=1172651.953160, norm of subgrad 1083.577848 dualbound = 2609685.953160, lowerbound=1172651.953160, norm of subgrad 40.911122 stepsize= 1.000000 +dualbound = 2609819.612203, lowerbound=1173221.612203, norm of subgrad 1083.829605 dualbound = 2609819.612203, lowerbound=1173221.612203, norm of subgrad 39.983235 stepsize= 1.000000 +dualbound = 2610020.071326, lowerbound=1171781.071326, norm of subgrad 1083.156993 dualbound = 2610020.071326, lowerbound=1171781.071326, norm of subgrad 40.601221 stepsize= 1.000000 +dualbound = 2610186.017942, lowerbound=1172889.017942, norm of subgrad 1083.665547 dualbound = 2610186.017942, lowerbound=1172889.017942, norm of subgrad 40.099210 stepsize= 1.000000 +dualbound = 2610364.421732, lowerbound=1170753.421732, norm of subgrad 1082.658959 dualbound = 2610364.421732, lowerbound=1170753.421732, norm of subgrad 39.691357 stepsize= 1.000000 +dualbound = 2610533.266022, lowerbound=1173739.266022, norm of subgrad 1084.024108 dualbound = 2610533.266022, lowerbound=1173739.266022, norm of subgrad 39.215358 stepsize= 1.000000 +dualbound = 2610716.335476, lowerbound=1172111.335476, norm of subgrad 1083.301590 dualbound = 2610716.335476, lowerbound=1172111.335476, norm of subgrad 40.175483 stepsize= 1.000000 +dualbound = 2610844.900228, lowerbound=1173688.900228, norm of subgrad 1084.054381 dualbound = 2610844.900228, lowerbound=1173688.900228, norm of subgrad 40.169202 stepsize= 1.000000 +dualbound = 2611019.691684, lowerbound=1172086.691684, norm of subgrad 1083.310063 dualbound = 2611019.691684, lowerbound=1172086.691684, norm of subgrad 40.605313 stepsize= 1.000000 +dualbound = 2611207.766428, lowerbound=1174422.766428, norm of subgrad 1084.390505 dualbound = 2611207.766428, lowerbound=1174422.766428, norm of subgrad 40.842071 stepsize= 1.000000 +dualbound = 2611376.577821, lowerbound=1173739.577821, norm of subgrad 1084.070836 dualbound = 2611376.577821, lowerbound=1173739.577821, norm of subgrad 40.482236 stepsize= 1.000000 +dualbound = 2611556.749593, lowerbound=1172182.749593, norm of subgrad 1083.334551 dualbound = 2611556.749593, lowerbound=1172182.749593, norm of subgrad 40.139404 stepsize= 1.000000 +dualbound = 2611735.173117, lowerbound=1170532.173117, norm of subgrad 1082.550310 dualbound = 2611735.173117, lowerbound=1170532.173117, norm of subgrad 39.514852 stepsize= 1.000000 +dualbound = 2611897.609206, lowerbound=1176043.609206, norm of subgrad 1085.115482 dualbound = 2611897.609206, lowerbound=1176043.609206, norm of subgrad 39.930391 stepsize= 1.000000 +dualbound = 2612081.028475, lowerbound=1169327.028475, norm of subgrad 1082.011104 dualbound = 2612081.028475, lowerbound=1169327.028475, norm of subgrad 40.055203 stepsize= 1.000000 +dualbound = 2612208.686400, lowerbound=1174018.686400, norm of subgrad 1084.247521 dualbound = 2612208.686400, lowerbound=1174018.686400, norm of subgrad 41.251157 stepsize= 1.000000 +dualbound = 2612396.712749, lowerbound=1173587.712749, norm of subgrad 1083.977727 dualbound = 2612396.712749, lowerbound=1173587.712749, norm of subgrad 40.100204 stepsize= 1.000000 +dualbound = 2612572.488963, lowerbound=1174151.488963, norm of subgrad 1084.231751 dualbound = 2612572.488963, lowerbound=1174151.488963, norm of subgrad 39.784120 stepsize= 1.000000 +dualbound = 2612763.532726, lowerbound=1177206.532726, norm of subgrad 1085.639688 dualbound = 2612763.532726, lowerbound=1177206.532726, norm of subgrad 39.975540 stepsize= 1.000000 +dualbound = 2612929.738433, lowerbound=1166782.738433, norm of subgrad 1080.836592 dualbound = 2612929.738433, lowerbound=1166782.738433, norm of subgrad 39.889920 stepsize= 1.000000 +dualbound = 2613089.646548, lowerbound=1175376.646548, norm of subgrad 1084.815951 dualbound = 2613089.646548, lowerbound=1175376.646548, norm of subgrad 40.111197 stepsize= 1.000000 +dualbound = 2613263.361950, lowerbound=1171409.361950, norm of subgrad 1082.978930 dualbound = 2613263.361950, lowerbound=1171409.361950, norm of subgrad 40.096327 stepsize= 1.000000 +dualbound = 2613431.882562, lowerbound=1179440.882562, norm of subgrad 1086.688954 dualbound = 2613431.882562, lowerbound=1179440.882562, norm of subgrad 40.255690 stepsize= 1.000000 +dualbound = 2613604.758881, lowerbound=1172887.758881, norm of subgrad 1083.678808 dualbound = 2613604.758881, lowerbound=1172887.758881, norm of subgrad 40.557075 stepsize= 1.000000 +dualbound = 2613763.608920, lowerbound=1173505.608920, norm of subgrad 1083.973528 dualbound = 2613763.608920, lowerbound=1173505.608920, norm of subgrad 40.642958 stepsize= 1.000000 +dualbound = 2613945.699143, lowerbound=1172871.699143, norm of subgrad 1083.660325 dualbound = 2613945.699143, lowerbound=1172871.699143, norm of subgrad 40.374376 stepsize= 1.000000 +dualbound = 2614099.117322, lowerbound=1170990.117322, norm of subgrad 1082.826448 dualbound = 2614099.117322, lowerbound=1170990.117322, norm of subgrad 40.944086 stepsize= 1.000000 +dualbound = 2614268.925481, lowerbound=1173441.925481, norm of subgrad 1083.957529 dualbound = 2614268.925481, lowerbound=1173441.925481, norm of subgrad 41.131596 stepsize= 1.000000 +dualbound = 2614444.806440, lowerbound=1171883.806440, norm of subgrad 1083.193799 dualbound = 2614444.806440, lowerbound=1171883.806440, norm of subgrad 40.011010 stepsize= 1.000000 +dualbound = 2614657.544374, lowerbound=1172031.544374, norm of subgrad 1083.266608 dualbound = 2614657.544374, lowerbound=1172031.544374, norm of subgrad 40.592338 stepsize= 1.000000 +dualbound = 2614792.522054, lowerbound=1174216.522054, norm of subgrad 1084.318460 dualbound = 2614792.522054, lowerbound=1174216.522054, norm of subgrad 40.804138 stepsize= 1.000000 +dualbound = 2614963.219185, lowerbound=1175584.219185, norm of subgrad 1084.917149 dualbound = 2614963.219185, lowerbound=1175584.219185, norm of subgrad 40.394271 stepsize= 1.000000 +dualbound = 2615138.373160, lowerbound=1172542.373160, norm of subgrad 1083.506056 dualbound = 2615138.373160, lowerbound=1172542.373160, norm of subgrad 40.226285 stepsize= 1.000000 +dualbound = 2615326.891644, lowerbound=1171595.891644, norm of subgrad 1083.067353 dualbound = 2615326.891644, lowerbound=1171595.891644, norm of subgrad 40.342515 stepsize= 1.000000 +dualbound = 2615484.681696, lowerbound=1173209.681696, norm of subgrad 1083.834250 dualbound = 2615484.681696, lowerbound=1173209.681696, norm of subgrad 40.556011 stepsize= 1.000000 +dualbound = 2615672.104263, lowerbound=1171086.104263, norm of subgrad 1082.825519 dualbound = 2615672.104263, lowerbound=1171086.104263, norm of subgrad 40.154982 stepsize= 1.000000 +dualbound = 2615833.994672, lowerbound=1175397.994672, norm of subgrad 1084.820720 dualbound = 2615833.994672, lowerbound=1175397.994672, norm of subgrad 39.998630 stepsize= 1.000000 +dualbound = 2615997.886214, lowerbound=1172204.886214, norm of subgrad 1083.368306 dualbound = 2615997.886214, lowerbound=1172204.886214, norm of subgrad 40.569589 stepsize= 1.000000 +dualbound = 2616190.419739, lowerbound=1172807.419739, norm of subgrad 1083.638971 dualbound = 2616190.419739, lowerbound=1172807.419739, norm of subgrad 40.725097 stepsize= 1.000000 +dualbound = 2616332.951116, lowerbound=1172049.951116, norm of subgrad 1083.302336 dualbound = 2616332.951116, lowerbound=1172049.951116, norm of subgrad 40.454065 stepsize= 1.000000 +dualbound = 2616517.566737, lowerbound=1173073.566737, norm of subgrad 1083.782066 dualbound = 2616517.566737, lowerbound=1173073.566737, norm of subgrad 41.165709 stepsize= 1.000000 +dualbound = 2616692.950568, lowerbound=1175795.950568, norm of subgrad 1085.011498 dualbound = 2616692.950568, lowerbound=1175795.950568, norm of subgrad 40.365627 stepsize= 1.000000 +dualbound = 2616876.209479, lowerbound=1171585.209479, norm of subgrad 1083.032876 dualbound = 2616876.209479, lowerbound=1171585.209479, norm of subgrad 39.474788 stepsize= 1.000000 +dualbound = 2617043.967555, lowerbound=1174003.967555, norm of subgrad 1084.168330 dualbound = 2617043.967555, lowerbound=1174003.967555, norm of subgrad 39.809020 stepsize= 1.000000 +dualbound = 2617206.294647, lowerbound=1174111.294647, norm of subgrad 1084.192923 dualbound = 2617206.294647, lowerbound=1174111.294647, norm of subgrad 39.055436 stepsize= 1.000000 +dualbound = 2617396.294179, lowerbound=1172857.294179, norm of subgrad 1083.621841 dualbound = 2617396.294179, lowerbound=1172857.294179, norm of subgrad 39.610599 stepsize= 1.000000 +dualbound = 2617551.158901, lowerbound=1172687.158901, norm of subgrad 1083.566869 dualbound = 2617551.158901, lowerbound=1172687.158901, norm of subgrad 39.810359 stepsize= 1.000000 +dualbound = 2617712.296801, lowerbound=1172316.296801, norm of subgrad 1083.422954 dualbound = 2617712.296801, lowerbound=1172316.296801, norm of subgrad 40.621889 stepsize= 1.000000 +dualbound = 2617877.945772, lowerbound=1172901.945772, norm of subgrad 1083.696427 dualbound = 2617877.945772, lowerbound=1172901.945772, norm of subgrad 40.763329 stepsize= 1.000000 +dualbound = 2618027.168659, lowerbound=1172807.168659, norm of subgrad 1083.672999 dualbound = 2618027.168659, lowerbound=1172807.168659, norm of subgrad 41.100157 stepsize= 1.000000 +dualbound = 2618225.968514, lowerbound=1171577.968514, norm of subgrad 1083.059079 dualbound = 2618225.968514, lowerbound=1171577.968514, norm of subgrad 40.469740 stepsize= 1.000000 +dualbound = 2618417.297152, lowerbound=1174147.297152, norm of subgrad 1084.231662 dualbound = 2618417.297152, lowerbound=1174147.297152, norm of subgrad 40.029097 stepsize= 1.000000 +dualbound = 2618566.026955, lowerbound=1171590.026955, norm of subgrad 1083.060953 dualbound = 2618566.026955, lowerbound=1171590.026955, norm of subgrad 39.745815 stepsize= 1.000000 +dualbound = 2618742.802903, lowerbound=1175461.802903, norm of subgrad 1084.880087 dualbound = 2618742.802903, lowerbound=1175461.802903, norm of subgrad 40.985070 stepsize= 1.000000 +dualbound = 2618892.424594, lowerbound=1172345.424594, norm of subgrad 1083.433627 dualbound = 2618892.424594, lowerbound=1172345.424594, norm of subgrad 40.405714 stepsize= 1.000000 +dualbound = 2619069.129136, lowerbound=1175780.129136, norm of subgrad 1085.009737 dualbound = 2619069.129136, lowerbound=1175780.129136, norm of subgrad 40.530292 stepsize= 1.000000 +dualbound = 2619261.219213, lowerbound=1173181.219213, norm of subgrad 1083.799437 dualbound = 2619261.219213, lowerbound=1173181.219213, norm of subgrad 40.399135 stepsize= 1.000000 +dualbound = 2619411.431417, lowerbound=1168607.431417, norm of subgrad 1081.712731 dualbound = 2619411.431417, lowerbound=1168607.431417, norm of subgrad 40.561216 stepsize= 1.000000 +dualbound = 2619607.330902, lowerbound=1172999.330902, norm of subgrad 1083.733053 dualbound = 2619607.330902, lowerbound=1172999.330902, norm of subgrad 40.913317 stepsize= 1.000000 +dualbound = 2619767.845601, lowerbound=1175955.845601, norm of subgrad 1085.084718 dualbound = 2619767.845601, lowerbound=1175955.845601, norm of subgrad 40.168579 stepsize= 1.000000 +dualbound = 2619953.373074, lowerbound=1172231.373074, norm of subgrad 1083.349608 dualbound = 2619953.373074, lowerbound=1172231.373074, norm of subgrad 40.006593 stepsize= 1.000000 +dualbound = 2620126.216142, lowerbound=1174947.216142, norm of subgrad 1084.601870 dualbound = 2620126.216142, lowerbound=1174947.216142, norm of subgrad 39.835199 stepsize= 1.000000 +dualbound = 2620284.551210, lowerbound=1174094.551210, norm of subgrad 1084.211488 dualbound = 2620284.551210, lowerbound=1174094.551210, norm of subgrad 39.728265 stepsize= 1.000000 +dualbound = 2620453.819551, lowerbound=1170976.819551, norm of subgrad 1082.795835 dualbound = 2620453.819551, lowerbound=1170976.819551, norm of subgrad 40.487879 stepsize= 1.000000 +dualbound = 2620613.058066, lowerbound=1174999.058066, norm of subgrad 1084.628996 dualbound = 2620613.058066, lowerbound=1174999.058066, norm of subgrad 39.752214 stepsize= 1.000000 +dualbound = 2620802.829408, lowerbound=1175942.829408, norm of subgrad 1085.069044 dualbound = 2620802.829408, lowerbound=1175942.829408, norm of subgrad 40.271222 stepsize= 1.000000 +dualbound = 2620963.622391, lowerbound=1176751.622391, norm of subgrad 1085.471152 dualbound = 2620963.622391, lowerbound=1176751.622391, norm of subgrad 40.703722 stepsize= 1.000000 +dualbound = 2621121.201806, lowerbound=1174348.201806, norm of subgrad 1084.341829 dualbound = 2621121.201806, lowerbound=1174348.201806, norm of subgrad 40.082158 stepsize= 1.000000 +dualbound = 2621284.511924, lowerbound=1173124.511924, norm of subgrad 1083.769123 dualbound = 2621284.511924, lowerbound=1173124.511924, norm of subgrad 39.928813 stepsize= 1.000000 +dualbound = 2621479.604525, lowerbound=1173546.604525, norm of subgrad 1083.977216 dualbound = 2621479.604525, lowerbound=1173546.604525, norm of subgrad 40.682829 stepsize= 1.000000 +dualbound = 2621622.187089, lowerbound=1172482.187089, norm of subgrad 1083.475513 dualbound = 2621622.187089, lowerbound=1172482.187089, norm of subgrad 39.743963 stepsize= 1.000000 +dualbound = 2621825.742034, lowerbound=1175316.742034, norm of subgrad 1084.759301 dualbound = 2621825.742034, lowerbound=1175316.742034, norm of subgrad 39.869223 stepsize= 1.000000 +dualbound = 2621998.963603, lowerbound=1171850.963603, norm of subgrad 1083.181870 dualbound = 2621998.963603, lowerbound=1171850.963603, norm of subgrad 40.065216 stepsize= 1.000000 +dualbound = 2622150.735595, lowerbound=1174690.735595, norm of subgrad 1084.487776 dualbound = 2622150.735595, lowerbound=1174690.735595, norm of subgrad 39.683397 stepsize= 1.000000 +dualbound = 2622332.095531, lowerbound=1173539.095531, norm of subgrad 1083.988513 dualbound = 2622332.095531, lowerbound=1173539.095531, norm of subgrad 40.906722 stepsize= 1.000000 +dualbound = 2622461.486516, lowerbound=1176125.486516, norm of subgrad 1085.177629 dualbound = 2622461.486516, lowerbound=1176125.486516, norm of subgrad 40.179485 stepsize= 1.000000 +dualbound = 2622667.424509, lowerbound=1173731.424509, norm of subgrad 1084.066153 dualbound = 2622667.424509, lowerbound=1173731.424509, norm of subgrad 40.913787 stepsize= 1.000000 +dualbound = 2622806.322235, lowerbound=1174547.322235, norm of subgrad 1084.440557 dualbound = 2622806.322235, lowerbound=1174547.322235, norm of subgrad 40.036205 stepsize= 1.000000 +dualbound = 2623009.860345, lowerbound=1177642.860345, norm of subgrad 1085.885749 dualbound = 2623009.860345, lowerbound=1177642.860345, norm of subgrad 41.334466 stepsize= 1.000000 +dualbound = 2623137.485013, lowerbound=1175398.485013, norm of subgrad 1084.859201 dualbound = 2623137.485013, lowerbound=1175398.485013, norm of subgrad 40.603259 stepsize= 1.000000 +dualbound = 2623324.372883, lowerbound=1173671.372883, norm of subgrad 1084.080889 dualbound = 2623324.372883, lowerbound=1173671.372883, norm of subgrad 41.795788 stepsize= 1.000000 +dualbound = 2623492.887207, lowerbound=1173576.887207, norm of subgrad 1083.998564 dualbound = 2623492.887207, lowerbound=1173576.887207, norm of subgrad 40.552612 stepsize= 1.000000 +dualbound = 2623685.131355, lowerbound=1179139.131355, norm of subgrad 1086.549645 dualbound = 2623685.131355, lowerbound=1179139.131355, norm of subgrad 40.536948 stepsize= 1.000000 +dualbound = 2623870.947396, lowerbound=1173810.947396, norm of subgrad 1084.047484 dualbound = 2623870.947396, lowerbound=1173810.947396, norm of subgrad 39.163964 stepsize= 1.000000 +dualbound = 2624065.801215, lowerbound=1175242.801215, norm of subgrad 1084.725680 dualbound = 2624065.801215, lowerbound=1175242.801215, norm of subgrad 39.772526 stepsize= 1.000000 +dualbound = 2624184.833946, lowerbound=1169171.833946, norm of subgrad 1081.962492 dualbound = 2624184.833946, lowerbound=1169171.833946, norm of subgrad 39.875214 stepsize= 1.000000 +dualbound = 2624372.155362, lowerbound=1175573.155362, norm of subgrad 1084.878406 dualbound = 2624372.155362, lowerbound=1175573.155362, norm of subgrad 39.690319 stepsize= 1.000000 +dualbound = 2624526.399159, lowerbound=1175159.399159, norm of subgrad 1084.692767 dualbound = 2624526.399159, lowerbound=1175159.399159, norm of subgrad 39.411214 stepsize= 1.000000 +dualbound = 2624720.426056, lowerbound=1175985.426056, norm of subgrad 1085.089133 dualbound = 2624720.426056, lowerbound=1175985.426056, norm of subgrad 40.336421 stepsize= 1.000000 +dualbound = 2624875.179205, lowerbound=1174039.179205, norm of subgrad 1084.212239 dualbound = 2624875.179205, lowerbound=1174039.179205, norm of subgrad 40.394964 stepsize= 1.000000 +dualbound = 2625046.512640, lowerbound=1175131.512640, norm of subgrad 1084.698812 dualbound = 2625046.512640, lowerbound=1175131.512640, norm of subgrad 40.141418 stepsize= 1.000000 +dualbound = 2625229.072651, lowerbound=1174924.072651, norm of subgrad 1084.590279 dualbound = 2625229.072651, lowerbound=1174924.072651, norm of subgrad 39.931942 stepsize= 1.000000 +dualbound = 2625393.962950, lowerbound=1175778.962950, norm of subgrad 1085.002748 dualbound = 2625393.962950, lowerbound=1175778.962950, norm of subgrad 40.210574 stepsize= 1.000000 +dualbound = 2625558.363867, lowerbound=1173483.363867, norm of subgrad 1083.975260 dualbound = 2625558.363867, lowerbound=1173483.363867, norm of subgrad 41.029269 stepsize= 1.000000 +dualbound = 2625711.930724, lowerbound=1177936.930724, norm of subgrad 1086.028052 dualbound = 2625711.930724, lowerbound=1177936.930724, norm of subgrad 40.909251 stepsize= 1.000000 +dualbound = 2625866.965856, lowerbound=1176717.965856, norm of subgrad 1085.451043 dualbound = 2625866.965856, lowerbound=1176717.965856, norm of subgrad 40.509692 stepsize= 1.000000 +dualbound = 2626068.581377, lowerbound=1175078.581377, norm of subgrad 1084.685937 dualbound = 2626068.581377, lowerbound=1175078.581377, norm of subgrad 40.824203 stepsize= 1.000000 +dualbound = 2626234.619981, lowerbound=1176837.619981, norm of subgrad 1085.478982 dualbound = 2626234.619981, lowerbound=1176837.619981, norm of subgrad 39.912888 stepsize= 1.000000 +dualbound = 2626418.901266, lowerbound=1173355.901266, norm of subgrad 1083.851882 dualbound = 2626418.901266, lowerbound=1173355.901266, norm of subgrad 39.538352 stepsize= 1.000000 +dualbound = 2626582.430537, lowerbound=1175615.430537, norm of subgrad 1084.928307 dualbound = 2626582.430537, lowerbound=1175615.430537, norm of subgrad 40.218519 stepsize= 1.000000 +dualbound = 2626769.247235, lowerbound=1178229.247235, norm of subgrad 1086.097715 dualbound = 2626769.247235, lowerbound=1178229.247235, norm of subgrad 39.570402 stepsize= 1.000000 +dualbound = 2626929.453889, lowerbound=1181344.453889, norm of subgrad 1087.555724 dualbound = 2626929.453889, lowerbound=1181344.453889, norm of subgrad 39.914993 stepsize= 1.000000 +dualbound = 2627085.811728, lowerbound=1177732.811728, norm of subgrad 1085.908289 dualbound = 2627085.811728, lowerbound=1177732.811728, norm of subgrad 40.253669 stepsize= 1.000000 +dualbound = 2627236.294003, lowerbound=1177969.294003, norm of subgrad 1086.000135 dualbound = 2627236.294003, lowerbound=1177969.294003, norm of subgrad 39.717531 stepsize= 1.000000 +dualbound = 2627429.160159, lowerbound=1174800.160159, norm of subgrad 1084.526238 dualbound = 2627429.160159, lowerbound=1174800.160159, norm of subgrad 39.873126 stepsize= 1.000000 +dualbound = 2627608.623133, lowerbound=1170573.623133, norm of subgrad 1082.574073 dualbound = 2627608.623133, lowerbound=1170573.623133, norm of subgrad 39.654293 stepsize= 1.000000 +dualbound = 2627751.860937, lowerbound=1181263.860937, norm of subgrad 1087.521890 dualbound = 2627751.860937, lowerbound=1181263.860937, norm of subgrad 39.789921 stepsize= 1.000000 +dualbound = 2627917.846102, lowerbound=1176354.846102, norm of subgrad 1085.259345 dualbound = 2627917.846102, lowerbound=1176354.846102, norm of subgrad 39.987313 stepsize= 1.000000 +dualbound = 2628111.734032, lowerbound=1175124.734032, norm of subgrad 1084.705828 dualbound = 2628111.734032, lowerbound=1175124.734032, norm of subgrad 40.692603 stepsize= 1.000000 +dualbound = 2628255.181750, lowerbound=1174854.181750, norm of subgrad 1084.610152 dualbound = 2628255.181750, lowerbound=1174854.181750, norm of subgrad 40.846637 stepsize= 1.000000 +dualbound = 2628415.684267, lowerbound=1176548.684267, norm of subgrad 1085.386882 dualbound = 2628415.684267, lowerbound=1176548.684267, norm of subgrad 40.945116 stepsize= 1.000000 +dualbound = 2628594.963283, lowerbound=1171090.963283, norm of subgrad 1082.876707 dualbound = 2628594.963283, lowerbound=1171090.963283, norm of subgrad 41.355520 stepsize= 1.000000 +dualbound = 2628757.578375, lowerbound=1181577.578375, norm of subgrad 1087.674850 dualbound = 2628757.578375, lowerbound=1181577.578375, norm of subgrad 40.269282 stepsize= 1.000000 +dualbound = 2628937.117502, lowerbound=1172293.117502, norm of subgrad 1083.382720 dualbound = 2628937.117502, lowerbound=1172293.117502, norm of subgrad 40.056699 stepsize= 1.000000 +dualbound = 2629112.366159, lowerbound=1179017.366159, norm of subgrad 1086.492690 dualbound = 2629112.366159, lowerbound=1179017.366159, norm of subgrad 40.301968 stepsize= 1.000000 +dualbound = 2629282.446558, lowerbound=1176211.446558, norm of subgrad 1085.178532 dualbound = 2629282.446558, lowerbound=1176211.446558, norm of subgrad 39.636857 stepsize= 1.000000 +dualbound = 2629467.825156, lowerbound=1176790.825156, norm of subgrad 1085.456045 dualbound = 2629467.825156, lowerbound=1176790.825156, norm of subgrad 40.117061 stepsize= 1.000000 +dualbound = 2629607.160529, lowerbound=1174620.160529, norm of subgrad 1084.491660 dualbound = 2629607.160529, lowerbound=1174620.160529, norm of subgrad 40.513397 stepsize= 1.000000 +dualbound = 2629778.474431, lowerbound=1179517.474431, norm of subgrad 1086.708091 dualbound = 2629778.474431, lowerbound=1179517.474431, norm of subgrad 39.853656 stepsize= 1.000000 +dualbound = 2629968.961584, lowerbound=1175032.961584, norm of subgrad 1084.640015 dualbound = 2629968.961584, lowerbound=1175032.961584, norm of subgrad 40.018585 stepsize= 1.000000 +dualbound = 2630157.083880, lowerbound=1179301.083880, norm of subgrad 1086.601161 dualbound = 2630157.083880, lowerbound=1179301.083880, norm of subgrad 39.863797 stepsize= 1.000000 +dualbound = 2630309.749266, lowerbound=1175749.749266, norm of subgrad 1084.962557 dualbound = 2630309.749266, lowerbound=1175749.749266, norm of subgrad 39.327667 stepsize= 1.000000 +dualbound = 2630491.837973, lowerbound=1176905.837973, norm of subgrad 1085.481385 dualbound = 2630491.837973, lowerbound=1176905.837973, norm of subgrad 39.320335 stepsize= 1.000000 +dualbound = 2630671.929927, lowerbound=1172425.929927, norm of subgrad 1083.415400 dualbound = 2630671.929927, lowerbound=1172425.929927, norm of subgrad 39.282209 stepsize= 1.000000 +dualbound = 2630827.990808, lowerbound=1180283.990808, norm of subgrad 1087.053812 dualbound = 2630827.990808, lowerbound=1180283.990808, norm of subgrad 39.472280 stepsize= 1.000000 +dualbound = 2630986.189952, lowerbound=1174241.189952, norm of subgrad 1084.303090 dualbound = 2630986.189952, lowerbound=1174241.189952, norm of subgrad 40.375725 stepsize= 1.000000 +dualbound = 2631151.232480, lowerbound=1179371.232480, norm of subgrad 1086.674391 dualbound = 2631151.232480, lowerbound=1179371.232480, norm of subgrad 40.682214 stepsize= 1.000000 +dualbound = 2631309.409391, lowerbound=1173925.409391, norm of subgrad 1084.167150 dualbound = 2631309.409391, lowerbound=1173925.409391, norm of subgrad 40.634676 stepsize= 1.000000 +dualbound = 2631473.619181, lowerbound=1174778.619181, norm of subgrad 1084.549501 dualbound = 2631473.619181, lowerbound=1174778.619181, norm of subgrad 40.412990 stepsize= 1.000000 +dualbound = 2631646.626180, lowerbound=1175619.626180, norm of subgrad 1084.953283 dualbound = 2631646.626180, lowerbound=1175619.626180, norm of subgrad 40.951276 stepsize= 1.000000 +dualbound = 2631813.506135, lowerbound=1178449.506135, norm of subgrad 1086.258029 dualbound = 2631813.506135, lowerbound=1178449.506135, norm of subgrad 40.913078 stepsize= 1.000000 +dualbound = 2631997.033817, lowerbound=1177904.033817, norm of subgrad 1085.999095 dualbound = 2631997.033817, lowerbound=1177904.033817, norm of subgrad 40.908773 stepsize= 1.000000 +dualbound = 2632171.417105, lowerbound=1180529.417105, norm of subgrad 1087.188308 dualbound = 2632171.417105, lowerbound=1180529.417105, norm of subgrad 40.291231 stepsize= 1.000000 +dualbound = 2632311.416217, lowerbound=1172386.416217, norm of subgrad 1083.468696 dualbound = 2632311.416217, lowerbound=1172386.416217, norm of subgrad 40.718535 stepsize= 1.000000 +dualbound = 2632493.027339, lowerbound=1176392.027339, norm of subgrad 1085.278779 dualbound = 2632493.027339, lowerbound=1176392.027339, norm of subgrad 40.244392 stepsize= 1.000000 +dualbound = 2632667.797383, lowerbound=1173589.797383, norm of subgrad 1083.993910 dualbound = 2632667.797383, lowerbound=1173589.797383, norm of subgrad 40.345632 stepsize= 1.000000 +dualbound = 2632829.301959, lowerbound=1177660.301959, norm of subgrad 1085.878125 dualbound = 2632829.301959, lowerbound=1177660.301959, norm of subgrad 40.404264 stepsize= 1.000000 +dualbound = 2633005.351455, lowerbound=1171085.351455, norm of subgrad 1082.832098 dualbound = 2633005.351455, lowerbound=1171085.351455, norm of subgrad 40.200118 stepsize= 1.000000 +dualbound = 2633205.349623, lowerbound=1179436.349623, norm of subgrad 1086.660181 dualbound = 2633205.349623, lowerbound=1179436.349623, norm of subgrad 39.924907 stepsize= 1.000000 +dualbound = 2633354.534187, lowerbound=1171836.534187, norm of subgrad 1083.189519 dualbound = 2633354.534187, lowerbound=1171836.534187, norm of subgrad 40.152018 stepsize= 1.000000 +dualbound = 2633527.180633, lowerbound=1176550.180633, norm of subgrad 1085.374673 dualbound = 2633527.180633, lowerbound=1176550.180633, norm of subgrad 40.751030 stepsize= 1.000000 +dualbound = 2633643.891156, lowerbound=1175971.891156, norm of subgrad 1085.143258 dualbound = 2633643.891156, lowerbound=1175971.891156, norm of subgrad 40.996470 stepsize= 1.000000 +dualbound = 2633851.309823, lowerbound=1176437.309823, norm of subgrad 1085.314844 dualbound = 2633851.309823, lowerbound=1176437.309823, norm of subgrad 40.968508 stepsize= 1.000000 +dualbound = 2634017.901939, lowerbound=1180538.901939, norm of subgrad 1087.212906 dualbound = 2634017.901939, lowerbound=1180538.901939, norm of subgrad 40.738092 stepsize= 1.000000 +dualbound = 2634199.403789, lowerbound=1174360.403789, norm of subgrad 1084.331778 dualbound = 2634199.403789, lowerbound=1174360.403789, norm of subgrad 39.956249 stepsize= 1.000000 +dualbound = 2634377.151073, lowerbound=1178285.151073, norm of subgrad 1086.151993 dualbound = 2634377.151073, lowerbound=1178285.151073, norm of subgrad 40.233659 stepsize= 1.000000 +dualbound = 2634528.434306, lowerbound=1176926.434306, norm of subgrad 1085.543843 dualbound = 2634528.434306, lowerbound=1176926.434306, norm of subgrad 40.376766 stepsize= 1.000000 +dualbound = 2634704.694575, lowerbound=1173437.694575, norm of subgrad 1083.920059 dualbound = 2634704.694575, lowerbound=1173437.694575, norm of subgrad 40.264876 stepsize= 1.000000 +dualbound = 2634888.126823, lowerbound=1176649.126823, norm of subgrad 1085.373266 dualbound = 2634888.126823, lowerbound=1176649.126823, norm of subgrad 39.616060 stepsize= 1.000000 +dualbound = 2635047.643384, lowerbound=1175624.643385, norm of subgrad 1084.905822 dualbound = 2635047.643384, lowerbound=1175624.643385, norm of subgrad 39.440038 stepsize= 1.000000 +dualbound = 2635217.892919, lowerbound=1176861.892919, norm of subgrad 1085.480489 dualbound = 2635217.892919, lowerbound=1176861.892919, norm of subgrad 39.702009 stepsize= 1.000000 +dualbound = 2635383.421282, lowerbound=1177314.421282, norm of subgrad 1085.724376 dualbound = 2635383.421282, lowerbound=1177314.421282, norm of subgrad 40.602073 stepsize= 1.000000 +dualbound = 2635521.590144, lowerbound=1178909.590144, norm of subgrad 1086.442171 dualbound = 2635521.590144, lowerbound=1178909.590144, norm of subgrad 39.814179 stepsize= 1.000000 +dualbound = 2635713.909108, lowerbound=1174928.909108, norm of subgrad 1084.592508 dualbound = 2635713.909108, lowerbound=1174928.909108, norm of subgrad 40.053951 stepsize= 1.000000 +dualbound = 2635887.747308, lowerbound=1176350.747308, norm of subgrad 1085.242714 dualbound = 2635887.747308, lowerbound=1176350.747308, norm of subgrad 39.684231 stepsize= 1.000000 +dualbound = 2636086.125368, lowerbound=1174724.125368, norm of subgrad 1084.484267 dualbound = 2636086.125368, lowerbound=1174724.125368, norm of subgrad 39.753969 stepsize= 1.000000 +dualbound = 2636218.132855, lowerbound=1175249.132855, norm of subgrad 1084.760403 dualbound = 2636218.132855, lowerbound=1175249.132855, norm of subgrad 39.849812 stepsize= 1.000000 +dualbound = 2636411.171738, lowerbound=1179823.171738, norm of subgrad 1086.880477 dualbound = 2636411.171738, lowerbound=1179823.171738, norm of subgrad 40.976077 stepsize= 1.000000 +dualbound = 2636515.726302, lowerbound=1175267.726302, norm of subgrad 1084.804925 dualbound = 2636515.726302, lowerbound=1175267.726302, norm of subgrad 40.479063 stepsize= 1.000000 +dualbound = 2636711.676947, lowerbound=1181195.676947, norm of subgrad 1087.515369 dualbound = 2636711.676947, lowerbound=1181195.676947, norm of subgrad 41.109009 stepsize= 1.000000 +dualbound = 2636880.570502, lowerbound=1172721.570502, norm of subgrad 1083.614124 dualbound = 2636880.570502, lowerbound=1172721.570502, norm of subgrad 40.827608 stepsize= 1.000000 +dualbound = 2637058.027648, lowerbound=1179872.027648, norm of subgrad 1086.869370 dualbound = 2637058.027648, lowerbound=1179872.027648, norm of subgrad 39.880536 stepsize= 1.000000 +dualbound = 2637251.466846, lowerbound=1174380.466846, norm of subgrad 1084.349790 dualbound = 2637251.466846, lowerbound=1174380.466846, norm of subgrad 40.341532 stepsize= 1.000000 +dualbound = 2637393.666098, lowerbound=1181341.666098, norm of subgrad 1087.585245 dualbound = 2637393.666098, lowerbound=1181341.666098, norm of subgrad 40.524058 stepsize= 1.000000 +dualbound = 2637579.867309, lowerbound=1175570.867309, norm of subgrad 1084.922517 dualbound = 2637579.867309, lowerbound=1175570.867309, norm of subgrad 40.892557 stepsize= 1.000000 +dualbound = 2637723.995542, lowerbound=1176553.995542, norm of subgrad 1085.371363 dualbound = 2637723.995542, lowerbound=1176553.995542, norm of subgrad 40.263237 stepsize= 1.000000 +dualbound = 2637907.783655, lowerbound=1179554.783655, norm of subgrad 1086.728477 dualbound = 2637907.783655, lowerbound=1179554.783655, norm of subgrad 40.097233 stepsize= 1.000000 +dualbound = 2638085.706811, lowerbound=1176547.706811, norm of subgrad 1085.324701 dualbound = 2638085.706811, lowerbound=1176547.706811, norm of subgrad 39.495863 stepsize= 1.000000 +dualbound = 2638257.003520, lowerbound=1176332.003520, norm of subgrad 1085.227167 dualbound = 2638257.003520, lowerbound=1176332.003520, norm of subgrad 39.462599 stepsize= 1.000000 +dualbound = 2638446.660647, lowerbound=1175353.660647, norm of subgrad 1084.792450 dualbound = 2638446.660647, lowerbound=1175353.660647, norm of subgrad 40.132993 stepsize= 1.000000 +dualbound = 2638568.491115, lowerbound=1174081.491115, norm of subgrad 1084.220684 dualbound = 2638568.491115, lowerbound=1174081.491115, norm of subgrad 39.684134 stepsize= 1.000000 +dualbound = 2638739.793258, lowerbound=1178247.793258, norm of subgrad 1086.123747 dualbound = 2638739.793258, lowerbound=1178247.793258, norm of subgrad 39.853509 stepsize= 1.000000 +dualbound = 2638920.518063, lowerbound=1176383.518063, norm of subgrad 1085.249980 dualbound = 2638920.518063, lowerbound=1176383.518063, norm of subgrad 39.556603 stepsize= 1.000000 +dualbound = 2639097.914747, lowerbound=1173561.914747, norm of subgrad 1083.977359 dualbound = 2639097.914747, lowerbound=1173561.914747, norm of subgrad 40.278986 stepsize= 1.000000 +dualbound = 2639245.375104, lowerbound=1181391.375104, norm of subgrad 1087.625108 dualbound = 2639245.375104, lowerbound=1181391.375104, norm of subgrad 41.042178 stepsize= 1.000000 +dualbound = 2639380.242573, lowerbound=1173706.242573, norm of subgrad 1084.091436 dualbound = 2639380.242573, lowerbound=1173706.242573, norm of subgrad 41.022768 stepsize= 1.000000 +dualbound = 2639571.026338, lowerbound=1179187.026338, norm of subgrad 1086.578127 dualbound = 2639571.026338, lowerbound=1179187.026338, norm of subgrad 40.691323 stepsize= 1.000000 +dualbound = 2639752.846541, lowerbound=1177160.846541, norm of subgrad 1085.668387 dualbound = 2639752.846541, lowerbound=1177160.846541, norm of subgrad 41.192478 stepsize= 1.000000 +dualbound = 2639913.397906, lowerbound=1176254.397906, norm of subgrad 1085.241631 dualbound = 2639913.397906, lowerbound=1176254.397906, norm of subgrad 40.688467 stepsize= 1.000000 +dualbound = 2640082.438402, lowerbound=1181148.438402, norm of subgrad 1087.489972 dualbound = 2640082.438402, lowerbound=1181148.438402, norm of subgrad 40.682189 stepsize= 1.000000 +dualbound = 2640265.273875, lowerbound=1173272.273875, norm of subgrad 1083.840520 dualbound = 2640265.273875, lowerbound=1173272.273875, norm of subgrad 40.259601 stepsize= 1.000000 +dualbound = 2640446.069028, lowerbound=1178512.069028, norm of subgrad 1086.273938 dualbound = 2640446.069028, lowerbound=1178512.069028, norm of subgrad 40.740584 stepsize= 1.000000 +dualbound = 2640610.810413, lowerbound=1177744.810413, norm of subgrad 1085.893093 dualbound = 2640610.810413, lowerbound=1177744.810413, norm of subgrad 39.796248 stepsize= 1.000000 +dualbound = 2640771.226029, lowerbound=1178764.226029, norm of subgrad 1086.355939 dualbound = 2640771.226029, lowerbound=1178764.226029, norm of subgrad 39.565334 stepsize= 1.000000 +dualbound = 2640955.591458, lowerbound=1172228.591458, norm of subgrad 1083.318324 dualbound = 2640955.591458, lowerbound=1172228.591458, norm of subgrad 39.170977 stepsize= 1.000000 +dualbound = 2641132.025802, lowerbound=1180585.025802, norm of subgrad 1087.179850 dualbound = 2641132.025802, lowerbound=1180585.025802, norm of subgrad 39.388251 stepsize= 1.000000 +dualbound = 2641289.259873, lowerbound=1178336.259873, norm of subgrad 1086.176901 dualbound = 2641289.259873, lowerbound=1178336.259873, norm of subgrad 40.015423 stepsize= 1.000000 +dualbound = 2641448.675547, lowerbound=1178296.675547, norm of subgrad 1086.131979 dualbound = 2641448.675547, lowerbound=1178296.675547, norm of subgrad 39.311775 stepsize= 1.000000 +dualbound = 2641628.217731, lowerbound=1174060.217731, norm of subgrad 1084.225630 dualbound = 2641628.217731, lowerbound=1174060.217731, norm of subgrad 40.798801 stepsize= 1.000000 +dualbound = 2641735.090549, lowerbound=1176953.090549, norm of subgrad 1085.580071 dualbound = 2641735.090549, lowerbound=1176953.090549, norm of subgrad 40.470641 stepsize= 1.000000 +dualbound = 2641924.694162, lowerbound=1176047.694162, norm of subgrad 1085.166206 dualbound = 2641924.694162, lowerbound=1176047.694162, norm of subgrad 41.564451 stepsize= 1.000000 +dualbound = 2642113.249283, lowerbound=1177653.249283, norm of subgrad 1085.881784 dualbound = 2642113.249283, lowerbound=1177653.249283, norm of subgrad 40.921328 stepsize= 1.000000 +dualbound = 2642270.527917, lowerbound=1176708.527917, norm of subgrad 1085.444392 dualbound = 2642270.527917, lowerbound=1176708.527917, norm of subgrad 40.475655 stepsize= 1.000000 +dualbound = 2642461.743990, lowerbound=1177290.743990, norm of subgrad 1085.700117 dualbound = 2642461.743990, lowerbound=1177290.743990, norm of subgrad 40.561263 stepsize= 1.000000 +dualbound = 2642619.471148, lowerbound=1175934.471148, norm of subgrad 1085.047682 dualbound = 2642619.471148, lowerbound=1175934.471148, norm of subgrad 39.391968 stepsize= 1.000000 +dualbound = 2642803.073741, lowerbound=1179201.073741, norm of subgrad 1086.572627 dualbound = 2642803.073741, lowerbound=1179201.073741, norm of subgrad 40.281542 stepsize= 1.000000 +dualbound = 2642955.764388, lowerbound=1175868.764388, norm of subgrad 1085.042748 dualbound = 2642955.764388, lowerbound=1175868.764388, norm of subgrad 40.021128 stepsize= 1.000000 +dualbound = 2643144.890899, lowerbound=1178654.890899, norm of subgrad 1086.336914 dualbound = 2643144.890899, lowerbound=1178654.890899, norm of subgrad 40.769186 stepsize= 1.000000 +dualbound = 2643271.366953, lowerbound=1176375.366953, norm of subgrad 1085.296442 dualbound = 2643271.366953, lowerbound=1176375.366953, norm of subgrad 40.242714 stepsize= 1.000000 +dualbound = 2643474.054119, lowerbound=1178408.054119, norm of subgrad 1086.207187 dualbound = 2643474.054119, lowerbound=1178408.054119, norm of subgrad 40.505397 stepsize= 1.000000 +dualbound = 2643654.301342, lowerbound=1175751.301342, norm of subgrad 1084.976636 dualbound = 2643654.301342, lowerbound=1175751.301342, norm of subgrad 40.040570 stepsize= 1.000000 +dualbound = 2643787.442934, lowerbound=1176935.442934, norm of subgrad 1085.547531 dualbound = 2643787.442934, lowerbound=1176935.442934, norm of subgrad 40.139028 stepsize= 1.000000 +dualbound = 2643980.356766, lowerbound=1184443.356766, norm of subgrad 1088.987308 dualbound = 2643980.356766, lowerbound=1184443.356766, norm of subgrad 40.532873 stepsize= 1.000000 +dualbound = 2644133.164207, lowerbound=1179088.164207, norm of subgrad 1086.519288 dualbound = 2644133.164207, lowerbound=1179088.164207, norm of subgrad 39.859847 stepsize= 1.000000 +dualbound = 2644314.799094, lowerbound=1176012.799094, norm of subgrad 1085.083314 dualbound = 2644314.799094, lowerbound=1176012.799094, norm of subgrad 39.681669 stepsize= 1.000000 +dualbound = 2644482.135180, lowerbound=1178133.135180, norm of subgrad 1086.093981 dualbound = 2644482.135180, lowerbound=1178133.135180, norm of subgrad 40.426923 stepsize= 1.000000 +dualbound = 2644631.626075, lowerbound=1175521.626075, norm of subgrad 1084.899362 dualbound = 2644631.626075, lowerbound=1175521.626075, norm of subgrad 40.428837 stepsize= 1.000000 +dualbound = 2644787.101841, lowerbound=1177756.101841, norm of subgrad 1085.970120 dualbound = 2644787.101841, lowerbound=1177756.101841, norm of subgrad 41.598988 stepsize= 1.000000 +dualbound = 2644929.669550, lowerbound=1173513.669550, norm of subgrad 1083.983242 dualbound = 2644929.669550, lowerbound=1173513.669550, norm of subgrad 40.602558 stepsize= 1.000000 +dualbound = 2645163.607967, lowerbound=1175916.607967, norm of subgrad 1085.071706 dualbound = 2645163.607967, lowerbound=1175916.607967, norm of subgrad 41.206048 stepsize= 1.000000 +dualbound = 2645334.850430, lowerbound=1174616.850430, norm of subgrad 1084.449100 dualbound = 2645334.850430, lowerbound=1174616.850430, norm of subgrad 39.802543 stepsize= 1.000000 +dualbound = 2645498.378209, lowerbound=1179810.378209, norm of subgrad 1086.846529 dualbound = 2645498.378209, lowerbound=1179810.378209, norm of subgrad 39.856339 stepsize= 1.000000 +dualbound = 2645655.276237, lowerbound=1177579.276237, norm of subgrad 1085.815950 dualbound = 2645655.276237, lowerbound=1177579.276237, norm of subgrad 39.672384 stepsize= 1.000000 +dualbound = 2645851.036393, lowerbound=1183141.036393, norm of subgrad 1088.381384 dualbound = 2645851.036393, lowerbound=1183141.036393, norm of subgrad 40.357901 stepsize= 1.000000 +dualbound = 2645978.811341, lowerbound=1174409.811341, norm of subgrad 1084.374848 dualbound = 2645978.811341, lowerbound=1174409.811341, norm of subgrad 39.834344 stepsize= 1.000000 +dualbound = 2646185.045781, lowerbound=1179785.045781, norm of subgrad 1086.836255 dualbound = 2646185.045781, lowerbound=1179785.045781, norm of subgrad 40.425666 stepsize= 1.000000 +dualbound = 2646339.897788, lowerbound=1171396.897788, norm of subgrad 1082.977330 dualbound = 2646339.897788, lowerbound=1171396.897788, norm of subgrad 39.973141 stepsize= 1.000000 +dualbound = 2646488.336266, lowerbound=1180751.336266, norm of subgrad 1087.311058 dualbound = 2646488.336266, lowerbound=1180751.336266, norm of subgrad 40.527009 stepsize= 1.000000 +dualbound = 2646664.098630, lowerbound=1176628.098630, norm of subgrad 1085.410106 dualbound = 2646664.098630, lowerbound=1176628.098630, norm of subgrad 40.776983 stepsize= 1.000000 +dualbound = 2646836.597289, lowerbound=1177916.597289, norm of subgrad 1085.989686 dualbound = 2646836.597289, lowerbound=1177916.597289, norm of subgrad 40.367049 stepsize= 1.000000 +dualbound = 2646976.894723, lowerbound=1180437.894723, norm of subgrad 1087.156794 dualbound = 2646976.894723, lowerbound=1180437.894723, norm of subgrad 40.153424 stepsize= 1.000000 +dualbound = 2647181.293208, lowerbound=1179276.293208, norm of subgrad 1086.617363 dualbound = 2647181.293208, lowerbound=1179276.293208, norm of subgrad 40.809294 stepsize= 1.000000 +dualbound = 2647306.977089, lowerbound=1174634.977089, norm of subgrad 1084.485121 dualbound = 2647306.977089, lowerbound=1174634.977089, norm of subgrad 39.983545 stepsize= 1.000000 +dualbound = 2647497.833129, lowerbound=1178683.833129, norm of subgrad 1086.379231 dualbound = 2647497.833129, lowerbound=1178683.833129, norm of subgrad 41.555457 stepsize= 1.000000 +dualbound = 2647613.785626, lowerbound=1174692.785626, norm of subgrad 1084.554188 dualbound = 2647613.785626, lowerbound=1174692.785626, norm of subgrad 40.999421 stepsize= 1.000000 +dualbound = 2647833.976197, lowerbound=1177888.976197, norm of subgrad 1085.982954 dualbound = 2647833.976197, lowerbound=1177888.976197, norm of subgrad 41.111927 stepsize= 1.000000 +dualbound = 2647999.371657, lowerbound=1179238.371657, norm of subgrad 1086.591170 dualbound = 2647999.371657, lowerbound=1179238.371657, norm of subgrad 40.092337 stepsize= 1.000000 +dualbound = 2648165.559218, lowerbound=1181894.559218, norm of subgrad 1087.817797 dualbound = 2648165.559218, lowerbound=1181894.559218, norm of subgrad 40.239130 stepsize= 1.000000 +dualbound = 2648367.259562, lowerbound=1174747.259562, norm of subgrad 1084.513836 dualbound = 2648367.259562, lowerbound=1174747.259562, norm of subgrad 40.307572 stepsize= 1.000000 +dualbound = 2648520.648721, lowerbound=1175553.648721, norm of subgrad 1084.915503 dualbound = 2648520.648721, lowerbound=1175553.648721, norm of subgrad 40.514061 stepsize= 1.000000 +dualbound = 2648663.345576, lowerbound=1175684.345576, norm of subgrad 1084.975735 dualbound = 2648663.345576, lowerbound=1175684.345576, norm of subgrad 40.381888 stepsize= 1.000000 +dualbound = 2648845.450439, lowerbound=1179438.450439, norm of subgrad 1086.677712 dualbound = 2648845.450439, lowerbound=1179438.450439, norm of subgrad 40.151026 stepsize= 1.000000 +dualbound = 2649035.752720, lowerbound=1177762.752720, norm of subgrad 1085.887541 dualbound = 2649035.752720, lowerbound=1177762.752720, norm of subgrad 39.740436 stepsize= 1.000000 +dualbound = 2649193.276604, lowerbound=1178985.276604, norm of subgrad 1086.473321 dualbound = 2649193.276604, lowerbound=1178985.276604, norm of subgrad 39.956525 stepsize= 1.000000 +dualbound = 2649347.025915, lowerbound=1178976.025915, norm of subgrad 1086.470444 dualbound = 2649347.025915, lowerbound=1178976.025915, norm of subgrad 39.946831 stepsize= 1.000000 +dualbound = 2649525.217829, lowerbound=1174821.217829, norm of subgrad 1084.536407 dualbound = 2649525.217829, lowerbound=1174821.217829, norm of subgrad 39.701284 stepsize= 1.000000 +dualbound = 2649683.236216, lowerbound=1182123.236216, norm of subgrad 1087.922440 dualbound = 2649683.236216, lowerbound=1182123.236216, norm of subgrad 40.125034 stepsize= 1.000000 +dualbound = 2649865.360046, lowerbound=1174137.360046, norm of subgrad 1084.232152 dualbound = 2649865.360046, lowerbound=1174137.360046, norm of subgrad 40.051515 stepsize= 1.000000 +dualbound = 2650006.996859, lowerbound=1176579.996859, norm of subgrad 1085.400386 dualbound = 2650006.996859, lowerbound=1176579.996859, norm of subgrad 40.689517 stepsize= 1.000000 +dualbound = 2650190.985950, lowerbound=1180742.985950, norm of subgrad 1087.304919 dualbound = 2650190.985950, lowerbound=1180742.985950, norm of subgrad 40.902189 stepsize= 1.000000 +dualbound = 2650332.854709, lowerbound=1177337.854709, norm of subgrad 1085.735168 dualbound = 2650332.854709, lowerbound=1177337.854709, norm of subgrad 40.309661 stepsize= 1.000000 +dualbound = 2650526.793236, lowerbound=1176336.793236, norm of subgrad 1085.259321 dualbound = 2650526.793236, lowerbound=1176336.793236, norm of subgrad 40.557842 stepsize= 1.000000 +dualbound = 2650672.851697, lowerbound=1178219.851697, norm of subgrad 1086.128377 dualbound = 2650672.851697, lowerbound=1178219.851697, norm of subgrad 40.013229 stepsize= 1.000000 +dualbound = 2650854.945986, lowerbound=1173880.945986, norm of subgrad 1084.136037 dualbound = 2650854.945986, lowerbound=1173880.945986, norm of subgrad 40.645963 stepsize= 1.000000 +dualbound = 2651030.268761, lowerbound=1177253.268761, norm of subgrad 1085.669503 dualbound = 2651030.268761, lowerbound=1177253.268761, norm of subgrad 40.004034 stepsize= 1.000000 +dualbound = 2651193.989571, lowerbound=1175790.989571, norm of subgrad 1085.027184 dualbound = 2651193.989571, lowerbound=1175790.989571, norm of subgrad 40.702835 stepsize= 1.000000 +dualbound = 2651349.974400, lowerbound=1176610.974400, norm of subgrad 1085.374578 dualbound = 2651349.974400, lowerbound=1176610.974400, norm of subgrad 39.786742 stepsize= 1.000000 +dualbound = 2651543.939226, lowerbound=1180980.939226, norm of subgrad 1087.404221 dualbound = 2651543.939226, lowerbound=1180980.939226, norm of subgrad 40.754936 stepsize= 1.000000 +dualbound = 2651688.658334, lowerbound=1180360.658334, norm of subgrad 1087.082636 dualbound = 2651688.658334, lowerbound=1180360.658334, norm of subgrad 39.149957 stepsize= 1.000000 +dualbound = 2651881.936022, lowerbound=1177005.936022, norm of subgrad 1085.533019 dualbound = 2651881.936022, lowerbound=1177005.936022, norm of subgrad 39.614110 stepsize= 1.000000 +dualbound = 2652017.140554, lowerbound=1174319.140554, norm of subgrad 1084.357017 dualbound = 2652017.140554, lowerbound=1174319.140554, norm of subgrad 40.573446 stepsize= 1.000000 +dualbound = 2652173.695602, lowerbound=1178712.695602, norm of subgrad 1086.362138 dualbound = 2652173.695602, lowerbound=1178712.695602, norm of subgrad 40.330572 stepsize= 1.000000 +dualbound = 2652357.562315, lowerbound=1179097.562315, norm of subgrad 1086.518551 dualbound = 2652357.562315, lowerbound=1179097.562315, norm of subgrad 40.110681 stepsize= 1.000000 +dualbound = 2652552.149998, lowerbound=1178589.149998, norm of subgrad 1086.270754 dualbound = 2652552.149998, lowerbound=1178589.149998, norm of subgrad 39.869634 stepsize= 1.000000 +dualbound = 2652702.532639, lowerbound=1179620.532639, norm of subgrad 1086.779431 dualbound = 2652702.532639, lowerbound=1179620.532639, norm of subgrad 40.241554 stepsize= 1.000000 +dualbound = 2652863.263507, lowerbound=1175769.263507, norm of subgrad 1084.996896 dualbound = 2652863.263507, lowerbound=1175769.263507, norm of subgrad 40.121451 stepsize= 1.000000 +dualbound = 2653044.007119, lowerbound=1180577.007119, norm of subgrad 1087.198237 dualbound = 2653044.007119, lowerbound=1180577.007119, norm of subgrad 40.046768 stepsize= 1.000000 +dualbound = 2653225.348787, lowerbound=1178001.348787, norm of subgrad 1086.030087 dualbound = 2653225.348787, lowerbound=1178001.348787, norm of subgrad 40.513475 stepsize= 1.000000 +dualbound = 2653344.939897, lowerbound=1179299.939897, norm of subgrad 1086.628244 dualbound = 2653344.939897, lowerbound=1179299.939897, norm of subgrad 39.756649 stepsize= 1.000000 +dualbound = 2653556.482861, lowerbound=1175455.482861, norm of subgrad 1084.837538 dualbound = 2653556.482861, lowerbound=1175455.482861, norm of subgrad 40.355210 stepsize= 1.000000 +dualbound = 2653722.189616, lowerbound=1178462.189616, norm of subgrad 1086.214615 dualbound = 2653722.189616, lowerbound=1178462.189616, norm of subgrad 39.569013 stepsize= 1.000000 +dualbound = 2653887.829456, lowerbound=1175105.829456, norm of subgrad 1084.671761 dualbound = 2653887.829456, lowerbound=1175105.829456, norm of subgrad 39.656523 stepsize= 1.000000 +dualbound = 2654041.995558, lowerbound=1179189.995558, norm of subgrad 1086.569370 dualbound = 2654041.995558, lowerbound=1179189.995558, norm of subgrad 39.964561 stepsize= 1.000000 +dualbound = 2654227.038217, lowerbound=1178184.038217, norm of subgrad 1086.086110 dualbound = 2654227.038217, lowerbound=1178184.038217, norm of subgrad 39.800033 stepsize= 1.000000 +dualbound = 2654384.265119, lowerbound=1177618.265119, norm of subgrad 1085.857848 dualbound = 2654384.265119, lowerbound=1177618.265119, norm of subgrad 40.326504 stepsize= 1.000000 +dualbound = 2654532.846647, lowerbound=1174657.846647, norm of subgrad 1084.527476 dualbound = 2654532.846647, lowerbound=1174657.846647, norm of subgrad 41.116682 stepsize= 1.000000 +dualbound = 2654677.452799, lowerbound=1180134.452799, norm of subgrad 1087.036086 dualbound = 2654677.452799, lowerbound=1180134.452799, norm of subgrad 40.713710 stepsize= 1.000000 +dualbound = 2654873.288257, lowerbound=1173757.288257, norm of subgrad 1084.086845 dualbound = 2654873.288257, lowerbound=1173757.288257, norm of subgrad 41.022378 stepsize= 1.000000 +dualbound = 2655022.347921, lowerbound=1181998.347921, norm of subgrad 1087.906865 dualbound = 2655022.347921, lowerbound=1181998.347921, norm of subgrad 41.134653 stepsize= 1.000000 +dualbound = 2655200.826518, lowerbound=1175850.826518, norm of subgrad 1085.022500 dualbound = 2655200.826518, lowerbound=1175850.826518, norm of subgrad 40.018478 stepsize= 1.000000 +dualbound = 2655396.576984, lowerbound=1179253.576984, norm of subgrad 1086.579761 dualbound = 2655396.576984, lowerbound=1179253.576984, norm of subgrad 39.971871 stepsize= 1.000000 +dualbound = 2655551.727213, lowerbound=1176400.727213, norm of subgrad 1085.271269 dualbound = 2655551.727213, lowerbound=1176400.727213, norm of subgrad 39.599877 stepsize= 1.000000 +dualbound = 2655722.556780, lowerbound=1179726.556780, norm of subgrad 1086.807507 dualbound = 2655722.556780, lowerbound=1179726.556780, norm of subgrad 39.935317 stepsize= 1.000000 +dualbound = 2655904.879195, lowerbound=1176832.879195, norm of subgrad 1085.480483 dualbound = 2655904.879195, lowerbound=1176832.879195, norm of subgrad 40.215947 stepsize= 1.000000 +dualbound = 2656042.537465, lowerbound=1175122.537465, norm of subgrad 1084.697441 dualbound = 2656042.537465, lowerbound=1175122.537465, norm of subgrad 39.795204 stepsize= 1.000000 +dualbound = 2656203.114104, lowerbound=1178770.114104, norm of subgrad 1086.390866 dualbound = 2656203.114104, lowerbound=1178770.114104, norm of subgrad 40.442263 stepsize= 1.000000 +dualbound = 2656392.143765, lowerbound=1176274.143765, norm of subgrad 1085.191294 dualbound = 2656392.143765, lowerbound=1176274.143765, norm of subgrad 39.433864 stepsize= 1.000000 +dualbound = 2656554.056961, lowerbound=1177746.056961, norm of subgrad 1085.892286 dualbound = 2656554.056961, lowerbound=1177746.056961, norm of subgrad 39.722956 stepsize= 1.000000 +dualbound = 2656691.383234, lowerbound=1179624.383234, norm of subgrad 1086.802366 dualbound = 2656691.383234, lowerbound=1179624.383234, norm of subgrad 40.648816 stepsize= 1.000000 +dualbound = 2656883.938860, lowerbound=1176802.938860, norm of subgrad 1085.454715 dualbound = 2656883.938860, lowerbound=1176802.938860, norm of subgrad 40.019441 stepsize= 1.000000 +dualbound = 2657029.767324, lowerbound=1178156.767324, norm of subgrad 1086.105321 dualbound = 2657029.767324, lowerbound=1178156.767324, norm of subgrad 40.172484 stepsize= 1.000000 +dualbound = 2657196.402176, lowerbound=1174714.402176, norm of subgrad 1084.544329 dualbound = 2657196.402176, lowerbound=1174714.402176, norm of subgrad 41.093002 stepsize= 1.000000 +dualbound = 2657363.166618, lowerbound=1182543.166618, norm of subgrad 1088.116339 dualbound = 2657363.166618, lowerbound=1182543.166618, norm of subgrad 40.258719 stepsize= 1.000000 +dualbound = 2657538.663645, lowerbound=1178733.663645, norm of subgrad 1086.370408 dualbound = 2657538.663645, lowerbound=1178733.663645, norm of subgrad 40.527732 stepsize= 1.000000 +dualbound = 2657690.529079, lowerbound=1176942.529079, norm of subgrad 1085.542505 dualbound = 2657690.529079, lowerbound=1176942.529079, norm of subgrad 40.148044 stepsize= 1.000000 +dualbound = 2657881.472302, lowerbound=1178083.472302, norm of subgrad 1086.077563 dualbound = 2657881.472302, lowerbound=1178083.472302, norm of subgrad 40.889402 stepsize= 1.000000 +dualbound = 2658050.327233, lowerbound=1177406.327233, norm of subgrad 1085.746438 dualbound = 2658050.327233, lowerbound=1177406.327233, norm of subgrad 40.098066 stepsize= 1.000000 +dualbound = 2658217.654431, lowerbound=1179919.654431, norm of subgrad 1086.903241 dualbound = 2658217.654431, lowerbound=1179919.654431, norm of subgrad 40.079012 stepsize= 1.000000 +dualbound = 2658368.016335, lowerbound=1179056.016335, norm of subgrad 1086.523362 dualbound = 2658368.016335, lowerbound=1179056.016335, norm of subgrad 40.340574 stepsize= 1.000000 +dualbound = 2658533.940181, lowerbound=1174606.940181, norm of subgrad 1084.460668 dualbound = 2658533.940181, lowerbound=1174606.940181, norm of subgrad 40.173671 stepsize= 1.000000 +dualbound = 2658718.828128, lowerbound=1179890.828128, norm of subgrad 1086.883999 dualbound = 2658718.828128, lowerbound=1179890.828128, norm of subgrad 40.135869 stepsize= 1.000000 +dualbound = 2658907.520701, lowerbound=1177254.520701, norm of subgrad 1085.665934 dualbound = 2658907.520701, lowerbound=1177254.520701, norm of subgrad 40.058614 stepsize= 1.000000 +dualbound = 2659065.903302, lowerbound=1178462.903302, norm of subgrad 1086.193308 dualbound = 2659065.903302, lowerbound=1178462.903302, norm of subgrad 38.876504 stepsize= 1.000000 +dualbound = 2659246.385475, lowerbound=1177773.385475, norm of subgrad 1085.894279 dualbound = 2659246.385475, lowerbound=1177773.385475, norm of subgrad 39.667142 stepsize= 1.000000 +dualbound = 2659395.929254, lowerbound=1180864.929254, norm of subgrad 1087.347658 dualbound = 2659395.929254, lowerbound=1180864.929254, norm of subgrad 40.119120 stepsize= 1.000000 +dualbound = 2659542.213250, lowerbound=1177374.213250, norm of subgrad 1085.740399 dualbound = 2659542.213250, lowerbound=1177374.213250, norm of subgrad 40.053514 stepsize= 1.000000 +dualbound = 2659701.880706, lowerbound=1178341.880706, norm of subgrad 1086.177187 dualbound = 2659701.880706, lowerbound=1178341.880706, norm of subgrad 39.983340 stepsize= 1.000000 +dualbound = 2659877.042409, lowerbound=1175356.042409, norm of subgrad 1084.829038 dualbound = 2659877.042409, lowerbound=1175356.042409, norm of subgrad 40.904299 stepsize= 1.000000 +dualbound = 2660038.524843, lowerbound=1181503.524843, norm of subgrad 1087.628395 dualbound = 2660038.524843, lowerbound=1181503.524843, norm of subgrad 39.918447 stepsize= 1.000000 +dualbound = 2660216.020073, lowerbound=1180497.020073, norm of subgrad 1087.159151 dualbound = 2660216.020073, lowerbound=1180497.020073, norm of subgrad 39.943651 stepsize= 1.000000 +dualbound = 2660392.317369, lowerbound=1175369.317369, norm of subgrad 1084.817642 dualbound = 2660392.317369, lowerbound=1175369.317369, norm of subgrad 40.451172 stepsize= 1.000000 +dualbound = 2660555.261365, lowerbound=1183691.261365, norm of subgrad 1088.644231 dualbound = 2660555.261365, lowerbound=1183691.261365, norm of subgrad 40.223675 stepsize= 1.000000 +dualbound = 2660712.784393, lowerbound=1180289.784393, norm of subgrad 1087.081315 dualbound = 2660712.784393, lowerbound=1180289.784393, norm of subgrad 40.168682 stepsize= 1.000000 +dualbound = 2660886.597636, lowerbound=1177273.597636, norm of subgrad 1085.653074 dualbound = 2660886.597636, lowerbound=1177273.597636, norm of subgrad 39.278661 stepsize= 1.000000 +dualbound = 2661063.349228, lowerbound=1175915.349228, norm of subgrad 1085.042556 dualbound = 2661063.349228, lowerbound=1175915.349228, norm of subgrad 39.733507 stepsize= 1.000000 +dualbound = 2661216.632742, lowerbound=1178074.632742, norm of subgrad 1086.056459 dualbound = 2661216.632742, lowerbound=1178074.632742, norm of subgrad 39.966030 stepsize= 1.000000 +dualbound = 2661372.784587, lowerbound=1175916.784587, norm of subgrad 1085.060729 dualbound = 2661372.784587, lowerbound=1175916.784587, norm of subgrad 39.951869 stepsize= 1.000000 +dualbound = 2661544.241887, lowerbound=1179118.241887, norm of subgrad 1086.531289 dualbound = 2661544.241887, lowerbound=1179118.241887, norm of subgrad 40.043193 stepsize= 1.000000 +dualbound = 2661727.004511, lowerbound=1178292.004511, norm of subgrad 1086.157449 dualbound = 2661727.004511, lowerbound=1178292.004511, norm of subgrad 40.357931 stepsize= 1.000000 +dualbound = 2661892.883478, lowerbound=1178899.883478, norm of subgrad 1086.440925 dualbound = 2661892.883478, lowerbound=1178899.883478, norm of subgrad 40.247720 stepsize= 1.000000 +dualbound = 2662037.780799, lowerbound=1178112.780799, norm of subgrad 1086.090595 dualbound = 2662037.780799, lowerbound=1178112.780799, norm of subgrad 40.310015 stepsize= 1.000000 +dualbound = 2662221.069783, lowerbound=1182988.069783, norm of subgrad 1088.317081 dualbound = 2662221.069783, lowerbound=1182988.069783, norm of subgrad 40.364452 stepsize= 1.000000 +dualbound = 2662377.811051, lowerbound=1174002.811051, norm of subgrad 1084.189933 dualbound = 2662377.811051, lowerbound=1174002.811051, norm of subgrad 40.270849 stepsize= 1.000000 +dualbound = 2662538.958065, lowerbound=1178684.958065, norm of subgrad 1086.374686 dualbound = 2662538.958065, lowerbound=1178684.958065, norm of subgrad 41.062720 stepsize= 1.000000 +dualbound = 2662714.625795, lowerbound=1176001.625795, norm of subgrad 1085.089225 dualbound = 2662714.625795, lowerbound=1176001.625795, norm of subgrad 39.908241 stepsize= 1.000000 +dualbound = 2662895.505734, lowerbound=1179231.505734, norm of subgrad 1086.575127 dualbound = 2662895.505734, lowerbound=1179231.505734, norm of subgrad 39.935948 stepsize= 1.000000 +dualbound = 2663055.259911, lowerbound=1176697.259911, norm of subgrad 1085.425843 dualbound = 2663055.259911, lowerbound=1176697.259911, norm of subgrad 40.146658 stepsize= 1.000000 +dualbound = 2663228.769792, lowerbound=1178430.769792, norm of subgrad 1086.219945 dualbound = 2663228.769792, lowerbound=1178430.769792, norm of subgrad 40.205844 stepsize= 1.000000 +dualbound = 2663355.871585, lowerbound=1178084.871585, norm of subgrad 1086.086954 dualbound = 2663355.871585, lowerbound=1178084.871585, norm of subgrad 40.337350 stepsize= 1.000000 +dualbound = 2663530.058231, lowerbound=1180298.058231, norm of subgrad 1087.106737 dualbound = 2663530.058231, lowerbound=1180298.058231, norm of subgrad 40.953469 stepsize= 1.000000 +dualbound = 2663705.615170, lowerbound=1176308.615170, norm of subgrad 1085.257396 dualbound = 2663705.615170, lowerbound=1176308.615170, norm of subgrad 40.627047 stepsize= 1.000000 +dualbound = 2663863.706451, lowerbound=1180401.706451, norm of subgrad 1087.123133 dualbound = 2663863.706451, lowerbound=1180401.706451, norm of subgrad 39.913548 stepsize= 1.000000 +dualbound = 2664048.014646, lowerbound=1181468.014646, norm of subgrad 1087.616667 dualbound = 2664048.014646, lowerbound=1181468.014646, norm of subgrad 40.327512 stepsize= 1.000000 +dualbound = 2664209.102110, lowerbound=1176589.102110, norm of subgrad 1085.369109 dualbound = 2664209.102110, lowerbound=1176589.102110, norm of subgrad 39.976086 stepsize= 1.000000 +dualbound = 2664352.832869, lowerbound=1180435.832869, norm of subgrad 1087.142048 dualbound = 2664352.832869, lowerbound=1180435.832869, norm of subgrad 39.821235 stepsize= 1.000000 +dualbound = 2664553.039611, lowerbound=1180345.039611, norm of subgrad 1087.091091 dualbound = 2664553.039611, lowerbound=1180345.039611, norm of subgrad 40.276628 stepsize= 1.000000 +dualbound = 2664709.279422, lowerbound=1175141.279422, norm of subgrad 1084.657217 dualbound = 2664709.279422, lowerbound=1175141.279422, norm of subgrad 38.681259 stepsize= 1.000000 +dualbound = 2664922.065487, lowerbound=1180656.065487, norm of subgrad 1087.224018 dualbound = 2664922.065487, lowerbound=1180656.065487, norm of subgrad 40.159508 stepsize= 1.000000 +dualbound = 2665035.649986, lowerbound=1174890.649986, norm of subgrad 1084.576254 dualbound = 2665035.649986, lowerbound=1174890.649986, norm of subgrad 39.097116 stepsize= 1.000000 +dualbound = 2665213.945227, lowerbound=1179681.945227, norm of subgrad 1086.779161 dualbound = 2665213.945227, lowerbound=1179681.945227, norm of subgrad 39.815766 stepsize= 1.000000 +dualbound = 2665372.846174, lowerbound=1177827.846174, norm of subgrad 1085.959873 dualbound = 2665372.846174, lowerbound=1177827.846174, norm of subgrad 40.495690 stepsize= 1.000000 +dualbound = 2665540.896451, lowerbound=1183214.896451, norm of subgrad 1088.429096 dualbound = 2665540.896451, lowerbound=1183214.896451, norm of subgrad 40.386263 stepsize= 1.000000 +dualbound = 2665693.511575, lowerbound=1173670.511575, norm of subgrad 1084.014996 dualbound = 2665693.511575, lowerbound=1173670.511575, norm of subgrad 39.630987 stepsize= 1.000000 +dualbound = 2665882.933383, lowerbound=1177596.933383, norm of subgrad 1085.856313 dualbound = 2665882.933383, lowerbound=1177596.933383, norm of subgrad 40.944130 stepsize= 1.000000 +dualbound = 2665997.831649, lowerbound=1182638.831649, norm of subgrad 1088.189704 dualbound = 2665997.831649, lowerbound=1182638.831649, norm of subgrad 40.409136 stepsize= 1.000000 +dualbound = 2666206.023105, lowerbound=1179454.023105, norm of subgrad 1086.683497 dualbound = 2666206.023105, lowerbound=1179454.023105, norm of subgrad 40.437501 stepsize= 1.000000 +dualbound = 2666377.558028, lowerbound=1179199.558028, norm of subgrad 1086.583894 dualbound = 2666377.558028, lowerbound=1179199.558028, norm of subgrad 40.454109 stepsize= 1.000000 +dualbound = 2666524.742932, lowerbound=1178859.742932, norm of subgrad 1086.424753 dualbound = 2666524.742932, lowerbound=1178859.742932, norm of subgrad 40.077237 stepsize= 1.000000 +dualbound = 2666704.425855, lowerbound=1177104.425855, norm of subgrad 1085.601412 dualbound = 2666704.425855, lowerbound=1177104.425855, norm of subgrad 40.070974 stepsize= 1.000000 +dualbound = 2666866.125756, lowerbound=1181451.125756, norm of subgrad 1087.605225 dualbound = 2666866.125756, lowerbound=1181451.125756, norm of subgrad 39.946213 stepsize= 1.000000 +dualbound = 2667009.428872, lowerbound=1174163.428872, norm of subgrad 1084.265848 dualbound = 2667009.428872, lowerbound=1174163.428872, norm of subgrad 40.153494 stepsize= 1.000000 +dualbound = 2667205.323991, lowerbound=1179976.323991, norm of subgrad 1086.930690 dualbound = 2667205.323991, lowerbound=1179976.323991, norm of subgrad 40.470917 stepsize= 1.000000 +dualbound = 2667379.075025, lowerbound=1180332.075025, norm of subgrad 1087.086968 dualbound = 2667379.075025, lowerbound=1180332.075025, norm of subgrad 39.996888 stepsize= 1.000000 +dualbound = 2667545.133699, lowerbound=1179614.133699, norm of subgrad 1086.751183 dualbound = 2667545.133699, lowerbound=1179614.133699, norm of subgrad 39.749952 stepsize= 1.000000 +dualbound = 2667722.348067, lowerbound=1179029.348067, norm of subgrad 1086.456786 dualbound = 2667722.348067, lowerbound=1179029.348067, norm of subgrad 39.194571 stepsize= 1.000000 +dualbound = 2667871.486600, lowerbound=1179810.486600, norm of subgrad 1086.892583 dualbound = 2667871.486600, lowerbound=1179810.486600, norm of subgrad 40.916238 stepsize= 1.000000 +dualbound = 2668011.481159, lowerbound=1182020.481159, norm of subgrad 1087.886704 dualbound = 2668011.481159, lowerbound=1182020.481159, norm of subgrad 40.211871 stepsize= 1.000000 +dualbound = 2668203.033218, lowerbound=1176893.033218, norm of subgrad 1085.498058 dualbound = 2668203.033218, lowerbound=1176893.033218, norm of subgrad 40.056860 stepsize= 1.000000 +dualbound = 2668340.535995, lowerbound=1181221.535995, norm of subgrad 1087.507948 dualbound = 2668340.535995, lowerbound=1181221.535995, norm of subgrad 39.868569 stepsize= 1.000000 +dualbound = 2668546.204182, lowerbound=1177166.204182, norm of subgrad 1085.648748 dualbound = 2668546.204182, lowerbound=1177166.204182, norm of subgrad 40.898266 stepsize= 1.000000 +dualbound = 2668684.606370, lowerbound=1178958.606370, norm of subgrad 1086.490040 dualbound = 2668684.606370, lowerbound=1178958.606370, norm of subgrad 40.501879 stepsize= 1.000000 +dualbound = 2668852.496778, lowerbound=1176905.496778, norm of subgrad 1085.522684 dualbound = 2668852.496778, lowerbound=1176905.496778, norm of subgrad 40.272701 stepsize= 1.000000 +dualbound = 2669025.316643, lowerbound=1177657.316643, norm of subgrad 1085.868462 dualbound = 2669025.316643, lowerbound=1177657.316643, norm of subgrad 40.321457 stepsize= 1.000000 +dualbound = 2669215.573156, lowerbound=1179089.573156, norm of subgrad 1086.505211 dualbound = 2669215.573156, lowerbound=1179089.573156, norm of subgrad 39.928142 stepsize= 1.000000 +dualbound = 2669381.506862, lowerbound=1178743.506862, norm of subgrad 1086.337658 dualbound = 2669381.506862, lowerbound=1178743.506862, norm of subgrad 39.394590 stepsize= 1.000000 +dualbound = 2669537.944304, lowerbound=1173598.944304, norm of subgrad 1083.983369 dualbound = 2669537.944304, lowerbound=1173598.944304, norm of subgrad 39.716967 stepsize= 1.000000 +dualbound = 2669698.557338, lowerbound=1180568.557338, norm of subgrad 1087.209528 dualbound = 2669698.557338, lowerbound=1180568.557338, norm of subgrad 40.207127 stepsize= 1.000000 +dualbound = 2669859.022219, lowerbound=1176913.022219, norm of subgrad 1085.545956 dualbound = 2669859.022219, lowerbound=1176913.022219, norm of subgrad 40.711975 stepsize= 1.000000 +dualbound = 2669992.792267, lowerbound=1184708.792267, norm of subgrad 1089.114683 dualbound = 2669992.792267, lowerbound=1184708.792267, norm of subgrad 39.947091 stepsize= 1.000000 +dualbound = 2670194.806767, lowerbound=1179801.806767, norm of subgrad 1086.824644 dualbound = 2670194.806767, lowerbound=1179801.806767, norm of subgrad 39.849900 stepsize= 1.000000 +dualbound = 2670357.768968, lowerbound=1179019.768968, norm of subgrad 1086.455599 dualbound = 2670357.768968, lowerbound=1179019.768968, norm of subgrad 39.101946 stepsize= 1.000000 +dualbound = 2670551.752892, lowerbound=1178992.752892, norm of subgrad 1086.482744 dualbound = 2670551.752892, lowerbound=1178992.752892, norm of subgrad 40.570727 stepsize= 1.000000 +dualbound = 2670649.024888, lowerbound=1180332.024888, norm of subgrad 1087.092004 dualbound = 2670649.024888, lowerbound=1180332.024888, norm of subgrad 39.169784 stepsize= 1.000000 +dualbound = 2670866.535501, lowerbound=1184256.535501, norm of subgrad 1088.878109 dualbound = 2670866.535501, lowerbound=1184256.535501, norm of subgrad 40.205853 stepsize= 1.000000 +dualbound = 2671011.960637, lowerbound=1177965.960637, norm of subgrad 1085.999521 dualbound = 2671011.960637, lowerbound=1177965.960637, norm of subgrad 39.679026 stepsize= 1.000000 +dualbound = 2671182.256238, lowerbound=1180046.256238, norm of subgrad 1086.980798 dualbound = 2671182.256238, lowerbound=1180046.256238, norm of subgrad 40.636137 stepsize= 1.000000 +dualbound = 2671304.601362, lowerbound=1180602.601362, norm of subgrad 1087.261975 dualbound = 2671304.601362, lowerbound=1180602.601362, norm of subgrad 40.722784 stepsize= 1.000000 +dualbound = 2671487.364052, lowerbound=1179891.364052, norm of subgrad 1086.908167 dualbound = 2671487.364052, lowerbound=1179891.364052, norm of subgrad 40.752456 stepsize= 1.000000 +dualbound = 2671671.932463, lowerbound=1179484.932463, norm of subgrad 1086.734527 dualbound = 2671671.932463, lowerbound=1179484.932463, norm of subgrad 41.128681 stepsize= 1.000000 +dualbound = 2671788.967892, lowerbound=1180082.967892, norm of subgrad 1087.030344 dualbound = 2671788.967892, lowerbound=1180082.967892, norm of subgrad 40.853830 stepsize= 1.000000 +dualbound = 2671992.302985, lowerbound=1178724.302985, norm of subgrad 1086.351832 dualbound = 2671992.302985, lowerbound=1178724.302985, norm of subgrad 40.488703 stepsize= 1.000000 +dualbound = 2672179.007727, lowerbound=1178151.007727, norm of subgrad 1086.049266 dualbound = 2672179.007727, lowerbound=1178151.007727, norm of subgrad 39.226327 stepsize= 1.000000 +dualbound = 2672362.250690, lowerbound=1175234.250690, norm of subgrad 1084.728192 dualbound = 2672362.250690, lowerbound=1175234.250690, norm of subgrad 39.802550 stepsize= 1.000000 +dualbound = 2672496.121878, lowerbound=1179887.121878, norm of subgrad 1086.882294 dualbound = 2672496.121878, lowerbound=1179887.121878, norm of subgrad 39.495205 stepsize= 1.000000 +dualbound = 2672679.031332, lowerbound=1179384.031332, norm of subgrad 1086.631967 dualbound = 2672679.031332, lowerbound=1179384.031332, norm of subgrad 39.596836 stepsize= 1.000000 +dualbound = 2672853.257551, lowerbound=1177563.257551, norm of subgrad 1085.796140 dualbound = 2672853.257551, lowerbound=1177563.257551, norm of subgrad 39.550300 stepsize= 1.000000 +dualbound = 2673007.867620, lowerbound=1179964.867620, norm of subgrad 1086.938760 dualbound = 2673007.867620, lowerbound=1179964.867620, norm of subgrad 40.318855 stepsize= 1.000000 +dualbound = 2673144.553494, lowerbound=1178443.553494, norm of subgrad 1086.226290 dualbound = 2673144.553494, lowerbound=1178443.553494, norm of subgrad 39.757840 stepsize= 1.000000 +dualbound = 2673345.861010, lowerbound=1183601.861010, norm of subgrad 1088.599955 dualbound = 2673345.861010, lowerbound=1183601.861010, norm of subgrad 40.611667 stepsize= 1.000000 +dualbound = 2673481.462281, lowerbound=1181538.462281, norm of subgrad 1087.643996 dualbound = 2673481.462281, lowerbound=1181538.462281, norm of subgrad 39.580314 stepsize= 1.000000 +dualbound = 2673682.408502, lowerbound=1175708.408502, norm of subgrad 1084.947652 dualbound = 2673682.408502, lowerbound=1175708.408502, norm of subgrad 40.049297 stepsize= 1.000000 +dualbound = 2673824.141907, lowerbound=1180849.141907, norm of subgrad 1087.340398 dualbound = 2673824.141907, lowerbound=1180849.141907, norm of subgrad 40.021662 stepsize= 1.000000 +dualbound = 2673975.490300, lowerbound=1184670.490300, norm of subgrad 1089.096640 dualbound = 2673975.490300, lowerbound=1184670.490300, norm of subgrad 40.154058 stepsize= 1.000000 +dualbound = 2674142.069770, lowerbound=1177674.069770, norm of subgrad 1085.863744 dualbound = 2674142.069770, lowerbound=1177674.069770, norm of subgrad 39.907136 stepsize= 1.000000 +dualbound = 2674330.165752, lowerbound=1179472.165752, norm of subgrad 1086.672520 dualbound = 2674330.165752, lowerbound=1179472.165752, norm of subgrad 39.662274 stepsize= 1.000000 +dualbound = 2674497.676331, lowerbound=1175012.676331, norm of subgrad 1084.625593 dualbound = 2674497.676331, lowerbound=1175012.676331, norm of subgrad 39.591799 stepsize= 1.000000 +dualbound = 2674642.902377, lowerbound=1181242.902377, norm of subgrad 1087.499840 dualbound = 2674642.902377, lowerbound=1181242.902377, norm of subgrad 39.474372 stepsize= 1.000000 +dualbound = 2674802.179558, lowerbound=1179632.179558, norm of subgrad 1086.756725 dualbound = 2674802.179558, lowerbound=1179632.179558, norm of subgrad 39.588852 stepsize= 1.000000 +dualbound = 2674978.556412, lowerbound=1181416.556412, norm of subgrad 1087.592091 dualbound = 2674978.556412, lowerbound=1181416.556412, norm of subgrad 40.204190 stepsize= 1.000000 +dualbound = 2675176.679190, lowerbound=1174014.679190, norm of subgrad 1084.168197 dualbound = 2675176.679190, lowerbound=1174014.679190, norm of subgrad 40.051502 stepsize= 1.000000 +dualbound = 2675288.698997, lowerbound=1180202.698997, norm of subgrad 1087.070236 dualbound = 2675288.698997, lowerbound=1180202.698997, norm of subgrad 40.385886 stepsize= 1.000000 +dualbound = 2675441.200612, lowerbound=1181449.200612, norm of subgrad 1087.633302 dualbound = 2675441.200612, lowerbound=1181449.200612, norm of subgrad 40.614057 stepsize= 1.000000 +dualbound = 2675636.208904, lowerbound=1176103.208904, norm of subgrad 1085.135572 dualbound = 2675636.208904, lowerbound=1176103.208904, norm of subgrad 40.137368 stepsize= 1.000000 +dualbound = 2675790.779845, lowerbound=1182207.779845, norm of subgrad 1087.971406 dualbound = 2675790.779845, lowerbound=1182207.779845, norm of subgrad 40.355557 stepsize= 1.000000 +dualbound = 2675938.032567, lowerbound=1181892.032567, norm of subgrad 1087.845133 dualbound = 2675938.032567, lowerbound=1181892.032567, norm of subgrad 40.770734 stepsize= 1.000000 +dualbound = 2676102.014224, lowerbound=1178162.014224, norm of subgrad 1086.097608 dualbound = 2676102.014224, lowerbound=1178162.014224, norm of subgrad 40.124577 stepsize= 1.000000 +dualbound = 2676298.709868, lowerbound=1181420.709868, norm of subgrad 1087.612849 dualbound = 2676298.709868, lowerbound=1181420.709868, norm of subgrad 40.959683 stepsize= 1.000000 +dualbound = 2676448.938536, lowerbound=1179745.938536, norm of subgrad 1086.811823 dualbound = 2676448.938536, lowerbound=1179745.938536, norm of subgrad 39.550331 stepsize= 1.000000 +dualbound = 2676623.353417, lowerbound=1181883.353417, norm of subgrad 1087.814025 dualbound = 2676623.353417, lowerbound=1181883.353417, norm of subgrad 40.378396 stepsize= 1.000000 +dualbound = 2676787.157778, lowerbound=1176458.157778, norm of subgrad 1085.330437 dualbound = 2676787.157778, lowerbound=1176458.157778, norm of subgrad 40.593157 stepsize= 1.000000 +dualbound = 2676933.537806, lowerbound=1179062.537806, norm of subgrad 1086.528664 dualbound = 2676933.537806, lowerbound=1179062.537806, norm of subgrad 40.353191 stepsize= 1.000000 +dualbound = 2677107.425786, lowerbound=1182404.425786, norm of subgrad 1088.035122 dualbound = 2677107.425786, lowerbound=1182404.425786, norm of subgrad 39.873399 stepsize= 1.000000 +dualbound = 2677281.382995, lowerbound=1179270.382995, norm of subgrad 1086.593016 dualbound = 2677281.382995, lowerbound=1179270.382995, norm of subgrad 39.849181 stepsize= 1.000000 +dualbound = 2677444.664113, lowerbound=1177913.664113, norm of subgrad 1086.004910 dualbound = 2677444.664113, lowerbound=1177913.664113, norm of subgrad 40.697434 stepsize= 1.000000 +dualbound = 2677581.269768, lowerbound=1180883.269768, norm of subgrad 1087.374944 dualbound = 2677581.269768, lowerbound=1180883.269768, norm of subgrad 40.467341 stepsize= 1.000000 +dualbound = 2677798.954855, lowerbound=1175515.954855, norm of subgrad 1084.830381 dualbound = 2677798.954855, lowerbound=1175515.954855, norm of subgrad 39.480186 stepsize= 1.000000 +dualbound = 2677956.955255, lowerbound=1183498.955255, norm of subgrad 1088.515023 dualbound = 2677956.955255, lowerbound=1183498.955255, norm of subgrad 39.038448 stepsize= 1.000000 +dualbound = 2678124.384698, lowerbound=1181873.384698, norm of subgrad 1087.763019 dualbound = 2678124.384698, lowerbound=1181873.384698, norm of subgrad 39.018322 stepsize= 1.000000 +dualbound = 2678322.691710, lowerbound=1178806.691710, norm of subgrad 1086.352011 dualbound = 2678322.691710, lowerbound=1178806.691710, norm of subgrad 39.399328 stepsize= 1.000000 +dualbound = 2678444.422723, lowerbound=1183205.422723, norm of subgrad 1088.400856 dualbound = 2678444.422723, lowerbound=1183205.422723, norm of subgrad 39.150109 stepsize= 1.000000 +dualbound = 2678611.115568, lowerbound=1179634.115568, norm of subgrad 1086.782920 dualbound = 2678611.115568, lowerbound=1179634.115568, norm of subgrad 40.369454 stepsize= 1.000000 +dualbound = 2678780.133467, lowerbound=1178267.133467, norm of subgrad 1086.117458 dualbound = 2678780.133467, lowerbound=1178267.133467, norm of subgrad 39.408348 stepsize= 1.000000 +dualbound = 2678950.604102, lowerbound=1180771.604102, norm of subgrad 1087.273013 dualbound = 2678950.604102, lowerbound=1180771.604102, norm of subgrad 39.515448 stepsize= 1.000000 +dualbound = 2679107.217030, lowerbound=1178505.217030, norm of subgrad 1086.245928 dualbound = 2679107.217030, lowerbound=1178505.217030, norm of subgrad 39.769497 stepsize= 1.000000 +dualbound = 2679255.029165, lowerbound=1173530.029165, norm of subgrad 1083.951581 dualbound = 2679255.029165, lowerbound=1173530.029165, norm of subgrad 39.608233 stepsize= 1.000000 +dualbound = 2679450.625794, lowerbound=1181580.625794, norm of subgrad 1087.663839 dualbound = 2679450.625794, lowerbound=1181580.625794, norm of subgrad 40.343483 stepsize= 1.000000 +dualbound = 2679590.804361, lowerbound=1178019.804361, norm of subgrad 1086.028915 dualbound = 2679590.804361, lowerbound=1178019.804361, norm of subgrad 39.738880 stepsize= 1.000000 +dualbound = 2679759.993065, lowerbound=1181694.993065, norm of subgrad 1087.762839 dualbound = 2679759.993065, lowerbound=1181694.993065, norm of subgrad 41.257590 stepsize= 1.000000 +dualbound = 2679906.524829, lowerbound=1181123.524829, norm of subgrad 1087.485873 dualbound = 2679906.524829, lowerbound=1181123.524829, norm of subgrad 40.602115 stepsize= 1.000000 +dualbound = 2680097.222844, lowerbound=1181788.222844, norm of subgrad 1087.760646 dualbound = 2680097.222844, lowerbound=1181788.222844, norm of subgrad 40.319946 stepsize= 1.000000 +dualbound = 2680244.379457, lowerbound=1178353.379457, norm of subgrad 1086.182940 dualbound = 2680244.379457, lowerbound=1178353.379457, norm of subgrad 39.839134 stepsize= 1.000000 +dualbound = 2680409.398726, lowerbound=1177596.398726, norm of subgrad 1085.858830 dualbound = 2680409.398726, lowerbound=1177596.398726, norm of subgrad 40.718783 stepsize= 1.000000 +dualbound = 2680547.931677, lowerbound=1180854.931677, norm of subgrad 1087.354557 dualbound = 2680547.931677, lowerbound=1180854.931677, norm of subgrad 40.293088 stepsize= 1.000000 +dualbound = 2680743.580070, lowerbound=1182331.580070, norm of subgrad 1088.006241 dualbound = 2680743.580070, lowerbound=1182331.580070, norm of subgrad 40.269696 stepsize= 1.000000 +dualbound = 2680900.620532, lowerbound=1179089.620532, norm of subgrad 1086.524560 dualbound = 2680900.620532, lowerbound=1179089.620532, norm of subgrad 40.037988 stepsize= 1.000000 +dualbound = 2681105.341854, lowerbound=1183017.341854, norm of subgrad 1088.305261 dualbound = 2681105.341854, lowerbound=1183017.341854, norm of subgrad 39.946481 stepsize= 1.000000 +dualbound = 2681229.367650, lowerbound=1179313.367650, norm of subgrad 1086.622459 dualbound = 2681229.367650, lowerbound=1179313.367650, norm of subgrad 39.484501 stepsize= 1.000000 +dualbound = 2681422.625350, lowerbound=1177447.625350, norm of subgrad 1085.755325 dualbound = 2681422.625350, lowerbound=1177447.625350, norm of subgrad 40.128016 stepsize= 1.000000 +dualbound = 2681548.201164, lowerbound=1179130.201164, norm of subgrad 1086.519766 dualbound = 2681548.201164, lowerbound=1179130.201164, norm of subgrad 38.994561 stepsize= 1.000000 +dualbound = 2681761.118694, lowerbound=1180280.118694, norm of subgrad 1087.063990 dualbound = 2681761.118694, lowerbound=1180280.118694, norm of subgrad 40.508240 stepsize= 1.000000 +dualbound = 2681866.594807, lowerbound=1178216.594807, norm of subgrad 1086.140688 dualbound = 2681866.594807, lowerbound=1178216.594807, norm of subgrad 39.880774 stepsize= 1.000000 +dualbound = 2682047.032864, lowerbound=1183525.032864, norm of subgrad 1088.585336 dualbound = 2682047.032864, lowerbound=1183525.032864, norm of subgrad 40.907677 stepsize= 1.000000 +dualbound = 2682217.190292, lowerbound=1178836.190292, norm of subgrad 1086.423578 dualbound = 2682217.190292, lowerbound=1178836.190292, norm of subgrad 40.622130 stepsize= 1.000000 +dualbound = 2682383.793870, lowerbound=1180626.793870, norm of subgrad 1087.215155 dualbound = 2682383.793870, lowerbound=1180626.793870, norm of subgrad 39.706468 stepsize= 1.000000 +dualbound = 2682569.882832, lowerbound=1178561.882832, norm of subgrad 1086.277075 dualbound = 2682569.882832, lowerbound=1178561.882832, norm of subgrad 40.275166 stepsize= 1.000000 +dualbound = 2682733.070960, lowerbound=1180240.070960, norm of subgrad 1087.025331 dualbound = 2682733.070960, lowerbound=1180240.070960, norm of subgrad 39.334312 stepsize= 1.000000 +dualbound = 2682893.682056, lowerbound=1180308.682056, norm of subgrad 1087.073448 dualbound = 2682893.682056, lowerbound=1180308.682056, norm of subgrad 39.756900 stepsize= 1.000000 +dualbound = 2683036.270762, lowerbound=1182289.270762, norm of subgrad 1087.989095 dualbound = 2683036.270762, lowerbound=1182289.270762, norm of subgrad 39.668485 stepsize= 1.000000 +dualbound = 2683187.106538, lowerbound=1180993.106538, norm of subgrad 1087.399700 dualbound = 2683187.106538, lowerbound=1180993.106538, norm of subgrad 39.947913 stepsize= 1.000000 +dualbound = 2683373.734419, lowerbound=1181870.734419, norm of subgrad 1087.832586 dualbound = 2683373.734419, lowerbound=1181870.734419, norm of subgrad 41.178002 stepsize= 1.000000 +dualbound = 2683515.380770, lowerbound=1177444.380770, norm of subgrad 1085.761659 dualbound = 2683515.380770, lowerbound=1177444.380770, norm of subgrad 39.694412 stepsize= 1.000000 +dualbound = 2683708.201340, lowerbound=1184859.201340, norm of subgrad 1089.140120 dualbound = 2683708.201340, lowerbound=1184859.201340, norm of subgrad 39.494564 stepsize= 1.000000 +dualbound = 2683870.442593, lowerbound=1174973.442593, norm of subgrad 1084.618570 dualbound = 2683870.442593, lowerbound=1174973.442593, norm of subgrad 39.827644 stepsize= 1.000000 +dualbound = 2684009.408550, lowerbound=1184885.408550, norm of subgrad 1089.204025 dualbound = 2684009.408550, lowerbound=1184885.408550, norm of subgrad 40.236376 stepsize= 1.000000 +dualbound = 2684180.053762, lowerbound=1178300.053762, norm of subgrad 1086.193838 dualbound = 2684180.053762, lowerbound=1178300.053762, norm of subgrad 41.080959 stepsize= 1.000000 +dualbound = 2684328.068094, lowerbound=1181467.068094, norm of subgrad 1087.620829 dualbound = 2684328.068094, lowerbound=1181467.068094, norm of subgrad 40.000179 stepsize= 1.000000 +dualbound = 2684498.560324, lowerbound=1178135.560324, norm of subgrad 1086.078524 dualbound = 2684498.560324, lowerbound=1178135.560324, norm of subgrad 40.018649 stepsize= 1.000000 +dualbound = 2684698.975443, lowerbound=1178257.975443, norm of subgrad 1086.129815 dualbound = 2684698.975443, lowerbound=1178257.975443, norm of subgrad 40.254380 stepsize= 1.000000 +dualbound = 2684838.919298, lowerbound=1179624.919298, norm of subgrad 1086.765807 dualbound = 2684838.919298, lowerbound=1179624.919298, norm of subgrad 39.685562 stepsize= 1.000000 +dualbound = 2684980.891377, lowerbound=1183160.891377, norm of subgrad 1088.412556 dualbound = 2684980.891377, lowerbound=1183160.891377, norm of subgrad 40.286128 stepsize= 1.000000 +dualbound = 2685171.600731, lowerbound=1182803.600731, norm of subgrad 1088.225437 dualbound = 2685171.600731, lowerbound=1182803.600731, norm of subgrad 40.270453 stepsize= 1.000000 +dualbound = 2685339.243219, lowerbound=1178261.243219, norm of subgrad 1086.098174 dualbound = 2685339.243219, lowerbound=1178261.243219, norm of subgrad 38.931253 stepsize= 1.000000 +dualbound = 2685527.677585, lowerbound=1176502.677585, norm of subgrad 1085.294282 dualbound = 2685527.677585, lowerbound=1176502.677585, norm of subgrad 39.362855 stepsize= 1.000000 +dualbound = 2685671.441351, lowerbound=1179491.441351, norm of subgrad 1086.694272 dualbound = 2685671.441351, lowerbound=1179491.441351, norm of subgrad 39.455846 stepsize= 1.000000 +dualbound = 2685818.557788, lowerbound=1184503.557788, norm of subgrad 1089.021835 dualbound = 2685818.557788, lowerbound=1184503.557788, norm of subgrad 40.151170 stepsize= 1.000000 +dualbound = 2685976.366973, lowerbound=1183346.366973, norm of subgrad 1088.483058 dualbound = 2685976.366973, lowerbound=1183346.366973, norm of subgrad 40.085024 stepsize= 1.000000 +dualbound = 2686148.550505, lowerbound=1179321.550505, norm of subgrad 1086.624843 dualbound = 2686148.550505, lowerbound=1179321.550505, norm of subgrad 40.052260 stepsize= 1.000000 +dualbound = 2686303.378394, lowerbound=1181832.378394, norm of subgrad 1087.796570 dualbound = 2686303.378394, lowerbound=1181832.378394, norm of subgrad 40.296748 stepsize= 1.000000 +dualbound = 2686436.696452, lowerbound=1178653.696452, norm of subgrad 1086.337745 dualbound = 2686436.696452, lowerbound=1178653.696452, norm of subgrad 40.116307 stepsize= 1.000000 +dualbound = 2686633.598418, lowerbound=1179449.598418, norm of subgrad 1086.698025 dualbound = 2686633.598418, lowerbound=1179449.598418, norm of subgrad 40.741894 stepsize= 1.000000 +dualbound = 2686793.239018, lowerbound=1182337.239018, norm of subgrad 1088.021249 dualbound = 2686793.239018, lowerbound=1182337.239018, norm of subgrad 40.157697 stepsize= 1.000000 +dualbound = 2686958.417687, lowerbound=1182036.417687, norm of subgrad 1087.879321 dualbound = 2686958.417687, lowerbound=1182036.417687, norm of subgrad 40.127032 stepsize= 1.000000 +dualbound = 2687130.215909, lowerbound=1180204.215909, norm of subgrad 1087.039657 dualbound = 2687130.215909, lowerbound=1180204.215909, norm of subgrad 40.283970 stepsize= 1.000000 +dualbound = 2687275.134435, lowerbound=1176330.134435, norm of subgrad 1085.261321 dualbound = 2687275.134435, lowerbound=1176330.134435, norm of subgrad 40.086388 stepsize= 1.000000 +dualbound = 2687470.671376, lowerbound=1178995.671376, norm of subgrad 1086.489149 dualbound = 2687470.671376, lowerbound=1178995.671376, norm of subgrad 40.725139 stepsize= 1.000000 +dualbound = 2687595.132269, lowerbound=1178490.132269, norm of subgrad 1086.267523 dualbound = 2687595.132269, lowerbound=1178490.132269, norm of subgrad 40.143006 stepsize= 1.000000 +dualbound = 2687768.868608, lowerbound=1178800.868608, norm of subgrad 1086.403640 dualbound = 2687768.868608, lowerbound=1178800.868608, norm of subgrad 40.567676 stepsize= 1.000000 +dualbound = 2687944.268993, lowerbound=1183393.268993, norm of subgrad 1088.503684 dualbound = 2687944.268993, lowerbound=1183393.268993, norm of subgrad 40.279032 stepsize= 1.000000 +dualbound = 2688086.759831, lowerbound=1181701.759831, norm of subgrad 1087.744345 dualbound = 2688086.759831, lowerbound=1181701.759831, norm of subgrad 40.354564 stepsize= 1.000000 +dualbound = 2688271.806982, lowerbound=1177031.806982, norm of subgrad 1085.568886 dualbound = 2688271.806982, lowerbound=1177031.806982, norm of subgrad 40.162758 stepsize= 1.000000 +dualbound = 2688450.470441, lowerbound=1180697.470441, norm of subgrad 1087.248118 dualbound = 2688450.470441, lowerbound=1180697.470441, norm of subgrad 39.870584 stepsize= 1.000000 +dualbound = 2688623.695041, lowerbound=1177753.695041, norm of subgrad 1085.887054 dualbound = 2688623.695041, lowerbound=1177753.695041, norm of subgrad 39.626060 stepsize= 1.000000 +dualbound = 2688775.709480, lowerbound=1182601.709480, norm of subgrad 1088.151051 dualbound = 2688775.709480, lowerbound=1182601.709480, norm of subgrad 40.286653 stepsize= 1.000000 +dualbound = 2688932.741263, lowerbound=1181551.741263, norm of subgrad 1087.681820 dualbound = 2688932.741263, lowerbound=1181551.741263, norm of subgrad 40.706655 stepsize= 1.000000 +dualbound = 2689080.519070, lowerbound=1179412.519070, norm of subgrad 1086.646916 dualbound = 2689080.519070, lowerbound=1179412.519070, norm of subgrad 39.201758 stepsize= 1.000000 +dualbound = 2689286.193132, lowerbound=1176637.193132, norm of subgrad 1085.385735 dualbound = 2689286.193132, lowerbound=1176637.193132, norm of subgrad 40.381605 stepsize= 1.000000 +dualbound = 2689407.209938, lowerbound=1179489.209938, norm of subgrad 1086.724073 dualbound = 2689407.209938, lowerbound=1179489.209938, norm of subgrad 40.012708 stepsize= 1.000000 +dualbound = 2689571.624547, lowerbound=1186663.624547, norm of subgrad 1090.031937 dualbound = 2689571.624547, lowerbound=1186663.624547, norm of subgrad 40.870706 stepsize= 1.000000 +dualbound = 2689725.190291, lowerbound=1178802.190291, norm of subgrad 1086.412072 dualbound = 2689725.190291, lowerbound=1178802.190291, norm of subgrad 40.528579 stepsize= 1.000000 +dualbound = 2689887.710264, lowerbound=1180490.710264, norm of subgrad 1087.172806 dualbound = 2689887.710264, lowerbound=1180490.710264, norm of subgrad 40.205969 stepsize= 1.000000 +dualbound = 2690101.247276, lowerbound=1180732.247276, norm of subgrad 1087.259053 dualbound = 2690101.247276, lowerbound=1180732.247276, norm of subgrad 40.168856 stepsize= 1.000000 +dualbound = 2690235.918681, lowerbound=1180678.918681, norm of subgrad 1087.279595 dualbound = 2690235.918681, lowerbound=1180678.918681, norm of subgrad 40.406329 stepsize= 1.000000 +dualbound = 2690380.090788, lowerbound=1181600.090788, norm of subgrad 1087.712780 dualbound = 2690380.090788, lowerbound=1181600.090788, norm of subgrad 40.782007 stepsize= 1.000000 +dualbound = 2690574.114960, lowerbound=1178602.114960, norm of subgrad 1086.326891 dualbound = 2690574.114960, lowerbound=1178602.114960, norm of subgrad 41.207089 stepsize= 1.000000 +dualbound = 2690724.525795, lowerbound=1181474.525795, norm of subgrad 1087.600352 dualbound = 2690724.525795, lowerbound=1181474.525795, norm of subgrad 39.375257 stepsize= 1.000000 +dualbound = 2690927.747646, lowerbound=1181702.747646, norm of subgrad 1087.736065 dualbound = 2690927.747646, lowerbound=1181702.747646, norm of subgrad 40.868348 stepsize= 1.000000 +dualbound = 2691059.179117, lowerbound=1179795.179117, norm of subgrad 1086.846438 dualbound = 2691059.179117, lowerbound=1179795.179117, norm of subgrad 39.641285 stepsize= 1.000000 +dualbound = 2691243.450134, lowerbound=1179527.450134, norm of subgrad 1086.702558 dualbound = 2691243.450134, lowerbound=1179527.450134, norm of subgrad 39.740043 stepsize= 1.000000 +dualbound = 2691401.988192, lowerbound=1179638.988192, norm of subgrad 1086.761238 dualbound = 2691401.988192, lowerbound=1179638.988192, norm of subgrad 39.617396 stepsize= 1.000000 +dualbound = 2691551.169767, lowerbound=1176580.169767, norm of subgrad 1085.392634 dualbound = 2691551.169767, lowerbound=1176580.169767, norm of subgrad 40.573163 stepsize= 1.000000 +dualbound = 2691711.120940, lowerbound=1181388.120940, norm of subgrad 1087.570743 dualbound = 2691711.120940, lowerbound=1181388.120940, norm of subgrad 39.773750 stepsize= 1.000000 +dualbound = 2691895.023580, lowerbound=1182566.023580, norm of subgrad 1088.074916 dualbound = 2691895.023580, lowerbound=1182566.023580, norm of subgrad 39.050002 stepsize= 1.000000 +dualbound = 2692076.924065, lowerbound=1179303.924065, norm of subgrad 1086.600168 dualbound = 2692076.924065, lowerbound=1179303.924065, norm of subgrad 39.722796 stepsize= 1.000000 +dualbound = 2692201.176250, lowerbound=1186132.176250, norm of subgrad 1089.791804 dualbound = 2692201.176250, lowerbound=1186132.176250, norm of subgrad 40.475328 stepsize= 1.000000 +dualbound = 2692334.813224, lowerbound=1178050.813224, norm of subgrad 1086.078640 dualbound = 2692334.813224, lowerbound=1178050.813224, norm of subgrad 40.615723 stepsize= 1.000000 +dualbound = 2692544.737817, lowerbound=1181657.737817, norm of subgrad 1087.682278 dualbound = 2692544.737817, lowerbound=1181657.737817, norm of subgrad 40.061510 stepsize= 1.000000 +dualbound = 2692695.300263, lowerbound=1177287.300263, norm of subgrad 1085.695307 dualbound = 2692695.300263, lowerbound=1177287.300263, norm of subgrad 39.969519 stepsize= 1.000000 +dualbound = 2692863.087272, lowerbound=1186172.087272, norm of subgrad 1089.766988 dualbound = 2692863.087272, lowerbound=1186172.087272, norm of subgrad 39.847045 stepsize= 1.000000 +dualbound = 2693025.557863, lowerbound=1180493.557863, norm of subgrad 1087.173656 dualbound = 2693025.557863, lowerbound=1180493.557863, norm of subgrad 40.192917 stepsize= 1.000000 +dualbound = 2693187.642818, lowerbound=1180668.642818, norm of subgrad 1087.229342 dualbound = 2693187.642818, lowerbound=1180668.642818, norm of subgrad 39.510568 stepsize= 1.000000 +dualbound = 2693358.580730, lowerbound=1178220.580730, norm of subgrad 1086.097408 dualbound = 2693358.580730, lowerbound=1178220.580730, norm of subgrad 39.470722 stepsize= 1.000000 +dualbound = 2693533.110559, lowerbound=1179522.110559, norm of subgrad 1086.709764 dualbound = 2693533.110559, lowerbound=1179522.110559, norm of subgrad 39.881447 stepsize= 1.000000 +dualbound = 2693663.935688, lowerbound=1182534.935688, norm of subgrad 1088.096014 dualbound = 2693663.935688, lowerbound=1182534.935688, norm of subgrad 39.355116 stepsize= 1.000000 +dualbound = 2693852.917490, lowerbound=1184790.917490, norm of subgrad 1089.126217 dualbound = 2693852.917490, lowerbound=1184790.917490, norm of subgrad 39.924702 stepsize= 1.000000 +dualbound = 2693984.877608, lowerbound=1178435.877608, norm of subgrad 1086.233344 dualbound = 2693984.877608, lowerbound=1178435.877608, norm of subgrad 39.986999 stepsize= 1.000000 +dualbound = 2694166.475414, lowerbound=1179243.475414, norm of subgrad 1086.581555 dualbound = 2694166.475414, lowerbound=1179243.475414, norm of subgrad 39.969961 stepsize= 1.000000 +dualbound = 2694339.526557, lowerbound=1179444.526557, norm of subgrad 1086.661183 dualbound = 2694339.526557, lowerbound=1179444.526557, norm of subgrad 39.510140 stepsize= 1.000000 +dualbound = 2694507.094545, lowerbound=1185081.094545, norm of subgrad 1089.279622 dualbound = 2694507.094545, lowerbound=1185081.094545, norm of subgrad 40.206566 stepsize= 1.000000 +dualbound = 2694649.165130, lowerbound=1182678.165130, norm of subgrad 1088.186181 dualbound = 2694649.165130, lowerbound=1182678.165130, norm of subgrad 40.163050 stepsize= 1.000000 +dualbound = 2694795.747153, lowerbound=1180545.747153, norm of subgrad 1087.221572 dualbound = 2694795.747153, lowerbound=1180545.747153, norm of subgrad 40.639661 stepsize= 1.000000 +dualbound = 2694973.832129, lowerbound=1177683.832129, norm of subgrad 1085.910140 dualbound = 2694973.832129, lowerbound=1177683.832129, norm of subgrad 41.171410 stepsize= 1.000000 +dualbound = 2695112.612859, lowerbound=1180507.612859, norm of subgrad 1087.195297 dualbound = 2695112.612859, lowerbound=1180507.612859, norm of subgrad 40.308569 stepsize= 1.000000 +dualbound = 2695293.592074, lowerbound=1179414.592074, norm of subgrad 1086.678238 dualbound = 2695293.592074, lowerbound=1179414.592074, norm of subgrad 40.447240 stepsize= 1.000000 +dualbound = 2695483.740392, lowerbound=1177168.740392, norm of subgrad 1085.652679 dualbound = 2695483.740392, lowerbound=1177168.740392, norm of subgrad 40.781715 stepsize= 1.000000 +dualbound = 2695619.015734, lowerbound=1182144.015734, norm of subgrad 1087.921879 dualbound = 2695619.015734, lowerbound=1182144.015734, norm of subgrad 39.563561 stepsize= 1.000000 +dualbound = 2695808.613332, lowerbound=1178938.613332, norm of subgrad 1086.422852 dualbound = 2695808.613332, lowerbound=1178938.613332, norm of subgrad 39.567633 stepsize= 1.000000 +dualbound = 2695963.556170, lowerbound=1179265.556170, norm of subgrad 1086.590335 dualbound = 2695963.556170, lowerbound=1179265.556170, norm of subgrad 39.597258 stepsize= 1.000000 +dualbound = 2696139.396771, lowerbound=1176632.396771, norm of subgrad 1085.369705 dualbound = 2696139.396771, lowerbound=1176632.396771, norm of subgrad 39.633832 stepsize= 1.000000 +dualbound = 2696300.549045, lowerbound=1185789.549045, norm of subgrad 1089.595590 dualbound = 2696300.549045, lowerbound=1185789.549045, norm of subgrad 39.876713 stepsize= 1.000000 +dualbound = 2696439.808359, lowerbound=1183874.808359, norm of subgrad 1088.717047 dualbound = 2696439.808359, lowerbound=1183874.808359, norm of subgrad 39.613878 stepsize= 1.000000 +dualbound = 2696635.023382, lowerbound=1182371.023382, norm of subgrad 1088.032639 dualbound = 2696635.023382, lowerbound=1182371.023382, norm of subgrad 40.487220 stepsize= 1.000000 +dualbound = 2696774.746972, lowerbound=1184592.746972, norm of subgrad 1089.035237 dualbound = 2696774.746972, lowerbound=1184592.746972, norm of subgrad 39.302972 stepsize= 1.000000 +dualbound = 2696940.337508, lowerbound=1178810.337508, norm of subgrad 1086.435611 dualbound = 2696940.337508, lowerbound=1178810.337508, norm of subgrad 41.201827 stepsize= 1.000000 +dualbound = 2697076.836365, lowerbound=1177764.836365, norm of subgrad 1085.914286 dualbound = 2697076.836365, lowerbound=1177764.836365, norm of subgrad 39.768063 stepsize= 1.000000 +dualbound = 2697287.543926, lowerbound=1184311.543926, norm of subgrad 1088.943315 dualbound = 2697287.543926, lowerbound=1184311.543926, norm of subgrad 41.191110 stepsize= 1.000000 +dualbound = 2697432.211548, lowerbound=1180630.211548, norm of subgrad 1087.255357 dualbound = 2697432.211548, lowerbound=1180630.211548, norm of subgrad 40.480460 stepsize= 1.000000 +dualbound = 2697575.148789, lowerbound=1179139.148789, norm of subgrad 1086.561157 dualbound = 2697575.148789, lowerbound=1179139.148789, norm of subgrad 40.236019 stepsize= 1.000000 +dualbound = 2697765.758364, lowerbound=1181362.758364, norm of subgrad 1087.554025 dualbound = 2697765.758364, lowerbound=1181362.758364, norm of subgrad 40.020115 stepsize= 1.000000 +dualbound = 2697933.029291, lowerbound=1180508.029291, norm of subgrad 1087.161455 dualbound = 2697933.029291, lowerbound=1180508.029291, norm of subgrad 39.740042 stepsize= 1.000000 +dualbound = 2698086.141642, lowerbound=1182192.141642, norm of subgrad 1087.957785 dualbound = 2698086.141642, lowerbound=1182192.141642, norm of subgrad 40.163570 stepsize= 1.000000 +dualbound = 2698235.571957, lowerbound=1181136.571957, norm of subgrad 1087.456469 dualbound = 2698235.571957, lowerbound=1181136.571957, norm of subgrad 39.679092 stepsize= 1.000000 +dualbound = 2698438.227153, lowerbound=1177785.227153, norm of subgrad 1085.901573 dualbound = 2698438.227153, lowerbound=1177785.227153, norm of subgrad 39.995690 stepsize= 1.000000 +dualbound = 2698577.440859, lowerbound=1180874.440859, norm of subgrad 1087.347893 dualbound = 2698577.440859, lowerbound=1180874.440859, norm of subgrad 39.877484 stepsize= 1.000000 +dualbound = 2698735.809854, lowerbound=1180662.809854, norm of subgrad 1087.271268 dualbound = 2698735.809854, lowerbound=1180662.809854, norm of subgrad 40.673935 stepsize= 1.000000 +dualbound = 2698904.691160, lowerbound=1181256.691160, norm of subgrad 1087.497444 dualbound = 2698904.691160, lowerbound=1181256.691160, norm of subgrad 39.533294 stepsize= 1.000000 +dualbound = 2699078.586403, lowerbound=1182768.586403, norm of subgrad 1088.211186 dualbound = 2699078.586403, lowerbound=1182768.586403, norm of subgrad 40.111036 stepsize= 1.000000 +dualbound = 2699241.814465, lowerbound=1184060.814465, norm of subgrad 1088.795121 dualbound = 2699241.814465, lowerbound=1184060.814465, norm of subgrad 39.714331 stepsize= 1.000000 +dualbound = 2699389.264202, lowerbound=1181015.264202, norm of subgrad 1087.424602 dualbound = 2699389.264202, lowerbound=1181015.264202, norm of subgrad 40.304463 stepsize= 1.000000 +dualbound = 2699536.579687, lowerbound=1182951.579687, norm of subgrad 1088.277345 dualbound = 2699536.579687, lowerbound=1182951.579687, norm of subgrad 39.285054 stepsize= 1.000000 +dualbound = 2699716.785101, lowerbound=1176076.785101, norm of subgrad 1085.128004 dualbound = 2699716.785101, lowerbound=1176076.785101, norm of subgrad 40.077493 stepsize= 1.000000 +dualbound = 2699901.167666, lowerbound=1181162.167666, norm of subgrad 1087.458582 dualbound = 2699901.167666, lowerbound=1181162.167666, norm of subgrad 39.854517 stepsize= 1.000000 +dualbound = 2700061.231074, lowerbound=1179284.231074, norm of subgrad 1086.606291 dualbound = 2700061.231074, lowerbound=1179284.231074, norm of subgrad 39.863058 stepsize= 1.000000 +dualbound = 2700208.695773, lowerbound=1179665.695773, norm of subgrad 1086.796069 dualbound = 2700208.695773, lowerbound=1179665.695773, norm of subgrad 40.093200 stepsize= 1.000000 +dualbound = 2700375.039704, lowerbound=1182695.039704, norm of subgrad 1088.167285 dualbound = 2700375.039704, lowerbound=1182695.039704, norm of subgrad 39.740960 stepsize= 1.000000 +dualbound = 2700532.404497, lowerbound=1185614.404497, norm of subgrad 1089.531736 dualbound = 2700532.404497, lowerbound=1185614.404497, norm of subgrad 40.278590 stepsize= 1.000000 +dualbound = 2700678.812780, lowerbound=1182557.812780, norm of subgrad 1088.165343 dualbound = 2700678.812780, lowerbound=1182557.812780, norm of subgrad 41.138890 stepsize= 1.000000 +dualbound = 2700823.930635, lowerbound=1182917.930635, norm of subgrad 1088.305991 dualbound = 2700823.930635, lowerbound=1182917.930635, norm of subgrad 40.461313 stepsize= 1.000000 +dualbound = 2701011.067996, lowerbound=1179544.067996, norm of subgrad 1086.725388 dualbound = 2701011.067996, lowerbound=1179544.067996, norm of subgrad 40.188772 stepsize= 1.000000 +dualbound = 2701196.509837, lowerbound=1181811.509837, norm of subgrad 1087.747448 dualbound = 2701196.509837, lowerbound=1181811.509837, norm of subgrad 39.603558 stepsize= 1.000000 +dualbound = 2701352.664302, lowerbound=1180431.664302, norm of subgrad 1087.155308 dualbound = 2701352.664302, lowerbound=1180431.664302, norm of subgrad 40.387553 stepsize= 1.000000 +dualbound = 2701520.745107, lowerbound=1181814.745107, norm of subgrad 1087.767781 dualbound = 2701520.745107, lowerbound=1181814.745107, norm of subgrad 39.900887 stepsize= 1.000000 +dualbound = 2701685.760679, lowerbound=1180649.760679, norm of subgrad 1087.199044 dualbound = 2701685.760679, lowerbound=1180649.760679, norm of subgrad 38.948884 stepsize= 1.000000 +dualbound = 2701862.262174, lowerbound=1181934.262174, norm of subgrad 1087.813524 dualbound = 2701862.262174, lowerbound=1181934.262174, norm of subgrad 39.755522 stepsize= 1.000000 +dualbound = 2701999.865352, lowerbound=1178233.865352, norm of subgrad 1086.152321 dualbound = 2701999.865352, lowerbound=1178233.865352, norm of subgrad 40.380728 stepsize= 1.000000 +dualbound = 2702156.745925, lowerbound=1178224.745925, norm of subgrad 1086.103930 dualbound = 2702156.745925, lowerbound=1178224.745925, norm of subgrad 39.419292 stepsize= 1.000000 +dualbound = 2702369.163329, lowerbound=1179234.163329, norm of subgrad 1086.560704 dualbound = 2702369.163329, lowerbound=1179234.163329, norm of subgrad 39.905105 stepsize= 1.000000 +dualbound = 2702504.642499, lowerbound=1186537.642499, norm of subgrad 1089.972771 dualbound = 2702504.642499, lowerbound=1186537.642499, norm of subgrad 40.478132 stepsize= 1.000000 +dualbound = 2702639.201258, lowerbound=1179294.201258, norm of subgrad 1086.651371 dualbound = 2702639.201258, lowerbound=1179294.201258, norm of subgrad 40.639375 stepsize= 1.000000 +dualbound = 2702820.919514, lowerbound=1183069.919514, norm of subgrad 1088.350550 dualbound = 2702820.919514, lowerbound=1183069.919514, norm of subgrad 40.233298 stepsize= 1.000000 +dualbound = 2702986.831810, lowerbound=1179817.831810, norm of subgrad 1086.848578 dualbound = 2702986.831810, lowerbound=1179817.831810, norm of subgrad 39.848617 stepsize= 1.000000 +dualbound = 2703171.359391, lowerbound=1182067.359391, norm of subgrad 1087.886648 dualbound = 2703171.359391, lowerbound=1182067.359391, norm of subgrad 40.181184 stepsize= 1.000000 +dualbound = 2703317.414727, lowerbound=1181081.414727, norm of subgrad 1087.455937 dualbound = 2703317.414727, lowerbound=1181081.414727, norm of subgrad 40.311975 stepsize= 1.000000 +dualbound = 2703472.180633, lowerbound=1181399.180633, norm of subgrad 1087.573989 dualbound = 2703472.180633, lowerbound=1181399.180633, norm of subgrad 39.658113 stepsize= 1.000000 +dualbound = 2703656.621294, lowerbound=1181706.621294, norm of subgrad 1087.706588 dualbound = 2703656.621294, lowerbound=1181706.621294, norm of subgrad 39.792470 stepsize= 1.000000 +dualbound = 2703807.665287, lowerbound=1183528.665287, norm of subgrad 1088.538316 dualbound = 2703807.665287, lowerbound=1183528.665287, norm of subgrad 39.217904 stepsize= 1.000000 +dualbound = 2703974.822945, lowerbound=1181136.822945, norm of subgrad 1087.454285 dualbound = 2703974.822945, lowerbound=1181136.822945, norm of subgrad 39.839147 stepsize= 1.000000 +dualbound = 2704115.647289, lowerbound=1184876.647289, norm of subgrad 1089.216070 dualbound = 2704115.647289, lowerbound=1184876.647289, norm of subgrad 40.691822 stepsize= 1.000000 +dualbound = 2704278.745763, lowerbound=1179398.745763, norm of subgrad 1086.667726 dualbound = 2704278.745763, lowerbound=1179398.745763, norm of subgrad 40.138491 stepsize= 1.000000 +dualbound = 2704442.146167, lowerbound=1178554.146167, norm of subgrad 1086.276275 dualbound = 2704442.146167, lowerbound=1178554.146167, norm of subgrad 40.067448 stepsize= 1.000000 +dualbound = 2704606.132250, lowerbound=1178679.132250, norm of subgrad 1086.328740 dualbound = 2704606.132250, lowerbound=1178679.132250, norm of subgrad 39.937277 stepsize= 1.000000 +dualbound = 2704809.181921, lowerbound=1180478.181921, norm of subgrad 1087.148188 dualbound = 2704809.181921, lowerbound=1180478.181921, norm of subgrad 40.200120 stepsize= 1.000000 +dualbound = 2704956.459941, lowerbound=1183438.459941, norm of subgrad 1088.508824 dualbound = 2704956.459941, lowerbound=1183438.459941, norm of subgrad 39.500355 stepsize= 1.000000 +dualbound = 2705126.611927, lowerbound=1180966.611927, norm of subgrad 1087.373722 dualbound = 2705126.611927, lowerbound=1180966.611927, norm of subgrad 39.813967 stepsize= 1.000000 +dualbound = 2705277.865092, lowerbound=1179440.865092, norm of subgrad 1086.707810 dualbound = 2705277.865092, lowerbound=1179440.865092, norm of subgrad 40.549392 stepsize= 1.000000 +dualbound = 2705416.258885, lowerbound=1186313.258885, norm of subgrad 1089.851026 dualbound = 2705416.258885, lowerbound=1186313.258885, norm of subgrad 40.004922 stepsize= 1.000000 +dualbound = 2705603.193288, lowerbound=1182895.193288, norm of subgrad 1088.255574 dualbound = 2705603.193288, lowerbound=1182895.193288, norm of subgrad 39.899053 stepsize= 1.000000 +dualbound = 2705780.072445, lowerbound=1181803.072445, norm of subgrad 1087.762415 dualbound = 2705780.072445, lowerbound=1181803.072445, norm of subgrad 40.010988 stepsize= 1.000000 +dualbound = 2705919.639605, lowerbound=1179519.639605, norm of subgrad 1086.724270 dualbound = 2705919.639605, lowerbound=1179519.639605, norm of subgrad 39.869376 stepsize= 1.000000 +dualbound = 2706083.690126, lowerbound=1183619.690126, norm of subgrad 1088.611818 dualbound = 2706083.690126, lowerbound=1183619.690126, norm of subgrad 40.249851 stepsize= 1.000000 +dualbound = 2706259.938759, lowerbound=1180172.938759, norm of subgrad 1087.012391 dualbound = 2706259.938759, lowerbound=1180172.938759, norm of subgrad 39.990607 stepsize= 1.000000 +dualbound = 2706416.734944, lowerbound=1181447.734944, norm of subgrad 1087.579760 dualbound = 2706416.734944, lowerbound=1181447.734944, norm of subgrad 39.227493 stepsize= 1.000000 +dualbound = 2706587.454905, lowerbound=1182696.454905, norm of subgrad 1088.179882 dualbound = 2706587.454905, lowerbound=1182696.454905, norm of subgrad 40.121316 stepsize= 1.000000 +dualbound = 2706744.287350, lowerbound=1181784.287350, norm of subgrad 1087.745966 dualbound = 2706744.287350, lowerbound=1181784.287350, norm of subgrad 39.545321 stepsize= 1.000000 +dualbound = 2706911.551460, lowerbound=1180654.551460, norm of subgrad 1087.221022 dualbound = 2706911.551460, lowerbound=1180654.551460, norm of subgrad 39.525487 stepsize= 1.000000 +dualbound = 2707051.609414, lowerbound=1183798.609414, norm of subgrad 1088.715119 dualbound = 2707051.609414, lowerbound=1183798.609414, norm of subgrad 40.522314 stepsize= 1.000000 +dualbound = 2707219.193561, lowerbound=1177993.193561, norm of subgrad 1086.025871 dualbound = 2707219.193561, lowerbound=1177993.193561, norm of subgrad 40.330933 stepsize= 1.000000 +dualbound = 2707384.062541, lowerbound=1183320.062541, norm of subgrad 1088.465462 dualbound = 2707384.062541, lowerbound=1183320.062541, norm of subgrad 40.023355 stepsize= 1.000000 +dualbound = 2707543.771101, lowerbound=1180770.771101, norm of subgrad 1087.312177 dualbound = 2707543.771101, lowerbound=1180770.771101, norm of subgrad 40.456255 stepsize= 1.000000 +dualbound = 2707695.774378, lowerbound=1182024.774378, norm of subgrad 1087.875808 dualbound = 2707695.774378, lowerbound=1182024.774378, norm of subgrad 40.012539 stepsize= 1.000000 +dualbound = 2707893.429827, lowerbound=1181058.429827, norm of subgrad 1087.415941 dualbound = 2707893.429827, lowerbound=1181058.429827, norm of subgrad 40.157882 stepsize= 1.000000 +dualbound = 2708045.320197, lowerbound=1177197.320197, norm of subgrad 1085.652025 dualbound = 2708045.320197, lowerbound=1177197.320197, norm of subgrad 39.936079 stepsize= 1.000000 +dualbound = 2708217.488943, lowerbound=1188206.488943, norm of subgrad 1090.710085 dualbound = 2708217.488943, lowerbound=1188206.488943, norm of subgrad 40.176719 stepsize= 1.000000 +dualbound = 2708360.995695, lowerbound=1179665.995695, norm of subgrad 1086.780105 dualbound = 2708360.995695, lowerbound=1179665.995695, norm of subgrad 39.604378 stepsize= 1.000000 +dualbound = 2708542.391472, lowerbound=1181761.391472, norm of subgrad 1087.750151 dualbound = 2708542.391472, lowerbound=1181761.391472, norm of subgrad 40.254140 stepsize= 1.000000 +dualbound = 2708699.136480, lowerbound=1180802.136480, norm of subgrad 1087.308667 dualbound = 2708699.136480, lowerbound=1180802.136480, norm of subgrad 39.934259 stepsize= 1.000000 +dualbound = 2708851.746246, lowerbound=1181674.746246, norm of subgrad 1087.719976 dualbound = 2708851.746246, lowerbound=1181674.746246, norm of subgrad 40.157313 stepsize= 1.000000 +dualbound = 2709024.841769, lowerbound=1179997.841769, norm of subgrad 1086.948408 dualbound = 2709024.841769, lowerbound=1179997.841769, norm of subgrad 40.399202 stepsize= 1.000000 +dualbound = 2709181.225262, lowerbound=1182228.225262, norm of subgrad 1087.975287 dualbound = 2709181.225262, lowerbound=1182228.225262, norm of subgrad 40.229137 stepsize= 1.000000 +dualbound = 2709346.939017, lowerbound=1186757.939017, norm of subgrad 1090.059145 dualbound = 2709346.939017, lowerbound=1186757.939017, norm of subgrad 40.456319 stepsize= 1.000000 +dualbound = 2709505.632446, lowerbound=1183331.632446, norm of subgrad 1088.471236 dualbound = 2709505.632446, lowerbound=1183331.632446, norm of subgrad 39.958646 stepsize= 1.000000 +dualbound = 2709663.041146, lowerbound=1178932.041146, norm of subgrad 1086.460327 dualbound = 2709663.041146, lowerbound=1178932.041146, norm of subgrad 40.266720 stepsize= 1.000000 +dualbound = 2709828.173931, lowerbound=1181948.173931, norm of subgrad 1087.853471 dualbound = 2709828.173931, lowerbound=1181948.173931, norm of subgrad 40.523238 stepsize= 1.000000 +dualbound = 2709975.782536, lowerbound=1180443.782536, norm of subgrad 1087.188016 dualbound = 2709975.782536, lowerbound=1180443.782536, norm of subgrad 41.007421 stepsize= 1.000000 +dualbound = 2710169.731915, lowerbound=1182061.731915, norm of subgrad 1087.890956 dualbound = 2710169.731915, lowerbound=1182061.731915, norm of subgrad 40.483940 stepsize= 1.000000 +dualbound = 2710297.689599, lowerbound=1178783.689599, norm of subgrad 1086.427489 dualbound = 2710297.689599, lowerbound=1178783.689599, norm of subgrad 40.852879 stepsize= 1.000000 +dualbound = 2710475.272570, lowerbound=1184178.272570, norm of subgrad 1088.857324 dualbound = 2710475.272570, lowerbound=1184178.272570, norm of subgrad 40.119608 stepsize= 1.000000 +dualbound = 2710665.418058, lowerbound=1185766.418058, norm of subgrad 1089.595530 dualbound = 2710665.418058, lowerbound=1185766.418058, norm of subgrad 40.523394 stepsize= 1.000000 +dualbound = 2710805.412390, lowerbound=1182650.412390, norm of subgrad 1088.183538 dualbound = 2710805.412390, lowerbound=1182650.412390, norm of subgrad 40.410325 stepsize= 1.000000 +dualbound = 2710977.140813, lowerbound=1182392.140813, norm of subgrad 1088.056129 dualbound = 2710977.140813, lowerbound=1182392.140813, norm of subgrad 40.567578 stepsize= 1.000000 +dualbound = 2711129.413794, lowerbound=1180086.413794, norm of subgrad 1086.969371 dualbound = 2711129.413794, lowerbound=1180086.413794, norm of subgrad 39.601426 stepsize= 1.000000 +dualbound = 2711309.883465, lowerbound=1179814.883465, norm of subgrad 1086.868844 dualbound = 2711309.883465, lowerbound=1179814.883465, norm of subgrad 40.613664 stepsize= 1.000000 +dualbound = 2711442.406270, lowerbound=1182269.406270, norm of subgrad 1087.999727 dualbound = 2711442.406270, lowerbound=1182269.406270, norm of subgrad 40.081452 stepsize= 1.000000 +dualbound = 2711642.701673, lowerbound=1183038.701673, norm of subgrad 1088.326560 dualbound = 2711642.701673, lowerbound=1183038.701673, norm of subgrad 40.203177 stepsize= 1.000000 +dualbound = 2711792.680309, lowerbound=1180536.680309, norm of subgrad 1087.179231 dualbound = 2711792.680309, lowerbound=1180536.680309, norm of subgrad 39.648186 stepsize= 1.000000 +dualbound = 2711949.414747, lowerbound=1183914.414747, norm of subgrad 1088.743043 dualbound = 2711949.414747, lowerbound=1183914.414747, norm of subgrad 40.046653 stepsize= 1.000000 +dualbound = 2712125.327963, lowerbound=1179638.327963, norm of subgrad 1086.778877 dualbound = 2712125.327963, lowerbound=1179638.327963, norm of subgrad 40.322614 stepsize= 1.000000 +dualbound = 2712261.355773, lowerbound=1180996.355773, norm of subgrad 1087.395676 dualbound = 2712261.355773, lowerbound=1180996.355773, norm of subgrad 39.610956 stepsize= 1.000000 +dualbound = 2712456.463127, lowerbound=1180826.463127, norm of subgrad 1087.298240 dualbound = 2712456.463127, lowerbound=1180826.463127, norm of subgrad 39.825963 stepsize= 1.000000 +dualbound = 2712591.110965, lowerbound=1183777.110965, norm of subgrad 1088.691467 dualbound = 2712591.110965, lowerbound=1183777.110965, norm of subgrad 40.083012 stepsize= 1.000000 +dualbound = 2712755.274655, lowerbound=1182231.274655, norm of subgrad 1087.992314 dualbound = 2712755.274655, lowerbound=1182231.274655, norm of subgrad 40.745106 stepsize= 1.000000 +dualbound = 2712908.548422, lowerbound=1182472.548422, norm of subgrad 1088.076536 dualbound = 2712908.548422, lowerbound=1182472.548422, norm of subgrad 39.890773 stepsize= 1.000000 +dualbound = 2713096.931621, lowerbound=1182484.931621, norm of subgrad 1088.041328 dualbound = 2713096.931621, lowerbound=1182484.931621, norm of subgrad 39.209478 stepsize= 1.000000 +dualbound = 2713251.633535, lowerbound=1184146.633535, norm of subgrad 1088.838204 dualbound = 2713251.633535, lowerbound=1184146.633535, norm of subgrad 39.707706 stepsize= 1.000000 +dualbound = 2713418.892695, lowerbound=1180429.892695, norm of subgrad 1087.129658 dualbound = 2713418.892695, lowerbound=1180429.892695, norm of subgrad 39.852969 stepsize= 1.000000 +dualbound = 2713566.472114, lowerbound=1179638.472114, norm of subgrad 1086.772502 dualbound = 2713566.472114, lowerbound=1179638.472114, norm of subgrad 39.794213 stepsize= 1.000000 +dualbound = 2713733.378218, lowerbound=1179553.378218, norm of subgrad 1086.782121 dualbound = 2713733.378218, lowerbound=1179553.378218, norm of subgrad 41.338918 stepsize= 1.000000 +dualbound = 2713850.896008, lowerbound=1184923.896008, norm of subgrad 1089.210676 dualbound = 2713850.896008, lowerbound=1184923.896008, norm of subgrad 39.667591 stepsize= 1.000000 +dualbound = 2714063.786930, lowerbound=1183706.786930, norm of subgrad 1088.641257 dualbound = 2714063.786930, lowerbound=1183706.786930, norm of subgrad 40.569581 stepsize= 1.000000 +dualbound = 2714227.885311, lowerbound=1186945.885311, norm of subgrad 1090.145809 dualbound = 2714227.885311, lowerbound=1186945.885311, norm of subgrad 40.448713 stepsize= 1.000000 +dualbound = 2714361.274060, lowerbound=1180697.274060, norm of subgrad 1087.272401 dualbound = 2714361.274060, lowerbound=1180697.274060, norm of subgrad 39.967346 stepsize= 1.000000 +dualbound = 2714530.112734, lowerbound=1184418.112734, norm of subgrad 1088.976176 dualbound = 2714530.112734, lowerbound=1184418.112734, norm of subgrad 40.247219 stepsize= 1.000000 +dualbound = 2714701.395720, lowerbound=1180931.395720, norm of subgrad 1087.375922 dualbound = 2714701.395720, lowerbound=1180931.395720, norm of subgrad 40.327199 stepsize= 1.000000 +dualbound = 2714857.752413, lowerbound=1176229.752413, norm of subgrad 1085.223365 dualbound = 2714857.752413, lowerbound=1176229.752413, norm of subgrad 40.451906 stepsize= 1.000000 +dualbound = 2715017.397358, lowerbound=1186053.397358, norm of subgrad 1089.738224 dualbound = 2715017.397358, lowerbound=1186053.397358, norm of subgrad 40.443108 stepsize= 1.000000 +dualbound = 2715175.221436, lowerbound=1182221.221436, norm of subgrad 1087.984017 dualbound = 2715175.221436, lowerbound=1182221.221436, norm of subgrad 40.568757 stepsize= 1.000000 +dualbound = 2715343.906092, lowerbound=1182050.906092, norm of subgrad 1087.885521 dualbound = 2715343.906092, lowerbound=1182050.906092, norm of subgrad 40.158245 stepsize= 1.000000 +dualbound = 2715527.039331, lowerbound=1181559.039331, norm of subgrad 1087.651617 dualbound = 2715527.039331, lowerbound=1181559.039331, norm of subgrad 40.126466 stepsize= 1.000000 +dualbound = 2715702.348534, lowerbound=1185742.348534, norm of subgrad 1089.580354 dualbound = 2715702.348534, lowerbound=1185742.348534, norm of subgrad 40.228214 stepsize= 1.000000 +dualbound = 2715814.160426, lowerbound=1181797.160426, norm of subgrad 1087.743610 dualbound = 2715814.160426, lowerbound=1181797.160426, norm of subgrad 38.740314 stepsize= 1.000000 +dualbound = 2716020.919896, lowerbound=1183445.919896, norm of subgrad 1088.520519 dualbound = 2716020.919896, lowerbound=1183445.919896, norm of subgrad 40.469241 stepsize= 1.000000 +dualbound = 2716139.823117, lowerbound=1181660.823117, norm of subgrad 1087.717253 dualbound = 2716139.823117, lowerbound=1181660.823117, norm of subgrad 39.835954 stepsize= 1.000000 +dualbound = 2716290.672738, lowerbound=1177381.672738, norm of subgrad 1085.752123 dualbound = 2716290.672738, lowerbound=1177381.672738, norm of subgrad 40.334224 stepsize= 1.000000 +dualbound = 2716492.877189, lowerbound=1187245.877189, norm of subgrad 1090.268718 dualbound = 2716492.877189, lowerbound=1187245.877189, norm of subgrad 40.524122 stepsize= 1.000000 +dualbound = 2716643.357906, lowerbound=1181996.357906, norm of subgrad 1087.865505 dualbound = 2716643.357906, lowerbound=1181996.357906, norm of subgrad 40.068450 stepsize= 1.000000 +dualbound = 2716779.583717, lowerbound=1181092.583717, norm of subgrad 1087.442221 dualbound = 2716779.583717, lowerbound=1181092.583717, norm of subgrad 39.676515 stepsize= 1.000000 +dualbound = 2716957.298695, lowerbound=1178898.298695, norm of subgrad 1086.443417 dualbound = 2716957.298695, lowerbound=1178898.298695, norm of subgrad 40.481045 stepsize= 1.000000 +dualbound = 2717114.889553, lowerbound=1184190.889553, norm of subgrad 1088.854393 dualbound = 2717114.889553, lowerbound=1184190.889553, norm of subgrad 39.630681 stepsize= 1.000000 +dualbound = 2717274.271946, lowerbound=1184017.271946, norm of subgrad 1088.802678 dualbound = 2717274.271946, lowerbound=1184017.271946, norm of subgrad 40.415126 stepsize= 1.000000 +dualbound = 2717430.937588, lowerbound=1181855.937588, norm of subgrad 1087.795448 dualbound = 2717430.937588, lowerbound=1181855.937588, norm of subgrad 39.995820 stepsize= 1.000000 +dualbound = 2717578.767685, lowerbound=1183669.767685, norm of subgrad 1088.649975 dualbound = 2717578.767685, lowerbound=1183669.767685, norm of subgrad 40.457757 stepsize= 1.000000 +dualbound = 2717758.138232, lowerbound=1186902.138232, norm of subgrad 1090.110150 dualbound = 2717758.138232, lowerbound=1186902.138232, norm of subgrad 40.216546 stepsize= 1.000000 +dualbound = 2717930.902354, lowerbound=1184979.902354, norm of subgrad 1089.239598 dualbound = 2717930.902354, lowerbound=1184979.902354, norm of subgrad 40.444581 stepsize= 1.000000 +dualbound = 2718076.545888, lowerbound=1181115.545888, norm of subgrad 1087.432548 dualbound = 2718076.545888, lowerbound=1181115.545888, norm of subgrad 39.238292 stepsize= 1.000000 +dualbound = 2718255.224752, lowerbound=1182037.224752, norm of subgrad 1087.870960 dualbound = 2718255.224752, lowerbound=1182037.224752, norm of subgrad 40.058443 stepsize= 1.000000 +dualbound = 2718391.078608, lowerbound=1183888.078608, norm of subgrad 1088.718090 dualbound = 2718391.078608, lowerbound=1183888.078608, norm of subgrad 39.431635 stepsize= 1.000000 +dualbound = 2718574.821785, lowerbound=1182124.821785, norm of subgrad 1087.941093 dualbound = 2718574.821785, lowerbound=1182124.821785, norm of subgrad 40.923626 stepsize= 1.000000 +dualbound = 2718716.202025, lowerbound=1183596.202025, norm of subgrad 1088.615727 dualbound = 2718716.202025, lowerbound=1183596.202025, norm of subgrad 40.365582 stepsize= 1.000000 +dualbound = 2718888.102931, lowerbound=1183500.102931, norm of subgrad 1088.575263 dualbound = 2718888.102931, lowerbound=1183500.102931, norm of subgrad 40.839943 stepsize= 1.000000 +dualbound = 2719045.903676, lowerbound=1184023.903676, norm of subgrad 1088.792406 dualbound = 2719045.903676, lowerbound=1184023.903676, norm of subgrad 40.034994 stepsize= 1.000000 +dualbound = 2719219.543582, lowerbound=1178567.543582, norm of subgrad 1086.281982 dualbound = 2719219.543582, lowerbound=1178567.543582, norm of subgrad 40.182582 stepsize= 1.000000 +dualbound = 2719375.073447, lowerbound=1183360.073447, norm of subgrad 1088.516915 dualbound = 2719375.073447, lowerbound=1183360.073447, norm of subgrad 40.798650 stepsize= 1.000000 +dualbound = 2719531.699656, lowerbound=1182172.699656, norm of subgrad 1087.948390 dualbound = 2719531.699656, lowerbound=1182172.699656, norm of subgrad 40.194853 stepsize= 1.000000 +dualbound = 2719709.203349, lowerbound=1180677.203349, norm of subgrad 1087.232359 dualbound = 2719709.203349, lowerbound=1180677.203349, norm of subgrad 39.680016 stepsize= 1.000000 +dualbound = 2719890.464543, lowerbound=1179803.464543, norm of subgrad 1086.844269 dualbound = 2719890.464543, lowerbound=1179803.464543, norm of subgrad 40.103132 stepsize= 1.000000 +dualbound = 2720019.554867, lowerbound=1180475.554867, norm of subgrad 1087.168595 dualbound = 2720019.554867, lowerbound=1180475.554867, norm of subgrad 39.863396 stepsize= 1.000000 +dualbound = 2720199.683955, lowerbound=1183411.683955, norm of subgrad 1088.520870 dualbound = 2720199.683955, lowerbound=1183411.683955, norm of subgrad 40.572516 stepsize= 1.000000 +dualbound = 2720338.375939, lowerbound=1182335.375939, norm of subgrad 1087.993739 dualbound = 2720338.375939, lowerbound=1182335.375939, norm of subgrad 39.162380 stepsize= 1.000000 +dualbound = 2720515.901719, lowerbound=1184158.901719, norm of subgrad 1088.850725 dualbound = 2720515.901719, lowerbound=1184158.901719, norm of subgrad 40.181162 stepsize= 1.000000 +dualbound = 2720671.736979, lowerbound=1185562.736979, norm of subgrad 1089.493799 dualbound = 2720671.736979, lowerbound=1185562.736979, norm of subgrad 39.872738 stepsize= 1.000000 +dualbound = 2720832.798000, lowerbound=1183918.798000, norm of subgrad 1088.782255 dualbound = 2720832.798000, lowerbound=1183918.798000, norm of subgrad 41.098188 stepsize= 1.000000 +dualbound = 2720976.579471, lowerbound=1183079.579471, norm of subgrad 1088.378877 dualbound = 2720976.579471, lowerbound=1183079.579471, norm of subgrad 40.407691 stepsize= 1.000000 +dualbound = 2721165.209205, lowerbound=1184759.209205, norm of subgrad 1089.112120 dualbound = 2721165.209205, lowerbound=1184759.209205, norm of subgrad 39.932815 stepsize= 1.000000 +dualbound = 2721327.624521, lowerbound=1179501.624521, norm of subgrad 1086.691136 dualbound = 2721327.624521, lowerbound=1179501.624521, norm of subgrad 39.476769 stepsize= 1.000000 +dualbound = 2721484.140226, lowerbound=1183064.140226, norm of subgrad 1088.360758 dualbound = 2721484.140226, lowerbound=1183064.140226, norm of subgrad 40.268048 stepsize= 1.000000 +dualbound = 2721624.350762, lowerbound=1179702.350762, norm of subgrad 1086.812013 dualbound = 2721624.350762, lowerbound=1179702.350762, norm of subgrad 39.977625 stepsize= 1.000000 +dualbound = 2721800.213939, lowerbound=1184039.213939, norm of subgrad 1088.789793 dualbound = 2721800.213939, lowerbound=1184039.213939, norm of subgrad 39.998290 stepsize= 1.000000 +dualbound = 2721990.831648, lowerbound=1178198.831648, norm of subgrad 1086.092000 dualbound = 2721990.831648, lowerbound=1178198.831648, norm of subgrad 39.844921 stepsize= 1.000000 +dualbound = 2722137.242991, lowerbound=1188895.242991, norm of subgrad 1091.024859 dualbound = 2722137.242991, lowerbound=1188895.242991, norm of subgrad 39.829780 stepsize= 1.000000 +dualbound = 2722294.177516, lowerbound=1185998.177516, norm of subgrad 1089.671133 dualbound = 2722294.177516, lowerbound=1185998.177516, norm of subgrad 39.267474 stepsize= 1.000000 +dualbound = 2722459.838073, lowerbound=1183736.838073, norm of subgrad 1088.686749 dualbound = 2722459.838073, lowerbound=1183736.838073, norm of subgrad 40.837000 stepsize= 1.000000 +dualbound = 2722594.105930, lowerbound=1178259.105930, norm of subgrad 1086.146908 dualbound = 2722594.105930, lowerbound=1178259.105930, norm of subgrad 39.878163 stepsize= 1.000000 +dualbound = 2722773.266647, lowerbound=1179353.266647, norm of subgrad 1086.644959 dualbound = 2722773.266647, lowerbound=1179353.266647, norm of subgrad 40.288469 stepsize= 1.000000 +dualbound = 2722916.082358, lowerbound=1183587.082358, norm of subgrad 1088.602812 dualbound = 2722916.082358, lowerbound=1183587.082358, norm of subgrad 40.147425 stepsize= 1.000000 +dualbound = 2723081.908210, lowerbound=1187802.908210, norm of subgrad 1090.529646 dualbound = 2723081.908210, lowerbound=1187802.908210, norm of subgrad 40.222206 stepsize= 1.000000 +dualbound = 2723253.868644, lowerbound=1181282.868644, norm of subgrad 1087.521434 dualbound = 2723253.868644, lowerbound=1181282.868644, norm of subgrad 39.899379 stepsize= 1.000000 +dualbound = 2723438.931756, lowerbound=1181369.931756, norm of subgrad 1087.573414 dualbound = 2723438.931756, lowerbound=1181369.931756, norm of subgrad 40.386422 stepsize= 1.000000 +dualbound = 2723553.943685, lowerbound=1182192.943685, norm of subgrad 1087.987106 dualbound = 2723553.943685, lowerbound=1182192.943685, norm of subgrad 40.472360 stepsize= 1.000000 +dualbound = 2723735.441522, lowerbound=1182644.441522, norm of subgrad 1088.141738 dualbound = 2723735.441522, lowerbound=1182644.441522, norm of subgrad 39.868507 stepsize= 1.000000 +dualbound = 2723900.753801, lowerbound=1185374.753801, norm of subgrad 1089.392837 dualbound = 2723900.753801, lowerbound=1185374.753801, norm of subgrad 39.589295 stepsize= 1.000000 +dualbound = 2724058.006431, lowerbound=1186914.006431, norm of subgrad 1090.151369 dualbound = 2724058.006431, lowerbound=1186914.006431, norm of subgrad 40.905411 stepsize= 1.000000 +dualbound = 2724196.050772, lowerbound=1183258.050772, norm of subgrad 1088.451217 dualbound = 2724196.050772, lowerbound=1183258.050772, norm of subgrad 40.075483 stepsize= 1.000000 +dualbound = 2724378.341357, lowerbound=1183078.341357, norm of subgrad 1088.373255 dualbound = 2724378.341357, lowerbound=1183078.341357, norm of subgrad 40.746663 stepsize= 1.000000 +dualbound = 2724526.868218, lowerbound=1180102.868218, norm of subgrad 1086.981540 dualbound = 2724526.868218, lowerbound=1180102.868218, norm of subgrad 39.680308 stepsize= 1.000000 +dualbound = 2724722.146031, lowerbound=1188484.146031, norm of subgrad 1090.836443 dualbound = 2724722.146031, lowerbound=1188484.146031, norm of subgrad 40.438568 stepsize= 1.000000 +dualbound = 2724836.167077, lowerbound=1181372.167077, norm of subgrad 1087.589154 dualbound = 2724836.167077, lowerbound=1181372.167077, norm of subgrad 39.900138 stepsize= 1.000000 +dualbound = 2725025.296405, lowerbound=1183704.296405, norm of subgrad 1088.652055 dualbound = 2725025.296405, lowerbound=1183704.296405, norm of subgrad 40.597159 stepsize= 1.000000 +dualbound = 2725206.047284, lowerbound=1177535.047284, norm of subgrad 1085.792359 dualbound = 2725206.047284, lowerbound=1177535.047284, norm of subgrad 39.884218 stepsize= 1.000000 +dualbound = 2725329.117111, lowerbound=1184113.117111, norm of subgrad 1088.841640 dualbound = 2725329.117111, lowerbound=1184113.117111, norm of subgrad 39.825492 stepsize= 1.000000 +dualbound = 2725531.962409, lowerbound=1180861.962409, norm of subgrad 1087.321002 dualbound = 2725531.962409, lowerbound=1180861.962409, norm of subgrad 40.097946 stepsize= 1.000000 +dualbound = 2725672.896298, lowerbound=1185575.896298, norm of subgrad 1089.497084 dualbound = 2725672.896298, lowerbound=1185575.896298, norm of subgrad 39.609770 stepsize= 1.000000 +dualbound = 2725834.154610, lowerbound=1182134.154610, norm of subgrad 1087.956412 dualbound = 2725834.154610, lowerbound=1182134.154610, norm of subgrad 40.942134 stepsize= 1.000000 +dualbound = 2725992.828953, lowerbound=1189924.828953, norm of subgrad 1091.509885 dualbound = 2725992.828953, lowerbound=1189924.828953, norm of subgrad 40.344446 stepsize= 1.000000 +dualbound = 2726141.213353, lowerbound=1181772.213353, norm of subgrad 1087.767536 dualbound = 2726141.213353, lowerbound=1181772.213353, norm of subgrad 40.179403 stepsize= 1.000000 +dualbound = 2726290.383455, lowerbound=1183598.383455, norm of subgrad 1088.608003 dualbound = 2726290.383455, lowerbound=1183598.383455, norm of subgrad 40.226485 stepsize= 1.000000 +dualbound = 2726470.866337, lowerbound=1180881.866337, norm of subgrad 1087.360504 dualbound = 2726470.866337, lowerbound=1180881.866337, norm of subgrad 40.638441 stepsize= 1.000000 +dualbound = 2726628.893636, lowerbound=1185349.893636, norm of subgrad 1089.388771 dualbound = 2726628.893636, lowerbound=1185349.893636, norm of subgrad 39.699210 stepsize= 1.000000 +dualbound = 2726797.995169, lowerbound=1183168.995169, norm of subgrad 1088.404794 dualbound = 2726797.995169, lowerbound=1183168.995169, norm of subgrad 40.312548 stepsize= 1.000000 +dualbound = 2726932.923184, lowerbound=1184756.923184, norm of subgrad 1089.123466 dualbound = 2726932.923184, lowerbound=1184756.923184, norm of subgrad 39.597071 stepsize= 1.000000 +dualbound = 2727125.485496, lowerbound=1181386.485496, norm of subgrad 1087.562635 dualbound = 2727125.485496, lowerbound=1181386.485496, norm of subgrad 39.982025 stepsize= 1.000000 +dualbound = 2727275.641770, lowerbound=1179749.641770, norm of subgrad 1086.819507 dualbound = 2727275.641770, lowerbound=1179749.641770, norm of subgrad 39.713427 stepsize= 1.000000 +dualbound = 2727443.274791, lowerbound=1184519.274791, norm of subgrad 1089.033643 dualbound = 2727443.274791, lowerbound=1184519.274791, norm of subgrad 40.529409 stepsize= 1.000000 +dualbound = 2727575.319732, lowerbound=1181789.319732, norm of subgrad 1087.783673 dualbound = 2727575.319732, lowerbound=1181789.319732, norm of subgrad 40.200061 stepsize= 1.000000 +dualbound = 2727742.795573, lowerbound=1185794.795573, norm of subgrad 1089.613140 dualbound = 2727742.795573, lowerbound=1185794.795573, norm of subgrad 40.366767 stepsize= 1.000000 +dualbound = 2727894.877729, lowerbound=1184071.877729, norm of subgrad 1088.826836 dualbound = 2727894.877729, lowerbound=1184071.877729, norm of subgrad 40.299903 stepsize= 1.000000 +dualbound = 2728066.296619, lowerbound=1179561.296619, norm of subgrad 1086.730554 dualbound = 2728066.296619, lowerbound=1179561.296619, norm of subgrad 39.917651 stepsize= 1.000000 +dualbound = 2728243.214886, lowerbound=1183478.214886, norm of subgrad 1088.564750 dualbound = 2728243.214886, lowerbound=1183478.214886, norm of subgrad 40.889097 stepsize= 1.000000 +dualbound = 2728377.485001, lowerbound=1181540.485001, norm of subgrad 1087.659177 dualbound = 2728377.485001, lowerbound=1181540.485001, norm of subgrad 39.953349 stepsize= 1.000000 +dualbound = 2728559.975157, lowerbound=1185374.975157, norm of subgrad 1089.397987 dualbound = 2728559.975157, lowerbound=1185374.975157, norm of subgrad 39.943587 stepsize= 1.000000 +dualbound = 2728736.626266, lowerbound=1182536.626266, norm of subgrad 1088.104143 dualbound = 2728736.626266, lowerbound=1182536.626266, norm of subgrad 40.132918 stepsize= 1.000000 +dualbound = 2728875.094363, lowerbound=1180388.094363, norm of subgrad 1087.114573 dualbound = 2728875.094363, lowerbound=1180388.094363, norm of subgrad 39.603890 stepsize= 1.000000 +dualbound = 2729049.926049, lowerbound=1188032.926049, norm of subgrad 1090.627767 dualbound = 2729049.926049, lowerbound=1188032.926049, norm of subgrad 40.135168 stepsize= 1.000000 +dualbound = 2729217.735218, lowerbound=1180899.735218, norm of subgrad 1087.358145 dualbound = 2729217.735218, lowerbound=1180899.735218, norm of subgrad 40.197129 stepsize= 1.000000 +dualbound = 2729355.943105, lowerbound=1189740.943105, norm of subgrad 1091.434809 dualbound = 2729355.943105, lowerbound=1189740.943105, norm of subgrad 40.338665 stepsize= 1.000000 +dualbound = 2729521.753452, lowerbound=1178818.753452, norm of subgrad 1086.433041 dualbound = 2729521.753452, lowerbound=1178818.753452, norm of subgrad 41.034258 stepsize= 1.000000 +dualbound = 2729651.416780, lowerbound=1181676.416780, norm of subgrad 1087.729478 dualbound = 2729651.416780, lowerbound=1181676.416780, norm of subgrad 40.108145 stepsize= 1.000000 +dualbound = 2729839.158295, lowerbound=1186833.158295, norm of subgrad 1090.086308 dualbound = 2729839.158295, lowerbound=1186833.158295, norm of subgrad 40.530748 stepsize= 1.000000 +dualbound = 2730012.795983, lowerbound=1185583.795983, norm of subgrad 1089.519525 dualbound = 2730012.795983, lowerbound=1185583.795983, norm of subgrad 40.529467 stepsize= 1.000000 +dualbound = 2730148.882544, lowerbound=1182483.882544, norm of subgrad 1088.078528 dualbound = 2730148.882544, lowerbound=1182483.882544, norm of subgrad 39.586444 stepsize= 1.000000 +dualbound = 2730329.016972, lowerbound=1183605.016972, norm of subgrad 1088.570630 dualbound = 2730329.016972, lowerbound=1183605.016972, norm of subgrad 39.511194 stepsize= 1.000000 +dualbound = 2730459.069585, lowerbound=1185119.069585, norm of subgrad 1089.324134 dualbound = 2730459.069585, lowerbound=1185119.069585, norm of subgrad 40.472863 stepsize= 1.000000 +dualbound = 2730628.478440, lowerbound=1183471.478440, norm of subgrad 1088.546957 dualbound = 2730628.478440, lowerbound=1183471.478440, norm of subgrad 40.403080 stepsize= 1.000000 +dualbound = 2730803.707263, lowerbound=1184939.707263, norm of subgrad 1089.214720 dualbound = 2730803.707263, lowerbound=1184939.707263, norm of subgrad 40.301722 stepsize= 1.000000 +dualbound = 2730973.187876, lowerbound=1183687.187876, norm of subgrad 1088.617099 dualbound = 2730973.187876, lowerbound=1183687.187876, norm of subgrad 39.616671 stepsize= 1.000000 +dualbound = 2731105.378440, lowerbound=1179740.378440, norm of subgrad 1086.844229 dualbound = 2731105.378440, lowerbound=1179740.378440, norm of subgrad 40.276427 stepsize= 1.000000 +dualbound = 2731282.103360, lowerbound=1184988.103360, norm of subgrad 1089.236936 dualbound = 2731282.103360, lowerbound=1184988.103360, norm of subgrad 40.320279 stepsize= 1.000000 +dualbound = 2731443.273314, lowerbound=1182701.273314, norm of subgrad 1088.178420 dualbound = 2731443.273314, lowerbound=1182701.273314, norm of subgrad 39.902004 stepsize= 1.000000 +dualbound = 2731613.675803, lowerbound=1185097.675803, norm of subgrad 1089.256478 dualbound = 2731613.675803, lowerbound=1185097.675803, norm of subgrad 39.400539 stepsize= 1.000000 +dualbound = 2731768.157021, lowerbound=1182404.157021, norm of subgrad 1088.048784 dualbound = 2731768.157021, lowerbound=1182404.157021, norm of subgrad 40.006015 stepsize= 1.000000 +dualbound = 2731930.490903, lowerbound=1185095.490903, norm of subgrad 1089.262361 dualbound = 2731930.490903, lowerbound=1185095.490903, norm of subgrad 39.488402 stepsize= 1.000000 +dualbound = 2732113.172305, lowerbound=1183609.172305, norm of subgrad 1088.567027 dualbound = 2732113.172305, lowerbound=1183609.172305, norm of subgrad 39.391387 stepsize= 1.000000 +dualbound = 2732266.845082, lowerbound=1182663.845082, norm of subgrad 1088.148356 dualbound = 2732266.845082, lowerbound=1182663.845082, norm of subgrad 39.454693 stepsize= 1.000000 +dualbound = 2732408.827399, lowerbound=1179806.827399, norm of subgrad 1086.853637 dualbound = 2732408.827399, lowerbound=1179806.827399, norm of subgrad 39.824393 stepsize= 1.000000 +dualbound = 2732560.943475, lowerbound=1184045.943475, norm of subgrad 1088.820437 dualbound = 2732560.943475, lowerbound=1184045.943475, norm of subgrad 40.448932 stepsize= 1.000000 +dualbound = 2732713.750375, lowerbound=1186016.750375, norm of subgrad 1089.694338 dualbound = 2732713.750375, lowerbound=1186016.750375, norm of subgrad 39.620789 stepsize= 1.000000 +dualbound = 2732888.037510, lowerbound=1183391.037510, norm of subgrad 1088.493931 dualbound = 2732888.037510, lowerbound=1183391.037510, norm of subgrad 40.028579 stepsize= 1.000000 +dualbound = 2733031.124120, lowerbound=1183994.124120, norm of subgrad 1088.817764 dualbound = 2733031.124120, lowerbound=1183994.124120, norm of subgrad 40.903381 stepsize= 1.000000 +dualbound = 2733186.161754, lowerbound=1185375.161754, norm of subgrad 1089.446723 dualbound = 2733186.161754, lowerbound=1185375.161754, norm of subgrad 40.915005 stepsize= 1.000000 +dualbound = 2733351.509107, lowerbound=1184407.509107, norm of subgrad 1089.008498 dualbound = 2733351.509107, lowerbound=1184407.509107, norm of subgrad 41.198876 stepsize= 1.000000 +dualbound = 2733492.918272, lowerbound=1182611.918272, norm of subgrad 1088.166770 dualbound = 2733492.918272, lowerbound=1182611.918272, norm of subgrad 40.452554 stepsize= 1.000000 +dualbound = 2733701.145767, lowerbound=1185285.145767, norm of subgrad 1089.392099 dualbound = 2733701.145767, lowerbound=1185285.145767, norm of subgrad 41.209556 stepsize= 1.000000 +dualbound = 2733829.963032, lowerbound=1180002.963032, norm of subgrad 1086.936964 dualbound = 2733829.963032, lowerbound=1180002.963032, norm of subgrad 39.469194 stepsize= 1.000000 +dualbound = 2734033.814312, lowerbound=1189612.814312, norm of subgrad 1091.363741 dualbound = 2734033.814312, lowerbound=1189612.814312, norm of subgrad 40.814841 stepsize= 1.000000 +dualbound = 2734153.989751, lowerbound=1179727.989751, norm of subgrad 1086.846351 dualbound = 2734153.989751, lowerbound=1179727.989751, norm of subgrad 40.338263 stepsize= 1.000000 +dualbound = 2734314.981075, lowerbound=1182052.981075, norm of subgrad 1087.912212 dualbound = 2734314.981075, lowerbound=1182052.981075, norm of subgrad 40.755261 stepsize= 1.000000 +dualbound = 2734457.775469, lowerbound=1184437.775469, norm of subgrad 1088.988418 dualbound = 2734457.775469, lowerbound=1184437.775469, norm of subgrad 40.009929 stepsize= 1.000000 +dualbound = 2734656.057892, lowerbound=1187258.057892, norm of subgrad 1090.263756 dualbound = 2734656.057892, lowerbound=1187258.057892, norm of subgrad 40.190576 stepsize= 1.000000 +dualbound = 2734835.719016, lowerbound=1182860.719016, norm of subgrad 1088.247085 dualbound = 2734835.719016, lowerbound=1182860.719016, norm of subgrad 40.008263 stepsize= 1.000000 +dualbound = 2734992.501281, lowerbound=1185394.501281, norm of subgrad 1089.425308 dualbound = 2734992.501281, lowerbound=1185394.501281, norm of subgrad 40.122092 stepsize= 1.000000 +dualbound = 2735124.235006, lowerbound=1182812.235006, norm of subgrad 1088.233079 dualbound = 2735124.235006, lowerbound=1182812.235006, norm of subgrad 39.632483 stepsize= 1.000000 +dualbound = 2735292.516685, lowerbound=1184413.516685, norm of subgrad 1088.970852 dualbound = 2735292.516685, lowerbound=1184413.516685, norm of subgrad 40.153228 stepsize= 1.000000 +dualbound = 2735485.970100, lowerbound=1184315.970100, norm of subgrad 1088.940297 dualbound = 2735485.970100, lowerbound=1184315.970100, norm of subgrad 40.846706 stepsize= 1.000000 +dualbound = 2735595.019798, lowerbound=1185563.019798, norm of subgrad 1089.517333 dualbound = 2735595.019798, lowerbound=1185563.019798, norm of subgrad 39.925552 stepsize= 1.000000 +dualbound = 2735761.542780, lowerbound=1183429.542780, norm of subgrad 1088.528614 dualbound = 2735761.542780, lowerbound=1183429.542780, norm of subgrad 40.392115 stepsize= 1.000000 +dualbound = 2735942.297913, lowerbound=1185039.297913, norm of subgrad 1089.261354 dualbound = 2735942.297913, lowerbound=1185039.297913, norm of subgrad 40.394989 stepsize= 1.000000 +dualbound = 2736080.667570, lowerbound=1185083.667570, norm of subgrad 1089.282180 dualbound = 2736080.667570, lowerbound=1185083.667570, norm of subgrad 39.879439 stepsize= 1.000000 +dualbound = 2736270.172118, lowerbound=1185097.172118, norm of subgrad 1089.268641 dualbound = 2736270.172118, lowerbound=1185097.172118, norm of subgrad 39.981302 stepsize= 1.000000 +dualbound = 2736410.433481, lowerbound=1185478.433481, norm of subgrad 1089.489988 dualbound = 2736410.433481, lowerbound=1185478.433481, norm of subgrad 40.623409 stepsize= 1.000000 +dualbound = 2736557.130989, lowerbound=1186499.130989, norm of subgrad 1089.935838 dualbound = 2736557.130989, lowerbound=1186499.130989, norm of subgrad 40.096103 stepsize= 1.000000 +dualbound = 2736728.659518, lowerbound=1183542.659518, norm of subgrad 1088.552552 dualbound = 2736728.659518, lowerbound=1183542.659518, norm of subgrad 39.692928 stepsize= 1.000000 +dualbound = 2736900.162194, lowerbound=1179153.162194, norm of subgrad 1086.550120 dualbound = 2736900.162194, lowerbound=1179153.162194, norm of subgrad 40.118608 stepsize= 1.000000 +dualbound = 2737036.160128, lowerbound=1183310.160128, norm of subgrad 1088.482503 dualbound = 2737036.160128, lowerbound=1183310.160128, norm of subgrad 40.249198 stepsize= 1.000000 +dualbound = 2737211.788010, lowerbound=1182321.788010, norm of subgrad 1087.998983 dualbound = 2737211.788010, lowerbound=1182321.788010, norm of subgrad 39.945311 stepsize= 1.000000 +dualbound = 2737358.541889, lowerbound=1183983.541889, norm of subgrad 1088.780759 dualbound = 2737358.541889, lowerbound=1183983.541889, norm of subgrad 40.084335 stepsize= 1.000000 +dualbound = 2737502.967899, lowerbound=1191598.967899, norm of subgrad 1092.269183 dualbound = 2737502.967899, lowerbound=1191598.967899, norm of subgrad 39.967812 stepsize= 1.000000 +dualbound = 2737677.495262, lowerbound=1185611.495262, norm of subgrad 1089.501489 dualbound = 2737677.495262, lowerbound=1185611.495262, norm of subgrad 39.705508 stepsize= 1.000000 +dualbound = 2737847.343478, lowerbound=1185145.343478, norm of subgrad 1089.313703 dualbound = 2737847.343478, lowerbound=1185145.343478, norm of subgrad 40.358992 stepsize= 1.000000 +dualbound = 2737986.336609, lowerbound=1180211.336609, norm of subgrad 1087.028213 dualbound = 2737986.336609, lowerbound=1180211.336609, norm of subgrad 39.471422 stepsize= 1.000000 +dualbound = 2738178.934373, lowerbound=1183317.934373, norm of subgrad 1088.456216 dualbound = 2738178.934373, lowerbound=1183317.934373, norm of subgrad 40.144710 stepsize= 1.000000 +dualbound = 2738295.437933, lowerbound=1184280.437933, norm of subgrad 1088.946481 dualbound = 2738295.437933, lowerbound=1184280.437933, norm of subgrad 40.503130 stepsize= 1.000000 +dualbound = 2738466.914573, lowerbound=1182667.914573, norm of subgrad 1088.176417 dualbound = 2738466.914573, lowerbound=1182667.914573, norm of subgrad 40.391542 stepsize= 1.000000 +dualbound = 2738653.421899, lowerbound=1182532.421899, norm of subgrad 1088.098535 dualbound = 2738653.421899, lowerbound=1182532.421899, norm of subgrad 40.156037 stepsize= 1.000000 +dualbound = 2738804.523076, lowerbound=1186790.523076, norm of subgrad 1090.061706 dualbound = 2738804.523076, lowerbound=1186790.523076, norm of subgrad 39.938718 stepsize= 1.000000 +dualbound = 2738962.606604, lowerbound=1184398.606604, norm of subgrad 1088.977781 dualbound = 2738962.606604, lowerbound=1184398.606604, norm of subgrad 40.399054 stepsize= 1.000000 +dualbound = 2739099.668367, lowerbound=1184339.668367, norm of subgrad 1088.941995 dualbound = 2739099.668367, lowerbound=1184339.668367, norm of subgrad 39.900649 stepsize= 1.000000 +dualbound = 2739278.414260, lowerbound=1182520.414260, norm of subgrad 1088.100370 dualbound = 2739278.414260, lowerbound=1182520.414260, norm of subgrad 40.258488 stepsize= 1.000000 +dualbound = 2739432.186678, lowerbound=1184375.186678, norm of subgrad 1088.977129 dualbound = 2739432.186678, lowerbound=1184375.186678, norm of subgrad 40.617391 stepsize= 1.000000 +dualbound = 2739574.415393, lowerbound=1182042.415393, norm of subgrad 1087.905518 dualbound = 2739574.415393, lowerbound=1182042.415393, norm of subgrad 40.475038 stepsize= 1.000000 +dualbound = 2739743.254636, lowerbound=1185439.254636, norm of subgrad 1089.452273 dualbound = 2739743.254636, lowerbound=1185439.254636, norm of subgrad 40.445510 stepsize= 1.000000 +dualbound = 2739913.388032, lowerbound=1185502.388032, norm of subgrad 1089.449121 dualbound = 2739913.388032, lowerbound=1185502.388032, norm of subgrad 39.587036 stepsize= 1.000000 +dualbound = 2740098.932132, lowerbound=1187810.932132, norm of subgrad 1090.500771 dualbound = 2740098.932132, lowerbound=1187810.932132, norm of subgrad 39.579592 stepsize= 1.000000 +dualbound = 2740230.668493, lowerbound=1184919.668493, norm of subgrad 1089.191750 dualbound = 2740230.668493, lowerbound=1184919.668493, norm of subgrad 39.379390 stepsize= 1.000000 +dualbound = 2740379.482364, lowerbound=1184252.482364, norm of subgrad 1088.882217 dualbound = 2740379.482364, lowerbound=1184252.482364, norm of subgrad 39.507137 stepsize= 1.000000 +dualbound = 2740573.997909, lowerbound=1179192.997909, norm of subgrad 1086.525194 dualbound = 2740573.997909, lowerbound=1179192.997909, norm of subgrad 39.223915 stepsize= 1.000000 +dualbound = 2740728.269798, lowerbound=1187960.269798, norm of subgrad 1090.567407 dualbound = 2740728.269798, lowerbound=1187960.269798, norm of subgrad 39.131469 stepsize= 1.000000 +dualbound = 2740887.981153, lowerbound=1178687.981153, norm of subgrad 1086.334194 dualbound = 2740887.981153, lowerbound=1178687.981153, norm of subgrad 39.921315 stepsize= 1.000000 +dualbound = 2741023.743466, lowerbound=1189093.743466, norm of subgrad 1091.129114 dualbound = 2741023.743466, lowerbound=1189093.743466, norm of subgrad 40.059485 stepsize= 1.000000 +dualbound = 2741185.114996, lowerbound=1182087.114996, norm of subgrad 1087.915491 dualbound = 2741185.114996, lowerbound=1182087.114996, norm of subgrad 40.427361 stepsize= 1.000000 +dualbound = 2741351.560296, lowerbound=1185790.560296, norm of subgrad 1089.597889 dualbound = 2741351.560296, lowerbound=1185790.560296, norm of subgrad 39.993066 stepsize= 1.000000 +dualbound = 2741508.085690, lowerbound=1182507.085690, norm of subgrad 1088.084135 dualbound = 2741508.085690, lowerbound=1182507.085690, norm of subgrad 39.705483 stepsize= 1.000000 +dualbound = 2741667.670594, lowerbound=1186300.670594, norm of subgrad 1089.852132 dualbound = 2741667.670594, lowerbound=1186300.670594, norm of subgrad 40.454727 stepsize= 1.000000 +dualbound = 2741815.660049, lowerbound=1186778.660049, norm of subgrad 1090.097546 dualbound = 2741815.660049, lowerbound=1186778.660049, norm of subgrad 41.012065 stepsize= 1.000000 +dualbound = 2741974.443867, lowerbound=1182440.443867, norm of subgrad 1088.070514 dualbound = 2741974.443867, lowerbound=1182440.443867, norm of subgrad 40.196814 stepsize= 1.000000 +dualbound = 2742140.972337, lowerbound=1186235.972337, norm of subgrad 1089.842178 dualbound = 2742140.972337, lowerbound=1186235.972337, norm of subgrad 41.067365 stepsize= 1.000000 +dualbound = 2742305.994010, lowerbound=1183529.994010, norm of subgrad 1088.552706 dualbound = 2742305.994010, lowerbound=1183529.994010, norm of subgrad 39.774636 stepsize= 1.000000 +dualbound = 2742495.310190, lowerbound=1184298.310190, norm of subgrad 1088.912903 dualbound = 2742495.310190, lowerbound=1184298.310190, norm of subgrad 40.277986 stepsize= 1.000000 +dualbound = 2742642.369707, lowerbound=1183654.369707, norm of subgrad 1088.609374 dualbound = 2742642.369707, lowerbound=1183654.369707, norm of subgrad 39.535548 stepsize= 1.000000 +dualbound = 2742784.420547, lowerbound=1182637.420547, norm of subgrad 1088.193191 dualbound = 2742784.420547, lowerbound=1182637.420547, norm of subgrad 40.854019 stepsize= 1.000000 +dualbound = 2742956.144607, lowerbound=1187472.144607, norm of subgrad 1090.372021 dualbound = 2742956.144607, lowerbound=1187472.144607, norm of subgrad 40.133827 stepsize= 1.000000 +dualbound = 2743110.566805, lowerbound=1184781.566805, norm of subgrad 1089.160946 dualbound = 2743110.566805, lowerbound=1184781.566805, norm of subgrad 40.551476 stepsize= 1.000000 +dualbound = 2743268.828672, lowerbound=1186368.828672, norm of subgrad 1089.876520 dualbound = 2743268.828672, lowerbound=1186368.828672, norm of subgrad 40.252477 stepsize= 1.000000 +dualbound = 2743444.287987, lowerbound=1182833.287987, norm of subgrad 1088.223455 dualbound = 2743444.287987, lowerbound=1182833.287987, norm of subgrad 39.654247 stepsize= 1.000000 +dualbound = 2743622.657569, lowerbound=1182951.657569, norm of subgrad 1088.311838 dualbound = 2743622.657569, lowerbound=1182951.657569, norm of subgrad 40.612431 stepsize= 1.000000 +dualbound = 2743704.862022, lowerbound=1186101.862022, norm of subgrad 1089.779272 dualbound = 2743704.862022, lowerbound=1186101.862022, norm of subgrad 39.990054 stepsize= 1.000000 +dualbound = 2743903.382252, lowerbound=1179978.382252, norm of subgrad 1086.938537 dualbound = 2743903.382252, lowerbound=1179978.382252, norm of subgrad 40.688085 stepsize= 1.000000 +dualbound = 2744067.797584, lowerbound=1188579.797584, norm of subgrad 1090.890828 dualbound = 2744067.797584, lowerbound=1188579.797584, norm of subgrad 40.341236 stepsize= 1.000000 +dualbound = 2744258.122073, lowerbound=1182969.122073, norm of subgrad 1088.296891 dualbound = 2744258.122073, lowerbound=1182969.122073, norm of subgrad 40.141307 stepsize= 1.000000 +dualbound = 2744390.581864, lowerbound=1185503.581864, norm of subgrad 1089.499693 dualbound = 2744390.581864, lowerbound=1185503.581864, norm of subgrad 40.477893 stepsize= 1.000000 +dualbound = 2744547.090855, lowerbound=1186212.090855, norm of subgrad 1089.770660 dualbound = 2744547.090855, lowerbound=1186212.090855, norm of subgrad 39.300242 stepsize= 1.000000 +dualbound = 2744729.147712, lowerbound=1180942.147712, norm of subgrad 1087.338102 dualbound = 2744729.147712, lowerbound=1180942.147712, norm of subgrad 39.294489 stepsize= 1.000000 +dualbound = 2744913.170251, lowerbound=1183453.170251, norm of subgrad 1088.493073 dualbound = 2744913.170251, lowerbound=1183453.170251, norm of subgrad 39.344918 stepsize= 1.000000 +dualbound = 2745040.533433, lowerbound=1184292.533433, norm of subgrad 1088.912546 dualbound = 2745040.533433, lowerbound=1184292.533433, norm of subgrad 39.564671 stepsize= 1.000000 +dualbound = 2745190.588337, lowerbound=1183354.588337, norm of subgrad 1088.467541 dualbound = 2745190.588337, lowerbound=1183354.588337, norm of subgrad 39.459535 stepsize= 1.000000 +dualbound = 2745354.676613, lowerbound=1186512.676613, norm of subgrad 1089.934712 dualbound = 2745354.676613, lowerbound=1186512.676613, norm of subgrad 40.113443 stepsize= 1.000000 +dualbound = 2745529.247594, lowerbound=1183357.247594, norm of subgrad 1088.494487 dualbound = 2745529.247594, lowerbound=1183357.247594, norm of subgrad 40.466912 stepsize= 1.000000 +dualbound = 2745676.819781, lowerbound=1188462.819781, norm of subgrad 1090.845003 dualbound = 2745676.819781, lowerbound=1188462.819781, norm of subgrad 40.343180 stepsize= 1.000000 +dualbound = 2745849.908436, lowerbound=1182810.908436, norm of subgrad 1088.226037 dualbound = 2745849.908436, lowerbound=1182810.908436, norm of subgrad 39.976101 stepsize= 1.000000 +dualbound = 2746002.087326, lowerbound=1186858.087326, norm of subgrad 1090.097742 dualbound = 2746002.087326, lowerbound=1186858.087326, norm of subgrad 40.089636 stepsize= 1.000000 +dualbound = 2746159.091900, lowerbound=1184784.091900, norm of subgrad 1089.162564 dualbound = 2746159.091900, lowerbound=1184784.091900, norm of subgrad 40.595623 stepsize= 1.000000 +dualbound = 2746300.189713, lowerbound=1183186.189713, norm of subgrad 1088.431068 dualbound = 2746300.189713, lowerbound=1183186.189713, norm of subgrad 40.461065 stepsize= 1.000000 +dualbound = 2746451.541102, lowerbound=1185628.541102, norm of subgrad 1089.553368 dualbound = 2746451.541102, lowerbound=1185628.541102, norm of subgrad 40.612207 stepsize= 1.000000 +dualbound = 2746598.469799, lowerbound=1183125.469799, norm of subgrad 1088.395824 dualbound = 2746598.469799, lowerbound=1183125.469799, norm of subgrad 40.335204 stepsize= 1.000000 +dualbound = 2746794.968156, lowerbound=1186185.968156, norm of subgrad 1089.794920 dualbound = 2746794.968156, lowerbound=1186185.968156, norm of subgrad 40.786007 stepsize= 1.000000 +dualbound = 2746933.253911, lowerbound=1181081.253911, norm of subgrad 1087.425516 dualbound = 2746933.253911, lowerbound=1181081.253911, norm of subgrad 39.386365 stepsize= 1.000000 +dualbound = 2747148.836197, lowerbound=1187935.836197, norm of subgrad 1090.560790 dualbound = 2747148.836197, lowerbound=1187935.836197, norm of subgrad 40.032266 stepsize= 1.000000 +dualbound = 2747272.661747, lowerbound=1182355.661747, norm of subgrad 1088.026958 dualbound = 2747272.661747, lowerbound=1182355.661747, norm of subgrad 39.633642 stepsize= 1.000000 +dualbound = 2747421.638054, lowerbound=1184644.638054, norm of subgrad 1089.063193 dualbound = 2747421.638054, lowerbound=1184644.638054, norm of subgrad 39.534495 stepsize= 1.000000 +dualbound = 2747623.035808, lowerbound=1186532.035808, norm of subgrad 1089.921114 dualbound = 2747623.035808, lowerbound=1186532.035808, norm of subgrad 39.967459 stepsize= 1.000000 +dualbound = 2747753.274814, lowerbound=1185889.274814, norm of subgrad 1089.653282 dualbound = 2747753.274814, lowerbound=1185889.274814, norm of subgrad 39.815060 stepsize= 1.000000 +dualbound = 2747912.732912, lowerbound=1184060.732912, norm of subgrad 1088.797379 dualbound = 2747912.732912, lowerbound=1184060.732912, norm of subgrad 39.729814 stepsize= 1.000000 +dualbound = 2748100.755331, lowerbound=1180154.755331, norm of subgrad 1086.987928 dualbound = 2748100.755331, lowerbound=1180154.755331, norm of subgrad 39.699149 stepsize= 1.000000 +dualbound = 2748236.490134, lowerbound=1183206.490134, norm of subgrad 1088.422937 dualbound = 2748236.490134, lowerbound=1183206.490134, norm of subgrad 39.921608 stepsize= 1.000000 +dualbound = 2748404.594855, lowerbound=1183470.594855, norm of subgrad 1088.558494 dualbound = 2748404.594855, lowerbound=1183470.594855, norm of subgrad 40.707551 stepsize= 1.000000 +dualbound = 2748515.972167, lowerbound=1182624.972167, norm of subgrad 1088.162659 dualbound = 2748515.972167, lowerbound=1182624.972167, norm of subgrad 39.804237 stepsize= 1.000000 +dualbound = 2748734.642403, lowerbound=1191139.642403, norm of subgrad 1092.048370 dualbound = 2748734.642403, lowerbound=1191139.642403, norm of subgrad 40.603820 stepsize= 1.000000 +dualbound = 2748862.422272, lowerbound=1183193.422272, norm of subgrad 1088.410043 dualbound = 2748862.422272, lowerbound=1183193.422272, norm of subgrad 39.633065 stepsize= 1.000000 +dualbound = 2749043.865499, lowerbound=1186090.865499, norm of subgrad 1089.739357 dualbound = 2749043.865499, lowerbound=1186090.865499, norm of subgrad 40.279563 stepsize= 1.000000 +dualbound = 2749165.882468, lowerbound=1181470.882468, norm of subgrad 1087.618445 dualbound = 2749165.882468, lowerbound=1181470.882468, norm of subgrad 39.560295 stepsize= 1.000000 +dualbound = 2749364.120537, lowerbound=1186528.120537, norm of subgrad 1089.936751 dualbound = 2749364.120537, lowerbound=1186528.120537, norm of subgrad 40.400966 stepsize= 1.000000 +dualbound = 2749506.158975, lowerbound=1184128.158975, norm of subgrad 1088.815025 dualbound = 2749506.158975, lowerbound=1184128.158975, norm of subgrad 39.141263 stepsize= 1.000000 +dualbound = 2749688.635123, lowerbound=1186193.635123, norm of subgrad 1089.786509 dualbound = 2749688.635123, lowerbound=1186193.635123, norm of subgrad 40.292383 stepsize= 1.000000 +dualbound = 2749815.642419, lowerbound=1187413.642419, norm of subgrad 1090.386465 dualbound = 2749815.642419, lowerbound=1187413.642419, norm of subgrad 40.694070 stepsize= 1.000000 +dualbound = 2749970.352303, lowerbound=1186168.352303, norm of subgrad 1089.782250 dualbound = 2749970.352303, lowerbound=1186168.352303, norm of subgrad 40.146107 stepsize= 1.000000 +dualbound = 2750138.105714, lowerbound=1184239.105714, norm of subgrad 1088.893983 dualbound = 2750138.105714, lowerbound=1184239.105714, norm of subgrad 40.233735 stepsize= 1.000000 +dualbound = 2750316.400257, lowerbound=1185196.400257, norm of subgrad 1089.327040 dualbound = 2750316.400257, lowerbound=1185196.400257, norm of subgrad 40.190727 stepsize= 1.000000 +dualbound = 2750437.398800, lowerbound=1188030.398800, norm of subgrad 1090.650906 dualbound = 2750437.398800, lowerbound=1188030.398800, norm of subgrad 40.124787 stepsize= 1.000000 +dualbound = 2750603.464388, lowerbound=1183218.464388, norm of subgrad 1088.444516 dualbound = 2750603.464388, lowerbound=1183218.464388, norm of subgrad 40.731629 stepsize= 1.000000 +dualbound = 2750755.574656, lowerbound=1183235.574656, norm of subgrad 1088.436298 dualbound = 2750755.574656, lowerbound=1183235.574656, norm of subgrad 40.126179 stepsize= 1.000000 +dualbound = 2750945.204633, lowerbound=1186836.204633, norm of subgrad 1090.067982 dualbound = 2750945.204633, lowerbound=1186836.204633, norm of subgrad 40.020370 stepsize= 1.000000 +dualbound = 2751104.860383, lowerbound=1183680.860383, norm of subgrad 1088.631646 dualbound = 2751104.860383, lowerbound=1183680.860383, norm of subgrad 39.970686 stepsize= 1.000000 +dualbound = 2751231.144089, lowerbound=1183622.144089, norm of subgrad 1088.630398 dualbound = 2751231.144089, lowerbound=1183622.144089, norm of subgrad 40.252748 stepsize= 1.000000 +dualbound = 2751420.748557, lowerbound=1184651.748557, norm of subgrad 1089.099972 dualbound = 2751420.748557, lowerbound=1184651.748557, norm of subgrad 40.946361 stepsize= 1.000000 +dualbound = 2751574.058697, lowerbound=1184499.058697, norm of subgrad 1089.014260 dualbound = 2751574.058697, lowerbound=1184499.058697, norm of subgrad 40.078799 stepsize= 1.000000 +dualbound = 2751708.351361, lowerbound=1188243.351361, norm of subgrad 1090.721024 dualbound = 2751708.351361, lowerbound=1188243.351361, norm of subgrad 39.538496 stepsize= 1.000000 +dualbound = 2751900.690344, lowerbound=1186112.690344, norm of subgrad 1089.747535 dualbound = 2751900.690344, lowerbound=1186112.690344, norm of subgrad 40.365071 stepsize= 1.000000 +dualbound = 2752030.085240, lowerbound=1184634.085240, norm of subgrad 1089.092322 dualbound = 2752030.085240, lowerbound=1184634.085240, norm of subgrad 40.216848 stepsize= 1.000000 +dualbound = 2752216.327219, lowerbound=1184489.327219, norm of subgrad 1088.983621 dualbound = 2752216.327219, lowerbound=1184489.327219, norm of subgrad 39.777405 stepsize= 1.000000 +dualbound = 2752367.243531, lowerbound=1188949.243531, norm of subgrad 1091.063813 dualbound = 2752367.243531, lowerbound=1188949.243531, norm of subgrad 40.273022 stepsize= 1.000000 +dualbound = 2752540.724677, lowerbound=1184137.724677, norm of subgrad 1088.824928 dualbound = 2752540.724677, lowerbound=1184137.724677, norm of subgrad 39.692331 stepsize= 1.000000 +dualbound = 2752699.825189, lowerbound=1186110.825189, norm of subgrad 1089.735668 dualbound = 2752699.825189, lowerbound=1186110.825189, norm of subgrad 39.649723 stepsize= 1.000000 +dualbound = 2752839.509040, lowerbound=1181635.509040, norm of subgrad 1087.692286 dualbound = 2752839.509040, lowerbound=1181635.509040, norm of subgrad 39.732655 stepsize= 1.000000 +dualbound = 2753005.612200, lowerbound=1184656.612200, norm of subgrad 1089.090727 dualbound = 2753005.612200, lowerbound=1184656.612200, norm of subgrad 40.349760 stepsize= 1.000000 +dualbound = 2753181.211652, lowerbound=1188767.211652, norm of subgrad 1090.977640 dualbound = 2753181.211652, lowerbound=1188767.211652, norm of subgrad 40.504314 stepsize= 1.000000 +dualbound = 2753314.691806, lowerbound=1184931.691806, norm of subgrad 1089.202778 dualbound = 2753314.691806, lowerbound=1184931.691806, norm of subgrad 39.553510 stepsize= 1.000000 +dualbound = 2753489.473704, lowerbound=1187052.473704, norm of subgrad 1090.190109 dualbound = 2753489.473704, lowerbound=1187052.473704, norm of subgrad 40.457161 stepsize= 1.000000 +dualbound = 2753601.322145, lowerbound=1184408.322145, norm of subgrad 1089.003362 dualbound = 2753601.322145, lowerbound=1184408.322145, norm of subgrad 40.396144 stepsize= 1.000000 +dualbound = 2753791.360435, lowerbound=1186170.360435, norm of subgrad 1089.774913 dualbound = 2753791.360435, lowerbound=1186170.360435, norm of subgrad 40.361346 stepsize= 1.000000 +dualbound = 2753951.582163, lowerbound=1183690.582163, norm of subgrad 1088.620954 dualbound = 2753951.582163, lowerbound=1183690.582163, norm of subgrad 39.562883 stepsize= 1.000000 +dualbound = 2754118.798453, lowerbound=1187141.798453, norm of subgrad 1090.218693 dualbound = 2754118.798453, lowerbound=1187141.798453, norm of subgrad 40.027694 stepsize= 1.000000 +dualbound = 2754274.004399, lowerbound=1185399.004399, norm of subgrad 1089.419113 dualbound = 2754274.004399, lowerbound=1185399.004399, norm of subgrad 39.877386 stepsize= 1.000000 +dualbound = 2754406.637403, lowerbound=1188551.637403, norm of subgrad 1090.871504 dualbound = 2754406.637403, lowerbound=1188551.637403, norm of subgrad 39.769750 stepsize= 1.000000 +dualbound = 2754584.772022, lowerbound=1182874.772022, norm of subgrad 1088.259056 dualbound = 2754584.772022, lowerbound=1182874.772022, norm of subgrad 40.138941 stepsize= 1.000000 +dualbound = 2754724.756147, lowerbound=1187287.756147, norm of subgrad 1090.316356 dualbound = 2754724.756147, lowerbound=1187287.756147, norm of subgrad 40.521403 stepsize= 1.000000 +dualbound = 2754897.327448, lowerbound=1182596.327448, norm of subgrad 1088.132495 dualbound = 2754897.327448, lowerbound=1182596.327448, norm of subgrad 40.106998 stepsize= 1.000000 +dualbound = 2755051.905773, lowerbound=1186178.905773, norm of subgrad 1089.780210 dualbound = 2755051.905773, lowerbound=1186178.905773, norm of subgrad 39.957206 stepsize= 1.000000 +dualbound = 2755214.497825, lowerbound=1181321.497825, norm of subgrad 1087.531378 dualbound = 2755214.497825, lowerbound=1181321.497825, norm of subgrad 39.567563 stepsize= 1.000000 +dualbound = 2755396.844422, lowerbound=1189147.844422, norm of subgrad 1091.112663 dualbound = 2755396.844422, lowerbound=1189147.844422, norm of subgrad 39.513879 stepsize= 1.000000 +dualbound = 2755527.737179, lowerbound=1185911.737179, norm of subgrad 1089.657165 dualbound = 2755527.737179, lowerbound=1185911.737179, norm of subgrad 39.647103 stepsize= 1.000000 +dualbound = 2755690.840072, lowerbound=1191394.840072, norm of subgrad 1092.177568 dualbound = 2755690.840072, lowerbound=1191394.840072, norm of subgrad 40.250502 stepsize= 1.000000 +dualbound = 2755855.182845, lowerbound=1184743.182845, norm of subgrad 1089.130930 dualbound = 2755855.182845, lowerbound=1184743.182845, norm of subgrad 40.340337 stepsize= 1.000000 +dualbound = 2756009.871781, lowerbound=1185323.871781, norm of subgrad 1089.381876 dualbound = 2756009.871781, lowerbound=1185323.871781, norm of subgrad 39.795589 stepsize= 1.000000 +dualbound = 2756172.322691, lowerbound=1185242.322691, norm of subgrad 1089.354085 dualbound = 2756172.322691, lowerbound=1185242.322691, norm of subgrad 40.155335 stepsize= 1.000000 +dualbound = 2756314.601063, lowerbound=1184311.601063, norm of subgrad 1088.924516 dualbound = 2756314.601063, lowerbound=1184311.601063, norm of subgrad 39.840662 stepsize= 1.000000 +dualbound = 2756479.638117, lowerbound=1191176.638117, norm of subgrad 1092.041500 dualbound = 2756479.638117, lowerbound=1191176.638117, norm of subgrad 39.281510 stepsize= 1.000000 +dualbound = 2756651.075744, lowerbound=1187010.075744, norm of subgrad 1090.143603 dualbound = 2756651.075744, lowerbound=1187010.075744, norm of subgrad 39.679184 stepsize= 1.000000 +dualbound = 2756784.250293, lowerbound=1183985.250293, norm of subgrad 1088.763175 dualbound = 2756784.250293, lowerbound=1183985.250293, norm of subgrad 39.410336 stepsize= 1.000000 +dualbound = 2756941.752414, lowerbound=1187842.752414, norm of subgrad 1090.550665 dualbound = 2756941.752414, lowerbound=1187842.752414, norm of subgrad 40.193309 stepsize= 1.000000 +dualbound = 2757082.277123, lowerbound=1183378.277123, norm of subgrad 1088.495419 dualbound = 2757082.277123, lowerbound=1183378.277123, norm of subgrad 39.806089 stepsize= 1.000000 +dualbound = 2757245.653414, lowerbound=1185344.653414, norm of subgrad 1089.424001 dualbound = 2757245.653414, lowerbound=1185344.653414, norm of subgrad 40.784510 stepsize= 1.000000 +dualbound = 2757407.948553, lowerbound=1188057.948553, norm of subgrad 1090.628694 dualbound = 2757407.948553, lowerbound=1188057.948553, norm of subgrad 39.689988 stepsize= 1.000000 +dualbound = 2757575.231534, lowerbound=1181600.231534, norm of subgrad 1087.682505 dualbound = 2757575.231534, lowerbound=1181600.231534, norm of subgrad 40.252739 stepsize= 1.000000 +dualbound = 2757727.858124, lowerbound=1188761.858124, norm of subgrad 1090.984353 dualbound = 2757727.858124, lowerbound=1188761.858124, norm of subgrad 40.467599 stepsize= 1.000000 +dualbound = 2757875.943993, lowerbound=1186098.943993, norm of subgrad 1089.734804 dualbound = 2757875.943993, lowerbound=1186098.943993, norm of subgrad 39.636926 stepsize= 1.000000 +dualbound = 2758063.567569, lowerbound=1187871.567569, norm of subgrad 1090.548288 dualbound = 2758063.567569, lowerbound=1187871.567569, norm of subgrad 40.145032 stepsize= 1.000000 +dualbound = 2758191.684935, lowerbound=1183557.684935, norm of subgrad 1088.562669 dualbound = 2758191.684935, lowerbound=1183557.684935, norm of subgrad 39.231586 stepsize= 1.000000 +dualbound = 2758369.616708, lowerbound=1183313.616708, norm of subgrad 1088.460664 dualbound = 2758369.616708, lowerbound=1183313.616708, norm of subgrad 40.136415 stepsize= 1.000000 +dualbound = 2758516.546181, lowerbound=1187110.546181, norm of subgrad 1090.212157 dualbound = 2758516.546181, lowerbound=1187110.546181, norm of subgrad 39.986616 stepsize= 1.000000 +dualbound = 2758692.283891, lowerbound=1184520.283891, norm of subgrad 1089.028137 dualbound = 2758692.283891, lowerbound=1184520.283891, norm of subgrad 40.468972 stepsize= 1.000000 +dualbound = 2758839.569844, lowerbound=1186841.569844, norm of subgrad 1090.095670 dualbound = 2758839.569844, lowerbound=1186841.569844, norm of subgrad 40.178178 stepsize= 1.000000 +dualbound = 2758996.653309, lowerbound=1186909.653309, norm of subgrad 1090.091580 dualbound = 2758996.653309, lowerbound=1186909.653309, norm of subgrad 39.332982 stepsize= 1.000000 +dualbound = 2759165.313162, lowerbound=1187429.313162, norm of subgrad 1090.395943 dualbound = 2759165.313162, lowerbound=1187429.313162, norm of subgrad 41.263299 stepsize= 1.000000 +dualbound = 2759286.793001, lowerbound=1186597.793001, norm of subgrad 1089.987978 dualbound = 2759286.793001, lowerbound=1186597.793001, norm of subgrad 39.968486 stepsize= 1.000000 +dualbound = 2759443.895212, lowerbound=1189537.895212, norm of subgrad 1091.340412 dualbound = 2759443.895212, lowerbound=1189537.895212, norm of subgrad 40.535197 stepsize= 1.000000 +dualbound = 2759620.445945, lowerbound=1181578.445945, norm of subgrad 1087.688579 dualbound = 2759620.445945, lowerbound=1181578.445945, norm of subgrad 40.798906 stepsize= 1.000000 +dualbound = 2759757.250332, lowerbound=1188960.250332, norm of subgrad 1091.046860 dualbound = 2759757.250332, lowerbound=1188960.250332, norm of subgrad 39.494359 stepsize= 1.000000 +dualbound = 2759958.870374, lowerbound=1180462.870374, norm of subgrad 1087.172880 dualbound = 2759958.870374, lowerbound=1180462.870374, norm of subgrad 41.031939 stepsize= 1.000000 +dualbound = 2760059.066404, lowerbound=1191070.066404, norm of subgrad 1092.054058 dualbound = 2760059.066404, lowerbound=1191070.066404, norm of subgrad 40.152161 stepsize= 1.000000 +dualbound = 2760227.599321, lowerbound=1183942.599321, norm of subgrad 1088.749098 dualbound = 2760227.599321, lowerbound=1183942.599321, norm of subgrad 40.006661 stepsize= 1.000000 +dualbound = 2760416.522276, lowerbound=1189137.522276, norm of subgrad 1091.112516 dualbound = 2760416.522276, lowerbound=1189137.522276, norm of subgrad 39.723078 stepsize= 1.000000 +dualbound = 2760587.204834, lowerbound=1185473.204834, norm of subgrad 1089.432056 dualbound = 2760587.204834, lowerbound=1185473.204834, norm of subgrad 39.492817 stepsize= 1.000000 +dualbound = 2760736.235504, lowerbound=1186721.235504, norm of subgrad 1090.029924 dualbound = 2760736.235504, lowerbound=1186721.235504, norm of subgrad 39.912788 stepsize= 1.000000 +dualbound = 2760889.384624, lowerbound=1190465.384624, norm of subgrad 1091.739614 dualbound = 2760889.384624, lowerbound=1190465.384624, norm of subgrad 39.788806 stepsize= 1.000000 +dualbound = 2761049.640610, lowerbound=1181271.640610, norm of subgrad 1087.515352 dualbound = 2761049.640610, lowerbound=1181271.640610, norm of subgrad 39.727270 stepsize= 1.000000 +dualbound = 2761217.718764, lowerbound=1185674.718764, norm of subgrad 1089.533257 dualbound = 2761217.718764, lowerbound=1185674.718764, norm of subgrad 39.699851 stepsize= 1.000000 +dualbound = 2761346.289555, lowerbound=1188872.289555, norm of subgrad 1091.057418 dualbound = 2761346.289555, lowerbound=1188872.289555, norm of subgrad 40.774634 stepsize= 1.000000 +dualbound = 2761500.036978, lowerbound=1184183.036978, norm of subgrad 1088.866400 dualbound = 2761500.036978, lowerbound=1184183.036978, norm of subgrad 40.009342 stepsize= 1.000000 +dualbound = 2761684.584338, lowerbound=1186625.584338, norm of subgrad 1089.982837 dualbound = 2761684.584338, lowerbound=1186625.584338, norm of subgrad 40.268441 stepsize= 1.000000 +dualbound = 2761794.042845, lowerbound=1187788.042845, norm of subgrad 1090.555383 dualbound = 2761794.042845, lowerbound=1187788.042845, norm of subgrad 40.403694 stepsize= 1.000000 +dualbound = 2761978.736318, lowerbound=1189810.736318, norm of subgrad 1091.444793 dualbound = 2761978.736318, lowerbound=1189810.736318, norm of subgrad 40.319889 stepsize= 1.000000 +dualbound = 2762163.389040, lowerbound=1184928.389040, norm of subgrad 1089.204934 dualbound = 2762163.389040, lowerbound=1184928.389040, norm of subgrad 40.294574 stepsize= 1.000000 +dualbound = 2762300.152859, lowerbound=1183523.152859, norm of subgrad 1088.557832 dualbound = 2762300.152859, lowerbound=1183523.152859, norm of subgrad 39.645477 stepsize= 1.000000 +dualbound = 2762470.695952, lowerbound=1186503.695952, norm of subgrad 1089.936097 dualbound = 2762470.695952, lowerbound=1186503.695952, norm of subgrad 40.342820 stepsize= 1.000000 +dualbound = 2762620.807135, lowerbound=1186216.807135, norm of subgrad 1089.757683 dualbound = 2762620.807135, lowerbound=1186216.807135, norm of subgrad 38.795762 stepsize= 1.000000 +dualbound = 2762806.317941, lowerbound=1189597.317941, norm of subgrad 1091.318156 dualbound = 2762806.317941, lowerbound=1189597.317941, norm of subgrad 39.541254 stepsize= 1.000000 +dualbound = 2762945.497242, lowerbound=1187979.497242, norm of subgrad 1090.565678 dualbound = 2762945.497242, lowerbound=1187979.497242, norm of subgrad 38.641678 stepsize= 1.000000 +dualbound = 2763107.240010, lowerbound=1189558.240010, norm of subgrad 1091.326367 dualbound = 2763107.240010, lowerbound=1189558.240010, norm of subgrad 39.959264 stepsize= 1.000000 +dualbound = 2763218.568745, lowerbound=1186496.568745, norm of subgrad 1089.943379 dualbound = 2763218.568745, lowerbound=1186496.568745, norm of subgrad 39.891462 stepsize= 1.000000 +dualbound = 2763374.395515, lowerbound=1188030.395515, norm of subgrad 1090.671534 dualbound = 2763374.395515, lowerbound=1188030.395515, norm of subgrad 41.107503 stepsize= 1.000000 +dualbound = 2763536.703077, lowerbound=1181938.703077, norm of subgrad 1087.857851 dualbound = 2763536.703077, lowerbound=1181938.703077, norm of subgrad 40.722323 stepsize= 1.000000 +dualbound = 2763687.964019, lowerbound=1189651.964019, norm of subgrad 1091.377553 dualbound = 2763687.964019, lowerbound=1189651.964019, norm of subgrad 40.053226 stepsize= 1.000000 +dualbound = 2763870.056653, lowerbound=1183626.056653, norm of subgrad 1088.588562 dualbound = 2763870.056653, lowerbound=1183626.056653, norm of subgrad 39.762956 stepsize= 1.000000 +dualbound = 2764042.986145, lowerbound=1188992.986145, norm of subgrad 1091.076068 dualbound = 2764042.986145, lowerbound=1188992.986145, norm of subgrad 40.335214 stepsize= 1.000000 +dualbound = 2764184.174090, lowerbound=1188884.174090, norm of subgrad 1090.991372 dualbound = 2764184.174090, lowerbound=1188884.174090, norm of subgrad 38.976762 stepsize= 1.000000 +dualbound = 2764353.935450, lowerbound=1185112.935450, norm of subgrad 1089.268073 dualbound = 2764353.935450, lowerbound=1185112.935450, norm of subgrad 39.519127 stepsize= 1.000000 +dualbound = 2764485.635636, lowerbound=1186437.635636, norm of subgrad 1089.887442 dualbound = 2764485.635636, lowerbound=1186437.635636, norm of subgrad 39.353528 stepsize= 1.000000 +dualbound = 2764660.991864, lowerbound=1185020.991864, norm of subgrad 1089.235049 dualbound = 2764660.991864, lowerbound=1185020.991864, norm of subgrad 39.841639 stepsize= 1.000000 +dualbound = 2764809.874966, lowerbound=1187829.874966, norm of subgrad 1090.514042 dualbound = 2764809.874966, lowerbound=1187829.874966, norm of subgrad 39.241344 stepsize= 1.000000 +dualbound = 2764976.938269, lowerbound=1186296.938269, norm of subgrad 1089.845832 dualbound = 2764976.938269, lowerbound=1186296.938269, norm of subgrad 40.423549 stepsize= 1.000000 +dualbound = 2765115.601063, lowerbound=1191905.601063, norm of subgrad 1092.403589 dualbound = 2765115.601063, lowerbound=1191905.601063, norm of subgrad 39.732390 stepsize= 1.000000 +dualbound = 2765266.163172, lowerbound=1188091.163172, norm of subgrad 1090.662717 dualbound = 2765266.163172, lowerbound=1188091.163172, norm of subgrad 40.056986 stepsize= 1.000000 +dualbound = 2765443.784410, lowerbound=1184701.784410, norm of subgrad 1089.104120 dualbound = 2765443.784410, lowerbound=1184701.784410, norm of subgrad 40.294184 stepsize= 1.000000 +dualbound = 2765584.465276, lowerbound=1188711.465276, norm of subgrad 1090.955758 dualbound = 2765584.465276, lowerbound=1188711.465276, norm of subgrad 40.170647 stepsize= 1.000000 +dualbound = 2765738.788058, lowerbound=1186399.788058, norm of subgrad 1089.900816 dualbound = 2765738.788058, lowerbound=1186399.788058, norm of subgrad 40.476200 stepsize= 1.000000 +dualbound = 2765894.175226, lowerbound=1187506.175226, norm of subgrad 1090.384875 dualbound = 2765894.175226, lowerbound=1187506.175226, norm of subgrad 39.854575 stepsize= 1.000000 +dualbound = 2766046.561525, lowerbound=1189719.561525, norm of subgrad 1091.409438 dualbound = 2766046.561525, lowerbound=1189719.561525, norm of subgrad 40.092222 stepsize= 1.000000 +dualbound = 2766221.922679, lowerbound=1182493.922679, norm of subgrad 1088.077168 dualbound = 2766221.922679, lowerbound=1182493.922679, norm of subgrad 39.916928 stepsize= 1.000000 +dualbound = 2766373.248054, lowerbound=1189872.248054, norm of subgrad 1091.478927 dualbound = 2766373.248054, lowerbound=1189872.248054, norm of subgrad 40.066512 stepsize= 1.000000 +dualbound = 2766536.294876, lowerbound=1182586.294876, norm of subgrad 1088.142589 dualbound = 2766536.294876, lowerbound=1182586.294876, norm of subgrad 40.386221 stepsize= 1.000000 +dualbound = 2766687.896081, lowerbound=1187838.896081, norm of subgrad 1090.552106 dualbound = 2766687.896081, lowerbound=1187838.896081, norm of subgrad 40.206980 stepsize= 1.000000 +dualbound = 2766845.667305, lowerbound=1184580.667305, norm of subgrad 1089.030150 dualbound = 2766845.667305, lowerbound=1184580.667305, norm of subgrad 39.544547 stepsize= 1.000000 +dualbound = 2767000.380963, lowerbound=1189132.380963, norm of subgrad 1091.172938 dualbound = 2767000.380963, lowerbound=1189132.380963, norm of subgrad 40.996508 stepsize= 1.000000 +dualbound = 2767132.920508, lowerbound=1184237.920508, norm of subgrad 1088.870020 dualbound = 2767132.920508, lowerbound=1184237.920508, norm of subgrad 39.147663 stepsize= 1.000000 +dualbound = 2767344.467414, lowerbound=1186126.467414, norm of subgrad 1089.745598 dualbound = 2767344.467414, lowerbound=1186126.467414, norm of subgrad 40.380031 stepsize= 1.000000 +dualbound = 2767451.938926, lowerbound=1186209.938926, norm of subgrad 1089.807294 dualbound = 2767451.938926, lowerbound=1186209.938926, norm of subgrad 39.717396 stepsize= 1.000000 +dualbound = 2767630.587825, lowerbound=1187388.587825, norm of subgrad 1090.353423 dualbound = 2767630.587825, lowerbound=1187388.587825, norm of subgrad 40.751060 stepsize= 1.000000 +dualbound = 2767790.876679, lowerbound=1188610.876679, norm of subgrad 1090.872530 dualbound = 2767790.876679, lowerbound=1188610.876679, norm of subgrad 39.399097 stepsize= 1.000000 +dualbound = 2767936.840431, lowerbound=1187957.840431, norm of subgrad 1090.613974 dualbound = 2767936.840431, lowerbound=1187957.840431, norm of subgrad 40.335639 stepsize= 1.000000 +dualbound = 2768081.992891, lowerbound=1185441.992891, norm of subgrad 1089.465003 dualbound = 2768081.992891, lowerbound=1185441.992891, norm of subgrad 40.461741 stepsize= 1.000000 +dualbound = 2768232.658851, lowerbound=1191358.658851, norm of subgrad 1092.160088 dualbound = 2768232.658851, lowerbound=1191358.658851, norm of subgrad 40.070762 stepsize= 1.000000 +dualbound = 2768407.485602, lowerbound=1185865.485602, norm of subgrad 1089.657967 dualbound = 2768407.485602, lowerbound=1185865.485602, norm of subgrad 40.790032 stepsize= 1.000000 +dualbound = 2768526.641461, lowerbound=1187069.641461, norm of subgrad 1090.193855 dualbound = 2768526.641461, lowerbound=1187069.641461, norm of subgrad 39.650421 stepsize= 1.000000 +dualbound = 2768705.730528, lowerbound=1187568.730528, norm of subgrad 1090.469042 dualbound = 2768705.730528, lowerbound=1187568.730528, norm of subgrad 41.630386 stepsize= 1.000000 +dualbound = 2768830.971740, lowerbound=1189561.971740, norm of subgrad 1091.332659 dualbound = 2768830.971740, lowerbound=1189561.971740, norm of subgrad 39.626269 stepsize= 1.000000 +dualbound = 2769041.392340, lowerbound=1187069.392340, norm of subgrad 1090.138245 dualbound = 2769041.392340, lowerbound=1187069.392340, norm of subgrad 39.273663 stepsize= 1.000000 +dualbound = 2769185.019530, lowerbound=1188354.019530, norm of subgrad 1090.774963 dualbound = 2769185.019530, lowerbound=1188354.019530, norm of subgrad 39.744524 stepsize= 1.000000 +dualbound = 2769307.913490, lowerbound=1183602.913490, norm of subgrad 1088.612380 dualbound = 2769307.913490, lowerbound=1183602.913490, norm of subgrad 39.961156 stepsize= 1.000000 +dualbound = 2769496.278922, lowerbound=1189548.278922, norm of subgrad 1091.312640 dualbound = 2769496.278922, lowerbound=1189548.278922, norm of subgrad 40.042046 stepsize= 1.000000 +dualbound = 2769631.380740, lowerbound=1185553.380740, norm of subgrad 1089.493176 dualbound = 2769631.380740, lowerbound=1185553.380740, norm of subgrad 39.712741 stepsize= 1.000000 +dualbound = 2769823.886846, lowerbound=1190659.886846, norm of subgrad 1091.805792 dualbound = 2769823.886846, lowerbound=1190659.886846, norm of subgrad 39.654837 stepsize= 1.000000 +dualbound = 2769949.353943, lowerbound=1187622.353943, norm of subgrad 1090.444567 dualbound = 2769949.353943, lowerbound=1187622.353943, norm of subgrad 39.654345 stepsize= 1.000000 +dualbound = 2770117.432803, lowerbound=1187835.432803, norm of subgrad 1090.519799 dualbound = 2770117.432803, lowerbound=1187835.432803, norm of subgrad 39.573714 stepsize= 1.000000 +dualbound = 2770248.424598, lowerbound=1184600.424598, norm of subgrad 1089.060340 dualbound = 2770248.424598, lowerbound=1184600.424598, norm of subgrad 39.786829 stepsize= 1.000000 +dualbound = 2770429.674696, lowerbound=1182659.674696, norm of subgrad 1088.175388 dualbound = 2770429.674696, lowerbound=1182659.674696, norm of subgrad 40.586329 stepsize= 1.000000 +dualbound = 2770554.497072, lowerbound=1190816.497072, norm of subgrad 1091.926965 dualbound = 2770554.497072, lowerbound=1190816.497072, norm of subgrad 40.159960 stepsize= 1.000000 +dualbound = 2770732.573301, lowerbound=1187907.573301, norm of subgrad 1090.573048 dualbound = 2770732.573301, lowerbound=1187907.573301, norm of subgrad 40.250171 stepsize= 1.000000 +dualbound = 2770879.835494, lowerbound=1189010.835494, norm of subgrad 1091.081498 dualbound = 2770879.835494, lowerbound=1189010.835494, norm of subgrad 39.940734 stepsize= 1.000000 +dualbound = 2771046.149506, lowerbound=1185076.149506, norm of subgrad 1089.286991 dualbound = 2771046.149506, lowerbound=1185076.149506, norm of subgrad 40.451378 stepsize= 1.000000 +dualbound = 2771191.039611, lowerbound=1188614.039611, norm of subgrad 1090.918897 dualbound = 2771191.039611, lowerbound=1188614.039611, norm of subgrad 40.433774 stepsize= 1.000000 +dualbound = 2771341.806680, lowerbound=1187089.806680, norm of subgrad 1090.231079 dualbound = 2771341.806680, lowerbound=1187089.806680, norm of subgrad 40.801557 stepsize= 1.000000 +dualbound = 2771492.526150, lowerbound=1188789.526150, norm of subgrad 1090.975035 dualbound = 2771492.526150, lowerbound=1188789.526150, norm of subgrad 39.846198 stepsize= 1.000000 +dualbound = 2771639.849454, lowerbound=1189113.849454, norm of subgrad 1091.114499 dualbound = 2771639.849454, lowerbound=1189113.849454, norm of subgrad 39.551527 stepsize= 1.000000 +dualbound = 2771841.352846, lowerbound=1188640.352846, norm of subgrad 1090.920874 dualbound = 2771841.352846, lowerbound=1188640.352846, norm of subgrad 40.859557 stepsize= 1.000000 +dualbound = 2771960.314636, lowerbound=1187982.314636, norm of subgrad 1090.616942 dualbound = 2771960.314636, lowerbound=1187982.314636, norm of subgrad 39.773883 stepsize= 1.000000 +dualbound = 2772098.344919, lowerbound=1189952.344919, norm of subgrad 1091.551806 dualbound = 2772098.344919, lowerbound=1189952.344919, norm of subgrad 40.878237 stepsize= 1.000000 +dualbound = 2772248.303141, lowerbound=1180550.303141, norm of subgrad 1087.219528 dualbound = 2772248.303141, lowerbound=1180550.303141, norm of subgrad 40.570411 stepsize= 1.000000 +dualbound = 2772426.011284, lowerbound=1190899.011284, norm of subgrad 1091.947806 dualbound = 2772426.011284, lowerbound=1190899.011284, norm of subgrad 40.357256 stepsize= 1.000000 +dualbound = 2772592.373993, lowerbound=1189739.373993, norm of subgrad 1091.441420 dualbound = 2772592.373993, lowerbound=1189739.373993, norm of subgrad 40.882303 stepsize= 1.000000 +dualbound = 2772743.412174, lowerbound=1188690.412174, norm of subgrad 1090.940609 dualbound = 2772743.412174, lowerbound=1188690.412174, norm of subgrad 40.150195 stepsize= 1.000000 +dualbound = 2772909.649897, lowerbound=1185111.649897, norm of subgrad 1089.297319 dualbound = 2772909.649897, lowerbound=1185111.649897, norm of subgrad 40.289424 stepsize= 1.000000 +dualbound = 2773032.810262, lowerbound=1189028.810262, norm of subgrad 1091.086527 dualbound = 2773032.810262, lowerbound=1189028.810262, norm of subgrad 39.549467 stepsize= 1.000000 +dualbound = 2773233.172279, lowerbound=1189926.172279, norm of subgrad 1091.486222 dualbound = 2773233.172279, lowerbound=1189926.172279, norm of subgrad 40.204005 stepsize= 1.000000 +dualbound = 2773347.124773, lowerbound=1188827.124773, norm of subgrad 1091.023430 dualbound = 2773347.124773, lowerbound=1188827.124773, norm of subgrad 40.236209 stepsize= 1.000000 +dualbound = 2773521.067064, lowerbound=1189463.067064, norm of subgrad 1091.296049 dualbound = 2773521.067064, lowerbound=1189463.067064, norm of subgrad 40.471500 stepsize= 1.000000 +dualbound = 2773679.507003, lowerbound=1182558.507003, norm of subgrad 1088.114198 dualbound = 2773679.507003, lowerbound=1182558.507003, norm of subgrad 39.905387 stepsize= 1.000000 +dualbound = 2773858.072400, lowerbound=1192881.072400, norm of subgrad 1092.822068 dualbound = 2773858.072400, lowerbound=1192881.072400, norm of subgrad 39.466003 stepsize= 1.000000 +dualbound = 2774012.105556, lowerbound=1181850.105556, norm of subgrad 1087.761511 dualbound = 2774012.105556, lowerbound=1181850.105556, norm of subgrad 39.102854 stepsize= 1.000000 +dualbound = 2774164.388352, lowerbound=1188916.388352, norm of subgrad 1091.035924 dualbound = 2774164.388352, lowerbound=1188916.388352, norm of subgrad 39.940991 stepsize= 1.000000 +dualbound = 2774300.178383, lowerbound=1189712.178383, norm of subgrad 1091.389105 dualbound = 2774300.178383, lowerbound=1189712.178383, norm of subgrad 39.418143 stepsize= 1.000000 +dualbound = 2774473.747414, lowerbound=1191351.747414, norm of subgrad 1092.137696 dualbound = 2774473.747414, lowerbound=1191351.747414, norm of subgrad 39.831759 stepsize= 1.000000 +dualbound = 2774625.267470, lowerbound=1188054.267470, norm of subgrad 1090.627923 dualbound = 2774625.267470, lowerbound=1188054.267470, norm of subgrad 39.579288 stepsize= 1.000000 +dualbound = 2774772.289692, lowerbound=1185745.289692, norm of subgrad 1089.610155 dualbound = 2774772.289692, lowerbound=1185745.289692, norm of subgrad 40.645076 stepsize= 1.000000 +dualbound = 2774909.695392, lowerbound=1193996.695392, norm of subgrad 1093.379941 dualbound = 2774909.695392, lowerbound=1193996.695392, norm of subgrad 40.254263 stepsize= 1.000000 +dualbound = 2775065.538106, lowerbound=1189097.538106, norm of subgrad 1091.127187 dualbound = 2775065.538106, lowerbound=1189097.538106, norm of subgrad 40.209983 stepsize= 1.000000 +dualbound = 2775239.540209, lowerbound=1189747.540209, norm of subgrad 1091.403015 dualbound = 2775239.540209, lowerbound=1189747.540209, norm of subgrad 39.837195 stepsize= 1.000000 +dualbound = 2775405.146728, lowerbound=1188120.146728, norm of subgrad 1090.663627 dualbound = 2775405.146728, lowerbound=1188120.146728, norm of subgrad 39.907474 stepsize= 1.000000 +dualbound = 2775560.515457, lowerbound=1187501.515457, norm of subgrad 1090.343760 dualbound = 2775560.515457, lowerbound=1187501.515457, norm of subgrad 38.773299 stepsize= 1.000000 +dualbound = 2775695.037351, lowerbound=1188074.037351, norm of subgrad 1090.668161 dualbound = 2775695.037351, lowerbound=1188074.037351, norm of subgrad 40.218427 stepsize= 1.000000 +dualbound = 2775838.999279, lowerbound=1186994.999279, norm of subgrad 1090.149072 dualbound = 2775838.999279, lowerbound=1186994.999279, norm of subgrad 39.673189 stepsize= 1.000000 +dualbound = 2776014.686836, lowerbound=1182248.686836, norm of subgrad 1087.979635 dualbound = 2776014.686836, lowerbound=1182248.686836, norm of subgrad 40.332215 stepsize= 1.000000 +dualbound = 2776143.001461, lowerbound=1190955.001461, norm of subgrad 1091.961538 dualbound = 2776143.001461, lowerbound=1190955.001461, norm of subgrad 39.412113 stepsize= 1.000000 +dualbound = 2776306.003078, lowerbound=1189968.003078, norm of subgrad 1091.541572 dualbound = 2776306.003078, lowerbound=1189968.003078, norm of subgrad 40.718566 stepsize= 1.000000 +dualbound = 2776451.585362, lowerbound=1190071.585362, norm of subgrad 1091.578025 dualbound = 2776451.585362, lowerbound=1190071.585362, norm of subgrad 40.206744 stepsize= 1.000000 +dualbound = 2776644.506243, lowerbound=1187109.506243, norm of subgrad 1090.202048 dualbound = 2776644.506243, lowerbound=1187109.506243, norm of subgrad 40.297902 stepsize= 1.000000 +dualbound = 2776768.865680, lowerbound=1188598.865680, norm of subgrad 1090.908276 dualbound = 2776768.865680, lowerbound=1188598.865680, norm of subgrad 40.079414 stepsize= 1.000000 +dualbound = 2776908.639504, lowerbound=1189451.639504, norm of subgrad 1091.327009 dualbound = 2776908.639504, lowerbound=1189451.639504, norm of subgrad 41.021626 stepsize= 1.000000 +dualbound = 2777063.547188, lowerbound=1187689.547188, norm of subgrad 1090.479962 dualbound = 2777063.547188, lowerbound=1187689.547188, norm of subgrad 40.148570 stepsize= 1.000000 +dualbound = 2777223.882407, lowerbound=1189379.882407, norm of subgrad 1091.288176 dualbound = 2777223.882407, lowerbound=1189379.882407, norm of subgrad 41.113687 stepsize= 1.000000 +dualbound = 2777347.987361, lowerbound=1190520.987361, norm of subgrad 1091.796221 dualbound = 2777347.987361, lowerbound=1190520.987361, norm of subgrad 40.275364 stepsize= 1.000000 +dualbound = 2777548.527097, lowerbound=1186054.527097, norm of subgrad 1089.702495 dualbound = 2777548.527097, lowerbound=1186054.527097, norm of subgrad 39.969235 stepsize= 1.000000 +dualbound = 2777725.405741, lowerbound=1189083.405741, norm of subgrad 1091.092299 dualbound = 2777725.405741, lowerbound=1189083.405741, norm of subgrad 39.697338 stepsize= 1.000000 +dualbound = 2777844.790686, lowerbound=1185619.790686, norm of subgrad 1089.527324 dualbound = 2777844.790686, lowerbound=1185619.790686, norm of subgrad 39.615463 stepsize= 1.000000 +dualbound = 2778002.313691, lowerbound=1190499.313691, norm of subgrad 1091.777136 dualbound = 2778002.313691, lowerbound=1190499.313691, norm of subgrad 40.441600 stepsize= 1.000000 +dualbound = 2778135.341801, lowerbound=1191734.341801, norm of subgrad 1092.387908 dualbound = 2778135.341801, lowerbound=1191734.341801, norm of subgrad 41.352486 stepsize= 1.000000 +dualbound = 2778289.728587, lowerbound=1186928.728587, norm of subgrad 1090.151241 dualbound = 2778289.728587, lowerbound=1186928.728587, norm of subgrad 40.686445 stepsize= 1.000000 +dualbound = 2778444.726171, lowerbound=1192395.726171, norm of subgrad 1092.641170 dualbound = 2778444.726171, lowerbound=1192395.726171, norm of subgrad 40.298853 stepsize= 1.000000 +dualbound = 2778626.991657, lowerbound=1188905.991657, norm of subgrad 1091.035743 dualbound = 2778626.991657, lowerbound=1188905.991657, norm of subgrad 40.438416 stepsize= 1.000000 +dualbound = 2778790.795754, lowerbound=1187080.795754, norm of subgrad 1090.181084 dualbound = 2778790.795754, lowerbound=1187080.795754, norm of subgrad 39.721582 stepsize= 1.000000 +dualbound = 2778934.838047, lowerbound=1188200.838047, norm of subgrad 1090.728123 dualbound = 2778934.838047, lowerbound=1188200.838047, norm of subgrad 40.386165 stepsize= 1.000000 +dualbound = 2779075.828096, lowerbound=1186857.828096, norm of subgrad 1090.093036 dualbound = 2779075.828096, lowerbound=1186857.828096, norm of subgrad 39.824491 stepsize= 1.000000 +dualbound = 2779252.261280, lowerbound=1187850.261280, norm of subgrad 1090.527974 dualbound = 2779252.261280, lowerbound=1187850.261280, norm of subgrad 39.716913 stepsize= 1.000000 +dualbound = 2779391.603089, lowerbound=1186282.603089, norm of subgrad 1089.797047 dualbound = 2779391.603089, lowerbound=1186282.603089, norm of subgrad 38.914545 stepsize= 1.000000 +dualbound = 2779572.928127, lowerbound=1190764.928127, norm of subgrad 1091.865343 dualbound = 2779572.928127, lowerbound=1190764.928127, norm of subgrad 39.828696 stepsize= 1.000000 +dualbound = 2779703.864457, lowerbound=1189034.864457, norm of subgrad 1091.091593 dualbound = 2779703.864457, lowerbound=1189034.864457, norm of subgrad 39.710658 stepsize= 1.000000 +dualbound = 2779856.249809, lowerbound=1187156.249809, norm of subgrad 1090.246876 dualbound = 2779856.249809, lowerbound=1187156.249809, norm of subgrad 40.427532 stepsize= 1.000000 +dualbound = 2779994.107293, lowerbound=1192768.107293, norm of subgrad 1092.799207 dualbound = 2779994.107293, lowerbound=1192768.107293, norm of subgrad 39.747421 stepsize= 1.000000 +dualbound = 2780191.823208, lowerbound=1185528.823208, norm of subgrad 1089.433258 dualbound = 2780191.823208, lowerbound=1185528.823208, norm of subgrad 39.162685 stepsize= 1.000000 +dualbound = 2780333.861543, lowerbound=1188271.861543, norm of subgrad 1090.739594 dualbound = 2780333.861543, lowerbound=1188271.861543, norm of subgrad 39.787414 stepsize= 1.000000 +dualbound = 2780476.008121, lowerbound=1188296.008121, norm of subgrad 1090.772207 dualbound = 2780476.008121, lowerbound=1188296.008121, norm of subgrad 40.375074 stepsize= 1.000000 +dualbound = 2780605.606572, lowerbound=1184480.606572, norm of subgrad 1089.002574 dualbound = 2780605.606572, lowerbound=1184480.606572, norm of subgrad 39.693809 stepsize= 1.000000 +dualbound = 2780773.452873, lowerbound=1188933.452873, norm of subgrad 1091.064367 dualbound = 2780773.452873, lowerbound=1188933.452873, norm of subgrad 40.692091 stepsize= 1.000000 +dualbound = 2780906.539743, lowerbound=1188593.539743, norm of subgrad 1090.886126 dualbound = 2780906.539743, lowerbound=1188593.539743, norm of subgrad 39.649551 stepsize= 1.000000 +dualbound = 2781085.360701, lowerbound=1189790.360701, norm of subgrad 1091.470275 dualbound = 2781085.360701, lowerbound=1189790.360701, norm of subgrad 41.180347 stepsize= 1.000000 +dualbound = 2781236.148338, lowerbound=1186893.148338, norm of subgrad 1090.131711 dualbound = 2781236.148338, lowerbound=1186893.148338, norm of subgrad 40.555982 stepsize= 1.000000 +dualbound = 2781406.352853, lowerbound=1188471.352853, norm of subgrad 1090.841580 dualbound = 2781406.352853, lowerbound=1188471.352853, norm of subgrad 40.425295 stepsize= 1.000000 +dualbound = 2781527.687496, lowerbound=1192717.687496, norm of subgrad 1092.793067 dualbound = 2781527.687496, lowerbound=1192717.687496, norm of subgrad 40.004183 stepsize= 1.000000 +dualbound = 2781702.820271, lowerbound=1187898.820271, norm of subgrad 1090.572244 dualbound = 2781702.820271, lowerbound=1187898.820271, norm of subgrad 40.300531 stepsize= 1.000000 +dualbound = 2781869.080283, lowerbound=1186467.080283, norm of subgrad 1089.911501 dualbound = 2781869.080283, lowerbound=1186467.080283, norm of subgrad 40.078174 stepsize= 1.000000 +dualbound = 2782024.905127, lowerbound=1186073.905127, norm of subgrad 1089.700833 dualbound = 2782024.905127, lowerbound=1186073.905127, norm of subgrad 39.112975 stepsize= 1.000000 +dualbound = 2782179.909144, lowerbound=1192772.909144, norm of subgrad 1092.801862 dualbound = 2782179.909144, lowerbound=1192772.909144, norm of subgrad 39.975042 stepsize= 1.000000 +dualbound = 2782309.336935, lowerbound=1188450.336935, norm of subgrad 1090.858532 dualbound = 2782309.336935, lowerbound=1188450.336935, norm of subgrad 40.637763 stepsize= 1.000000 +dualbound = 2782445.948884, lowerbound=1191445.948884, norm of subgrad 1092.208748 dualbound = 2782445.948884, lowerbound=1191445.948884, norm of subgrad 40.132430 stepsize= 1.000000 +dualbound = 2782634.575888, lowerbound=1189365.575888, norm of subgrad 1091.244050 dualbound = 2782634.575888, lowerbound=1189365.575888, norm of subgrad 40.455247 stepsize= 1.000000 +dualbound = 2782789.454145, lowerbound=1187571.454145, norm of subgrad 1090.431774 dualbound = 2782789.454145, lowerbound=1187571.454145, norm of subgrad 40.309779 stepsize= 1.000000 +dualbound = 2782933.810214, lowerbound=1190142.810214, norm of subgrad 1091.642254 dualbound = 2782933.810214, lowerbound=1190142.810214, norm of subgrad 41.040907 stepsize= 1.000000 +dualbound = 2783066.494407, lowerbound=1188451.494407, norm of subgrad 1090.826977 dualbound = 2783066.494407, lowerbound=1188451.494407, norm of subgrad 39.808092 stepsize= 1.000000 +dualbound = 2783246.335589, lowerbound=1184308.335589, norm of subgrad 1088.913833 dualbound = 2783246.335589, lowerbound=1184308.335589, norm of subgrad 40.060469 stepsize= 1.000000 +dualbound = 2783403.679916, lowerbound=1188900.679916, norm of subgrad 1091.038349 dualbound = 2783403.679916, lowerbound=1188900.679916, norm of subgrad 40.265920 stepsize= 1.000000 +dualbound = 2783540.733143, lowerbound=1189024.733143, norm of subgrad 1091.120403 dualbound = 2783540.733143, lowerbound=1189024.733143, norm of subgrad 40.694634 stepsize= 1.000000 +dualbound = 2783697.134865, lowerbound=1190165.134865, norm of subgrad 1091.597057 dualbound = 2783697.134865, lowerbound=1190165.134865, norm of subgrad 39.691331 stepsize= 1.000000 +dualbound = 2783869.877340, lowerbound=1181735.877340, norm of subgrad 1087.709923 dualbound = 2783869.877340, lowerbound=1181735.877340, norm of subgrad 39.366769 stepsize= 1.000000 +dualbound = 2784036.999126, lowerbound=1189486.999126, norm of subgrad 1091.254324 dualbound = 2784036.999126, lowerbound=1189486.999126, norm of subgrad 38.937409 stepsize= 1.000000 +dualbound = 2784188.585972, lowerbound=1187828.585972, norm of subgrad 1090.520328 dualbound = 2784188.585972, lowerbound=1187828.585972, norm of subgrad 39.466275 stepsize= 1.000000 +dualbound = 2784325.524933, lowerbound=1189532.524933, norm of subgrad 1091.311379 dualbound = 2784325.524933, lowerbound=1189532.524933, norm of subgrad 39.559309 stepsize= 1.000000 +dualbound = 2784477.099878, lowerbound=1192544.099878, norm of subgrad 1092.707234 dualbound = 2784477.099878, lowerbound=1192544.099878, norm of subgrad 40.206653 stepsize= 1.000000 +dualbound = 2784620.446985, lowerbound=1191451.446985, norm of subgrad 1092.197073 dualbound = 2784620.446985, lowerbound=1191451.446985, norm of subgrad 39.828973 stepsize= 1.000000 +dualbound = 2784800.004198, lowerbound=1187507.004198, norm of subgrad 1090.397177 dualbound = 2784800.004198, lowerbound=1187507.004198, norm of subgrad 40.479096 stepsize= 1.000000 +dualbound = 2784943.135634, lowerbound=1189761.135634, norm of subgrad 1091.399622 dualbound = 2784943.135634, lowerbound=1189761.135634, norm of subgrad 39.180753 stepsize= 1.000000 +dualbound = 2785130.504920, lowerbound=1188258.504920, norm of subgrad 1090.711009 dualbound = 2785130.504920, lowerbound=1188258.504920, norm of subgrad 39.741279 stepsize= 1.000000 +dualbound = 2785239.461426, lowerbound=1188445.461426, norm of subgrad 1090.830171 dualbound = 2785239.461426, lowerbound=1188445.461426, norm of subgrad 39.673121 stepsize= 1.000000 +dualbound = 2785374.497533, lowerbound=1187774.497533, norm of subgrad 1090.527165 dualbound = 2785374.497533, lowerbound=1187774.497533, norm of subgrad 40.125255 stepsize= 1.000000 +dualbound = 2785554.106560, lowerbound=1190608.106560, norm of subgrad 1091.793985 dualbound = 2785554.106560, lowerbound=1190608.106560, norm of subgrad 39.819707 stepsize= 1.000000 +dualbound = 2785702.413014, lowerbound=1187042.413014, norm of subgrad 1090.152931 dualbound = 2785702.413014, lowerbound=1187042.413014, norm of subgrad 39.233996 stepsize= 1.000000 +dualbound = 2785890.899388, lowerbound=1189870.899388, norm of subgrad 1091.458611 dualbound = 2785890.899388, lowerbound=1189870.899388, norm of subgrad 39.993579 stepsize= 1.000000 +dualbound = 2786016.862465, lowerbound=1188186.862465, norm of subgrad 1090.710256 dualbound = 2786016.862465, lowerbound=1188186.862465, norm of subgrad 39.849254 stepsize= 1.000000 +dualbound = 2786146.970963, lowerbound=1193885.970963, norm of subgrad 1093.310098 dualbound = 2786146.970963, lowerbound=1193885.970963, norm of subgrad 39.637211 stepsize= 1.000000 +dualbound = 2786299.735460, lowerbound=1189555.735460, norm of subgrad 1091.359581 dualbound = 2786299.735460, lowerbound=1189555.735460, norm of subgrad 40.777009 stepsize= 1.000000 +dualbound = 2786447.537345, lowerbound=1188138.537345, norm of subgrad 1090.654179 dualbound = 2786447.537345, lowerbound=1188138.537345, norm of subgrad 39.189308 stepsize= 1.000000 +dualbound = 2786651.401923, lowerbound=1185873.401923, norm of subgrad 1089.634527 dualbound = 2786651.401923, lowerbound=1185873.401923, norm of subgrad 40.421091 stepsize= 1.000000 +dualbound = 2786786.281231, lowerbound=1191017.281231, norm of subgrad 1091.999213 dualbound = 2786786.281231, lowerbound=1191017.281231, norm of subgrad 39.747696 stepsize= 1.000000 +dualbound = 2786946.741069, lowerbound=1187916.741069, norm of subgrad 1090.588713 dualbound = 2786946.741069, lowerbound=1187916.741069, norm of subgrad 40.341788 stepsize= 1.000000 +dualbound = 2787086.483933, lowerbound=1189273.483933, norm of subgrad 1091.205519 dualbound = 2787086.483933, lowerbound=1189273.483933, norm of subgrad 39.946750 stepsize= 1.000000 +dualbound = 2787230.076187, lowerbound=1189580.076187, norm of subgrad 1091.357905 dualbound = 2787230.076187, lowerbound=1189580.076187, norm of subgrad 40.318634 stepsize= 1.000000 +dualbound = 2787381.141895, lowerbound=1192010.141895, norm of subgrad 1092.457844 dualbound = 2787381.141895, lowerbound=1192010.141895, norm of subgrad 40.063271 stepsize= 1.000000 +dualbound = 2787561.681105, lowerbound=1191830.681105, norm of subgrad 1092.360600 dualbound = 2787561.681105, lowerbound=1191830.681105, norm of subgrad 40.019235 stepsize= 1.000000 +dualbound = 2787694.854766, lowerbound=1188685.854766, norm of subgrad 1090.918812 dualbound = 2787694.854766, lowerbound=1188685.854766, norm of subgrad 39.384942 stepsize= 1.000000 +dualbound = 2787851.602621, lowerbound=1189832.602621, norm of subgrad 1091.481380 dualbound = 2787851.602621, lowerbound=1189832.602621, norm of subgrad 40.690882 stepsize= 1.000000 +dualbound = 2787999.931632, lowerbound=1189051.931632, norm of subgrad 1091.110412 dualbound = 2787999.931632, lowerbound=1189051.931632, norm of subgrad 40.228460 stepsize= 1.000000 +dualbound = 2788152.176416, lowerbound=1188589.176416, norm of subgrad 1090.883209 dualbound = 2788152.176416, lowerbound=1188589.176416, norm of subgrad 39.865333 stepsize= 1.000000 +dualbound = 2788324.469807, lowerbound=1189498.469807, norm of subgrad 1091.291652 dualbound = 2788324.469807, lowerbound=1189498.469807, norm of subgrad 39.891019 stepsize= 1.000000 +dualbound = 2788474.049846, lowerbound=1189367.049846, norm of subgrad 1091.240601 dualbound = 2788474.049846, lowerbound=1189367.049846, norm of subgrad 39.856995 stepsize= 1.000000 +dualbound = 2788619.679452, lowerbound=1187817.679452, norm of subgrad 1090.525414 dualbound = 2788619.679452, lowerbound=1187817.679452, norm of subgrad 39.669001 stepsize= 1.000000 +dualbound = 2788776.282811, lowerbound=1190189.282811, norm of subgrad 1091.591170 dualbound = 2788776.282811, lowerbound=1190189.282811, norm of subgrad 39.225035 stepsize= 1.000000 +dualbound = 2788940.176625, lowerbound=1189776.176625, norm of subgrad 1091.449576 dualbound = 2788940.176625, lowerbound=1189776.176625, norm of subgrad 40.618885 stepsize= 1.000000 +dualbound = 2789046.223811, lowerbound=1188934.223811, norm of subgrad 1091.087175 dualbound = 2789046.223811, lowerbound=1188934.223811, norm of subgrad 40.534518 stepsize= 1.000000 +dualbound = 2789200.143971, lowerbound=1194244.143971, norm of subgrad 1093.478918 dualbound = 2789200.143971, lowerbound=1194244.143971, norm of subgrad 40.073934 stepsize= 1.000000 +dualbound = 2789397.210253, lowerbound=1184294.210253, norm of subgrad 1088.892194 dualbound = 2789397.210253, lowerbound=1184294.210253, norm of subgrad 39.863094 stepsize= 1.000000 +dualbound = 2789537.540625, lowerbound=1189827.540625, norm of subgrad 1091.452491 dualbound = 2789537.540625, lowerbound=1189827.540625, norm of subgrad 39.765945 stepsize= 1.000000 +dualbound = 2789696.552248, lowerbound=1186433.552248, norm of subgrad 1089.898872 dualbound = 2789696.552248, lowerbound=1186433.552248, norm of subgrad 40.062596 stepsize= 1.000000 +dualbound = 2789854.263899, lowerbound=1190584.263899, norm of subgrad 1091.771159 dualbound = 2789854.263899, lowerbound=1190584.263899, norm of subgrad 39.213667 stepsize= 1.000000 +dualbound = 2790023.613241, lowerbound=1190061.613241, norm of subgrad 1091.520322 dualbound = 2790023.613241, lowerbound=1190061.613241, norm of subgrad 39.042917 stepsize= 1.000000 +dualbound = 2790181.685157, lowerbound=1190760.685157, norm of subgrad 1091.856073 dualbound = 2790181.685157, lowerbound=1190760.685157, norm of subgrad 39.332835 stepsize= 1.000000 +dualbound = 2790322.597006, lowerbound=1189874.597006, norm of subgrad 1091.455266 dualbound = 2790322.597006, lowerbound=1189874.597006, norm of subgrad 39.254450 stepsize= 1.000000 +dualbound = 2790488.155751, lowerbound=1186274.155751, norm of subgrad 1089.801888 dualbound = 2790488.155751, lowerbound=1186274.155751, norm of subgrad 39.491249 stepsize= 1.000000 +dualbound = 2790622.881991, lowerbound=1189516.881991, norm of subgrad 1091.308793 dualbound = 2790622.881991, lowerbound=1189516.881991, norm of subgrad 39.657613 stepsize= 1.000000 +dualbound = 2790762.181737, lowerbound=1192555.181737, norm of subgrad 1092.712763 dualbound = 2790762.181737, lowerbound=1192555.181737, norm of subgrad 40.066192 stepsize= 1.000000 +dualbound = 2790905.364338, lowerbound=1188284.364338, norm of subgrad 1090.764578 dualbound = 2790905.364338, lowerbound=1188284.364338, norm of subgrad 40.325954 stepsize= 1.000000 +dualbound = 2791071.358211, lowerbound=1190414.358211, norm of subgrad 1091.727236 dualbound = 2791071.358211, lowerbound=1190414.358211, norm of subgrad 40.249147 stepsize= 1.000000 +dualbound = 2791215.882672, lowerbound=1192294.882672, norm of subgrad 1092.595480 dualbound = 2791215.882672, lowerbound=1192294.882672, norm of subgrad 40.181146 stepsize= 1.000000 +dualbound = 2791377.759258, lowerbound=1188133.759258, norm of subgrad 1090.673535 dualbound = 2791377.759258, lowerbound=1188133.759258, norm of subgrad 39.960938 stepsize= 1.000000 +dualbound = 2791538.491431, lowerbound=1191229.491431, norm of subgrad 1092.104616 dualbound = 2791538.491431, lowerbound=1191229.491431, norm of subgrad 40.295560 stepsize= 1.000000 +dualbound = 2791704.045811, lowerbound=1191796.045811, norm of subgrad 1092.372668 dualbound = 2791704.045811, lowerbound=1191796.045811, norm of subgrad 40.590077 stepsize= 1.000000 +dualbound = 2791831.855954, lowerbound=1190394.855954, norm of subgrad 1091.696320 dualbound = 2791831.855954, lowerbound=1190394.855954, norm of subgrad 39.163888 stepsize= 1.000000 +dualbound = 2792011.998706, lowerbound=1186420.998706, norm of subgrad 1089.873845 dualbound = 2792011.998706, lowerbound=1186420.998706, norm of subgrad 39.801291 stepsize= 1.000000 +dualbound = 2792155.402156, lowerbound=1188152.402156, norm of subgrad 1090.681623 dualbound = 2792155.402156, lowerbound=1188152.402156, norm of subgrad 39.716539 stepsize= 1.000000 +dualbound = 2792282.813176, lowerbound=1190757.813176, norm of subgrad 1091.895972 dualbound = 2792282.813176, lowerbound=1190757.813176, norm of subgrad 40.080058 stepsize= 1.000000 +dualbound = 2792460.034472, lowerbound=1187698.034472, norm of subgrad 1090.466888 dualbound = 2792460.034472, lowerbound=1187698.034472, norm of subgrad 39.965251 stepsize= 1.000000 +dualbound = 2792627.349121, lowerbound=1191044.349121, norm of subgrad 1092.027174 dualbound = 2792627.349121, lowerbound=1191044.349121, norm of subgrad 40.574803 stepsize= 1.000000 +dualbound = 2792730.399642, lowerbound=1189687.399642, norm of subgrad 1091.437767 dualbound = 2792730.399642, lowerbound=1189687.399642, norm of subgrad 40.645424 stepsize= 1.000000 +dualbound = 2792887.082525, lowerbound=1189926.082525, norm of subgrad 1091.508627 dualbound = 2792887.082525, lowerbound=1189926.082525, norm of subgrad 40.270124 stepsize= 1.000000 +dualbound = 2793081.281259, lowerbound=1193528.281259, norm of subgrad 1093.143761 dualbound = 2793081.281259, lowerbound=1193528.281259, norm of subgrad 40.363334 stepsize= 1.000000 +dualbound = 2793217.331089, lowerbound=1188343.331089, norm of subgrad 1090.786107 dualbound = 2793217.331089, lowerbound=1188343.331089, norm of subgrad 40.088026 stepsize= 1.000000 +dualbound = 2793376.522522, lowerbound=1189821.522522, norm of subgrad 1091.461187 dualbound = 2793376.522522, lowerbound=1189821.522522, norm of subgrad 40.313663 stepsize= 1.000000 +dualbound = 2793507.473501, lowerbound=1189598.473501, norm of subgrad 1091.325558 dualbound = 2793507.473501, lowerbound=1189598.473501, norm of subgrad 39.037815 stepsize= 1.000000 +dualbound = 2793701.574485, lowerbound=1189310.574485, norm of subgrad 1091.215641 dualbound = 2793701.574485, lowerbound=1189310.574485, norm of subgrad 40.436382 stepsize= 1.000000 +dualbound = 2793836.242660, lowerbound=1193145.242660, norm of subgrad 1092.985930 dualbound = 2793836.242660, lowerbound=1193145.242660, norm of subgrad 40.095738 stepsize= 1.000000 +dualbound = 2793980.202272, lowerbound=1188759.202272, norm of subgrad 1090.949221 dualbound = 2793980.202272, lowerbound=1188759.202272, norm of subgrad 39.432976 stepsize= 1.000000 +dualbound = 2794138.081162, lowerbound=1193449.081162, norm of subgrad 1093.106619 dualbound = 2794138.081162, lowerbound=1193449.081162, norm of subgrad 39.885823 stepsize= 1.000000 +dualbound = 2794284.558847, lowerbound=1188585.558847, norm of subgrad 1090.882010 dualbound = 2794284.558847, lowerbound=1188585.558847, norm of subgrad 39.805498 stepsize= 1.000000 +dualbound = 2794442.095763, lowerbound=1187726.095763, norm of subgrad 1090.487091 dualbound = 2794442.095763, lowerbound=1187726.095763, norm of subgrad 39.919130 stepsize= 1.000000 +dualbound = 2794603.829550, lowerbound=1190002.829550, norm of subgrad 1091.518589 dualbound = 2794603.829550, lowerbound=1190002.829550, norm of subgrad 39.645098 stepsize= 1.000000 +dualbound = 2794763.964224, lowerbound=1193632.964224, norm of subgrad 1093.186153 dualbound = 2794763.964224, lowerbound=1193632.964224, norm of subgrad 39.788625 stepsize= 1.000000 +dualbound = 2794879.098063, lowerbound=1192923.098063, norm of subgrad 1092.857309 dualbound = 2794879.098063, lowerbound=1192923.098063, norm of subgrad 39.104141 stepsize= 1.000000 +dualbound = 2795066.555290, lowerbound=1183247.555290, norm of subgrad 1088.416995 dualbound = 2795066.555290, lowerbound=1183247.555290, norm of subgrad 39.893072 stepsize= 1.000000 +dualbound = 2795225.826774, lowerbound=1190480.826774, norm of subgrad 1091.717833 dualbound = 2795225.826774, lowerbound=1190480.826774, norm of subgrad 39.067525 stepsize= 1.000000 +dualbound = 2795354.966605, lowerbound=1189583.966605, norm of subgrad 1091.314330 dualbound = 2795354.966605, lowerbound=1189583.966605, norm of subgrad 38.886242 stepsize= 1.000000 +dualbound = 2795505.254897, lowerbound=1188001.254897, norm of subgrad 1090.640754 dualbound = 2795505.254897, lowerbound=1188001.254897, norm of subgrad 40.574478 stepsize= 1.000000 +dualbound = 2795611.562976, lowerbound=1196576.562976, norm of subgrad 1094.576888 dualbound = 2795611.562976, lowerbound=1196576.562976, norm of subgrad 40.352300 stepsize= 1.000000 +dualbound = 2795797.812897, lowerbound=1185416.812897, norm of subgrad 1089.446104 dualbound = 2795797.812897, lowerbound=1185416.812897, norm of subgrad 40.770699 stepsize= 1.000000 +dualbound = 2795953.501673, lowerbound=1188657.501673, norm of subgrad 1090.942025 dualbound = 2795953.501673, lowerbound=1188657.501673, norm of subgrad 40.653275 stepsize= 1.000000 +dualbound = 2796091.931467, lowerbound=1189482.931467, norm of subgrad 1091.329433 dualbound = 2796091.931467, lowerbound=1189482.931467, norm of subgrad 40.686973 stepsize= 1.000000 +dualbound = 2796236.755150, lowerbound=1193420.755150, norm of subgrad 1093.126139 dualbound = 2796236.755150, lowerbound=1193420.755150, norm of subgrad 40.605710 stepsize= 1.000000 +dualbound = 2796416.222810, lowerbound=1190614.222810, norm of subgrad 1091.833881 dualbound = 2796416.222810, lowerbound=1190614.222810, norm of subgrad 40.822392 stepsize= 1.000000 +dualbound = 2796569.010655, lowerbound=1192470.010655, norm of subgrad 1092.696212 dualbound = 2796569.010655, lowerbound=1192470.010655, norm of subgrad 40.838558 stepsize= 1.000000 +dualbound = 2796706.834411, lowerbound=1187502.834411, norm of subgrad 1090.398934 dualbound = 2796706.834411, lowerbound=1187502.834411, norm of subgrad 40.060252 stepsize= 1.000000 +dualbound = 2796874.189323, lowerbound=1187926.189323, norm of subgrad 1090.607716 dualbound = 2796874.189323, lowerbound=1187926.189323, norm of subgrad 40.821011 stepsize= 1.000000 +dualbound = 2797015.301973, lowerbound=1187979.301973, norm of subgrad 1090.603183 dualbound = 2797015.301973, lowerbound=1187979.301973, norm of subgrad 39.712878 stepsize= 1.000000 +dualbound = 2797208.835433, lowerbound=1188331.835433, norm of subgrad 1090.743707 dualbound = 2797208.835433, lowerbound=1188331.835433, norm of subgrad 39.793636 stepsize= 1.000000 +dualbound = 2797343.223079, lowerbound=1190965.223079, norm of subgrad 1091.974919 dualbound = 2797343.223079, lowerbound=1190965.223079, norm of subgrad 39.728927 stepsize= 1.000000 +dualbound = 2797482.933553, lowerbound=1192501.933553, norm of subgrad 1092.676500 dualbound = 2797482.933553, lowerbound=1192501.933553, norm of subgrad 39.745572 stepsize= 1.000000 +dualbound = 2797652.238631, lowerbound=1189250.238631, norm of subgrad 1091.164167 dualbound = 2797652.238631, lowerbound=1189250.238631, norm of subgrad 39.475373 stepsize= 1.000000 +dualbound = 2797794.509312, lowerbound=1190557.509312, norm of subgrad 1091.786384 dualbound = 2797794.509312, lowerbound=1190557.509312, norm of subgrad 39.777766 stepsize= 1.000000 +dualbound = 2797952.694528, lowerbound=1190258.694528, norm of subgrad 1091.651819 dualbound = 2797952.694528, lowerbound=1190258.694528, norm of subgrad 40.039795 stepsize= 1.000000 +dualbound = 2798092.963091, lowerbound=1182826.963091, norm of subgrad 1088.254089 dualbound = 2798092.963091, lowerbound=1182826.963091, norm of subgrad 40.128152 stepsize= 1.000000 +dualbound = 2798253.545765, lowerbound=1190438.545765, norm of subgrad 1091.761671 dualbound = 2798253.545765, lowerbound=1190438.545765, norm of subgrad 40.811551 stepsize= 1.000000 +dualbound = 2798397.455087, lowerbound=1188135.455087, norm of subgrad 1090.698609 dualbound = 2798397.455087, lowerbound=1188135.455087, norm of subgrad 40.396897 stepsize= 1.000000 +dualbound = 2798562.055858, lowerbound=1190298.055858, norm of subgrad 1091.643740 dualbound = 2798562.055858, lowerbound=1190298.055858, norm of subgrad 39.403055 stepsize= 1.000000 +dualbound = 2798748.945704, lowerbound=1192185.945704, norm of subgrad 1092.531897 dualbound = 2798748.945704, lowerbound=1192185.945704, norm of subgrad 40.334723 stepsize= 1.000000 +dualbound = 2798847.200811, lowerbound=1194170.200811, norm of subgrad 1093.472542 dualbound = 2798847.200811, lowerbound=1194170.200811, norm of subgrad 40.127984 stepsize= 1.000000 +dualbound = 2799002.257793, lowerbound=1188716.257793, norm of subgrad 1090.970787 dualbound = 2799002.257793, lowerbound=1188716.257793, norm of subgrad 40.694680 stepsize= 1.000000 +dualbound = 2799177.867337, lowerbound=1193459.867337, norm of subgrad 1093.111553 dualbound = 2799177.867337, lowerbound=1193459.867337, norm of subgrad 40.107475 stepsize= 1.000000 +dualbound = 2799326.472302, lowerbound=1187356.472302, norm of subgrad 1090.304303 dualbound = 2799326.472302, lowerbound=1187356.472302, norm of subgrad 39.441158 stepsize= 1.000000 +dualbound = 2799504.989495, lowerbound=1191563.989495, norm of subgrad 1092.215175 dualbound = 2799504.989495, lowerbound=1191563.989495, norm of subgrad 39.351203 stepsize= 1.000000 +dualbound = 2799626.455301, lowerbound=1189131.455301, norm of subgrad 1091.147770 dualbound = 2799626.455301, lowerbound=1189131.455301, norm of subgrad 39.918239 stepsize= 1.000000 +dualbound = 2799798.831602, lowerbound=1192104.831602, norm of subgrad 1092.462279 dualbound = 2799798.831602, lowerbound=1192104.831602, norm of subgrad 39.260366 stepsize= 1.000000 +dualbound = 2799966.512886, lowerbound=1188510.512886, norm of subgrad 1090.836153 dualbound = 2799966.512886, lowerbound=1188510.512886, norm of subgrad 39.757783 stepsize= 1.000000 +dualbound = 2800084.529696, lowerbound=1190034.529696, norm of subgrad 1091.534484 dualbound = 2800084.529696, lowerbound=1190034.529696, norm of subgrad 39.128210 stepsize= 1.000000 +dualbound = 2800242.298482, lowerbound=1192273.298482, norm of subgrad 1092.565009 dualbound = 2800242.298482, lowerbound=1192273.298482, norm of subgrad 39.784027 stepsize= 1.000000 +dualbound = 2800390.040695, lowerbound=1189447.040695, norm of subgrad 1091.284583 dualbound = 2800390.040695, lowerbound=1189447.040695, norm of subgrad 40.034263 stepsize= 1.000000 +dualbound = 2800555.659160, lowerbound=1190886.659160, norm of subgrad 1091.945355 dualbound = 2800555.659160, lowerbound=1190886.659160, norm of subgrad 40.294149 stepsize= 1.000000 +dualbound = 2800697.679492, lowerbound=1189994.679492, norm of subgrad 1091.545088 dualbound = 2800697.679492, lowerbound=1189994.679492, norm of subgrad 40.224623 stepsize= 1.000000 +dualbound = 2800857.680395, lowerbound=1188764.680395, norm of subgrad 1090.976480 dualbound = 2800857.680395, lowerbound=1188764.680395, norm of subgrad 40.311300 stepsize= 1.000000 +dualbound = 2800997.283746, lowerbound=1192483.283746, norm of subgrad 1092.695421 dualbound = 2800997.283746, lowerbound=1192483.283746, norm of subgrad 40.492016 stepsize= 1.000000 +dualbound = 2801131.931897, lowerbound=1193486.931897, norm of subgrad 1093.154578 dualbound = 2801131.931897, lowerbound=1193486.931897, norm of subgrad 40.430782 stepsize= 1.000000 +dualbound = 2801297.960837, lowerbound=1189439.960837, norm of subgrad 1091.304248 dualbound = 2801297.960837, lowerbound=1189439.960837, norm of subgrad 40.878221 stepsize= 1.000000 +dualbound = 2801439.156488, lowerbound=1188457.156488, norm of subgrad 1090.835531 dualbound = 2801439.156488, lowerbound=1188457.156488, norm of subgrad 40.077371 stepsize= 1.000000 +dualbound = 2801615.795724, lowerbound=1194197.795724, norm of subgrad 1093.456810 dualbound = 2801615.795724, lowerbound=1194197.795724, norm of subgrad 40.331616 stepsize= 1.000000 +dualbound = 2801771.596349, lowerbound=1188477.596349, norm of subgrad 1090.830233 dualbound = 2801771.596349, lowerbound=1188477.596349, norm of subgrad 39.859762 stepsize= 1.000000 +dualbound = 2801922.876081, lowerbound=1191302.876081, norm of subgrad 1092.146911 dualbound = 2801922.876081, lowerbound=1191302.876081, norm of subgrad 40.413856 stepsize= 1.000000 +dualbound = 2802068.073978, lowerbound=1191805.073978, norm of subgrad 1092.390990 dualbound = 2802068.073978, lowerbound=1191805.073978, norm of subgrad 40.720976 stepsize= 1.000000 +dualbound = 2802210.626894, lowerbound=1187802.626894, norm of subgrad 1090.537311 dualbound = 2802210.626894, lowerbound=1187802.626894, norm of subgrad 40.144152 stepsize= 1.000000 +dualbound = 2802369.904945, lowerbound=1189779.904945, norm of subgrad 1091.418300 dualbound = 2802369.904945, lowerbound=1189779.904945, norm of subgrad 39.664569 stepsize= 1.000000 +dualbound = 2802545.019798, lowerbound=1192517.019798, norm of subgrad 1092.667388 dualbound = 2802545.019798, lowerbound=1192517.019798, norm of subgrad 39.750659 stepsize= 1.000000 +dualbound = 2802676.102297, lowerbound=1191050.102297, norm of subgrad 1091.991347 dualbound = 2802676.102297, lowerbound=1191050.102297, norm of subgrad 39.065106 stepsize= 1.000000 +dualbound = 2802859.883944, lowerbound=1190409.883944, norm of subgrad 1091.697249 dualbound = 2802859.883944, lowerbound=1190409.883944, norm of subgrad 39.708710 stepsize= 1.000000 +dualbound = 2802977.395685, lowerbound=1192766.395685, norm of subgrad 1092.811235 dualbound = 2802977.395685, lowerbound=1192766.395685, norm of subgrad 39.843591 stepsize= 1.000000 +dualbound = 2803132.227500, lowerbound=1182671.227500, norm of subgrad 1088.199535 dualbound = 2803132.227500, lowerbound=1182671.227500, norm of subgrad 40.765571 stepsize= 1.000000 +dualbound = 2803275.528124, lowerbound=1194473.528124, norm of subgrad 1093.605746 dualbound = 2803275.528124, lowerbound=1194473.528124, norm of subgrad 40.537645 stepsize= 1.000000 +dualbound = 2803415.316759, lowerbound=1189489.316759, norm of subgrad 1091.300745 dualbound = 2803415.316759, lowerbound=1189489.316759, norm of subgrad 39.847066 stepsize= 1.000000 +dualbound = 2803596.219779, lowerbound=1192111.219779, norm of subgrad 1092.488087 dualbound = 2803596.219779, lowerbound=1192111.219779, norm of subgrad 39.998788 stepsize= 1.000000 +dualbound = 2803753.617479, lowerbound=1191233.617479, norm of subgrad 1092.076287 dualbound = 2803753.617479, lowerbound=1191233.617479, norm of subgrad 39.425851 stepsize= 1.000000 +dualbound = 2803907.509481, lowerbound=1197290.509481, norm of subgrad 1094.878765 dualbound = 2803907.509481, lowerbound=1197290.509481, norm of subgrad 40.285134 stepsize= 1.000000 +dualbound = 2804055.090565, lowerbound=1189396.090565, norm of subgrad 1091.235580 dualbound = 2804055.090565, lowerbound=1189396.090565, norm of subgrad 39.326595 stepsize= 1.000000 +dualbound = 2804189.235329, lowerbound=1192762.235329, norm of subgrad 1092.852339 dualbound = 2804189.235329, lowerbound=1192762.235329, norm of subgrad 41.208552 stepsize= 1.000000 +dualbound = 2804326.628790, lowerbound=1191250.628790, norm of subgrad 1092.119329 dualbound = 2804326.628790, lowerbound=1191250.628790, norm of subgrad 40.142166 stepsize= 1.000000 +dualbound = 2804490.897060, lowerbound=1187587.897060, norm of subgrad 1090.431519 dualbound = 2804490.897060, lowerbound=1187587.897060, norm of subgrad 40.215274 stepsize= 1.000000 +dualbound = 2804645.582848, lowerbound=1190166.582848, norm of subgrad 1091.605049 dualbound = 2804645.582848, lowerbound=1190166.582848, norm of subgrad 39.870864 stepsize= 1.000000 +dualbound = 2804811.838296, lowerbound=1192130.838296, norm of subgrad 1092.506219 dualbound = 2804811.838296, lowerbound=1192130.838296, norm of subgrad 40.065639 stepsize= 1.000000 +dualbound = 2804944.184539, lowerbound=1186929.184539, norm of subgrad 1090.099163 dualbound = 2804944.184539, lowerbound=1186929.184539, norm of subgrad 38.978792 stepsize= 1.000000 +dualbound = 2805125.686289, lowerbound=1194617.686289, norm of subgrad 1093.631879 dualbound = 2805125.686289, lowerbound=1194617.686289, norm of subgrad 39.931213 stepsize= 1.000000 +dualbound = 2805270.038460, lowerbound=1185524.038460, norm of subgrad 1089.471449 dualbound = 2805270.038460, lowerbound=1185524.038460, norm of subgrad 39.602426 stepsize= 1.000000 +dualbound = 2805427.040122, lowerbound=1191958.040122, norm of subgrad 1092.438117 dualbound = 2805427.040122, lowerbound=1191958.040122, norm of subgrad 40.249244 stepsize= 1.000000 +dualbound = 2805546.858545, lowerbound=1190676.858545, norm of subgrad 1091.848368 dualbound = 2805546.858545, lowerbound=1190676.858545, norm of subgrad 39.696579 stepsize= 1.000000 +dualbound = 2805729.552952, lowerbound=1195785.552952, norm of subgrad 1094.169801 dualbound = 2805729.552952, lowerbound=1195785.552952, norm of subgrad 40.058637 stepsize= 1.000000 +dualbound = 2805854.875878, lowerbound=1188754.875878, norm of subgrad 1090.979320 dualbound = 2805854.875878, lowerbound=1188754.875878, norm of subgrad 40.078959 stepsize= 1.000000 +dualbound = 2806005.317692, lowerbound=1194823.317692, norm of subgrad 1093.734574 dualbound = 2806005.317692, lowerbound=1194823.317692, norm of subgrad 39.779917 stepsize= 1.000000 +dualbound = 2806137.370797, lowerbound=1188839.370797, norm of subgrad 1091.048748 dualbound = 2806137.370797, lowerbound=1188839.370797, norm of subgrad 40.988451 stepsize= 1.000000 +dualbound = 2806300.233690, lowerbound=1192090.233690, norm of subgrad 1092.462921 dualbound = 2806300.233690, lowerbound=1192090.233690, norm of subgrad 39.342889 stepsize= 1.000000 +dualbound = 2806483.535067, lowerbound=1190090.535067, norm of subgrad 1091.555557 dualbound = 2806483.535067, lowerbound=1190090.535067, norm of subgrad 39.828399 stepsize= 1.000000 +dualbound = 2806631.525000, lowerbound=1191471.525000, norm of subgrad 1092.214963 dualbound = 2806631.525000, lowerbound=1191471.525000, norm of subgrad 40.124680 stepsize= 1.000000 +dualbound = 2806779.213601, lowerbound=1188269.213601, norm of subgrad 1090.743422 dualbound = 2806779.213601, lowerbound=1188269.213601, norm of subgrad 39.996107 stepsize= 1.000000 +dualbound = 2806921.787302, lowerbound=1192895.787302, norm of subgrad 1092.869977 dualbound = 2806921.787302, lowerbound=1192895.787302, norm of subgrad 40.144411 stepsize= 1.000000 +dualbound = 2807065.791032, lowerbound=1187347.791032, norm of subgrad 1090.315913 dualbound = 2807065.791032, lowerbound=1187347.791032, norm of subgrad 39.812105 stepsize= 1.000000 +dualbound = 2807234.063709, lowerbound=1191821.063709, norm of subgrad 1092.366268 dualbound = 2807234.063709, lowerbound=1191821.063709, norm of subgrad 40.140661 stepsize= 1.000000 +dualbound = 2807384.124164, lowerbound=1185485.124164, norm of subgrad 1089.469653 dualbound = 2807384.124164, lowerbound=1185485.124164, norm of subgrad 40.113096 stepsize= 1.000000 +dualbound = 2807515.668377, lowerbound=1192054.668377, norm of subgrad 1092.500191 dualbound = 2807515.668377, lowerbound=1192054.668377, norm of subgrad 40.417128 stepsize= 1.000000 +dualbound = 2807677.129011, lowerbound=1186517.129011, norm of subgrad 1089.938131 dualbound = 2807677.129011, lowerbound=1186517.129011, norm of subgrad 40.118084 stepsize= 1.000000 +dualbound = 2807831.378841, lowerbound=1194529.378841, norm of subgrad 1093.642254 dualbound = 2807831.378841, lowerbound=1194529.378841, norm of subgrad 40.966448 stepsize= 1.000000 +dualbound = 2807958.696211, lowerbound=1189298.696211, norm of subgrad 1091.240439 dualbound = 2807958.696211, lowerbound=1189298.696211, norm of subgrad 40.426691 stepsize= 1.000000 +dualbound = 2808136.857049, lowerbound=1194499.857049, norm of subgrad 1093.584408 dualbound = 2808136.857049, lowerbound=1194499.857049, norm of subgrad 40.064459 stepsize= 1.000000 +dualbound = 2808292.625020, lowerbound=1186294.625020, norm of subgrad 1089.868627 dualbound = 2808292.625020, lowerbound=1186294.625020, norm of subgrad 40.923929 stepsize= 1.000000 +dualbound = 2808429.730011, lowerbound=1200273.730011, norm of subgrad 1096.252129 dualbound = 2808429.730011, lowerbound=1200273.730011, norm of subgrad 40.399319 stepsize= 1.000000 +dualbound = 2808593.623767, lowerbound=1186133.623767, norm of subgrad 1089.779622 dualbound = 2808593.623767, lowerbound=1186133.623767, norm of subgrad 40.618884 stepsize= 1.000000 +dualbound = 2808736.845623, lowerbound=1197326.845623, norm of subgrad 1094.873895 dualbound = 2808736.845623, lowerbound=1197326.845623, norm of subgrad 39.562885 stepsize= 1.000000 +dualbound = 2808917.877524, lowerbound=1187578.877524, norm of subgrad 1090.410417 dualbound = 2808917.877524, lowerbound=1187578.877524, norm of subgrad 39.962882 stepsize= 1.000000 +dualbound = 2809063.275574, lowerbound=1193620.275574, norm of subgrad 1093.173946 dualbound = 2809063.275574, lowerbound=1193620.275574, norm of subgrad 39.425855 stepsize= 1.000000 +dualbound = 2809211.406394, lowerbound=1187135.406394, norm of subgrad 1090.213927 dualbound = 2809211.406394, lowerbound=1187135.406394, norm of subgrad 39.738279 stepsize= 1.000000 +dualbound = 2809361.893210, lowerbound=1197438.893210, norm of subgrad 1094.937392 dualbound = 2809361.893210, lowerbound=1197438.893210, norm of subgrad 39.993585 stepsize= 1.000000 +dualbound = 2809501.172883, lowerbound=1185491.172883, norm of subgrad 1089.475182 dualbound = 2809501.172883, lowerbound=1185491.172883, norm of subgrad 40.053460 stepsize= 1.000000 +dualbound = 2809668.862494, lowerbound=1191344.862494, norm of subgrad 1092.153772 dualbound = 2809668.862494, lowerbound=1191344.862494, norm of subgrad 40.282622 stepsize= 1.000000 +dualbound = 2809778.135247, lowerbound=1190728.135247, norm of subgrad 1091.871391 dualbound = 2809778.135247, lowerbound=1190728.135247, norm of subgrad 39.550888 stepsize= 1.000000 +dualbound = 2809970.424598, lowerbound=1192552.424598, norm of subgrad 1092.699604 dualbound = 2809970.424598, lowerbound=1192552.424598, norm of subgrad 40.401601 stepsize= 1.000000 +dualbound = 2810113.322856, lowerbound=1194309.322856, norm of subgrad 1093.511007 dualbound = 2810113.322856, lowerbound=1194309.322856, norm of subgrad 39.998728 stepsize= 1.000000 +dualbound = 2810269.008430, lowerbound=1191872.008430, norm of subgrad 1092.377228 dualbound = 2810269.008430, lowerbound=1191872.008430, norm of subgrad 39.644490 stepsize= 1.000000 +dualbound = 2810412.530210, lowerbound=1191558.530210, norm of subgrad 1092.243805 dualbound = 2810412.530210, lowerbound=1191558.530210, norm of subgrad 39.768351 stepsize= 1.000000 +dualbound = 2810575.850046, lowerbound=1191399.850046, norm of subgrad 1092.169790 dualbound = 2810575.850046, lowerbound=1191399.850046, norm of subgrad 39.978992 stepsize= 1.000000 +dualbound = 2810726.335322, lowerbound=1192232.335322, norm of subgrad 1092.568229 dualbound = 2810726.335322, lowerbound=1192232.335322, norm of subgrad 40.292497 stepsize= 1.000000 +dualbound = 2810872.481690, lowerbound=1189962.481690, norm of subgrad 1091.540417 dualbound = 2810872.481690, lowerbound=1189962.481690, norm of subgrad 40.548075 stepsize= 1.000000 +dualbound = 2810999.581002, lowerbound=1191262.581002, norm of subgrad 1092.153186 dualbound = 2810999.581002, lowerbound=1191262.581002, norm of subgrad 40.781115 stepsize= 1.000000 +dualbound = 2811152.718932, lowerbound=1195929.718932, norm of subgrad 1094.259896 dualbound = 2811152.718932, lowerbound=1195929.718932, norm of subgrad 40.350191 stepsize= 1.000000 +dualbound = 2811290.586313, lowerbound=1190828.586313, norm of subgrad 1091.937080 dualbound = 2811290.586313, lowerbound=1190828.586313, norm of subgrad 40.445857 stepsize= 1.000000 +dualbound = 2811459.501958, lowerbound=1190529.501958, norm of subgrad 1091.805615 dualbound = 2811459.501958, lowerbound=1190529.501958, norm of subgrad 40.974573 stepsize= 1.000000 +dualbound = 2811623.436087, lowerbound=1193660.436087, norm of subgrad 1093.196431 dualbound = 2811623.436087, lowerbound=1193660.436087, norm of subgrad 39.773536 stepsize= 1.000000 +dualbound = 2811782.806318, lowerbound=1192173.806318, norm of subgrad 1092.514442 dualbound = 2811782.806318, lowerbound=1192173.806318, norm of subgrad 39.665731 stepsize= 1.000000 +dualbound = 2811931.643471, lowerbound=1190942.643471, norm of subgrad 1091.936190 dualbound = 2811931.643471, lowerbound=1190942.643471, norm of subgrad 39.125914 stepsize= 1.000000 +dualbound = 2812052.139372, lowerbound=1192396.139372, norm of subgrad 1092.669273 dualbound = 2812052.139372, lowerbound=1192396.139372, norm of subgrad 40.626296 stepsize= 1.000000 +dualbound = 2812218.481403, lowerbound=1186809.481403, norm of subgrad 1090.081410 dualbound = 2812218.481403, lowerbound=1186809.481403, norm of subgrad 40.426996 stepsize= 1.000000 +dualbound = 2812363.995417, lowerbound=1190174.995417, norm of subgrad 1091.630430 dualbound = 2812363.995417, lowerbound=1190174.995417, norm of subgrad 40.342459 stepsize= 1.000000 +dualbound = 2812510.928038, lowerbound=1193144.928038, norm of subgrad 1092.978924 dualbound = 2812510.928038, lowerbound=1193144.928038, norm of subgrad 40.061610 stepsize= 1.000000 +dualbound = 2812681.346413, lowerbound=1189257.346413, norm of subgrad 1091.194917 dualbound = 2812681.346413, lowerbound=1189257.346413, norm of subgrad 40.241998 stepsize= 1.000000 +dualbound = 2812807.557321, lowerbound=1194464.557321, norm of subgrad 1093.608960 dualbound = 2812807.557321, lowerbound=1194464.557321, norm of subgrad 40.524202 stepsize= 1.000000 +dualbound = 2812979.258458, lowerbound=1188227.258458, norm of subgrad 1090.710437 dualbound = 2812979.258458, lowerbound=1188227.258458, norm of subgrad 39.921187 stepsize= 1.000000 +dualbound = 2813124.976266, lowerbound=1198712.976266, norm of subgrad 1095.527716 dualbound = 2813124.976266, lowerbound=1198712.976266, norm of subgrad 40.171107 stepsize= 1.000000 +dualbound = 2813298.897256, lowerbound=1185557.897256, norm of subgrad 1089.509476 dualbound = 2813298.897256, lowerbound=1185557.897256, norm of subgrad 40.582274 stepsize= 1.000000 +dualbound = 2813425.705829, lowerbound=1196163.705829, norm of subgrad 1094.350815 dualbound = 2813425.705829, lowerbound=1196163.705829, norm of subgrad 39.582933 stepsize= 1.000000 +dualbound = 2813589.308416, lowerbound=1187879.308416, norm of subgrad 1090.545876 dualbound = 2813589.308416, lowerbound=1187879.308416, norm of subgrad 39.681262 stepsize= 1.000000 +dualbound = 2813755.013954, lowerbound=1187719.013954, norm of subgrad 1090.493014 dualbound = 2813755.013954, lowerbound=1187719.013954, norm of subgrad 40.270405 stepsize= 1.000000 +dualbound = 2813860.079253, lowerbound=1191853.079253, norm of subgrad 1092.423031 dualbound = 2813860.079253, lowerbound=1191853.079253, norm of subgrad 40.497720 stepsize= 1.000000 +dualbound = 2814019.836264, lowerbound=1196179.836264, norm of subgrad 1094.380115 dualbound = 2814019.836264, lowerbound=1196179.836264, norm of subgrad 40.592573 stepsize= 1.000000 +dualbound = 2814169.823707, lowerbound=1191799.823707, norm of subgrad 1092.372566 dualbound = 2814169.823707, lowerbound=1191799.823707, norm of subgrad 40.348326 stepsize= 1.000000 +dualbound = 2814355.695672, lowerbound=1193019.695672, norm of subgrad 1092.906536 dualbound = 2814355.695672, lowerbound=1193019.695672, norm of subgrad 40.135669 stepsize= 1.000000 +dualbound = 2814471.454658, lowerbound=1190635.454658, norm of subgrad 1091.807426 dualbound = 2814471.454658, lowerbound=1190635.454658, norm of subgrad 39.035356 stepsize= 1.000000 +dualbound = 2814667.224423, lowerbound=1194815.224423, norm of subgrad 1093.734988 dualbound = 2814667.224423, lowerbound=1194815.224423, norm of subgrad 40.457011 stepsize= 1.000000 +dualbound = 2814781.232911, lowerbound=1197072.232911, norm of subgrad 1094.793238 dualbound = 2814781.232911, lowerbound=1197072.232911, norm of subgrad 40.174724 stepsize= 1.000000 +dualbound = 2814943.631025, lowerbound=1192614.631025, norm of subgrad 1092.723492 dualbound = 2814943.631025, lowerbound=1192614.631025, norm of subgrad 39.904863 stepsize= 1.000000 +dualbound = 2815103.839206, lowerbound=1191726.839206, norm of subgrad 1092.335955 dualbound = 2815103.839206, lowerbound=1191726.839206, norm of subgrad 40.388218 stepsize= 1.000000 +dualbound = 2815228.051149, lowerbound=1189987.051149, norm of subgrad 1091.561749 dualbound = 2815228.051149, lowerbound=1189987.051149, norm of subgrad 40.548883 stepsize= 1.000000 +dualbound = 2815367.606929, lowerbound=1193484.606929, norm of subgrad 1093.141165 dualbound = 2815367.606929, lowerbound=1193484.606929, norm of subgrad 40.156641 stepsize= 1.000000 +dualbound = 2815543.320999, lowerbound=1190994.320999, norm of subgrad 1092.007931 dualbound = 2815543.320999, lowerbound=1190994.320999, norm of subgrad 40.776391 stepsize= 1.000000 +dualbound = 2815685.427900, lowerbound=1192070.427900, norm of subgrad 1092.490013 dualbound = 2815685.427900, lowerbound=1192070.427900, norm of subgrad 40.076264 stepsize= 1.000000 +dualbound = 2815838.732627, lowerbound=1191377.732627, norm of subgrad 1092.148677 dualbound = 2815838.732627, lowerbound=1191377.732627, norm of subgrad 39.551292 stepsize= 1.000000 +dualbound = 2816007.906409, lowerbound=1188743.906409, norm of subgrad 1090.939460 dualbound = 2816007.906409, lowerbound=1188743.906409, norm of subgrad 39.675859 stepsize= 1.000000 +dualbound = 2816166.471873, lowerbound=1190944.471873, norm of subgrad 1091.995637 dualbound = 2816166.471873, lowerbound=1190944.471873, norm of subgrad 40.848078 stepsize= 1.000000 +dualbound = 2816292.269639, lowerbound=1190677.269639, norm of subgrad 1091.848556 dualbound = 2816292.269639, lowerbound=1190677.269639, norm of subgrad 39.771821 stepsize= 1.000000 +dualbound = 2816447.841381, lowerbound=1194220.841381, norm of subgrad 1093.473292 dualbound = 2816447.841381, lowerbound=1194220.841381, norm of subgrad 40.231477 stepsize= 1.000000 +dualbound = 2816598.841594, lowerbound=1192579.841594, norm of subgrad 1092.741434 dualbound = 2816598.841594, lowerbound=1192579.841594, norm of subgrad 40.681694 stepsize= 1.000000 +dualbound = 2816736.239921, lowerbound=1192943.239921, norm of subgrad 1092.914562 dualbound = 2816736.239921, lowerbound=1192943.239921, norm of subgrad 40.698874 stepsize= 1.000000 +dualbound = 2816872.591680, lowerbound=1189485.591680, norm of subgrad 1091.310035 dualbound = 2816872.591680, lowerbound=1189485.591680, norm of subgrad 40.104261 stepsize= 1.000000 +dualbound = 2817055.006373, lowerbound=1193382.006373, norm of subgrad 1093.103383 dualbound = 2817055.006373, lowerbound=1193382.006373, norm of subgrad 40.931830 stepsize= 1.000000 +dualbound = 2817200.624017, lowerbound=1193266.624017, norm of subgrad 1093.049232 dualbound = 2817200.624017, lowerbound=1193266.624017, norm of subgrad 40.442770 stepsize= 1.000000 +dualbound = 2817343.415387, lowerbound=1194010.415387, norm of subgrad 1093.375697 dualbound = 2817343.415387, lowerbound=1194010.415387, norm of subgrad 40.034877 stepsize= 1.000000 +dualbound = 2817497.960404, lowerbound=1193511.960404, norm of subgrad 1093.153219 dualbound = 2817497.960404, lowerbound=1193511.960404, norm of subgrad 40.330448 stepsize= 1.000000 +dualbound = 2817627.641331, lowerbound=1190867.641331, norm of subgrad 1091.961831 dualbound = 2817627.641331, lowerbound=1190867.641331, norm of subgrad 40.530000 stepsize= 1.000000 +dualbound = 2817772.645769, lowerbound=1193548.645769, norm of subgrad 1093.175030 dualbound = 2817772.645769, lowerbound=1193548.645769, norm of subgrad 40.348537 stepsize= 1.000000 +dualbound = 2817928.086796, lowerbound=1192204.086796, norm of subgrad 1092.550267 dualbound = 2817928.086796, lowerbound=1192204.086796, norm of subgrad 40.217422 stepsize= 1.000000 +dualbound = 2818094.499732, lowerbound=1194121.499732, norm of subgrad 1093.370248 dualbound = 2818094.499732, lowerbound=1194121.499732, norm of subgrad 38.773869 stepsize= 1.000000 +dualbound = 2818284.846535, lowerbound=1190033.846535, norm of subgrad 1091.519971 dualbound = 2818284.846535, lowerbound=1190033.846535, norm of subgrad 39.652828 stepsize= 1.000000 +dualbound = 2818396.825291, lowerbound=1198593.825291, norm of subgrad 1095.461010 dualbound = 2818396.825291, lowerbound=1198593.825291, norm of subgrad 39.407851 stepsize= 1.000000 +dualbound = 2818539.549888, lowerbound=1189220.549888, norm of subgrad 1091.195010 dualbound = 2818539.549888, lowerbound=1189220.549888, norm of subgrad 40.357460 stepsize= 1.000000 +dualbound = 2818673.001337, lowerbound=1191231.001337, norm of subgrad 1092.087451 dualbound = 2818673.001337, lowerbound=1191231.001337, norm of subgrad 39.464559 stepsize= 1.000000 +dualbound = 2818845.555241, lowerbound=1193736.555241, norm of subgrad 1093.249082 dualbound = 2818845.555241, lowerbound=1193736.555241, norm of subgrad 40.367733 stepsize= 1.000000 +dualbound = 2818994.957534, lowerbound=1193029.957534, norm of subgrad 1092.893846 dualbound = 2818994.957534, lowerbound=1193029.957534, norm of subgrad 39.196968 stepsize= 1.000000 +dualbound = 2819153.108118, lowerbound=1193392.108118, norm of subgrad 1093.054943 dualbound = 2819153.108118, lowerbound=1193392.108118, norm of subgrad 39.180998 stepsize= 1.000000 +dualbound = 2819289.688440, lowerbound=1192605.688440, norm of subgrad 1092.737246 dualbound = 2819289.688440, lowerbound=1192605.688440, norm of subgrad 40.069693 stepsize= 1.000000 +dualbound = 2819419.423893, lowerbound=1193169.423893, norm of subgrad 1092.987385 dualbound = 2819419.423893, lowerbound=1193169.423893, norm of subgrad 39.771038 stepsize= 1.000000 +dualbound = 2819599.594768, lowerbound=1195557.594768, norm of subgrad 1094.093047 dualbound = 2819599.594768, lowerbound=1195557.594768, norm of subgrad 40.769730 stepsize= 1.000000 +dualbound = 2819715.289504, lowerbound=1191427.289504, norm of subgrad 1092.230877 dualbound = 2819715.289504, lowerbound=1191427.289504, norm of subgrad 40.702515 stepsize= 1.000000 +dualbound = 2819837.989631, lowerbound=1194180.989631, norm of subgrad 1093.491650 dualbound = 2819837.989631, lowerbound=1194180.989631, norm of subgrad 40.812990 stepsize= 1.000000 +dualbound = 2820011.832617, lowerbound=1194252.832617, norm of subgrad 1093.524043 dualbound = 2820011.832617, lowerbound=1194252.832617, norm of subgrad 41.422735 stepsize= 1.000000 +dualbound = 2820159.853856, lowerbound=1192317.853856, norm of subgrad 1092.585857 dualbound = 2820159.853856, lowerbound=1192317.853856, norm of subgrad 39.673937 stepsize= 1.000000 +dualbound = 2820314.189815, lowerbound=1192378.189815, norm of subgrad 1092.630857 dualbound = 2820314.189815, lowerbound=1192378.189815, norm of subgrad 40.228547 stepsize= 1.000000 +dualbound = 2820476.568778, lowerbound=1194579.568778, norm of subgrad 1093.591591 dualbound = 2820476.568778, lowerbound=1194579.568778, norm of subgrad 39.056100 stepsize= 1.000000 +dualbound = 2820641.124409, lowerbound=1193966.124409, norm of subgrad 1093.338522 dualbound = 2820641.124409, lowerbound=1193966.124409, norm of subgrad 39.844142 stepsize= 1.000000 +dualbound = 2820750.282724, lowerbound=1196407.282724, norm of subgrad 1094.473975 dualbound = 2820750.282724, lowerbound=1196407.282724, norm of subgrad 39.688264 stepsize= 1.000000 +dualbound = 2820920.037978, lowerbound=1190248.037978, norm of subgrad 1091.631823 dualbound = 2820920.037978, lowerbound=1190248.037978, norm of subgrad 39.771287 stepsize= 1.000000 +dualbound = 2821065.181177, lowerbound=1195049.181177, norm of subgrad 1093.796682 dualbound = 2821065.181177, lowerbound=1195049.181177, norm of subgrad 38.563496 stepsize= 1.000000 +dualbound = 2821236.697147, lowerbound=1190886.697147, norm of subgrad 1091.939420 dualbound = 2821236.697147, lowerbound=1190886.697147, norm of subgrad 40.205920 stepsize= 1.000000 +dualbound = 2821334.694470, lowerbound=1190640.694470, norm of subgrad 1091.856078 dualbound = 2821334.694470, lowerbound=1190640.694470, norm of subgrad 40.087371 stepsize= 1.000000 +dualbound = 2821495.791500, lowerbound=1189269.791500, norm of subgrad 1091.196495 dualbound = 2821495.791500, lowerbound=1189269.791500, norm of subgrad 40.013711 stepsize= 1.000000 +dualbound = 2821664.693947, lowerbound=1197323.693947, norm of subgrad 1094.916752 dualbound = 2821664.693947, lowerbound=1197323.693947, norm of subgrad 41.084090 stepsize= 1.000000 +dualbound = 2821764.611949, lowerbound=1197863.611949, norm of subgrad 1095.153237 dualbound = 2821764.611949, lowerbound=1197863.611949, norm of subgrad 39.961456 stepsize= 1.000000 +dualbound = 2821942.277269, lowerbound=1192435.277269, norm of subgrad 1092.680318 dualbound = 2821942.277269, lowerbound=1192435.277269, norm of subgrad 41.142014 stepsize= 1.000000 +dualbound = 2822057.416602, lowerbound=1193206.416602, norm of subgrad 1093.009797 dualbound = 2822057.416602, lowerbound=1193206.416602, norm of subgrad 39.738386 stepsize= 1.000000 +dualbound = 2822273.941882, lowerbound=1191659.941882, norm of subgrad 1092.310369 dualbound = 2822273.941882, lowerbound=1191659.941882, norm of subgrad 41.213169 stepsize= 1.000000 +dualbound = 2822364.585431, lowerbound=1194212.585431, norm of subgrad 1093.487808 dualbound = 2822364.585431, lowerbound=1194212.585431, norm of subgrad 39.920465 stepsize= 1.000000 +dualbound = 2822520.103346, lowerbound=1196591.103346, norm of subgrad 1094.570739 dualbound = 2822520.103346, lowerbound=1196591.103346, norm of subgrad 40.614258 stepsize= 1.000000 +dualbound = 2822692.824516, lowerbound=1190482.824516, norm of subgrad 1091.721954 dualbound = 2822692.824516, lowerbound=1190482.824516, norm of subgrad 39.328376 stepsize= 1.000000 +dualbound = 2822846.414402, lowerbound=1196324.414402, norm of subgrad 1094.427894 dualbound = 2822846.414402, lowerbound=1196324.414402, norm of subgrad 40.019869 stepsize= 1.000000 +dualbound = 2822974.244928, lowerbound=1195960.244928, norm of subgrad 1094.259679 dualbound = 2822974.244928, lowerbound=1195960.244928, norm of subgrad 39.646318 stepsize= 1.000000 +dualbound = 2823130.961965, lowerbound=1190235.961965, norm of subgrad 1091.645529 dualbound = 2823130.961965, lowerbound=1190235.961965, norm of subgrad 40.133739 stepsize= 1.000000 +dualbound = 2823270.026155, lowerbound=1191703.026155, norm of subgrad 1092.315900 dualbound = 2823270.026155, lowerbound=1191703.026155, norm of subgrad 39.875609 stepsize= 1.000000 +dualbound = 2823431.957207, lowerbound=1195999.957207, norm of subgrad 1094.253150 dualbound = 2823431.957207, lowerbound=1195999.957207, norm of subgrad 39.394556 stepsize= 1.000000 +dualbound = 2823577.343651, lowerbound=1197339.343651, norm of subgrad 1094.875492 dualbound = 2823577.343651, lowerbound=1197339.343651, norm of subgrad 39.476404 stepsize= 1.000000 +dualbound = 2823739.084752, lowerbound=1193350.084752, norm of subgrad 1093.034805 dualbound = 2823739.084752, lowerbound=1193350.084752, norm of subgrad 39.201290 stepsize= 1.000000 +dualbound = 2823893.377307, lowerbound=1197644.377307, norm of subgrad 1095.002912 dualbound = 2823893.377307, lowerbound=1197644.377307, norm of subgrad 39.259299 stepsize= 1.000000 +dualbound = 2824017.537359, lowerbound=1193112.537359, norm of subgrad 1092.952212 dualbound = 2824017.537359, lowerbound=1193112.537359, norm of subgrad 39.448195 stepsize= 1.000000 +dualbound = 2824173.217175, lowerbound=1194412.217175, norm of subgrad 1093.538393 dualbound = 2824173.217175, lowerbound=1194412.217175, norm of subgrad 39.619185 stepsize= 1.000000 +dualbound = 2824305.273014, lowerbound=1192953.273014, norm of subgrad 1092.911375 dualbound = 2824305.273014, lowerbound=1192953.273014, norm of subgrad 40.423457 stepsize= 1.000000 +dualbound = 2824434.074018, lowerbound=1195556.074018, norm of subgrad 1094.093266 dualbound = 2824434.074018, lowerbound=1195556.074018, norm of subgrad 40.159694 stepsize= 1.000000 +dualbound = 2824619.169792, lowerbound=1190841.169792, norm of subgrad 1091.923610 dualbound = 2824619.169792, lowerbound=1190841.169792, norm of subgrad 40.510440 stepsize= 1.000000 +dualbound = 2824727.076574, lowerbound=1195611.076574, norm of subgrad 1094.095552 dualbound = 2824727.076574, lowerbound=1195611.076574, norm of subgrad 39.267121 stepsize= 1.000000 +dualbound = 2824910.495102, lowerbound=1195451.495102, norm of subgrad 1094.019879 dualbound = 2824910.495102, lowerbound=1195451.495102, norm of subgrad 40.142478 stepsize= 1.000000 +dualbound = 2825032.398499, lowerbound=1194897.398499, norm of subgrad 1093.793581 dualbound = 2825032.398499, lowerbound=1194897.398499, norm of subgrad 40.111138 stepsize= 1.000000 +dualbound = 2825195.426933, lowerbound=1189406.426933, norm of subgrad 1091.236192 dualbound = 2825195.426933, lowerbound=1189406.426933, norm of subgrad 39.408482 stepsize= 1.000000 +dualbound = 2825348.206009, lowerbound=1196705.206009, norm of subgrad 1094.604589 dualbound = 2825348.206009, lowerbound=1196705.206009, norm of subgrad 40.084649 stepsize= 1.000000 +dualbound = 2825482.861303, lowerbound=1194287.861303, norm of subgrad 1093.535487 dualbound = 2825482.861303, lowerbound=1194287.861303, norm of subgrad 40.824690 stepsize= 1.000000 +dualbound = 2825601.153805, lowerbound=1197164.153805, norm of subgrad 1094.836131 dualbound = 2825601.153805, lowerbound=1197164.153805, norm of subgrad 40.252857 stepsize= 1.000000 +dualbound = 2825767.301196, lowerbound=1196217.301196, norm of subgrad 1094.383526 dualbound = 2825767.301196, lowerbound=1196217.301196, norm of subgrad 40.300712 stepsize= 1.000000 +dualbound = 2825907.546920, lowerbound=1191463.546920, norm of subgrad 1092.214057 dualbound = 2825907.546920, lowerbound=1191463.546920, norm of subgrad 40.102939 stepsize= 1.000000 +dualbound = 2826076.336843, lowerbound=1192080.336843, norm of subgrad 1092.497751 dualbound = 2826076.336843, lowerbound=1192080.336843, norm of subgrad 40.494320 stepsize= 1.000000 +dualbound = 2826205.187752, lowerbound=1194749.187752, norm of subgrad 1093.713942 dualbound = 2826205.187752, lowerbound=1194749.187752, norm of subgrad 39.872935 stepsize= 1.000000 +dualbound = 2826374.564869, lowerbound=1195526.564869, norm of subgrad 1094.043219 dualbound = 2826374.564869, lowerbound=1195526.564869, norm of subgrad 39.665818 stepsize= 1.000000 +dualbound = 2826503.135674, lowerbound=1195000.135674, norm of subgrad 1093.790261 dualbound = 2826503.135674, lowerbound=1195000.135674, norm of subgrad 38.801686 stepsize= 1.000000 +dualbound = 2826690.017968, lowerbound=1192930.017968, norm of subgrad 1092.852240 dualbound = 2826690.017968, lowerbound=1192930.017968, norm of subgrad 39.785453 stepsize= 1.000000 +dualbound = 2826794.711665, lowerbound=1192591.711665, norm of subgrad 1092.696990 dualbound = 2826794.711665, lowerbound=1192591.711665, norm of subgrad 38.725879 stepsize= 1.000000 +dualbound = 2826978.298381, lowerbound=1194374.298381, norm of subgrad 1093.528828 dualbound = 2826978.298381, lowerbound=1194374.298381, norm of subgrad 40.181920 stepsize= 1.000000 +dualbound = 2827098.050283, lowerbound=1192554.050283, norm of subgrad 1092.699433 dualbound = 2827098.050283, lowerbound=1192554.050283, norm of subgrad 39.468366 stepsize= 1.000000 +dualbound = 2827256.283593, lowerbound=1194733.283593, norm of subgrad 1093.745987 dualbound = 2827256.283593, lowerbound=1194733.283593, norm of subgrad 41.294471 stepsize= 1.000000 +dualbound = 2827365.952610, lowerbound=1196193.952610, norm of subgrad 1094.373315 dualbound = 2827365.952610, lowerbound=1196193.952610, norm of subgrad 39.606426 stepsize= 1.000000 +dualbound = 2827551.769394, lowerbound=1194385.769394, norm of subgrad 1093.536817 dualbound = 2827551.769394, lowerbound=1194385.769394, norm of subgrad 40.284200 stepsize= 1.000000 +dualbound = 2827692.262313, lowerbound=1195177.262313, norm of subgrad 1093.934304 dualbound = 2827692.262313, lowerbound=1195177.262313, norm of subgrad 40.687749 stepsize= 1.000000 +dualbound = 2827817.548403, lowerbound=1189220.548403, norm of subgrad 1091.195468 dualbound = 2827817.548403, lowerbound=1189220.548403, norm of subgrad 40.153282 stepsize= 1.000000 +dualbound = 2827992.258526, lowerbound=1196240.258526, norm of subgrad 1094.362490 dualbound = 2827992.258526, lowerbound=1196240.258526, norm of subgrad 39.543775 stepsize= 1.000000 +dualbound = 2828142.987921, lowerbound=1193335.987921, norm of subgrad 1093.067696 dualbound = 2828142.987921, lowerbound=1193335.987921, norm of subgrad 40.146350 stepsize= 1.000000 +dualbound = 2828265.135054, lowerbound=1196593.135054, norm of subgrad 1094.562075 dualbound = 2828265.135054, lowerbound=1196593.135054, norm of subgrad 39.939293 stepsize= 1.000000 +dualbound = 2828424.417981, lowerbound=1199210.417981, norm of subgrad 1095.752900 dualbound = 2828424.417981, lowerbound=1199210.417981, norm of subgrad 40.289985 stepsize= 1.000000 +dualbound = 2828562.812685, lowerbound=1192330.812685, norm of subgrad 1092.610092 dualbound = 2828562.812685, lowerbound=1192330.812685, norm of subgrad 40.054896 stepsize= 1.000000 +dualbound = 2828715.090990, lowerbound=1196860.090990, norm of subgrad 1094.661176 dualbound = 2828715.090990, lowerbound=1196860.090990, norm of subgrad 39.689776 stepsize= 1.000000 +dualbound = 2828867.546407, lowerbound=1194372.546407, norm of subgrad 1093.513853 dualbound = 2828867.546407, lowerbound=1194372.546407, norm of subgrad 39.401211 stepsize= 1.000000 +dualbound = 2829005.331318, lowerbound=1195623.331318, norm of subgrad 1094.148222 dualbound = 2829005.331318, lowerbound=1195623.331318, norm of subgrad 40.924136 stepsize= 1.000000 +dualbound = 2829137.511323, lowerbound=1197265.511323, norm of subgrad 1094.877396 dualbound = 2829137.511323, lowerbound=1197265.511323, norm of subgrad 40.288708 stepsize= 1.000000 +dualbound = 2829300.415812, lowerbound=1194396.415812, norm of subgrad 1093.538484 dualbound = 2829300.415812, lowerbound=1194396.415812, norm of subgrad 39.911208 stepsize= 1.000000 +dualbound = 2829455.057967, lowerbound=1197579.057967, norm of subgrad 1095.017378 dualbound = 2829455.057967, lowerbound=1197579.057967, norm of subgrad 40.480145 stepsize= 1.000000 +dualbound = 2829607.344886, lowerbound=1193881.344886, norm of subgrad 1093.279628 dualbound = 2829607.344886, lowerbound=1193881.344886, norm of subgrad 39.131661 stepsize= 1.000000 +dualbound = 2829751.983471, lowerbound=1193998.983471, norm of subgrad 1093.356750 dualbound = 2829751.983471, lowerbound=1193998.983471, norm of subgrad 39.681716 stepsize= 1.000000 +dualbound = 2829909.555176, lowerbound=1195975.555176, norm of subgrad 1094.240629 dualbound = 2829909.555176, lowerbound=1195975.555176, norm of subgrad 39.301039 stepsize= 1.000000 +dualbound = 2830025.778213, lowerbound=1193065.778213, norm of subgrad 1092.961929 dualbound = 2830025.778213, lowerbound=1193065.778213, norm of subgrad 40.202277 stepsize= 1.000000 +dualbound = 2830166.131827, lowerbound=1195432.131827, norm of subgrad 1094.023369 dualbound = 2830166.131827, lowerbound=1195432.131827, norm of subgrad 39.941878 stepsize= 1.000000 +dualbound = 2830318.170118, lowerbound=1192484.170118, norm of subgrad 1092.668372 dualbound = 2830318.170118, lowerbound=1192484.170118, norm of subgrad 39.900355 stepsize= 1.000000 +dualbound = 2830489.380037, lowerbound=1196720.380037, norm of subgrad 1094.599644 dualbound = 2830489.380037, lowerbound=1196720.380037, norm of subgrad 39.990123 stepsize= 1.000000 +dualbound = 2830615.359920, lowerbound=1196146.359920, norm of subgrad 1094.331924 dualbound = 2830615.359920, lowerbound=1196146.359920, norm of subgrad 39.268052 stepsize= 1.000000 +dualbound = 2830781.084706, lowerbound=1194575.084706, norm of subgrad 1093.593199 dualbound = 2830781.084706, lowerbound=1194575.084706, norm of subgrad 39.201081 stepsize= 1.000000 +dualbound = 2830926.930922, lowerbound=1196459.930922, norm of subgrad 1094.458739 dualbound = 2830926.930922, lowerbound=1196459.930922, norm of subgrad 39.062082 stepsize= 1.000000 +dualbound = 2831078.693214, lowerbound=1195395.693214, norm of subgrad 1094.005801 dualbound = 2831078.693214, lowerbound=1195395.693214, norm of subgrad 40.059484 stepsize= 1.000000 +dualbound = 2831224.405258, lowerbound=1196076.405258, norm of subgrad 1094.320522 dualbound = 2831224.405258, lowerbound=1196076.405258, norm of subgrad 40.083813 stepsize= 1.000000 +dualbound = 2831331.047857, lowerbound=1190876.047857, norm of subgrad 1091.952402 dualbound = 2831331.047857, lowerbound=1190876.047857, norm of subgrad 39.882861 stepsize= 1.000000 +dualbound = 2831516.227716, lowerbound=1197291.227716, norm of subgrad 1094.850322 dualbound = 2831516.227716, lowerbound=1197291.227716, norm of subgrad 39.889596 stepsize= 1.000000 +dualbound = 2831651.492278, lowerbound=1198410.492278, norm of subgrad 1095.390110 dualbound = 2831651.492278, lowerbound=1198410.492278, norm of subgrad 40.053272 stepsize= 1.000000 +dualbound = 2831804.435225, lowerbound=1193670.435225, norm of subgrad 1093.218384 dualbound = 2831804.435225, lowerbound=1193670.435225, norm of subgrad 40.111631 stepsize= 1.000000 +dualbound = 2831927.890682, lowerbound=1196282.890682, norm of subgrad 1094.389277 dualbound = 2831927.890682, lowerbound=1196282.890682, norm of subgrad 39.095466 stepsize= 1.000000 +dualbound = 2832115.364357, lowerbound=1195874.364357, norm of subgrad 1094.191649 dualbound = 2832115.364357, lowerbound=1195874.364357, norm of subgrad 39.603960 stepsize= 1.000000 +dualbound = 2832255.669438, lowerbound=1194932.669438, norm of subgrad 1093.764449 dualbound = 2832255.669438, lowerbound=1194932.669438, norm of subgrad 39.093543 stepsize= 1.000000 +dualbound = 2832379.622112, lowerbound=1200575.622112, norm of subgrad 1096.406230 dualbound = 2832379.622112, lowerbound=1200575.622112, norm of subgrad 40.681110 stepsize= 1.000000 +dualbound = 2832490.231400, lowerbound=1194689.231400, norm of subgrad 1093.709848 dualbound = 2832490.231400, lowerbound=1194689.231400, norm of subgrad 40.281625 stepsize= 1.000000 +dualbound = 2832678.022275, lowerbound=1192726.022275, norm of subgrad 1092.783612 dualbound = 2832678.022275, lowerbound=1192726.022275, norm of subgrad 40.469629 stepsize= 1.000000 +dualbound = 2832815.722175, lowerbound=1199436.722175, norm of subgrad 1095.828327 dualbound = 2832815.722175, lowerbound=1199436.722175, norm of subgrad 39.251750 stepsize= 1.000000 +dualbound = 2832971.446349, lowerbound=1193168.446349, norm of subgrad 1092.946223 dualbound = 2832971.446349, lowerbound=1193168.446349, norm of subgrad 38.970812 stepsize= 1.000000 +dualbound = 2833122.356386, lowerbound=1194946.356386, norm of subgrad 1093.783505 dualbound = 2833122.356386, lowerbound=1194946.356386, norm of subgrad 39.584214 stepsize= 1.000000 +dualbound = 2833247.148575, lowerbound=1191796.148575, norm of subgrad 1092.334266 dualbound = 2833247.148575, lowerbound=1191796.148575, norm of subgrad 39.022970 stepsize= 1.000000 +dualbound = 2833438.159650, lowerbound=1197348.159650, norm of subgrad 1094.820606 dualbound = 2833438.159650, lowerbound=1197348.159650, norm of subgrad 38.405873 stepsize= 1.000000 +dualbound = 2833595.353927, lowerbound=1193763.353927, norm of subgrad 1093.254021 dualbound = 2833595.353927, lowerbound=1193763.353927, norm of subgrad 39.977422 stepsize= 1.000000 +dualbound = 2833676.611221, lowerbound=1198112.611221, norm of subgrad 1095.249109 dualbound = 2833676.611221, lowerbound=1198112.611221, norm of subgrad 39.233370 stepsize= 1.000000 +dualbound = 2833847.375553, lowerbound=1199161.375553, norm of subgrad 1095.718201 dualbound = 2833847.375553, lowerbound=1199161.375553, norm of subgrad 40.096937 stepsize= 1.000000 +dualbound = 2833973.449098, lowerbound=1192840.449098, norm of subgrad 1092.857012 dualbound = 2833973.449098, lowerbound=1192840.449098, norm of subgrad 40.274974 stepsize= 1.000000 +dualbound = 2834133.281810, lowerbound=1197209.281810, norm of subgrad 1094.843496 dualbound = 2834133.281810, lowerbound=1197209.281810, norm of subgrad 40.408325 stepsize= 1.000000 +dualbound = 2834256.504697, lowerbound=1193466.504697, norm of subgrad 1093.169477 dualbound = 2834256.504697, lowerbound=1193466.504697, norm of subgrad 40.941701 stepsize= 1.000000 +dualbound = 2834410.766577, lowerbound=1195077.766577, norm of subgrad 1093.871458 dualbound = 2834410.766577, lowerbound=1195077.766577, norm of subgrad 40.388883 stepsize= 1.000000 +dualbound = 2834560.493704, lowerbound=1196272.493704, norm of subgrad 1094.404173 dualbound = 2834560.493704, lowerbound=1196272.493704, norm of subgrad 39.971579 stepsize= 1.000000 +dualbound = 2834712.835534, lowerbound=1198576.835534, norm of subgrad 1095.450974 dualbound = 2834712.835534, lowerbound=1198576.835534, norm of subgrad 39.854006 stepsize= 1.000000 +dualbound = 2834843.769247, lowerbound=1194976.769247, norm of subgrad 1093.823463 dualbound = 2834843.769247, lowerbound=1194976.769247, norm of subgrad 40.049141 stepsize= 1.000000 +dualbound = 2835012.486832, lowerbound=1196476.486832, norm of subgrad 1094.468130 dualbound = 2835012.486832, lowerbound=1196476.486832, norm of subgrad 39.404538 stepsize= 1.000000 +dualbound = 2835174.504352, lowerbound=1191549.504352, norm of subgrad 1092.203966 dualbound = 2835174.504352, lowerbound=1191549.504352, norm of subgrad 39.013043 stepsize= 1.000000 +dualbound = 2835292.862738, lowerbound=1192671.862738, norm of subgrad 1092.785369 dualbound = 2835292.862738, lowerbound=1192671.862738, norm of subgrad 40.328134 stepsize= 1.000000 +dualbound = 2835435.494245, lowerbound=1195566.494245, norm of subgrad 1094.077920 dualbound = 2835435.494245, lowerbound=1195566.494245, norm of subgrad 39.782301 stepsize= 1.000000 +dualbound = 2835595.980883, lowerbound=1197732.980883, norm of subgrad 1095.048849 dualbound = 2835595.980883, lowerbound=1197732.980883, norm of subgrad 39.490336 stepsize= 1.000000 +dualbound = 2835731.093828, lowerbound=1193490.093828, norm of subgrad 1093.110284 dualbound = 2835731.093828, lowerbound=1193490.093828, norm of subgrad 39.180517 stepsize= 1.000000 +dualbound = 2835886.713800, lowerbound=1192250.713800, norm of subgrad 1092.566114 dualbound = 2835886.713800, lowerbound=1192250.713800, norm of subgrad 40.070188 stepsize= 1.000000 +dualbound = 2836037.144587, lowerbound=1197122.144587, norm of subgrad 1094.767165 dualbound = 2836037.144587, lowerbound=1197122.144587, norm of subgrad 39.286522 stepsize= 1.000000 +dualbound = 2836178.697072, lowerbound=1196014.697072, norm of subgrad 1094.295982 dualbound = 2836178.697072, lowerbound=1196014.697072, norm of subgrad 40.131689 stepsize= 1.000000 +dualbound = 2836314.336612, lowerbound=1195093.336612, norm of subgrad 1093.856177 dualbound = 2836314.336612, lowerbound=1195093.336612, norm of subgrad 39.542882 stepsize= 1.000000 +dualbound = 2836471.868966, lowerbound=1196401.868966, norm of subgrad 1094.458710 dualbound = 2836471.868966, lowerbound=1196401.868966, norm of subgrad 39.944115 stepsize= 1.000000 +dualbound = 2836606.089885, lowerbound=1197435.089885, norm of subgrad 1094.910083 dualbound = 2836606.089885, lowerbound=1197435.089885, norm of subgrad 39.079674 stepsize= 1.000000 +dualbound = 2836788.968038, lowerbound=1198992.968038, norm of subgrad 1095.629028 dualbound = 2836788.968038, lowerbound=1198992.968038, norm of subgrad 39.910878 stepsize= 1.000000 +dualbound = 2836881.678565, lowerbound=1199599.678565, norm of subgrad 1095.956513 dualbound = 2836881.678565, lowerbound=1199599.678565, norm of subgrad 40.171016 stepsize= 1.000000 +dualbound = 2837038.220893, lowerbound=1191745.220893, norm of subgrad 1092.324687 dualbound = 2837038.220893, lowerbound=1191745.220893, norm of subgrad 39.806310 stepsize= 1.000000 +dualbound = 2837212.544456, lowerbound=1193437.544456, norm of subgrad 1093.109576 dualbound = 2837212.544456, lowerbound=1193437.544456, norm of subgrad 40.315302 stepsize= 1.000000 +dualbound = 2837324.465282, lowerbound=1197044.465282, norm of subgrad 1094.766854 dualbound = 2837324.465282, lowerbound=1197044.465282, norm of subgrad 39.773368 stepsize= 1.000000 +dualbound = 2837488.344066, lowerbound=1195752.344066, norm of subgrad 1094.162394 dualbound = 2837488.344066, lowerbound=1195752.344066, norm of subgrad 40.035969 stepsize= 1.000000 +dualbound = 2837648.863102, lowerbound=1195712.863102, norm of subgrad 1094.129272 dualbound = 2837648.863102, lowerbound=1195712.863102, norm of subgrad 39.579275 stepsize= 1.000000 +dualbound = 2837795.729991, lowerbound=1198119.729991, norm of subgrad 1095.213555 dualbound = 2837795.729991, lowerbound=1198119.729991, norm of subgrad 38.985470 stepsize= 1.000000 +dualbound = 2837946.401354, lowerbound=1194281.401354, norm of subgrad 1093.487723 dualbound = 2837946.401354, lowerbound=1194281.401354, norm of subgrad 39.807931 stepsize= 1.000000 +dualbound = 2838066.088425, lowerbound=1196212.088425, norm of subgrad 1094.393480 dualbound = 2838066.088425, lowerbound=1196212.088425, norm of subgrad 40.058546 stepsize= 1.000000 +dualbound = 2838228.138983, lowerbound=1196153.138983, norm of subgrad 1094.359237 dualbound = 2838228.138983, lowerbound=1196153.138983, norm of subgrad 40.386267 stepsize= 1.000000 +dualbound = 2838371.250719, lowerbound=1193541.250719, norm of subgrad 1093.143289 dualbound = 2838371.250719, lowerbound=1193541.250719, norm of subgrad 39.548853 stepsize= 1.000000 +dualbound = 2838542.962112, lowerbound=1197893.962112, norm of subgrad 1095.113675 dualbound = 2838542.962112, lowerbound=1197893.962112, norm of subgrad 39.391768 stepsize= 1.000000 +dualbound = 2838672.089124, lowerbound=1197814.089124, norm of subgrad 1095.073554 dualbound = 2838672.089124, lowerbound=1197814.089124, norm of subgrad 38.744380 stepsize= 1.000000 +dualbound = 2838844.226765, lowerbound=1196195.226765, norm of subgrad 1094.344199 dualbound = 2838844.226765, lowerbound=1196195.226765, norm of subgrad 39.574457 stepsize= 1.000000 +dualbound = 2838934.956412, lowerbound=1197698.956412, norm of subgrad 1095.062535 dualbound = 2838934.956412, lowerbound=1197698.956412, norm of subgrad 39.417377 stepsize= 1.000000 +dualbound = 2839085.124119, lowerbound=1193878.124119, norm of subgrad 1093.310168 dualbound = 2839085.124119, lowerbound=1193878.124119, norm of subgrad 39.989595 stepsize= 1.000000 +dualbound = 2839222.522704, lowerbound=1197253.522704, norm of subgrad 1094.856850 dualbound = 2839222.522704, lowerbound=1197253.522704, norm of subgrad 39.942441 stepsize= 1.000000 +dualbound = 2839387.085271, lowerbound=1199543.085271, norm of subgrad 1095.932062 dualbound = 2839387.085271, lowerbound=1199543.085271, norm of subgrad 41.092123 stepsize= 1.000000 +dualbound = 2839505.012844, lowerbound=1196204.012844, norm of subgrad 1094.378825 dualbound = 2839505.012844, lowerbound=1196204.012844, norm of subgrad 39.735722 stepsize= 1.000000 +dualbound = 2839716.432825, lowerbound=1197402.432825, norm of subgrad 1094.886493 dualbound = 2839716.432825, lowerbound=1197402.432825, norm of subgrad 39.817333 stepsize= 1.000000 +dualbound = 2839843.577540, lowerbound=1191537.577540, norm of subgrad 1092.227805 dualbound = 2839843.577540, lowerbound=1191537.577540, norm of subgrad 39.384575 stepsize= 1.000000 +dualbound = 2839968.282685, lowerbound=1200112.282685, norm of subgrad 1096.137438 dualbound = 2839968.282685, lowerbound=1200112.282685, norm of subgrad 39.111445 stepsize= 1.000000 +dualbound = 2840133.727205, lowerbound=1198170.727205, norm of subgrad 1095.230445 dualbound = 2840133.727205, lowerbound=1198170.727205, norm of subgrad 39.044136 stepsize= 1.000000 +dualbound = 2840252.647739, lowerbound=1190047.647739, norm of subgrad 1091.562480 dualbound = 2840252.647739, lowerbound=1190047.647739, norm of subgrad 39.748214 stepsize= 1.000000 +dualbound = 2840424.536774, lowerbound=1192378.536774, norm of subgrad 1092.620948 dualbound = 2840424.536774, lowerbound=1192378.536774, norm of subgrad 40.173238 stepsize= 1.000000 +dualbound = 2840522.545206, lowerbound=1195296.545206, norm of subgrad 1093.963228 dualbound = 2840522.545206, lowerbound=1195296.545206, norm of subgrad 39.458946 stepsize= 1.000000 +dualbound = 2840686.070844, lowerbound=1200395.070844, norm of subgrad 1096.312944 dualbound = 2840686.070844, lowerbound=1200395.070844, norm of subgrad 40.872064 stepsize= 1.000000 +dualbound = 2840830.515860, lowerbound=1196526.515860, norm of subgrad 1094.496467 dualbound = 2840830.515860, lowerbound=1196526.515860, norm of subgrad 39.248503 stepsize= 1.000000 +dualbound = 2841014.855204, lowerbound=1196808.855204, norm of subgrad 1094.609453 dualbound = 2841014.855204, lowerbound=1196808.855204, norm of subgrad 39.310804 stepsize= 1.000000 +dualbound = 2841155.517722, lowerbound=1197874.517722, norm of subgrad 1095.107537 dualbound = 2841155.517722, lowerbound=1197874.517722, norm of subgrad 39.072529 stepsize= 1.000000 +dualbound = 2841284.511113, lowerbound=1194192.511113, norm of subgrad 1093.456223 dualbound = 2841284.511113, lowerbound=1194192.511113, norm of subgrad 39.786849 stepsize= 1.000000 +dualbound = 2841415.421661, lowerbound=1195695.421661, norm of subgrad 1094.162886 dualbound = 2841415.421661, lowerbound=1195695.421661, norm of subgrad 40.347373 stepsize= 1.000000 +dualbound = 2841557.937505, lowerbound=1195797.937505, norm of subgrad 1094.175917 dualbound = 2841557.937505, lowerbound=1195797.937505, norm of subgrad 39.566600 stepsize= 1.000000 +dualbound = 2841721.163231, lowerbound=1201975.163231, norm of subgrad 1097.028789 dualbound = 2841721.163231, lowerbound=1201975.163231, norm of subgrad 40.745868 stepsize= 1.000000 +dualbound = 2841848.596729, lowerbound=1199188.596729, norm of subgrad 1095.741574 dualbound = 2841848.596729, lowerbound=1199188.596729, norm of subgrad 39.855156 stepsize= 1.000000 +dualbound = 2841974.841238, lowerbound=1197925.841238, norm of subgrad 1095.192605 dualbound = 2841974.841238, lowerbound=1197925.841238, norm of subgrad 40.586260 stepsize= 1.000000 +dualbound = 2842112.645381, lowerbound=1197214.645381, norm of subgrad 1094.859646 dualbound = 2842112.645381, lowerbound=1197214.645381, norm of subgrad 40.506841 stepsize= 1.000000 +dualbound = 2842269.502650, lowerbound=1196404.502650, norm of subgrad 1094.468594 dualbound = 2842269.502650, lowerbound=1196404.502650, norm of subgrad 40.172842 stepsize= 1.000000 +dualbound = 2842450.914957, lowerbound=1194526.914957, norm of subgrad 1093.548771 dualbound = 2842450.914957, lowerbound=1194526.914957, norm of subgrad 38.773861 stepsize= 1.000000 +dualbound = 2842597.607329, lowerbound=1198051.607329, norm of subgrad 1095.193411 dualbound = 2842597.607329, lowerbound=1198051.607329, norm of subgrad 39.289851 stepsize= 1.000000 +dualbound = 2842715.049908, lowerbound=1195022.049908, norm of subgrad 1093.842790 dualbound = 2842715.049908, lowerbound=1195022.049908, norm of subgrad 39.842723 stepsize= 1.000000 +dualbound = 2842873.694492, lowerbound=1195411.694492, norm of subgrad 1093.989805 dualbound = 2842873.694492, lowerbound=1195411.694492, norm of subgrad 39.504994 stepsize= 1.000000 +dualbound = 2843005.355560, lowerbound=1198316.355560, norm of subgrad 1095.298295 dualbound = 2843005.355560, lowerbound=1198316.355560, norm of subgrad 38.647912 stepsize= 1.000000 +dualbound = 2843172.576435, lowerbound=1193379.576435, norm of subgrad 1093.071625 dualbound = 2843172.576435, lowerbound=1193379.576435, norm of subgrad 39.915171 stepsize= 1.000000 +dualbound = 2843296.619181, lowerbound=1198372.619181, norm of subgrad 1095.355933 dualbound = 2843296.619181, lowerbound=1198372.619181, norm of subgrad 39.446708 stepsize= 1.000000 +dualbound = 2843443.018535, lowerbound=1199514.018535, norm of subgrad 1095.871808 dualbound = 2843443.018535, lowerbound=1199514.018535, norm of subgrad 39.590395 stepsize= 1.000000 +dualbound = 2843604.602459, lowerbound=1197176.602459, norm of subgrad 1094.788839 dualbound = 2843604.602459, lowerbound=1197176.602459, norm of subgrad 39.339343 stepsize= 1.000000 +dualbound = 2843755.324508, lowerbound=1195354.324508, norm of subgrad 1094.012488 dualbound = 2843755.324508, lowerbound=1195354.324508, norm of subgrad 40.739686 stepsize= 1.000000 +dualbound = 2843866.870209, lowerbound=1196193.870209, norm of subgrad 1094.371907 dualbound = 2843866.870209, lowerbound=1196193.870209, norm of subgrad 39.592243 stepsize= 1.000000 +dualbound = 2844017.283174, lowerbound=1198876.283174, norm of subgrad 1095.607267 dualbound = 2844017.283174, lowerbound=1198876.283174, norm of subgrad 40.365988 stepsize= 1.000000 +dualbound = 2844191.511106, lowerbound=1198880.511106, norm of subgrad 1095.588203 dualbound = 2844191.511106, lowerbound=1198880.511106, norm of subgrad 40.090247 stepsize= 1.000000 +dualbound = 2844338.782426, lowerbound=1198848.782426, norm of subgrad 1095.562313 dualbound = 2844338.782426, lowerbound=1198848.782426, norm of subgrad 39.436928 stepsize= 1.000000 +dualbound = 2844441.980632, lowerbound=1190221.980632, norm of subgrad 1091.646454 dualbound = 2844441.980632, lowerbound=1190221.980632, norm of subgrad 39.663563 stepsize= 1.000000 +dualbound = 2844612.156999, lowerbound=1196996.156999, norm of subgrad 1094.745248 dualbound = 2844612.156999, lowerbound=1196996.156999, norm of subgrad 40.511435 stepsize= 1.000000 +dualbound = 2844744.193713, lowerbound=1195761.193713, norm of subgrad 1094.191114 dualbound = 2844744.193713, lowerbound=1195761.193713, norm of subgrad 40.311744 stepsize= 1.000000 +dualbound = 2844900.908956, lowerbound=1202419.908956, norm of subgrad 1097.210057 dualbound = 2844900.908956, lowerbound=1202419.908956, norm of subgrad 40.083853 stepsize= 1.000000 +dualbound = 2845050.828668, lowerbound=1197250.828668, norm of subgrad 1094.829132 dualbound = 2845050.828668, lowerbound=1197250.828668, norm of subgrad 39.369020 stepsize= 1.000000 +dualbound = 2845197.202377, lowerbound=1199179.202377, norm of subgrad 1095.695305 dualbound = 2845197.202377, lowerbound=1199179.202377, norm of subgrad 38.927801 stepsize= 1.000000 +dualbound = 2845343.383556, lowerbound=1194104.383556, norm of subgrad 1093.394432 dualbound = 2845343.383556, lowerbound=1194104.383556, norm of subgrad 39.410420 stepsize= 1.000000 +dualbound = 2845505.491129, lowerbound=1199457.491129, norm of subgrad 1095.838260 dualbound = 2845505.491129, lowerbound=1199457.491129, norm of subgrad 39.574077 stepsize= 1.000000 +dualbound = 2845617.262056, lowerbound=1197996.262056, norm of subgrad 1095.205580 dualbound = 2845617.262056, lowerbound=1197996.262056, norm of subgrad 39.884470 stepsize= 1.000000 +dualbound = 2845736.942295, lowerbound=1200144.942295, norm of subgrad 1096.161914 dualbound = 2845736.942295, lowerbound=1200144.942295, norm of subgrad 39.315140 stepsize= 1.000000 +dualbound = 2845929.671698, lowerbound=1198921.671698, norm of subgrad 1095.572303 dualbound = 2845929.671698, lowerbound=1198921.671698, norm of subgrad 39.366603 stepsize= 1.000000 +dualbound = 2846071.388256, lowerbound=1195911.388256, norm of subgrad 1094.213137 dualbound = 2846071.388256, lowerbound=1195911.388256, norm of subgrad 39.149924 stepsize= 1.000000 +dualbound = 2846209.308099, lowerbound=1196617.308099, norm of subgrad 1094.541597 dualbound = 2846209.308099, lowerbound=1196617.308099, norm of subgrad 39.267287 stepsize= 1.000000 +dualbound = 2846338.616697, lowerbound=1192969.616697, norm of subgrad 1092.878134 dualbound = 2846338.616697, lowerbound=1192969.616697, norm of subgrad 39.272237 stepsize= 1.000000 +dualbound = 2846476.642661, lowerbound=1198837.642661, norm of subgrad 1095.579136 dualbound = 2846476.642661, lowerbound=1198837.642661, norm of subgrad 39.925255 stepsize= 1.000000 +dualbound = 2846640.136139, lowerbound=1191769.136139, norm of subgrad 1092.310000 dualbound = 2846640.136139, lowerbound=1191769.136139, norm of subgrad 39.185373 stepsize= 1.000000 +dualbound = 2846769.698076, lowerbound=1193108.698076, norm of subgrad 1092.946338 dualbound = 2846769.698076, lowerbound=1193108.698076, norm of subgrad 39.402563 stepsize= 1.000000 +dualbound = 2846942.686258, lowerbound=1198428.686258, norm of subgrad 1095.377874 dualbound = 2846942.686258, lowerbound=1198428.686258, norm of subgrad 39.962335 stepsize= 1.000000 +dualbound = 2847052.675890, lowerbound=1196499.675890, norm of subgrad 1094.504763 dualbound = 2847052.675890, lowerbound=1196499.675890, norm of subgrad 39.382606 stepsize= 1.000000 +dualbound = 2847208.142651, lowerbound=1198161.142651, norm of subgrad 1095.246156 dualbound = 2847208.142651, lowerbound=1198161.142651, norm of subgrad 39.477421 stepsize= 1.000000 +dualbound = 2847355.419969, lowerbound=1195502.419969, norm of subgrad 1094.045438 dualbound = 2847355.419969, lowerbound=1195502.419969, norm of subgrad 39.752702 stepsize= 1.000000 +dualbound = 2847509.497543, lowerbound=1203517.497543, norm of subgrad 1097.717859 dualbound = 2847509.497543, lowerbound=1203517.497543, norm of subgrad 40.262608 stepsize= 1.000000 +dualbound = 2847652.972694, lowerbound=1200522.972694, norm of subgrad 1096.359418 dualbound = 2847652.972694, lowerbound=1200522.972694, norm of subgrad 40.304778 stepsize= 1.000000 +dualbound = 2847783.296870, lowerbound=1194775.296870, norm of subgrad 1093.698906 dualbound = 2847783.296870, lowerbound=1194775.296870, norm of subgrad 39.144913 stepsize= 1.000000 +dualbound = 2847925.478451, lowerbound=1196432.478451, norm of subgrad 1094.458075 dualbound = 2847925.478451, lowerbound=1196432.478451, norm of subgrad 39.346939 stepsize= 1.000000 +dualbound = 2848065.649367, lowerbound=1194970.649367, norm of subgrad 1093.811067 dualbound = 2848065.649367, lowerbound=1194970.649367, norm of subgrad 39.902016 stepsize= 1.000000 +dualbound = 2848190.078370, lowerbound=1197723.078370, norm of subgrad 1095.100031 dualbound = 2848190.078370, lowerbound=1197723.078370, norm of subgrad 40.563888 stepsize= 1.000000 +dualbound = 2848350.658965, lowerbound=1199183.658965, norm of subgrad 1095.727000 dualbound = 2848350.658965, lowerbound=1199183.658965, norm of subgrad 39.932200 stepsize= 1.000000 +dualbound = 2848491.439719, lowerbound=1196623.439719, norm of subgrad 1094.547596 dualbound = 2848491.439719, lowerbound=1196623.439719, norm of subgrad 39.392648 stepsize= 1.000000 +dualbound = 2848658.683611, lowerbound=1197976.683611, norm of subgrad 1095.138203 dualbound = 2848658.683611, lowerbound=1197976.683611, norm of subgrad 38.964649 stepsize= 1.000000 +dualbound = 2848816.550923, lowerbound=1200227.550923, norm of subgrad 1096.171771 dualbound = 2848816.550923, lowerbound=1200227.550923, norm of subgrad 39.023933 stepsize= 1.000000 +dualbound = 2848949.823380, lowerbound=1194212.823380, norm of subgrad 1093.437618 dualbound = 2848949.823380, lowerbound=1194212.823380, norm of subgrad 39.067537 stepsize= 1.000000 +dualbound = 2849064.164384, lowerbound=1203023.164384, norm of subgrad 1097.466247 dualbound = 2849064.164384, lowerbound=1203023.164384, norm of subgrad 39.030001 stepsize= 1.000000 +dualbound = 2849222.848900, lowerbound=1197794.848900, norm of subgrad 1095.069335 dualbound = 2849222.848900, lowerbound=1197794.848900, norm of subgrad 39.251554 stepsize= 1.000000 +dualbound = 2849345.728625, lowerbound=1196006.728625, norm of subgrad 1094.264926 dualbound = 2849345.728625, lowerbound=1196006.728625, norm of subgrad 39.139235 stepsize= 1.000000 +dualbound = 2849510.454807, lowerbound=1202103.454807, norm of subgrad 1097.067662 dualbound = 2849510.454807, lowerbound=1202103.454807, norm of subgrad 40.233396 stepsize= 1.000000 +dualbound = 2849637.821863, lowerbound=1195734.821863, norm of subgrad 1094.139763 dualbound = 2849637.821863, lowerbound=1195734.821863, norm of subgrad 39.170998 stepsize= 1.000000 +dualbound = 2849787.633273, lowerbound=1197753.633273, norm of subgrad 1095.079282 dualbound = 2849787.633273, lowerbound=1197753.633273, norm of subgrad 39.935090 stepsize= 1.000000 +dualbound = 2849917.501742, lowerbound=1199287.501742, norm of subgrad 1095.776210 dualbound = 2849917.501742, lowerbound=1199287.501742, norm of subgrad 39.596319 stepsize= 1.000000 +dualbound = 2850084.183725, lowerbound=1196896.183725, norm of subgrad 1094.650713 dualbound = 2850084.183725, lowerbound=1196896.183725, norm of subgrad 39.123931 stepsize= 1.000000 +dualbound = 2850240.210861, lowerbound=1193998.210861, norm of subgrad 1093.328958 dualbound = 2850240.210861, lowerbound=1193998.210861, norm of subgrad 39.064397 stepsize= 1.000000 +dualbound = 2850375.604378, lowerbound=1202719.604378, norm of subgrad 1097.318370 dualbound = 2850375.604378, lowerbound=1202719.604378, norm of subgrad 39.030674 stepsize= 1.000000 +dualbound = 2850502.065636, lowerbound=1191024.065636, norm of subgrad 1092.005067 dualbound = 2850502.065636, lowerbound=1191024.065636, norm of subgrad 39.717266 stepsize= 1.000000 +dualbound = 2850631.048495, lowerbound=1197543.048495, norm of subgrad 1095.014634 dualbound = 2850631.048495, lowerbound=1197543.048495, norm of subgrad 40.533725 stepsize= 1.000000 +dualbound = 2850783.503215, lowerbound=1196445.503215, norm of subgrad 1094.491436 dualbound = 2850783.503215, lowerbound=1196445.503215, norm of subgrad 40.230023 stepsize= 1.000000 +dualbound = 2850947.467585, lowerbound=1197661.467585, norm of subgrad 1095.007976 dualbound = 2850947.467585, lowerbound=1197661.467585, norm of subgrad 39.306035 stepsize= 1.000000 +dualbound = 2851086.757375, lowerbound=1197287.757375, norm of subgrad 1094.888011 dualbound = 2851086.757375, lowerbound=1197287.757375, norm of subgrad 40.389229 stepsize= 1.000000 +dualbound = 2851240.424729, lowerbound=1199981.424729, norm of subgrad 1096.075009 dualbound = 2851240.424729, lowerbound=1199981.424729, norm of subgrad 39.403900 stepsize= 1.000000 +dualbound = 2851372.349912, lowerbound=1197246.349912, norm of subgrad 1094.845811 dualbound = 2851372.349912, lowerbound=1197246.349912, norm of subgrad 39.660121 stepsize= 1.000000 +dualbound = 2851532.750349, lowerbound=1207621.750349, norm of subgrad 1099.557525 dualbound = 2851532.750349, lowerbound=1207621.750349, norm of subgrad 39.565142 stepsize= 1.000000 +dualbound = 2851659.474312, lowerbound=1196407.474311, norm of subgrad 1094.472236 dualbound = 2851659.474312, lowerbound=1196407.474311, norm of subgrad 39.858800 stepsize= 1.000000 +dualbound = 2851799.104535, lowerbound=1193925.104535, norm of subgrad 1093.318849 dualbound = 2851799.104535, lowerbound=1193925.104535, norm of subgrad 39.504813 stepsize= 1.000000 +dualbound = 2851928.874075, lowerbound=1197145.874075, norm of subgrad 1094.833263 dualbound = 2851928.874075, lowerbound=1197145.874075, norm of subgrad 40.543428 stepsize= 1.000000 +dualbound = 2852074.148381, lowerbound=1199391.148381, norm of subgrad 1095.851335 dualbound = 2852074.148381, lowerbound=1199391.148381, norm of subgrad 40.549652 stepsize= 1.000000 +dualbound = 2852218.273030, lowerbound=1196484.273030, norm of subgrad 1094.500924 dualbound = 2852218.273030, lowerbound=1196484.273030, norm of subgrad 39.901437 stepsize= 1.000000 +dualbound = 2852382.375660, lowerbound=1197365.375660, norm of subgrad 1094.912497 dualbound = 2852382.375660, lowerbound=1197365.375660, norm of subgrad 40.399290 stepsize= 1.000000 +dualbound = 2852518.003902, lowerbound=1195742.003902, norm of subgrad 1094.162695 dualbound = 2852518.003902, lowerbound=1195742.003902, norm of subgrad 39.819948 stepsize= 1.000000 +dualbound = 2852663.868814, lowerbound=1197762.868814, norm of subgrad 1095.061582 dualbound = 2852663.868814, lowerbound=1197762.868814, norm of subgrad 39.279319 stepsize= 1.000000 +dualbound = 2852855.306227, lowerbound=1200512.306227, norm of subgrad 1096.294808 dualbound = 2852855.306227, lowerbound=1200512.306227, norm of subgrad 39.261144 stepsize= 1.000000 +dualbound = 2852978.157572, lowerbound=1197157.157572, norm of subgrad 1094.795487 dualbound = 2852978.157572, lowerbound=1197157.157572, norm of subgrad 39.279146 stepsize= 1.000000 +dualbound = 2853082.914339, lowerbound=1195846.914339, norm of subgrad 1094.220688 dualbound = 2853082.914339, lowerbound=1195846.914339, norm of subgrad 39.708397 stepsize= 1.000000 +dualbound = 2853245.077568, lowerbound=1203142.077568, norm of subgrad 1097.513589 dualbound = 2853245.077568, lowerbound=1203142.077568, norm of subgrad 39.448235 stepsize= 1.000000 +dualbound = 2853418.600731, lowerbound=1195466.600731, norm of subgrad 1094.003474 dualbound = 2853418.600731, lowerbound=1195466.600731, norm of subgrad 39.376683 stepsize= 1.000000 +dualbound = 2853551.165272, lowerbound=1196552.165272, norm of subgrad 1094.491738 dualbound = 2853551.165272, lowerbound=1196552.165272, norm of subgrad 38.633723 stepsize= 1.000000 +dualbound = 2853685.794242, lowerbound=1197928.794242, norm of subgrad 1095.142363 dualbound = 2853685.794242, lowerbound=1197928.794242, norm of subgrad 39.276316 stepsize= 1.000000 +dualbound = 2853839.553344, lowerbound=1198366.553344, norm of subgrad 1095.338556 dualbound = 2853839.553344, lowerbound=1198366.553344, norm of subgrad 39.417751 stepsize= 1.000000 +dualbound = 2853988.988341, lowerbound=1194405.988341, norm of subgrad 1093.503538 dualbound = 2853988.988341, lowerbound=1194405.988341, norm of subgrad 38.644987 stepsize= 1.000000 +dualbound = 2854135.407405, lowerbound=1198585.407405, norm of subgrad 1095.446670 dualbound = 2854135.407405, lowerbound=1198585.407405, norm of subgrad 39.552738 stepsize= 1.000000 +dualbound = 2854233.980406, lowerbound=1198391.980406, norm of subgrad 1095.358380 dualbound = 2854233.980406, lowerbound=1198391.980406, norm of subgrad 38.943202 stepsize= 1.000000 +dualbound = 2854407.646123, lowerbound=1199437.646123, norm of subgrad 1095.848368 dualbound = 2854407.646123, lowerbound=1199437.646123, norm of subgrad 40.245071 stepsize= 1.000000 +dualbound = 2854548.036390, lowerbound=1194376.036390, norm of subgrad 1093.549741 dualbound = 2854548.036390, lowerbound=1194376.036390, norm of subgrad 40.191918 stepsize= 1.000000 +dualbound = 2854675.463249, lowerbound=1198239.463249, norm of subgrad 1095.326647 dualbound = 2854675.463249, lowerbound=1198239.463249, norm of subgrad 40.353771 stepsize= 1.000000 +dualbound = 2854803.376617, lowerbound=1196830.376617, norm of subgrad 1094.687799 dualbound = 2854803.376617, lowerbound=1196830.376617, norm of subgrad 40.483495 stepsize= 1.000000 +dualbound = 2854968.569587, lowerbound=1199454.569587, norm of subgrad 1095.836470 dualbound = 2854968.569587, lowerbound=1199454.569587, norm of subgrad 39.600416 stepsize= 1.000000 +dualbound = 2855110.908300, lowerbound=1200461.908300, norm of subgrad 1096.304204 dualbound = 2855110.908300, lowerbound=1200461.908300, norm of subgrad 39.539078 stepsize= 1.000000 +dualbound = 2855264.699816, lowerbound=1196730.699816, norm of subgrad 1094.610296 dualbound = 2855264.699816, lowerbound=1196730.699816, norm of subgrad 39.934841 stepsize= 1.000000 +dualbound = 2855390.404701, lowerbound=1199772.404701, norm of subgrad 1095.965969 dualbound = 2855390.404701, lowerbound=1199772.404701, norm of subgrad 38.661413 stepsize= 1.000000 +dualbound = 2855563.360169, lowerbound=1203127.360169, norm of subgrad 1097.517818 dualbound = 2855563.360169, lowerbound=1203127.360169, norm of subgrad 39.886783 stepsize= 1.000000 +dualbound = 2855670.976034, lowerbound=1196556.976034, norm of subgrad 1094.535964 dualbound = 2855670.976034, lowerbound=1196556.976034, norm of subgrad 39.491972 stepsize= 1.000000 +dualbound = 2855850.825031, lowerbound=1193573.825031, norm of subgrad 1093.182430 dualbound = 2855850.825031, lowerbound=1193573.825031, norm of subgrad 40.667542 stepsize= 1.000000 +dualbound = 2855966.837404, lowerbound=1199790.837404, norm of subgrad 1095.983959 dualbound = 2855966.837404, lowerbound=1199790.837404, norm of subgrad 38.807375 stepsize= 1.000000 +dualbound = 2856133.804141, lowerbound=1196151.804141, norm of subgrad 1094.317963 dualbound = 2856133.804141, lowerbound=1196151.804141, norm of subgrad 39.331498 stepsize= 1.000000 +dualbound = 2856286.761046, lowerbound=1197675.761046, norm of subgrad 1095.014503 dualbound = 2856286.761046, lowerbound=1197675.761046, norm of subgrad 39.165762 stepsize= 1.000000 +dualbound = 2856436.114774, lowerbound=1198194.114774, norm of subgrad 1095.231991 dualbound = 2856436.114774, lowerbound=1198194.114774, norm of subgrad 38.579188 stepsize= 1.000000 +dualbound = 2856578.980656, lowerbound=1196261.980656, norm of subgrad 1094.357794 dualbound = 2856578.980656, lowerbound=1196261.980656, norm of subgrad 38.728102 stepsize= 1.000000 +dualbound = 2856713.275535, lowerbound=1196710.275535, norm of subgrad 1094.617867 dualbound = 2856713.275535, lowerbound=1196710.275535, norm of subgrad 40.153392 stepsize= 1.000000 +dualbound = 2856846.684825, lowerbound=1199110.684825, norm of subgrad 1095.677729 dualbound = 2856846.684825, lowerbound=1199110.684825, norm of subgrad 39.146000 stepsize= 1.000000 +dualbound = 2856990.998665, lowerbound=1195194.998665, norm of subgrad 1093.916815 dualbound = 2856990.998665, lowerbound=1195194.998665, norm of subgrad 40.041402 stepsize= 1.000000 +dualbound = 2857102.318517, lowerbound=1200079.318517, norm of subgrad 1096.142016 dualbound = 2857102.318517, lowerbound=1200079.318517, norm of subgrad 39.488224 stepsize= 1.000000 +dualbound = 2857266.963481, lowerbound=1202767.963481, norm of subgrad 1097.382779 dualbound = 2857266.963481, lowerbound=1202767.963481, norm of subgrad 40.566550 stepsize= 1.000000 +dualbound = 2857407.580826, lowerbound=1198352.580826, norm of subgrad 1095.333091 dualbound = 2857407.580826, lowerbound=1198352.580826, norm of subgrad 39.276168 stepsize= 1.000000 +dualbound = 2857561.432360, lowerbound=1197493.432360, norm of subgrad 1094.974170 dualbound = 2857561.432360, lowerbound=1197493.432360, norm of subgrad 40.359033 stepsize= 1.000000 +dualbound = 2857696.389638, lowerbound=1198356.389638, norm of subgrad 1095.365414 dualbound = 2857696.389638, lowerbound=1198356.389638, norm of subgrad 40.049435 stepsize= 1.000000 +dualbound = 2857851.180431, lowerbound=1196454.180431, norm of subgrad 1094.448802 dualbound = 2857851.180431, lowerbound=1196454.180431, norm of subgrad 38.971667 stepsize= 1.000000 +dualbound = 2857970.124903, lowerbound=1199008.124903, norm of subgrad 1095.661045 dualbound = 2857970.124903, lowerbound=1199008.124903, norm of subgrad 39.798800 stepsize= 1.000000 +dualbound = 2858125.297505, lowerbound=1193753.297505, norm of subgrad 1093.250336 dualbound = 2858125.297505, lowerbound=1193753.297505, norm of subgrad 39.977151 stepsize= 1.000000 +dualbound = 2858279.905288, lowerbound=1196790.905288, norm of subgrad 1094.615414 dualbound = 2858279.905288, lowerbound=1196790.905288, norm of subgrad 39.326935 stepsize= 1.000000 +dualbound = 2858421.598311, lowerbound=1199375.598311, norm of subgrad 1095.817776 dualbound = 2858421.598311, lowerbound=1199375.598311, norm of subgrad 39.783075 stepsize= 1.000000 +dualbound = 2858536.067567, lowerbound=1199665.067567, norm of subgrad 1095.965815 dualbound = 2858536.067567, lowerbound=1199665.067567, norm of subgrad 39.880688 stepsize= 1.000000 +dualbound = 2858685.115496, lowerbound=1200656.115496, norm of subgrad 1096.402807 dualbound = 2858685.115496, lowerbound=1200656.115496, norm of subgrad 39.900475 stepsize= 1.000000 +dualbound = 2858857.144809, lowerbound=1202183.144809, norm of subgrad 1097.080282 dualbound = 2858857.144809, lowerbound=1202183.144809, norm of subgrad 39.674038 stepsize= 1.000000 +dualbound = 2858975.027525, lowerbound=1202288.027525, norm of subgrad 1097.147678 dualbound = 2858975.027525, lowerbound=1202288.027525, norm of subgrad 39.533311 stepsize= 1.000000 +dualbound = 2859105.613132, lowerbound=1196273.613132, norm of subgrad 1094.397831 dualbound = 2859105.613132, lowerbound=1196273.613132, norm of subgrad 39.542200 stepsize= 1.000000 +dualbound = 2859272.520364, lowerbound=1193470.520364, norm of subgrad 1093.086694 dualbound = 2859272.520364, lowerbound=1193470.520364, norm of subgrad 39.177892 stepsize= 1.000000 +dualbound = 2859441.109664, lowerbound=1200050.109664, norm of subgrad 1096.093568 dualbound = 2859441.109664, lowerbound=1200050.109664, norm of subgrad 39.237601 stepsize= 1.000000 +dualbound = 2859575.496408, lowerbound=1197000.496408, norm of subgrad 1094.702469 dualbound = 2859575.496408, lowerbound=1197000.496408, norm of subgrad 38.825079 stepsize= 1.000000 +dualbound = 2859725.955083, lowerbound=1203645.955083, norm of subgrad 1097.742208 dualbound = 2859725.955083, lowerbound=1203645.955083, norm of subgrad 39.274148 stepsize= 1.000000 +dualbound = 2859856.129319, lowerbound=1196727.129319, norm of subgrad 1094.624195 dualbound = 2859856.129319, lowerbound=1196727.129319, norm of subgrad 40.064626 stepsize= 1.000000 +dualbound = 2859973.427643, lowerbound=1196591.427643, norm of subgrad 1094.525663 dualbound = 2859973.427643, lowerbound=1196591.427643, norm of subgrad 38.888280 stepsize= 1.000000 +dualbound = 2860145.525567, lowerbound=1193569.525567, norm of subgrad 1093.120545 dualbound = 2860145.525567, lowerbound=1193569.525567, norm of subgrad 38.924259 stepsize= 1.000000 +dualbound = 2860276.475150, lowerbound=1204685.475150, norm of subgrad 1098.207392 dualbound = 2860276.475150, lowerbound=1204685.475150, norm of subgrad 38.793680 stepsize= 1.000000 +dualbound = 2860427.973255, lowerbound=1192097.973255, norm of subgrad 1092.466006 dualbound = 2860427.973255, lowerbound=1192097.973255, norm of subgrad 39.185432 stepsize= 1.000000 +dualbound = 2860584.253028, lowerbound=1204273.253028, norm of subgrad 1098.029259 dualbound = 2860584.253028, lowerbound=1204273.253028, norm of subgrad 39.386289 stepsize= 1.000000 +dualbound = 2860687.622500, lowerbound=1199402.622500, norm of subgrad 1095.840145 dualbound = 2860687.622500, lowerbound=1199402.622500, norm of subgrad 39.577386 stepsize= 1.000000 +dualbound = 2860841.063058, lowerbound=1197811.063058, norm of subgrad 1095.100024 dualbound = 2860841.063058, lowerbound=1197811.063058, norm of subgrad 39.830146 stepsize= 1.000000 +dualbound = 2860984.026731, lowerbound=1199281.026731, norm of subgrad 1095.768236 dualbound = 2860984.026731, lowerbound=1199281.026731, norm of subgrad 39.622767 stepsize= 1.000000 +dualbound = 2861116.616942, lowerbound=1196239.616942, norm of subgrad 1094.401945 dualbound = 2861116.616942, lowerbound=1196239.616942, norm of subgrad 40.107234 stepsize= 1.000000 +dualbound = 2861269.405943, lowerbound=1198259.405943, norm of subgrad 1095.288732 dualbound = 2861269.405943, lowerbound=1198259.405943, norm of subgrad 39.380058 stepsize= 1.000000 +dualbound = 2861414.858429, lowerbound=1203174.858429, norm of subgrad 1097.555857 dualbound = 2861414.858429, lowerbound=1203174.858429, norm of subgrad 39.993155 stepsize= 1.000000 +dualbound = 2861576.002359, lowerbound=1196052.002359, norm of subgrad 1094.313028 dualbound = 2861576.002359, lowerbound=1196052.002359, norm of subgrad 40.375041 stepsize= 1.000000 +dualbound = 2861693.954798, lowerbound=1198518.954798, norm of subgrad 1095.406753 dualbound = 2861693.954798, lowerbound=1198518.954798, norm of subgrad 38.922390 stepsize= 1.000000 +dualbound = 2861862.210622, lowerbound=1198801.210622, norm of subgrad 1095.546992 dualbound = 2861862.210622, lowerbound=1198801.210622, norm of subgrad 39.878012 stepsize= 1.000000 +dualbound = 2861988.071050, lowerbound=1200669.071050, norm of subgrad 1096.414644 dualbound = 2861988.071050, lowerbound=1200669.071050, norm of subgrad 39.772609 stepsize= 1.000000 +dualbound = 2862133.647077, lowerbound=1195255.647077, norm of subgrad 1093.946364 dualbound = 2862133.647077, lowerbound=1195255.647077, norm of subgrad 40.107057 stepsize= 1.000000 +dualbound = 2862268.214567, lowerbound=1196027.214567, norm of subgrad 1094.300788 dualbound = 2862268.214567, lowerbound=1196027.214567, norm of subgrad 40.019589 stepsize= 1.000000 +dualbound = 2862395.636443, lowerbound=1202705.636443, norm of subgrad 1097.357114 dualbound = 2862395.636443, lowerbound=1202705.636443, norm of subgrad 40.179869 stepsize= 1.000000 +dualbound = 2862540.322928, lowerbound=1200478.322928, norm of subgrad 1096.321268 dualbound = 2862540.322928, lowerbound=1200478.322928, norm of subgrad 39.833233 stepsize= 1.000000 +dualbound = 2862714.734017, lowerbound=1196497.734017, norm of subgrad 1094.489257 dualbound = 2862714.734017, lowerbound=1196497.734017, norm of subgrad 39.792098 stepsize= 1.000000 +dualbound = 2862848.849318, lowerbound=1199390.849318, norm of subgrad 1095.820628 dualbound = 2862848.849318, lowerbound=1199390.849318, norm of subgrad 39.574175 stepsize= 1.000000 +dualbound = 2862972.774831, lowerbound=1197674.774831, norm of subgrad 1095.025468 dualbound = 2862972.774831, lowerbound=1197674.774831, norm of subgrad 39.114262 stepsize= 1.000000 +dualbound = 2863142.439707, lowerbound=1201359.439707, norm of subgrad 1096.668792 dualbound = 2863142.439707, lowerbound=1201359.439707, norm of subgrad 38.635021 stepsize= 1.000000 +dualbound = 2863310.053157, lowerbound=1197996.053157, norm of subgrad 1095.176266 dualbound = 2863310.053157, lowerbound=1197996.053157, norm of subgrad 39.782074 stepsize= 1.000000 +dualbound = 2863407.462920, lowerbound=1195415.462920, norm of subgrad 1094.007067 dualbound = 2863407.462920, lowerbound=1195415.462920, norm of subgrad 39.158776 stepsize= 1.000000 +dualbound = 2863571.192503, lowerbound=1202395.192503, norm of subgrad 1097.174641 dualbound = 2863571.192503, lowerbound=1202395.192503, norm of subgrad 39.506070 stepsize= 1.000000 +dualbound = 2863727.576779, lowerbound=1195645.576779, norm of subgrad 1094.093495 dualbound = 2863727.576779, lowerbound=1195645.576779, norm of subgrad 39.387616 stepsize= 1.000000 +dualbound = 2863848.674980, lowerbound=1200640.674980, norm of subgrad 1096.392573 dualbound = 2863848.674980, lowerbound=1200640.674980, norm of subgrad 39.460084 stepsize= 1.000000 +dualbound = 2864009.145997, lowerbound=1199914.145997, norm of subgrad 1096.033369 dualbound = 2864009.145997, lowerbound=1199914.145997, norm of subgrad 39.185087 stepsize= 1.000000 +dualbound = 2864133.412086, lowerbound=1199588.412086, norm of subgrad 1095.889325 dualbound = 2864133.412086, lowerbound=1199588.412086, norm of subgrad 38.849274 stepsize= 1.000000 +dualbound = 2864298.831233, lowerbound=1200755.831233, norm of subgrad 1096.422287 dualbound = 2864298.831233, lowerbound=1200755.831233, norm of subgrad 39.388058 stepsize= 1.000000 +dualbound = 2864426.410568, lowerbound=1197689.410568, norm of subgrad 1095.013886 dualbound = 2864426.410568, lowerbound=1197689.410568, norm of subgrad 38.646854 stepsize= 1.000000 +dualbound = 2864577.723191, lowerbound=1194743.723191, norm of subgrad 1093.702758 dualbound = 2864577.723191, lowerbound=1194743.723191, norm of subgrad 39.916320 stepsize= 1.000000 +dualbound = 2864689.163988, lowerbound=1198609.163988, norm of subgrad 1095.468468 dualbound = 2864689.163988, lowerbound=1198609.163988, norm of subgrad 39.413713 stepsize= 1.000000 +dualbound = 2864862.147940, lowerbound=1193149.147940, norm of subgrad 1092.935107 dualbound = 2864862.147940, lowerbound=1193149.147940, norm of subgrad 39.127790 stepsize= 1.000000 +dualbound = 2865007.688809, lowerbound=1202252.688809, norm of subgrad 1097.113799 dualbound = 2865007.688809, lowerbound=1202252.688809, norm of subgrad 39.389604 stepsize= 1.000000 +dualbound = 2865143.402286, lowerbound=1199141.402286, norm of subgrad 1095.683076 dualbound = 2865143.402286, lowerbound=1199141.402286, norm of subgrad 38.932165 stepsize= 1.000000 +dualbound = 2865290.954263, lowerbound=1200256.954263, norm of subgrad 1096.192480 dualbound = 2865290.954263, lowerbound=1200256.954263, norm of subgrad 39.096700 stepsize= 1.000000 +dualbound = 2865416.099060, lowerbound=1200535.099060, norm of subgrad 1096.303835 dualbound = 2865416.099060, lowerbound=1200535.099060, norm of subgrad 38.368539 stepsize= 1.000000 +dualbound = 2865590.719609, lowerbound=1196255.719609, norm of subgrad 1094.373209 dualbound = 2865590.719609, lowerbound=1196255.719609, norm of subgrad 39.643670 stepsize= 1.000000 +dualbound = 2865704.296496, lowerbound=1202599.296496, norm of subgrad 1097.283143 dualbound = 2865704.296496, lowerbound=1202599.296496, norm of subgrad 39.301105 stepsize= 1.000000 +dualbound = 2865840.262906, lowerbound=1204248.262906, norm of subgrad 1098.075709 dualbound = 2865840.262906, lowerbound=1204248.262906, norm of subgrad 40.718134 stepsize= 1.000000 +dualbound = 2865959.066542, lowerbound=1197989.066542, norm of subgrad 1095.192251 dualbound = 2865959.066542, lowerbound=1197989.066542, norm of subgrad 39.696393 stepsize= 1.000000 +dualbound = 2866110.595573, lowerbound=1203989.595573, norm of subgrad 1097.894620 dualbound = 2866110.595573, lowerbound=1203989.595573, norm of subgrad 39.173065 stepsize= 1.000000 +dualbound = 2866295.173725, lowerbound=1192492.173725, norm of subgrad 1092.666085 dualbound = 2866295.173725, lowerbound=1192492.173725, norm of subgrad 40.144466 stepsize= 1.000000 +dualbound = 2866389.181149, lowerbound=1202570.181149, norm of subgrad 1097.261218 dualbound = 2866389.181149, lowerbound=1202570.181149, norm of subgrad 38.807311 stepsize= 1.000000 +dualbound = 2866600.434961, lowerbound=1198710.434961, norm of subgrad 1095.477264 dualbound = 2866600.434961, lowerbound=1198710.434961, norm of subgrad 39.639044 stepsize= 1.000000 +dualbound = 2866704.048362, lowerbound=1200046.048362, norm of subgrad 1096.126840 dualbound = 2866704.048362, lowerbound=1200046.048362, norm of subgrad 39.390524 stepsize= 1.000000 +dualbound = 2866842.385892, lowerbound=1196897.385892, norm of subgrad 1094.663138 dualbound = 2866842.385892, lowerbound=1196897.385892, norm of subgrad 39.093958 stepsize= 1.000000 +dualbound = 2866998.240085, lowerbound=1200642.240085, norm of subgrad 1096.376870 dualbound = 2866998.240085, lowerbound=1200642.240085, norm of subgrad 39.444318 stepsize= 1.000000 +dualbound = 2867145.298456, lowerbound=1196995.298456, norm of subgrad 1094.725673 dualbound = 2867145.298456, lowerbound=1196995.298456, norm of subgrad 39.699602 stepsize= 1.000000 +dualbound = 2867276.526777, lowerbound=1197813.526777, norm of subgrad 1095.100236 dualbound = 2867276.526777, lowerbound=1197813.526777, norm of subgrad 39.525034 stepsize= 1.000000 +dualbound = 2867408.513887, lowerbound=1198463.513887, norm of subgrad 1095.370948 dualbound = 2867408.513887, lowerbound=1198463.513887, norm of subgrad 38.807050 stepsize= 1.000000 +dualbound = 2867583.633997, lowerbound=1199096.633997, norm of subgrad 1095.646674 dualbound = 2867583.633997, lowerbound=1199096.633997, norm of subgrad 38.988718 stepsize= 1.000000 +dualbound = 2867713.157211, lowerbound=1199108.157211, norm of subgrad 1095.662428 dualbound = 2867713.157211, lowerbound=1199108.157211, norm of subgrad 38.697845 stepsize= 1.000000 +dualbound = 2867849.076319, lowerbound=1197585.076319, norm of subgrad 1094.959851 dualbound = 2867849.076319, lowerbound=1197585.076319, norm of subgrad 38.573555 stepsize= 1.000000 +dualbound = 2867989.366256, lowerbound=1203480.366256, norm of subgrad 1097.678626 dualbound = 2867989.366256, lowerbound=1203480.366256, norm of subgrad 39.475181 stepsize= 1.000000 +dualbound = 2868122.343457, lowerbound=1200757.343457, norm of subgrad 1096.451250 dualbound = 2868122.343457, lowerbound=1200757.343457, norm of subgrad 39.761504 stepsize= 1.000000 +dualbound = 2868259.688512, lowerbound=1198895.688512, norm of subgrad 1095.612928 dualbound = 2868259.688512, lowerbound=1198895.688512, norm of subgrad 40.116643 stepsize= 1.000000 +dualbound = 2868409.660475, lowerbound=1197869.660475, norm of subgrad 1095.131801 dualbound = 2868409.660475, lowerbound=1197869.660475, norm of subgrad 39.924578 stepsize= 1.000000 +dualbound = 2868561.934168, lowerbound=1197508.934168, norm of subgrad 1095.000427 dualbound = 2868561.934168, lowerbound=1197508.934168, norm of subgrad 40.856746 stepsize= 1.000000 +dualbound = 2868663.486784, lowerbound=1201968.486784, norm of subgrad 1097.009793 dualbound = 2868663.486784, lowerbound=1201968.486784, norm of subgrad 39.541783 stepsize= 1.000000 +dualbound = 2868852.459420, lowerbound=1199154.459420, norm of subgrad 1095.678538 dualbound = 2868852.459420, lowerbound=1199154.459420, norm of subgrad 39.318859 stepsize= 1.000000 +dualbound = 2868997.069743, lowerbound=1201592.069743, norm of subgrad 1096.845053 dualbound = 2868997.069743, lowerbound=1201592.069743, norm of subgrad 40.269223 stepsize= 1.000000 +dualbound = 2869113.886657, lowerbound=1198830.886657, norm of subgrad 1095.572401 dualbound = 2869113.886657, lowerbound=1198830.886657, norm of subgrad 39.557767 stepsize= 1.000000 +dualbound = 2869254.015246, lowerbound=1203531.015246, norm of subgrad 1097.703974 dualbound = 2869254.015246, lowerbound=1203531.015246, norm of subgrad 39.536421 stepsize= 1.000000 +dualbound = 2869429.800160, lowerbound=1196923.800160, norm of subgrad 1094.649624 dualbound = 2869429.800160, lowerbound=1196923.800160, norm of subgrad 38.855951 stepsize= 1.000000 +dualbound = 2869584.970850, lowerbound=1202435.970850, norm of subgrad 1097.173628 dualbound = 2869584.970850, lowerbound=1202435.970850, norm of subgrad 38.848046 stepsize= 1.000000 +dualbound = 2869706.122711, lowerbound=1200093.122711, norm of subgrad 1096.104978 dualbound = 2869706.122711, lowerbound=1200093.122711, norm of subgrad 38.394685 stepsize= 1.000000 +dualbound = 2869871.841117, lowerbound=1200416.841117, norm of subgrad 1096.274984 dualbound = 2869871.841117, lowerbound=1200416.841117, norm of subgrad 39.594424 stepsize= 1.000000 +dualbound = 2869974.629639, lowerbound=1197621.629639, norm of subgrad 1095.024032 dualbound = 2869974.629639, lowerbound=1197621.629639, norm of subgrad 39.481496 stepsize= 1.000000 +dualbound = 2870094.332342, lowerbound=1206279.332342, norm of subgrad 1098.973308 dualbound = 2870094.332342, lowerbound=1206279.332342, norm of subgrad 39.783196 stepsize= 1.000000 +dualbound = 2870258.904570, lowerbound=1201869.904570, norm of subgrad 1096.950730 dualbound = 2870258.904570, lowerbound=1201869.904570, norm of subgrad 39.944615 stepsize= 1.000000 +dualbound = 2870392.933749, lowerbound=1197099.933749, norm of subgrad 1094.791274 dualbound = 2870392.933749, lowerbound=1197099.933749, norm of subgrad 40.025357 stepsize= 1.000000 +dualbound = 2870540.884466, lowerbound=1198635.884466, norm of subgrad 1095.480207 dualbound = 2870540.884466, lowerbound=1198635.884466, norm of subgrad 39.861645 stepsize= 1.000000 +dualbound = 2870658.047048, lowerbound=1199887.047048, norm of subgrad 1096.037886 dualbound = 2870658.047048, lowerbound=1199887.047048, norm of subgrad 39.104508 stepsize= 1.000000 +dualbound = 2870846.649492, lowerbound=1198839.649492, norm of subgrad 1095.527567 dualbound = 2870846.649492, lowerbound=1198839.649492, norm of subgrad 39.110132 stepsize= 1.000000 +dualbound = 2870981.303023, lowerbound=1197072.303023, norm of subgrad 1094.747598 dualbound = 2870981.303023, lowerbound=1197072.303023, norm of subgrad 39.174654 stepsize= 1.000000 +dualbound = 2871109.166653, lowerbound=1197981.166653, norm of subgrad 1095.179970 dualbound = 2871109.166653, lowerbound=1197981.166653, norm of subgrad 39.570995 stepsize= 1.000000 +dualbound = 2871223.845064, lowerbound=1201561.845064, norm of subgrad 1096.819878 dualbound = 2871223.845064, lowerbound=1201561.845064, norm of subgrad 39.581289 stepsize= 1.000000 +dualbound = 2871420.554679, lowerbound=1204055.554679, norm of subgrad 1097.926480 dualbound = 2871420.554679, lowerbound=1204055.554679, norm of subgrad 39.795849 stepsize= 1.000000 +dualbound = 2871517.938185, lowerbound=1197937.938185, norm of subgrad 1095.164343 dualbound = 2871517.938185, lowerbound=1197937.938185, norm of subgrad 39.298645 stepsize= 1.000000 +dualbound = 2871668.246531, lowerbound=1200168.246531, norm of subgrad 1096.154755 dualbound = 2871668.246531, lowerbound=1200168.246531, norm of subgrad 39.208524 stepsize= 1.000000 +dualbound = 2871836.277233, lowerbound=1201190.277233, norm of subgrad 1096.612638 dualbound = 2871836.277233, lowerbound=1201190.277233, norm of subgrad 39.204983 stepsize= 1.000000 +dualbound = 2871969.490329, lowerbound=1201159.490329, norm of subgrad 1096.625501 dualbound = 2871969.490329, lowerbound=1201159.490329, norm of subgrad 39.512189 stepsize= 1.000000 +dualbound = 2872099.105937, lowerbound=1199372.105937, norm of subgrad 1095.821202 dualbound = 2872099.105937, lowerbound=1199372.105937, norm of subgrad 39.769531 stepsize= 1.000000 +dualbound = 2872253.396777, lowerbound=1196272.396777, norm of subgrad 1094.399560 dualbound = 2872253.396777, lowerbound=1196272.396777, norm of subgrad 39.903519 stepsize= 1.000000 +dualbound = 2872378.443035, lowerbound=1198990.443035, norm of subgrad 1095.662559 dualbound = 2872378.443035, lowerbound=1198990.443035, norm of subgrad 40.137841 stepsize= 1.000000 +dualbound = 2872520.838706, lowerbound=1200688.838706, norm of subgrad 1096.400401 dualbound = 2872520.838706, lowerbound=1200688.838706, norm of subgrad 39.336950 stepsize= 1.000000 +dualbound = 2872688.413183, lowerbound=1202847.413183, norm of subgrad 1097.359291 dualbound = 2872688.413183, lowerbound=1202847.413183, norm of subgrad 38.956058 stepsize= 1.000000 +dualbound = 2872836.655057, lowerbound=1199508.655057, norm of subgrad 1095.827384 dualbound = 2872836.655057, lowerbound=1199508.655057, norm of subgrad 38.434904 stepsize= 1.000000 +dualbound = 2872976.148957, lowerbound=1201180.148957, norm of subgrad 1096.620786 dualbound = 2872976.148957, lowerbound=1201180.148957, norm of subgrad 39.198136 stepsize= 1.000000 +dualbound = 2873092.986579, lowerbound=1202943.986579, norm of subgrad 1097.419239 dualbound = 2873092.986579, lowerbound=1202943.986579, norm of subgrad 38.753550 stepsize= 1.000000 +dualbound = 2873255.695982, lowerbound=1198081.695982, norm of subgrad 1095.186603 dualbound = 2873255.695982, lowerbound=1198081.695982, norm of subgrad 38.919268 stepsize= 1.000000 +dualbound = 2873388.109187, lowerbound=1203538.109187, norm of subgrad 1097.723603 dualbound = 2873388.109187, lowerbound=1203538.109187, norm of subgrad 39.892521 stepsize= 1.000000 +dualbound = 2873504.723071, lowerbound=1195922.723071, norm of subgrad 1094.244362 dualbound = 2873504.723071, lowerbound=1195922.723071, norm of subgrad 39.555200 stepsize= 1.000000 +dualbound = 2873659.199200, lowerbound=1199716.199200, norm of subgrad 1095.968612 dualbound = 2873659.199200, lowerbound=1199716.199200, norm of subgrad 39.818038 stepsize= 1.000000 +dualbound = 2873810.812777, lowerbound=1202966.812777, norm of subgrad 1097.436473 dualbound = 2873810.812777, lowerbound=1202966.812777, norm of subgrad 39.390526 stepsize= 1.000000 +dualbound = 2873951.161972, lowerbound=1198938.161972, norm of subgrad 1095.594433 dualbound = 2873951.161972, lowerbound=1198938.161972, norm of subgrad 39.106894 stepsize= 1.000000 +dualbound = 2874111.225088, lowerbound=1203356.225088, norm of subgrad 1097.627999 dualbound = 2874111.225088, lowerbound=1203356.225088, norm of subgrad 39.888133 stepsize= 1.000000 +dualbound = 2874210.408027, lowerbound=1198130.408027, norm of subgrad 1095.257234 dualbound = 2874210.408027, lowerbound=1198130.408027, norm of subgrad 39.461157 stepsize= 1.000000 +dualbound = 2874353.553786, lowerbound=1199882.553786, norm of subgrad 1096.058645 dualbound = 2874353.553786, lowerbound=1199882.553786, norm of subgrad 40.064270 stepsize= 1.000000 +dualbound = 2874517.762337, lowerbound=1203781.762337, norm of subgrad 1097.812717 dualbound = 2874517.762337, lowerbound=1203781.762337, norm of subgrad 39.688897 stepsize= 1.000000 +dualbound = 2874654.154481, lowerbound=1197519.154481, norm of subgrad 1094.974499 dualbound = 2874654.154481, lowerbound=1197519.154481, norm of subgrad 39.829539 stepsize= 1.000000 +dualbound = 2874791.193397, lowerbound=1202036.193397, norm of subgrad 1097.006469 dualbound = 2874791.193397, lowerbound=1202036.193397, norm of subgrad 39.038941 stepsize= 1.000000 +dualbound = 2874944.465383, lowerbound=1202822.465383, norm of subgrad 1097.385741 dualbound = 2874944.465383, lowerbound=1202822.465383, norm of subgrad 39.828030 stepsize= 1.000000 +dualbound = 2875047.700069, lowerbound=1199278.700069, norm of subgrad 1095.789533 dualbound = 2875047.700069, lowerbound=1199278.700069, norm of subgrad 39.739586 stepsize= 1.000000 +dualbound = 2875212.343717, lowerbound=1197050.343717, norm of subgrad 1094.770453 dualbound = 2875212.343717, lowerbound=1197050.343717, norm of subgrad 40.455453 stepsize= 1.000000 +dualbound = 2875346.573313, lowerbound=1205055.573313, norm of subgrad 1098.400461 dualbound = 2875346.573313, lowerbound=1205055.573313, norm of subgrad 39.525050 stepsize= 1.000000 +dualbound = 2875512.388429, lowerbound=1198795.388429, norm of subgrad 1095.535663 dualbound = 2875512.388429, lowerbound=1198795.388429, norm of subgrad 39.608271 stepsize= 1.000000 +dualbound = 2875643.104186, lowerbound=1202235.104186, norm of subgrad 1097.097582 dualbound = 2875643.104186, lowerbound=1202235.104186, norm of subgrad 38.970704 stepsize= 1.000000 +dualbound = 2875801.789917, lowerbound=1197299.789917, norm of subgrad 1094.856516 dualbound = 2875801.789917, lowerbound=1197299.789917, norm of subgrad 39.619260 stepsize= 1.000000 +dualbound = 2875908.045402, lowerbound=1206300.045402, norm of subgrad 1098.986827 dualbound = 2875908.045402, lowerbound=1206300.045402, norm of subgrad 39.727264 stepsize= 1.000000 +dualbound = 2876064.630143, lowerbound=1201983.630143, norm of subgrad 1096.989348 dualbound = 2876064.630143, lowerbound=1201983.630143, norm of subgrad 39.478915 stepsize= 1.000000 +dualbound = 2876220.566038, lowerbound=1200819.566038, norm of subgrad 1096.468680 dualbound = 2876220.566038, lowerbound=1200819.566038, norm of subgrad 39.748407 stepsize= 1.000000 +dualbound = 2876334.948129, lowerbound=1199957.948129, norm of subgrad 1096.079353 dualbound = 2876334.948129, lowerbound=1199957.948129, norm of subgrad 39.324065 stepsize= 1.000000 +dualbound = 2876489.509190, lowerbound=1202731.509190, norm of subgrad 1097.356601 dualbound = 2876489.509190, lowerbound=1202731.509190, norm of subgrad 40.181601 stepsize= 1.000000 +dualbound = 2876607.327252, lowerbound=1196237.327252, norm of subgrad 1094.391761 dualbound = 2876607.327252, lowerbound=1196237.327252, norm of subgrad 39.671376 stepsize= 1.000000 +dualbound = 2876779.639139, lowerbound=1198647.639139, norm of subgrad 1095.431257 dualbound = 2876779.639139, lowerbound=1198647.639139, norm of subgrad 38.656330 stepsize= 1.000000 +dualbound = 2876941.939213, lowerbound=1202065.939213, norm of subgrad 1096.969434 dualbound = 2876941.939213, lowerbound=1202065.939213, norm of subgrad 37.924927 stepsize= 1.000000 +dualbound = 2877094.039033, lowerbound=1201216.039033, norm of subgrad 1096.575597 dualbound = 2877094.039033, lowerbound=1201216.039033, norm of subgrad 37.604519 stepsize= 1.000000 +dualbound = 2877210.906163, lowerbound=1201337.906163, norm of subgrad 1096.687242 dualbound = 2877210.906163, lowerbound=1201337.906163, norm of subgrad 38.753931 stepsize= 1.000000 +dualbound = 2877305.976386, lowerbound=1203745.976386, norm of subgrad 1097.819647 dualbound = 2877305.976386, lowerbound=1203745.976386, norm of subgrad 39.459729 stepsize= 1.000000 +dualbound = 2877476.297378, lowerbound=1200473.297378, norm of subgrad 1096.306662 dualbound = 2877476.297378, lowerbound=1200473.297378, norm of subgrad 39.816090 stepsize= 1.000000 +dualbound = 2877601.070930, lowerbound=1198956.070930, norm of subgrad 1095.633639 dualbound = 2877601.070930, lowerbound=1198956.070930, norm of subgrad 39.771517 stepsize= 1.000000 +dualbound = 2877743.791782, lowerbound=1202511.791782, norm of subgrad 1097.219117 dualbound = 2877743.791782, lowerbound=1202511.791782, norm of subgrad 38.996421 stepsize= 1.000000 +dualbound = 2877905.101149, lowerbound=1200855.101149, norm of subgrad 1096.460260 dualbound = 2877905.101149, lowerbound=1200855.101149, norm of subgrad 39.131948 stepsize= 1.000000 +dualbound = 2878042.973721, lowerbound=1201159.973721, norm of subgrad 1096.635753 dualbound = 2878042.973721, lowerbound=1201159.973721, norm of subgrad 39.848119 stepsize= 1.000000 +dualbound = 2878157.472025, lowerbound=1204178.472025, norm of subgrad 1098.006135 dualbound = 2878157.472025, lowerbound=1204178.472025, norm of subgrad 39.414443 stepsize= 1.000000 +dualbound = 2878325.587689, lowerbound=1199279.587689, norm of subgrad 1095.752521 dualbound = 2878325.587689, lowerbound=1199279.587689, norm of subgrad 39.523609 stepsize= 1.000000 +dualbound = 2878466.107785, lowerbound=1199109.107785, norm of subgrad 1095.674271 dualbound = 2878466.107785, lowerbound=1199109.107785, norm of subgrad 39.160185 stepsize= 1.000000 +dualbound = 2878606.458732, lowerbound=1204508.458732, norm of subgrad 1098.121332 dualbound = 2878606.458732, lowerbound=1204508.458732, norm of subgrad 38.760172 stepsize= 1.000000 +dualbound = 2878747.781058, lowerbound=1198786.781058, norm of subgrad 1095.544513 dualbound = 2878747.781058, lowerbound=1198786.781058, norm of subgrad 39.652520 stepsize= 1.000000 +dualbound = 2878862.228813, lowerbound=1207490.228813, norm of subgrad 1099.502264 dualbound = 2878862.228813, lowerbound=1207490.228813, norm of subgrad 39.108155 stepsize= 1.000000 +dualbound = 2879014.860556, lowerbound=1198844.860556, norm of subgrad 1095.592014 dualbound = 2879014.860556, lowerbound=1198844.860556, norm of subgrad 40.368698 stepsize= 1.000000 +dualbound = 2879118.618243, lowerbound=1200606.618243, norm of subgrad 1096.390723 dualbound = 2879118.618243, lowerbound=1200606.618243, norm of subgrad 39.620168 stepsize= 1.000000 +dualbound = 2879299.906693, lowerbound=1204232.906693, norm of subgrad 1098.013163 dualbound = 2879299.906693, lowerbound=1204232.906693, norm of subgrad 39.765418 stepsize= 1.000000 +dualbound = 2879422.451454, lowerbound=1203215.451454, norm of subgrad 1097.580271 dualbound = 2879422.451454, lowerbound=1203215.451454, norm of subgrad 39.869095 stepsize= 1.000000 +dualbound = 2879561.273615, lowerbound=1203174.273615, norm of subgrad 1097.536001 dualbound = 2879561.273615, lowerbound=1203174.273615, norm of subgrad 39.367781 stepsize= 1.000000 +dualbound = 2879700.068003, lowerbound=1199552.068003, norm of subgrad 1095.911980 dualbound = 2879700.068003, lowerbound=1199552.068003, norm of subgrad 40.122243 stepsize= 1.000000 +dualbound = 2879842.066760, lowerbound=1206370.066760, norm of subgrad 1098.995026 dualbound = 2879842.066760, lowerbound=1206370.066760, norm of subgrad 39.522130 stepsize= 1.000000 +dualbound = 2879989.085933, lowerbound=1198901.085933, norm of subgrad 1095.584358 dualbound = 2879989.085933, lowerbound=1198901.085933, norm of subgrad 39.382981 stepsize= 1.000000 +dualbound = 2880116.075523, lowerbound=1203030.075523, norm of subgrad 1097.495820 dualbound = 2880116.075523, lowerbound=1203030.075523, norm of subgrad 39.924799 stepsize= 1.000000 +dualbound = 2880252.829891, lowerbound=1201243.829891, norm of subgrad 1096.663499 dualbound = 2880252.829891, lowerbound=1201243.829891, norm of subgrad 39.544334 stepsize= 1.000000 +dualbound = 2880404.521430, lowerbound=1202281.521430, norm of subgrad 1097.109621 dualbound = 2880404.521430, lowerbound=1202281.521430, norm of subgrad 38.983221 stepsize= 1.000000 +dualbound = 2880562.017006, lowerbound=1205328.017006, norm of subgrad 1098.508542 dualbound = 2880562.017006, lowerbound=1205328.017006, norm of subgrad 39.376333 stepsize= 1.000000 +dualbound = 2880706.436128, lowerbound=1200675.436128, norm of subgrad 1096.415722 dualbound = 2880706.436128, lowerbound=1200675.436128, norm of subgrad 39.955214 stepsize= 1.000000 +dualbound = 2880805.184939, lowerbound=1200521.184939, norm of subgrad 1096.328046 dualbound = 2880805.184939, lowerbound=1200521.184939, norm of subgrad 38.894072 stepsize= 1.000000 +dualbound = 2881005.220825, lowerbound=1201344.220825, norm of subgrad 1096.721123 dualbound = 2881005.220825, lowerbound=1201344.220825, norm of subgrad 40.657544 stepsize= 1.000000 +dualbound = 2881104.711516, lowerbound=1204079.711516, norm of subgrad 1097.953420 dualbound = 2881104.711516, lowerbound=1204079.711516, norm of subgrad 39.006290 stepsize= 1.000000 +dualbound = 2881279.741107, lowerbound=1202181.741107, norm of subgrad 1097.056398 dualbound = 2881279.741107, lowerbound=1202181.741107, norm of subgrad 39.064429 stepsize= 1.000000 +dualbound = 2881414.644724, lowerbound=1205805.644724, norm of subgrad 1098.737751 dualbound = 2881414.644724, lowerbound=1205805.644724, norm of subgrad 39.419584 stepsize= 1.000000 +dualbound = 2881544.879379, lowerbound=1199282.879379, norm of subgrad 1095.740790 dualbound = 2881544.879379, lowerbound=1199282.879379, norm of subgrad 38.668264 stepsize= 1.000000 +dualbound = 2881653.409986, lowerbound=1201287.409986, norm of subgrad 1096.679265 dualbound = 2881653.409986, lowerbound=1201287.409986, norm of subgrad 39.070841 stepsize= 1.000000 +dualbound = 2881792.819313, lowerbound=1202305.819313, norm of subgrad 1097.144849 dualbound = 2881792.819313, lowerbound=1202305.819313, norm of subgrad 39.502017 stepsize= 1.000000 +dualbound = 2881950.777463, lowerbound=1205589.777463, norm of subgrad 1098.637692 dualbound = 2881950.777463, lowerbound=1205589.777463, norm of subgrad 39.660536 stepsize= 1.000000 +dualbound = 2882070.680009, lowerbound=1203615.680009, norm of subgrad 1097.738439 dualbound = 2882070.680009, lowerbound=1203615.680009, norm of subgrad 39.165068 stepsize= 1.000000 +dualbound = 2882200.989786, lowerbound=1203159.989786, norm of subgrad 1097.544072 dualbound = 2882200.989786, lowerbound=1203159.989786, norm of subgrad 39.664969 stepsize= 1.000000 +dualbound = 2882356.663104, lowerbound=1201538.663104, norm of subgrad 1096.802928 dualbound = 2882356.663104, lowerbound=1201538.663104, norm of subgrad 39.920838 stepsize= 1.000000 +dualbound = 2882467.855873, lowerbound=1205666.855873, norm of subgrad 1098.698255 dualbound = 2882467.855873, lowerbound=1205666.855873, norm of subgrad 39.776787 stepsize= 1.000000 +dualbound = 2882596.038789, lowerbound=1199272.038789, norm of subgrad 1095.768698 dualbound = 2882596.038789, lowerbound=1199272.038789, norm of subgrad 39.562393 stepsize= 1.000000 +dualbound = 2882742.846575, lowerbound=1208413.846575, norm of subgrad 1099.937201 dualbound = 2882742.846575, lowerbound=1208413.846575, norm of subgrad 39.935045 stepsize= 1.000000 +dualbound = 2882905.892451, lowerbound=1198445.892451, norm of subgrad 1095.400791 dualbound = 2882905.892451, lowerbound=1198445.892451, norm of subgrad 40.249793 stepsize= 1.000000 +dualbound = 2883025.350173, lowerbound=1202203.350173, norm of subgrad 1097.114101 dualbound = 2883025.350173, lowerbound=1202203.350173, norm of subgrad 39.692036 stepsize= 1.000000 +dualbound = 2883160.676132, lowerbound=1202536.676132, norm of subgrad 1097.255064 dualbound = 2883160.676132, lowerbound=1202536.676132, norm of subgrad 39.589468 stepsize= 1.000000 +dualbound = 2883339.673991, lowerbound=1203077.673991, norm of subgrad 1097.501104 dualbound = 2883339.673991, lowerbound=1203077.673991, norm of subgrad 40.124779 stepsize= 1.000000 +dualbound = 2883466.581390, lowerbound=1203891.581390, norm of subgrad 1097.860912 dualbound = 2883466.581390, lowerbound=1203891.581390, norm of subgrad 39.165130 stepsize= 1.000000 +dualbound = 2883612.037995, lowerbound=1206849.037995, norm of subgrad 1099.220650 dualbound = 2883612.037995, lowerbound=1206849.037995, norm of subgrad 39.780103 stepsize= 1.000000 +dualbound = 2883731.228459, lowerbound=1200277.228459, norm of subgrad 1096.197167 dualbound = 2883731.228459, lowerbound=1200277.228459, norm of subgrad 38.602985 stepsize= 1.000000 +dualbound = 2883890.010448, lowerbound=1203618.010448, norm of subgrad 1097.731302 dualbound = 2883890.010448, lowerbound=1203618.010448, norm of subgrad 39.430724 stepsize= 1.000000 +dualbound = 2884029.903046, lowerbound=1205986.903046, norm of subgrad 1098.803851 dualbound = 2884029.903046, lowerbound=1205986.903046, norm of subgrad 39.024257 stepsize= 1.000000 +dualbound = 2884168.977455, lowerbound=1202524.977455, norm of subgrad 1097.225126 dualbound = 2884168.977455, lowerbound=1202524.977455, norm of subgrad 38.949639 stepsize= 1.000000 +dualbound = 2884317.973716, lowerbound=1204018.973716, norm of subgrad 1097.897524 dualbound = 2884317.973716, lowerbound=1204018.973716, norm of subgrad 38.845801 stepsize= 1.000000 +dualbound = 2884453.058962, lowerbound=1206640.058962, norm of subgrad 1099.101933 dualbound = 2884453.058962, lowerbound=1206640.058962, norm of subgrad 38.988271 stepsize= 1.000000 +dualbound = 2884595.379781, lowerbound=1199915.379781, norm of subgrad 1096.038950 dualbound = 2884595.379781, lowerbound=1199915.379781, norm of subgrad 39.093744 stepsize= 1.000000 +dualbound = 2884720.057548, lowerbound=1207042.057548, norm of subgrad 1099.288887 dualbound = 2884720.057548, lowerbound=1207042.057548, norm of subgrad 38.970216 stepsize= 1.000000 +dualbound = 2884859.591635, lowerbound=1204945.591635, norm of subgrad 1098.342657 dualbound = 2884859.591635, lowerbound=1204945.591635, norm of subgrad 39.376822 stepsize= 1.000000 +dualbound = 2884992.716210, lowerbound=1202334.716210, norm of subgrad 1097.165765 dualbound = 2884992.716210, lowerbound=1202334.716210, norm of subgrad 39.637414 stepsize= 1.000000 +dualbound = 2885094.654334, lowerbound=1205652.654334, norm of subgrad 1098.678140 dualbound = 2885094.654334, lowerbound=1205652.654334, norm of subgrad 39.280251 stepsize= 1.000000 +dualbound = 2885251.632993, lowerbound=1201862.632993, norm of subgrad 1096.956532 dualbound = 2885251.632993, lowerbound=1201862.632993, norm of subgrad 40.099609 stepsize= 1.000000 +dualbound = 2885402.257599, lowerbound=1205489.257599, norm of subgrad 1098.587847 dualbound = 2885402.257599, lowerbound=1205489.257599, norm of subgrad 39.454082 stepsize= 1.000000 +dualbound = 2885553.904594, lowerbound=1203754.904594, norm of subgrad 1097.780900 dualbound = 2885553.904594, lowerbound=1203754.904594, norm of subgrad 38.982650 stepsize= 1.000000 +dualbound = 2885676.882484, lowerbound=1201503.882484, norm of subgrad 1096.761087 dualbound = 2885676.882484, lowerbound=1201503.882484, norm of subgrad 38.781154 stepsize= 1.000000 +dualbound = 2885846.169635, lowerbound=1204985.169635, norm of subgrad 1098.352935 dualbound = 2885846.169635, lowerbound=1204985.169635, norm of subgrad 39.538426 stepsize= 1.000000 +dualbound = 2885936.885707, lowerbound=1200954.885707, norm of subgrad 1096.517162 dualbound = 2885936.885707, lowerbound=1200954.885707, norm of subgrad 38.544988 stepsize= 1.000000 +dualbound = 2886120.056933, lowerbound=1203374.056933, norm of subgrad 1097.615168 dualbound = 2886120.056933, lowerbound=1203374.056933, norm of subgrad 39.600142 stepsize= 1.000000 +dualbound = 2886215.897651, lowerbound=1201727.897651, norm of subgrad 1096.898764 dualbound = 2886215.897651, lowerbound=1201727.897651, norm of subgrad 39.431469 stepsize= 1.000000 +dualbound = 2886373.610256, lowerbound=1202648.610256, norm of subgrad 1097.303791 dualbound = 2886373.610256, lowerbound=1202648.610256, norm of subgrad 39.808449 stepsize= 1.000000 +dualbound = 2886492.215820, lowerbound=1204658.215820, norm of subgrad 1098.224574 dualbound = 2886492.215820, lowerbound=1204658.215820, norm of subgrad 39.466512 stepsize= 1.000000 +dualbound = 2886648.484519, lowerbound=1203941.484519, norm of subgrad 1097.922349 dualbound = 2886648.484519, lowerbound=1203941.484519, norm of subgrad 40.598876 stepsize= 1.000000 +dualbound = 2886762.925315, lowerbound=1202784.925315, norm of subgrad 1097.367726 dualbound = 2886762.925315, lowerbound=1202784.925315, norm of subgrad 39.312095 stepsize= 1.000000 +dualbound = 2886912.387529, lowerbound=1205374.387529, norm of subgrad 1098.525096 dualbound = 2886912.387529, lowerbound=1205374.387529, norm of subgrad 39.146676 stepsize= 1.000000 +dualbound = 2887066.398271, lowerbound=1204137.398271, norm of subgrad 1098.002458 dualbound = 2887066.398271, lowerbound=1204137.398271, norm of subgrad 40.323823 stepsize= 1.000000 +dualbound = 2887191.022814, lowerbound=1198718.022814, norm of subgrad 1095.508112 dualbound = 2887191.022814, lowerbound=1198718.022814, norm of subgrad 39.301712 stepsize= 1.000000 +dualbound = 2887313.896770, lowerbound=1203003.896770, norm of subgrad 1097.495739 dualbound = 2887313.896770, lowerbound=1203003.896770, norm of subgrad 40.197935 stepsize= 1.000000 +dualbound = 2887456.084594, lowerbound=1206139.084594, norm of subgrad 1098.898123 dualbound = 2887456.084594, lowerbound=1206139.084594, norm of subgrad 39.751576 stepsize= 1.000000 +dualbound = 2887611.055107, lowerbound=1207094.055107, norm of subgrad 1099.315266 dualbound = 2887611.055107, lowerbound=1207094.055107, norm of subgrad 39.433114 stepsize= 1.000000 +dualbound = 2887767.592910, lowerbound=1205776.592910, norm of subgrad 1098.686758 dualbound = 2887767.592910, lowerbound=1205776.592910, norm of subgrad 38.633377 stepsize= 1.000000 +dualbound = 2887899.121284, lowerbound=1207180.121284, norm of subgrad 1099.314387 dualbound = 2887899.121284, lowerbound=1207180.121284, norm of subgrad 37.993794 stepsize= 1.000000 +dualbound = 2888016.149115, lowerbound=1202907.149115, norm of subgrad 1097.414301 dualbound = 2888016.149115, lowerbound=1202907.149115, norm of subgrad 39.089997 stepsize= 1.000000 +dualbound = 2888152.182788, lowerbound=1202121.182788, norm of subgrad 1097.052498 dualbound = 2888152.182788, lowerbound=1202121.182788, norm of subgrad 39.230520 stepsize= 1.000000 +dualbound = 2888288.592182, lowerbound=1207135.592182, norm of subgrad 1099.335068 dualbound = 2888288.592182, lowerbound=1207135.592182, norm of subgrad 39.222562 stepsize= 1.000000 +dualbound = 2888449.435266, lowerbound=1202042.435266, norm of subgrad 1097.014328 dualbound = 2888449.435266, lowerbound=1202042.435266, norm of subgrad 39.482187 stepsize= 1.000000 +dualbound = 2888565.899727, lowerbound=1202137.899727, norm of subgrad 1097.054648 dualbound = 2888565.899727, lowerbound=1202137.899727, norm of subgrad 38.826080 stepsize= 1.000000 +dualbound = 2888727.086750, lowerbound=1203997.086750, norm of subgrad 1097.927177 dualbound = 2888727.086750, lowerbound=1203997.086750, norm of subgrad 40.102207 stepsize= 1.000000 +dualbound = 2888833.951130, lowerbound=1206749.951130, norm of subgrad 1099.172849 dualbound = 2888833.951130, lowerbound=1206749.951130, norm of subgrad 39.215614 stepsize= 1.000000 +dualbound = 2888972.269078, lowerbound=1202830.269078, norm of subgrad 1097.376995 dualbound = 2888972.269078, lowerbound=1202830.269078, norm of subgrad 39.297811 stepsize= 1.000000 +dualbound = 2889107.917631, lowerbound=1202920.917631, norm of subgrad 1097.428776 dualbound = 2889107.917631, lowerbound=1202920.917631, norm of subgrad 39.555639 stepsize= 1.000000 +dualbound = 2889256.517945, lowerbound=1202636.517945, norm of subgrad 1097.269118 dualbound = 2889256.517945, lowerbound=1202636.517945, norm of subgrad 38.879304 stepsize= 1.000000 +dualbound = 2889398.753339, lowerbound=1205236.753339, norm of subgrad 1098.469733 dualbound = 2889398.753339, lowerbound=1205236.753339, norm of subgrad 39.258571 stepsize= 1.000000 +dualbound = 2889529.835968, lowerbound=1201322.835968, norm of subgrad 1096.700887 dualbound = 2889529.835968, lowerbound=1201322.835968, norm of subgrad 39.510538 stepsize= 1.000000 +dualbound = 2889675.799125, lowerbound=1203259.799125, norm of subgrad 1097.562207 dualbound = 2889675.799125, lowerbound=1203259.799125, norm of subgrad 39.101958 stepsize= 1.000000 +dualbound = 2889834.727955, lowerbound=1209158.727955, norm of subgrad 1100.234851 dualbound = 2889834.727955, lowerbound=1209158.727955, norm of subgrad 38.947771 stepsize= 1.000000 +dualbound = 2889950.243618, lowerbound=1201721.243618, norm of subgrad 1096.902568 dualbound = 2889950.243618, lowerbound=1201721.243618, norm of subgrad 39.868730 stepsize= 1.000000 +dualbound = 2890073.469200, lowerbound=1202710.469200, norm of subgrad 1097.348381 dualbound = 2890073.469200, lowerbound=1202710.469200, norm of subgrad 39.827448 stepsize= 1.000000 +dualbound = 2890213.251138, lowerbound=1204608.251138, norm of subgrad 1098.174053 dualbound = 2890213.251138, lowerbound=1204608.251138, norm of subgrad 38.958721 stepsize= 1.000000 +dualbound = 2890364.166251, lowerbound=1203606.166251, norm of subgrad 1097.742304 dualbound = 2890364.166251, lowerbound=1203606.166251, norm of subgrad 39.785866 stepsize= 1.000000 +dualbound = 2890490.914894, lowerbound=1207740.914894, norm of subgrad 1099.636265 dualbound = 2890490.914894, lowerbound=1207740.914894, norm of subgrad 39.821460 stepsize= 1.000000 +dualbound = 2890643.371310, lowerbound=1201446.371310, norm of subgrad 1096.753104 dualbound = 2890643.371310, lowerbound=1201446.371310, norm of subgrad 39.666818 stepsize= 1.000000 +dualbound = 2890761.810951, lowerbound=1208809.810951, norm of subgrad 1100.095819 dualbound = 2890761.810951, lowerbound=1208809.810951, norm of subgrad 38.979990 stepsize= 1.000000 +dualbound = 2890908.472701, lowerbound=1201166.472701, norm of subgrad 1096.594945 dualbound = 2890908.472701, lowerbound=1201166.472701, norm of subgrad 38.738376 stepsize= 1.000000 +dualbound = 2891046.403689, lowerbound=1207860.403689, norm of subgrad 1099.656493 dualbound = 2891046.403689, lowerbound=1207860.403689, norm of subgrad 39.011934 stepsize= 1.000000 +dualbound = 2891191.697087, lowerbound=1206106.697087, norm of subgrad 1098.867916 dualbound = 2891191.697087, lowerbound=1206106.697087, norm of subgrad 39.361064 stepsize= 1.000000 +dualbound = 2891308.264926, lowerbound=1199970.264926, norm of subgrad 1096.076761 dualbound = 2891308.264926, lowerbound=1199970.264926, norm of subgrad 39.122472 stepsize= 1.000000 +dualbound = 2891467.173148, lowerbound=1200915.173148, norm of subgrad 1096.484917 dualbound = 2891467.173148, lowerbound=1200915.173148, norm of subgrad 39.024457 stepsize= 1.000000 +dualbound = 2891608.961169, lowerbound=1209936.961169, norm of subgrad 1100.606179 dualbound = 2891608.961169, lowerbound=1209936.961169, norm of subgrad 39.227389 stepsize= 1.000000 +dualbound = 2891739.469239, lowerbound=1199968.469239, norm of subgrad 1096.072748 dualbound = 2891739.469239, lowerbound=1199968.469239, norm of subgrad 39.211071 stepsize= 1.000000 +dualbound = 2891887.547894, lowerbound=1206799.547894, norm of subgrad 1099.180398 dualbound = 2891887.547894, lowerbound=1206799.547894, norm of subgrad 39.320207 stepsize= 1.000000 +dualbound = 2891993.699735, lowerbound=1205424.699735, norm of subgrad 1098.571663 dualbound = 2891993.699735, lowerbound=1205424.699735, norm of subgrad 39.257507 stepsize= 1.000000 +dualbound = 2892158.419645, lowerbound=1203840.419645, norm of subgrad 1097.834878 dualbound = 2892158.419645, lowerbound=1203840.419645, norm of subgrad 39.569179 stepsize= 1.000000 +dualbound = 2892265.517561, lowerbound=1208837.517561, norm of subgrad 1100.138408 dualbound = 2892265.517561, lowerbound=1208837.517561, norm of subgrad 39.674903 stepsize= 1.000000 +dualbound = 2892403.923929, lowerbound=1201207.923929, norm of subgrad 1096.657615 dualbound = 2892403.923929, lowerbound=1201207.923929, norm of subgrad 39.854816 stepsize= 1.000000 +dualbound = 2892522.019528, lowerbound=1203909.019528, norm of subgrad 1097.888437 dualbound = 2892522.019528, lowerbound=1203909.019528, norm of subgrad 39.599187 stepsize= 1.000000 +dualbound = 2892680.710735, lowerbound=1204497.710735, norm of subgrad 1098.140570 dualbound = 2892680.710735, lowerbound=1204497.710735, norm of subgrad 39.669777 stepsize= 1.000000 +dualbound = 2892833.958639, lowerbound=1202992.958639, norm of subgrad 1097.427428 dualbound = 2892833.958639, lowerbound=1202992.958639, norm of subgrad 38.823291 stepsize= 1.000000 +dualbound = 2892963.028340, lowerbound=1209311.028340, norm of subgrad 1100.319966 dualbound = 2892963.028340, lowerbound=1209311.028340, norm of subgrad 39.013712 stepsize= 1.000000 +dualbound = 2893101.554506, lowerbound=1205918.554506, norm of subgrad 1098.770474 dualbound = 2893101.554506, lowerbound=1205918.554506, norm of subgrad 38.942601 stepsize= 1.000000 +dualbound = 2893240.033435, lowerbound=1206276.033435, norm of subgrad 1098.969533 dualbound = 2893240.033435, lowerbound=1206276.033435, norm of subgrad 39.955962 stepsize= 1.000000 +dualbound = 2893364.947414, lowerbound=1200553.947414, norm of subgrad 1096.377648 dualbound = 2893364.947414, lowerbound=1200553.947414, norm of subgrad 40.185992 stepsize= 1.000000 +dualbound = 2893476.555005, lowerbound=1206791.555005, norm of subgrad 1099.206784 dualbound = 2893476.555005, lowerbound=1206791.555005, norm of subgrad 39.693924 stepsize= 1.000000 +dualbound = 2893628.611764, lowerbound=1202261.611764, norm of subgrad 1097.107384 dualbound = 2893628.611764, lowerbound=1202261.611764, norm of subgrad 39.179800 stepsize= 1.000000 +dualbound = 2893769.261114, lowerbound=1203358.261114, norm of subgrad 1097.619361 dualbound = 2893769.261114, lowerbound=1203358.261114, norm of subgrad 39.378285 stepsize= 1.000000 +dualbound = 2893906.446965, lowerbound=1205715.446965, norm of subgrad 1098.679866 dualbound = 2893906.446965, lowerbound=1205715.446965, norm of subgrad 38.976735 stepsize= 1.000000 +dualbound = 2894037.975332, lowerbound=1208071.975332, norm of subgrad 1099.770419 dualbound = 2894037.975332, lowerbound=1208071.975332, norm of subgrad 39.427508 stepsize= 1.000000 +dualbound = 2894167.787748, lowerbound=1203294.787748, norm of subgrad 1097.569491 dualbound = 2894167.787748, lowerbound=1203294.787748, norm of subgrad 38.649870 stepsize= 1.000000 +dualbound = 2894334.638550, lowerbound=1200027.638550, norm of subgrad 1096.091985 dualbound = 2894334.638550, lowerbound=1200027.638550, norm of subgrad 39.456949 stepsize= 1.000000 +dualbound = 2894463.223702, lowerbound=1209935.223702, norm of subgrad 1100.595849 dualbound = 2894463.223702, lowerbound=1209935.223702, norm of subgrad 38.788982 stepsize= 1.000000 +dualbound = 2894566.714630, lowerbound=1205768.714630, norm of subgrad 1098.741878 dualbound = 2894566.714630, lowerbound=1205768.714630, norm of subgrad 39.604178 stepsize= 1.000000 +dualbound = 2894728.388641, lowerbound=1202540.388641, norm of subgrad 1097.209364 dualbound = 2894728.388641, lowerbound=1202540.388641, norm of subgrad 38.596295 stepsize= 1.000000 +dualbound = 2894856.316567, lowerbound=1199706.316567, norm of subgrad 1095.972772 dualbound = 2894856.316567, lowerbound=1199706.316567, norm of subgrad 39.723141 stepsize= 1.000000 +dualbound = 2894987.101954, lowerbound=1206089.101954, norm of subgrad 1098.884936 dualbound = 2894987.101954, lowerbound=1206089.101954, norm of subgrad 39.872113 stepsize= 1.000000 +dualbound = 2895137.332912, lowerbound=1209102.332912, norm of subgrad 1100.232854 dualbound = 2895137.332912, lowerbound=1209102.332912, norm of subgrad 39.499759 stepsize= 1.000000 +dualbound = 2895271.340645, lowerbound=1204397.340645, norm of subgrad 1098.098511 dualbound = 2895271.340645, lowerbound=1204397.340645, norm of subgrad 39.458937 stepsize= 1.000000 +dualbound = 2895400.003439, lowerbound=1207090.003439, norm of subgrad 1099.316607 dualbound = 2895400.003439, lowerbound=1207090.003439, norm of subgrad 39.187534 stepsize= 1.000000 +dualbound = 2895573.179423, lowerbound=1203819.179423, norm of subgrad 1097.808808 dualbound = 2895573.179423, lowerbound=1203819.179423, norm of subgrad 39.219587 stepsize= 1.000000 +dualbound = 2895695.707288, lowerbound=1205166.707288, norm of subgrad 1098.443311 dualbound = 2895695.707288, lowerbound=1205166.707288, norm of subgrad 39.160284 stepsize= 1.000000 +dualbound = 2895815.209181, lowerbound=1204850.209181, norm of subgrad 1098.336565 dualbound = 2895815.209181, lowerbound=1204850.209181, norm of subgrad 40.155970 stepsize= 1.000000 +dualbound = 2895941.841174, lowerbound=1206761.841174, norm of subgrad 1099.174163 dualbound = 2895941.841174, lowerbound=1206761.841174, norm of subgrad 39.352662 stepsize= 1.000000 +dualbound = 2896089.375609, lowerbound=1200953.375609, norm of subgrad 1096.532889 dualbound = 2896089.375609, lowerbound=1200953.375609, norm of subgrad 39.730774 stepsize= 1.000000 +dualbound = 2896227.686811, lowerbound=1208399.686811, norm of subgrad 1099.906217 dualbound = 2896227.686811, lowerbound=1208399.686811, norm of subgrad 39.144747 stepsize= 1.000000 +dualbound = 2896371.456787, lowerbound=1202592.456787, norm of subgrad 1097.254509 dualbound = 2896371.456787, lowerbound=1202592.456787, norm of subgrad 38.971399 stepsize= 1.000000 +dualbound = 2896516.350138, lowerbound=1207957.350138, norm of subgrad 1099.710121 dualbound = 2896516.350138, lowerbound=1207957.350138, norm of subgrad 39.368685 stepsize= 1.000000 +dualbound = 2896638.212640, lowerbound=1203521.212640, norm of subgrad 1097.666257 dualbound = 2896638.212640, lowerbound=1203521.212640, norm of subgrad 38.364860 stepsize= 1.000000 +dualbound = 2896778.338351, lowerbound=1208358.338351, norm of subgrad 1099.873328 dualbound = 2896778.338351, lowerbound=1208358.338351, norm of subgrad 38.770165 stepsize= 1.000000 +dualbound = 2896909.429800, lowerbound=1202067.429800, norm of subgrad 1096.999284 dualbound = 2896909.429800, lowerbound=1202067.429800, norm of subgrad 38.354810 stepsize= 1.000000 +dualbound = 2897072.415795, lowerbound=1206987.415795, norm of subgrad 1099.254482 dualbound = 2897072.415795, lowerbound=1206987.415795, norm of subgrad 39.191657 stepsize= 1.000000 +dualbound = 2897167.881430, lowerbound=1205307.881430, norm of subgrad 1098.532604 dualbound = 2897167.881430, lowerbound=1205307.881430, norm of subgrad 39.515385 stepsize= 1.000000 +dualbound = 2897306.284298, lowerbound=1204454.284298, norm of subgrad 1098.112601 dualbound = 2897306.284298, lowerbound=1204454.284298, norm of subgrad 39.184217 stepsize= 1.000000 +dualbound = 2897455.039665, lowerbound=1202394.039665, norm of subgrad 1097.176850 dualbound = 2897455.039665, lowerbound=1202394.039665, norm of subgrad 39.392326 stepsize= 1.000000 +dualbound = 2897593.095347, lowerbound=1203585.095347, norm of subgrad 1097.704466 dualbound = 2897593.095347, lowerbound=1203585.095347, norm of subgrad 38.833693 stepsize= 1.000000 +dualbound = 2897728.472836, lowerbound=1202127.472836, norm of subgrad 1097.049895 dualbound = 2897728.472836, lowerbound=1202127.472836, norm of subgrad 39.068881 stepsize= 1.000000 +dualbound = 2897867.643485, lowerbound=1208708.643485, norm of subgrad 1100.049837 dualbound = 2897867.643485, lowerbound=1208708.643485, norm of subgrad 39.245008 stepsize= 1.000000 +dualbound = 2897985.789044, lowerbound=1203358.789044, norm of subgrad 1097.620512 dualbound = 2897985.789044, lowerbound=1203358.789044, norm of subgrad 39.117075 stepsize= 1.000000 +dualbound = 2898114.441525, lowerbound=1205673.441525, norm of subgrad 1098.660294 dualbound = 2898114.441525, lowerbound=1205673.441525, norm of subgrad 38.854247 stepsize= 1.000000 +dualbound = 2898297.857187, lowerbound=1205041.857187, norm of subgrad 1098.381927 dualbound = 2898297.857187, lowerbound=1205041.857187, norm of subgrad 39.804719 stepsize= 1.000000 +dualbound = 2898378.850810, lowerbound=1207188.850810, norm of subgrad 1099.359746 dualbound = 2898378.850810, lowerbound=1207188.850810, norm of subgrad 38.522638 stepsize= 1.000000 +dualbound = 2898574.205678, lowerbound=1205413.205678, norm of subgrad 1098.550047 dualbound = 2898574.205678, lowerbound=1205413.205678, norm of subgrad 39.929373 stepsize= 1.000000 +dualbound = 2898659.873070, lowerbound=1210625.873070, norm of subgrad 1100.920466 dualbound = 2898659.873070, lowerbound=1210625.873070, norm of subgrad 38.544356 stepsize= 1.000000 +dualbound = 2898801.339134, lowerbound=1197491.339134, norm of subgrad 1094.956318 dualbound = 2898801.339134, lowerbound=1197491.339134, norm of subgrad 39.742497 stepsize= 1.000000 +dualbound = 2898928.912183, lowerbound=1213967.912183, norm of subgrad 1102.454494 dualbound = 2898928.912183, lowerbound=1213967.912183, norm of subgrad 39.567323 stepsize= 1.000000 +dualbound = 2899075.119375, lowerbound=1201613.119375, norm of subgrad 1096.825929 dualbound = 2899075.119375, lowerbound=1201613.119375, norm of subgrad 39.499458 stepsize= 1.000000 +dualbound = 2899224.339523, lowerbound=1211758.339523, norm of subgrad 1101.451923 dualbound = 2899224.339523, lowerbound=1211758.339523, norm of subgrad 39.839932 stepsize= 1.000000 +dualbound = 2899333.580688, lowerbound=1206478.580688, norm of subgrad 1099.021192 dualbound = 2899333.580688, lowerbound=1206478.580688, norm of subgrad 38.447902 stepsize= 1.000000 +dualbound = 2899495.349471, lowerbound=1209032.349471, norm of subgrad 1100.221955 dualbound = 2899495.349471, lowerbound=1209032.349471, norm of subgrad 40.221497 stepsize= 1.000000 +dualbound = 2899597.566934, lowerbound=1207402.566934, norm of subgrad 1099.448756 dualbound = 2899597.566934, lowerbound=1207402.566934, norm of subgrad 38.564459 stepsize= 1.000000 +dualbound = 2899754.084078, lowerbound=1202582.084078, norm of subgrad 1097.275756 dualbound = 2899754.084078, lowerbound=1202582.084078, norm of subgrad 39.856206 stepsize= 1.000000 +dualbound = 2899864.977097, lowerbound=1205106.977097, norm of subgrad 1098.421129 dualbound = 2899864.977097, lowerbound=1205106.977097, norm of subgrad 39.152178 stepsize= 1.000000 +dualbound = 2899999.608479, lowerbound=1202994.608479, norm of subgrad 1097.445948 dualbound = 2899999.608479, lowerbound=1202994.608479, norm of subgrad 39.084925 stepsize= 1.000000 +dualbound = 2900167.555320, lowerbound=1205808.555320, norm of subgrad 1098.732704 dualbound = 2900167.555320, lowerbound=1205808.555320, norm of subgrad 39.660394 stepsize= 1.000000 +dualbound = 2900293.851682, lowerbound=1207168.851682, norm of subgrad 1099.362930 dualbound = 2900293.851682, lowerbound=1207168.851682, norm of subgrad 39.449922 stepsize= 1.000000 +dualbound = 2900434.552146, lowerbound=1204447.552146, norm of subgrad 1098.127749 dualbound = 2900434.552146, lowerbound=1204447.552146, norm of subgrad 39.720278 stepsize= 1.000000 +dualbound = 2900556.394270, lowerbound=1205677.394270, norm of subgrad 1098.673470 dualbound = 2900556.394270, lowerbound=1205677.394270, norm of subgrad 39.087621 stepsize= 1.000000 +dualbound = 2900721.866869, lowerbound=1206490.866869, norm of subgrad 1099.041795 dualbound = 2900721.866869, lowerbound=1206490.866869, norm of subgrad 39.591320 stepsize= 1.000000 +dualbound = 2900841.410831, lowerbound=1202385.410831, norm of subgrad 1097.150587 dualbound = 2900841.410831, lowerbound=1202385.410831, norm of subgrad 38.386768 stepsize= 1.000000 +dualbound = 2901008.376315, lowerbound=1201138.376315, norm of subgrad 1096.576206 dualbound = 2901008.376315, lowerbound=1201138.376315, norm of subgrad 38.832531 stepsize= 1.000000 +dualbound = 2901118.543360, lowerbound=1208196.543360, norm of subgrad 1099.812049 dualbound = 2901118.543360, lowerbound=1208196.543360, norm of subgrad 38.731990 stepsize= 1.000000 +dualbound = 2901243.961701, lowerbound=1204933.961701, norm of subgrad 1098.330989 dualbound = 2901243.961701, lowerbound=1204933.961701, norm of subgrad 39.018180 stepsize= 1.000000 +dualbound = 2901380.512656, lowerbound=1206922.512656, norm of subgrad 1099.210404 dualbound = 2901380.512656, lowerbound=1206922.512656, norm of subgrad 38.438925 stepsize= 1.000000 +dualbound = 2901533.979537, lowerbound=1202472.979537, norm of subgrad 1097.219203 dualbound = 2901533.979537, lowerbound=1202472.979537, norm of subgrad 39.629117 stepsize= 1.000000 +dualbound = 2901664.439026, lowerbound=1209054.439026, norm of subgrad 1100.196091 dualbound = 2901664.439026, lowerbound=1209054.439026, norm of subgrad 38.826016 stepsize= 1.000000 +dualbound = 2901799.871911, lowerbound=1208548.871911, norm of subgrad 1099.977214 dualbound = 2901799.871911, lowerbound=1208548.871911, norm of subgrad 39.197358 stepsize= 1.000000 +dualbound = 2901938.130867, lowerbound=1210107.130867, norm of subgrad 1100.693477 dualbound = 2901938.130867, lowerbound=1210107.130867, norm of subgrad 39.462121 stepsize= 1.000000 +dualbound = 2902067.100016, lowerbound=1203559.100016, norm of subgrad 1097.688981 dualbound = 2902067.100016, lowerbound=1203559.100016, norm of subgrad 38.613070 stepsize= 1.000000 +dualbound = 2902221.661335, lowerbound=1210668.661335, norm of subgrad 1100.908562 dualbound = 2902221.661335, lowerbound=1210668.661335, norm of subgrad 38.542980 stepsize= 1.000000 +dualbound = 2902357.264932, lowerbound=1200998.264932, norm of subgrad 1096.493623 dualbound = 2902357.264932, lowerbound=1200998.264932, norm of subgrad 37.889360 stepsize= 1.000000 +dualbound = 2902514.595872, lowerbound=1206354.595872, norm of subgrad 1098.992082 dualbound = 2902514.595872, lowerbound=1206354.595872, norm of subgrad 39.828770 stepsize= 1.000000 +dualbound = 2902589.121872, lowerbound=1201825.121872, norm of subgrad 1096.943536 dualbound = 2902589.121872, lowerbound=1201825.121872, norm of subgrad 39.173026 stepsize= 1.000000 +dualbound = 2902733.036075, lowerbound=1208585.036075, norm of subgrad 1099.996380 dualbound = 2902733.036075, lowerbound=1208585.036075, norm of subgrad 39.381648 stepsize= 1.000000 +dualbound = 2902902.291988, lowerbound=1203739.291988, norm of subgrad 1097.770601 dualbound = 2902902.291988, lowerbound=1203739.291988, norm of subgrad 39.118486 stepsize= 1.000000 +dualbound = 2903029.563121, lowerbound=1209356.563121, norm of subgrad 1100.329752 dualbound = 2903029.563121, lowerbound=1209356.563121, norm of subgrad 38.681664 stepsize= 1.000000 +dualbound = 2903190.234232, lowerbound=1202500.234232, norm of subgrad 1097.214762 dualbound = 2903190.234232, lowerbound=1202500.234232, norm of subgrad 39.251384 stepsize= 1.000000 +dualbound = 2903262.103702, lowerbound=1206817.103702, norm of subgrad 1099.228413 dualbound = 2903262.103702, lowerbound=1206817.103702, norm of subgrad 39.469855 stepsize= 1.000000 +dualbound = 2903419.543042, lowerbound=1208168.543042, norm of subgrad 1099.816141 dualbound = 2903419.543042, lowerbound=1208168.543042, norm of subgrad 39.805017 stepsize= 1.000000 +dualbound = 2903538.903206, lowerbound=1207749.903206, norm of subgrad 1099.621254 dualbound = 2903538.903206, lowerbound=1207749.903206, norm of subgrad 39.196431 stepsize= 1.000000 +dualbound = 2903696.038535, lowerbound=1203913.038535, norm of subgrad 1097.865674 dualbound = 2903696.038535, lowerbound=1203913.038535, norm of subgrad 39.409838 stepsize= 1.000000 +dualbound = 2903804.680402, lowerbound=1207049.680402, norm of subgrad 1099.293264 dualbound = 2903804.680402, lowerbound=1207049.680402, norm of subgrad 38.789713 stepsize= 1.000000 +dualbound = 2903975.177790, lowerbound=1206048.177790, norm of subgrad 1098.799881 dualbound = 2903975.177790, lowerbound=1206048.177790, norm of subgrad 38.516196 stepsize= 1.000000 +dualbound = 2904106.425193, lowerbound=1208463.425193, norm of subgrad 1099.928373 dualbound = 2904106.425193, lowerbound=1208463.425193, norm of subgrad 38.861902 stepsize= 1.000000 +dualbound = 2904222.768012, lowerbound=1208517.768012, norm of subgrad 1099.932165 dualbound = 2904222.768012, lowerbound=1208517.768012, norm of subgrad 38.070235 stepsize= 1.000000 +dualbound = 2904385.677062, lowerbound=1202925.677062, norm of subgrad 1097.415453 dualbound = 2904385.677062, lowerbound=1202925.677062, norm of subgrad 39.470357 stepsize= 1.000000 +dualbound = 2904486.947748, lowerbound=1201483.947748, norm of subgrad 1096.788014 dualbound = 2904486.947748, lowerbound=1201483.947748, norm of subgrad 39.512918 stepsize= 1.000000 +dualbound = 2904605.333356, lowerbound=1210449.333356, norm of subgrad 1100.884796 dualbound = 2904605.333356, lowerbound=1210449.333356, norm of subgrad 40.204298 stepsize= 1.000000 +dualbound = 2904744.684082, lowerbound=1204809.684082, norm of subgrad 1098.320392 dualbound = 2904744.684082, lowerbound=1204809.684082, norm of subgrad 40.464191 stepsize= 1.000000 +dualbound = 2904882.453799, lowerbound=1202459.453799, norm of subgrad 1097.219875 dualbound = 2904882.453799, lowerbound=1202459.453799, norm of subgrad 39.620320 stepsize= 1.000000 +dualbound = 2905023.639035, lowerbound=1206149.639035, norm of subgrad 1098.893370 dualbound = 2905023.639035, lowerbound=1206149.639035, norm of subgrad 39.473855 stepsize= 1.000000 +dualbound = 2905187.337709, lowerbound=1212564.337709, norm of subgrad 1101.776446 dualbound = 2905187.337709, lowerbound=1212564.337709, norm of subgrad 38.867707 stepsize= 1.000000 +dualbound = 2905313.168812, lowerbound=1202966.168812, norm of subgrad 1097.436635 dualbound = 2905313.168812, lowerbound=1202966.168812, norm of subgrad 39.074686 stepsize= 1.000000 +dualbound = 2905463.484645, lowerbound=1210906.484645, norm of subgrad 1101.021564 dualbound = 2905463.484645, lowerbound=1210906.484645, norm of subgrad 38.630504 stepsize= 1.000000 +dualbound = 2905585.554304, lowerbound=1203272.554304, norm of subgrad 1097.583051 dualbound = 2905585.554304, lowerbound=1203272.554304, norm of subgrad 39.218231 stepsize= 1.000000 +dualbound = 2905711.048226, lowerbound=1203262.048226, norm of subgrad 1097.576899 dualbound = 2905711.048226, lowerbound=1203262.048226, norm of subgrad 39.223640 stepsize= 1.000000 +dualbound = 2905840.373058, lowerbound=1205679.373058, norm of subgrad 1098.668455 dualbound = 2905840.373058, lowerbound=1205679.373058, norm of subgrad 39.016981 stepsize= 1.000000 +dualbound = 2905973.069484, lowerbound=1208772.069484, norm of subgrad 1100.079574 dualbound = 2905973.069484, lowerbound=1208772.069484, norm of subgrad 39.187963 stepsize= 1.000000 +dualbound = 2906123.286501, lowerbound=1202706.286501, norm of subgrad 1097.296353 dualbound = 2906123.286501, lowerbound=1202706.286501, norm of subgrad 38.771343 stepsize= 1.000000 +dualbound = 2906263.051205, lowerbound=1211139.051205, norm of subgrad 1101.165315 dualbound = 2906263.051205, lowerbound=1211139.051205, norm of subgrad 39.569745 stepsize= 1.000000 +dualbound = 2906378.880902, lowerbound=1204674.880902, norm of subgrad 1098.215316 dualbound = 2906378.880902, lowerbound=1204674.880902, norm of subgrad 38.959334 stepsize= 1.000000 +dualbound = 2906524.518747, lowerbound=1207134.518747, norm of subgrad 1099.337309 dualbound = 2906524.518747, lowerbound=1207134.518747, norm of subgrad 39.416213 stepsize= 1.000000 +dualbound = 2906662.355490, lowerbound=1206009.355490, norm of subgrad 1098.798596 dualbound = 2906662.355490, lowerbound=1206009.355490, norm of subgrad 38.559522 stepsize= 1.000000 +dualbound = 2906813.952191, lowerbound=1205350.952191, norm of subgrad 1098.541284 dualbound = 2906813.952191, lowerbound=1205350.952191, norm of subgrad 39.919879 stepsize= 1.000000 +dualbound = 2906903.665407, lowerbound=1206873.665407, norm of subgrad 1099.229578 dualbound = 2906903.665407, lowerbound=1206873.665407, norm of subgrad 39.009143 stepsize= 1.000000 +dualbound = 2907077.348699, lowerbound=1211592.348699, norm of subgrad 1101.348877 dualbound = 2907077.348699, lowerbound=1211592.348699, norm of subgrad 39.378716 stepsize= 1.000000 +dualbound = 2907199.951794, lowerbound=1202148.951794, norm of subgrad 1097.077915 dualbound = 2907199.951794, lowerbound=1202148.951794, norm of subgrad 39.415772 stepsize= 1.000000 +dualbound = 2907322.895264, lowerbound=1206510.895264, norm of subgrad 1099.043173 dualbound = 2907322.895264, lowerbound=1206510.895264, norm of subgrad 38.832248 stepsize= 1.000000 +dualbound = 2907469.916905, lowerbound=1207048.916905, norm of subgrad 1099.287004 dualbound = 2907469.916905, lowerbound=1207048.916905, norm of subgrad 39.115491 stepsize= 1.000000 +dualbound = 2907596.688706, lowerbound=1210341.688706, norm of subgrad 1100.802747 dualbound = 2907596.688706, lowerbound=1210341.688706, norm of subgrad 39.392535 stepsize= 1.000000 +dualbound = 2907742.906144, lowerbound=1201943.906144, norm of subgrad 1096.956656 dualbound = 2907742.906144, lowerbound=1201943.906144, norm of subgrad 38.938637 stepsize= 1.000000 +dualbound = 2907886.115786, lowerbound=1210665.115786, norm of subgrad 1100.907406 dualbound = 2907886.115786, lowerbound=1210665.115786, norm of subgrad 38.408458 stepsize= 1.000000 +dualbound = 2908051.216672, lowerbound=1204777.216672, norm of subgrad 1098.215924 dualbound = 2908051.216672, lowerbound=1204777.216672, norm of subgrad 38.289697 stepsize= 1.000000 +dualbound = 2908170.531006, lowerbound=1209668.531006, norm of subgrad 1100.463326 dualbound = 2908170.531006, lowerbound=1209668.531006, norm of subgrad 38.344678 stepsize= 1.000000 +dualbound = 2908274.330085, lowerbound=1207709.330085, norm of subgrad 1099.595985 dualbound = 2908274.330085, lowerbound=1207709.330085, norm of subgrad 38.804627 stepsize= 1.000000 +dualbound = 2908403.441249, lowerbound=1208820.441249, norm of subgrad 1100.103832 dualbound = 2908403.441249, lowerbound=1208820.441249, norm of subgrad 39.206009 stepsize= 1.000000 +dualbound = 2908542.564779, lowerbound=1201446.564779, norm of subgrad 1096.765957 dualbound = 2908542.564779, lowerbound=1201446.564779, norm of subgrad 39.851268 stepsize= 1.000000 +dualbound = 2908653.850539, lowerbound=1212507.850539, norm of subgrad 1101.771233 dualbound = 2908653.850539, lowerbound=1212507.850539, norm of subgrad 38.772229 stepsize= 1.000000 +dualbound = 2908820.989529, lowerbound=1206109.989529, norm of subgrad 1098.871689 dualbound = 2908820.989529, lowerbound=1206109.989529, norm of subgrad 39.700617 stepsize= 1.000000 +dualbound = 2908912.990301, lowerbound=1207625.990301, norm of subgrad 1099.567638 dualbound = 2908912.990301, lowerbound=1207625.990301, norm of subgrad 38.923011 stepsize= 1.000000 +dualbound = 2909074.723124, lowerbound=1205120.723124, norm of subgrad 1098.464257 dualbound = 2909074.723124, lowerbound=1205120.723124, norm of subgrad 40.801138 stepsize= 1.000000 +dualbound = 2909178.606788, lowerbound=1212466.606788, norm of subgrad 1101.741624 dualbound = 2909178.606788, lowerbound=1212466.606788, norm of subgrad 38.365136 stepsize= 1.000000 +dualbound = 2909357.198290, lowerbound=1201524.198290, norm of subgrad 1096.728407 dualbound = 2909357.198290, lowerbound=1201524.198290, norm of subgrad 38.309157 stepsize= 1.000000 +dualbound = 2909488.276429, lowerbound=1210187.276429, norm of subgrad 1100.696269 dualbound = 2909488.276429, lowerbound=1210187.276429, norm of subgrad 38.419762 stepsize= 1.000000 +dualbound = 2909613.855611, lowerbound=1205309.855611, norm of subgrad 1098.481614 dualbound = 2909613.855611, lowerbound=1205309.855611, norm of subgrad 38.439292 stepsize= 1.000000 +dualbound = 2909769.800135, lowerbound=1206956.800135, norm of subgrad 1099.223726 dualbound = 2909769.800135, lowerbound=1206956.800135, norm of subgrad 38.625698 stepsize= 1.000000 +dualbound = 2909870.647187, lowerbound=1208493.647187, norm of subgrad 1099.940293 dualbound = 2909870.647187, lowerbound=1208493.647187, norm of subgrad 38.416755 stepsize= 1.000000 +dualbound = 2910013.485276, lowerbound=1206491.485276, norm of subgrad 1099.051630 dualbound = 2910013.485276, lowerbound=1206491.485276, norm of subgrad 39.570672 stepsize= 1.000000 +dualbound = 2910118.777590, lowerbound=1206566.777590, norm of subgrad 1099.106354 dualbound = 2910118.777590, lowerbound=1206566.777590, norm of subgrad 39.664749 stepsize= 1.000000 +dualbound = 2910258.308259, lowerbound=1204866.308259, norm of subgrad 1098.305198 dualbound = 2910258.308259, lowerbound=1204866.308259, norm of subgrad 39.338666 stepsize= 1.000000 +dualbound = 2910415.575194, lowerbound=1209506.575194, norm of subgrad 1100.380650 dualbound = 2910415.575194, lowerbound=1209506.575194, norm of subgrad 38.578063 stepsize= 1.000000 +dualbound = 2910563.572570, lowerbound=1205759.572570, norm of subgrad 1098.675372 dualbound = 2910563.572570, lowerbound=1205759.572570, norm of subgrad 38.418711 stepsize= 1.000000 +dualbound = 2910680.325809, lowerbound=1205506.325809, norm of subgrad 1098.566487 dualbound = 2910680.325809, lowerbound=1205506.325809, norm of subgrad 38.193628 stepsize= 1.000000 +dualbound = 2910825.122480, lowerbound=1205085.122480, norm of subgrad 1098.407539 dualbound = 2910825.122480, lowerbound=1205085.122480, norm of subgrad 39.481599 stepsize= 1.000000 +dualbound = 2910925.491366, lowerbound=1208590.491366, norm of subgrad 1100.019769 dualbound = 2910925.491366, lowerbound=1208590.491366, norm of subgrad 39.412801 stepsize= 1.000000 +dualbound = 2911038.733339, lowerbound=1207170.733339, norm of subgrad 1099.333313 dualbound = 2911038.733339, lowerbound=1207170.733339, norm of subgrad 38.421894 stepsize= 1.000000 +dualbound = 2911216.105098, lowerbound=1207833.105098, norm of subgrad 1099.623620 dualbound = 2911216.105098, lowerbound=1207833.105098, norm of subgrad 38.940618 stepsize= 1.000000 +dualbound = 2911373.513400, lowerbound=1203380.513400, norm of subgrad 1097.593055 dualbound = 2911373.513400, lowerbound=1203380.513400, norm of subgrad 38.566933 stepsize= 1.000000 +dualbound = 2911463.648428, lowerbound=1206118.648428, norm of subgrad 1098.839228 dualbound = 2911463.648428, lowerbound=1206118.648428, norm of subgrad 37.671409 stepsize= 1.000000 +dualbound = 2911620.147445, lowerbound=1209211.147445, norm of subgrad 1100.279577 dualbound = 2911620.147445, lowerbound=1209211.147445, norm of subgrad 39.503152 stepsize= 1.000000 +dualbound = 2911727.216051, lowerbound=1207195.216051, norm of subgrad 1099.309882 dualbound = 2911727.216051, lowerbound=1207195.216051, norm of subgrad 37.337228 stepsize= 1.000000 +dualbound = 2911908.042617, lowerbound=1206686.042617, norm of subgrad 1099.091917 dualbound = 2911908.042617, lowerbound=1206686.042617, norm of subgrad 38.701764 stepsize= 1.000000 +dualbound = 2912004.619976, lowerbound=1210853.619976, norm of subgrad 1101.046602 dualbound = 2912004.619976, lowerbound=1210853.619976, norm of subgrad 39.326548 stepsize= 1.000000 +dualbound = 2912118.927676, lowerbound=1205469.927676, norm of subgrad 1098.609998 dualbound = 2912118.927676, lowerbound=1205469.927676, norm of subgrad 39.853578 stepsize= 1.000000 +dualbound = 2912258.553501, lowerbound=1207645.553501, norm of subgrad 1099.558799 dualbound = 2912258.553501, lowerbound=1207645.553501, norm of subgrad 39.033650 stepsize= 1.000000 +dualbound = 2912425.732788, lowerbound=1204886.732788, norm of subgrad 1098.339990 dualbound = 2912425.732788, lowerbound=1204886.732788, norm of subgrad 40.387861 stepsize= 1.000000 +dualbound = 2912519.621874, lowerbound=1208768.621874, norm of subgrad 1100.086188 dualbound = 2912519.621874, lowerbound=1208768.621874, norm of subgrad 38.921576 stepsize= 1.000000 +dualbound = 2912675.405993, lowerbound=1210587.405993, norm of subgrad 1100.912533 dualbound = 2912675.405993, lowerbound=1210587.405993, norm of subgrad 39.708741 stepsize= 1.000000 +dualbound = 2912815.574544, lowerbound=1203238.574544, norm of subgrad 1097.550261 dualbound = 2912815.574544, lowerbound=1203238.574544, norm of subgrad 38.963682 stepsize= 1.000000 +dualbound = 2912937.564673, lowerbound=1205930.564673, norm of subgrad 1098.774119 dualbound = 2912937.564673, lowerbound=1205930.564673, norm of subgrad 38.678032 stepsize= 1.000000 +dualbound = 2913095.952356, lowerbound=1207504.952356, norm of subgrad 1099.455298 dualbound = 2913095.952356, lowerbound=1207504.952356, norm of subgrad 38.149544 stepsize= 1.000000 +dualbound = 2913222.586888, lowerbound=1207403.586888, norm of subgrad 1099.416476 dualbound = 2913222.586888, lowerbound=1207403.586888, norm of subgrad 37.942516 stepsize= 1.000000 +dualbound = 2913362.767293, lowerbound=1207932.767293, norm of subgrad 1099.677574 dualbound = 2913362.767293, lowerbound=1207932.767293, norm of subgrad 38.706335 stepsize= 1.000000 +dualbound = 2913485.843905, lowerbound=1208523.843905, norm of subgrad 1099.930381 dualbound = 2913485.843905, lowerbound=1208523.843905, norm of subgrad 38.027314 stepsize= 1.000000 +dualbound = 2913626.778348, lowerbound=1208423.778348, norm of subgrad 1099.898076 dualbound = 2913626.778348, lowerbound=1208423.778348, norm of subgrad 38.638510 stepsize= 1.000000 +dualbound = 2913740.072804, lowerbound=1207761.072804, norm of subgrad 1099.615420 dualbound = 2913740.072804, lowerbound=1207761.072804, norm of subgrad 38.811009 stepsize= 1.000000 +dualbound = 2913879.717575, lowerbound=1205590.717575, norm of subgrad 1098.610357 dualbound = 2913879.717575, lowerbound=1205590.717575, norm of subgrad 38.647701 stepsize= 1.000000 +dualbound = 2914046.601107, lowerbound=1207027.601107, norm of subgrad 1099.270486 dualbound = 2914046.601107, lowerbound=1207027.601107, norm of subgrad 39.177590 stepsize= 1.000000 +dualbound = 2914129.995953, lowerbound=1208511.995953, norm of subgrad 1099.992271 dualbound = 2914129.995953, lowerbound=1208511.995953, norm of subgrad 39.425814 stepsize= 1.000000 +dualbound = 2914260.658689, lowerbound=1207577.658689, norm of subgrad 1099.558393 dualbound = 2914260.658689, lowerbound=1207577.658689, norm of subgrad 39.770124 stepsize= 1.000000 +dualbound = 2914405.502958, lowerbound=1203670.502958, norm of subgrad 1097.769330 dualbound = 2914405.502958, lowerbound=1203670.502958, norm of subgrad 39.646491 stepsize= 1.000000 +dualbound = 2914539.120338, lowerbound=1212223.120338, norm of subgrad 1101.668789 dualbound = 2914539.120338, lowerbound=1212223.120338, norm of subgrad 39.807253 stepsize= 1.000000 +dualbound = 2914674.427758, lowerbound=1206545.427758, norm of subgrad 1099.065707 dualbound = 2914674.427758, lowerbound=1206545.427758, norm of subgrad 39.182999 stepsize= 1.000000 +dualbound = 2914794.747343, lowerbound=1209880.747343, norm of subgrad 1100.616531 dualbound = 2914794.747343, lowerbound=1209880.747343, norm of subgrad 39.953968 stepsize= 1.000000 +dualbound = 2914917.573167, lowerbound=1205460.573167, norm of subgrad 1098.570240 dualbound = 2914917.573167, lowerbound=1205460.573167, norm of subgrad 38.972116 stepsize= 1.000000 +dualbound = 2915082.309100, lowerbound=1207872.309100, norm of subgrad 1099.686459 dualbound = 2915082.309100, lowerbound=1207872.309100, norm of subgrad 40.034185 stepsize= 1.000000 +dualbound = 2915207.555342, lowerbound=1208327.555342, norm of subgrad 1099.867063 dualbound = 2915207.555342, lowerbound=1208327.555342, norm of subgrad 38.797503 stepsize= 1.000000 +dualbound = 2915347.411426, lowerbound=1206391.411426, norm of subgrad 1098.977439 dualbound = 2915347.411426, lowerbound=1206391.411426, norm of subgrad 38.727975 stepsize= 1.000000 +dualbound = 2915467.220880, lowerbound=1203866.220880, norm of subgrad 1097.891261 dualbound = 2915467.220880, lowerbound=1203866.220880, norm of subgrad 40.234431 stepsize= 1.000000 +dualbound = 2915591.347350, lowerbound=1207843.347350, norm of subgrad 1099.651466 dualbound = 2915591.347350, lowerbound=1207843.347350, norm of subgrad 38.911778 stepsize= 1.000000 +dualbound = 2915752.343486, lowerbound=1208670.343486, norm of subgrad 1100.021520 dualbound = 2915752.343486, lowerbound=1208670.343486, norm of subgrad 39.217294 stepsize= 1.000000 +dualbound = 2915876.858454, lowerbound=1208192.858454, norm of subgrad 1099.802645 dualbound = 2915876.858454, lowerbound=1208192.858454, norm of subgrad 38.697739 stepsize= 1.000000 +dualbound = 2916019.785629, lowerbound=1204151.785629, norm of subgrad 1097.975312 dualbound = 2916019.785629, lowerbound=1204151.785629, norm of subgrad 39.254645 stepsize= 1.000000 +dualbound = 2916150.650300, lowerbound=1211326.650300, norm of subgrad 1101.230062 dualbound = 2916150.650300, lowerbound=1211326.650300, norm of subgrad 38.882704 stepsize= 1.000000 +dualbound = 2916297.623452, lowerbound=1205147.623452, norm of subgrad 1098.406857 dualbound = 2916297.623452, lowerbound=1205147.623452, norm of subgrad 38.690737 stepsize= 1.000000 +dualbound = 2916416.682112, lowerbound=1212576.682112, norm of subgrad 1101.796116 dualbound = 2916416.682112, lowerbound=1212576.682112, norm of subgrad 38.691842 stepsize= 1.000000 +dualbound = 2916539.335445, lowerbound=1202363.335445, norm of subgrad 1097.156021 dualbound = 2916539.335445, lowerbound=1202363.335445, norm of subgrad 38.867124 stepsize= 1.000000 +dualbound = 2916679.713442, lowerbound=1206201.713442, norm of subgrad 1098.900229 dualbound = 2916679.713442, lowerbound=1206201.713442, norm of subgrad 38.992025 stepsize= 1.000000 +dualbound = 2916815.274872, lowerbound=1208643.274872, norm of subgrad 1100.016943 dualbound = 2916815.274872, lowerbound=1208643.274872, norm of subgrad 39.109608 stepsize= 1.000000 +dualbound = 2916946.119607, lowerbound=1209753.119607, norm of subgrad 1100.498123 dualbound = 2916946.119607, lowerbound=1209753.119607, norm of subgrad 38.390686 stepsize= 1.000000 +dualbound = 2917098.049849, lowerbound=1206806.049849, norm of subgrad 1099.134227 dualbound = 2917098.049849, lowerbound=1206806.049849, norm of subgrad 37.972757 stepsize= 1.000000 +dualbound = 2917217.640590, lowerbound=1211240.640590, norm of subgrad 1101.185107 dualbound = 2917217.640590, lowerbound=1211240.640590, norm of subgrad 38.569298 stepsize= 1.000000 +dualbound = 2917344.015964, lowerbound=1204241.015964, norm of subgrad 1097.989534 dualbound = 2917344.015964, lowerbound=1204241.015964, norm of subgrad 38.293281 stepsize= 1.000000 +dualbound = 2917464.886515, lowerbound=1206305.886515, norm of subgrad 1098.968101 dualbound = 2917464.886515, lowerbound=1206305.886515, norm of subgrad 39.317560 stepsize= 1.000000 +dualbound = 2917611.887755, lowerbound=1208161.887755, norm of subgrad 1099.791293 dualbound = 2917611.887755, lowerbound=1208161.887755, norm of subgrad 39.064066 stepsize= 1.000000 +dualbound = 2917719.915219, lowerbound=1212630.915219, norm of subgrad 1101.824811 dualbound = 2917719.915219, lowerbound=1212630.915219, norm of subgrad 38.665585 stepsize= 1.000000 +dualbound = 2917887.429077, lowerbound=1207638.429077, norm of subgrad 1099.540099 dualbound = 2917887.429077, lowerbound=1207638.429077, norm of subgrad 38.955280 stepsize= 1.000000 +dualbound = 2917995.792188, lowerbound=1206380.792188, norm of subgrad 1098.959868 dualbound = 2917995.792188, lowerbound=1206380.792188, norm of subgrad 37.952116 stepsize= 1.000000 +dualbound = 2918161.934260, lowerbound=1207151.934260, norm of subgrad 1099.314302 dualbound = 2918161.934260, lowerbound=1207151.934260, norm of subgrad 38.809046 stepsize= 1.000000 +dualbound = 2918271.352908, lowerbound=1209630.352908, norm of subgrad 1100.466425 dualbound = 2918271.352908, lowerbound=1209630.352908, norm of subgrad 38.799725 stepsize= 1.000000 +dualbound = 2918402.801229, lowerbound=1206846.801229, norm of subgrad 1099.195070 dualbound = 2918402.801229, lowerbound=1206846.801229, norm of subgrad 38.915913 stepsize= 1.000000 +dualbound = 2918531.238548, lowerbound=1205365.238548, norm of subgrad 1098.526849 dualbound = 2918531.238548, lowerbound=1205365.238548, norm of subgrad 39.044043 stepsize= 1.000000 +dualbound = 2918679.730955, lowerbound=1207294.730955, norm of subgrad 1099.401533 dualbound = 2918679.730955, lowerbound=1207294.730955, norm of subgrad 39.210871 stepsize= 1.000000 +dualbound = 2918787.521570, lowerbound=1205425.521570, norm of subgrad 1098.550646 dualbound = 2918787.521570, lowerbound=1205425.521570, norm of subgrad 38.675452 stepsize= 1.000000 +dualbound = 2918940.237079, lowerbound=1208999.237079, norm of subgrad 1100.169186 dualbound = 2918940.237079, lowerbound=1208999.237079, norm of subgrad 39.060408 stepsize= 1.000000 +dualbound = 2919072.570833, lowerbound=1206020.570832, norm of subgrad 1098.820536 dualbound = 2919072.570833, lowerbound=1206020.570832, norm of subgrad 38.965802 stepsize= 1.000000 +dualbound = 2919221.989694, lowerbound=1207468.989694, norm of subgrad 1099.463501 dualbound = 2919221.989694, lowerbound=1207468.989694, norm of subgrad 38.735241 stepsize= 1.000000 +dualbound = 2919339.499971, lowerbound=1213134.499971, norm of subgrad 1102.054218 dualbound = 2919339.499971, lowerbound=1213134.499971, norm of subgrad 38.813790 stepsize= 1.000000 +dualbound = 2919472.789510, lowerbound=1205830.789510, norm of subgrad 1098.713698 dualbound = 2919472.789510, lowerbound=1205830.789510, norm of subgrad 38.396478 stepsize= 1.000000 +dualbound = 2919604.365604, lowerbound=1209249.365604, norm of subgrad 1100.301943 dualbound = 2919604.365604, lowerbound=1209249.365604, norm of subgrad 39.326532 stepsize= 1.000000 +dualbound = 2919728.447205, lowerbound=1205734.447205, norm of subgrad 1098.693518 dualbound = 2919728.447205, lowerbound=1205734.447205, norm of subgrad 38.949732 stepsize= 1.000000 +dualbound = 2919870.292908, lowerbound=1210289.292908, norm of subgrad 1100.753511 dualbound = 2919870.292908, lowerbound=1210289.292908, norm of subgrad 38.869599 stepsize= 1.000000 +dualbound = 2920016.701569, lowerbound=1206525.701569, norm of subgrad 1099.052638 dualbound = 2920016.701569, lowerbound=1206525.701569, norm of subgrad 39.209803 stepsize= 1.000000 +dualbound = 2920127.045834, lowerbound=1213016.045834, norm of subgrad 1101.989585 dualbound = 2920127.045834, lowerbound=1213016.045834, norm of subgrad 38.410210 stepsize= 1.000000 +dualbound = 2920269.379446, lowerbound=1207776.379446, norm of subgrad 1099.625109 dualbound = 2920269.379446, lowerbound=1207776.379446, norm of subgrad 39.259822 stepsize= 1.000000 +dualbound = 2920391.961778, lowerbound=1205158.961778, norm of subgrad 1098.376967 dualbound = 2920391.961778, lowerbound=1205158.961778, norm of subgrad 37.357494 stepsize= 1.000000 +dualbound = 2920526.167547, lowerbound=1206889.167547, norm of subgrad 1099.226622 dualbound = 2920526.167547, lowerbound=1206889.167547, norm of subgrad 39.296384 stepsize= 1.000000 +dualbound = 2920644.242512, lowerbound=1209912.242512, norm of subgrad 1100.599038 dualbound = 2920644.242512, lowerbound=1209912.242512, norm of subgrad 39.039403 stepsize= 1.000000 +dualbound = 2920795.639864, lowerbound=1207465.639864, norm of subgrad 1099.488808 dualbound = 2920795.639864, lowerbound=1207465.639864, norm of subgrad 39.514521 stepsize= 1.000000 +dualbound = 2920912.784643, lowerbound=1207190.784643, norm of subgrad 1099.341068 dualbound = 2920912.784643, lowerbound=1207190.784643, norm of subgrad 38.433641 stepsize= 1.000000 +dualbound = 2921067.043509, lowerbound=1207687.043509, norm of subgrad 1099.579485 dualbound = 2921067.043509, lowerbound=1207687.043509, norm of subgrad 39.271604 stepsize= 1.000000 +dualbound = 2921206.439260, lowerbound=1210366.439260, norm of subgrad 1100.783557 dualbound = 2921206.439260, lowerbound=1210366.439260, norm of subgrad 38.696198 stepsize= 1.000000 +dualbound = 2921333.042963, lowerbound=1206289.042963, norm of subgrad 1098.950428 dualbound = 2921333.042963, lowerbound=1206289.042963, norm of subgrad 39.110148 stepsize= 1.000000 +dualbound = 2921472.701328, lowerbound=1207592.701328, norm of subgrad 1099.517486 dualbound = 2921472.701328, lowerbound=1207592.701328, norm of subgrad 38.544239 stepsize= 1.000000 +dualbound = 2921596.627932, lowerbound=1205724.627932, norm of subgrad 1098.697696 dualbound = 2921596.627932, lowerbound=1205724.627932, norm of subgrad 39.190900 stepsize= 1.000000 +dualbound = 2921714.414396, lowerbound=1209868.414396, norm of subgrad 1100.590939 dualbound = 2921714.414396, lowerbound=1209868.414396, norm of subgrad 39.367327 stepsize= 1.000000 +dualbound = 2921836.868952, lowerbound=1206186.868952, norm of subgrad 1098.918045 dualbound = 2921836.868952, lowerbound=1206186.868952, norm of subgrad 39.451927 stepsize= 1.000000 +dualbound = 2921999.492490, lowerbound=1213965.492490, norm of subgrad 1102.449769 dualbound = 2921999.492490, lowerbound=1213965.492490, norm of subgrad 39.907688 stepsize= 1.000000 +dualbound = 2922107.906556, lowerbound=1204933.906556, norm of subgrad 1098.339613 dualbound = 2922107.906556, lowerbound=1204933.906556, norm of subgrad 39.043746 stepsize= 1.000000 +dualbound = 2922238.589932, lowerbound=1207224.589932, norm of subgrad 1099.349621 dualbound = 2922238.589932, lowerbound=1207224.589932, norm of subgrad 38.414625 stepsize= 1.000000 +dualbound = 2922408.645692, lowerbound=1204125.645692, norm of subgrad 1097.947925 dualbound = 2922408.645692, lowerbound=1204125.645692, norm of subgrad 39.167024 stepsize= 1.000000 +dualbound = 2922509.387557, lowerbound=1211042.387557, norm of subgrad 1101.066477 dualbound = 2922509.387557, lowerbound=1211042.387557, norm of subgrad 37.493224 stepsize= 1.000000 +dualbound = 2922676.436837, lowerbound=1212055.436837, norm of subgrad 1101.558186 dualbound = 2922676.436837, lowerbound=1212055.436837, norm of subgrad 39.268935 stepsize= 1.000000 +dualbound = 2922776.073103, lowerbound=1210357.073103, norm of subgrad 1100.820636 dualbound = 2922776.073103, lowerbound=1210357.073103, norm of subgrad 39.352716 stepsize= 1.000000 +dualbound = 2922899.993621, lowerbound=1211350.993621, norm of subgrad 1101.282885 dualbound = 2922899.993621, lowerbound=1211350.993621, norm of subgrad 39.961488 stepsize= 1.000000 +dualbound = 2923044.648539, lowerbound=1206831.648539, norm of subgrad 1099.192271 dualbound = 2923044.648539, lowerbound=1206831.648539, norm of subgrad 39.200190 stepsize= 1.000000 +dualbound = 2923175.289644, lowerbound=1209226.289644, norm of subgrad 1100.294638 dualbound = 2923175.289644, lowerbound=1209226.289644, norm of subgrad 39.403567 stepsize= 1.000000 +dualbound = 2923304.436150, lowerbound=1206679.436150, norm of subgrad 1099.155783 dualbound = 2923304.436150, lowerbound=1206679.436150, norm of subgrad 39.914239 stepsize= 1.000000 +dualbound = 2923427.149095, lowerbound=1209497.149095, norm of subgrad 1100.416353 dualbound = 2923427.149095, lowerbound=1209497.149095, norm of subgrad 39.264653 stepsize= 1.000000 +dualbound = 2923568.273803, lowerbound=1210560.273803, norm of subgrad 1100.876593 dualbound = 2923568.273803, lowerbound=1210560.273803, norm of subgrad 38.860323 stepsize= 1.000000 +dualbound = 2923717.300002, lowerbound=1205840.300002, norm of subgrad 1098.747150 dualbound = 2923717.300002, lowerbound=1205840.300002, norm of subgrad 39.421139 stepsize= 1.000000 +dualbound = 2923843.191221, lowerbound=1209611.191221, norm of subgrad 1100.433638 dualbound = 2923843.191221, lowerbound=1209611.191221, norm of subgrad 38.326117 stepsize= 1.000000 +dualbound = 2923997.460510, lowerbound=1203659.460510, norm of subgrad 1097.714654 dualbound = 2923997.460510, lowerbound=1203659.460510, norm of subgrad 38.370161 stepsize= 1.000000 +dualbound = 2924111.185624, lowerbound=1207227.185624, norm of subgrad 1099.377181 dualbound = 2924111.185624, lowerbound=1207227.185624, norm of subgrad 38.945155 stepsize= 1.000000 +dualbound = 2924227.625869, lowerbound=1203797.625869, norm of subgrad 1097.805823 dualbound = 2924227.625869, lowerbound=1203797.625869, norm of subgrad 38.683850 stepsize= 1.000000 +dualbound = 2924395.689963, lowerbound=1210391.689963, norm of subgrad 1100.825004 dualbound = 2924395.689963, lowerbound=1210391.689963, norm of subgrad 39.900678 stepsize= 1.000000 +dualbound = 2924478.030545, lowerbound=1208750.030545, norm of subgrad 1100.069557 dualbound = 2924478.030545, lowerbound=1208750.030545, norm of subgrad 38.540117 stepsize= 1.000000 +dualbound = 2924650.755028, lowerbound=1207692.755028, norm of subgrad 1099.578444 dualbound = 2924650.755028, lowerbound=1207692.755028, norm of subgrad 39.404625 stepsize= 1.000000 +dualbound = 2924779.024119, lowerbound=1209539.024119, norm of subgrad 1100.428109 dualbound = 2924779.024119, lowerbound=1209539.024119, norm of subgrad 39.131434 stepsize= 1.000000 +dualbound = 2924905.259161, lowerbound=1205153.259161, norm of subgrad 1098.464956 dualbound = 2924905.259161, lowerbound=1205153.259161, norm of subgrad 39.977932 stepsize= 1.000000 +dualbound = 2925040.399806, lowerbound=1207773.399806, norm of subgrad 1099.625118 dualbound = 2925040.399806, lowerbound=1207773.399806, norm of subgrad 39.206385 stepsize= 1.000000 +dualbound = 2925165.202212, lowerbound=1208261.202212, norm of subgrad 1099.872812 dualbound = 2925165.202212, lowerbound=1208261.202212, norm of subgrad 39.797015 stepsize= 1.000000 +dualbound = 2925319.538828, lowerbound=1204590.538828, norm of subgrad 1098.157338 dualbound = 2925319.538828, lowerbound=1204590.538828, norm of subgrad 38.901627 stepsize= 1.000000 +dualbound = 2925447.766860, lowerbound=1206682.766860, norm of subgrad 1099.133644 dualbound = 2925447.766860, lowerbound=1206682.766860, norm of subgrad 39.245739 stepsize= 1.000000 +dualbound = 2925574.141513, lowerbound=1211303.141513, norm of subgrad 1101.234372 dualbound = 2925574.141513, lowerbound=1211303.141513, norm of subgrad 39.247607 stepsize= 1.000000 +dualbound = 2925700.953864, lowerbound=1210095.953864, norm of subgrad 1100.690671 dualbound = 2925700.953864, lowerbound=1210095.953864, norm of subgrad 39.380355 stepsize= 1.000000 +dualbound = 2925824.114906, lowerbound=1209160.114906, norm of subgrad 1100.249115 dualbound = 2925824.114906, lowerbound=1209160.114906, norm of subgrad 38.873655 stepsize= 1.000000 +dualbound = 2925986.735069, lowerbound=1207917.735069, norm of subgrad 1099.670739 dualbound = 2925986.735069, lowerbound=1207917.735069, norm of subgrad 38.995130 stepsize= 1.000000 +dualbound = 2926116.374175, lowerbound=1204692.374175, norm of subgrad 1098.207801 dualbound = 2926116.374175, lowerbound=1204692.374175, norm of subgrad 38.699342 stepsize= 1.000000 +dualbound = 2926231.946275, lowerbound=1208741.946275, norm of subgrad 1100.067701 dualbound = 2926231.946275, lowerbound=1208741.946275, norm of subgrad 39.020150 stepsize= 1.000000 +dualbound = 2926364.681323, lowerbound=1212230.681323, norm of subgrad 1101.624565 dualbound = 2926364.681323, lowerbound=1212230.681323, norm of subgrad 38.454324 stepsize= 1.000000 +dualbound = 2926501.553742, lowerbound=1207404.553742, norm of subgrad 1099.455572 dualbound = 2926501.553742, lowerbound=1207404.553742, norm of subgrad 39.177448 stepsize= 1.000000 +dualbound = 2926604.252000, lowerbound=1210114.252000, norm of subgrad 1100.686718 dualbound = 2926604.252000, lowerbound=1210114.252000, norm of subgrad 38.725938 stepsize= 1.000000 +dualbound = 2926786.123137, lowerbound=1209085.123137, norm of subgrad 1100.188222 dualbound = 2926786.123137, lowerbound=1209085.123137, norm of subgrad 38.869926 stepsize= 1.000000 +dualbound = 2926893.003919, lowerbound=1208301.003919, norm of subgrad 1099.867721 dualbound = 2926893.003919, lowerbound=1208301.003919, norm of subgrad 38.921469 stepsize= 1.000000 +dualbound = 2927020.852014, lowerbound=1208995.852014, norm of subgrad 1100.194915 dualbound = 2927020.852014, lowerbound=1208995.852014, norm of subgrad 39.507570 stepsize= 1.000000 +dualbound = 2927173.131289, lowerbound=1203930.131289, norm of subgrad 1097.860251 dualbound = 2927173.131289, lowerbound=1203930.131289, norm of subgrad 38.977933 stepsize= 1.000000 +dualbound = 2927284.225943, lowerbound=1209287.225943, norm of subgrad 1100.327781 dualbound = 2927284.225943, lowerbound=1209287.225943, norm of subgrad 39.307692 stepsize= 1.000000 +dualbound = 2927424.111471, lowerbound=1205983.111471, norm of subgrad 1098.815322 dualbound = 2927424.111471, lowerbound=1205983.111471, norm of subgrad 39.393978 stepsize= 1.000000 +dualbound = 2927565.295473, lowerbound=1207038.295473, norm of subgrad 1099.273986 dualbound = 2927565.295473, lowerbound=1207038.295473, norm of subgrad 38.809586 stepsize= 1.000000 +dualbound = 2927688.863620, lowerbound=1211129.863620, norm of subgrad 1101.155240 dualbound = 2927688.863620, lowerbound=1211129.863620, norm of subgrad 39.199083 stepsize= 1.000000 +dualbound = 2927839.270059, lowerbound=1209564.270059, norm of subgrad 1100.422314 dualbound = 2927839.270059, lowerbound=1209564.270059, norm of subgrad 38.928222 stepsize= 1.000000 +dualbound = 2927968.911591, lowerbound=1211837.911591, norm of subgrad 1101.460808 dualbound = 2927968.911591, lowerbound=1211837.911591, norm of subgrad 38.828360 stepsize= 1.000000 +dualbound = 2928101.634258, lowerbound=1202805.634258, norm of subgrad 1097.359847 dualbound = 2928101.634258, lowerbound=1202805.634258, norm of subgrad 39.060500 stepsize= 1.000000 +dualbound = 2928224.891161, lowerbound=1208379.891161, norm of subgrad 1099.874489 dualbound = 2928224.891161, lowerbound=1208379.891161, norm of subgrad 38.304790 stepsize= 1.000000 +dualbound = 2928362.937409, lowerbound=1211537.937409, norm of subgrad 1101.328261 dualbound = 2928362.937409, lowerbound=1211537.937409, norm of subgrad 39.039035 stepsize= 1.000000 +dualbound = 2928471.520466, lowerbound=1208755.520466, norm of subgrad 1100.028873 dualbound = 2928471.520466, lowerbound=1208755.520466, norm of subgrad 37.637522 stepsize= 1.000000 +dualbound = 2928637.008109, lowerbound=1210881.008109, norm of subgrad 1101.023618 dualbound = 2928637.008109, lowerbound=1210881.008109, norm of subgrad 39.210810 stepsize= 1.000000 +dualbound = 2928731.071196, lowerbound=1207957.071196, norm of subgrad 1099.744094 dualbound = 2928731.071196, lowerbound=1207957.071196, norm of subgrad 39.674464 stepsize= 1.000000 +dualbound = 2928859.595931, lowerbound=1211101.595931, norm of subgrad 1101.163292 dualbound = 2928859.595931, lowerbound=1211101.595931, norm of subgrad 39.843754 stepsize= 1.000000 +dualbound = 2928983.642317, lowerbound=1210524.642317, norm of subgrad 1100.889478 dualbound = 2928983.642317, lowerbound=1210524.642317, norm of subgrad 39.459427 stepsize= 1.000000 +dualbound = 2929145.490937, lowerbound=1209462.490937, norm of subgrad 1100.375159 dualbound = 2929145.490937, lowerbound=1209462.490937, norm of subgrad 39.049310 stepsize= 1.000000 +dualbound = 2929274.329620, lowerbound=1210121.329620, norm of subgrad 1100.683574 dualbound = 2929274.329620, lowerbound=1210121.329620, norm of subgrad 38.882370 stepsize= 1.000000 +dualbound = 2929426.878681, lowerbound=1203629.878681, norm of subgrad 1097.743995 dualbound = 2929426.878681, lowerbound=1203629.878681, norm of subgrad 39.554381 stepsize= 1.000000 +dualbound = 2929555.818967, lowerbound=1211031.818967, norm of subgrad 1101.087108 dualbound = 2929555.818967, lowerbound=1211031.818967, norm of subgrad 38.599745 stepsize= 1.000000 +dualbound = 2929675.756918, lowerbound=1208436.756918, norm of subgrad 1099.924432 dualbound = 2929675.756918, lowerbound=1208436.756918, norm of subgrad 38.947888 stepsize= 1.000000 +dualbound = 2929799.715245, lowerbound=1212556.715245, norm of subgrad 1101.780702 dualbound = 2929799.715245, lowerbound=1212556.715245, norm of subgrad 38.574063 stepsize= 1.000000 +dualbound = 2929943.860189, lowerbound=1206021.860189, norm of subgrad 1098.810657 dualbound = 2929943.860189, lowerbound=1206021.860189, norm of subgrad 38.821965 stepsize= 1.000000 +dualbound = 2930093.262335, lowerbound=1207975.262335, norm of subgrad 1099.652337 dualbound = 2930093.262335, lowerbound=1207975.262335, norm of subgrad 37.542005 stepsize= 1.000000 +dualbound = 2930196.320557, lowerbound=1211280.320557, norm of subgrad 1101.216745 dualbound = 2930196.320557, lowerbound=1211280.320557, norm of subgrad 38.743493 stepsize= 1.000000 +dualbound = 2930324.630394, lowerbound=1209817.630394, norm of subgrad 1100.568322 dualbound = 2930324.630394, lowerbound=1209817.630394, norm of subgrad 39.513413 stepsize= 1.000000 +dualbound = 2930424.686958, lowerbound=1208011.686958, norm of subgrad 1099.770743 dualbound = 2930424.686958, lowerbound=1208011.686958, norm of subgrad 39.800208 stepsize= 1.000000 +dualbound = 2930587.286088, lowerbound=1205588.286088, norm of subgrad 1098.620174 dualbound = 2930587.286088, lowerbound=1205588.286088, norm of subgrad 39.250467 stepsize= 1.000000 +dualbound = 2930724.716741, lowerbound=1212382.716741, norm of subgrad 1101.700375 dualbound = 2930724.716741, lowerbound=1212382.716741, norm of subgrad 38.709568 stepsize= 1.000000 +dualbound = 2930866.869295, lowerbound=1205610.869295, norm of subgrad 1098.589036 dualbound = 2930866.869295, lowerbound=1205610.869295, norm of subgrad 37.804134 stepsize= 1.000000 +dualbound = 2931001.917289, lowerbound=1211333.917289, norm of subgrad 1101.236540 dualbound = 2931001.917289, lowerbound=1211333.917289, norm of subgrad 39.026247 stepsize= 1.000000 +dualbound = 2931112.504327, lowerbound=1207998.504327, norm of subgrad 1099.754293 dualbound = 2931112.504327, lowerbound=1207998.504327, norm of subgrad 39.643247 stepsize= 1.000000 +dualbound = 2931218.387362, lowerbound=1208721.387362, norm of subgrad 1100.043357 dualbound = 2931218.387362, lowerbound=1208721.387362, norm of subgrad 38.469248 stepsize= 1.000000 +dualbound = 2931394.167580, lowerbound=1212094.167580, norm of subgrad 1101.572135 dualbound = 2931394.167580, lowerbound=1212094.167580, norm of subgrad 39.278241 stepsize= 1.000000 +dualbound = 2931520.078223, lowerbound=1208366.078223, norm of subgrad 1099.908214 dualbound = 2931520.078223, lowerbound=1208366.078223, norm of subgrad 39.470377 stepsize= 1.000000 +dualbound = 2931621.148418, lowerbound=1207795.148418, norm of subgrad 1099.636826 dualbound = 2931621.148418, lowerbound=1207795.148418, norm of subgrad 38.821002 stepsize= 1.000000 +dualbound = 2931770.336680, lowerbound=1209852.336680, norm of subgrad 1100.537749 dualbound = 2931770.336680, lowerbound=1209852.336680, norm of subgrad 38.473215 stepsize= 1.000000 +dualbound = 2931921.442882, lowerbound=1207725.442882, norm of subgrad 1099.569208 dualbound = 2931921.442882, lowerbound=1207725.442882, norm of subgrad 38.446147 stepsize= 1.000000 +dualbound = 2932045.949216, lowerbound=1211536.949216, norm of subgrad 1101.326450 dualbound = 2932045.949216, lowerbound=1211536.949216, norm of subgrad 38.826619 stepsize= 1.000000 +dualbound = 2932165.889759, lowerbound=1207884.889759, norm of subgrad 1099.652622 dualbound = 2932165.889759, lowerbound=1207884.889759, norm of subgrad 38.352843 stepsize= 1.000000 +dualbound = 2932312.419173, lowerbound=1207624.419173, norm of subgrad 1099.562831 dualbound = 2932312.419173, lowerbound=1207624.419173, norm of subgrad 39.503537 stepsize= 1.000000 +dualbound = 2932411.702253, lowerbound=1206653.702253, norm of subgrad 1099.129975 dualbound = 2932411.702253, lowerbound=1206653.702253, norm of subgrad 39.144388 stepsize= 1.000000 +dualbound = 2932543.457187, lowerbound=1204313.457187, norm of subgrad 1098.087636 dualbound = 2932543.457187, lowerbound=1204313.457187, norm of subgrad 40.184013 stepsize= 1.000000 +dualbound = 2932675.081645, lowerbound=1211489.081645, norm of subgrad 1101.304264 dualbound = 2932675.081645, lowerbound=1211489.081645, norm of subgrad 38.905327 stepsize= 1.000000 +dualbound = 2932859.874537, lowerbound=1210289.874537, norm of subgrad 1100.761043 dualbound = 2932859.874537, lowerbound=1210289.874537, norm of subgrad 39.620612 stepsize= 1.000000 +dualbound = 2932955.172052, lowerbound=1211462.172052, norm of subgrad 1101.327459 dualbound = 2932955.172052, lowerbound=1211462.172052, norm of subgrad 39.437260 stepsize= 1.000000 +dualbound = 2933064.648853, lowerbound=1209167.648853, norm of subgrad 1100.260264 dualbound = 2933064.648853, lowerbound=1209167.648853, norm of subgrad 38.916279 stepsize= 1.000000 +dualbound = 2933226.254354, lowerbound=1206680.254354, norm of subgrad 1099.127952 dualbound = 2933226.254354, lowerbound=1206680.254354, norm of subgrad 39.542452 stepsize= 1.000000 +dualbound = 2933343.658046, lowerbound=1213422.658046, norm of subgrad 1102.193567 dualbound = 2933343.658046, lowerbound=1213422.658046, norm of subgrad 39.056417 stepsize= 1.000000 +dualbound = 2933485.469163, lowerbound=1206114.469163, norm of subgrad 1098.839146 dualbound = 2933485.469163, lowerbound=1206114.469163, norm of subgrad 38.403270 stepsize= 1.000000 +dualbound = 2933650.965537, lowerbound=1211718.965537, norm of subgrad 1101.387291 dualbound = 2933650.965537, lowerbound=1211718.965537, norm of subgrad 38.736241 stepsize= 1.000000 +dualbound = 2933772.652601, lowerbound=1210281.652601, norm of subgrad 1100.747770 dualbound = 2933772.652601, lowerbound=1210281.652601, norm of subgrad 38.544611 stepsize= 1.000000 +dualbound = 2933891.138927, lowerbound=1211338.138927, norm of subgrad 1101.244813 dualbound = 2933891.138927, lowerbound=1211338.138927, norm of subgrad 38.993414 stepsize= 1.000000 +dualbound = 2933992.310332, lowerbound=1212469.310332, norm of subgrad 1101.767811 dualbound = 2933992.310332, lowerbound=1212469.310332, norm of subgrad 39.040638 stepsize= 1.000000 +dualbound = 2934122.354915, lowerbound=1207166.354915, norm of subgrad 1099.349969 dualbound = 2934122.354915, lowerbound=1207166.354915, norm of subgrad 39.166881 stepsize= 1.000000 +dualbound = 2934276.437980, lowerbound=1210177.437980, norm of subgrad 1100.699522 dualbound = 2934276.437980, lowerbound=1210177.437980, norm of subgrad 38.936911 stepsize= 1.000000 +dualbound = 2934395.115731, lowerbound=1204433.115731, norm of subgrad 1098.090668 dualbound = 2934395.115731, lowerbound=1204433.115731, norm of subgrad 38.583387 stepsize= 1.000000 +dualbound = 2934548.071411, lowerbound=1212988.071411, norm of subgrad 1101.993680 dualbound = 2934548.071411, lowerbound=1212988.071411, norm of subgrad 39.432926 stepsize= 1.000000 +dualbound = 2934663.325928, lowerbound=1206771.325928, norm of subgrad 1099.163012 dualbound = 2934663.325928, lowerbound=1206771.325928, norm of subgrad 38.771826 stepsize= 1.000000 +dualbound = 2934778.669139, lowerbound=1208451.669139, norm of subgrad 1099.943485 dualbound = 2934778.669139, lowerbound=1208451.669139, norm of subgrad 39.234465 stepsize= 1.000000 +dualbound = 2934927.298044, lowerbound=1215765.298044, norm of subgrad 1103.259851 dualbound = 2934927.298044, lowerbound=1215765.298044, norm of subgrad 39.568029 stepsize= 1.000000 +dualbound = 2935054.086688, lowerbound=1206115.086688, norm of subgrad 1098.877649 dualbound = 2935054.086688, lowerbound=1206115.086688, norm of subgrad 39.291076 stepsize= 1.000000 +dualbound = 2935157.697659, lowerbound=1209910.697659, norm of subgrad 1100.616508 dualbound = 2935157.697659, lowerbound=1209910.697659, norm of subgrad 39.365098 stepsize= 1.000000 +dualbound = 2935323.412393, lowerbound=1208284.412393, norm of subgrad 1099.856087 dualbound = 2935323.412393, lowerbound=1208284.412393, norm of subgrad 39.556475 stepsize= 1.000000 +dualbound = 2935439.949630, lowerbound=1211054.949630, norm of subgrad 1101.103060 dualbound = 2935439.949630, lowerbound=1211054.949630, norm of subgrad 38.594523 stepsize= 1.000000 +dualbound = 2935586.744125, lowerbound=1209013.744125, norm of subgrad 1100.170780 dualbound = 2935586.744125, lowerbound=1209013.744125, norm of subgrad 38.843204 stepsize= 1.000000 +dualbound = 2935716.476728, lowerbound=1210474.476728, norm of subgrad 1100.850797 dualbound = 2935716.476728, lowerbound=1210474.476728, norm of subgrad 39.086220 stepsize= 1.000000 +dualbound = 2935845.176705, lowerbound=1212913.176705, norm of subgrad 1101.959245 dualbound = 2935845.176705, lowerbound=1212913.176705, norm of subgrad 39.111379 stepsize= 1.000000 +dualbound = 2935964.934508, lowerbound=1207788.934508, norm of subgrad 1099.602626 dualbound = 2935964.934508, lowerbound=1207788.934508, norm of subgrad 38.167497 stepsize= 1.000000 +dualbound = 2936133.336587, lowerbound=1211454.336587, norm of subgrad 1101.318908 dualbound = 2936133.336587, lowerbound=1211454.336587, norm of subgrad 40.216938 stepsize= 1.000000 +dualbound = 2936174.165291, lowerbound=1211292.165291, norm of subgrad 1101.248004 dualbound = 2936174.165291, lowerbound=1211292.165291, norm of subgrad 38.675945 stepsize= 1.000000 +dualbound = 2936365.868813, lowerbound=1206995.868813, norm of subgrad 1099.266514 dualbound = 2936365.868813, lowerbound=1206995.868813, norm of subgrad 39.783207 stepsize= 1.000000 +dualbound = 2936484.495641, lowerbound=1210735.495641, norm of subgrad 1101.002042 dualbound = 2936484.495641, lowerbound=1210735.495641, norm of subgrad 39.857582 stepsize= 1.000000 +dualbound = 2936597.208907, lowerbound=1210252.208907, norm of subgrad 1100.770280 dualbound = 2936597.208907, lowerbound=1210252.208907, norm of subgrad 39.442531 stepsize= 1.000000 +dualbound = 2936763.378590, lowerbound=1210503.378590, norm of subgrad 1100.855294 dualbound = 2936763.378590, lowerbound=1210503.378590, norm of subgrad 39.308646 stepsize= 1.000000 +dualbound = 2936910.037946, lowerbound=1210882.037946, norm of subgrad 1101.036347 dualbound = 2936910.037946, lowerbound=1210882.037946, norm of subgrad 39.314874 stepsize= 1.000000 +dualbound = 2937020.509916, lowerbound=1207056.509916, norm of subgrad 1099.265896 dualbound = 2937020.509916, lowerbound=1207056.509916, norm of subgrad 37.940374 stepsize= 1.000000 +dualbound = 2937193.537953, lowerbound=1206178.537953, norm of subgrad 1098.885134 dualbound = 2937193.537953, lowerbound=1206178.537953, norm of subgrad 39.281396 stepsize= 1.000000 +dualbound = 2937256.949222, lowerbound=1205415.949222, norm of subgrad 1098.546744 dualbound = 2937256.949222, lowerbound=1205415.949222, norm of subgrad 38.110514 stepsize= 1.000000 +dualbound = 2937448.837792, lowerbound=1211345.837792, norm of subgrad 1101.197456 dualbound = 2937448.837792, lowerbound=1211345.837792, norm of subgrad 38.495306 stepsize= 1.000000 +dualbound = 2937566.283378, lowerbound=1207269.283378, norm of subgrad 1099.398601 dualbound = 2937566.283378, lowerbound=1207269.283378, norm of subgrad 39.056953 stepsize= 1.000000 +dualbound = 2937678.287062, lowerbound=1213693.287062, norm of subgrad 1102.312246 dualbound = 2937678.287062, lowerbound=1213693.287062, norm of subgrad 38.871631 stepsize= 1.000000 +dualbound = 2937818.276688, lowerbound=1208104.276688, norm of subgrad 1099.770556 dualbound = 2937818.276688, lowerbound=1208104.276688, norm of subgrad 39.127863 stepsize= 1.000000 +dualbound = 2937943.785578, lowerbound=1209660.785578, norm of subgrad 1100.473891 dualbound = 2937943.785578, lowerbound=1209660.785578, norm of subgrad 38.826652 stepsize= 1.000000 +dualbound = 2938101.080301, lowerbound=1211252.080301, norm of subgrad 1101.199383 dualbound = 2938101.080301, lowerbound=1211252.080301, norm of subgrad 39.310237 stepsize= 1.000000 +dualbound = 2938197.823241, lowerbound=1213342.823241, norm of subgrad 1102.165969 dualbound = 2938197.823241, lowerbound=1213342.823241, norm of subgrad 39.035150 stepsize= 1.000000 +dualbound = 2938334.672271, lowerbound=1203155.672271, norm of subgrad 1097.533449 dualbound = 2938334.672271, lowerbound=1203155.672271, norm of subgrad 39.507582 stepsize= 1.000000 +dualbound = 2938460.267106, lowerbound=1209467.267106, norm of subgrad 1100.389143 dualbound = 2938460.267106, lowerbound=1209467.267106, norm of subgrad 38.917796 stepsize= 1.000000 +dualbound = 2938593.315838, lowerbound=1212975.315838, norm of subgrad 1102.004680 dualbound = 2938593.315838, lowerbound=1212975.315838, norm of subgrad 39.649070 stepsize= 1.000000 +dualbound = 2938714.204916, lowerbound=1203681.204916, norm of subgrad 1097.786047 dualbound = 2938714.204916, lowerbound=1203681.204916, norm of subgrad 39.672271 stepsize= 1.000000 +dualbound = 2938823.699941, lowerbound=1211539.699941, norm of subgrad 1101.354938 dualbound = 2938823.699941, lowerbound=1211539.699941, norm of subgrad 39.401713 stepsize= 1.000000 +dualbound = 2938999.045535, lowerbound=1206886.045535, norm of subgrad 1099.201094 dualbound = 2938999.045535, lowerbound=1206886.045535, norm of subgrad 39.145186 stepsize= 1.000000 +dualbound = 2939128.055399, lowerbound=1214504.055399, norm of subgrad 1102.683570 dualbound = 2939128.055399, lowerbound=1214504.055399, norm of subgrad 39.191962 stepsize= 1.000000 +dualbound = 2939261.286408, lowerbound=1206942.286408, norm of subgrad 1099.225767 dualbound = 2939261.286408, lowerbound=1206942.286408, norm of subgrad 38.577597 stepsize= 1.000000 +dualbound = 2939416.907463, lowerbound=1212593.907463, norm of subgrad 1101.777159 dualbound = 2939416.907463, lowerbound=1212593.907463, norm of subgrad 38.400795 stepsize= 1.000000 +dualbound = 2939544.991494, lowerbound=1205083.991494, norm of subgrad 1098.411577 dualbound = 2939544.991494, lowerbound=1205083.991494, norm of subgrad 39.396498 stepsize= 1.000000 +dualbound = 2939640.462729, lowerbound=1214829.462729, norm of subgrad 1102.862849 dualbound = 2939640.462729, lowerbound=1214829.462729, norm of subgrad 39.654397 stepsize= 1.000000 +dualbound = 2939765.240556, lowerbound=1208557.240556, norm of subgrad 1099.988746 dualbound = 2939765.240556, lowerbound=1208557.240556, norm of subgrad 39.278211 stepsize= 1.000000 +dualbound = 2939902.052449, lowerbound=1215693.052449, norm of subgrad 1103.240251 dualbound = 2939902.052449, lowerbound=1215693.052449, norm of subgrad 39.784569 stepsize= 1.000000 +dualbound = 2940052.855767, lowerbound=1206123.855767, norm of subgrad 1098.874358 dualbound = 2940052.855767, lowerbound=1206123.855767, norm of subgrad 39.392935 stepsize= 1.000000 +dualbound = 2940192.621321, lowerbound=1211903.621321, norm of subgrad 1101.482011 dualbound = 2940192.621321, lowerbound=1211903.621321, norm of subgrad 38.713894 stepsize= 1.000000 +dualbound = 2940327.086754, lowerbound=1210824.086754, norm of subgrad 1100.994590 dualbound = 2940327.086754, lowerbound=1210824.086754, norm of subgrad 38.722932 stepsize= 1.000000 +dualbound = 2940449.678935, lowerbound=1208117.678935, norm of subgrad 1099.763010 dualbound = 2940449.678935, lowerbound=1208117.678935, norm of subgrad 38.517427 stepsize= 1.000000 +dualbound = 2940590.037018, lowerbound=1208043.037018, norm of subgrad 1099.737713 dualbound = 2940590.037018, lowerbound=1208043.037018, norm of subgrad 38.991769 stepsize= 1.000000 +dualbound = 2940708.523299, lowerbound=1213204.523299, norm of subgrad 1102.094154 dualbound = 2940708.523299, lowerbound=1213204.523299, norm of subgrad 39.057474 stepsize= 1.000000 +dualbound = 2940852.275594, lowerbound=1207979.275594, norm of subgrad 1099.693719 dualbound = 2940852.275594, lowerbound=1207979.275594, norm of subgrad 38.610262 stepsize= 1.000000 +dualbound = 2940961.935692, lowerbound=1213910.935692, norm of subgrad 1102.401894 dualbound = 2940961.935692, lowerbound=1213910.935692, norm of subgrad 38.583158 stepsize= 1.000000 +dualbound = 2941098.689537, lowerbound=1207798.689537, norm of subgrad 1099.604788 dualbound = 2941098.689537, lowerbound=1207798.689537, norm of subgrad 38.324324 stepsize= 1.000000 +dualbound = 2941254.022735, lowerbound=1210768.022735, norm of subgrad 1100.957775 dualbound = 2941254.022735, lowerbound=1210768.022735, norm of subgrad 38.669538 stepsize= 1.000000 +dualbound = 2941367.153532, lowerbound=1210412.153532, norm of subgrad 1100.817947 dualbound = 2941367.153532, lowerbound=1210412.153532, norm of subgrad 38.744429 stepsize= 1.000000 +dualbound = 2941481.116708, lowerbound=1214235.116708, norm of subgrad 1102.577488 dualbound = 2941481.116708, lowerbound=1214235.116708, norm of subgrad 39.445699 stepsize= 1.000000 +dualbound = 2941589.606710, lowerbound=1208157.606710, norm of subgrad 1099.784800 dualbound = 2941589.606710, lowerbound=1208157.606710, norm of subgrad 38.438132 stepsize= 1.000000 +dualbound = 2941752.418779, lowerbound=1206251.418779, norm of subgrad 1098.902370 dualbound = 2941752.418779, lowerbound=1206251.418779, norm of subgrad 38.701577 stepsize= 1.000000 +dualbound = 2941889.011600, lowerbound=1209000.011600, norm of subgrad 1100.156358 dualbound = 2941889.011600, lowerbound=1209000.011600, norm of subgrad 38.478472 stepsize= 1.000000 +dualbound = 2942035.535895, lowerbound=1213309.535895, norm of subgrad 1102.120472 dualbound = 2942035.535895, lowerbound=1213309.535895, norm of subgrad 38.813970 stepsize= 1.000000 +dualbound = 2942127.513860, lowerbound=1209227.513860, norm of subgrad 1100.313371 dualbound = 2942127.513860, lowerbound=1209227.513860, norm of subgrad 39.420527 stepsize= 1.000000 +dualbound = 2942233.018200, lowerbound=1212550.018200, norm of subgrad 1101.828035 dualbound = 2942233.018200, lowerbound=1212550.018200, norm of subgrad 39.755557 stepsize= 1.000000 +dualbound = 2942399.308578, lowerbound=1210844.308578, norm of subgrad 1101.020576 dualbound = 2942399.308578, lowerbound=1210844.308578, norm of subgrad 39.601646 stepsize= 1.000000 +dualbound = 2942531.532749, lowerbound=1213187.532749, norm of subgrad 1102.086899 dualbound = 2942531.532749, lowerbound=1213187.532749, norm of subgrad 39.245690 stepsize= 1.000000 +dualbound = 2942684.371540, lowerbound=1206589.371540, norm of subgrad 1099.067046 dualbound = 2942684.371540, lowerbound=1206589.371540, norm of subgrad 38.882371 stepsize= 1.000000 +dualbound = 2942793.766164, lowerbound=1207696.766164, norm of subgrad 1099.577540 dualbound = 2942793.766164, lowerbound=1207696.766164, norm of subgrad 38.514862 stepsize= 1.000000 +dualbound = 2942930.917057, lowerbound=1210856.917057, norm of subgrad 1101.042196 dualbound = 2942930.917057, lowerbound=1210856.917057, norm of subgrad 39.675570 stepsize= 1.000000 +dualbound = 2943049.845491, lowerbound=1209587.845491, norm of subgrad 1100.451655 dualbound = 2943049.845491, lowerbound=1209587.845491, norm of subgrad 39.050332 stepsize= 1.000000 +dualbound = 2943197.749117, lowerbound=1212092.749117, norm of subgrad 1101.572852 dualbound = 2943197.749117, lowerbound=1212092.749117, norm of subgrad 38.960283 stepsize= 1.000000 +dualbound = 2943325.769526, lowerbound=1205604.769526, norm of subgrad 1098.623580 dualbound = 2943325.769526, lowerbound=1205604.769526, norm of subgrad 38.691348 stepsize= 1.000000 +dualbound = 2943455.596627, lowerbound=1206740.596627, norm of subgrad 1099.144939 dualbound = 2943455.596627, lowerbound=1206740.596627, norm of subgrad 38.843624 stepsize= 1.000000 +dualbound = 2943590.804951, lowerbound=1215021.804951, norm of subgrad 1102.904259 dualbound = 2943590.804951, lowerbound=1215021.804951, norm of subgrad 38.874263 stepsize= 1.000000 +dualbound = 2943710.522914, lowerbound=1208211.522914, norm of subgrad 1099.824769 dualbound = 2943710.522914, lowerbound=1208211.522914, norm of subgrad 39.022019 stepsize= 1.000000 +dualbound = 2943825.096756, lowerbound=1210463.096756, norm of subgrad 1100.862433 dualbound = 2943825.096756, lowerbound=1210463.096756, norm of subgrad 39.364627 stepsize= 1.000000 +dualbound = 2943974.039566, lowerbound=1208158.039566, norm of subgrad 1099.799545 dualbound = 2943974.039566, lowerbound=1208158.039566, norm of subgrad 39.369313 stepsize= 1.000000 +dualbound = 2944109.486389, lowerbound=1212686.486389, norm of subgrad 1101.806465 dualbound = 2944109.486389, lowerbound=1212686.486389, norm of subgrad 37.768331 stepsize= 1.000000 +dualbound = 2944254.794555, lowerbound=1211576.794555, norm of subgrad 1101.330920 dualbound = 2944254.794555, lowerbound=1211576.794555, norm of subgrad 38.707986 stepsize= 1.000000 +dualbound = 2944345.635671, lowerbound=1212146.635671, norm of subgrad 1101.618190 dualbound = 2944345.635671, lowerbound=1212146.635671, norm of subgrad 38.818051 stepsize= 1.000000 +dualbound = 2944492.775093, lowerbound=1212022.775093, norm of subgrad 1101.541091 dualbound = 2944492.775093, lowerbound=1212022.775093, norm of subgrad 38.950474 stepsize= 1.000000 +dualbound = 2944612.572998, lowerbound=1208911.572998, norm of subgrad 1100.137070 dualbound = 2944612.572998, lowerbound=1208911.572998, norm of subgrad 38.856118 stepsize= 1.000000 +dualbound = 2944747.269670, lowerbound=1208653.269670, norm of subgrad 1100.002395 dualbound = 2944747.269670, lowerbound=1208653.269670, norm of subgrad 38.557706 stepsize= 1.000000 +dualbound = 2944885.103764, lowerbound=1208794.103764, norm of subgrad 1100.064591 dualbound = 2944885.103764, lowerbound=1208794.103764, norm of subgrad 38.546519 stepsize= 1.000000 +dualbound = 2945024.340783, lowerbound=1207900.340783, norm of subgrad 1099.682382 dualbound = 2945024.340783, lowerbound=1207900.340783, norm of subgrad 39.245854 stepsize= 1.000000 +dualbound = 2945125.476629, lowerbound=1216686.476629, norm of subgrad 1103.675893 dualbound = 2945125.476629, lowerbound=1216686.476629, norm of subgrad 38.924746 stepsize= 1.000000 +dualbound = 2945261.963730, lowerbound=1209391.963730, norm of subgrad 1100.360379 dualbound = 2945261.963730, lowerbound=1209391.963730, norm of subgrad 39.210803 stepsize= 1.000000 +dualbound = 2945392.810899, lowerbound=1211483.810899, norm of subgrad 1101.310497 dualbound = 2945392.810899, lowerbound=1211483.810899, norm of subgrad 39.138819 stepsize= 1.000000 +dualbound = 2945535.650145, lowerbound=1216996.650145, norm of subgrad 1103.764309 dualbound = 2945535.650145, lowerbound=1216996.650145, norm of subgrad 37.971558 stepsize= 1.000000 +dualbound = 2945680.086114, lowerbound=1209827.086114, norm of subgrad 1100.557171 dualbound = 2945680.086114, lowerbound=1209827.086114, norm of subgrad 39.286588 stepsize= 1.000000 +dualbound = 2945767.108652, lowerbound=1208660.108652, norm of subgrad 1100.034140 dualbound = 2945767.108652, lowerbound=1208660.108652, norm of subgrad 38.755936 stepsize= 1.000000 +dualbound = 2945921.091145, lowerbound=1207677.091145, norm of subgrad 1099.569048 dualbound = 2945921.091145, lowerbound=1207677.091145, norm of subgrad 39.102206 stepsize= 1.000000 +dualbound = 2946060.404143, lowerbound=1208404.404143, norm of subgrad 1099.928363 dualbound = 2946060.404143, lowerbound=1208404.404143, norm of subgrad 39.715400 stepsize= 1.000000 +dualbound = 2946163.900013, lowerbound=1210241.900013, norm of subgrad 1100.755150 dualbound = 2946163.900013, lowerbound=1210241.900013, norm of subgrad 39.031985 stepsize= 1.000000 +dualbound = 2946301.108830, lowerbound=1213975.108830, norm of subgrad 1102.448688 dualbound = 2946301.108830, lowerbound=1213975.108830, norm of subgrad 39.436136 stepsize= 1.000000 +dualbound = 2946424.616129, lowerbound=1208399.616129, norm of subgrad 1099.918913 dualbound = 2946424.616129, lowerbound=1208399.616129, norm of subgrad 39.312941 stepsize= 1.000000 +dualbound = 2946566.861299, lowerbound=1211339.861299, norm of subgrad 1101.201099 dualbound = 2946566.861299, lowerbound=1211339.861299, norm of subgrad 38.029530 stepsize= 1.000000 +dualbound = 2946724.180214, lowerbound=1211431.180214, norm of subgrad 1101.281608 dualbound = 2946724.180214, lowerbound=1211431.180214, norm of subgrad 39.335975 stepsize= 1.000000 +dualbound = 2946804.918218, lowerbound=1210661.918218, norm of subgrad 1100.916399 dualbound = 2946804.918218, lowerbound=1210661.918218, norm of subgrad 37.891134 stepsize= 1.000000 +dualbound = 2946970.026516, lowerbound=1207784.026516, norm of subgrad 1099.587662 dualbound = 2946970.026516, lowerbound=1207784.026516, norm of subgrad 38.394118 stepsize= 1.000000 +dualbound = 2947078.156093, lowerbound=1211870.156093, norm of subgrad 1101.477715 dualbound = 2947078.156093, lowerbound=1211870.156093, norm of subgrad 38.615147 stepsize= 1.000000 +dualbound = 2947207.728241, lowerbound=1209066.728241, norm of subgrad 1100.206675 dualbound = 2947207.728241, lowerbound=1209066.728241, norm of subgrad 38.956028 stepsize= 1.000000 +dualbound = 2947337.546022, lowerbound=1214118.546022, norm of subgrad 1102.493785 dualbound = 2947337.546022, lowerbound=1214118.546022, norm of subgrad 38.779089 stepsize= 1.000000 +dualbound = 2947472.927627, lowerbound=1208883.927627, norm of subgrad 1100.137231 dualbound = 2947472.927627, lowerbound=1208883.927627, norm of subgrad 39.412962 stepsize= 1.000000 +dualbound = 2947596.598521, lowerbound=1212219.598521, norm of subgrad 1101.636328 dualbound = 2947596.598521, lowerbound=1212219.598521, norm of subgrad 38.815859 stepsize= 1.000000 +dualbound = 2947725.662440, lowerbound=1213455.662440, norm of subgrad 1102.212621 dualbound = 2947725.662440, lowerbound=1213455.662440, norm of subgrad 39.320019 stepsize= 1.000000 +dualbound = 2947866.124950, lowerbound=1211108.124950, norm of subgrad 1101.145370 dualbound = 2947866.124950, lowerbound=1211108.124950, norm of subgrad 39.413989 stepsize= 1.000000 +dualbound = 2947971.039181, lowerbound=1212056.039181, norm of subgrad 1101.578885 dualbound = 2947971.039181, lowerbound=1212056.039181, norm of subgrad 39.050150 stepsize= 1.000000 +dualbound = 2948131.081719, lowerbound=1210639.081719, norm of subgrad 1100.912840 dualbound = 2948131.081719, lowerbound=1210639.081719, norm of subgrad 39.115758 stepsize= 1.000000 +dualbound = 2948273.111946, lowerbound=1215114.111946, norm of subgrad 1102.935226 dualbound = 2948273.111946, lowerbound=1215114.111946, norm of subgrad 38.652687 stepsize= 1.000000 +dualbound = 2948402.988961, lowerbound=1204174.988961, norm of subgrad 1097.942161 dualbound = 2948402.988961, lowerbound=1204174.988961, norm of subgrad 37.840151 stepsize= 1.000000 +dualbound = 2948542.036169, lowerbound=1209786.036169, norm of subgrad 1100.502629 dualbound = 2948542.036169, lowerbound=1209786.036169, norm of subgrad 38.197476 stepsize= 1.000000 +dualbound = 2948659.307094, lowerbound=1213227.307094, norm of subgrad 1102.110388 dualbound = 2948659.307094, lowerbound=1213227.307094, norm of subgrad 39.208047 stepsize= 1.000000 +dualbound = 2948778.829349, lowerbound=1209719.829349, norm of subgrad 1100.517074 dualbound = 2948778.829349, lowerbound=1209719.829349, norm of subgrad 39.211252 stepsize= 1.000000 +dualbound = 2948909.823020, lowerbound=1205830.823020, norm of subgrad 1098.733736 dualbound = 2948909.823020, lowerbound=1205830.823020, norm of subgrad 38.935763 stepsize= 1.000000 +dualbound = 2949065.567956, lowerbound=1214633.567956, norm of subgrad 1102.722344 dualbound = 2949065.567956, lowerbound=1214633.567956, norm of subgrad 38.971078 stepsize= 1.000000 +dualbound = 2949173.671748, lowerbound=1210310.671748, norm of subgrad 1100.806828 dualbound = 2949173.671748, lowerbound=1210310.671748, norm of subgrad 39.662372 stepsize= 1.000000 +dualbound = 2949279.007909, lowerbound=1215575.007909, norm of subgrad 1103.168168 dualbound = 2949279.007909, lowerbound=1215575.007909, norm of subgrad 38.863044 stepsize= 1.000000 +dualbound = 2949438.005633, lowerbound=1206722.005633, norm of subgrad 1099.118286 dualbound = 2949438.005633, lowerbound=1206722.005633, norm of subgrad 38.703976 stepsize= 1.000000 +dualbound = 2949557.516593, lowerbound=1217970.516593, norm of subgrad 1104.255186 dualbound = 2949557.516593, lowerbound=1217970.516593, norm of subgrad 39.096176 stepsize= 1.000000 +dualbound = 2949675.952562, lowerbound=1205884.952562, norm of subgrad 1098.783397 dualbound = 2949675.952562, lowerbound=1205884.952562, norm of subgrad 39.477031 stepsize= 1.000000 +dualbound = 2949790.688900, lowerbound=1213126.688900, norm of subgrad 1102.039332 dualbound = 2949790.688900, lowerbound=1213126.688900, norm of subgrad 38.454341 stepsize= 1.000000 +dualbound = 2949969.136168, lowerbound=1209994.136168, norm of subgrad 1100.614890 dualbound = 2949969.136168, lowerbound=1209994.136168, norm of subgrad 39.210295 stepsize= 1.000000 +dualbound = 2950075.967860, lowerbound=1210743.967860, norm of subgrad 1100.955480 dualbound = 2950075.967860, lowerbound=1210743.967860, norm of subgrad 38.286181 stepsize= 1.000000 +dualbound = 2950212.882337, lowerbound=1209006.882337, norm of subgrad 1100.196747 dualbound = 2950212.882337, lowerbound=1209006.882337, norm of subgrad 39.533713 stepsize= 1.000000 +dualbound = 2950325.344434, lowerbound=1210541.344434, norm of subgrad 1100.876625 dualbound = 2950325.344434, lowerbound=1210541.344434, norm of subgrad 38.735799 stepsize= 1.000000 +dualbound = 2950485.330941, lowerbound=1209311.330941, norm of subgrad 1100.313742 dualbound = 2950485.330941, lowerbound=1209311.330941, norm of subgrad 39.229919 stepsize= 1.000000 +dualbound = 2950603.041446, lowerbound=1211993.041446, norm of subgrad 1101.502629 dualbound = 2950603.041446, lowerbound=1211993.041446, norm of subgrad 37.851163 stepsize= 1.000000 +dualbound = 2950767.706482, lowerbound=1211421.706482, norm of subgrad 1101.227818 dualbound = 2950767.706482, lowerbound=1211421.706482, norm of subgrad 38.021902 stepsize= 1.000000 +dualbound = 2950879.774915, lowerbound=1208485.774915, norm of subgrad 1099.921713 dualbound = 2950879.774915, lowerbound=1208485.774915, norm of subgrad 38.132249 stepsize= 1.000000 +dualbound = 2951003.736004, lowerbound=1212157.736004, norm of subgrad 1101.599626 dualbound = 2951003.736004, lowerbound=1212157.736004, norm of subgrad 38.574099 stepsize= 1.000000 +dualbound = 2951135.836740, lowerbound=1213366.836740, norm of subgrad 1102.164161 dualbound = 2951135.836740, lowerbound=1213366.836740, norm of subgrad 39.129282 stepsize= 1.000000 +dualbound = 2951230.576502, lowerbound=1209314.576502, norm of subgrad 1100.344753 dualbound = 2951230.576502, lowerbound=1209314.576502, norm of subgrad 39.226774 stepsize= 1.000000 +dualbound = 2951387.594180, lowerbound=1212718.594180, norm of subgrad 1101.833742 dualbound = 2951387.594180, lowerbound=1212718.594180, norm of subgrad 38.418976 stepsize= 1.000000 +dualbound = 2951525.696138, lowerbound=1210270.696138, norm of subgrad 1100.715084 dualbound = 2951525.696138, lowerbound=1210270.696138, norm of subgrad 37.961849 stepsize= 1.000000 +dualbound = 2951658.010520, lowerbound=1210451.010520, norm of subgrad 1100.825604 dualbound = 2951658.010520, lowerbound=1210451.010520, norm of subgrad 38.708066 stepsize= 1.000000 +dualbound = 2951776.445566, lowerbound=1208684.445566, norm of subgrad 1100.037020 dualbound = 2951776.445566, lowerbound=1208684.445566, norm of subgrad 38.928589 stepsize= 1.000000 +dualbound = 2951874.453324, lowerbound=1216585.453324, norm of subgrad 1103.634203 dualbound = 2951874.453324, lowerbound=1216585.453324, norm of subgrad 39.000099 stepsize= 1.000000 +dualbound = 2952019.984096, lowerbound=1207178.984096, norm of subgrad 1099.344343 dualbound = 2952019.984096, lowerbound=1207178.984096, norm of subgrad 39.045240 stepsize= 1.000000 +dualbound = 2952172.875371, lowerbound=1211678.875371, norm of subgrad 1101.399962 dualbound = 2952172.875371, lowerbound=1211678.875371, norm of subgrad 39.444788 stepsize= 1.000000 +dualbound = 2952269.965801, lowerbound=1210954.965801, norm of subgrad 1101.089899 dualbound = 2952269.965801, lowerbound=1210954.965801, norm of subgrad 39.256725 stepsize= 1.000000 +dualbound = 2952422.699835, lowerbound=1210351.699835, norm of subgrad 1100.823192 dualbound = 2952422.699835, lowerbound=1210351.699835, norm of subgrad 40.158860 stepsize= 1.000000 +dualbound = 2952514.058595, lowerbound=1210370.058595, norm of subgrad 1100.822901 dualbound = 2952514.058595, lowerbound=1210370.058595, norm of subgrad 39.145354 stepsize= 1.000000 +dualbound = 2952688.085197, lowerbound=1214105.085197, norm of subgrad 1102.505821 dualbound = 2952688.085197, lowerbound=1214105.085197, norm of subgrad 39.850051 stepsize= 1.000000 +dualbound = 2952793.596824, lowerbound=1212760.596824, norm of subgrad 1101.888650 dualbound = 2952793.596824, lowerbound=1212760.596824, norm of subgrad 38.775142 stepsize= 1.000000 +dualbound = 2952943.011481, lowerbound=1204516.011481, norm of subgrad 1098.150723 dualbound = 2952943.011481, lowerbound=1204516.011481, norm of subgrad 39.603215 stepsize= 1.000000 +dualbound = 2953061.692945, lowerbound=1210367.692945, norm of subgrad 1100.774588 dualbound = 2953061.692945, lowerbound=1210367.692945, norm of subgrad 38.153394 stepsize= 1.000000 +dualbound = 2953222.999841, lowerbound=1209404.999841, norm of subgrad 1100.355397 dualbound = 2953222.999841, lowerbound=1209404.999841, norm of subgrad 39.221256 stepsize= 1.000000 +dualbound = 2953313.563618, lowerbound=1214255.563618, norm of subgrad 1102.607167 dualbound = 2953313.563618, lowerbound=1214255.563618, norm of subgrad 39.718557 stepsize= 1.000000 +dualbound = 2953474.782723, lowerbound=1212509.782723, norm of subgrad 1101.765303 dualbound = 2953474.782723, lowerbound=1212509.782723, norm of subgrad 39.220136 stepsize= 1.000000 +dualbound = 2953579.451115, lowerbound=1208840.451115, norm of subgrad 1100.100655 dualbound = 2953579.451115, lowerbound=1208840.451115, norm of subgrad 38.544369 stepsize= 1.000000 +dualbound = 2953721.002615, lowerbound=1210872.002615, norm of subgrad 1101.039056 dualbound = 2953721.002615, lowerbound=1210872.002615, norm of subgrad 39.453156 stepsize= 1.000000 +dualbound = 2953834.660659, lowerbound=1211256.660659, norm of subgrad 1101.176489 dualbound = 2953834.660659, lowerbound=1211256.660659, norm of subgrad 38.034958 stepsize= 1.000000 +dualbound = 2954007.667988, lowerbound=1212202.667988, norm of subgrad 1101.598233 dualbound = 2954007.667988, lowerbound=1212202.667988, norm of subgrad 38.587658 stepsize= 1.000000 +dualbound = 2954126.023876, lowerbound=1209494.023876, norm of subgrad 1100.378582 dualbound = 2954126.023876, lowerbound=1209494.023876, norm of subgrad 38.175331 stepsize= 1.000000 +dualbound = 2954238.910960, lowerbound=1211797.910960, norm of subgrad 1101.443104 dualbound = 2954238.910960, lowerbound=1211797.910960, norm of subgrad 38.624954 stepsize= 1.000000 +dualbound = 2954364.522301, lowerbound=1211407.522301, norm of subgrad 1101.282671 dualbound = 2954364.522301, lowerbound=1211407.522301, norm of subgrad 39.263359 stepsize= 1.000000 +dualbound = 2954495.221369, lowerbound=1212017.221369, norm of subgrad 1101.526768 dualbound = 2954495.221369, lowerbound=1212017.221369, norm of subgrad 38.401811 stepsize= 1.000000 +dualbound = 2954638.670158, lowerbound=1211748.670158, norm of subgrad 1101.453889 dualbound = 2954638.670158, lowerbound=1211748.670158, norm of subgrad 39.943069 stepsize= 1.000000 +dualbound = 2954721.677640, lowerbound=1209077.677640, norm of subgrad 1100.240736 dualbound = 2954721.677640, lowerbound=1209077.677640, norm of subgrad 39.179172 stepsize= 1.000000 +dualbound = 2954898.821450, lowerbound=1212455.821450, norm of subgrad 1101.734460 dualbound = 2954898.821450, lowerbound=1212455.821450, norm of subgrad 39.244666 stepsize= 1.000000 +dualbound = 2955019.653854, lowerbound=1214182.653854, norm of subgrad 1102.466169 dualbound = 2955019.653854, lowerbound=1214182.653854, norm of subgrad 37.011247 stepsize= 1.000000 +dualbound = 2955171.756299, lowerbound=1212915.756299, norm of subgrad 1101.948164 dualbound = 2955171.756299, lowerbound=1212915.756299, norm of subgrad 39.065361 stepsize= 1.000000 +dualbound = 2955255.000647, lowerbound=1208361.000647, norm of subgrad 1099.888631 dualbound = 2955255.000647, lowerbound=1208361.000647, norm of subgrad 38.434937 stepsize= 1.000000 +dualbound = 2955398.600934, lowerbound=1213613.600934, norm of subgrad 1102.299234 dualbound = 2955398.600934, lowerbound=1213613.600934, norm of subgrad 39.919923 stepsize= 1.000000 +dualbound = 2955519.985069, lowerbound=1215180.985069, norm of subgrad 1102.949221 dualbound = 2955519.985069, lowerbound=1215180.985069, norm of subgrad 37.912849 stepsize= 1.000000 +dualbound = 2955678.114129, lowerbound=1203572.114129, norm of subgrad 1097.681700 dualbound = 2955678.114129, lowerbound=1203572.114129, norm of subgrad 38.615140 stepsize= 1.000000 +dualbound = 2955800.173834, lowerbound=1211277.173834, norm of subgrad 1101.220311 dualbound = 2955800.173834, lowerbound=1211277.173834, norm of subgrad 39.128758 stepsize= 1.000000 +dualbound = 2955901.108789, lowerbound=1217064.108789, norm of subgrad 1103.826123 dualbound = 2955901.108789, lowerbound=1217064.108789, norm of subgrad 38.326687 stepsize= 1.000000 +dualbound = 2956052.425520, lowerbound=1207817.425520, norm of subgrad 1099.631495 dualbound = 2956052.425520, lowerbound=1207817.425520, norm of subgrad 39.029690 stepsize= 1.000000 +dualbound = 2956176.810616, lowerbound=1216937.810616, norm of subgrad 1103.777519 dualbound = 2956176.810616, lowerbound=1216937.810616, norm of subgrad 38.876537 stepsize= 1.000000 +dualbound = 2956268.510037, lowerbound=1210351.510037, norm of subgrad 1100.797670 dualbound = 2956268.510037, lowerbound=1210351.510037, norm of subgrad 38.674273 stepsize= 1.000000 +dualbound = 2956430.809582, lowerbound=1212520.809582, norm of subgrad 1101.787552 dualbound = 2956430.809582, lowerbound=1212520.809582, norm of subgrad 39.715231 stepsize= 1.000000 +dualbound = 2956539.137168, lowerbound=1212079.137168, norm of subgrad 1101.570305 dualbound = 2956539.137168, lowerbound=1212079.137168, norm of subgrad 38.552919 stepsize= 1.000000 +dualbound = 2956683.685187, lowerbound=1212650.685187, norm of subgrad 1101.858287 dualbound = 2956683.685187, lowerbound=1212650.685187, norm of subgrad 39.818940 stepsize= 1.000000 +dualbound = 2956803.437712, lowerbound=1207989.437712, norm of subgrad 1099.701977 dualbound = 2956803.437712, lowerbound=1207989.437712, norm of subgrad 38.402507 stepsize= 1.000000 +dualbound = 2956942.867410, lowerbound=1213119.867410, norm of subgrad 1102.083875 dualbound = 2956942.867410, lowerbound=1213119.867410, norm of subgrad 40.105233 stepsize= 1.000000 +dualbound = 2957051.103475, lowerbound=1206807.103475, norm of subgrad 1099.182016 dualbound = 2957051.103475, lowerbound=1206807.103475, norm of subgrad 38.758690 stepsize= 1.000000 +dualbound = 2957216.064540, lowerbound=1215627.064540, norm of subgrad 1103.166834 dualbound = 2957216.064540, lowerbound=1215627.064540, norm of subgrad 38.922501 stepsize= 1.000000 +dualbound = 2957347.236284, lowerbound=1212135.236284, norm of subgrad 1101.573527 dualbound = 2957347.236284, lowerbound=1212135.236284, norm of subgrad 38.212194 stepsize= 1.000000 +dualbound = 2957477.204920, lowerbound=1212313.204920, norm of subgrad 1101.701958 dualbound = 2957477.204920, lowerbound=1212313.204920, norm of subgrad 39.547043 stepsize= 1.000000 +dualbound = 2957578.309810, lowerbound=1205131.309810, norm of subgrad 1098.405804 dualbound = 2957578.309810, lowerbound=1205131.309810, norm of subgrad 38.276689 stepsize= 1.000000 +dualbound = 2957736.609389, lowerbound=1212938.609389, norm of subgrad 1101.927679 dualbound = 2957736.609389, lowerbound=1212938.609389, norm of subgrad 38.266168 stepsize= 1.000000 +dualbound = 2957882.097716, lowerbound=1209806.097716, norm of subgrad 1100.520376 dualbound = 2957882.097716, lowerbound=1209806.097716, norm of subgrad 38.529058 stepsize= 1.000000 +dualbound = 2957976.083520, lowerbound=1216655.083520, norm of subgrad 1103.639472 dualbound = 2957976.083520, lowerbound=1216655.083520, norm of subgrad 38.196673 stepsize= 1.000000 +dualbound = 2958114.897251, lowerbound=1210652.897251, norm of subgrad 1100.923656 dualbound = 2958114.897251, lowerbound=1210652.897251, norm of subgrad 38.971961 stepsize= 1.000000 +dualbound = 2958245.579720, lowerbound=1212928.579720, norm of subgrad 1101.939463 dualbound = 2958245.579720, lowerbound=1212928.579720, norm of subgrad 38.375545 stepsize= 1.000000 +dualbound = 2958357.880631, lowerbound=1210220.880631, norm of subgrad 1100.752416 dualbound = 2958357.880631, lowerbound=1210220.880631, norm of subgrad 39.335746 stepsize= 1.000000 +dualbound = 2958477.022730, lowerbound=1214305.022730, norm of subgrad 1102.585608 dualbound = 2958477.022730, lowerbound=1214305.022730, norm of subgrad 38.847678 stepsize= 1.000000 +dualbound = 2958638.230779, lowerbound=1207137.230779, norm of subgrad 1099.312617 dualbound = 2958638.230779, lowerbound=1207137.230779, norm of subgrad 38.887119 stepsize= 1.000000 +dualbound = 2958763.855385, lowerbound=1211993.855385, norm of subgrad 1101.555652 dualbound = 2958763.855385, lowerbound=1211993.855385, norm of subgrad 39.454082 stepsize= 1.000000 +dualbound = 2958878.097077, lowerbound=1210922.097077, norm of subgrad 1101.049089 dualbound = 2958878.097077, lowerbound=1210922.097077, norm of subgrad 38.745860 stepsize= 1.000000 +dualbound = 2958994.788973, lowerbound=1216259.788973, norm of subgrad 1103.462183 dualbound = 2958994.788973, lowerbound=1216259.788973, norm of subgrad 38.544674 stepsize= 1.000000 +dualbound = 2959136.562964, lowerbound=1211658.562964, norm of subgrad 1101.396188 dualbound = 2959136.562964, lowerbound=1211658.562964, norm of subgrad 39.455975 stepsize= 1.000000 +dualbound = 2959242.101778, lowerbound=1211125.101778, norm of subgrad 1101.140818 dualbound = 2959242.101778, lowerbound=1211125.101778, norm of subgrad 38.620446 stepsize= 1.000000 +dualbound = 2959410.652262, lowerbound=1210331.652262, norm of subgrad 1100.795918 dualbound = 2959410.652262, lowerbound=1210331.652262, norm of subgrad 39.856624 stepsize= 1.000000 +dualbound = 2959505.273280, lowerbound=1213332.273280, norm of subgrad 1102.165266 dualbound = 2959505.273280, lowerbound=1213332.273280, norm of subgrad 39.123152 stepsize= 1.000000 +dualbound = 2959648.272770, lowerbound=1210381.272770, norm of subgrad 1100.812551 dualbound = 2959648.272770, lowerbound=1210381.272770, norm of subgrad 39.370033 stepsize= 1.000000 +dualbound = 2959762.173407, lowerbound=1211736.173407, norm of subgrad 1101.415986 dualbound = 2959762.173407, lowerbound=1211736.173407, norm of subgrad 38.663945 stepsize= 1.000000 +dualbound = 2959914.927124, lowerbound=1211235.927124, norm of subgrad 1101.210210 dualbound = 2959914.927124, lowerbound=1211235.927124, norm of subgrad 39.758694 stepsize= 1.000000 +dualbound = 2960022.247616, lowerbound=1215302.247616, norm of subgrad 1103.022324 dualbound = 2960022.247616, lowerbound=1215302.247616, norm of subgrad 38.253372 stepsize= 1.000000 +dualbound = 2960160.431705, lowerbound=1213524.431705, norm of subgrad 1102.230208 dualbound = 2960160.431705, lowerbound=1213524.431705, norm of subgrad 39.053605 stepsize= 1.000000 +dualbound = 2960290.489586, lowerbound=1209731.489586, norm of subgrad 1100.497837 dualbound = 2960290.489586, lowerbound=1209731.489586, norm of subgrad 38.653045 stepsize= 1.000000 +dualbound = 2960426.870755, lowerbound=1212508.870755, norm of subgrad 1101.771696 dualbound = 2960426.870755, lowerbound=1212508.870755, norm of subgrad 39.094516 stepsize= 1.000000 +dualbound = 2960541.175919, lowerbound=1211753.175919, norm of subgrad 1101.415987 dualbound = 2960541.175919, lowerbound=1211753.175919, norm of subgrad 38.448734 stepsize= 1.000000 +dualbound = 2960666.072691, lowerbound=1212165.072691, norm of subgrad 1101.626558 dualbound = 2960666.072691, lowerbound=1212165.072691, norm of subgrad 39.254258 stepsize= 1.000000 +dualbound = 2960796.487734, lowerbound=1208306.487734, norm of subgrad 1099.874760 dualbound = 2960796.487734, lowerbound=1208306.487734, norm of subgrad 39.349905 stepsize= 1.000000 +dualbound = 2960907.308191, lowerbound=1214429.308191, norm of subgrad 1102.650130 dualbound = 2960907.308191, lowerbound=1214429.308191, norm of subgrad 38.972047 stepsize= 1.000000 +dualbound = 2961076.621339, lowerbound=1210047.621339, norm of subgrad 1100.634191 dualbound = 2961076.621339, lowerbound=1210047.621339, norm of subgrad 38.952704 stepsize= 1.000000 +dualbound = 2961194.383509, lowerbound=1216449.383509, norm of subgrad 1103.565759 dualbound = 2961194.383509, lowerbound=1216449.383509, norm of subgrad 39.061006 stepsize= 1.000000 +dualbound = 2961299.909424, lowerbound=1211157.909424, norm of subgrad 1101.153445 dualbound = 2961299.909424, lowerbound=1211157.909424, norm of subgrad 38.555491 stepsize= 1.000000 +dualbound = 2961446.597076, lowerbound=1210902.597076, norm of subgrad 1101.032060 dualbound = 2961446.597076, lowerbound=1210902.597076, norm of subgrad 38.931833 stepsize= 1.000000 +dualbound = 2961570.963908, lowerbound=1212566.963908, norm of subgrad 1101.823018 dualbound = 2961570.963908, lowerbound=1212566.963908, norm of subgrad 39.640470 stepsize= 1.000000 +dualbound = 2961688.959712, lowerbound=1214299.959712, norm of subgrad 1102.571521 dualbound = 2961688.959712, lowerbound=1214299.959712, norm of subgrad 38.496699 stepsize= 1.000000 +dualbound = 2961840.629758, lowerbound=1214789.629758, norm of subgrad 1102.813053 dualbound = 2961840.629758, lowerbound=1214789.629758, norm of subgrad 39.479996 stepsize= 1.000000 +dualbound = 2961946.189079, lowerbound=1211942.189079, norm of subgrad 1101.504966 dualbound = 2961946.189079, lowerbound=1211942.189079, norm of subgrad 38.426024 stepsize= 1.000000 +dualbound = 2962093.933661, lowerbound=1211516.933661, norm of subgrad 1101.309645 dualbound = 2962093.933661, lowerbound=1211516.933661, norm of subgrad 38.906871 stepsize= 1.000000 +dualbound = 2962227.000289, lowerbound=1213319.000289, norm of subgrad 1102.141098 dualbound = 2962227.000289, lowerbound=1213319.000289, norm of subgrad 39.103282 stepsize= 1.000000 +dualbound = 2962340.730014, lowerbound=1207534.730014, norm of subgrad 1099.552514 dualbound = 2962340.730014, lowerbound=1207534.730014, norm of subgrad 39.934067 stepsize= 1.000000 +dualbound = 2962454.788620, lowerbound=1210876.788620, norm of subgrad 1101.058031 dualbound = 2962454.788620, lowerbound=1210876.788620, norm of subgrad 39.573458 stepsize= 1.000000 +dualbound = 2962589.830735, lowerbound=1209727.830735, norm of subgrad 1100.503444 dualbound = 2962589.830735, lowerbound=1209727.830735, norm of subgrad 38.923542 stepsize= 1.000000 +dualbound = 2962723.841313, lowerbound=1211106.841313, norm of subgrad 1101.157047 dualbound = 2962723.841313, lowerbound=1211106.841313, norm of subgrad 39.673802 stepsize= 1.000000 +dualbound = 2962832.100511, lowerbound=1212127.100511, norm of subgrad 1101.596614 dualbound = 2962832.100511, lowerbound=1212127.100511, norm of subgrad 38.681510 stepsize= 1.000000 +dualbound = 2962968.391790, lowerbound=1212565.391790, norm of subgrad 1101.779194 dualbound = 2962968.391790, lowerbound=1212565.391790, norm of subgrad 38.578378 stepsize= 1.000000 +dualbound = 2963102.191781, lowerbound=1212853.191781, norm of subgrad 1101.888012 dualbound = 2963102.191781, lowerbound=1212853.191781, norm of subgrad 37.918333 stepsize= 1.000000 +dualbound = 2963244.649473, lowerbound=1213240.649473, norm of subgrad 1102.093303 dualbound = 2963244.649473, lowerbound=1213240.649473, norm of subgrad 38.877470 stepsize= 1.000000 +dualbound = 2963360.742101, lowerbound=1214163.742101, norm of subgrad 1102.505212 dualbound = 2963360.742101, lowerbound=1214163.742101, norm of subgrad 38.341787 stepsize= 1.000000 +dualbound = 2963492.778080, lowerbound=1214055.778080, norm of subgrad 1102.466225 dualbound = 2963492.778080, lowerbound=1214055.778080, norm of subgrad 38.833439 stepsize= 1.000000 +dualbound = 2963588.356245, lowerbound=1217464.356245, norm of subgrad 1104.020089 dualbound = 2963588.356245, lowerbound=1217464.356245, norm of subgrad 38.620955 stepsize= 1.000000 +dualbound = 2963742.078689, lowerbound=1212553.078689, norm of subgrad 1101.788128 dualbound = 2963742.078689, lowerbound=1212553.078689, norm of subgrad 39.213804 stepsize= 1.000000 +dualbound = 2963874.193672, lowerbound=1205414.193672, norm of subgrad 1098.561420 dualbound = 2963874.193672, lowerbound=1205414.193672, norm of subgrad 39.434946 stepsize= 1.000000 +dualbound = 2964006.579495, lowerbound=1217417.579495, norm of subgrad 1104.003433 dualbound = 2964006.579495, lowerbound=1217417.579495, norm of subgrad 39.222262 stepsize= 1.000000 +dualbound = 2964129.024248, lowerbound=1209360.024248, norm of subgrad 1100.352682 dualbound = 2964129.024248, lowerbound=1209360.024248, norm of subgrad 39.223013 stepsize= 1.000000 +dualbound = 2964245.790426, lowerbound=1211816.790426, norm of subgrad 1101.460299 dualbound = 2964245.790426, lowerbound=1211816.790426, norm of subgrad 38.919997 stepsize= 1.000000 +dualbound = 2964404.848741, lowerbound=1208201.848741, norm of subgrad 1099.802641 dualbound = 2964404.848741, lowerbound=1208201.848741, norm of subgrad 39.026380 stepsize= 1.000000 +dualbound = 2964513.147881, lowerbound=1214840.147881, norm of subgrad 1102.804673 dualbound = 2964513.147881, lowerbound=1214840.147881, norm of subgrad 38.030240 stepsize= 1.000000 +dualbound = 2964639.017637, lowerbound=1210649.017637, norm of subgrad 1100.897823 dualbound = 2964639.017637, lowerbound=1210649.017637, norm of subgrad 38.116529 stepsize= 1.000000 +dualbound = 2964774.766748, lowerbound=1213392.766748, norm of subgrad 1102.170934 dualbound = 2964774.766748, lowerbound=1213392.766748, norm of subgrad 39.035229 stepsize= 1.000000 +dualbound = 2964875.486473, lowerbound=1213097.486473, norm of subgrad 1102.030620 dualbound = 2964875.486473, lowerbound=1213097.486473, norm of subgrad 38.402080 stepsize= 1.000000 +dualbound = 2965029.746496, lowerbound=1213431.746496, norm of subgrad 1102.172285 dualbound = 2965029.746496, lowerbound=1213431.746496, norm of subgrad 38.810566 stepsize= 1.000000 +dualbound = 2965160.014822, lowerbound=1213235.014822, norm of subgrad 1102.101635 dualbound = 2965160.014822, lowerbound=1213235.014822, norm of subgrad 39.029070 stepsize= 1.000000 +dualbound = 2965252.425270, lowerbound=1212331.425270, norm of subgrad 1101.690258 dualbound = 2965252.425270, lowerbound=1212331.425270, norm of subgrad 38.502084 stepsize= 1.000000 +dualbound = 2965391.137747, lowerbound=1213192.137747, norm of subgrad 1102.106228 dualbound = 2965391.137747, lowerbound=1213192.137747, norm of subgrad 39.808447 stepsize= 1.000000 +dualbound = 2965497.835232, lowerbound=1220218.835232, norm of subgrad 1105.290385 dualbound = 2965497.835232, lowerbound=1220218.835232, norm of subgrad 39.429652 stepsize= 1.000000 +dualbound = 2965653.608028, lowerbound=1207763.608028, norm of subgrad 1099.634761 dualbound = 2965653.608028, lowerbound=1207763.608028, norm of subgrad 39.859413 stepsize= 1.000000 +dualbound = 2965772.218039, lowerbound=1214817.218039, norm of subgrad 1102.829188 dualbound = 2965772.218039, lowerbound=1214817.218039, norm of subgrad 39.161333 stepsize= 1.000000 +dualbound = 2965897.527008, lowerbound=1210004.527008, norm of subgrad 1100.628242 dualbound = 2965897.527008, lowerbound=1210004.527008, norm of subgrad 38.772529 stepsize= 1.000000 +dualbound = 2966056.289750, lowerbound=1210625.289750, norm of subgrad 1100.906576 dualbound = 2966056.289750, lowerbound=1210625.289750, norm of subgrad 39.099396 stepsize= 1.000000 +dualbound = 2966151.726326, lowerbound=1212077.726326, norm of subgrad 1101.550147 dualbound = 2966151.726326, lowerbound=1212077.726326, norm of subgrad 37.821113 stepsize= 1.000000 +dualbound = 2966309.977255, lowerbound=1214779.977255, norm of subgrad 1102.786914 dualbound = 2966309.977255, lowerbound=1214779.977255, norm of subgrad 38.951905 stepsize= 1.000000 +dualbound = 2966429.906579, lowerbound=1208290.906579, norm of subgrad 1099.874496 dualbound = 2966429.906579, lowerbound=1208290.906579, norm of subgrad 39.407224 stepsize= 1.000000 +dualbound = 2966551.270506, lowerbound=1213056.270506, norm of subgrad 1101.980613 dualbound = 2966551.270506, lowerbound=1213056.270506, norm of subgrad 37.767234 stepsize= 1.000000 +dualbound = 2966698.538759, lowerbound=1215441.538759, norm of subgrad 1103.089996 dualbound = 2966698.538759, lowerbound=1215441.538759, norm of subgrad 38.900749 stepsize= 1.000000 +dualbound = 2966802.955333, lowerbound=1213740.955333, norm of subgrad 1102.314817 dualbound = 2966802.955333, lowerbound=1213740.955333, norm of subgrad 38.228479 stepsize= 1.000000 +dualbound = 2966944.291448, lowerbound=1212932.291448, norm of subgrad 1101.967464 dualbound = 2966944.291448, lowerbound=1212932.291448, norm of subgrad 39.259854 stepsize= 1.000000 +dualbound = 2967043.094556, lowerbound=1217016.094556, norm of subgrad 1103.812074 dualbound = 2967043.094556, lowerbound=1217016.094556, norm of subgrad 38.520165 stepsize= 1.000000 +dualbound = 2967183.193526, lowerbound=1209250.193526, norm of subgrad 1100.312771 dualbound = 2967183.193526, lowerbound=1209250.193526, norm of subgrad 39.725294 stepsize= 1.000000 +dualbound = 2967292.466612, lowerbound=1214965.466612, norm of subgrad 1102.868291 dualbound = 2967292.466612, lowerbound=1214965.466612, norm of subgrad 38.239679 stepsize= 1.000000 +dualbound = 2967440.491175, lowerbound=1213357.491175, norm of subgrad 1102.163096 dualbound = 2967440.491175, lowerbound=1213357.491175, norm of subgrad 39.421118 stepsize= 1.000000 +dualbound = 2967575.509445, lowerbound=1209389.509445, norm of subgrad 1100.332454 dualbound = 2967575.509445, lowerbound=1209389.509445, norm of subgrad 38.431995 stepsize= 1.000000 +dualbound = 2967701.904861, lowerbound=1212308.904861, norm of subgrad 1101.696830 dualbound = 2967701.904861, lowerbound=1212308.904861, norm of subgrad 39.413138 stepsize= 1.000000 +dualbound = 2967808.632776, lowerbound=1215124.632776, norm of subgrad 1102.980341 dualbound = 2967808.632776, lowerbound=1215124.632776, norm of subgrad 39.341173 stepsize= 1.000000 +dualbound = 2967943.015214, lowerbound=1209761.015214, norm of subgrad 1100.528516 dualbound = 2967943.015214, lowerbound=1209761.015214, norm of subgrad 39.196715 stepsize= 1.000000 +dualbound = 2968085.093573, lowerbound=1216658.093573, norm of subgrad 1103.656239 dualbound = 2968085.093573, lowerbound=1216658.093573, norm of subgrad 39.256571 stepsize= 1.000000 +dualbound = 2968192.650927, lowerbound=1212396.650927, norm of subgrad 1101.721222 dualbound = 2968192.650927, lowerbound=1212396.650927, norm of subgrad 38.737028 stepsize= 1.000000 +dualbound = 2968328.034707, lowerbound=1213759.034707, norm of subgrad 1102.339800 dualbound = 2968328.034707, lowerbound=1213759.034707, norm of subgrad 39.107337 stepsize= 1.000000 +dualbound = 2968450.535262, lowerbound=1215443.535262, norm of subgrad 1103.141666 dualbound = 2968450.535262, lowerbound=1215443.535262, norm of subgrad 40.006256 stepsize= 1.000000 +dualbound = 2968574.057062, lowerbound=1210581.057062, norm of subgrad 1100.907379 dualbound = 2968574.057062, lowerbound=1210581.057062, norm of subgrad 39.236740 stepsize= 1.000000 +dualbound = 2968721.539936, lowerbound=1210181.539936, norm of subgrad 1100.722281 dualbound = 2968721.539936, lowerbound=1210181.539936, norm of subgrad 39.439610 stepsize= 1.000000 +dualbound = 2968832.181686, lowerbound=1215388.181686, norm of subgrad 1103.093007 dualbound = 2968832.181686, lowerbound=1215388.181686, norm of subgrad 39.200022 stepsize= 1.000000 +dualbound = 2968962.710762, lowerbound=1215319.710762, norm of subgrad 1103.054265 dualbound = 2968962.710762, lowerbound=1215319.710762, norm of subgrad 39.236833 stepsize= 1.000000 +dualbound = 2969087.405922, lowerbound=1208880.405922, norm of subgrad 1100.119723 dualbound = 2969087.405922, lowerbound=1208880.405922, norm of subgrad 38.829050 stepsize= 1.000000 +dualbound = 2969222.277237, lowerbound=1215069.277237, norm of subgrad 1102.927140 dualbound = 2969222.277237, lowerbound=1215069.277237, norm of subgrad 38.908499 stepsize= 1.000000 +dualbound = 2969362.728664, lowerbound=1211274.728664, norm of subgrad 1101.204672 dualbound = 2969362.728664, lowerbound=1211274.728664, norm of subgrad 38.954479 stepsize= 1.000000 +dualbound = 2969483.442302, lowerbound=1212591.442302, norm of subgrad 1101.806899 dualbound = 2969483.442302, lowerbound=1212591.442302, norm of subgrad 38.829288 stepsize= 1.000000 +dualbound = 2969616.785418, lowerbound=1213068.785418, norm of subgrad 1102.018051 dualbound = 2969616.785418, lowerbound=1213068.785418, norm of subgrad 38.837393 stepsize= 1.000000 +dualbound = 2969732.238805, lowerbound=1211142.238805, norm of subgrad 1101.137248 dualbound = 2969732.238805, lowerbound=1211142.238805, norm of subgrad 38.424646 stepsize= 1.000000 +dualbound = 2969875.017244, lowerbound=1216440.017244, norm of subgrad 1103.561968 dualbound = 2969875.017244, lowerbound=1216440.017244, norm of subgrad 39.392619 stepsize= 1.000000 +dualbound = 2969984.051718, lowerbound=1213044.051718, norm of subgrad 1102.012728 dualbound = 2969984.051718, lowerbound=1213044.051718, norm of subgrad 38.691530 stepsize= 1.000000 +dualbound = 2970127.304047, lowerbound=1212024.304047, norm of subgrad 1101.544962 dualbound = 2970127.304047, lowerbound=1212024.304047, norm of subgrad 38.990413 stepsize= 1.000000 +dualbound = 2970245.083291, lowerbound=1213530.083291, norm of subgrad 1102.214173 dualbound = 2970245.083291, lowerbound=1213530.083291, norm of subgrad 38.259368 stepsize= 1.000000 +dualbound = 2970380.183033, lowerbound=1210171.183033, norm of subgrad 1100.681236 dualbound = 2970380.183033, lowerbound=1210171.183033, norm of subgrad 38.250487 stepsize= 1.000000 +dualbound = 2970510.321426, lowerbound=1212171.321426, norm of subgrad 1101.608969 dualbound = 2970510.321426, lowerbound=1212171.321426, norm of subgrad 38.744527 stepsize= 1.000000 +dualbound = 2970640.508803, lowerbound=1214566.508803, norm of subgrad 1102.681962 dualbound = 2970640.508803, lowerbound=1214566.508803, norm of subgrad 38.356060 stepsize= 1.000000 +dualbound = 2970737.263483, lowerbound=1210078.263483, norm of subgrad 1100.652199 dualbound = 2970737.263483, lowerbound=1210078.263483, norm of subgrad 38.128135 stepsize= 1.000000 +dualbound = 2970888.044207, lowerbound=1217633.044207, norm of subgrad 1104.062518 dualbound = 2970888.044207, lowerbound=1217633.044207, norm of subgrad 38.363794 stepsize= 1.000000 +dualbound = 2971031.758899, lowerbound=1214547.758899, norm of subgrad 1102.682075 dualbound = 2971031.758899, lowerbound=1214547.758899, norm of subgrad 38.777760 stepsize= 1.000000 +dualbound = 2971138.661241, lowerbound=1209273.661241, norm of subgrad 1100.308894 dualbound = 2971138.661241, lowerbound=1209273.661241, norm of subgrad 38.896045 stepsize= 1.000000 +dualbound = 2971265.142801, lowerbound=1211441.142801, norm of subgrad 1101.297482 dualbound = 2971265.142801, lowerbound=1211441.142801, norm of subgrad 39.261706 stepsize= 1.000000 +dualbound = 2971390.187355, lowerbound=1212812.187355, norm of subgrad 1101.897993 dualbound = 2971390.187355, lowerbound=1212812.187355, norm of subgrad 38.626993 stepsize= 1.000000 +dualbound = 2971523.878862, lowerbound=1210341.878862, norm of subgrad 1100.805105 dualbound = 2971523.878862, lowerbound=1210341.878862, norm of subgrad 39.543539 stepsize= 1.000000 +dualbound = 2971638.523410, lowerbound=1215090.523410, norm of subgrad 1102.929065 dualbound = 2971638.523410, lowerbound=1215090.523410, norm of subgrad 38.427133 stepsize= 1.000000 +dualbound = 2971777.202473, lowerbound=1217048.202473, norm of subgrad 1103.833412 dualbound = 2971777.202473, lowerbound=1217048.202473, norm of subgrad 39.226000 stepsize= 1.000000 +dualbound = 2971928.975825, lowerbound=1216906.975825, norm of subgrad 1103.772158 dualbound = 2971928.975825, lowerbound=1216906.975825, norm of subgrad 39.468638 stepsize= 1.000000 +dualbound = 2972020.334521, lowerbound=1209847.334521, norm of subgrad 1100.584088 dualbound = 2972020.334521, lowerbound=1209847.334521, norm of subgrad 39.107016 stepsize= 1.000000 +dualbound = 2972165.955415, lowerbound=1209549.955415, norm of subgrad 1100.427170 dualbound = 2972165.955415, lowerbound=1209549.955415, norm of subgrad 39.186999 stepsize= 1.000000 +dualbound = 2972286.648068, lowerbound=1214151.648068, norm of subgrad 1102.496552 dualbound = 2972286.648068, lowerbound=1214151.648068, norm of subgrad 38.310477 stepsize= 1.000000 +dualbound = 2972431.708757, lowerbound=1215110.708757, norm of subgrad 1102.940936 dualbound = 2972431.708757, lowerbound=1215110.708757, norm of subgrad 38.898081 stepsize= 1.000000 +dualbound = 2972547.812003, lowerbound=1209821.812003, norm of subgrad 1100.545688 dualbound = 2972547.812003, lowerbound=1209821.812003, norm of subgrad 38.666565 stepsize= 1.000000 +dualbound = 2972702.496162, lowerbound=1214661.496162, norm of subgrad 1102.744529 dualbound = 2972702.496162, lowerbound=1214661.496162, norm of subgrad 39.226065 stepsize= 1.000000 +dualbound = 2972797.660479, lowerbound=1213193.660479, norm of subgrad 1102.089225 dualbound = 2972797.660479, lowerbound=1213193.660479, norm of subgrad 38.757765 stepsize= 1.000000 +dualbound = 2972936.863110, lowerbound=1212361.863110, norm of subgrad 1101.685465 dualbound = 2972936.863110, lowerbound=1212361.863110, norm of subgrad 38.577229 stepsize= 1.000000 +dualbound = 2973060.134013, lowerbound=1211890.134013, norm of subgrad 1101.506756 dualbound = 2973060.134013, lowerbound=1211890.134013, norm of subgrad 39.373480 stepsize= 1.000000 +dualbound = 2973187.652266, lowerbound=1211721.652266, norm of subgrad 1101.407578 dualbound = 2973187.652266, lowerbound=1211721.652266, norm of subgrad 38.788120 stepsize= 1.000000 +dualbound = 2973332.795807, lowerbound=1212324.795807, norm of subgrad 1101.698596 dualbound = 2973332.795807, lowerbound=1212324.795807, norm of subgrad 39.498652 stepsize= 1.000000 +dualbound = 2973443.246866, lowerbound=1216080.246866, norm of subgrad 1103.358621 dualbound = 2973443.246866, lowerbound=1216080.246866, norm of subgrad 37.821304 stepsize= 1.000000 +dualbound = 2973584.741260, lowerbound=1209091.741260, norm of subgrad 1100.191229 dualbound = 2973584.741260, lowerbound=1209091.741260, norm of subgrad 38.347026 stepsize= 1.000000 +dualbound = 2973684.912656, lowerbound=1219131.912656, norm of subgrad 1104.789986 dualbound = 2973684.912656, lowerbound=1219131.912656, norm of subgrad 39.104621 stepsize= 1.000000 +dualbound = 2973809.139935, lowerbound=1213215.139935, norm of subgrad 1102.083091 dualbound = 2973809.139935, lowerbound=1213215.139935, norm of subgrad 38.681097 stepsize= 1.000000 +dualbound = 2973966.604034, lowerbound=1215012.604034, norm of subgrad 1102.884221 dualbound = 2973966.604034, lowerbound=1215012.604034, norm of subgrad 38.710000 stepsize= 1.000000 +dualbound = 2974063.138687, lowerbound=1209264.138687, norm of subgrad 1100.285481 dualbound = 2974063.138687, lowerbound=1209264.138687, norm of subgrad 38.216942 stepsize= 1.000000 +dualbound = 2974210.621804, lowerbound=1212620.621804, norm of subgrad 1101.821048 dualbound = 2974210.621804, lowerbound=1212620.621804, norm of subgrad 39.197999 stepsize= 1.000000 +dualbound = 2974329.405214, lowerbound=1208858.405214, norm of subgrad 1100.112451 dualbound = 2974329.405214, lowerbound=1208858.405214, norm of subgrad 38.830187 stepsize= 1.000000 +dualbound = 2974464.809980, lowerbound=1217533.809980, norm of subgrad 1104.055619 dualbound = 2974464.809980, lowerbound=1217533.809980, norm of subgrad 39.247991 stepsize= 1.000000 +dualbound = 2974580.080253, lowerbound=1209436.080253, norm of subgrad 1100.381334 dualbound = 2974580.080253, lowerbound=1209436.080253, norm of subgrad 38.964988 stepsize= 1.000000 +dualbound = 2974707.419054, lowerbound=1215496.419054, norm of subgrad 1103.128016 dualbound = 2974707.419054, lowerbound=1215496.419054, norm of subgrad 39.017160 stepsize= 1.000000 +dualbound = 2974845.898271, lowerbound=1208653.898271, norm of subgrad 1100.009499 dualbound = 2974845.898271, lowerbound=1208653.898271, norm of subgrad 38.800505 stepsize= 1.000000 +dualbound = 2974997.347913, lowerbound=1214720.347913, norm of subgrad 1102.745369 dualbound = 2974997.347913, lowerbound=1214720.347913, norm of subgrad 38.450613 stepsize= 1.000000 +dualbound = 2975110.726232, lowerbound=1212858.726232, norm of subgrad 1101.903683 dualbound = 2975110.726232, lowerbound=1212858.726232, norm of subgrad 38.031281 stepsize= 1.000000 +dualbound = 2975245.279987, lowerbound=1211713.279987, norm of subgrad 1101.378809 dualbound = 2975245.279987, lowerbound=1211713.279987, norm of subgrad 38.164824 stepsize= 1.000000 +dualbound = 2975372.368168, lowerbound=1215074.368168, norm of subgrad 1102.894541 dualbound = 2975372.368168, lowerbound=1215074.368168, norm of subgrad 37.803283 stepsize= 1.000000 +dualbound = 2975479.678384, lowerbound=1212940.678384, norm of subgrad 1101.957657 dualbound = 2975479.678384, lowerbound=1212940.678384, norm of subgrad 38.435793 stepsize= 1.000000 +dualbound = 2975613.677913, lowerbound=1214489.677913, norm of subgrad 1102.656192 dualbound = 2975613.677913, lowerbound=1214489.677913, norm of subgrad 38.665224 stepsize= 1.000000 +dualbound = 2975741.953872, lowerbound=1217679.953872, norm of subgrad 1104.119538 dualbound = 2975741.953872, lowerbound=1217679.953872, norm of subgrad 39.093170 stepsize= 1.000000 +dualbound = 2975843.972860, lowerbound=1209018.972860, norm of subgrad 1100.214967 dualbound = 2975843.972860, lowerbound=1209018.972860, norm of subgrad 39.446407 stepsize= 1.000000 +dualbound = 2975951.916028, lowerbound=1216441.916028, norm of subgrad 1103.584576 dualbound = 2975951.916028, lowerbound=1216441.916028, norm of subgrad 39.559363 stepsize= 1.000000 +dualbound = 2976083.713855, lowerbound=1209870.713855, norm of subgrad 1100.586077 dualbound = 2976083.713855, lowerbound=1209870.713855, norm of subgrad 39.380170 stepsize= 1.000000 +dualbound = 2976234.199537, lowerbound=1213134.199537, norm of subgrad 1102.071776 dualbound = 2976234.199537, lowerbound=1213134.199537, norm of subgrad 39.730161 stepsize= 1.000000 +dualbound = 2976346.393443, lowerbound=1215692.393443, norm of subgrad 1103.217745 dualbound = 2976346.393443, lowerbound=1215692.393443, norm of subgrad 38.848345 stepsize= 1.000000 +dualbound = 2976511.076356, lowerbound=1213122.076356, norm of subgrad 1102.031795 dualbound = 2976511.076356, lowerbound=1213122.076356, norm of subgrad 38.944613 stepsize= 1.000000 +dualbound = 2976614.012782, lowerbound=1216466.012782, norm of subgrad 1103.564684 dualbound = 2976614.012782, lowerbound=1216466.012782, norm of subgrad 38.625593 stepsize= 1.000000 +dualbound = 2976793.350426, lowerbound=1208617.350426, norm of subgrad 1099.995614 dualbound = 2976793.350426, lowerbound=1208617.350426, norm of subgrad 39.399716 stepsize= 1.000000 +dualbound = 2976865.535096, lowerbound=1208817.535096, norm of subgrad 1100.102511 dualbound = 2976865.535096, lowerbound=1208817.535096, norm of subgrad 38.473168 stepsize= 1.000000 +dualbound = 2977018.964359, lowerbound=1214427.964359, norm of subgrad 1102.631835 dualbound = 2977018.964359, lowerbound=1214427.964359, norm of subgrad 39.018320 stepsize= 1.000000 +dualbound = 2977142.298371, lowerbound=1212770.298371, norm of subgrad 1101.853120 dualbound = 2977142.298371, lowerbound=1212770.298371, norm of subgrad 37.859398 stepsize= 1.000000 +dualbound = 2977266.428554, lowerbound=1208534.428554, norm of subgrad 1099.977013 dualbound = 2977266.428554, lowerbound=1208534.428554, norm of subgrad 39.231750 stepsize= 1.000000 +dualbound = 2977362.871214, lowerbound=1217111.871214, norm of subgrad 1103.908905 dualbound = 2977362.871214, lowerbound=1217111.871214, norm of subgrad 39.993033 stepsize= 1.000000 +dualbound = 2977486.188349, lowerbound=1212567.188349, norm of subgrad 1101.802246 dualbound = 2977486.188349, lowerbound=1212567.188349, norm of subgrad 39.042504 stepsize= 1.000000 +dualbound = 2977635.382863, lowerbound=1220157.382863, norm of subgrad 1105.244942 dualbound = 2977635.382863, lowerbound=1220157.382863, norm of subgrad 39.473973 stepsize= 1.000000 +dualbound = 2977751.522165, lowerbound=1209455.522165, norm of subgrad 1100.380172 dualbound = 2977751.522165, lowerbound=1209455.522165, norm of subgrad 38.692884 stepsize= 1.000000 +dualbound = 2977901.469148, lowerbound=1210218.469148, norm of subgrad 1100.719523 dualbound = 2977901.469148, lowerbound=1210218.469148, norm of subgrad 38.922320 stepsize= 1.000000 +dualbound = 2978037.209942, lowerbound=1215346.209942, norm of subgrad 1103.051771 dualbound = 2978037.209942, lowerbound=1215346.209942, norm of subgrad 38.893969 stepsize= 1.000000 +dualbound = 2978167.255828, lowerbound=1211849.255828, norm of subgrad 1101.473675 dualbound = 2978167.255828, lowerbound=1211849.255828, norm of subgrad 39.051836 stepsize= 1.000000 +dualbound = 2978279.302846, lowerbound=1214183.302846, norm of subgrad 1102.531770 dualbound = 2978279.302846, lowerbound=1214183.302846, norm of subgrad 38.794935 stepsize= 1.000000 +dualbound = 2978423.542646, lowerbound=1214669.542646, norm of subgrad 1102.735028 dualbound = 2978423.542646, lowerbound=1214669.542646, norm of subgrad 38.720018 stepsize= 1.000000 +dualbound = 2978540.935336, lowerbound=1213991.935336, norm of subgrad 1102.456319 dualbound = 2978540.935336, lowerbound=1213991.935336, norm of subgrad 39.184087 stepsize= 1.000000 +dualbound = 2978658.638912, lowerbound=1211220.638912, norm of subgrad 1101.200998 dualbound = 2978658.638912, lowerbound=1211220.638912, norm of subgrad 39.251797 stepsize= 1.000000 +dualbound = 2978781.339271, lowerbound=1215010.339271, norm of subgrad 1102.910395 dualbound = 2978781.339271, lowerbound=1215010.339271, norm of subgrad 39.034605 stepsize= 1.000000 +dualbound = 2978903.541872, lowerbound=1216007.541872, norm of subgrad 1103.379600 dualbound = 2978903.541872, lowerbound=1216007.541872, norm of subgrad 39.512056 stepsize= 1.000000 +dualbound = 2979034.894594, lowerbound=1214806.894594, norm of subgrad 1102.816800 dualbound = 2979034.894594, lowerbound=1214806.894594, norm of subgrad 39.106940 stepsize= 1.000000 +dualbound = 2979156.993302, lowerbound=1213036.993302, norm of subgrad 1102.009525 dualbound = 2979156.993302, lowerbound=1213036.993302, norm of subgrad 38.859989 stepsize= 1.000000 +dualbound = 2979305.245966, lowerbound=1213754.245966, norm of subgrad 1102.324474 dualbound = 2979305.245966, lowerbound=1213754.245966, norm of subgrad 38.900548 stepsize= 1.000000 +dualbound = 2979411.979874, lowerbound=1214372.979874, norm of subgrad 1102.628215 dualbound = 2979411.979874, lowerbound=1214372.979874, norm of subgrad 39.022223 stepsize= 1.000000 +dualbound = 2979539.502705, lowerbound=1213391.502705, norm of subgrad 1102.174443 dualbound = 2979539.502705, lowerbound=1213391.502705, norm of subgrad 39.045138 stepsize= 1.000000 +dualbound = 2979665.932040, lowerbound=1215580.932040, norm of subgrad 1103.172666 dualbound = 2979665.932040, lowerbound=1215580.932040, norm of subgrad 39.184555 stepsize= 1.000000 +dualbound = 2979802.281971, lowerbound=1211165.281971, norm of subgrad 1101.112747 dualbound = 2979802.281971, lowerbound=1211165.281971, norm of subgrad 37.687530 stepsize= 1.000000 +dualbound = 2979944.942017, lowerbound=1215286.942017, norm of subgrad 1103.041677 dualbound = 2979944.942017, lowerbound=1215286.942017, norm of subgrad 39.454531 stepsize= 1.000000 +dualbound = 2980039.394994, lowerbound=1214858.394994, norm of subgrad 1102.821561 dualbound = 2980039.394994, lowerbound=1214858.394994, norm of subgrad 38.097939 stepsize= 1.000000 +dualbound = 2980185.156731, lowerbound=1210963.156731, norm of subgrad 1101.040034 dualbound = 2980185.156731, lowerbound=1210963.156731, norm of subgrad 38.363547 stepsize= 1.000000 +dualbound = 2980323.022570, lowerbound=1210416.022570, norm of subgrad 1100.824247 dualbound = 2980323.022570, lowerbound=1210416.022570, norm of subgrad 39.190124 stepsize= 1.000000 +dualbound = 2980418.467416, lowerbound=1210958.467416, norm of subgrad 1101.100571 dualbound = 2980418.467416, lowerbound=1210958.467416, norm of subgrad 39.489807 stepsize= 1.000000 +dualbound = 2980546.748703, lowerbound=1215700.748703, norm of subgrad 1103.225158 dualbound = 2980546.748703, lowerbound=1215700.748703, norm of subgrad 39.157136 stepsize= 1.000000 +dualbound = 2980684.924212, lowerbound=1217701.924212, norm of subgrad 1104.154393 dualbound = 2980684.924212, lowerbound=1217701.924212, norm of subgrad 39.914603 stepsize= 1.000000 +dualbound = 2980781.612149, lowerbound=1214203.612149, norm of subgrad 1102.547782 dualbound = 2980781.612149, lowerbound=1214203.612149, norm of subgrad 38.790307 stepsize= 1.000000 +dualbound = 2980933.644252, lowerbound=1212980.644252, norm of subgrad 1101.967170 dualbound = 2980933.644252, lowerbound=1212980.644252, norm of subgrad 38.768958 stepsize= 1.000000 +dualbound = 2981061.266705, lowerbound=1213975.266705, norm of subgrad 1102.449213 dualbound = 2981061.266705, lowerbound=1213975.266705, norm of subgrad 39.327121 stepsize= 1.000000 +dualbound = 2981183.952543, lowerbound=1210404.952543, norm of subgrad 1100.794691 dualbound = 2981183.952543, lowerbound=1210404.952543, norm of subgrad 38.297335 stepsize= 1.000000 +dualbound = 2981317.669587, lowerbound=1216941.669587, norm of subgrad 1103.785156 dualbound = 2981317.669587, lowerbound=1216941.669587, norm of subgrad 39.162700 stepsize= 1.000000 +dualbound = 2981432.336841, lowerbound=1215269.336841, norm of subgrad 1103.011032 dualbound = 2981432.336841, lowerbound=1215269.336841, norm of subgrad 38.453443 stepsize= 1.000000 +dualbound = 2981598.783015, lowerbound=1214883.783015, norm of subgrad 1102.831258 dualbound = 2981598.783015, lowerbound=1214883.783015, norm of subgrad 38.980074 stepsize= 1.000000 +dualbound = 2981692.313356, lowerbound=1213547.313356, norm of subgrad 1102.216092 dualbound = 2981692.313356, lowerbound=1213547.313356, norm of subgrad 37.769437 stepsize= 1.000000 +dualbound = 2981826.038449, lowerbound=1209900.038449, norm of subgrad 1100.622569 dualbound = 2981826.038449, lowerbound=1209900.038449, norm of subgrad 40.046537 stepsize= 1.000000 +dualbound = 2981920.120020, lowerbound=1209232.120020, norm of subgrad 1100.299105 dualbound = 2981920.120020, lowerbound=1209232.120020, norm of subgrad 38.988223 stepsize= 1.000000 +dualbound = 2982090.361348, lowerbound=1212802.361348, norm of subgrad 1101.881283 dualbound = 2982090.361348, lowerbound=1212802.361348, norm of subgrad 38.861824 stepsize= 1.000000 +dualbound = 2982206.329553, lowerbound=1214411.329553, norm of subgrad 1102.633815 dualbound = 2982206.329553, lowerbound=1214411.329553, norm of subgrad 38.806806 stepsize= 1.000000 +dualbound = 2982312.884343, lowerbound=1216777.884343, norm of subgrad 1103.743577 dualbound = 2982312.884343, lowerbound=1216777.884343, norm of subgrad 39.731031 stepsize= 1.000000 +dualbound = 2982435.588504, lowerbound=1216711.588504, norm of subgrad 1103.702219 dualbound = 2982435.588504, lowerbound=1216711.588504, norm of subgrad 39.619492 stepsize= 1.000000 +dualbound = 2982583.967630, lowerbound=1220443.967630, norm of subgrad 1105.368250 dualbound = 2982583.967630, lowerbound=1220443.967630, norm of subgrad 39.285864 stepsize= 1.000000 +dualbound = 2982702.640607, lowerbound=1212378.640607, norm of subgrad 1101.690356 dualbound = 2982702.640607, lowerbound=1212378.640607, norm of subgrad 38.231832 stepsize= 1.000000 +dualbound = 2982840.813574, lowerbound=1214168.813574, norm of subgrad 1102.509779 dualbound = 2982840.813574, lowerbound=1214168.813574, norm of subgrad 38.693319 stepsize= 1.000000 +dualbound = 2982970.620080, lowerbound=1214028.620080, norm of subgrad 1102.452094 dualbound = 2982970.620080, lowerbound=1214028.620080, norm of subgrad 38.753148 stepsize= 1.000000 +dualbound = 2983082.701113, lowerbound=1208986.701113, norm of subgrad 1100.136674 dualbound = 2983082.701113, lowerbound=1208986.701113, norm of subgrad 37.763488 stepsize= 1.000000 +dualbound = 2983235.652532, lowerbound=1216831.652532, norm of subgrad 1103.671895 dualbound = 2983235.652532, lowerbound=1216831.652532, norm of subgrad 37.589246 stepsize= 1.000000 +dualbound = 2983353.645078, lowerbound=1211891.645078, norm of subgrad 1101.498364 dualbound = 2983353.645078, lowerbound=1211891.645078, norm of subgrad 39.051153 stepsize= 1.000000 +dualbound = 2983444.927341, lowerbound=1215828.927341, norm of subgrad 1103.284155 dualbound = 2983444.927341, lowerbound=1215828.927341, norm of subgrad 38.707651 stepsize= 1.000000 +dualbound = 2983581.701951, lowerbound=1211782.701951, norm of subgrad 1101.450272 dualbound = 2983581.701951, lowerbound=1211782.701951, norm of subgrad 39.329056 stepsize= 1.000000 +dualbound = 2983710.436469, lowerbound=1216671.436469, norm of subgrad 1103.656847 dualbound = 2983710.436469, lowerbound=1216671.436469, norm of subgrad 38.932435 stepsize= 1.000000 +dualbound = 2983843.528291, lowerbound=1214769.528291, norm of subgrad 1102.805753 dualbound = 2983843.528291, lowerbound=1214769.528291, norm of subgrad 39.294934 stepsize= 1.000000 +dualbound = 2983956.056702, lowerbound=1217459.056702, norm of subgrad 1104.009084 dualbound = 2983956.056702, lowerbound=1217459.056702, norm of subgrad 38.594409 stepsize= 1.000000 +dualbound = 2984113.602668, lowerbound=1210978.602668, norm of subgrad 1101.062942 dualbound = 2984113.602668, lowerbound=1210978.602668, norm of subgrad 38.968525 stepsize= 1.000000 +dualbound = 2984220.980776, lowerbound=1213667.980776, norm of subgrad 1102.307117 dualbound = 2984220.980776, lowerbound=1213667.980776, norm of subgrad 38.992026 stepsize= 1.000000 +dualbound = 2984344.250482, lowerbound=1215185.250482, norm of subgrad 1103.011446 dualbound = 2984344.250482, lowerbound=1215185.250482, norm of subgrad 39.651856 stepsize= 1.000000 +dualbound = 2984467.901212, lowerbound=1214475.901212, norm of subgrad 1102.678966 dualbound = 2984467.901212, lowerbound=1214475.901212, norm of subgrad 39.352900 stepsize= 1.000000 +dualbound = 2984594.834856, lowerbound=1213666.834856, norm of subgrad 1102.315669 dualbound = 2984594.834856, lowerbound=1213666.834856, norm of subgrad 39.495995 stepsize= 1.000000 +dualbound = 2984711.818550, lowerbound=1214606.818550, norm of subgrad 1102.737874 dualbound = 2984711.818550, lowerbound=1214606.818550, norm of subgrad 39.255365 stepsize= 1.000000 +dualbound = 2984846.851785, lowerbound=1213449.851785, norm of subgrad 1102.208171 dualbound = 2984846.851785, lowerbound=1213449.851785, norm of subgrad 39.345053 stepsize= 1.000000 +dualbound = 2984981.162303, lowerbound=1215421.162303, norm of subgrad 1103.080760 dualbound = 2984981.162303, lowerbound=1215421.162303, norm of subgrad 38.733842 stepsize= 1.000000 +dualbound = 2985114.669218, lowerbound=1215118.669218, norm of subgrad 1102.964945 dualbound = 2985114.669218, lowerbound=1215118.669218, norm of subgrad 39.325652 stepsize= 1.000000 +dualbound = 2985213.177940, lowerbound=1211868.177940, norm of subgrad 1101.478179 dualbound = 2985213.177940, lowerbound=1211868.177940, norm of subgrad 38.529323 stepsize= 1.000000 +dualbound = 2985351.539318, lowerbound=1211885.539318, norm of subgrad 1101.493322 dualbound = 2985351.539318, lowerbound=1211885.539318, norm of subgrad 39.247438 stepsize= 1.000000 +dualbound = 2985504.908574, lowerbound=1213809.908574, norm of subgrad 1102.349268 dualbound = 2985504.908574, lowerbound=1213809.908574, norm of subgrad 38.953424 stepsize= 1.000000 +dualbound = 2985593.527756, lowerbound=1208526.527756, norm of subgrad 1099.962057 dualbound = 2985593.527756, lowerbound=1208526.527756, norm of subgrad 38.452818 stepsize= 1.000000 +dualbound = 2985748.757129, lowerbound=1216432.757129, norm of subgrad 1103.513370 dualbound = 2985748.757129, lowerbound=1216432.757129, norm of subgrad 38.265250 stepsize= 1.000000 +dualbound = 2985885.427073, lowerbound=1213446.427073, norm of subgrad 1102.177584 dualbound = 2985885.427073, lowerbound=1213446.427073, norm of subgrad 38.544389 stepsize= 1.000000 +dualbound = 2986002.193688, lowerbound=1214251.193688, norm of subgrad 1102.535348 dualbound = 2986002.193688, lowerbound=1214251.193688, norm of subgrad 38.075801 stepsize= 1.000000 +dualbound = 2986140.673294, lowerbound=1217498.673294, norm of subgrad 1104.001664 dualbound = 2986140.673294, lowerbound=1217498.673294, norm of subgrad 38.203136 stepsize= 1.000000 +dualbound = 2986272.090209, lowerbound=1214681.090209, norm of subgrad 1102.739811 dualbound = 2986272.090209, lowerbound=1214681.090209, norm of subgrad 38.541107 stepsize= 1.000000 +dualbound = 2986367.800558, lowerbound=1212884.800558, norm of subgrad 1101.949092 dualbound = 2986367.800558, lowerbound=1212884.800558, norm of subgrad 38.764808 stepsize= 1.000000 +dualbound = 2986512.994034, lowerbound=1215595.994034, norm of subgrad 1103.160910 dualbound = 2986512.994034, lowerbound=1215595.994034, norm of subgrad 38.899788 stepsize= 1.000000 +dualbound = 2986632.120657, lowerbound=1212840.120657, norm of subgrad 1101.909761 dualbound = 2986632.120657, lowerbound=1212840.120657, norm of subgrad 38.524364 stepsize= 1.000000 +dualbound = 2986767.244649, lowerbound=1221225.244649, norm of subgrad 1105.706672 dualbound = 2986767.244649, lowerbound=1221225.244649, norm of subgrad 38.692687 stepsize= 1.000000 +dualbound = 2986891.098459, lowerbound=1208219.098459, norm of subgrad 1099.817757 dualbound = 2986891.098459, lowerbound=1208219.098459, norm of subgrad 38.779554 stepsize= 1.000000 +dualbound = 2987012.550958, lowerbound=1216667.550958, norm of subgrad 1103.667319 dualbound = 2987012.550958, lowerbound=1216667.550958, norm of subgrad 39.184850 stepsize= 1.000000 +dualbound = 2987141.126595, lowerbound=1214203.126595, norm of subgrad 1102.538492 dualbound = 2987141.126595, lowerbound=1214203.126595, norm of subgrad 38.943236 stepsize= 1.000000 +dualbound = 2987269.855669, lowerbound=1214921.855669, norm of subgrad 1102.901562 dualbound = 2987269.855669, lowerbound=1214921.855669, norm of subgrad 39.984110 stepsize= 1.000000 +dualbound = 2987353.925569, lowerbound=1211048.925569, norm of subgrad 1101.129386 dualbound = 2987353.925569, lowerbound=1211048.925569, norm of subgrad 39.000896 stepsize= 1.000000 +dualbound = 2987540.456639, lowerbound=1210209.456639, norm of subgrad 1100.710433 dualbound = 2987540.456639, lowerbound=1210209.456639, norm of subgrad 39.249600 stepsize= 1.000000 +dualbound = 2987650.389578, lowerbound=1215216.389578, norm of subgrad 1103.030548 dualbound = 2987650.389578, lowerbound=1215216.389578, norm of subgrad 39.622379 stepsize= 1.000000 +dualbound = 2987752.411224, lowerbound=1213372.411224, norm of subgrad 1102.150358 dualbound = 2987752.411224, lowerbound=1213372.411224, norm of subgrad 38.275601 stepsize= 1.000000 +dualbound = 2987927.453672, lowerbound=1215166.453672, norm of subgrad 1102.959860 dualbound = 2987927.453672, lowerbound=1215166.453672, norm of subgrad 39.102972 stepsize= 1.000000 +dualbound = 2988052.413635, lowerbound=1215481.413635, norm of subgrad 1103.091752 dualbound = 2988052.413635, lowerbound=1215481.413635, norm of subgrad 38.143937 stepsize= 1.000000 +dualbound = 2988158.225350, lowerbound=1213362.225350, norm of subgrad 1102.192463 dualbound = 2988158.225350, lowerbound=1213362.225350, norm of subgrad 39.646081 stepsize= 1.000000 +dualbound = 2988237.670560, lowerbound=1217327.670560, norm of subgrad 1103.967695 dualbound = 2988237.670560, lowerbound=1217327.670560, norm of subgrad 38.683914 stepsize= 1.000000 +dualbound = 2988420.466653, lowerbound=1212211.466653, norm of subgrad 1101.633999 dualbound = 2988420.466653, lowerbound=1212211.466653, norm of subgrad 39.608031 stepsize= 1.000000 +dualbound = 2988521.598756, lowerbound=1219395.598756, norm of subgrad 1104.888501 dualbound = 2988521.598756, lowerbound=1219395.598756, norm of subgrad 38.524435 stepsize= 1.000000 +dualbound = 2988656.546443, lowerbound=1214831.546443, norm of subgrad 1102.804854 dualbound = 2988656.546443, lowerbound=1214831.546443, norm of subgrad 38.496074 stepsize= 1.000000 +dualbound = 2988789.255803, lowerbound=1215834.255803, norm of subgrad 1103.275240 dualbound = 2988789.255803, lowerbound=1215834.255803, norm of subgrad 38.919267 stepsize= 1.000000 +dualbound = 2988906.288590, lowerbound=1210052.288590, norm of subgrad 1100.659933 dualbound = 2988906.288590, lowerbound=1210052.288590, norm of subgrad 38.949105 stepsize= 1.000000 +dualbound = 2989024.734377, lowerbound=1218689.734377, norm of subgrad 1104.594375 dualbound = 2989024.734377, lowerbound=1218689.734377, norm of subgrad 39.464488 stepsize= 1.000000 +dualbound = 2989168.485782, lowerbound=1214902.485782, norm of subgrad 1102.825682 dualbound = 2989168.485782, lowerbound=1214902.485782, norm of subgrad 38.285133 stepsize= 1.000000 +dualbound = 2989316.580342, lowerbound=1212562.580342, norm of subgrad 1101.791078 dualbound = 2989316.580342, lowerbound=1212562.580342, norm of subgrad 39.103639 stepsize= 1.000000 +dualbound = 2989412.920267, lowerbound=1217430.920267, norm of subgrad 1104.024873 dualbound = 2989412.920267, lowerbound=1217430.920267, norm of subgrad 39.196172 stepsize= 1.000000 +dualbound = 2989544.502200, lowerbound=1212220.502200, norm of subgrad 1101.608598 dualbound = 2989544.502200, lowerbound=1212220.502200, norm of subgrad 38.112753 stepsize= 1.000000 +dualbound = 2989694.316850, lowerbound=1215540.316850, norm of subgrad 1103.109386 dualbound = 2989694.316850, lowerbound=1215540.316850, norm of subgrad 38.207521 stepsize= 1.000000 +dualbound = 2989809.305066, lowerbound=1217506.305066, norm of subgrad 1104.009196 dualbound = 2989809.305066, lowerbound=1217506.305066, norm of subgrad 38.013001 stepsize= 1.000000 +dualbound = 2989939.930216, lowerbound=1210948.930216, norm of subgrad 1101.033574 dualbound = 2989939.930216, lowerbound=1210948.930216, norm of subgrad 38.165759 stepsize= 1.000000 +dualbound = 2990052.611893, lowerbound=1212672.611893, norm of subgrad 1101.822859 dualbound = 2990052.611893, lowerbound=1212672.611893, norm of subgrad 38.127178 stepsize= 1.000000 +dualbound = 2990186.164195, lowerbound=1213186.164195, norm of subgrad 1102.030020 dualbound = 2990186.164195, lowerbound=1213186.164195, norm of subgrad 37.650396 stepsize= 1.000000 +dualbound = 2990324.759046, lowerbound=1219115.759046, norm of subgrad 1104.773171 dualbound = 2990324.759046, lowerbound=1219115.759046, norm of subgrad 39.326770 stepsize= 1.000000 +dualbound = 2990399.054811, lowerbound=1215168.054811, norm of subgrad 1102.984159 dualbound = 2990399.054811, lowerbound=1215168.054811, norm of subgrad 38.474612 stepsize= 1.000000 +dualbound = 2990536.881564, lowerbound=1210540.881564, norm of subgrad 1100.883682 dualbound = 2990536.881564, lowerbound=1210540.881564, norm of subgrad 39.266102 stepsize= 1.000000 +dualbound = 2990651.574569, lowerbound=1215419.574569, norm of subgrad 1103.114035 dualbound = 2990651.574569, lowerbound=1215419.574569, norm of subgrad 39.442274 stepsize= 1.000000 +dualbound = 2990789.515913, lowerbound=1216875.515913, norm of subgrad 1103.771043 dualbound = 2990789.515913, lowerbound=1216875.515913, norm of subgrad 39.660325 stepsize= 1.000000 +dualbound = 2990905.620635, lowerbound=1213612.620635, norm of subgrad 1102.282913 dualbound = 2990905.620635, lowerbound=1213612.620635, norm of subgrad 39.129333 stepsize= 1.000000 +dualbound = 2991023.264998, lowerbound=1213866.264998, norm of subgrad 1102.398868 dualbound = 2991023.264998, lowerbound=1213866.264998, norm of subgrad 39.174537 stepsize= 1.000000 +dualbound = 2991160.433970, lowerbound=1216462.433970, norm of subgrad 1103.587529 dualbound = 2991160.433970, lowerbound=1216462.433970, norm of subgrad 39.751339 stepsize= 1.000000 +dualbound = 2991305.302285, lowerbound=1214926.302285, norm of subgrad 1102.850988 dualbound = 2991305.302285, lowerbound=1214926.302285, norm of subgrad 38.715221 stepsize= 1.000000 +dualbound = 2991424.442403, lowerbound=1214663.442403, norm of subgrad 1102.744958 dualbound = 2991424.442403, lowerbound=1214663.442403, norm of subgrad 38.757452 stepsize= 1.000000 +dualbound = 2991567.227568, lowerbound=1217825.227568, norm of subgrad 1104.184870 dualbound = 2991567.227568, lowerbound=1217825.227568, norm of subgrad 39.265572 stepsize= 1.000000 +dualbound = 2991676.453143, lowerbound=1211908.453143, norm of subgrad 1101.482389 dualbound = 2991676.453143, lowerbound=1211908.453143, norm of subgrad 38.265201 stepsize= 1.000000 +dualbound = 2991810.740336, lowerbound=1215216.740336, norm of subgrad 1102.994443 dualbound = 2991810.740336, lowerbound=1215216.740336, norm of subgrad 38.913843 stepsize= 1.000000 +dualbound = 2991921.771793, lowerbound=1215953.771793, norm of subgrad 1103.340279 dualbound = 2991921.771793, lowerbound=1215953.771793, norm of subgrad 38.949088 stepsize= 1.000000 +dualbound = 2992063.822314, lowerbound=1217903.822314, norm of subgrad 1104.204611 dualbound = 2992063.822314, lowerbound=1217903.822314, norm of subgrad 38.807867 stepsize= 1.000000 +dualbound = 2992155.681113, lowerbound=1212152.681113, norm of subgrad 1101.648166 dualbound = 2992155.681113, lowerbound=1212152.681113, norm of subgrad 39.596197 stepsize= 1.000000 +dualbound = 2992301.943313, lowerbound=1217814.943313, norm of subgrad 1104.185194 dualbound = 2992301.943313, lowerbound=1217814.943313, norm of subgrad 39.449489 stepsize= 1.000000 +dualbound = 2992427.873888, lowerbound=1214230.873888, norm of subgrad 1102.550168 dualbound = 2992427.873888, lowerbound=1214230.873888, norm of subgrad 38.883551 stepsize= 1.000000 +dualbound = 2992589.403886, lowerbound=1208894.403886, norm of subgrad 1100.106542 dualbound = 2992589.403886, lowerbound=1208894.403886, norm of subgrad 38.749581 stepsize= 1.000000 +dualbound = 2992686.892773, lowerbound=1216964.892773, norm of subgrad 1103.795222 dualbound = 2992686.892773, lowerbound=1216964.892773, norm of subgrad 38.684479 stepsize= 1.000000 +dualbound = 2992818.958794, lowerbound=1212775.958794, norm of subgrad 1101.912410 dualbound = 2992818.958794, lowerbound=1212775.958794, norm of subgrad 39.586185 stepsize= 1.000000 +dualbound = 2992932.259274, lowerbound=1215103.259274, norm of subgrad 1102.976999 dualbound = 2992932.259274, lowerbound=1215103.259274, norm of subgrad 39.601774 stepsize= 1.000000 +dualbound = 2993057.487996, lowerbound=1221669.487996, norm of subgrad 1105.926077 dualbound = 2993057.487996, lowerbound=1221669.487996, norm of subgrad 39.092566 stepsize= 1.000000 +dualbound = 2993232.063255, lowerbound=1215720.063255, norm of subgrad 1103.199467 dualbound = 2993232.063255, lowerbound=1215720.063255, norm of subgrad 38.775962 stepsize= 1.000000 +dualbound = 2993332.545815, lowerbound=1212164.545815, norm of subgrad 1101.629950 dualbound = 2993332.545815, lowerbound=1212164.545815, norm of subgrad 39.044623 stepsize= 1.000000 +dualbound = 2993439.792043, lowerbound=1215052.792043, norm of subgrad 1102.924654 dualbound = 2993439.792043, lowerbound=1215052.792043, norm of subgrad 38.694266 stepsize= 1.000000 +dualbound = 2993569.838194, lowerbound=1211695.838195, norm of subgrad 1101.401307 dualbound = 2993569.838194, lowerbound=1211695.838195, norm of subgrad 38.974943 stepsize= 1.000000 +dualbound = 2993700.461362, lowerbound=1214967.461362, norm of subgrad 1102.902290 dualbound = 2993700.461362, lowerbound=1214967.461362, norm of subgrad 39.454064 stepsize= 1.000000 +dualbound = 2993785.541117, lowerbound=1216193.541117, norm of subgrad 1103.449836 dualbound = 2993785.541117, lowerbound=1216193.541117, norm of subgrad 38.640390 stepsize= 1.000000 +dualbound = 2993945.066805, lowerbound=1215448.066805, norm of subgrad 1103.118338 dualbound = 2993945.066805, lowerbound=1215448.066805, norm of subgrad 39.768401 stepsize= 1.000000 +dualbound = 2994056.459347, lowerbound=1213859.459347, norm of subgrad 1102.367207 dualbound = 2994056.459347, lowerbound=1213859.459347, norm of subgrad 38.280446 stepsize= 1.000000 +dualbound = 2994204.958081, lowerbound=1221995.958081, norm of subgrad 1106.069599 dualbound = 2994204.958081, lowerbound=1221995.958081, norm of subgrad 39.274658 stepsize= 1.000000 +dualbound = 2994308.877926, lowerbound=1210618.877926, norm of subgrad 1100.920468 dualbound = 2994308.877926, lowerbound=1210618.877926, norm of subgrad 38.870552 stepsize= 1.000000 +dualbound = 2994451.312806, lowerbound=1213603.312806, norm of subgrad 1102.284588 dualbound = 2994451.312806, lowerbound=1213603.312806, norm of subgrad 39.628713 stepsize= 1.000000 +dualbound = 2994571.309121, lowerbound=1214788.309121, norm of subgrad 1102.794319 dualbound = 2994571.309121, lowerbound=1214788.309121, norm of subgrad 38.561591 stepsize= 1.000000 +dualbound = 2994723.296949, lowerbound=1220261.296949, norm of subgrad 1105.266618 dualbound = 2994723.296949, lowerbound=1220261.296949, norm of subgrad 38.794173 stepsize= 1.000000 +dualbound = 2994822.817627, lowerbound=1211888.817627, norm of subgrad 1101.450779 dualbound = 2994822.817627, lowerbound=1211888.817627, norm of subgrad 37.476935 stepsize= 1.000000 +dualbound = 2994978.497635, lowerbound=1215006.497635, norm of subgrad 1102.897773 dualbound = 2994978.497635, lowerbound=1215006.497635, norm of subgrad 39.149457 stepsize= 1.000000 +dualbound = 2995050.672230, lowerbound=1214244.672230, norm of subgrad 1102.566856 dualbound = 2995050.672230, lowerbound=1214244.672230, norm of subgrad 38.486031 stepsize= 1.000000 +dualbound = 2995211.768800, lowerbound=1217000.768800, norm of subgrad 1103.806491 dualbound = 2995211.768800, lowerbound=1217000.768800, norm of subgrad 39.358564 stepsize= 1.000000 +dualbound = 2995326.483843, lowerbound=1217420.483843, norm of subgrad 1104.007013 dualbound = 2995326.483843, lowerbound=1217420.483843, norm of subgrad 39.060402 stepsize= 1.000000 +dualbound = 2995454.506898, lowerbound=1216618.506898, norm of subgrad 1103.636492 dualbound = 2995454.506898, lowerbound=1216618.506898, norm of subgrad 39.025928 stepsize= 1.000000 +dualbound = 2995591.207899, lowerbound=1212647.207899, norm of subgrad 1101.839012 dualbound = 2995591.207899, lowerbound=1212647.207899, norm of subgrad 39.226279 stepsize= 1.000000 +dualbound = 2995707.118879, lowerbound=1214238.118879, norm of subgrad 1102.548012 dualbound = 2995707.118879, lowerbound=1214238.118879, norm of subgrad 38.599365 stepsize= 1.000000 +dualbound = 2995842.339948, lowerbound=1216276.339948, norm of subgrad 1103.480104 dualbound = 2995842.339948, lowerbound=1216276.339948, norm of subgrad 39.079676 stepsize= 1.000000 +dualbound = 2995983.798607, lowerbound=1213953.798607, norm of subgrad 1102.415892 dualbound = 2995983.798607, lowerbound=1213953.798607, norm of subgrad 38.838881 stepsize= 1.000000 +dualbound = 2996086.604506, lowerbound=1214151.604506, norm of subgrad 1102.513766 dualbound = 2996086.604506, lowerbound=1214151.604506, norm of subgrad 38.572087 stepsize= 1.000000 +dualbound = 2996220.773976, lowerbound=1211900.773976, norm of subgrad 1101.499784 dualbound = 2996220.773976, lowerbound=1211900.773976, norm of subgrad 39.181239 stepsize= 1.000000 +dualbound = 2996334.720569, lowerbound=1215314.720569, norm of subgrad 1103.036137 dualbound = 2996334.720569, lowerbound=1215314.720569, norm of subgrad 38.573911 stepsize= 1.000000 +dualbound = 2996465.245269, lowerbound=1218377.245269, norm of subgrad 1104.423037 dualbound = 2996465.245269, lowerbound=1218377.245269, norm of subgrad 38.775310 stepsize= 1.000000 +dualbound = 2996583.195117, lowerbound=1208899.195117, norm of subgrad 1100.157350 dualbound = 2996583.195117, lowerbound=1208899.195117, norm of subgrad 39.559447 stepsize= 1.000000 +dualbound = 2996704.935637, lowerbound=1218535.935637, norm of subgrad 1104.484466 dualbound = 2996704.935637, lowerbound=1218535.935637, norm of subgrad 38.363270 stepsize= 1.000000 +dualbound = 2996861.399480, lowerbound=1213957.399480, norm of subgrad 1102.407547 dualbound = 2996861.399480, lowerbound=1213957.399480, norm of subgrad 38.748727 stepsize= 1.000000 +dualbound = 2996979.958357, lowerbound=1214159.958357, norm of subgrad 1102.527532 dualbound = 2996979.958357, lowerbound=1214159.958357, norm of subgrad 39.058403 stepsize= 1.000000 +dualbound = 2997074.328230, lowerbound=1214887.328230, norm of subgrad 1102.872762 dualbound = 2997074.328230, lowerbound=1214887.328230, norm of subgrad 39.183796 stepsize= 1.000000 +dualbound = 2997206.750765, lowerbound=1217174.750765, norm of subgrad 1103.880768 dualbound = 2997206.750765, lowerbound=1217174.750765, norm of subgrad 38.864155 stepsize= 1.000000 +dualbound = 2997348.843912, lowerbound=1212700.843912, norm of subgrad 1101.862897 dualbound = 2997348.843912, lowerbound=1212700.843912, norm of subgrad 39.282224 stepsize= 1.000000 +dualbound = 2997475.890528, lowerbound=1214203.890528, norm of subgrad 1102.564234 dualbound = 2997475.890528, lowerbound=1214203.890528, norm of subgrad 39.636430 stepsize= 1.000000 +dualbound = 2997562.522028, lowerbound=1215818.522028, norm of subgrad 1103.285784 dualbound = 2997562.522028, lowerbound=1215818.522028, norm of subgrad 38.828231 stepsize= 1.000000 +dualbound = 2997733.554987, lowerbound=1216332.554987, norm of subgrad 1103.490623 dualbound = 2997733.554987, lowerbound=1216332.554987, norm of subgrad 39.115636 stepsize= 1.000000 +dualbound = 2997846.937931, lowerbound=1215454.937931, norm of subgrad 1103.096976 dualbound = 2997846.937931, lowerbound=1215454.937931, norm of subgrad 38.488738 stepsize= 1.000000 +dualbound = 2997995.273393, lowerbound=1211736.273393, norm of subgrad 1101.431466 dualbound = 2997995.273393, lowerbound=1211736.273393, norm of subgrad 39.539037 stepsize= 1.000000 +dualbound = 2998084.188834, lowerbound=1216316.188834, norm of subgrad 1103.508128 dualbound = 2998084.188834, lowerbound=1216316.188834, norm of subgrad 38.767453 stepsize= 1.000000 +dualbound = 2998250.126023, lowerbound=1216009.126023, norm of subgrad 1103.319141 dualbound = 2998250.126023, lowerbound=1216009.126023, norm of subgrad 38.339760 stepsize= 1.000000 +dualbound = 2998355.242839, lowerbound=1219879.242839, norm of subgrad 1105.100558 dualbound = 2998355.242839, lowerbound=1219879.242839, norm of subgrad 38.381204 stepsize= 1.000000 +dualbound = 2998469.414272, lowerbound=1212690.414272, norm of subgrad 1101.883576 dualbound = 2998469.414272, lowerbound=1212690.414272, norm of subgrad 39.638005 stepsize= 1.000000 +dualbound = 2998597.615936, lowerbound=1217231.615936, norm of subgrad 1103.899278 dualbound = 2998597.615936, lowerbound=1217231.615936, norm of subgrad 38.603130 stepsize= 1.000000 +dualbound = 2998703.949437, lowerbound=1217692.949437, norm of subgrad 1104.133574 dualbound = 2998703.949437, lowerbound=1217692.949437, norm of subgrad 39.042714 stepsize= 1.000000 +dualbound = 2998834.434891, lowerbound=1215739.434891, norm of subgrad 1103.217764 dualbound = 2998834.434891, lowerbound=1215739.434891, norm of subgrad 38.477077 stepsize= 1.000000 +dualbound = 2998985.875127, lowerbound=1216911.875127, norm of subgrad 1103.750368 dualbound = 2998985.875127, lowerbound=1216911.875127, norm of subgrad 38.787114 stepsize= 1.000000 +dualbound = 2999084.741198, lowerbound=1212565.741198, norm of subgrad 1101.772091 dualbound = 2999084.741198, lowerbound=1212565.741198, norm of subgrad 37.879626 stepsize= 1.000000 +dualbound = 2999260.885023, lowerbound=1216712.885023, norm of subgrad 1103.643459 dualbound = 2999260.885023, lowerbound=1216712.885023, norm of subgrad 38.628278 stepsize= 1.000000 +dualbound = 2999341.237943, lowerbound=1208403.237943, norm of subgrad 1099.915105 dualbound = 2999341.237943, lowerbound=1208403.237943, norm of subgrad 38.605089 stepsize= 1.000000 +dualbound = 2999451.182825, lowerbound=1215129.182825, norm of subgrad 1102.983764 dualbound = 2999451.182825, lowerbound=1215129.182825, norm of subgrad 39.420108 stepsize= 1.000000 +dualbound = 2999582.429062, lowerbound=1219691.429062, norm of subgrad 1105.018746 dualbound = 2999582.429062, lowerbound=1219691.429062, norm of subgrad 38.810388 stepsize= 1.000000 +dualbound = 2999731.421385, lowerbound=1213836.421385, norm of subgrad 1102.354943 dualbound = 2999731.421385, lowerbound=1213836.421385, norm of subgrad 38.716822 stepsize= 1.000000 +dualbound = 2999844.131104, lowerbound=1215856.131104, norm of subgrad 1103.263854 dualbound = 2999844.131104, lowerbound=1215856.131104, norm of subgrad 38.048781 stepsize= 1.000000 +dualbound = 2999986.552350, lowerbound=1218260.552350, norm of subgrad 1104.373828 dualbound = 2999986.552350, lowerbound=1218260.552350, norm of subgrad 39.031029 stepsize= 1.000000 +dualbound = 3000112.563789, lowerbound=1211277.563789, norm of subgrad 1101.195516 dualbound = 3000112.563789, lowerbound=1211277.563789, norm of subgrad 38.470917 stepsize= 1.000000 +dualbound = 3000211.101098, lowerbound=1214181.101098, norm of subgrad 1102.514445 dualbound = 3000211.101098, lowerbound=1214181.101098, norm of subgrad 38.151505 stepsize= 1.000000 +dualbound = 3000351.982286, lowerbound=1217566.982286, norm of subgrad 1104.033959 dualbound = 3000351.982286, lowerbound=1217566.982286, norm of subgrad 38.273766 stepsize= 1.000000 +dualbound = 3000484.488119, lowerbound=1216943.488119, norm of subgrad 1103.763330 dualbound = 3000484.488119, lowerbound=1216943.488119, norm of subgrad 38.503322 stepsize= 1.000000 +dualbound = 3000607.063895, lowerbound=1216791.063895, norm of subgrad 1103.696998 dualbound = 3000607.063895, lowerbound=1216791.063895, norm of subgrad 38.452253 stepsize= 1.000000 +dualbound = 3000758.413983, lowerbound=1214154.413983, norm of subgrad 1102.515494 dualbound = 3000758.413983, lowerbound=1214154.413983, norm of subgrad 39.209056 stepsize= 1.000000 +dualbound = 3000844.434813, lowerbound=1213252.434813, norm of subgrad 1102.134490 dualbound = 3000844.434813, lowerbound=1213252.434813, norm of subgrad 39.166578 stepsize= 1.000000 +dualbound = 3000971.289288, lowerbound=1211036.289288, norm of subgrad 1101.125465 dualbound = 3000971.289288, lowerbound=1211036.289288, norm of subgrad 39.596142 stepsize= 1.000000 +dualbound = 3001079.705918, lowerbound=1217375.705918, norm of subgrad 1104.003490 dualbound = 3001079.705918, lowerbound=1217375.705918, norm of subgrad 39.451446 stepsize= 1.000000 +dualbound = 3001200.179501, lowerbound=1215503.179501, norm of subgrad 1103.135612 dualbound = 3001200.179501, lowerbound=1215503.179501, norm of subgrad 39.057312 stepsize= 1.000000 +dualbound = 3001347.676489, lowerbound=1216147.676489, norm of subgrad 1103.414553 dualbound = 3001347.676489, lowerbound=1216147.676489, norm of subgrad 39.032000 stepsize= 1.000000 +dualbound = 3001493.572042, lowerbound=1215367.572042, norm of subgrad 1103.042870 dualbound = 3001493.572042, lowerbound=1215367.572042, norm of subgrad 38.495397 stepsize= 1.000000 +dualbound = 3001586.914051, lowerbound=1216708.914051, norm of subgrad 1103.657517 dualbound = 3001586.914051, lowerbound=1216708.914051, norm of subgrad 38.004500 stepsize= 1.000000 +dualbound = 3001727.462324, lowerbound=1219505.462324, norm of subgrad 1104.943647 dualbound = 3001727.462324, lowerbound=1219505.462324, norm of subgrad 39.186072 stepsize= 1.000000 +dualbound = 3001832.506327, lowerbound=1217282.506327, norm of subgrad 1103.950409 dualbound = 3001832.506327, lowerbound=1217282.506327, norm of subgrad 39.102992 stepsize= 1.000000 +dualbound = 3001958.530205, lowerbound=1210722.530205, norm of subgrad 1100.943473 dualbound = 3001958.530205, lowerbound=1210722.530205, norm of subgrad 38.471078 stepsize= 1.000000 +dualbound = 3002101.827850, lowerbound=1216873.827850, norm of subgrad 1103.751706 dualbound = 3002101.827850, lowerbound=1216873.827850, norm of subgrad 39.208387 stepsize= 1.000000 +dualbound = 3002222.603364, lowerbound=1216645.603364, norm of subgrad 1103.628834 dualbound = 3002222.603364, lowerbound=1216645.603364, norm of subgrad 38.363727 stepsize= 1.000000 +dualbound = 3002359.943421, lowerbound=1213986.943421, norm of subgrad 1102.413236 dualbound = 3002359.943421, lowerbound=1213986.943421, norm of subgrad 38.279760 stepsize= 1.000000 +dualbound = 3002475.876414, lowerbound=1208491.876414, norm of subgrad 1099.898121 dualbound = 3002475.876414, lowerbound=1208491.876414, norm of subgrad 37.415678 stepsize= 1.000000 +dualbound = 3002614.910944, lowerbound=1221441.910944, norm of subgrad 1105.803288 dualbound = 3002614.910944, lowerbound=1221441.910944, norm of subgrad 38.704451 stepsize= 1.000000 +dualbound = 3002730.682976, lowerbound=1214816.682976, norm of subgrad 1102.793581 dualbound = 3002730.682976, lowerbound=1214816.682976, norm of subgrad 38.115247 stepsize= 1.000000 +dualbound = 3002861.744237, lowerbound=1212708.744237, norm of subgrad 1101.851507 dualbound = 3002861.744237, lowerbound=1212708.744237, norm of subgrad 38.717713 stepsize= 1.000000 +dualbound = 3002984.924156, lowerbound=1215721.924156, norm of subgrad 1103.227503 dualbound = 3002984.924156, lowerbound=1215721.924156, norm of subgrad 38.886758 stepsize= 1.000000 +dualbound = 3003102.485008, lowerbound=1210893.485008, norm of subgrad 1101.044724 dualbound = 3003102.485008, lowerbound=1210893.485008, norm of subgrad 39.032818 stepsize= 1.000000 +dualbound = 3003218.733117, lowerbound=1216097.733117, norm of subgrad 1103.432251 dualbound = 3003218.733117, lowerbound=1216097.733117, norm of subgrad 39.764911 stepsize= 1.000000 +dualbound = 3003327.506975, lowerbound=1219656.506975, norm of subgrad 1105.000229 dualbound = 3003327.506975, lowerbound=1219656.506975, norm of subgrad 38.441824 stepsize= 1.000000 +dualbound = 3003483.780456, lowerbound=1214439.780456, norm of subgrad 1102.644449 dualbound = 3003483.780456, lowerbound=1214439.780456, norm of subgrad 39.259056 stepsize= 1.000000 +dualbound = 3003611.527310, lowerbound=1216097.527310, norm of subgrad 1103.380953 dualbound = 3003611.527310, lowerbound=1216097.527310, norm of subgrad 38.467478 stepsize= 1.000000 +dualbound = 3003739.793203, lowerbound=1215520.793203, norm of subgrad 1103.125466 dualbound = 3003739.793203, lowerbound=1215520.793203, norm of subgrad 38.642799 stepsize= 1.000000 +dualbound = 3003878.156010, lowerbound=1213069.156010, norm of subgrad 1102.039544 dualbound = 3003878.156010, lowerbound=1213069.156010, norm of subgrad 39.501428 stepsize= 1.000000 +dualbound = 3003949.285963, lowerbound=1215074.285963, norm of subgrad 1102.964771 dualbound = 3003949.285963, lowerbound=1215074.285963, norm of subgrad 39.091303 stepsize= 1.000000 +dualbound = 3004118.448967, lowerbound=1214241.448967, norm of subgrad 1102.556778 dualbound = 3004118.448967, lowerbound=1214241.448967, norm of subgrad 39.486238 stepsize= 1.000000 +dualbound = 3004221.482124, lowerbound=1213249.482124, norm of subgrad 1102.135873 dualbound = 3004221.482124, lowerbound=1213249.482124, norm of subgrad 39.459259 stepsize= 1.000000 +dualbound = 3004350.660328, lowerbound=1216148.660328, norm of subgrad 1103.404577 dualbound = 3004350.660328, lowerbound=1216148.660328, norm of subgrad 38.499068 stepsize= 1.000000 +dualbound = 3004492.995414, lowerbound=1214499.995414, norm of subgrad 1102.668579 dualbound = 3004492.995414, lowerbound=1214499.995414, norm of subgrad 38.991475 stepsize= 1.000000 +dualbound = 3004610.450023, lowerbound=1220200.450023, norm of subgrad 1105.249044 dualbound = 3004610.450023, lowerbound=1220200.450023, norm of subgrad 38.632300 stepsize= 1.000000 +dualbound = 3004747.800241, lowerbound=1213627.800241, norm of subgrad 1102.250335 dualbound = 3004747.800241, lowerbound=1213627.800241, norm of subgrad 38.279893 stepsize= 1.000000 +dualbound = 3004882.289288, lowerbound=1220145.289288, norm of subgrad 1105.203732 dualbound = 3004882.289288, lowerbound=1220145.289288, norm of subgrad 38.268643 stepsize= 1.000000 +dualbound = 3004996.990137, lowerbound=1214941.990137, norm of subgrad 1102.811856 dualbound = 3004996.990137, lowerbound=1214941.990137, norm of subgrad 36.968917 stepsize= 1.000000 +dualbound = 3005125.247512, lowerbound=1214698.247512, norm of subgrad 1102.740335 dualbound = 3005125.247512, lowerbound=1214698.247512, norm of subgrad 38.291740 stepsize= 1.000000 +dualbound = 3005224.306942, lowerbound=1215021.306942, norm of subgrad 1102.929421 dualbound = 3005224.306942, lowerbound=1215021.306942, norm of subgrad 39.128755 stepsize= 1.000000 +dualbound = 3005357.002546, lowerbound=1217243.002546, norm of subgrad 1103.897641 dualbound = 3005357.002546, lowerbound=1217243.002546, norm of subgrad 38.466812 stepsize= 1.000000 +dualbound = 3005483.272530, lowerbound=1212671.272530, norm of subgrad 1101.844940 dualbound = 3005483.272530, lowerbound=1212671.272530, norm of subgrad 38.952150 stepsize= 1.000000 +dualbound = 3005604.514336, lowerbound=1216141.514336, norm of subgrad 1103.391370 dualbound = 3005604.514336, lowerbound=1216141.514336, norm of subgrad 38.108291 stepsize= 1.000000 +dualbound = 3005759.688385, lowerbound=1216409.688385, norm of subgrad 1103.512885 dualbound = 3005759.688385, lowerbound=1216409.688385, norm of subgrad 38.550928 stepsize= 1.000000 +dualbound = 3005858.888026, lowerbound=1214064.888026, norm of subgrad 1102.487137 dualbound = 3005858.888026, lowerbound=1214064.888026, norm of subgrad 38.887011 stepsize= 1.000000 +dualbound = 3005974.804199, lowerbound=1214119.804199, norm of subgrad 1102.496623 dualbound = 3005974.804199, lowerbound=1214119.804199, norm of subgrad 38.664146 stepsize= 1.000000 +dualbound = 3006117.853926, lowerbound=1218807.853926, norm of subgrad 1104.614799 dualbound = 3006117.853926, lowerbound=1218807.853926, norm of subgrad 38.846489 stepsize= 1.000000 +dualbound = 3006239.815587, lowerbound=1213409.815587, norm of subgrad 1102.167326 dualbound = 3006239.815587, lowerbound=1213409.815587, norm of subgrad 38.535200 stepsize= 1.000000 +dualbound = 3006352.176133, lowerbound=1216478.176133, norm of subgrad 1103.608253 dualbound = 3006352.176133, lowerbound=1216478.176133, norm of subgrad 39.816586 stepsize= 1.000000 +dualbound = 3006459.924697, lowerbound=1214658.924697, norm of subgrad 1102.762406 dualbound = 3006459.924697, lowerbound=1214658.924697, norm of subgrad 39.163102 stepsize= 1.000000 +dualbound = 3006618.936986, lowerbound=1222322.936986, norm of subgrad 1106.177173 dualbound = 3006618.936986, lowerbound=1222322.936986, norm of subgrad 38.262414 stepsize= 1.000000 +dualbound = 3006751.841769, lowerbound=1213462.841769, norm of subgrad 1102.185484 dualbound = 3006751.841769, lowerbound=1213462.841769, norm of subgrad 38.508503 stepsize= 1.000000 +dualbound = 3006887.443489, lowerbound=1216611.443489, norm of subgrad 1103.605203 dualbound = 3006887.443489, lowerbound=1216611.443489, norm of subgrad 38.322340 stepsize= 1.000000 +dualbound = 3007003.831769, lowerbound=1215720.831769, norm of subgrad 1103.210239 dualbound = 3007003.831769, lowerbound=1215720.831769, norm of subgrad 38.319555 stepsize= 1.000000 +dualbound = 3007116.089212, lowerbound=1213102.089212, norm of subgrad 1102.020458 dualbound = 3007116.089212, lowerbound=1213102.089212, norm of subgrad 38.200228 stepsize= 1.000000 +dualbound = 3007250.846038, lowerbound=1215462.846038, norm of subgrad 1103.096481 dualbound = 3007250.846038, lowerbound=1215462.846038, norm of subgrad 38.649150 stepsize= 1.000000 +dualbound = 3007350.074917, lowerbound=1214943.074917, norm of subgrad 1102.909368 dualbound = 3007350.074917, lowerbound=1214943.074917, norm of subgrad 39.562974 stepsize= 1.000000 +dualbound = 3007491.509216, lowerbound=1213944.509216, norm of subgrad 1102.447509 dualbound = 3007491.509216, lowerbound=1213944.509216, norm of subgrad 39.842619 stepsize= 1.000000 +dualbound = 3007600.961215, lowerbound=1218094.961215, norm of subgrad 1104.320135 dualbound = 3007600.961215, lowerbound=1218094.961215, norm of subgrad 39.210356 stepsize= 1.000000 +dualbound = 3007741.425832, lowerbound=1211999.425832, norm of subgrad 1101.511428 dualbound = 3007741.425832, lowerbound=1211999.425832, norm of subgrad 38.320551 stepsize= 1.000000 +dualbound = 3007887.980980, lowerbound=1215729.980980, norm of subgrad 1103.189912 dualbound = 3007887.980980, lowerbound=1215729.980980, norm of subgrad 38.007304 stepsize= 1.000000 +dualbound = 3008021.010473, lowerbound=1215783.010473, norm of subgrad 1103.257908 dualbound = 3008021.010473, lowerbound=1215783.010473, norm of subgrad 39.090018 stepsize= 1.000000 +dualbound = 3008094.483856, lowerbound=1214399.483856, norm of subgrad 1102.632524 dualbound = 3008094.483856, lowerbound=1214399.483856, norm of subgrad 38.372821 stepsize= 1.000000 +dualbound = 3008255.873738, lowerbound=1215350.873738, norm of subgrad 1103.036660 dualbound = 3008255.873738, lowerbound=1215350.873738, norm of subgrad 38.734866 stepsize= 1.000000 +dualbound = 3008398.160124, lowerbound=1216067.160124, norm of subgrad 1103.349065 dualbound = 3008398.160124, lowerbound=1216067.160124, norm of subgrad 38.135107 stepsize= 1.000000 +dualbound = 3008512.646310, lowerbound=1217492.646310, norm of subgrad 1104.040600 dualbound = 3008512.646310, lowerbound=1217492.646310, norm of subgrad 39.083068 stepsize= 1.000000 +dualbound = 3008612.201392, lowerbound=1212122.201392, norm of subgrad 1101.573965 dualbound = 3008612.201392, lowerbound=1212122.201392, norm of subgrad 37.980983 stepsize= 1.000000 +dualbound = 3008749.145934, lowerbound=1219339.145934, norm of subgrad 1104.854355 dualbound = 3008749.145934, lowerbound=1219339.145934, norm of subgrad 38.742026 stepsize= 1.000000 +dualbound = 3008887.468222, lowerbound=1215207.468222, norm of subgrad 1102.961227 dualbound = 3008887.468222, lowerbound=1215207.468222, norm of subgrad 38.135578 stepsize= 1.000000 +dualbound = 3009015.145334, lowerbound=1219167.145334, norm of subgrad 1104.815435 dualbound = 3009015.145334, lowerbound=1219167.145334, norm of subgrad 39.719984 stepsize= 1.000000 +dualbound = 3009120.499546, lowerbound=1217482.499546, norm of subgrad 1104.012454 dualbound = 3009120.499546, lowerbound=1217482.499546, norm of subgrad 38.293005 stepsize= 1.000000 +dualbound = 3009246.099988, lowerbound=1215461.099988, norm of subgrad 1103.117446 dualbound = 3009246.099988, lowerbound=1215461.099988, norm of subgrad 39.148441 stepsize= 1.000000 +dualbound = 3009386.938657, lowerbound=1213065.938657, norm of subgrad 1102.008139 dualbound = 3009386.938657, lowerbound=1213065.938657, norm of subgrad 38.688999 stepsize= 1.000000 +dualbound = 3009492.694063, lowerbound=1214517.694063, norm of subgrad 1102.697916 dualbound = 3009492.694063, lowerbound=1214517.694063, norm of subgrad 39.124869 stepsize= 1.000000 +dualbound = 3009598.412324, lowerbound=1213665.412324, norm of subgrad 1102.317746 dualbound = 3009598.412324, lowerbound=1213665.412324, norm of subgrad 39.302904 stepsize= 1.000000 +dualbound = 3009724.429383, lowerbound=1217030.429383, norm of subgrad 1103.813585 dualbound = 3009724.429383, lowerbound=1217030.429383, norm of subgrad 38.730054 stepsize= 1.000000 +dualbound = 3009879.793345, lowerbound=1218350.793345, norm of subgrad 1104.377106 dualbound = 3009879.793345, lowerbound=1218350.793345, norm of subgrad 38.123011 stepsize= 1.000000 +dualbound = 3010038.857865, lowerbound=1215822.857865, norm of subgrad 1103.250587 dualbound = 3010038.857865, lowerbound=1215822.857865, norm of subgrad 38.704838 stepsize= 1.000000 +dualbound = 3010131.351587, lowerbound=1214273.351587, norm of subgrad 1102.581676 dualbound = 3010131.351587, lowerbound=1214273.351587, norm of subgrad 38.800692 stepsize= 1.000000 +dualbound = 3010225.903199, lowerbound=1216401.903199, norm of subgrad 1103.530200 dualbound = 3010225.903199, lowerbound=1216401.903199, norm of subgrad 38.360808 stepsize= 1.000000 +dualbound = 3010386.206647, lowerbound=1213457.206647, norm of subgrad 1102.167050 dualbound = 3010386.206647, lowerbound=1213457.206647, norm of subgrad 38.409679 stepsize= 1.000000 +dualbound = 3010514.375510, lowerbound=1217508.375510, norm of subgrad 1104.035043 dualbound = 3010514.375510, lowerbound=1217508.375510, norm of subgrad 38.899471 stepsize= 1.000000 +dualbound = 3010609.484106, lowerbound=1212208.484106, norm of subgrad 1101.626744 dualbound = 3010609.484106, lowerbound=1212208.484106, norm of subgrad 38.315905 stepsize= 1.000000 +dualbound = 3010749.899234, lowerbound=1219973.899234, norm of subgrad 1105.123929 dualbound = 3010749.899234, lowerbound=1219973.899234, norm of subgrad 38.280741 stepsize= 1.000000 +dualbound = 3010907.162487, lowerbound=1217970.162487, norm of subgrad 1104.213821 dualbound = 3010907.162487, lowerbound=1217970.162487, norm of subgrad 38.409156 stepsize= 1.000000 +dualbound = 3010996.770350, lowerbound=1214340.770350, norm of subgrad 1102.611341 dualbound = 3010996.770350, lowerbound=1214340.770350, norm of subgrad 38.737680 stepsize= 1.000000 +dualbound = 3011121.544471, lowerbound=1213849.544471, norm of subgrad 1102.350917 dualbound = 3011121.544471, lowerbound=1213849.544471, norm of subgrad 38.115274 stepsize= 1.000000 +dualbound = 3011269.736898, lowerbound=1217252.736898, norm of subgrad 1103.871703 dualbound = 3011269.736898, lowerbound=1217252.736898, norm of subgrad 37.791433 stepsize= 1.000000 +dualbound = 3011417.116994, lowerbound=1214744.116994, norm of subgrad 1102.769295 dualbound = 3011417.116994, lowerbound=1214744.116994, norm of subgrad 38.773446 stepsize= 1.000000 +dualbound = 3011500.236693, lowerbound=1216001.236693, norm of subgrad 1103.346381 dualbound = 3011500.236693, lowerbound=1216001.236693, norm of subgrad 38.146031 stepsize= 1.000000 +dualbound = 3011614.962998, lowerbound=1213511.962998, norm of subgrad 1102.234532 dualbound = 3011614.962998, lowerbound=1213511.962998, norm of subgrad 39.034937 stepsize= 1.000000 +dualbound = 3011755.004409, lowerbound=1218383.004409, norm of subgrad 1104.445112 dualbound = 3011755.004409, lowerbound=1218383.004409, norm of subgrad 39.446691 stepsize= 1.000000 +dualbound = 3011875.490566, lowerbound=1216289.490566, norm of subgrad 1103.489234 dualbound = 3011875.490566, lowerbound=1216289.490566, norm of subgrad 38.980587 stepsize= 1.000000 +dualbound = 3011988.114401, lowerbound=1215156.114401, norm of subgrad 1103.004585 dualbound = 3011988.114401, lowerbound=1215156.114401, norm of subgrad 39.694128 stepsize= 1.000000 +dualbound = 3012098.768451, lowerbound=1217255.768451, norm of subgrad 1103.939205 dualbound = 3012098.768451, lowerbound=1217255.768451, norm of subgrad 39.200179 stepsize= 1.000000 +dualbound = 3012247.785319, lowerbound=1214031.785319, norm of subgrad 1102.460786 dualbound = 3012247.785319, lowerbound=1214031.785319, norm of subgrad 39.204807 stepsize= 1.000000 +dualbound = 3012399.924359, lowerbound=1221237.924359, norm of subgrad 1105.685274 dualbound = 3012399.924359, lowerbound=1221237.924359, norm of subgrad 38.133175 stepsize= 1.000000 +dualbound = 3012524.161192, lowerbound=1212020.161192, norm of subgrad 1101.539904 dualbound = 3012524.161192, lowerbound=1212020.161192, norm of subgrad 38.655360 stepsize= 1.000000 +dualbound = 3012618.330821, lowerbound=1210443.330821, norm of subgrad 1100.809852 dualbound = 3012618.330821, lowerbound=1210443.330821, norm of subgrad 37.857227 stepsize= 1.000000 +dualbound = 3012776.742772, lowerbound=1219290.742772, norm of subgrad 1104.809369 dualbound = 3012776.742772, lowerbound=1219290.742772, norm of subgrad 38.358988 stepsize= 1.000000 +dualbound = 3012891.308890, lowerbound=1213637.308890, norm of subgrad 1102.286854 dualbound = 3012891.308890, lowerbound=1213637.308890, norm of subgrad 38.904577 stepsize= 1.000000 +dualbound = 3013013.638789, lowerbound=1213236.638789, norm of subgrad 1102.098743 dualbound = 3013013.638789, lowerbound=1213236.638789, norm of subgrad 38.824347 stepsize= 1.000000 +dualbound = 3013120.007781, lowerbound=1216815.007781, norm of subgrad 1103.728684 dualbound = 3013120.007781, lowerbound=1216815.007781, norm of subgrad 38.837726 stepsize= 1.000000 +dualbound = 3013251.264909, lowerbound=1217996.264909, norm of subgrad 1104.247828 dualbound = 3013251.264909, lowerbound=1217996.264909, norm of subgrad 38.707327 stepsize= 1.000000 +dualbound = 3013389.671977, lowerbound=1222478.671977, norm of subgrad 1106.274682 dualbound = 3013389.671977, lowerbound=1222478.671977, norm of subgrad 38.773794 stepsize= 1.000000 +dualbound = 3013525.532850, lowerbound=1215199.532850, norm of subgrad 1103.009761 dualbound = 3013525.532850, lowerbound=1215199.532850, norm of subgrad 39.583593 stepsize= 1.000000 +dualbound = 3013601.755853, lowerbound=1218886.755853, norm of subgrad 1104.645987 dualbound = 3013601.755853, lowerbound=1218886.755853, norm of subgrad 37.844722 stepsize= 1.000000 +dualbound = 3013755.969568, lowerbound=1212783.969568, norm of subgrad 1101.876114 dualbound = 3013755.969568, lowerbound=1212783.969568, norm of subgrad 38.745499 stepsize= 1.000000 +dualbound = 3013876.303810, lowerbound=1218642.303810, norm of subgrad 1104.505909 dualbound = 3013876.303810, lowerbound=1218642.303810, norm of subgrad 37.567729 stepsize= 1.000000 +dualbound = 3014011.986216, lowerbound=1214758.986216, norm of subgrad 1102.759260 dualbound = 3014011.986216, lowerbound=1214758.986216, norm of subgrad 38.140299 stepsize= 1.000000 +dualbound = 3014115.482118, lowerbound=1220839.482118, norm of subgrad 1105.568850 dualbound = 3014115.482118, lowerbound=1220839.482118, norm of subgrad 39.325512 stepsize= 1.000000 +dualbound = 3014215.040206, lowerbound=1210772.040206, norm of subgrad 1100.989573 dualbound = 3014215.040206, lowerbound=1210772.040206, norm of subgrad 38.801522 stepsize= 1.000000 +dualbound = 3014362.695813, lowerbound=1220942.695813, norm of subgrad 1105.596082 dualbound = 3014362.695813, lowerbound=1220942.695813, norm of subgrad 39.340254 stepsize= 1.000000 +dualbound = 3014473.847160, lowerbound=1212057.847160, norm of subgrad 1101.551564 dualbound = 3014473.847160, lowerbound=1212057.847160, norm of subgrad 38.329510 stepsize= 1.000000 +dualbound = 3014617.065107, lowerbound=1221872.065107, norm of subgrad 1106.009975 dualbound = 3014617.065107, lowerbound=1221872.065107, norm of subgrad 39.105216 stepsize= 1.000000 +dualbound = 3014730.917302, lowerbound=1212571.917302, norm of subgrad 1101.797585 dualbound = 3014730.917302, lowerbound=1212571.917302, norm of subgrad 38.727925 stepsize= 1.000000 +dualbound = 3014861.540342, lowerbound=1220913.540342, norm of subgrad 1105.605961 dualbound = 3014861.540342, lowerbound=1220913.540342, norm of subgrad 39.769625 stepsize= 1.000000 +dualbound = 3014990.063428, lowerbound=1210524.063428, norm of subgrad 1100.852880 dualbound = 3014990.063428, lowerbound=1210524.063428, norm of subgrad 38.490558 stepsize= 1.000000 +dualbound = 3015115.989825, lowerbound=1220071.989825, norm of subgrad 1105.206763 dualbound = 3015115.989825, lowerbound=1220071.989825, norm of subgrad 39.190897 stepsize= 1.000000 +dualbound = 3015242.085318, lowerbound=1215963.085318, norm of subgrad 1103.309152 dualbound = 3015242.085318, lowerbound=1215963.085318, norm of subgrad 38.132604 stepsize= 1.000000 +dualbound = 3015406.540924, lowerbound=1215700.540924, norm of subgrad 1103.206482 dualbound = 3015406.540924, lowerbound=1215700.540924, norm of subgrad 39.095468 stepsize= 1.000000 +dualbound = 3015490.223633, lowerbound=1213202.223633, norm of subgrad 1102.076324 dualbound = 3015490.223633, lowerbound=1213202.223633, norm of subgrad 38.127191 stepsize= 1.000000 +dualbound = 3015622.246977, lowerbound=1219449.246977, norm of subgrad 1104.889246 dualbound = 3015622.246977, lowerbound=1219449.246977, norm of subgrad 38.249488 stepsize= 1.000000 +dualbound = 3015752.101922, lowerbound=1215646.101922, norm of subgrad 1103.184074 dualbound = 3015752.101922, lowerbound=1215646.101922, norm of subgrad 38.715048 stepsize= 1.000000 +dualbound = 3015888.021426, lowerbound=1221202.021426, norm of subgrad 1105.686674 dualbound = 3015888.021426, lowerbound=1221202.021426, norm of subgrad 38.430710 stepsize= 1.000000 +dualbound = 3015989.643223, lowerbound=1216026.643223, norm of subgrad 1103.370130 dualbound = 3015989.643223, lowerbound=1216026.643223, norm of subgrad 38.737860 stepsize= 1.000000 +dualbound = 3016095.460683, lowerbound=1217450.460683, norm of subgrad 1104.027382 dualbound = 3016095.460683, lowerbound=1217450.460683, norm of subgrad 39.138440 stepsize= 1.000000 +dualbound = 3016224.249400, lowerbound=1214006.249400, norm of subgrad 1102.424714 dualbound = 3016224.249400, lowerbound=1214006.249400, norm of subgrad 38.246421 stepsize= 1.000000 +dualbound = 3016373.258714, lowerbound=1215800.258714, norm of subgrad 1103.232187 dualbound = 3016373.258714, lowerbound=1215800.258714, norm of subgrad 38.340700 stepsize= 1.000000 +dualbound = 3016460.327804, lowerbound=1216955.327804, norm of subgrad 1103.794060 dualbound = 3016460.327804, lowerbound=1216955.327804, norm of subgrad 38.640252 stepsize= 1.000000 +dualbound = 3016583.799910, lowerbound=1220681.799910, norm of subgrad 1105.468588 dualbound = 3016583.799910, lowerbound=1220681.799910, norm of subgrad 38.761735 stepsize= 1.000000 +dualbound = 3016700.915403, lowerbound=1213830.915403, norm of subgrad 1102.374671 dualbound = 3016700.915403, lowerbound=1213830.915403, norm of subgrad 38.937328 stepsize= 1.000000 +dualbound = 3016833.526833, lowerbound=1218338.526833, norm of subgrad 1104.427239 dualbound = 3016833.526833, lowerbound=1218338.526833, norm of subgrad 39.415878 stepsize= 1.000000 +dualbound = 3016963.599082, lowerbound=1212665.599082, norm of subgrad 1101.841458 dualbound = 3016963.599082, lowerbound=1212665.599082, norm of subgrad 38.975277 stepsize= 1.000000 +dualbound = 3017093.368026, lowerbound=1216976.368026, norm of subgrad 1103.781395 dualbound = 3017093.368026, lowerbound=1216976.368026, norm of subgrad 38.558643 stepsize= 1.000000 +dualbound = 3017240.315286, lowerbound=1218350.315286, norm of subgrad 1104.393189 dualbound = 3017240.315286, lowerbound=1218350.315286, norm of subgrad 38.483078 stepsize= 1.000000 +dualbound = 3017373.015949, lowerbound=1214882.015949, norm of subgrad 1102.798266 dualbound = 3017373.015949, lowerbound=1214882.015949, norm of subgrad 37.612507 stepsize= 1.000000 +dualbound = 3017509.317929, lowerbound=1214229.317929, norm of subgrad 1102.529055 dualbound = 3017509.317929, lowerbound=1214229.317929, norm of subgrad 38.435686 stepsize= 1.000000 +dualbound = 3017598.384215, lowerbound=1219663.384215, norm of subgrad 1105.008771 dualbound = 3017598.384215, lowerbound=1219663.384215, norm of subgrad 38.341443 stepsize= 1.000000 +dualbound = 3017717.626746, lowerbound=1216208.626746, norm of subgrad 1103.422234 dualbound = 3017717.626746, lowerbound=1216208.626746, norm of subgrad 38.095177 stepsize= 1.000000 +dualbound = 3017831.556313, lowerbound=1217343.556313, norm of subgrad 1103.995270 dualbound = 3017831.556313, lowerbound=1217343.556313, norm of subgrad 39.697979 stepsize= 1.000000 +dualbound = 3017941.996335, lowerbound=1217272.996335, norm of subgrad 1103.935685 dualbound = 3017941.996335, lowerbound=1217272.996335, norm of subgrad 38.877243 stepsize= 1.000000 +dualbound = 3018074.770940, lowerbound=1219596.770940, norm of subgrad 1105.011209 dualbound = 3018074.770940, lowerbound=1219596.770940, norm of subgrad 39.821786 stepsize= 1.000000 +dualbound = 3018200.587091, lowerbound=1217177.587091, norm of subgrad 1103.884318 dualbound = 3018200.587091, lowerbound=1217177.587091, norm of subgrad 38.843483 stepsize= 1.000000 +dualbound = 3018339.113264, lowerbound=1217693.113264, norm of subgrad 1104.101043 dualbound = 3018339.113264, lowerbound=1217693.113264, norm of subgrad 38.529549 stepsize= 1.000000 +dualbound = 3018466.315958, lowerbound=1216899.315958, norm of subgrad 1103.762799 dualbound = 3018466.315958, lowerbound=1216899.315958, norm of subgrad 38.989777 stepsize= 1.000000 +dualbound = 3018587.336992, lowerbound=1216746.336992, norm of subgrad 1103.679907 dualbound = 3018587.336992, lowerbound=1216746.336992, norm of subgrad 38.522994 stepsize= 1.000000 +dualbound = 3018712.773156, lowerbound=1218878.773156, norm of subgrad 1104.660931 dualbound = 3018712.773156, lowerbound=1218878.773156, norm of subgrad 39.018408 stepsize= 1.000000 +dualbound = 3018838.859231, lowerbound=1210234.859231, norm of subgrad 1100.742867 dualbound = 3018838.859231, lowerbound=1210234.859231, norm of subgrad 39.065152 stepsize= 1.000000 +dualbound = 3018939.756956, lowerbound=1215392.756956, norm of subgrad 1103.095534 dualbound = 3018939.756956, lowerbound=1215392.756956, norm of subgrad 39.088332 stepsize= 1.000000 +dualbound = 3019051.352133, lowerbound=1216587.352133, norm of subgrad 1103.603802 dualbound = 3019051.352133, lowerbound=1216587.352133, norm of subgrad 38.283093 stepsize= 1.000000 +dualbound = 3019200.293796, lowerbound=1213949.293796, norm of subgrad 1102.428816 dualbound = 3019200.293796, lowerbound=1213949.293796, norm of subgrad 39.356596 stepsize= 1.000000 +dualbound = 3019316.362809, lowerbound=1218950.362809, norm of subgrad 1104.682924 dualbound = 3019316.362809, lowerbound=1218950.362809, norm of subgrad 38.601412 stepsize= 1.000000 +dualbound = 3019444.831319, lowerbound=1219345.831319, norm of subgrad 1104.886343 dualbound = 3019444.831319, lowerbound=1219345.831319, norm of subgrad 39.452104 stepsize= 1.000000 +dualbound = 3019549.967762, lowerbound=1218775.967762, norm of subgrad 1104.604892 dualbound = 3019549.967762, lowerbound=1218775.967762, norm of subgrad 38.485535 stepsize= 1.000000 +dualbound = 3019692.734786, lowerbound=1217606.734786, norm of subgrad 1104.065548 dualbound = 3019692.734786, lowerbound=1217606.734786, norm of subgrad 38.688073 stepsize= 1.000000 +dualbound = 3019817.985416, lowerbound=1214921.985416, norm of subgrad 1102.859005 dualbound = 3019817.985416, lowerbound=1214921.985416, norm of subgrad 38.745976 stepsize= 1.000000 +dualbound = 3019951.114242, lowerbound=1215047.114242, norm of subgrad 1102.921173 dualbound = 3019951.114242, lowerbound=1215047.114242, norm of subgrad 39.001652 stepsize= 1.000000 +dualbound = 3020050.051216, lowerbound=1217513.051216, norm of subgrad 1104.036707 dualbound = 3020050.051216, lowerbound=1217513.051216, norm of subgrad 38.508921 stepsize= 1.000000 +dualbound = 3020188.842703, lowerbound=1217222.842703, norm of subgrad 1103.931086 dualbound = 3020188.842703, lowerbound=1217222.842703, norm of subgrad 39.746591 stepsize= 1.000000 +dualbound = 3020290.389155, lowerbound=1215713.389155, norm of subgrad 1103.226354 dualbound = 3020290.389155, lowerbound=1215713.389155, norm of subgrad 38.685223 stepsize= 1.000000 +dualbound = 3020437.695082, lowerbound=1214439.695082, norm of subgrad 1102.644864 dualbound = 3020437.695082, lowerbound=1214439.695082, norm of subgrad 39.157450 stepsize= 1.000000 +dualbound = 3020545.611516, lowerbound=1216754.611516, norm of subgrad 1103.706307 dualbound = 3020545.611516, lowerbound=1216754.611516, norm of subgrad 38.998929 stepsize= 1.000000 +dualbound = 3020695.600535, lowerbound=1217191.600535, norm of subgrad 1103.873000 dualbound = 3020695.600535, lowerbound=1217191.600535, norm of subgrad 38.652154 stepsize= 1.000000 +dualbound = 3020834.327827, lowerbound=1220552.327827, norm of subgrad 1105.404147 dualbound = 3020834.327827, lowerbound=1220552.327827, norm of subgrad 38.790815 stepsize= 1.000000 +dualbound = 3020931.700433, lowerbound=1215462.700433, norm of subgrad 1103.123611 dualbound = 3020931.700433, lowerbound=1215462.700433, norm of subgrad 38.940629 stepsize= 1.000000 +dualbound = 3021055.526629, lowerbound=1220437.526629, norm of subgrad 1105.342267 dualbound = 3021055.526629, lowerbound=1220437.526629, norm of subgrad 38.312220 stepsize= 1.000000 +dualbound = 3021202.870611, lowerbound=1216727.870611, norm of subgrad 1103.689209 dualbound = 3021202.870611, lowerbound=1216727.870611, norm of subgrad 39.361707 stepsize= 1.000000 +dualbound = 3021303.072857, lowerbound=1215763.072857, norm of subgrad 1103.252497 dualbound = 3021303.072857, lowerbound=1215763.072857, norm of subgrad 38.771152 stepsize= 1.000000 +dualbound = 3021441.518092, lowerbound=1217429.518092, norm of subgrad 1103.971249 dualbound = 3021441.518092, lowerbound=1217429.518092, norm of subgrad 38.228853 stepsize= 1.000000 +dualbound = 3021574.770849, lowerbound=1215818.770849, norm of subgrad 1103.260065 dualbound = 3021574.770849, lowerbound=1215818.770849, norm of subgrad 38.694350 stepsize= 1.000000 +dualbound = 3021681.554552, lowerbound=1216447.554552, norm of subgrad 1103.543182 dualbound = 3021681.554552, lowerbound=1216447.554552, norm of subgrad 38.298612 stepsize= 1.000000 +dualbound = 3021805.873487, lowerbound=1214735.873487, norm of subgrad 1102.770091 dualbound = 3021805.873487, lowerbound=1214735.873487, norm of subgrad 38.604649 stepsize= 1.000000 +dualbound = 3021915.205484, lowerbound=1220138.205484, norm of subgrad 1105.235362 dualbound = 3021915.205484, lowerbound=1220138.205484, norm of subgrad 38.940108 stepsize= 1.000000 +dualbound = 3022053.560307, lowerbound=1218693.560307, norm of subgrad 1104.557178 dualbound = 3022053.560307, lowerbound=1218693.560307, norm of subgrad 38.618063 stepsize= 1.000000 +dualbound = 3022173.491239, lowerbound=1217232.491239, norm of subgrad 1103.902845 dualbound = 3022173.491239, lowerbound=1217232.491239, norm of subgrad 38.586668 stepsize= 1.000000 +dualbound = 3022295.142438, lowerbound=1216836.142438, norm of subgrad 1103.725121 dualbound = 3022295.142438, lowerbound=1216836.142438, norm of subgrad 38.660719 stepsize= 1.000000 +dualbound = 3022415.536240, lowerbound=1215625.536240, norm of subgrad 1103.212825 dualbound = 3022415.536240, lowerbound=1215625.536240, norm of subgrad 39.666028 stepsize= 1.000000 +dualbound = 3022533.772498, lowerbound=1218391.772498, norm of subgrad 1104.458135 dualbound = 3022533.772498, lowerbound=1218391.772498, norm of subgrad 39.423803 stepsize= 1.000000 +dualbound = 3022670.200642, lowerbound=1213307.200642, norm of subgrad 1102.140282 dualbound = 3022670.200642, lowerbound=1213307.200642, norm of subgrad 39.273759 stepsize= 1.000000 +dualbound = 3022787.860166, lowerbound=1220723.860166, norm of subgrad 1105.490326 dualbound = 3022787.860166, lowerbound=1220723.860166, norm of subgrad 38.764153 stepsize= 1.000000 +dualbound = 3022913.144018, lowerbound=1213193.144018, norm of subgrad 1102.068575 dualbound = 3022913.144018, lowerbound=1213193.144018, norm of subgrad 38.565319 stepsize= 1.000000 +dualbound = 3023040.990542, lowerbound=1221005.990542, norm of subgrad 1105.606617 dualbound = 3023040.990542, lowerbound=1221005.990542, norm of subgrad 38.572614 stepsize= 1.000000 +dualbound = 3023199.663074, lowerbound=1214791.663074, norm of subgrad 1102.804454 dualbound = 3023199.663074, lowerbound=1214791.663074, norm of subgrad 39.302322 stepsize= 1.000000 +dualbound = 3023274.350259, lowerbound=1219908.350259, norm of subgrad 1105.134992 dualbound = 3023274.350259, lowerbound=1219908.350259, norm of subgrad 38.596466 stepsize= 1.000000 +dualbound = 3023421.055866, lowerbound=1217886.055866, norm of subgrad 1104.194302 dualbound = 3023421.055866, lowerbound=1217886.055866, norm of subgrad 38.803423 stepsize= 1.000000 +dualbound = 3023544.705082, lowerbound=1213687.705082, norm of subgrad 1102.282498 dualbound = 3023544.705082, lowerbound=1213687.705082, norm of subgrad 38.244597 stepsize= 1.000000 +dualbound = 3023672.328055, lowerbound=1216328.328055, norm of subgrad 1103.508644 dualbound = 3023672.328055, lowerbound=1216328.328055, norm of subgrad 39.123177 stepsize= 1.000000 +dualbound = 3023759.799539, lowerbound=1214624.799539, norm of subgrad 1102.745120 dualbound = 3023759.799539, lowerbound=1214624.799539, norm of subgrad 38.851917 stepsize= 1.000000 +dualbound = 3023906.992108, lowerbound=1217043.992108, norm of subgrad 1103.804327 dualbound = 3023906.992108, lowerbound=1217043.992108, norm of subgrad 38.564136 stepsize= 1.000000 +dualbound = 3024027.954746, lowerbound=1221029.954746, norm of subgrad 1105.586702 dualbound = 3024027.954746, lowerbound=1221029.954746, norm of subgrad 37.589395 stepsize= 1.000000 +dualbound = 3024178.793288, lowerbound=1215660.793288, norm of subgrad 1103.182575 dualbound = 3024178.793288, lowerbound=1215660.793288, norm of subgrad 38.753562 stepsize= 1.000000 +dualbound = 3024275.847704, lowerbound=1222440.847704, norm of subgrad 1106.249451 dualbound = 3024275.847704, lowerbound=1222440.847704, norm of subgrad 38.000716 stepsize= 1.000000 +dualbound = 3024374.998891, lowerbound=1221422.998891, norm of subgrad 1105.828648 dualbound = 3024374.998891, lowerbound=1221422.998891, norm of subgrad 39.155475 stepsize= 1.000000 +dualbound = 3024507.412772, lowerbound=1215101.412772, norm of subgrad 1102.941709 dualbound = 3024507.412772, lowerbound=1215101.412772, norm of subgrad 38.876907 stepsize= 1.000000 +dualbound = 3024656.750496, lowerbound=1216433.750496, norm of subgrad 1103.536928 dualbound = 3024656.750496, lowerbound=1216433.750496, norm of subgrad 38.850196 stepsize= 1.000000 +dualbound = 3024758.955750, lowerbound=1218337.955750, norm of subgrad 1104.423359 dualbound = 3024758.955750, lowerbound=1218337.955750, norm of subgrad 38.925637 stepsize= 1.000000 +dualbound = 3024891.907952, lowerbound=1215318.907952, norm of subgrad 1103.052994 dualbound = 3024891.907952, lowerbound=1215318.907952, norm of subgrad 39.242225 stepsize= 1.000000 +dualbound = 3025024.575100, lowerbound=1218251.575100, norm of subgrad 1104.369311 dualbound = 3025024.575100, lowerbound=1218251.575100, norm of subgrad 38.893022 stepsize= 1.000000 +dualbound = 3025135.291320, lowerbound=1220892.291320, norm of subgrad 1105.583236 dualbound = 3025135.291320, lowerbound=1220892.291320, norm of subgrad 39.149920 stepsize= 1.000000 +dualbound = 3025242.559903, lowerbound=1220230.559903, norm of subgrad 1105.245927 dualbound = 3025242.559903, lowerbound=1220230.559903, norm of subgrad 38.016688 stepsize= 1.000000 +dualbound = 3025394.309813, lowerbound=1220129.309813, norm of subgrad 1105.196955 dualbound = 3025394.309813, lowerbound=1220129.309813, norm of subgrad 38.506492 stepsize= 1.000000 +dualbound = 3025525.771526, lowerbound=1214980.771526, norm of subgrad 1102.862082 dualbound = 3025525.771526, lowerbound=1214980.771526, norm of subgrad 38.150514 stepsize= 1.000000 +dualbound = 3025626.590953, lowerbound=1224182.590953, norm of subgrad 1107.043175 dualbound = 3025626.590953, lowerbound=1224182.590953, norm of subgrad 38.246822 stepsize= 1.000000 +dualbound = 3025760.710168, lowerbound=1212372.710168, norm of subgrad 1101.683580 dualbound = 3025760.710168, lowerbound=1212372.710168, norm of subgrad 38.316044 stepsize= 1.000000 +dualbound = 3025898.371668, lowerbound=1222087.371668, norm of subgrad 1106.085156 dualbound = 3025898.371668, lowerbound=1222087.371668, norm of subgrad 38.401322 stepsize= 1.000000 +dualbound = 3026003.057476, lowerbound=1212367.057476, norm of subgrad 1101.679199 dualbound = 3026003.057476, lowerbound=1212367.057476, norm of subgrad 37.877247 stepsize= 1.000000 +dualbound = 3026133.421124, lowerbound=1218817.421124, norm of subgrad 1104.627277 dualbound = 3026133.421124, lowerbound=1218817.421124, norm of subgrad 38.914826 stepsize= 1.000000 +dualbound = 3026214.253592, lowerbound=1215060.253592, norm of subgrad 1102.926676 dualbound = 3026214.253592, lowerbound=1215060.253592, norm of subgrad 38.312302 stepsize= 1.000000 +dualbound = 3026370.022046, lowerbound=1221864.022046, norm of subgrad 1106.003627 dualbound = 3026370.022046, lowerbound=1221864.022046, norm of subgrad 39.188882 stepsize= 1.000000 +dualbound = 3026461.897403, lowerbound=1216756.897403, norm of subgrad 1103.708248 dualbound = 3026461.897403, lowerbound=1216756.897403, norm of subgrad 38.818492 stepsize= 1.000000 +dualbound = 3026593.885911, lowerbound=1219821.885911, norm of subgrad 1105.084108 dualbound = 3026593.885911, lowerbound=1219821.885911, norm of subgrad 38.999853 stepsize= 1.000000 +dualbound = 3026722.248203, lowerbound=1215620.248203, norm of subgrad 1103.161479 dualbound = 3026722.248203, lowerbound=1215620.248203, norm of subgrad 38.384402 stepsize= 1.000000 +dualbound = 3026869.841891, lowerbound=1216713.841891, norm of subgrad 1103.685572 dualbound = 3026869.841891, lowerbound=1216713.841891, norm of subgrad 39.441015 stepsize= 1.000000 +dualbound = 3026940.742372, lowerbound=1217884.742372, norm of subgrad 1104.215442 dualbound = 3026940.742372, lowerbound=1217884.742372, norm of subgrad 38.443471 stepsize= 1.000000 +dualbound = 3027094.281032, lowerbound=1215598.281032, norm of subgrad 1103.165573 dualbound = 3027094.281032, lowerbound=1215598.281032, norm of subgrad 39.109317 stepsize= 1.000000 +dualbound = 3027210.039465, lowerbound=1221903.039465, norm of subgrad 1106.030307 dualbound = 3027210.039465, lowerbound=1221903.039465, norm of subgrad 38.932742 stepsize= 1.000000 +dualbound = 3027320.605753, lowerbound=1216358.605753, norm of subgrad 1103.532784 dualbound = 3027320.605753, lowerbound=1216358.605753, norm of subgrad 39.199060 stepsize= 1.000000 +dualbound = 3027437.547468, lowerbound=1218832.547468, norm of subgrad 1104.666713 dualbound = 3027437.547468, lowerbound=1218832.547468, norm of subgrad 39.660329 stepsize= 1.000000 +dualbound = 3027558.676332, lowerbound=1211342.676332, norm of subgrad 1101.272753 dualbound = 3027558.676332, lowerbound=1211342.676332, norm of subgrad 39.750835 stepsize= 1.000000 +dualbound = 3027667.484945, lowerbound=1221529.484945, norm of subgrad 1105.886741 dualbound = 3027667.484945, lowerbound=1221529.484945, norm of subgrad 39.557662 stepsize= 1.000000 +dualbound = 3027814.064985, lowerbound=1213451.064985, norm of subgrad 1102.217794 dualbound = 3027814.064985, lowerbound=1213451.064985, norm of subgrad 39.743931 stepsize= 1.000000 +dualbound = 3027935.339999, lowerbound=1221858.339999, norm of subgrad 1106.014168 dualbound = 3027935.339999, lowerbound=1221858.339999, norm of subgrad 39.118730 stepsize= 1.000000 +dualbound = 3028083.315474, lowerbound=1217020.315474, norm of subgrad 1103.817157 dualbound = 3028083.315474, lowerbound=1217020.315474, norm of subgrad 39.242521 stepsize= 1.000000 +dualbound = 3028194.399912, lowerbound=1219764.399912, norm of subgrad 1105.048596 dualbound = 3028194.399912, lowerbound=1219764.399912, norm of subgrad 38.458867 stepsize= 1.000000 +dualbound = 3028336.244608, lowerbound=1215248.244608, norm of subgrad 1102.980618 dualbound = 3028336.244608, lowerbound=1215248.244608, norm of subgrad 38.207914 stepsize= 1.000000 +dualbound = 3028461.996427, lowerbound=1218278.996427, norm of subgrad 1104.383084 dualbound = 3028461.996427, lowerbound=1218278.996427, norm of subgrad 38.842655 stepsize= 1.000000 +dualbound = 3028559.365782, lowerbound=1217801.365782, norm of subgrad 1104.149612 dualbound = 3028559.365782, lowerbound=1217801.365782, norm of subgrad 37.978538 stepsize= 1.000000 +dualbound = 3028676.840025, lowerbound=1215618.840025, norm of subgrad 1103.187128 dualbound = 3028676.840025, lowerbound=1215618.840025, norm of subgrad 38.993259 stepsize= 1.000000 +dualbound = 3028807.020190, lowerbound=1221404.020190, norm of subgrad 1105.796555 dualbound = 3028807.020190, lowerbound=1221404.020190, norm of subgrad 38.886761 stepsize= 1.000000 +dualbound = 3028910.292072, lowerbound=1219757.292072, norm of subgrad 1105.033163 dualbound = 3028910.292072, lowerbound=1219757.292072, norm of subgrad 38.003577 stepsize= 1.000000 +dualbound = 3029050.429162, lowerbound=1218978.429162, norm of subgrad 1104.712374 dualbound = 3029050.429162, lowerbound=1218978.429162, norm of subgrad 39.384478 stepsize= 1.000000 +dualbound = 3029138.933385, lowerbound=1221501.933385, norm of subgrad 1105.848061 dualbound = 3029138.933385, lowerbound=1221501.933385, norm of subgrad 38.555210 stepsize= 1.000000 +dualbound = 3029297.975561, lowerbound=1212762.975561, norm of subgrad 1101.921946 dualbound = 3029297.975561, lowerbound=1212762.975561, norm of subgrad 40.349005 stepsize= 1.000000 +dualbound = 3029404.774916, lowerbound=1222574.774916, norm of subgrad 1106.323540 dualbound = 3029404.774916, lowerbound=1222574.774916, norm of subgrad 38.520116 stepsize= 1.000000 +dualbound = 3029544.816096, lowerbound=1215956.816096, norm of subgrad 1103.332142 dualbound = 3029544.816096, lowerbound=1215956.816096, norm of subgrad 39.051776 stepsize= 1.000000 +dualbound = 3029658.335251, lowerbound=1220475.335251, norm of subgrad 1105.388771 dualbound = 3029658.335251, lowerbound=1220475.335251, norm of subgrad 39.019471 stepsize= 1.000000 +dualbound = 3029797.934153, lowerbound=1215172.934153, norm of subgrad 1102.952825 dualbound = 3029797.934153, lowerbound=1215172.934153, norm of subgrad 38.361425 stepsize= 1.000000 +dualbound = 3029922.418906, lowerbound=1215701.418906, norm of subgrad 1103.239058 dualbound = 3029922.418906, lowerbound=1215701.418906, norm of subgrad 39.490312 stepsize= 1.000000 +dualbound = 3030014.541492, lowerbound=1218659.541492, norm of subgrad 1104.566676 dualbound = 3030014.541492, lowerbound=1218659.541492, norm of subgrad 38.731416 stepsize= 1.000000 +dualbound = 3030136.747008, lowerbound=1214978.747008, norm of subgrad 1102.887006 dualbound = 3030136.747008, lowerbound=1214978.747008, norm of subgrad 38.771194 stepsize= 1.000000 +dualbound = 3030295.291893, lowerbound=1219513.291893, norm of subgrad 1104.922754 dualbound = 3030295.291893, lowerbound=1219513.291893, norm of subgrad 38.723958 stepsize= 1.000000 +dualbound = 3030402.915085, lowerbound=1215849.915085, norm of subgrad 1103.278711 dualbound = 3030402.915085, lowerbound=1215849.915085, norm of subgrad 38.491859 stepsize= 1.000000 +dualbound = 3030513.731764, lowerbound=1220628.731764, norm of subgrad 1105.458607 dualbound = 3030513.731764, lowerbound=1220628.731764, norm of subgrad 38.997650 stepsize= 1.000000 +dualbound = 3030618.999333, lowerbound=1216438.999333, norm of subgrad 1103.571928 dualbound = 3030618.999333, lowerbound=1216438.999333, norm of subgrad 39.208004 stepsize= 1.000000 +dualbound = 3030759.639910, lowerbound=1220282.639910, norm of subgrad 1105.283059 dualbound = 3030759.639910, lowerbound=1220282.639910, norm of subgrad 38.841223 stepsize= 1.000000 +dualbound = 3030881.402387, lowerbound=1219738.402387, norm of subgrad 1105.067601 dualbound = 3030881.402387, lowerbound=1219738.402387, norm of subgrad 39.468500 stepsize= 1.000000 +dualbound = 3030983.941171, lowerbound=1220610.941171, norm of subgrad 1105.430659 dualbound = 3030983.941171, lowerbound=1220610.941171, norm of subgrad 38.321519 stepsize= 1.000000 +dualbound = 3031158.534355, lowerbound=1217147.534355, norm of subgrad 1103.845340 dualbound = 3031158.534355, lowerbound=1217147.534355, norm of subgrad 38.750396 stepsize= 1.000000 +dualbound = 3031256.815587, lowerbound=1221249.815587, norm of subgrad 1105.701956 dualbound = 3031256.815587, lowerbound=1221249.815587, norm of subgrad 37.752897 stepsize= 1.000000 +dualbound = 3031395.044540, lowerbound=1216408.044540, norm of subgrad 1103.507157 dualbound = 3031395.044540, lowerbound=1216408.044540, norm of subgrad 38.186764 stepsize= 1.000000 +dualbound = 3031511.358339, lowerbound=1219708.358339, norm of subgrad 1105.006497 dualbound = 3031511.358339, lowerbound=1219708.358339, norm of subgrad 38.043578 stepsize= 1.000000 +dualbound = 3031624.543848, lowerbound=1218827.543848, norm of subgrad 1104.629596 dualbound = 3031624.543848, lowerbound=1218827.543848, norm of subgrad 38.628817 stepsize= 1.000000 +dualbound = 3031705.105994, lowerbound=1217466.105994, norm of subgrad 1104.041714 dualbound = 3031705.105994, lowerbound=1217466.105994, norm of subgrad 39.020022 stepsize= 1.000000 +dualbound = 3031821.471707, lowerbound=1223126.471707, norm of subgrad 1106.565620 dualbound = 3031821.471707, lowerbound=1223126.471707, norm of subgrad 38.436515 stepsize= 1.000000 +dualbound = 3031995.079893, lowerbound=1215944.079893, norm of subgrad 1103.306431 dualbound = 3031995.079893, lowerbound=1215944.079893, norm of subgrad 38.917967 stepsize= 1.000000 +dualbound = 3032100.639663, lowerbound=1220807.639663, norm of subgrad 1105.512388 dualbound = 3032100.639663, lowerbound=1220807.639663, norm of subgrad 38.151799 stepsize= 1.000000 +dualbound = 3032234.332525, lowerbound=1219603.332525, norm of subgrad 1105.021417 dualbound = 3032234.332525, lowerbound=1219603.332525, norm of subgrad 40.033647 stepsize= 1.000000 +dualbound = 3032299.821191, lowerbound=1215581.821191, norm of subgrad 1103.184400 dualbound = 3032299.821191, lowerbound=1215581.821191, norm of subgrad 38.723232 stepsize= 1.000000 +dualbound = 3032466.880888, lowerbound=1220407.880888, norm of subgrad 1105.326142 dualbound = 3032466.880888, lowerbound=1220407.880888, norm of subgrad 38.795099 stepsize= 1.000000 +dualbound = 3032586.367442, lowerbound=1215830.367442, norm of subgrad 1103.278916 dualbound = 3032586.367442, lowerbound=1215830.367442, norm of subgrad 38.903555 stepsize= 1.000000 +dualbound = 3032701.167848, lowerbound=1223981.167848, norm of subgrad 1106.968910 dualbound = 3032701.167848, lowerbound=1223981.167848, norm of subgrad 38.907588 stepsize= 1.000000 +dualbound = 3032825.563566, lowerbound=1217118.563566, norm of subgrad 1103.880231 dualbound = 3032825.563566, lowerbound=1217118.563566, norm of subgrad 39.463853 stepsize= 1.000000 +dualbound = 3032939.041128, lowerbound=1218787.041128, norm of subgrad 1104.610810 dualbound = 3032939.041128, lowerbound=1218787.041128, norm of subgrad 38.619653 stepsize= 1.000000 +dualbound = 3033085.691262, lowerbound=1216085.691262, norm of subgrad 1103.368792 dualbound = 3033085.691262, lowerbound=1216085.691262, norm of subgrad 38.518179 stepsize= 1.000000 +dualbound = 3033190.223935, lowerbound=1223603.223935, norm of subgrad 1106.790054 dualbound = 3033190.223935, lowerbound=1223603.223935, norm of subgrad 38.542609 stepsize= 1.000000 +dualbound = 3033343.378980, lowerbound=1212899.378980, norm of subgrad 1101.927121 dualbound = 3033343.378980, lowerbound=1212899.378980, norm of subgrad 38.693088 stepsize= 1.000000 +dualbound = 3033464.042803, lowerbound=1217843.042803, norm of subgrad 1104.180711 dualbound = 3033464.042803, lowerbound=1217843.042803, norm of subgrad 38.635008 stepsize= 1.000000 +dualbound = 3033570.266883, lowerbound=1214911.266883, norm of subgrad 1102.849159 dualbound = 3033570.266883, lowerbound=1214911.266883, norm of subgrad 38.356539 stepsize= 1.000000 +dualbound = 3033698.182081, lowerbound=1216686.182081, norm of subgrad 1103.679837 dualbound = 3033698.182081, lowerbound=1216686.182081, norm of subgrad 39.381661 stepsize= 1.000000 +dualbound = 3033796.662970, lowerbound=1221785.662970, norm of subgrad 1105.975887 dualbound = 3033796.662970, lowerbound=1221785.662970, norm of subgrad 38.671448 stepsize= 1.000000 +dualbound = 3033958.987549, lowerbound=1216877.987549, norm of subgrad 1103.743171 dualbound = 3033958.987549, lowerbound=1216877.987549, norm of subgrad 39.157689 stepsize= 1.000000 +dualbound = 3034047.094204, lowerbound=1217671.094204, norm of subgrad 1104.119149 dualbound = 3034047.094204, lowerbound=1217671.094204, norm of subgrad 38.679538 stepsize= 1.000000 +dualbound = 3034177.143612, lowerbound=1223061.143612, norm of subgrad 1106.558694 dualbound = 3034177.143612, lowerbound=1223061.143612, norm of subgrad 39.256202 stepsize= 1.000000 +dualbound = 3034288.007979, lowerbound=1216306.007979, norm of subgrad 1103.487656 dualbound = 3034288.007979, lowerbound=1216306.007979, norm of subgrad 38.598761 stepsize= 1.000000 +dualbound = 3034406.973045, lowerbound=1221730.973045, norm of subgrad 1105.972411 dualbound = 3034406.973045, lowerbound=1221730.973045, norm of subgrad 39.534353 stepsize= 1.000000 +dualbound = 3034533.531871, lowerbound=1216431.531871, norm of subgrad 1103.526407 dualbound = 3034533.531871, lowerbound=1216431.531871, norm of subgrad 38.282618 stepsize= 1.000000 +dualbound = 3034707.763897, lowerbound=1218972.763897, norm of subgrad 1104.670885 dualbound = 3034707.763897, lowerbound=1218972.763897, norm of subgrad 38.719918 stepsize= 1.000000 +dualbound = 3034799.052281, lowerbound=1217558.052281, norm of subgrad 1104.027197 dualbound = 3034799.052281, lowerbound=1217558.052281, norm of subgrad 37.540490 stepsize= 1.000000 +dualbound = 3034948.649941, lowerbound=1221709.649941, norm of subgrad 1105.917560 dualbound = 3034948.649941, lowerbound=1221709.649941, norm of subgrad 38.647091 stepsize= 1.000000 +dualbound = 3035008.053642, lowerbound=1213545.053642, norm of subgrad 1102.279481 dualbound = 3035008.053642, lowerbound=1213545.053642, norm of subgrad 39.171465 stepsize= 1.000000 +dualbound = 3035139.970638, lowerbound=1221419.970638, norm of subgrad 1105.847625 dualbound = 3035139.970638, lowerbound=1221419.970638, norm of subgrad 40.136230 stepsize= 1.000000 +dualbound = 3035238.006850, lowerbound=1221708.006850, norm of subgrad 1105.952082 dualbound = 3035238.006850, lowerbound=1221708.006850, norm of subgrad 38.987642 stepsize= 1.000000 +dualbound = 3035401.734847, lowerbound=1220101.734847, norm of subgrad 1105.198957 dualbound = 3035401.734847, lowerbound=1220101.734847, norm of subgrad 39.073367 stepsize= 1.000000 +dualbound = 3035517.404516, lowerbound=1214750.404516, norm of subgrad 1102.777586 dualbound = 3035517.404516, lowerbound=1214750.404516, norm of subgrad 38.518433 stepsize= 1.000000 +dualbound = 3035668.444525, lowerbound=1222526.444525, norm of subgrad 1106.277743 dualbound = 3035668.444525, lowerbound=1222526.444525, norm of subgrad 38.406250 stepsize= 1.000000 +dualbound = 3035779.837013, lowerbound=1215688.837013, norm of subgrad 1103.193472 dualbound = 3035779.837013, lowerbound=1215688.837013, norm of subgrad 38.188905 stepsize= 1.000000 +dualbound = 3035886.194338, lowerbound=1218167.194338, norm of subgrad 1104.354651 dualbound = 3035886.194338, lowerbound=1218167.194338, norm of subgrad 39.221899 stepsize= 1.000000 +dualbound = 3036006.424080, lowerbound=1218640.424080, norm of subgrad 1104.531314 dualbound = 3036006.424080, lowerbound=1218640.424080, norm of subgrad 38.330533 stepsize= 1.000000 +dualbound = 3036137.468778, lowerbound=1222204.468778, norm of subgrad 1106.161141 dualbound = 3036137.468778, lowerbound=1222204.468778, norm of subgrad 38.974924 stepsize= 1.000000 +dualbound = 3036254.876704, lowerbound=1216939.876704, norm of subgrad 1103.766677 dualbound = 3036254.876704, lowerbound=1216939.876704, norm of subgrad 38.450071 stepsize= 1.000000 +dualbound = 3036377.373528, lowerbound=1220564.373528, norm of subgrad 1105.457540 dualbound = 3036377.373528, lowerbound=1220564.373528, norm of subgrad 39.931151 stepsize= 1.000000 +dualbound = 3036483.415430, lowerbound=1220931.415430, norm of subgrad 1105.594598 dualbound = 3036483.415430, lowerbound=1220931.415430, norm of subgrad 38.910691 stepsize= 1.000000 +dualbound = 3036612.975264, lowerbound=1217714.975264, norm of subgrad 1104.148982 dualbound = 3036612.975264, lowerbound=1217714.975264, norm of subgrad 39.491263 stepsize= 1.000000 +dualbound = 3036726.861797, lowerbound=1217379.861797, norm of subgrad 1103.999937 dualbound = 3036726.861797, lowerbound=1217379.861797, norm of subgrad 39.368598 stepsize= 1.000000 +dualbound = 3036863.230396, lowerbound=1215840.230396, norm of subgrad 1103.277948 dualbound = 3036863.230396, lowerbound=1215840.230396, norm of subgrad 38.966249 stepsize= 1.000000 +dualbound = 3036997.001669, lowerbound=1218458.001669, norm of subgrad 1104.457786 dualbound = 3036997.001669, lowerbound=1218458.001669, norm of subgrad 38.765594 stepsize= 1.000000 +dualbound = 3037111.460789, lowerbound=1223593.460789, norm of subgrad 1106.795582 dualbound = 3037111.460789, lowerbound=1223593.460789, norm of subgrad 38.954578 stepsize= 1.000000 +dualbound = 3037230.716104, lowerbound=1217520.716104, norm of subgrad 1104.033385 dualbound = 3037230.716104, lowerbound=1217520.716104, norm of subgrad 38.577912 stepsize= 1.000000 +dualbound = 3037378.023778, lowerbound=1219287.023778, norm of subgrad 1104.839818 dualbound = 3037378.023778, lowerbound=1219287.023778, norm of subgrad 39.131927 stepsize= 1.000000 +dualbound = 3037460.467225, lowerbound=1215897.467225, norm of subgrad 1103.322467 dualbound = 3037460.467225, lowerbound=1215897.467225, norm of subgrad 38.800044 stepsize= 1.000000 +dualbound = 3037591.153143, lowerbound=1219942.153143, norm of subgrad 1105.157072 dualbound = 3037591.153143, lowerbound=1219942.153143, norm of subgrad 39.505518 stepsize= 1.000000 +dualbound = 3037699.919561, lowerbound=1224198.919561, norm of subgrad 1107.079003 dualbound = 3037699.919561, lowerbound=1224198.919561, norm of subgrad 39.163330 stepsize= 1.000000 +dualbound = 3037839.486480, lowerbound=1220190.486480, norm of subgrad 1105.237299 dualbound = 3037839.486480, lowerbound=1220190.486480, norm of subgrad 38.711328 stepsize= 1.000000 +dualbound = 3037975.209756, lowerbound=1216259.209756, norm of subgrad 1103.451045 dualbound = 3037975.209756, lowerbound=1216259.209756, norm of subgrad 38.480167 stepsize= 1.000000 +dualbound = 3038090.975479, lowerbound=1217598.975479, norm of subgrad 1104.049807 dualbound = 3038090.975479, lowerbound=1217598.975479, norm of subgrad 37.983756 stepsize= 1.000000 +dualbound = 3038219.955125, lowerbound=1215682.955125, norm of subgrad 1103.183101 dualbound = 3038219.955125, lowerbound=1215682.955125, norm of subgrad 38.196592 stepsize= 1.000000 +dualbound = 3038358.627000, lowerbound=1222413.627000, norm of subgrad 1106.218616 dualbound = 3038358.627000, lowerbound=1222413.627000, norm of subgrad 38.008839 stepsize= 1.000000 +dualbound = 3038477.771503, lowerbound=1215444.771503, norm of subgrad 1103.099167 dualbound = 3038477.771503, lowerbound=1215444.771503, norm of subgrad 38.757509 stepsize= 1.000000 +dualbound = 3038563.246090, lowerbound=1222730.246090, norm of subgrad 1106.396514 dualbound = 3038563.246090, lowerbound=1222730.246090, norm of subgrad 38.320681 stepsize= 1.000000 +dualbound = 3038700.441153, lowerbound=1219413.441153, norm of subgrad 1104.902910 dualbound = 3038700.441153, lowerbound=1219413.441153, norm of subgrad 39.168802 stepsize= 1.000000 +dualbound = 3038829.711155, lowerbound=1223281.711155, norm of subgrad 1106.659709 dualbound = 3038829.711155, lowerbound=1223281.711155, norm of subgrad 39.284475 stepsize= 1.000000 +dualbound = 3038937.366410, lowerbound=1216199.366410, norm of subgrad 1103.423022 dualbound = 3038937.366410, lowerbound=1216199.366410, norm of subgrad 38.087468 stepsize= 1.000000 +dualbound = 3039081.041210, lowerbound=1220522.041210, norm of subgrad 1105.384115 dualbound = 3039081.041210, lowerbound=1220522.041210, norm of subgrad 38.673955 stepsize= 1.000000 +dualbound = 3039170.696778, lowerbound=1216848.696778, norm of subgrad 1103.756629 dualbound = 3039170.696778, lowerbound=1216848.696778, norm of subgrad 38.982760 stepsize= 1.000000 +dualbound = 3039318.362101, lowerbound=1220819.362101, norm of subgrad 1105.528544 dualbound = 3039318.362101, lowerbound=1220819.362101, norm of subgrad 39.008529 stepsize= 1.000000 +dualbound = 3039424.659487, lowerbound=1216824.659487, norm of subgrad 1103.722184 dualbound = 3039424.659487, lowerbound=1216824.659487, norm of subgrad 38.526580 stepsize= 1.000000 +dualbound = 3039569.559277, lowerbound=1220591.559277, norm of subgrad 1105.446317 dualbound = 3039569.559277, lowerbound=1220591.559277, norm of subgrad 39.558814 stepsize= 1.000000 +dualbound = 3039652.819595, lowerbound=1218532.819595, norm of subgrad 1104.530588 dualbound = 3039652.819595, lowerbound=1218532.819595, norm of subgrad 39.220662 stepsize= 1.000000 +dualbound = 3039777.778231, lowerbound=1216771.778231, norm of subgrad 1103.702758 dualbound = 3039777.778231, lowerbound=1216771.778231, norm of subgrad 38.896769 stepsize= 1.000000 +dualbound = 3039921.754644, lowerbound=1222275.754644, norm of subgrad 1106.177542 dualbound = 3039921.754644, lowerbound=1222275.754644, norm of subgrad 38.690779 stepsize= 1.000000 +dualbound = 3040045.753369, lowerbound=1223614.753369, norm of subgrad 1106.828240 dualbound = 3040045.753369, lowerbound=1223614.753369, norm of subgrad 39.724032 stepsize= 1.000000 +dualbound = 3040116.176757, lowerbound=1217941.176757, norm of subgrad 1104.249599 dualbound = 3040116.176757, lowerbound=1217941.176757, norm of subgrad 38.683632 stepsize= 1.000000 +dualbound = 3040300.400021, lowerbound=1220158.400021, norm of subgrad 1105.243593 dualbound = 3040300.400021, lowerbound=1220158.400021, norm of subgrad 39.865063 stepsize= 1.000000 +dualbound = 3040418.195229, lowerbound=1218833.195229, norm of subgrad 1104.638038 dualbound = 3040418.195229, lowerbound=1218833.195229, norm of subgrad 38.856083 stepsize= 1.000000 +dualbound = 3040516.239329, lowerbound=1222462.239329, norm of subgrad 1106.297085 dualbound = 3040516.239329, lowerbound=1222462.239329, norm of subgrad 39.102993 stepsize= 1.000000 +dualbound = 3040645.836476, lowerbound=1216360.836476, norm of subgrad 1103.511593 dualbound = 3040645.836476, lowerbound=1216360.836476, norm of subgrad 38.814909 stepsize= 1.000000 +dualbound = 3040795.270226, lowerbound=1218836.270226, norm of subgrad 1104.619061 dualbound = 3040795.270226, lowerbound=1218836.270226, norm of subgrad 38.683766 stepsize= 1.000000 +dualbound = 3040877.810156, lowerbound=1218251.810156, norm of subgrad 1104.373039 dualbound = 3040877.810156, lowerbound=1218251.810156, norm of subgrad 38.347620 stepsize= 1.000000 +dualbound = 3041025.811413, lowerbound=1224449.811413, norm of subgrad 1107.183730 dualbound = 3041025.811413, lowerbound=1224449.811413, norm of subgrad 39.420823 stepsize= 1.000000 +dualbound = 3041107.023500, lowerbound=1217169.023500, norm of subgrad 1103.922109 dualbound = 3041107.023500, lowerbound=1217169.023500, norm of subgrad 39.448854 stepsize= 1.000000 +dualbound = 3041261.027314, lowerbound=1220478.027314, norm of subgrad 1105.377324 dualbound = 3041261.027314, lowerbound=1220478.027314, norm of subgrad 39.179125 stepsize= 1.000000 +dualbound = 3041388.779662, lowerbound=1215550.779662, norm of subgrad 1103.156281 dualbound = 3041388.779662, lowerbound=1215550.779662, norm of subgrad 39.124830 stepsize= 1.000000 +dualbound = 3041508.516054, lowerbound=1220673.516054, norm of subgrad 1105.457605 dualbound = 3041508.516054, lowerbound=1220673.516054, norm of subgrad 38.506316 stepsize= 1.000000 +dualbound = 3041637.600812, lowerbound=1216925.600812, norm of subgrad 1103.751603 dualbound = 3041637.600812, lowerbound=1216925.600812, norm of subgrad 38.354723 stepsize= 1.000000 +dualbound = 3041753.370578, lowerbound=1219034.370578, norm of subgrad 1104.724568 dualbound = 3041753.370578, lowerbound=1219034.370578, norm of subgrad 38.701031 stepsize= 1.000000 +dualbound = 3041859.449438, lowerbound=1216751.449438, norm of subgrad 1103.680411 dualbound = 3041859.449438, lowerbound=1216751.449438, norm of subgrad 38.276349 stepsize= 1.000000 +dualbound = 3042032.240458, lowerbound=1218502.240458, norm of subgrad 1104.452915 dualbound = 3042032.240458, lowerbound=1218502.240458, norm of subgrad 38.558929 stepsize= 1.000000 +dualbound = 3042109.315518, lowerbound=1222288.315518, norm of subgrad 1106.199040 dualbound = 3042109.315518, lowerbound=1222288.315518, norm of subgrad 38.276299 stepsize= 1.000000 +dualbound = 3042239.410317, lowerbound=1220006.410317, norm of subgrad 1105.174380 dualbound = 3042239.410317, lowerbound=1220006.410317, norm of subgrad 39.167522 stepsize= 1.000000 +dualbound = 3042332.327972, lowerbound=1214708.327972, norm of subgrad 1102.753974 dualbound = 3042332.327972, lowerbound=1214708.327972, norm of subgrad 38.090913 stepsize= 1.000000 +dualbound = 3042498.087088, lowerbound=1221933.087088, norm of subgrad 1106.041630 dualbound = 3042498.087088, lowerbound=1221933.087088, norm of subgrad 39.506444 stepsize= 1.000000 +dualbound = 3042572.840356, lowerbound=1218622.840356, norm of subgrad 1104.551420 dualbound = 3042572.840356, lowerbound=1218622.840356, norm of subgrad 38.545470 stepsize= 1.000000 +dualbound = 3042719.993767, lowerbound=1217993.993767, norm of subgrad 1104.254950 dualbound = 3042719.993767, lowerbound=1217993.993767, norm of subgrad 39.142731 stepsize= 1.000000 +dualbound = 3042836.992520, lowerbound=1220739.992520, norm of subgrad 1105.512547 dualbound = 3042836.992520, lowerbound=1220739.992520, norm of subgrad 39.179060 stepsize= 1.000000 +dualbound = 3042971.110263, lowerbound=1220972.110263, norm of subgrad 1105.589938 dualbound = 3042971.110263, lowerbound=1220972.110263, norm of subgrad 38.614994 stepsize= 1.000000 +dualbound = 3043110.329158, lowerbound=1215496.329158, norm of subgrad 1103.088541 dualbound = 3043110.329158, lowerbound=1215496.329158, norm of subgrad 38.042330 stepsize= 1.000000 +dualbound = 3043240.715638, lowerbound=1221534.715638, norm of subgrad 1105.879160 dualbound = 3043240.715638, lowerbound=1221534.715638, norm of subgrad 39.552326 stepsize= 1.000000 +dualbound = 3043311.223759, lowerbound=1215478.223759, norm of subgrad 1103.136539 dualbound = 3043311.223759, lowerbound=1215478.223759, norm of subgrad 38.762200 stepsize= 1.000000 +dualbound = 3043473.031757, lowerbound=1222248.031757, norm of subgrad 1106.181735 dualbound = 3043473.031757, lowerbound=1222248.031757, norm of subgrad 39.392994 stepsize= 1.000000 +dualbound = 3043567.102827, lowerbound=1217067.102827, norm of subgrad 1103.823855 dualbound = 3043567.102827, lowerbound=1217067.102827, norm of subgrad 38.132284 stepsize= 1.000000 +dualbound = 3043716.671993, lowerbound=1225581.671993, norm of subgrad 1107.696110 dualbound = 3043716.671993, lowerbound=1225581.671993, norm of subgrad 39.478718 stepsize= 1.000000 +dualbound = 3043813.373281, lowerbound=1215880.373281, norm of subgrad 1103.282545 dualbound = 3043813.373281, lowerbound=1215880.373281, norm of subgrad 38.061809 stepsize= 1.000000 +dualbound = 3043949.923007, lowerbound=1220245.923007, norm of subgrad 1105.284544 dualbound = 3043949.923007, lowerbound=1220245.923007, norm of subgrad 39.300760 stepsize= 1.000000 +dualbound = 3044033.028374, lowerbound=1215521.028374, norm of subgrad 1103.167724 dualbound = 3044033.028374, lowerbound=1215521.028374, norm of subgrad 39.256915 stepsize= 1.000000 +dualbound = 3044174.845516, lowerbound=1221929.845516, norm of subgrad 1106.027055 dualbound = 3044174.845516, lowerbound=1221929.845516, norm of subgrad 38.830621 stepsize= 1.000000 +dualbound = 3044325.828417, lowerbound=1221695.828417, norm of subgrad 1105.909051 dualbound = 3044325.828417, lowerbound=1221695.828417, norm of subgrad 38.600297 stepsize= 1.000000 +dualbound = 3044441.385925, lowerbound=1221337.385925, norm of subgrad 1105.745172 dualbound = 3044441.385925, lowerbound=1221337.385925, norm of subgrad 38.086185 stepsize= 1.000000 +dualbound = 3044568.788902, lowerbound=1223239.788902, norm of subgrad 1106.636701 dualbound = 3044568.788902, lowerbound=1223239.788902, norm of subgrad 39.145919 stepsize= 1.000000 +dualbound = 3044680.546183, lowerbound=1213671.546183, norm of subgrad 1102.283333 dualbound = 3044680.546183, lowerbound=1213671.546183, norm of subgrad 38.324369 stepsize= 1.000000 +dualbound = 3044797.663896, lowerbound=1219594.663896, norm of subgrad 1104.957313 dualbound = 3044797.663896, lowerbound=1219594.663896, norm of subgrad 38.119781 stepsize= 1.000000 +dualbound = 3044921.691955, lowerbound=1220488.691955, norm of subgrad 1105.393003 dualbound = 3044921.691955, lowerbound=1220488.691955, norm of subgrad 39.102788 stepsize= 1.000000 +dualbound = 3045033.427921, lowerbound=1220773.427921, norm of subgrad 1105.512744 dualbound = 3045033.427921, lowerbound=1220773.427921, norm of subgrad 38.687672 stepsize= 1.000000 +dualbound = 3045172.884810, lowerbound=1222632.884810, norm of subgrad 1106.346639 dualbound = 3045172.884810, lowerbound=1222632.884810, norm of subgrad 38.851730 stepsize= 1.000000 +dualbound = 3045302.201426, lowerbound=1221510.201426, norm of subgrad 1105.838687 dualbound = 3045302.201426, lowerbound=1221510.201426, norm of subgrad 38.708095 stepsize= 1.000000 +dualbound = 3045404.957019, lowerbound=1216864.957019, norm of subgrad 1103.739533 dualbound = 3045404.957019, lowerbound=1216864.957019, norm of subgrad 38.454591 stepsize= 1.000000 +dualbound = 3045509.539254, lowerbound=1217580.539254, norm of subgrad 1104.108935 dualbound = 3045509.539254, lowerbound=1217580.539254, norm of subgrad 39.756537 stepsize= 1.000000 +dualbound = 3045631.390549, lowerbound=1218582.390549, norm of subgrad 1104.511834 dualbound = 3045631.390549, lowerbound=1218582.390549, norm of subgrad 38.546742 stepsize= 1.000000 +dualbound = 3045770.946980, lowerbound=1219087.946980, norm of subgrad 1104.749721 dualbound = 3045770.946980, lowerbound=1219087.946980, norm of subgrad 39.032761 stepsize= 1.000000 +dualbound = 3045899.262209, lowerbound=1221267.262209, norm of subgrad 1105.735620 dualbound = 3045899.262209, lowerbound=1221267.262209, norm of subgrad 38.888497 stepsize= 1.000000 +dualbound = 3045999.880693, lowerbound=1219289.880693, norm of subgrad 1104.890891 dualbound = 3045999.880693, lowerbound=1219289.880693, norm of subgrad 39.932674 stepsize= 1.000000 +dualbound = 3046118.144854, lowerbound=1220833.144854, norm of subgrad 1105.545632 dualbound = 3046118.144854, lowerbound=1220833.144854, norm of subgrad 38.939237 stepsize= 1.000000 +dualbound = 3046243.032725, lowerbound=1217128.032725, norm of subgrad 1103.903090 dualbound = 3046243.032725, lowerbound=1217128.032725, norm of subgrad 39.986096 stepsize= 1.000000 +dualbound = 3046375.371084, lowerbound=1218676.371084, norm of subgrad 1104.589232 dualbound = 3046375.371084, lowerbound=1218676.371084, norm of subgrad 39.665329 stepsize= 1.000000 +dualbound = 3046494.102262, lowerbound=1219525.102262, norm of subgrad 1104.934433 dualbound = 3046494.102262, lowerbound=1219525.102262, norm of subgrad 38.389207 stepsize= 1.000000 +dualbound = 3046667.196995, lowerbound=1224012.196995, norm of subgrad 1106.964858 dualbound = 3046667.196995, lowerbound=1224012.196995, norm of subgrad 39.141982 stepsize= 1.000000 +dualbound = 3046738.369679, lowerbound=1216863.369679, norm of subgrad 1103.744250 dualbound = 3046738.369679, lowerbound=1216863.369679, norm of subgrad 38.199119 stepsize= 1.000000 +dualbound = 3046882.431026, lowerbound=1221903.431026, norm of subgrad 1105.998839 dualbound = 3046882.431026, lowerbound=1221903.431026, norm of subgrad 38.393507 stepsize= 1.000000 +dualbound = 3047013.630555, lowerbound=1216626.630555, norm of subgrad 1103.650140 dualbound = 3047013.630555, lowerbound=1216626.630555, norm of subgrad 39.347167 stepsize= 1.000000 +dualbound = 3047117.269522, lowerbound=1220364.269522, norm of subgrad 1105.327223 dualbound = 3047117.269522, lowerbound=1220364.269522, norm of subgrad 38.569923 stepsize= 1.000000 +dualbound = 3047242.381625, lowerbound=1221427.381625, norm of subgrad 1105.800787 dualbound = 3047242.381625, lowerbound=1221427.381625, norm of subgrad 38.640809 stepsize= 1.000000 +dualbound = 3047395.829697, lowerbound=1221475.829697, norm of subgrad 1105.794660 dualbound = 3047395.829697, lowerbound=1221475.829697, norm of subgrad 38.202723 stepsize= 1.000000 +dualbound = 3047500.637538, lowerbound=1221054.637538, norm of subgrad 1105.620929 dualbound = 3047500.637538, lowerbound=1221054.637538, norm of subgrad 38.050070 stepsize= 1.000000 +dualbound = 3047621.818000, lowerbound=1222405.818000, norm of subgrad 1106.220963 dualbound = 3047621.818000, lowerbound=1222405.818000, norm of subgrad 37.949710 stepsize= 1.000000 +dualbound = 3047736.150972, lowerbound=1218658.150972, norm of subgrad 1104.545224 dualbound = 3047736.150972, lowerbound=1218658.150972, norm of subgrad 38.423079 stepsize= 1.000000 +dualbound = 3047848.048499, lowerbound=1225716.048499, norm of subgrad 1107.745931 dualbound = 3047848.048499, lowerbound=1225716.048499, norm of subgrad 38.689760 stepsize= 1.000000 +dualbound = 3047978.522222, lowerbound=1215737.522222, norm of subgrad 1103.214178 dualbound = 3047978.522222, lowerbound=1215737.522222, norm of subgrad 38.398877 stepsize= 1.000000 +dualbound = 3048084.669532, lowerbound=1221115.669532, norm of subgrad 1105.661643 dualbound = 3048084.669532, lowerbound=1221115.669532, norm of subgrad 38.446681 stepsize= 1.000000 +dualbound = 3048220.001319, lowerbound=1215192.001319, norm of subgrad 1102.961015 dualbound = 3048220.001319, lowerbound=1215192.001319, norm of subgrad 38.292712 stepsize= 1.000000 +dualbound = 3048322.016986, lowerbound=1220904.016986, norm of subgrad 1105.608890 dualbound = 3048322.016986, lowerbound=1220904.016986, norm of subgrad 39.610802 stepsize= 1.000000 +dualbound = 3048421.875286, lowerbound=1218240.875286, norm of subgrad 1104.402044 dualbound = 3048421.875286, lowerbound=1218240.875286, norm of subgrad 39.533003 stepsize= 1.000000 +dualbound = 3048558.896634, lowerbound=1219956.896634, norm of subgrad 1105.136144 dualbound = 3048558.896634, lowerbound=1219956.896634, norm of subgrad 38.807491 stepsize= 1.000000 +dualbound = 3048698.663807, lowerbound=1218750.663807, norm of subgrad 1104.607470 dualbound = 3048698.663807, lowerbound=1218750.663807, norm of subgrad 39.328961 stepsize= 1.000000 +dualbound = 3048795.114855, lowerbound=1223546.114855, norm of subgrad 1106.786391 dualbound = 3048795.114855, lowerbound=1223546.114855, norm of subgrad 39.069823 stepsize= 1.000000 +dualbound = 3048939.892481, lowerbound=1220874.892481, norm of subgrad 1105.541448 dualbound = 3048939.892481, lowerbound=1220874.892481, norm of subgrad 38.623537 stepsize= 1.000000 +dualbound = 3049052.987052, lowerbound=1221974.987052, norm of subgrad 1106.023954 dualbound = 3049052.987052, lowerbound=1221974.987052, norm of subgrad 37.776905 stepsize= 1.000000 +dualbound = 3049210.986699, lowerbound=1217496.986699, norm of subgrad 1104.007693 dualbound = 3049210.986699, lowerbound=1217496.986699, norm of subgrad 38.652292 stepsize= 1.000000 +dualbound = 3049279.044491, lowerbound=1224082.044491, norm of subgrad 1107.014925 dualbound = 3049279.044491, lowerbound=1224082.044491, norm of subgrad 38.315242 stepsize= 1.000000 +dualbound = 3049418.484931, lowerbound=1220485.484931, norm of subgrad 1105.391100 dualbound = 3049418.484931, lowerbound=1220485.484931, norm of subgrad 39.286645 stepsize= 1.000000 +dualbound = 3049503.380060, lowerbound=1221593.380060, norm of subgrad 1105.898449 dualbound = 3049503.380060, lowerbound=1221593.380060, norm of subgrad 38.767191 stepsize= 1.000000 +dualbound = 3049660.338329, lowerbound=1218765.338329, norm of subgrad 1104.637650 dualbound = 3049660.338329, lowerbound=1218765.338329, norm of subgrad 40.198983 stepsize= 1.000000 +dualbound = 3049745.228390, lowerbound=1225356.228390, norm of subgrad 1107.595246 dualbound = 3049745.228390, lowerbound=1225356.228390, norm of subgrad 38.676738 stepsize= 1.000000 +dualbound = 3049912.218512, lowerbound=1213605.218512, norm of subgrad 1102.299514 dualbound = 3049912.218512, lowerbound=1213605.218512, norm of subgrad 40.323568 stepsize= 1.000000 +dualbound = 3050002.622941, lowerbound=1223391.622941, norm of subgrad 1106.685874 dualbound = 3050002.622941, lowerbound=1223391.622941, norm of subgrad 38.110424 stepsize= 1.000000 +dualbound = 3050167.679132, lowerbound=1222099.679132, norm of subgrad 1106.109253 dualbound = 3050167.679132, lowerbound=1222099.679132, norm of subgrad 39.281754 stepsize= 1.000000 +dualbound = 3050254.578774, lowerbound=1220032.578774, norm of subgrad 1105.175361 dualbound = 3050254.578774, lowerbound=1220032.578774, norm of subgrad 38.300126 stepsize= 1.000000 +dualbound = 3050406.613877, lowerbound=1221816.613877, norm of subgrad 1105.974509 dualbound = 3050406.613877, lowerbound=1221816.613877, norm of subgrad 38.923452 stepsize= 1.000000 +dualbound = 3050498.251632, lowerbound=1217050.251632, norm of subgrad 1103.813051 dualbound = 3050498.251632, lowerbound=1217050.251632, norm of subgrad 38.008391 stepsize= 1.000000 +dualbound = 3050634.829008, lowerbound=1219527.829008, norm of subgrad 1104.920734 dualbound = 3050634.829008, lowerbound=1219527.829008, norm of subgrad 38.191326 stepsize= 1.000000 +dualbound = 3050755.393268, lowerbound=1217832.393268, norm of subgrad 1104.153247 dualbound = 3050755.393268, lowerbound=1217832.393268, norm of subgrad 37.981104 stepsize= 1.000000 +dualbound = 3050874.875606, lowerbound=1223348.875606, norm of subgrad 1106.674241 dualbound = 3050874.875606, lowerbound=1223348.875606, norm of subgrad 38.710236 stepsize= 1.000000 +dualbound = 3050998.721331, lowerbound=1217677.721331, norm of subgrad 1104.094978 dualbound = 3050998.721331, lowerbound=1217677.721331, norm of subgrad 38.364642 stepsize= 1.000000 +dualbound = 3051112.019093, lowerbound=1221526.019093, norm of subgrad 1105.873871 dualbound = 3051112.019093, lowerbound=1221526.019093, norm of subgrad 39.297554 stepsize= 1.000000 +dualbound = 3051202.974605, lowerbound=1216282.974605, norm of subgrad 1103.476314 dualbound = 3051202.974605, lowerbound=1216282.974605, norm of subgrad 38.313908 stepsize= 1.000000 +dualbound = 3051359.891985, lowerbound=1224234.891985, norm of subgrad 1107.061377 dualbound = 3051359.891985, lowerbound=1224234.891985, norm of subgrad 38.819034 stepsize= 1.000000 +dualbound = 3051461.421875, lowerbound=1221914.421875, norm of subgrad 1106.014657 dualbound = 3051461.421875, lowerbound=1221914.421875, norm of subgrad 38.151407 stepsize= 1.000000 +dualbound = 3051594.260418, lowerbound=1219323.260418, norm of subgrad 1104.846261 dualbound = 3051594.260418, lowerbound=1219323.260418, norm of subgrad 38.663142 stepsize= 1.000000 +dualbound = 3051720.312377, lowerbound=1219740.312377, norm of subgrad 1105.063035 dualbound = 3051720.312377, lowerbound=1219740.312377, norm of subgrad 39.370699 stepsize= 1.000000 +dualbound = 3051826.069132, lowerbound=1221432.069132, norm of subgrad 1105.828680 dualbound = 3051826.069132, lowerbound=1221432.069132, norm of subgrad 39.124887 stepsize= 1.000000 +dualbound = 3051943.310879, lowerbound=1223073.310879, norm of subgrad 1106.538888 dualbound = 3051943.310879, lowerbound=1223073.310879, norm of subgrad 38.369803 stepsize= 1.000000 +dualbound = 3052079.515735, lowerbound=1223399.515735, norm of subgrad 1106.696668 dualbound = 3052079.515735, lowerbound=1223399.515735, norm of subgrad 38.912785 stepsize= 1.000000 +dualbound = 3052185.716155, lowerbound=1224793.716155, norm of subgrad 1107.324576 dualbound = 3052185.716155, lowerbound=1224793.716155, norm of subgrad 38.473373 stepsize= 1.000000 +dualbound = 3052303.655909, lowerbound=1218583.655909, norm of subgrad 1104.535041 dualbound = 3052303.655909, lowerbound=1218583.655909, norm of subgrad 39.140002 stepsize= 1.000000 +dualbound = 3052409.145951, lowerbound=1216982.145951, norm of subgrad 1103.801226 dualbound = 3052409.145951, lowerbound=1216982.145951, norm of subgrad 38.736159 stepsize= 1.000000 +dualbound = 3052544.193319, lowerbound=1220122.193319, norm of subgrad 1105.202331 dualbound = 3052544.193319, lowerbound=1220122.193319, norm of subgrad 38.536312 stepsize= 1.000000 +dualbound = 3052688.084547, lowerbound=1220650.084547, norm of subgrad 1105.423487 dualbound = 3052688.084547, lowerbound=1220650.084547, norm of subgrad 38.143036 stepsize= 1.000000 +dualbound = 3052809.988196, lowerbound=1219651.988196, norm of subgrad 1104.995470 dualbound = 3052809.988196, lowerbound=1219651.988196, norm of subgrad 38.534448 stepsize= 1.000000 +dualbound = 3052908.017761, lowerbound=1223362.017761, norm of subgrad 1106.686504 dualbound = 3052908.017761, lowerbound=1223362.017761, norm of subgrad 38.613852 stepsize= 1.000000 +dualbound = 3053014.857935, lowerbound=1224184.857935, norm of subgrad 1107.070846 dualbound = 3053014.857935, lowerbound=1224184.857935, norm of subgrad 39.087596 stepsize= 1.000000 +dualbound = 3053130.334521, lowerbound=1220244.334521, norm of subgrad 1105.275683 dualbound = 3053130.334521, lowerbound=1220244.334521, norm of subgrad 38.800471 stepsize= 1.000000 +dualbound = 3053272.783109, lowerbound=1220743.783109, norm of subgrad 1105.476722 dualbound = 3053272.783109, lowerbound=1220743.783109, norm of subgrad 38.437593 stepsize= 1.000000 +dualbound = 3053415.055221, lowerbound=1222856.055221, norm of subgrad 1106.399139 dualbound = 3053415.055221, lowerbound=1222856.055221, norm of subgrad 37.486959 stepsize= 1.000000 +dualbound = 3053534.384384, lowerbound=1221755.384384, norm of subgrad 1105.940498 dualbound = 3053534.384384, lowerbound=1221755.384384, norm of subgrad 38.318783 stepsize= 1.000000 +dualbound = 3053612.156071, lowerbound=1221925.156071, norm of subgrad 1106.025839 dualbound = 3053612.156071, lowerbound=1221925.156071, norm of subgrad 38.023305 stepsize= 1.000000 +dualbound = 3053739.978826, lowerbound=1217054.978826, norm of subgrad 1103.817004 dualbound = 3053739.978826, lowerbound=1217054.978826, norm of subgrad 38.533398 stepsize= 1.000000 +dualbound = 3053863.002943, lowerbound=1222098.002943, norm of subgrad 1106.086345 dualbound = 3053863.002943, lowerbound=1222098.002943, norm of subgrad 38.105434 stepsize= 1.000000 +dualbound = 3054012.205184, lowerbound=1221164.205184, norm of subgrad 1105.667764 dualbound = 3054012.205184, lowerbound=1221164.205184, norm of subgrad 38.551294 stepsize= 1.000000 +dualbound = 3054104.274353, lowerbound=1221099.274353, norm of subgrad 1105.641567 dualbound = 3054104.274353, lowerbound=1221099.274353, norm of subgrad 37.895503 stepsize= 1.000000 +dualbound = 3054205.034524, lowerbound=1223514.034524, norm of subgrad 1106.741178 dualbound = 3054205.034524, lowerbound=1223514.034524, norm of subgrad 38.246048 stepsize= 1.000000 +dualbound = 3054344.462624, lowerbound=1221612.462624, norm of subgrad 1105.893061 dualbound = 3054344.462624, lowerbound=1221612.462624, norm of subgrad 39.069529 stepsize= 1.000000 +dualbound = 3054470.725503, lowerbound=1224690.725503, norm of subgrad 1107.256396 dualbound = 3054470.725503, lowerbound=1224690.725503, norm of subgrad 38.108567 stepsize= 1.000000 +dualbound = 3054584.404867, lowerbound=1223765.404867, norm of subgrad 1106.859704 dualbound = 3054584.404867, lowerbound=1223765.404867, norm of subgrad 38.557481 stepsize= 1.000000 +dualbound = 3054716.686536, lowerbound=1223342.686536, norm of subgrad 1106.668734 dualbound = 3054716.686536, lowerbound=1223342.686536, norm of subgrad 38.797960 stepsize= 1.000000 +dualbound = 3054812.243117, lowerbound=1222901.243117, norm of subgrad 1106.456616 dualbound = 3054812.243117, lowerbound=1222901.243117, norm of subgrad 37.954665 stepsize= 1.000000 +dualbound = 3054921.275273, lowerbound=1218016.275273, norm of subgrad 1104.265039 dualbound = 3054921.275273, lowerbound=1218016.275273, norm of subgrad 38.652712 stepsize= 1.000000 +dualbound = 3055054.747732, lowerbound=1227919.747732, norm of subgrad 1108.760005 dualbound = 3055054.747732, lowerbound=1227919.747732, norm of subgrad 39.528122 stepsize= 1.000000 +dualbound = 3055161.463220, lowerbound=1214435.463220, norm of subgrad 1102.618004 dualbound = 3055161.463220, lowerbound=1214435.463220, norm of subgrad 37.917219 stepsize= 1.000000 +dualbound = 3055321.590558, lowerbound=1220839.590558, norm of subgrad 1105.501963 dualbound = 3055321.590558, lowerbound=1220839.590558, norm of subgrad 38.146131 stepsize= 1.000000 +dualbound = 3055425.803749, lowerbound=1217998.803749, norm of subgrad 1104.248977 dualbound = 3055425.803749, lowerbound=1217998.803749, norm of subgrad 38.356397 stepsize= 1.000000 +dualbound = 3055541.987978, lowerbound=1222619.987978, norm of subgrad 1106.309174 dualbound = 3055541.987978, lowerbound=1222619.987978, norm of subgrad 37.632223 stepsize= 1.000000 +dualbound = 3055668.282589, lowerbound=1222474.282589, norm of subgrad 1106.260043 dualbound = 3055668.282589, lowerbound=1222474.282589, norm of subgrad 38.253034 stepsize= 1.000000 +dualbound = 3055782.474499, lowerbound=1221555.474499, norm of subgrad 1105.852827 dualbound = 3055782.474499, lowerbound=1221555.474499, norm of subgrad 38.330039 stepsize= 1.000000 +dualbound = 3055879.969097, lowerbound=1217912.969097, norm of subgrad 1104.244071 dualbound = 3055879.969097, lowerbound=1217912.969097, norm of subgrad 39.236394 stepsize= 1.000000 +dualbound = 3055999.431967, lowerbound=1226465.431967, norm of subgrad 1108.087737 dualbound = 3055999.431967, lowerbound=1226465.431967, norm of subgrad 38.890396 stepsize= 1.000000 +dualbound = 3056149.588602, lowerbound=1222485.588602, norm of subgrad 1106.302666 dualbound = 3056149.588602, lowerbound=1222485.588602, norm of subgrad 39.625202 stepsize= 1.000000 +dualbound = 3056225.876901, lowerbound=1224449.876901, norm of subgrad 1107.173373 dualbound = 3056225.876901, lowerbound=1224449.876901, norm of subgrad 38.200632 stepsize= 1.000000 +dualbound = 3056358.945733, lowerbound=1221368.945733, norm of subgrad 1105.789286 dualbound = 3056358.945733, lowerbound=1221368.945733, norm of subgrad 39.167191 stepsize= 1.000000 +dualbound = 3056482.557107, lowerbound=1224757.557107, norm of subgrad 1107.282962 dualbound = 3056482.557107, lowerbound=1224757.557107, norm of subgrad 37.968558 stepsize= 1.000000 +dualbound = 3056608.351681, lowerbound=1220195.351681, norm of subgrad 1105.224571 dualbound = 3056608.351681, lowerbound=1220195.351681, norm of subgrad 38.102422 stepsize= 1.000000 +dualbound = 3056741.027729, lowerbound=1219091.027729, norm of subgrad 1104.732107 dualbound = 3056741.027729, lowerbound=1219091.027729, norm of subgrad 38.401511 stepsize= 1.000000 +dualbound = 3056846.618292, lowerbound=1226282.618292, norm of subgrad 1107.971849 dualbound = 3056846.618292, lowerbound=1226282.618292, norm of subgrad 37.743749 stepsize= 1.000000 +dualbound = 3056962.571455, lowerbound=1221580.571455, norm of subgrad 1105.891302 dualbound = 3056962.571455, lowerbound=1221580.571455, norm of subgrad 39.127397 stepsize= 1.000000 +dualbound = 3057087.304326, lowerbound=1222909.304326, norm of subgrad 1106.507706 dualbound = 3057087.304326, lowerbound=1222909.304326, norm of subgrad 39.682904 stepsize= 1.000000 +dualbound = 3057172.821616, lowerbound=1222012.821616, norm of subgrad 1106.059140 dualbound = 3057172.821616, lowerbound=1222012.821616, norm of subgrad 37.940971 stepsize= 1.000000 +dualbound = 3057331.258801, lowerbound=1217290.258801, norm of subgrad 1103.909987 dualbound = 3057331.258801, lowerbound=1217290.258801, norm of subgrad 38.541370 stepsize= 1.000000 +dualbound = 3057443.528607, lowerbound=1226688.528607, norm of subgrad 1108.170352 dualbound = 3057443.528607, lowerbound=1226688.528607, norm of subgrad 38.278843 stepsize= 1.000000 +dualbound = 3057543.642182, lowerbound=1223117.642182, norm of subgrad 1106.539490 dualbound = 3057543.642182, lowerbound=1223117.642182, norm of subgrad 37.578100 stepsize= 1.000000 +dualbound = 3057685.698999, lowerbound=1222530.698999, norm of subgrad 1106.282378 dualbound = 3057685.698999, lowerbound=1222530.698999, norm of subgrad 38.367393 stepsize= 1.000000 +dualbound = 3057789.101472, lowerbound=1221136.101472, norm of subgrad 1105.677214 dualbound = 3057789.101472, lowerbound=1221136.101472, norm of subgrad 38.592777 stepsize= 1.000000 +dualbound = 3057892.034840, lowerbound=1222931.034840, norm of subgrad 1106.466012 dualbound = 3057892.034840, lowerbound=1222931.034840, norm of subgrad 37.933275 stepsize= 1.000000 +dualbound = 3058055.028405, lowerbound=1223591.028405, norm of subgrad 1106.758342 dualbound = 3058055.028405, lowerbound=1223591.028405, norm of subgrad 38.548587 stepsize= 1.000000 +dualbound = 3058138.634126, lowerbound=1225307.634126, norm of subgrad 1107.563377 dualbound = 3058138.634126, lowerbound=1225307.634126, norm of subgrad 38.374545 stepsize= 1.000000 +dualbound = 3058262.319635, lowerbound=1222519.319635, norm of subgrad 1106.308420 dualbound = 3058262.319635, lowerbound=1222519.319635, norm of subgrad 39.021603 stepsize= 1.000000 +dualbound = 3058376.083629, lowerbound=1216111.083629, norm of subgrad 1103.410660 dualbound = 3058376.083629, lowerbound=1216111.083629, norm of subgrad 38.958491 stepsize= 1.000000 +dualbound = 3058492.154372, lowerbound=1229005.154372, norm of subgrad 1109.234490 dualbound = 3058492.154372, lowerbound=1229005.154372, norm of subgrad 38.885354 stepsize= 1.000000 +dualbound = 3058604.629258, lowerbound=1222129.629258, norm of subgrad 1106.139968 dualbound = 3058604.629258, lowerbound=1222129.629258, norm of subgrad 39.095714 stepsize= 1.000000 +dualbound = 3058736.056127, lowerbound=1223418.056127, norm of subgrad 1106.710466 dualbound = 3058736.056127, lowerbound=1223418.056127, norm of subgrad 39.005472 stepsize= 1.000000 +dualbound = 3058844.081823, lowerbound=1217139.081823, norm of subgrad 1103.899036 dualbound = 3058844.081823, lowerbound=1217139.081823, norm of subgrad 39.522471 stepsize= 1.000000 +dualbound = 3058949.703673, lowerbound=1222048.703673, norm of subgrad 1106.107004 dualbound = 3058949.703673, lowerbound=1222048.703673, norm of subgrad 39.110380 stepsize= 1.000000 +dualbound = 3059093.793035, lowerbound=1220735.793035, norm of subgrad 1105.483059 dualbound = 3059093.793035, lowerbound=1220735.793035, norm of subgrad 38.743895 stepsize= 1.000000 +dualbound = 3059214.846065, lowerbound=1220452.846065, norm of subgrad 1105.346935 dualbound = 3059214.846065, lowerbound=1220452.846065, norm of subgrad 38.210640 stepsize= 1.000000 +dualbound = 3059373.702164, lowerbound=1223670.702164, norm of subgrad 1106.778073 dualbound = 3059373.702164, lowerbound=1223670.702164, norm of subgrad 38.024415 stepsize= 1.000000 +dualbound = 3059458.090818, lowerbound=1225162.090818, norm of subgrad 1107.482772 dualbound = 3059458.090818, lowerbound=1225162.090818, norm of subgrad 37.952453 stepsize= 1.000000 +dualbound = 3059555.109149, lowerbound=1219754.109149, norm of subgrad 1105.043940 dualbound = 3059555.109149, lowerbound=1219754.109149, norm of subgrad 38.275558 stepsize= 1.000000 +dualbound = 3059688.845966, lowerbound=1224913.845966, norm of subgrad 1107.363918 dualbound = 3059688.845966, lowerbound=1224913.845966, norm of subgrad 38.402302 stepsize= 1.000000 +dualbound = 3059789.583613, lowerbound=1225323.583613, norm of subgrad 1107.552520 dualbound = 3059789.583613, lowerbound=1225323.583613, norm of subgrad 38.075421 stepsize= 1.000000 +dualbound = 3059935.857264, lowerbound=1217089.857264, norm of subgrad 1103.839598 dualbound = 3059935.857264, lowerbound=1217089.857264, norm of subgrad 38.965031 stepsize= 1.000000 +dualbound = 3060012.556082, lowerbound=1223971.556082, norm of subgrad 1106.963665 dualbound = 3060012.556082, lowerbound=1223971.556082, norm of subgrad 38.388785 stepsize= 1.000000 +dualbound = 3060151.619503, lowerbound=1219592.619503, norm of subgrad 1104.965438 dualbound = 3060151.619503, lowerbound=1219592.619503, norm of subgrad 38.666050 stepsize= 1.000000 +dualbound = 3060269.949747, lowerbound=1225440.949747, norm of subgrad 1107.584286 dualbound = 3060269.949747, lowerbound=1225440.949747, norm of subgrad 37.687269 stepsize= 1.000000 +dualbound = 3060412.547744, lowerbound=1218721.547744, norm of subgrad 1104.579353 dualbound = 3060412.547744, lowerbound=1218721.547744, norm of subgrad 38.943523 stepsize= 1.000000 +dualbound = 3060478.255553, lowerbound=1228103.255553, norm of subgrad 1108.825620 dualbound = 3060478.255553, lowerbound=1228103.255553, norm of subgrad 38.166842 stepsize= 1.000000 +dualbound = 3060645.590014, lowerbound=1222930.590014, norm of subgrad 1106.478463 dualbound = 3060645.590014, lowerbound=1222930.590014, norm of subgrad 39.132269 stepsize= 1.000000 +dualbound = 3060707.214041, lowerbound=1223531.214041, norm of subgrad 1106.766106 dualbound = 3060707.214041, lowerbound=1223531.214041, norm of subgrad 38.231192 stepsize= 1.000000 +dualbound = 3060858.447130, lowerbound=1222776.447130, norm of subgrad 1106.419652 dualbound = 3060858.447130, lowerbound=1222776.447130, norm of subgrad 39.233061 stepsize= 1.000000 +dualbound = 3060959.349775, lowerbound=1226990.349775, norm of subgrad 1108.309681 dualbound = 3060959.349775, lowerbound=1226990.349775, norm of subgrad 38.221756 stepsize= 1.000000 +dualbound = 3061115.681258, lowerbound=1221664.681258, norm of subgrad 1105.881405 dualbound = 3061115.681258, lowerbound=1221664.681258, norm of subgrad 38.279648 stepsize= 1.000000 +dualbound = 3061219.534483, lowerbound=1221795.534483, norm of subgrad 1105.946895 dualbound = 3061219.534483, lowerbound=1221795.534483, norm of subgrad 37.773711 stepsize= 1.000000 +dualbound = 3061348.640368, lowerbound=1221709.640368, norm of subgrad 1105.935640 dualbound = 3061348.640368, lowerbound=1221709.640368, norm of subgrad 38.898662 stepsize= 1.000000 +dualbound = 3061435.076794, lowerbound=1223958.076794, norm of subgrad 1106.956222 dualbound = 3061435.076794, lowerbound=1223958.076794, norm of subgrad 38.476440 stepsize= 1.000000 +dualbound = 3061586.684497, lowerbound=1218807.684497, norm of subgrad 1104.607027 dualbound = 3061586.684497, lowerbound=1218807.684497, norm of subgrad 38.737678 stepsize= 1.000000 +dualbound = 3061683.610331, lowerbound=1229789.610331, norm of subgrad 1109.587135 dualbound = 3061683.610331, lowerbound=1229789.610331, norm of subgrad 38.612509 stepsize= 1.000000 +dualbound = 3061803.384248, lowerbound=1220457.384248, norm of subgrad 1105.355320 dualbound = 3061803.384248, lowerbound=1220457.384248, norm of subgrad 38.376737 stepsize= 1.000000 +dualbound = 3061912.130736, lowerbound=1222124.130736, norm of subgrad 1106.102676 dualbound = 3061912.130736, lowerbound=1222124.130736, norm of subgrad 38.049264 stepsize= 1.000000 +dualbound = 3062068.083540, lowerbound=1225821.083540, norm of subgrad 1107.748655 dualbound = 3062068.083540, lowerbound=1225821.083540, norm of subgrad 37.973054 stepsize= 1.000000 +dualbound = 3062158.614200, lowerbound=1223481.614200, norm of subgrad 1106.706200 dualbound = 3062158.614200, lowerbound=1223481.614200, norm of subgrad 37.517072 stepsize= 1.000000 +dualbound = 3062271.414396, lowerbound=1221990.414396, norm of subgrad 1106.059860 dualbound = 3062271.414396, lowerbound=1221990.414396, norm of subgrad 38.610882 stepsize= 1.000000 +dualbound = 3062391.375298, lowerbound=1219223.375298, norm of subgrad 1104.772092 dualbound = 3062391.375298, lowerbound=1219223.375298, norm of subgrad 37.655822 stepsize= 1.000000 +dualbound = 3062517.539488, lowerbound=1222336.539488, norm of subgrad 1106.209085 dualbound = 3062517.539488, lowerbound=1222336.539488, norm of subgrad 38.576731 stepsize= 1.000000 +dualbound = 3062590.355481, lowerbound=1226684.355481, norm of subgrad 1108.180200 dualbound = 3062590.355481, lowerbound=1226684.355481, norm of subgrad 38.102703 stepsize= 1.000000 +dualbound = 3062738.789039, lowerbound=1224656.789039, norm of subgrad 1107.254618 dualbound = 3062738.789039, lowerbound=1224656.789039, norm of subgrad 38.787028 stepsize= 1.000000 +dualbound = 3062838.888990, lowerbound=1224512.888990, norm of subgrad 1107.199571 dualbound = 3062838.888990, lowerbound=1224512.888990, norm of subgrad 38.446065 stepsize= 1.000000 +dualbound = 3062990.766838, lowerbound=1221084.766838, norm of subgrad 1105.592044 dualbound = 3062990.766838, lowerbound=1221084.766838, norm of subgrad 37.428303 stepsize= 1.000000 +dualbound = 3063124.434424, lowerbound=1223985.434424, norm of subgrad 1106.920699 dualbound = 3063124.434424, lowerbound=1223985.434424, norm of subgrad 37.705007 stepsize= 1.000000 +dualbound = 3063229.538411, lowerbound=1222654.538411, norm of subgrad 1106.305807 dualbound = 3063229.538411, lowerbound=1222654.538411, norm of subgrad 36.920238 stepsize= 1.000000 +dualbound = 3063341.176049, lowerbound=1224893.176049, norm of subgrad 1107.332008 dualbound = 3063341.176049, lowerbound=1224893.176049, norm of subgrad 37.451804 stepsize= 1.000000 +dualbound = 3063443.171099, lowerbound=1223902.171099, norm of subgrad 1106.916063 dualbound = 3063443.171099, lowerbound=1223902.171099, norm of subgrad 38.249118 stepsize= 1.000000 +dualbound = 3063538.887107, lowerbound=1222167.887107, norm of subgrad 1106.146413 dualbound = 3063538.887107, lowerbound=1222167.887107, norm of subgrad 38.570922 stepsize= 1.000000 +dualbound = 3063675.172921, lowerbound=1226563.172921, norm of subgrad 1108.148083 dualbound = 3063675.172921, lowerbound=1226563.172921, norm of subgrad 39.563693 stepsize= 1.000000 +dualbound = 3063754.336677, lowerbound=1222161.336677, norm of subgrad 1106.160629 dualbound = 3063754.336677, lowerbound=1222161.336677, norm of subgrad 38.847957 stepsize= 1.000000 +dualbound = 3063903.891695, lowerbound=1227821.891695, norm of subgrad 1108.691522 dualbound = 3063903.891695, lowerbound=1227821.891695, norm of subgrad 39.045551 stepsize= 1.000000 +dualbound = 3064011.831869, lowerbound=1223491.831869, norm of subgrad 1106.716238 dualbound = 3064011.831869, lowerbound=1223491.831869, norm of subgrad 37.906994 stepsize= 1.000000 +dualbound = 3064144.228821, lowerbound=1225491.228821, norm of subgrad 1107.656187 dualbound = 3064144.228821, lowerbound=1225491.228821, norm of subgrad 39.286091 stepsize= 1.000000 +dualbound = 3064229.893725, lowerbound=1223020.893725, norm of subgrad 1106.519269 dualbound = 3064229.893725, lowerbound=1223020.893725, norm of subgrad 38.074465 stepsize= 1.000000 +dualbound = 3064352.376442, lowerbound=1226473.376442, norm of subgrad 1108.099895 dualbound = 3064352.376442, lowerbound=1226473.376442, norm of subgrad 39.172474 stepsize= 1.000000 +dualbound = 3064481.725199, lowerbound=1220893.725199, norm of subgrad 1105.546347 dualbound = 3064481.725199, lowerbound=1220893.725199, norm of subgrad 38.319039 stepsize= 1.000000 +dualbound = 3064602.894963, lowerbound=1223563.894963, norm of subgrad 1106.758282 dualbound = 3064602.894963, lowerbound=1223563.894963, norm of subgrad 38.355831 stepsize= 1.000000 +dualbound = 3064730.253344, lowerbound=1224341.253344, norm of subgrad 1107.103091 dualbound = 3064730.253344, lowerbound=1224341.253344, norm of subgrad 38.253868 stepsize= 1.000000 +dualbound = 3064842.905404, lowerbound=1220161.905404, norm of subgrad 1105.211249 dualbound = 3064842.905404, lowerbound=1220161.905404, norm of subgrad 37.982260 stepsize= 1.000000 +dualbound = 3064952.840897, lowerbound=1227853.840897, norm of subgrad 1108.688794 dualbound = 3064952.840897, lowerbound=1227853.840897, norm of subgrad 38.038605 stepsize= 1.000000 +dualbound = 3065084.209569, lowerbound=1225217.209569, norm of subgrad 1107.479666 dualbound = 3065084.209569, lowerbound=1225217.209569, norm of subgrad 37.754055 stepsize= 1.000000 +dualbound = 3065211.523822, lowerbound=1224460.523822, norm of subgrad 1107.162826 dualbound = 3065211.523822, lowerbound=1224460.523822, norm of subgrad 38.422835 stepsize= 1.000000 +dualbound = 3065297.183333, lowerbound=1226570.183333, norm of subgrad 1108.124624 dualbound = 3065297.183333, lowerbound=1226570.183333, norm of subgrad 38.153106 stepsize= 1.000000 +dualbound = 3065403.235625, lowerbound=1217158.235625, norm of subgrad 1103.838863 dualbound = 3065403.235625, lowerbound=1217158.235625, norm of subgrad 37.524023 stepsize= 1.000000 +dualbound = 3065551.764605, lowerbound=1223685.764605, norm of subgrad 1106.795268 dualbound = 3065551.764605, lowerbound=1223685.764605, norm of subgrad 38.190692 stepsize= 1.000000 +dualbound = 3065669.218144, lowerbound=1230165.218144, norm of subgrad 1109.722136 dualbound = 3065669.218144, lowerbound=1230165.218144, norm of subgrad 37.887380 stepsize= 1.000000 +dualbound = 3065766.479363, lowerbound=1225554.479363, norm of subgrad 1107.651786 dualbound = 3065766.479363, lowerbound=1225554.479363, norm of subgrad 37.884842 stepsize= 1.000000 +dualbound = 3065889.930423, lowerbound=1225926.930423, norm of subgrad 1107.819900 dualbound = 3065889.930423, lowerbound=1225926.930423, norm of subgrad 38.228930 stepsize= 1.000000 +dualbound = 3066003.699622, lowerbound=1223039.699622, norm of subgrad 1106.511500 dualbound = 3066003.699622, lowerbound=1223039.699622, norm of subgrad 37.970636 stepsize= 1.000000 +dualbound = 3066121.367276, lowerbound=1221355.367276, norm of subgrad 1105.718937 dualbound = 3066121.367276, lowerbound=1221355.367276, norm of subgrad 37.103472 stepsize= 1.000000 +dualbound = 3066253.819736, lowerbound=1220806.819736, norm of subgrad 1105.526038 dualbound = 3066253.819736, lowerbound=1220806.819736, norm of subgrad 38.903116 stepsize= 1.000000 +dualbound = 3066329.861777, lowerbound=1222618.861777, norm of subgrad 1106.301434 dualbound = 3066329.861777, lowerbound=1222618.861777, norm of subgrad 36.878748 stepsize= 1.000000 +dualbound = 3066510.253637, lowerbound=1222868.253637, norm of subgrad 1106.419565 dualbound = 3066510.253637, lowerbound=1222868.253637, norm of subgrad 38.423845 stepsize= 1.000000 +dualbound = 3066569.503744, lowerbound=1220006.503744, norm of subgrad 1105.169898 dualbound = 3066569.503744, lowerbound=1220006.503744, norm of subgrad 38.121518 stepsize= 1.000000 +dualbound = 3066717.490388, lowerbound=1227837.490388, norm of subgrad 1108.666988 dualbound = 3066717.490388, lowerbound=1227837.490388, norm of subgrad 38.118062 stepsize= 1.000000 +dualbound = 3066799.517118, lowerbound=1223191.517118, norm of subgrad 1106.595462 dualbound = 3066799.517118, lowerbound=1223191.517118, norm of subgrad 38.000352 stepsize= 1.000000 +dualbound = 3066940.323362, lowerbound=1221819.323362, norm of subgrad 1105.961719 dualbound = 3066940.323362, lowerbound=1221819.323362, norm of subgrad 38.377158 stepsize= 1.000000 +dualbound = 3067047.183237, lowerbound=1227921.183237, norm of subgrad 1108.764260 dualbound = 3067047.183237, lowerbound=1227921.183237, norm of subgrad 39.291982 stepsize= 1.000000 +dualbound = 3067165.782165, lowerbound=1219444.782165, norm of subgrad 1104.901707 dualbound = 3067165.782165, lowerbound=1219444.782165, norm of subgrad 38.491544 stepsize= 1.000000 +dualbound = 3067299.416054, lowerbound=1227486.416054, norm of subgrad 1108.520372 dualbound = 3067299.416054, lowerbound=1227486.416054, norm of subgrad 38.270536 stepsize= 1.000000 +dualbound = 3067418.760631, lowerbound=1223018.760631, norm of subgrad 1106.518306 dualbound = 3067418.760631, lowerbound=1223018.760631, norm of subgrad 38.514213 stepsize= 1.000000 +dualbound = 3067505.271849, lowerbound=1223824.271849, norm of subgrad 1106.875003 dualbound = 3067505.271849, lowerbound=1223824.271849, norm of subgrad 37.874942 stepsize= 1.000000 +dualbound = 3067638.145967, lowerbound=1230225.145967, norm of subgrad 1109.782927 dualbound = 3067638.145967, lowerbound=1230225.145967, norm of subgrad 39.062439 stepsize= 1.000000 +dualbound = 3067743.173353, lowerbound=1224423.173353, norm of subgrad 1107.161313 dualbound = 3067743.173353, lowerbound=1224423.173353, norm of subgrad 38.574958 stepsize= 1.000000 +dualbound = 3067848.463514, lowerbound=1223623.463514, norm of subgrad 1106.805522 dualbound = 3067848.463514, lowerbound=1223623.463514, norm of subgrad 38.733579 stepsize= 1.000000 +dualbound = 3067985.751074, lowerbound=1224248.751074, norm of subgrad 1107.048215 dualbound = 3067985.751074, lowerbound=1224248.751074, norm of subgrad 38.003784 stepsize= 1.000000 +dualbound = 3068110.244344, lowerbound=1221183.244344, norm of subgrad 1105.686775 dualbound = 3068110.244344, lowerbound=1221183.244344, norm of subgrad 38.529122 stepsize= 1.000000 +dualbound = 3068211.017082, lowerbound=1224539.017082, norm of subgrad 1107.219498 dualbound = 3068211.017082, lowerbound=1224539.017082, norm of subgrad 38.688147 stepsize= 1.000000 +dualbound = 3068321.493227, lowerbound=1228884.493227, norm of subgrad 1109.151700 dualbound = 3068321.493227, lowerbound=1228884.493227, norm of subgrad 37.993107 stepsize= 1.000000 +dualbound = 3068472.300725, lowerbound=1226096.300725, norm of subgrad 1107.892278 dualbound = 3068472.300725, lowerbound=1226096.300725, norm of subgrad 38.468266 stepsize= 1.000000 +dualbound = 3068582.665368, lowerbound=1221489.665368, norm of subgrad 1105.822619 dualbound = 3068582.665368, lowerbound=1221489.665368, norm of subgrad 38.267018 stepsize= 1.000000 +dualbound = 3068683.516861, lowerbound=1225470.516861, norm of subgrad 1107.618399 dualbound = 3068683.516861, lowerbound=1225470.516861, norm of subgrad 38.063782 stepsize= 1.000000 +dualbound = 3068814.911779, lowerbound=1225070.911779, norm of subgrad 1107.435737 dualbound = 3068814.911779, lowerbound=1225070.911779, norm of subgrad 38.397850 stepsize= 1.000000 +dualbound = 3068906.424472, lowerbound=1220305.424472, norm of subgrad 1105.294723 dualbound = 3068906.424472, lowerbound=1220305.424472, norm of subgrad 38.242812 stepsize= 1.000000 +dualbound = 3069043.588975, lowerbound=1227607.588975, norm of subgrad 1108.579086 dualbound = 3069043.588975, lowerbound=1227607.588975, norm of subgrad 38.433898 stepsize= 1.000000 +dualbound = 3069162.633929, lowerbound=1223807.633929, norm of subgrad 1106.868391 dualbound = 3069162.633929, lowerbound=1223807.633929, norm of subgrad 38.328122 stepsize= 1.000000 +dualbound = 3069293.482192, lowerbound=1221905.482192, norm of subgrad 1106.020109 dualbound = 3069293.482192, lowerbound=1221905.482192, norm of subgrad 38.805261 stepsize= 1.000000 +dualbound = 3069381.956104, lowerbound=1224540.956104, norm of subgrad 1107.221277 dualbound = 3069381.956104, lowerbound=1224540.956104, norm of subgrad 38.554817 stepsize= 1.000000 +dualbound = 3069507.282750, lowerbound=1221477.282750, norm of subgrad 1105.811142 dualbound = 3069507.282750, lowerbound=1221477.282750, norm of subgrad 38.292645 stepsize= 1.000000 +dualbound = 3069640.322346, lowerbound=1226610.322346, norm of subgrad 1108.117468 dualbound = 3069640.322346, lowerbound=1226610.322346, norm of subgrad 38.039974 stepsize= 1.000000 +dualbound = 3069768.730972, lowerbound=1222267.730972, norm of subgrad 1106.175723 dualbound = 3069768.730972, lowerbound=1222267.730972, norm of subgrad 38.540999 stepsize= 1.000000 +dualbound = 3069842.366256, lowerbound=1222507.366256, norm of subgrad 1106.307989 dualbound = 3069842.366256, lowerbound=1222507.366256, norm of subgrad 38.517986 stepsize= 1.000000 +dualbound = 3069953.832484, lowerbound=1223812.832484, norm of subgrad 1106.901456 dualbound = 3069953.832484, lowerbound=1223812.832484, norm of subgrad 39.108391 stepsize= 1.000000 +dualbound = 3070074.469431, lowerbound=1222034.469431, norm of subgrad 1106.101021 dualbound = 3070074.469431, lowerbound=1222034.469431, norm of subgrad 39.314590 stepsize= 1.000000 +dualbound = 3070174.815002, lowerbound=1227288.815002, norm of subgrad 1108.472289 dualbound = 3070174.815002, lowerbound=1227288.815002, norm of subgrad 39.017247 stepsize= 1.000000 +dualbound = 3070322.901392, lowerbound=1223504.901392, norm of subgrad 1106.723498 dualbound = 3070322.901392, lowerbound=1223504.901392, norm of subgrad 38.471891 stepsize= 1.000000 +dualbound = 3070460.877650, lowerbound=1225612.877650, norm of subgrad 1107.656931 dualbound = 3070460.877650, lowerbound=1225612.877650, norm of subgrad 37.801802 stepsize= 1.000000 +dualbound = 3070574.983324, lowerbound=1226017.983324, norm of subgrad 1107.851065 dualbound = 3070574.983324, lowerbound=1226017.983324, norm of subgrad 37.816738 stepsize= 1.000000 +dualbound = 3070685.891592, lowerbound=1225339.891592, norm of subgrad 1107.570716 dualbound = 3070685.891592, lowerbound=1225339.891592, norm of subgrad 38.521530 stepsize= 1.000000 +dualbound = 3070783.688214, lowerbound=1224353.688214, norm of subgrad 1107.130384 dualbound = 3070783.688214, lowerbound=1224353.688214, norm of subgrad 38.494112 stepsize= 1.000000 +dualbound = 3070906.289420, lowerbound=1223256.289420, norm of subgrad 1106.622469 dualbound = 3070906.289420, lowerbound=1223256.289420, norm of subgrad 38.465585 stepsize= 1.000000 +dualbound = 3071043.047693, lowerbound=1223865.047693, norm of subgrad 1106.871739 dualbound = 3071043.047693, lowerbound=1223865.047693, norm of subgrad 37.904594 stepsize= 1.000000 +dualbound = 3071173.697147, lowerbound=1225497.697147, norm of subgrad 1107.608097 dualbound = 3071173.697147, lowerbound=1225497.697147, norm of subgrad 37.797479 stepsize= 1.000000 +dualbound = 3071283.070671, lowerbound=1224418.070671, norm of subgrad 1107.117912 dualbound = 3071283.070671, lowerbound=1224418.070671, norm of subgrad 37.434924 stepsize= 1.000000 +dualbound = 3071398.426373, lowerbound=1230247.426373, norm of subgrad 1109.792966 dualbound = 3071398.426373, lowerbound=1230247.426373, norm of subgrad 38.837555 stepsize= 1.000000 +dualbound = 3071471.978283, lowerbound=1223740.978283, norm of subgrad 1106.851832 dualbound = 3071471.978283, lowerbound=1223740.978283, norm of subgrad 38.125476 stepsize= 1.000000 +dualbound = 3071644.512729, lowerbound=1221133.512729, norm of subgrad 1105.645292 dualbound = 3071644.512729, lowerbound=1221133.512729, norm of subgrad 38.607440 stepsize= 1.000000 +dualbound = 3071724.505457, lowerbound=1222707.505457, norm of subgrad 1106.361833 dualbound = 3071724.505457, lowerbound=1222707.505457, norm of subgrad 37.536552 stepsize= 1.000000 +dualbound = 3071853.328215, lowerbound=1224287.328215, norm of subgrad 1107.120738 dualbound = 3071853.328215, lowerbound=1224287.328215, norm of subgrad 39.469263 stepsize= 1.000000 +dualbound = 3071961.088544, lowerbound=1225366.088544, norm of subgrad 1107.555456 dualbound = 3071961.088544, lowerbound=1225366.088544, norm of subgrad 37.692975 stepsize= 1.000000 +dualbound = 3072106.058077, lowerbound=1223268.058077, norm of subgrad 1106.575374 dualbound = 3072106.058077, lowerbound=1223268.058077, norm of subgrad 37.228612 stepsize= 1.000000 +dualbound = 3072222.061752, lowerbound=1224897.061752, norm of subgrad 1107.365821 dualbound = 3072222.061752, lowerbound=1224897.061752, norm of subgrad 38.444813 stepsize= 1.000000 +dualbound = 3072312.042450, lowerbound=1227818.042450, norm of subgrad 1108.698355 dualbound = 3072312.042450, lowerbound=1227818.042450, norm of subgrad 38.522470 stepsize= 1.000000 +dualbound = 3072412.002130, lowerbound=1222076.002130, norm of subgrad 1106.098550 dualbound = 3072412.002130, lowerbound=1222076.002130, norm of subgrad 38.444241 stepsize= 1.000000 +dualbound = 3072547.062802, lowerbound=1226071.062802, norm of subgrad 1107.919249 dualbound = 3072547.062802, lowerbound=1226071.062802, norm of subgrad 39.358108 stepsize= 1.000000 +dualbound = 3072617.932312, lowerbound=1223406.932312, norm of subgrad 1106.700923 dualbound = 3072617.932312, lowerbound=1223406.932312, norm of subgrad 38.090281 stepsize= 1.000000 +dualbound = 3072784.113636, lowerbound=1226672.113636, norm of subgrad 1108.199492 dualbound = 3072784.113636, lowerbound=1226672.113636, norm of subgrad 40.002266 stepsize= 1.000000 +dualbound = 3072866.918341, lowerbound=1225357.918341, norm of subgrad 1107.581563 dualbound = 3072866.918341, lowerbound=1225357.918341, norm of subgrad 38.233555 stepsize= 1.000000 +dualbound = 3072990.259801, lowerbound=1228233.259801, norm of subgrad 1108.900924 dualbound = 3072990.259801, lowerbound=1228233.259801, norm of subgrad 39.387072 stepsize= 1.000000 +dualbound = 3073123.547228, lowerbound=1222679.547228, norm of subgrad 1106.335639 dualbound = 3073123.547228, lowerbound=1222679.547228, norm of subgrad 37.845573 stepsize= 1.000000 +dualbound = 3073258.701746, lowerbound=1222820.701746, norm of subgrad 1106.417508 dualbound = 3073258.701746, lowerbound=1222820.701746, norm of subgrad 38.394720 stepsize= 1.000000 +dualbound = 3073349.315596, lowerbound=1225632.315596, norm of subgrad 1107.689630 dualbound = 3073349.315596, lowerbound=1225632.315596, norm of subgrad 37.876297 stepsize= 1.000000 +dualbound = 3073491.971990, lowerbound=1221132.971990, norm of subgrad 1105.654997 dualbound = 3073491.971990, lowerbound=1221132.971990, norm of subgrad 38.505277 stepsize= 1.000000 +dualbound = 3073589.477039, lowerbound=1224425.477039, norm of subgrad 1107.156031 dualbound = 3073589.477039, lowerbound=1224425.477039, norm of subgrad 38.294974 stepsize= 1.000000 +dualbound = 3073707.361533, lowerbound=1222098.361533, norm of subgrad 1106.080179 dualbound = 3073707.361533, lowerbound=1222098.361533, norm of subgrad 37.853461 stepsize= 1.000000 +dualbound = 3073836.042717, lowerbound=1227559.042717, norm of subgrad 1108.572525 dualbound = 3073836.042717, lowerbound=1227559.042717, norm of subgrad 38.764432 stepsize= 1.000000 +dualbound = 3073948.821094, lowerbound=1225397.821094, norm of subgrad 1107.607250 dualbound = 3073948.821094, lowerbound=1225397.821094, norm of subgrad 38.842996 stepsize= 1.000000 +dualbound = 3074043.703336, lowerbound=1225375.703336, norm of subgrad 1107.604489 dualbound = 3074043.703336, lowerbound=1225375.703336, norm of subgrad 38.818581 stepsize= 1.000000 +dualbound = 3074185.380997, lowerbound=1227498.380997, norm of subgrad 1108.542458 dualbound = 3074185.380997, lowerbound=1227498.380997, norm of subgrad 38.854571 stepsize= 1.000000 +dualbound = 3074285.875554, lowerbound=1223126.875554, norm of subgrad 1106.599691 dualbound = 3074285.875554, lowerbound=1223126.875554, norm of subgrad 39.198145 stepsize= 1.000000 +dualbound = 3074429.139980, lowerbound=1227550.139980, norm of subgrad 1108.526563 dualbound = 3074429.139980, lowerbound=1227550.139980, norm of subgrad 37.739428 stepsize= 1.000000 +dualbound = 3074562.034146, lowerbound=1223523.034146, norm of subgrad 1106.724913 dualbound = 3074562.034146, lowerbound=1223523.034146, norm of subgrad 38.077476 stepsize= 1.000000 +dualbound = 3074666.896371, lowerbound=1224869.896371, norm of subgrad 1107.328721 dualbound = 3074666.896371, lowerbound=1224869.896371, norm of subgrad 37.574755 stepsize= 1.000000 +dualbound = 3074771.536050, lowerbound=1227882.536050, norm of subgrad 1108.704891 dualbound = 3074771.536050, lowerbound=1227882.536050, norm of subgrad 38.060999 stepsize= 1.000000 +dualbound = 3074893.897926, lowerbound=1226100.897926, norm of subgrad 1107.919626 dualbound = 3074893.897926, lowerbound=1226100.897926, norm of subgrad 38.824759 stepsize= 1.000000 +dualbound = 3074986.903813, lowerbound=1224352.903813, norm of subgrad 1107.107901 dualbound = 3074986.903813, lowerbound=1224352.903813, norm of subgrad 37.788965 stepsize= 1.000000 +dualbound = 3075139.202613, lowerbound=1221428.202613, norm of subgrad 1105.761368 dualbound = 3075139.202613, lowerbound=1221428.202613, norm of subgrad 37.845724 stepsize= 1.000000 +dualbound = 3075231.461010, lowerbound=1229841.461010, norm of subgrad 1109.605994 dualbound = 3075231.461010, lowerbound=1229841.461010, norm of subgrad 38.422108 stepsize= 1.000000 +dualbound = 3075329.810982, lowerbound=1226646.810981, norm of subgrad 1108.152882 dualbound = 3075329.810982, lowerbound=1226646.810981, norm of subgrad 38.135941 stepsize= 1.000000 +dualbound = 3075473.592248, lowerbound=1228337.592248, norm of subgrad 1108.893409 dualbound = 3075473.592248, lowerbound=1228337.592248, norm of subgrad 38.089123 stepsize= 1.000000 +dualbound = 3075581.974575, lowerbound=1224191.974575, norm of subgrad 1107.042445 dualbound = 3075581.974575, lowerbound=1224191.974575, norm of subgrad 38.201863 stepsize= 1.000000 +dualbound = 3075682.242490, lowerbound=1224680.242490, norm of subgrad 1107.283271 dualbound = 3075682.242490, lowerbound=1224680.242490, norm of subgrad 38.681622 stepsize= 1.000000 +dualbound = 3075800.096722, lowerbound=1221603.096722, norm of subgrad 1105.885662 dualbound = 3075800.096722, lowerbound=1221603.096722, norm of subgrad 38.702122 stepsize= 1.000000 +dualbound = 3075921.482274, lowerbound=1224048.482274, norm of subgrad 1106.982603 dualbound = 3075921.482274, lowerbound=1224048.482274, norm of subgrad 38.514745 stepsize= 1.000000 +dualbound = 3076042.150708, lowerbound=1224253.150708, norm of subgrad 1107.080914 dualbound = 3076042.150708, lowerbound=1224253.150708, norm of subgrad 38.673873 stepsize= 1.000000 +dualbound = 3076155.850717, lowerbound=1224912.850717, norm of subgrad 1107.400492 dualbound = 3076155.850717, lowerbound=1224912.850717, norm of subgrad 39.200765 stepsize= 1.000000 +dualbound = 3076265.333669, lowerbound=1223787.333669, norm of subgrad 1106.858769 dualbound = 3076265.333669, lowerbound=1223787.333669, norm of subgrad 38.190090 stepsize= 1.000000 +dualbound = 3076399.206071, lowerbound=1221774.206071, norm of subgrad 1105.957597 dualbound = 3076399.206071, lowerbound=1221774.206071, norm of subgrad 38.753999 stepsize= 1.000000 +dualbound = 3076517.330491, lowerbound=1224159.330491, norm of subgrad 1107.018668 dualbound = 3076517.330491, lowerbound=1224159.330491, norm of subgrad 38.067367 stepsize= 1.000000 +dualbound = 3076624.009667, lowerbound=1230594.009667, norm of subgrad 1109.924777 dualbound = 3076624.009667, lowerbound=1230594.009667, norm of subgrad 38.022088 stepsize= 1.000000 +dualbound = 3076761.140704, lowerbound=1228619.140704, norm of subgrad 1109.041992 dualbound = 3076761.140704, lowerbound=1228619.140704, norm of subgrad 38.628112 stepsize= 1.000000 +dualbound = 3076845.570880, lowerbound=1223319.570880, norm of subgrad 1106.667778 dualbound = 3076845.570880, lowerbound=1223319.570880, norm of subgrad 38.450360 stepsize= 1.000000 +dualbound = 3076961.049334, lowerbound=1226930.049334, norm of subgrad 1108.268040 dualbound = 3076961.049334, lowerbound=1226930.049334, norm of subgrad 37.993137 stepsize= 1.000000 +dualbound = 3077087.142438, lowerbound=1225606.142438, norm of subgrad 1107.680072 dualbound = 3077087.142438, lowerbound=1225606.142438, norm of subgrad 38.406941 stepsize= 1.000000 +dualbound = 3077189.774352, lowerbound=1225659.774352, norm of subgrad 1107.711052 dualbound = 3077189.774352, lowerbound=1225659.774352, norm of subgrad 38.296631 stepsize= 1.000000 +dualbound = 3077324.927039, lowerbound=1221937.927039, norm of subgrad 1106.007652 dualbound = 3077324.927039, lowerbound=1221937.927039, norm of subgrad 38.080870 stepsize= 1.000000 +dualbound = 3077463.518963, lowerbound=1223347.518963, norm of subgrad 1106.670014 dualbound = 3077463.518963, lowerbound=1223347.518963, norm of subgrad 38.853467 stepsize= 1.000000 +dualbound = 3077532.532209, lowerbound=1219586.532209, norm of subgrad 1105.020150 dualbound = 3077532.532209, lowerbound=1219586.532209, norm of subgrad 39.395599 stepsize= 1.000000 +dualbound = 3077650.594453, lowerbound=1230684.594453, norm of subgrad 1110.018286 dualbound = 3077650.594453, lowerbound=1230684.594453, norm of subgrad 39.674453 stepsize= 1.000000 +dualbound = 3077767.896775, lowerbound=1224619.896775, norm of subgrad 1107.231185 dualbound = 3077767.896775, lowerbound=1224619.896775, norm of subgrad 38.187725 stepsize= 1.000000 +dualbound = 3077923.213114, lowerbound=1226924.213114, norm of subgrad 1108.269017 dualbound = 3077923.213114, lowerbound=1226924.213114, norm of subgrad 38.617565 stepsize= 1.000000 +dualbound = 3078019.562638, lowerbound=1226800.562638, norm of subgrad 1108.189317 dualbound = 3078019.562638, lowerbound=1226800.562638, norm of subgrad 37.139595 stepsize= 1.000000 +dualbound = 3078145.726128, lowerbound=1221404.726128, norm of subgrad 1105.782857 dualbound = 3078145.726128, lowerbound=1221404.726128, norm of subgrad 38.433885 stepsize= 1.000000 +dualbound = 3078263.690012, lowerbound=1224658.690012, norm of subgrad 1107.198126 dualbound = 3078263.690012, lowerbound=1224658.690012, norm of subgrad 36.701007 stepsize= 1.000000 +dualbound = 3078407.804416, lowerbound=1223704.804416, norm of subgrad 1106.820584 dualbound = 3078407.804416, lowerbound=1223704.804416, norm of subgrad 38.614951 stepsize= 1.000000 +dualbound = 3078465.613905, lowerbound=1227294.613905, norm of subgrad 1108.458666 dualbound = 3078465.613905, lowerbound=1227294.613905, norm of subgrad 37.997493 stepsize= 1.000000 +dualbound = 3078620.650747, lowerbound=1225410.650747, norm of subgrad 1107.568802 dualbound = 3078620.650747, lowerbound=1225410.650747, norm of subgrad 38.118720 stepsize= 1.000000 +dualbound = 3078723.603619, lowerbound=1223544.603619, norm of subgrad 1106.750470 dualbound = 3078723.603619, lowerbound=1223544.603619, norm of subgrad 38.143844 stepsize= 1.000000 +dualbound = 3078819.353551, lowerbound=1226493.353551, norm of subgrad 1108.088604 dualbound = 3078819.353551, lowerbound=1226493.353551, norm of subgrad 38.245914 stepsize= 1.000000 +dualbound = 3078948.425045, lowerbound=1226519.425045, norm of subgrad 1108.106685 dualbound = 3078948.425045, lowerbound=1226519.425045, norm of subgrad 38.859638 stepsize= 1.000000 +dualbound = 3079080.368491, lowerbound=1235193.368491, norm of subgrad 1112.021748 dualbound = 3079080.368491, lowerbound=1235193.368491, norm of subgrad 39.127272 stepsize= 1.000000 +dualbound = 3079162.782779, lowerbound=1223693.782779, norm of subgrad 1106.830060 dualbound = 3079162.782779, lowerbound=1223693.782779, norm of subgrad 38.228449 stepsize= 1.000000 +dualbound = 3079296.593792, lowerbound=1224322.593792, norm of subgrad 1107.119051 dualbound = 3079296.593792, lowerbound=1224322.593792, norm of subgrad 39.036022 stepsize= 1.000000 +dualbound = 3079405.400522, lowerbound=1227162.400522, norm of subgrad 1108.396770 dualbound = 3079405.400522, lowerbound=1227162.400522, norm of subgrad 38.598015 stepsize= 1.000000 +dualbound = 3079523.832698, lowerbound=1222482.832698, norm of subgrad 1106.297805 dualbound = 3079523.832698, lowerbound=1222482.832698, norm of subgrad 39.120738 stepsize= 1.000000 +dualbound = 3079619.102434, lowerbound=1221923.102434, norm of subgrad 1106.016321 dualbound = 3079619.102434, lowerbound=1221923.102434, norm of subgrad 38.003549 stepsize= 1.000000 +dualbound = 3079778.028917, lowerbound=1229760.028917, norm of subgrad 1109.573354 dualbound = 3079778.028917, lowerbound=1229760.028917, norm of subgrad 39.394498 stepsize= 1.000000 +dualbound = 3079860.637931, lowerbound=1220595.637931, norm of subgrad 1105.408358 dualbound = 3079860.637931, lowerbound=1220595.637931, norm of subgrad 37.611288 stepsize= 1.000000 +dualbound = 3080028.290613, lowerbound=1222535.290613, norm of subgrad 1106.258239 dualbound = 3080028.290613, lowerbound=1222535.290613, norm of subgrad 37.942755 stepsize= 1.000000 +dualbound = 3080131.700262, lowerbound=1220240.700262, norm of subgrad 1105.248705 dualbound = 3080131.700262, lowerbound=1220240.700262, norm of subgrad 37.913186 stepsize= 1.000000 +dualbound = 3080245.158031, lowerbound=1230270.158031, norm of subgrad 1109.762208 dualbound = 3080245.158031, lowerbound=1230270.158031, norm of subgrad 37.622570 stepsize= 1.000000 +dualbound = 3080351.537523, lowerbound=1222021.537523, norm of subgrad 1106.041381 dualbound = 3080351.537523, lowerbound=1222021.537523, norm of subgrad 37.581638 stepsize= 1.000000 +dualbound = 3080481.482360, lowerbound=1235618.482360, norm of subgrad 1112.196692 dualbound = 3080481.482360, lowerbound=1235618.482360, norm of subgrad 38.638644 stepsize= 1.000000 +dualbound = 3080566.459514, lowerbound=1216245.459514, norm of subgrad 1103.452971 dualbound = 3080566.459514, lowerbound=1216245.459514, norm of subgrad 38.052295 stepsize= 1.000000 +dualbound = 3080691.824123, lowerbound=1226034.824123, norm of subgrad 1107.886648 dualbound = 3080691.824123, lowerbound=1226034.824123, norm of subgrad 38.773246 stepsize= 1.000000 +dualbound = 3080786.035649, lowerbound=1226519.035649, norm of subgrad 1108.135838 dualbound = 3080786.035649, lowerbound=1226519.035649, norm of subgrad 39.245529 stepsize= 1.000000 +dualbound = 3080906.148450, lowerbound=1227752.148450, norm of subgrad 1108.650147 dualbound = 3080906.148450, lowerbound=1227752.148450, norm of subgrad 38.381152 stepsize= 1.000000 +dualbound = 3081053.703295, lowerbound=1225874.703295, norm of subgrad 1107.793619 dualbound = 3081053.703295, lowerbound=1225874.703295, norm of subgrad 38.464982 stepsize= 1.000000 +dualbound = 3081155.985008, lowerbound=1226984.985008, norm of subgrad 1108.300043 dualbound = 3081155.985008, lowerbound=1226984.985008, norm of subgrad 38.030011 stepsize= 1.000000 +dualbound = 3081282.619823, lowerbound=1228961.619823, norm of subgrad 1109.176100 dualbound = 3081282.619823, lowerbound=1228961.619823, norm of subgrad 37.902966 stepsize= 1.000000 +dualbound = 3081408.040489, lowerbound=1225637.040489, norm of subgrad 1107.679123 dualbound = 3081408.040489, lowerbound=1225637.040489, norm of subgrad 37.966046 stepsize= 1.000000 +dualbound = 3081516.353933, lowerbound=1226876.353933, norm of subgrad 1108.259155 dualbound = 3081516.353933, lowerbound=1226876.353933, norm of subgrad 38.344666 stepsize= 1.000000 +dualbound = 3081620.947128, lowerbound=1225107.947128, norm of subgrad 1107.464197 dualbound = 3081620.947128, lowerbound=1225107.947128, norm of subgrad 38.387409 stepsize= 1.000000 +dualbound = 3081718.598932, lowerbound=1223325.598932, norm of subgrad 1106.661014 dualbound = 3081718.598932, lowerbound=1223325.598932, norm of subgrad 38.349078 stepsize= 1.000000 +dualbound = 3081845.600282, lowerbound=1230007.600282, norm of subgrad 1109.666436 dualbound = 3081845.600282, lowerbound=1230007.600282, norm of subgrad 38.457787 stepsize= 1.000000 +dualbound = 3081937.694732, lowerbound=1223045.694732, norm of subgrad 1106.523246 dualbound = 3081937.694732, lowerbound=1223045.694732, norm of subgrad 37.948576 stepsize= 1.000000 +dualbound = 3082079.122872, lowerbound=1223354.122872, norm of subgrad 1106.635497 dualbound = 3082079.122872, lowerbound=1223354.122872, norm of subgrad 37.807779 stepsize= 1.000000 +dualbound = 3082178.406547, lowerbound=1222826.406547, norm of subgrad 1106.449911 dualbound = 3082178.406547, lowerbound=1222826.406547, norm of subgrad 38.785096 stepsize= 1.000000 +dualbound = 3082267.631282, lowerbound=1228955.631282, norm of subgrad 1109.199996 dualbound = 3082267.631282, lowerbound=1228955.631282, norm of subgrad 38.186709 stepsize= 1.000000 +dualbound = 3082417.734974, lowerbound=1229765.734974, norm of subgrad 1109.552493 dualbound = 3082417.734974, lowerbound=1229765.734974, norm of subgrad 38.614812 stepsize= 1.000000 +dualbound = 3082542.551970, lowerbound=1224169.551970, norm of subgrad 1107.043609 dualbound = 3082542.551970, lowerbound=1224169.551970, norm of subgrad 38.740379 stepsize= 1.000000 +dualbound = 3082648.736980, lowerbound=1224300.736980, norm of subgrad 1107.076663 dualbound = 3082648.736980, lowerbound=1224300.736980, norm of subgrad 37.738376 stepsize= 1.000000 +dualbound = 3082796.325706, lowerbound=1227595.325706, norm of subgrad 1108.560926 dualbound = 3082796.325706, lowerbound=1227595.325706, norm of subgrad 38.204564 stepsize= 1.000000 +dualbound = 3082887.348887, lowerbound=1227158.348887, norm of subgrad 1108.383665 dualbound = 3082887.348887, lowerbound=1227158.348887, norm of subgrad 38.039758 stepsize= 1.000000 +dualbound = 3082989.764934, lowerbound=1227788.764934, norm of subgrad 1108.700034 dualbound = 3082989.764934, lowerbound=1227788.764934, norm of subgrad 39.107749 stepsize= 1.000000 +dualbound = 3083102.752102, lowerbound=1226348.752102, norm of subgrad 1108.012975 dualbound = 3083102.752102, lowerbound=1226348.752102, norm of subgrad 38.170501 stepsize= 1.000000 +dualbound = 3083217.447625, lowerbound=1222868.447625, norm of subgrad 1106.465746 dualbound = 3083217.447625, lowerbound=1222868.447625, norm of subgrad 38.893387 stepsize= 1.000000 +dualbound = 3083312.358415, lowerbound=1225358.358415, norm of subgrad 1107.594402 dualbound = 3083312.358415, lowerbound=1225358.358415, norm of subgrad 38.754494 stepsize= 1.000000 +dualbound = 3083475.573734, lowerbound=1225934.573734, norm of subgrad 1107.812969 dualbound = 3083475.573734, lowerbound=1225934.573734, norm of subgrad 38.447566 stepsize= 1.000000 +dualbound = 3083561.511942, lowerbound=1227712.511942, norm of subgrad 1108.663390 dualbound = 3083561.511942, lowerbound=1227712.511942, norm of subgrad 38.832180 stepsize= 1.000000 +dualbound = 3083683.648966, lowerbound=1226496.648966, norm of subgrad 1108.079261 dualbound = 3083683.648966, lowerbound=1226496.648966, norm of subgrad 38.277108 stepsize= 1.000000 +dualbound = 3083809.428859, lowerbound=1226535.428859, norm of subgrad 1108.123382 dualbound = 3083809.428859, lowerbound=1226535.428859, norm of subgrad 39.086825 stepsize= 1.000000 +dualbound = 3083892.358156, lowerbound=1225325.358156, norm of subgrad 1107.580859 dualbound = 3083892.358156, lowerbound=1225325.358156, norm of subgrad 38.638443 stepsize= 1.000000 +dualbound = 3084027.612935, lowerbound=1221735.612935, norm of subgrad 1105.946478 dualbound = 3084027.612935, lowerbound=1221735.612935, norm of subgrad 38.951955 stepsize= 1.000000 +dualbound = 3084147.332971, lowerbound=1230659.332971, norm of subgrad 1109.937085 dualbound = 3084147.332971, lowerbound=1230659.332971, norm of subgrad 37.692440 stepsize= 1.000000 +dualbound = 3084268.238044, lowerbound=1224214.238044, norm of subgrad 1107.020433 dualbound = 3084268.238044, lowerbound=1224214.238044, norm of subgrad 37.428666 stepsize= 1.000000 +dualbound = 3084415.160135, lowerbound=1225933.160135, norm of subgrad 1107.796985 dualbound = 3084415.160135, lowerbound=1225933.160135, norm of subgrad 37.787856 stepsize= 1.000000 +dualbound = 3084521.246997, lowerbound=1226780.246997, norm of subgrad 1108.184212 dualbound = 3084521.246997, lowerbound=1226780.246997, norm of subgrad 37.391000 stepsize= 1.000000 +dualbound = 3084633.174489, lowerbound=1224943.174489, norm of subgrad 1107.360454 dualbound = 3084633.174489, lowerbound=1224943.174489, norm of subgrad 37.628812 stepsize= 1.000000 +dualbound = 3084721.951163, lowerbound=1229261.951163, norm of subgrad 1109.315983 dualbound = 3084721.951163, lowerbound=1229261.951163, norm of subgrad 37.533674 stepsize= 1.000000 +dualbound = 3084858.042751, lowerbound=1225536.042751, norm of subgrad 1107.658360 dualbound = 3084858.042751, lowerbound=1225536.042751, norm of subgrad 38.821278 stepsize= 1.000000 +dualbound = 3084945.281901, lowerbound=1220942.281901, norm of subgrad 1105.609914 dualbound = 3084945.281901, lowerbound=1220942.281901, norm of subgrad 38.964588 stepsize= 1.000000 +dualbound = 3085072.691550, lowerbound=1227255.691550, norm of subgrad 1108.418103 dualbound = 3085072.691550, lowerbound=1227255.691550, norm of subgrad 38.241465 stepsize= 1.000000 +dualbound = 3085194.124942, lowerbound=1226288.124942, norm of subgrad 1108.003666 dualbound = 3085194.124942, lowerbound=1226288.124942, norm of subgrad 38.799915 stepsize= 1.000000 +dualbound = 3085290.278182, lowerbound=1225803.278182, norm of subgrad 1107.792976 dualbound = 3085290.278182, lowerbound=1225803.278182, norm of subgrad 38.705985 stepsize= 1.000000 +dualbound = 3085415.590961, lowerbound=1227863.590961, norm of subgrad 1108.707171 dualbound = 3085415.590961, lowerbound=1227863.590961, norm of subgrad 38.643405 stepsize= 1.000000 +dualbound = 3085542.893055, lowerbound=1228923.893055, norm of subgrad 1109.167658 dualbound = 3085542.893055, lowerbound=1228923.893055, norm of subgrad 38.161526 stepsize= 1.000000 +dualbound = 3085656.977192, lowerbound=1229515.977192, norm of subgrad 1109.434981 dualbound = 3085656.977192, lowerbound=1229515.977192, norm of subgrad 38.001107 stepsize= 1.000000 +dualbound = 3085777.980905, lowerbound=1224716.980905, norm of subgrad 1107.274573 dualbound = 3085777.980905, lowerbound=1224716.980905, norm of subgrad 38.223078 stepsize= 1.000000 +dualbound = 3085872.153902, lowerbound=1223192.153902, norm of subgrad 1106.593039 dualbound = 3085872.153902, lowerbound=1223192.153902, norm of subgrad 38.081137 stepsize= 1.000000 +dualbound = 3086004.915449, lowerbound=1225004.915449, norm of subgrad 1107.394201 dualbound = 3086004.915449, lowerbound=1225004.915449, norm of subgrad 38.075734 stepsize= 1.000000 +dualbound = 3086104.822496, lowerbound=1228270.822496, norm of subgrad 1108.907941 dualbound = 3086104.822496, lowerbound=1228270.822496, norm of subgrad 38.806018 stepsize= 1.000000 +dualbound = 3086207.614260, lowerbound=1225144.614260, norm of subgrad 1107.516417 dualbound = 3086207.614260, lowerbound=1225144.614260, norm of subgrad 39.380093 stepsize= 1.000000 +dualbound = 3086332.865010, lowerbound=1221735.865010, norm of subgrad 1105.944784 dualbound = 3086332.865010, lowerbound=1221735.865010, norm of subgrad 38.771778 stepsize= 1.000000 +dualbound = 3086481.991504, lowerbound=1224698.991504, norm of subgrad 1107.256064 dualbound = 3086481.991504, lowerbound=1224698.991504, norm of subgrad 38.290031 stepsize= 1.000000 +dualbound = 3086577.741561, lowerbound=1225824.741561, norm of subgrad 1107.787318 dualbound = 3086577.741561, lowerbound=1225824.741561, norm of subgrad 38.258987 stepsize= 1.000000 +dualbound = 3086697.107703, lowerbound=1231654.107703, norm of subgrad 1110.395924 dualbound = 3086697.107703, lowerbound=1231654.107703, norm of subgrad 38.004817 stepsize= 1.000000 +dualbound = 3086801.923728, lowerbound=1225654.923728, norm of subgrad 1107.736848 dualbound = 3086801.923728, lowerbound=1225654.923728, norm of subgrad 39.125644 stepsize= 1.000000 +dualbound = 3086916.664271, lowerbound=1231202.664271, norm of subgrad 1110.210189 dualbound = 3086916.664271, lowerbound=1231202.664271, norm of subgrad 38.454396 stepsize= 1.000000 +dualbound = 3087039.914926, lowerbound=1220298.914926, norm of subgrad 1105.272779 dualbound = 3087039.914926, lowerbound=1220298.914926, norm of subgrad 38.108407 stepsize= 1.000000 +dualbound = 3087170.948815, lowerbound=1230571.948815, norm of subgrad 1109.928353 dualbound = 3087170.948815, lowerbound=1230571.948815, norm of subgrad 38.730271 stepsize= 1.000000 +dualbound = 3087253.751213, lowerbound=1231681.751213, norm of subgrad 1110.419628 dualbound = 3087253.751213, lowerbound=1231681.751213, norm of subgrad 37.852376 stepsize= 1.000000 +dualbound = 3087386.818173, lowerbound=1228211.818173, norm of subgrad 1108.862849 dualbound = 3087386.818173, lowerbound=1228211.818173, norm of subgrad 38.704870 stepsize= 1.000000 +dualbound = 3087477.720161, lowerbound=1223120.720161, norm of subgrad 1106.576577 dualbound = 3087477.720161, lowerbound=1223120.720161, norm of subgrad 38.495480 stepsize= 1.000000 +dualbound = 3087606.796399, lowerbound=1224933.796399, norm of subgrad 1107.408595 dualbound = 3087606.796399, lowerbound=1224933.796399, norm of subgrad 39.358306 stepsize= 1.000000 +dualbound = 3087724.611104, lowerbound=1228457.611104, norm of subgrad 1108.973224 dualbound = 3087724.611104, lowerbound=1228457.611104, norm of subgrad 38.494346 stepsize= 1.000000 +dualbound = 3087841.594742, lowerbound=1225097.594742, norm of subgrad 1107.465392 dualbound = 3087841.594742, lowerbound=1225097.594742, norm of subgrad 38.716710 stepsize= 1.000000 +dualbound = 3087978.332818, lowerbound=1225335.332818, norm of subgrad 1107.540217 dualbound = 3087978.332818, lowerbound=1225335.332818, norm of subgrad 38.036010 stepsize= 1.000000 +dualbound = 3088069.358553, lowerbound=1224092.358553, norm of subgrad 1107.029069 dualbound = 3088069.358553, lowerbound=1224092.358553, norm of subgrad 38.884775 stepsize= 1.000000 +dualbound = 3088178.996274, lowerbound=1225881.996274, norm of subgrad 1107.821284 dualbound = 3088178.996274, lowerbound=1225881.996274, norm of subgrad 38.673476 stepsize= 1.000000 +dualbound = 3088319.337293, lowerbound=1228199.337293, norm of subgrad 1108.825206 dualbound = 3088319.337293, lowerbound=1228199.337293, norm of subgrad 37.872695 stepsize= 1.000000 +dualbound = 3088458.535934, lowerbound=1224654.535934, norm of subgrad 1107.260374 dualbound = 3088458.535934, lowerbound=1224654.535934, norm of subgrad 38.861274 stepsize= 1.000000 +dualbound = 3088517.330165, lowerbound=1226776.330165, norm of subgrad 1108.218539 dualbound = 3088517.330165, lowerbound=1226776.330165, norm of subgrad 37.825841 stepsize= 1.000000 +dualbound = 3088659.950875, lowerbound=1227483.950875, norm of subgrad 1108.503474 dualbound = 3088659.950875, lowerbound=1227483.950875, norm of subgrad 37.929154 stepsize= 1.000000 +dualbound = 3088825.652855, lowerbound=1230219.652855, norm of subgrad 1109.745310 dualbound = 3088825.652855, lowerbound=1230219.652855, norm of subgrad 38.479891 stepsize= 1.000000 +dualbound = 3088878.133360, lowerbound=1228129.133360, norm of subgrad 1108.821507 dualbound = 3088878.133360, lowerbound=1228129.133360, norm of subgrad 37.529728 stepsize= 1.000000 +dualbound = 3089009.197064, lowerbound=1224592.197064, norm of subgrad 1107.191129 dualbound = 3089009.197064, lowerbound=1224592.197064, norm of subgrad 37.564128 stepsize= 1.000000 +dualbound = 3089115.097010, lowerbound=1227087.097010, norm of subgrad 1108.350169 dualbound = 3089115.097010, lowerbound=1227087.097010, norm of subgrad 38.195549 stepsize= 1.000000 +dualbound = 3089248.354129, lowerbound=1222750.354129, norm of subgrad 1106.379390 dualbound = 3089248.354129, lowerbound=1222750.354129, norm of subgrad 38.187133 stepsize= 1.000000 +dualbound = 3089353.443188, lowerbound=1225945.443188, norm of subgrad 1107.827804 dualbound = 3089353.443188, lowerbound=1225945.443188, norm of subgrad 37.974848 stepsize= 1.000000 +dualbound = 3089458.833502, lowerbound=1225076.833502, norm of subgrad 1107.453310 dualbound = 3089458.833502, lowerbound=1225076.833502, norm of subgrad 38.488834 stepsize= 1.000000 +dualbound = 3089563.195054, lowerbound=1228592.195054, norm of subgrad 1109.050132 dualbound = 3089563.195054, lowerbound=1228592.195054, norm of subgrad 38.786100 stepsize= 1.000000 +dualbound = 3089695.407046, lowerbound=1229315.407046, norm of subgrad 1109.351796 dualbound = 3089695.407046, lowerbound=1229315.407046, norm of subgrad 38.447523 stepsize= 1.000000 +dualbound = 3089821.796100, lowerbound=1222968.796100, norm of subgrad 1106.475393 dualbound = 3089821.796100, lowerbound=1222968.796100, norm of subgrad 38.018273 stepsize= 1.000000 +dualbound = 3089936.908357, lowerbound=1225933.908357, norm of subgrad 1107.832527 dualbound = 3089936.908357, lowerbound=1225933.908357, norm of subgrad 38.394170 stepsize= 1.000000 +dualbound = 3090028.764565, lowerbound=1230921.764565, norm of subgrad 1110.065207 dualbound = 3090028.764565, lowerbound=1230921.764565, norm of subgrad 37.614574 stepsize= 1.000000 +dualbound = 3090181.293160, lowerbound=1221738.293160, norm of subgrad 1105.921920 dualbound = 3090181.293160, lowerbound=1221738.293160, norm of subgrad 38.438634 stepsize= 1.000000 +dualbound = 3090255.084370, lowerbound=1227301.084370, norm of subgrad 1108.452563 dualbound = 3090255.084370, lowerbound=1227301.084370, norm of subgrad 37.944581 stepsize= 1.000000 +dualbound = 3090382.221100, lowerbound=1225579.221100, norm of subgrad 1107.688684 dualbound = 3090382.221100, lowerbound=1225579.221100, norm of subgrad 39.014571 stepsize= 1.000000 +dualbound = 3090463.952847, lowerbound=1230188.952847, norm of subgrad 1109.754907 dualbound = 3090463.952847, lowerbound=1230188.952847, norm of subgrad 38.062209 stepsize= 1.000000 +dualbound = 3090622.320128, lowerbound=1228998.320128, norm of subgrad 1109.228705 dualbound = 3090622.320128, lowerbound=1228998.320128, norm of subgrad 39.349298 stepsize= 1.000000 +dualbound = 3090701.758537, lowerbound=1225508.758537, norm of subgrad 1107.660940 dualbound = 3090701.758537, lowerbound=1225508.758537, norm of subgrad 38.515431 stepsize= 1.000000 +dualbound = 3090838.280924, lowerbound=1224930.280924, norm of subgrad 1107.380369 dualbound = 3090838.280924, lowerbound=1224930.280924, norm of subgrad 38.697834 stepsize= 1.000000 +dualbound = 3090946.710932, lowerbound=1227236.710932, norm of subgrad 1108.428938 dualbound = 3090946.710932, lowerbound=1227236.710932, norm of subgrad 38.554248 stepsize= 1.000000 +dualbound = 3091081.930714, lowerbound=1224486.930714, norm of subgrad 1107.193267 dualbound = 3091081.930714, lowerbound=1224486.930714, norm of subgrad 39.054062 stepsize= 1.000000 +dualbound = 3091165.902713, lowerbound=1225334.902713, norm of subgrad 1107.586522 dualbound = 3091165.902713, lowerbound=1225334.902713, norm of subgrad 38.690722 stepsize= 1.000000 +dualbound = 3091299.134075, lowerbound=1225099.134075, norm of subgrad 1107.452994 dualbound = 3091299.134075, lowerbound=1225099.134075, norm of subgrad 38.551671 stepsize= 1.000000 +dualbound = 3091435.624740, lowerbound=1227177.624740, norm of subgrad 1108.414013 dualbound = 3091435.624740, lowerbound=1227177.624740, norm of subgrad 39.249085 stepsize= 1.000000 +dualbound = 3091518.506665, lowerbound=1226466.506665, norm of subgrad 1108.090026 dualbound = 3091518.506665, lowerbound=1226466.506665, norm of subgrad 38.469233 stepsize= 1.000000 +dualbound = 3091637.927902, lowerbound=1220113.927902, norm of subgrad 1105.204021 dualbound = 3091637.927902, lowerbound=1220113.927902, norm of subgrad 38.489235 stepsize= 1.000000 +dualbound = 3091748.121989, lowerbound=1226504.121989, norm of subgrad 1108.074060 dualbound = 3091748.121989, lowerbound=1226504.121989, norm of subgrad 37.870755 stepsize= 1.000000 +dualbound = 3091896.850628, lowerbound=1227784.850628, norm of subgrad 1108.664896 dualbound = 3091896.850628, lowerbound=1227784.850628, norm of subgrad 38.752144 stepsize= 1.000000 +dualbound = 3092001.907031, lowerbound=1226520.907031, norm of subgrad 1108.093366 dualbound = 3092001.907031, lowerbound=1226520.907031, norm of subgrad 38.145202 stepsize= 1.000000 +dualbound = 3092078.732822, lowerbound=1227952.732822, norm of subgrad 1108.762253 dualbound = 3092078.732822, lowerbound=1227952.732822, norm of subgrad 38.442500 stepsize= 1.000000 +dualbound = 3092237.990924, lowerbound=1228825.990924, norm of subgrad 1109.119016 dualbound = 3092237.990924, lowerbound=1228825.990924, norm of subgrad 38.448122 stepsize= 1.000000 +dualbound = 3092337.366063, lowerbound=1225589.366063, norm of subgrad 1107.675208 dualbound = 3092337.366063, lowerbound=1225589.366063, norm of subgrad 38.136271 stepsize= 1.000000 +dualbound = 3092473.294576, lowerbound=1226619.294576, norm of subgrad 1108.146333 dualbound = 3092473.294576, lowerbound=1226619.294576, norm of subgrad 38.793408 stepsize= 1.000000 +dualbound = 3092541.939648, lowerbound=1227401.939648, norm of subgrad 1108.531434 dualbound = 3092541.939648, lowerbound=1227401.939648, norm of subgrad 38.841281 stepsize= 1.000000 +dualbound = 3092705.844027, lowerbound=1228040.844027, norm of subgrad 1108.759146 dualbound = 3092705.844027, lowerbound=1228040.844027, norm of subgrad 38.339332 stepsize= 1.000000 +dualbound = 3092805.636721, lowerbound=1226105.636721, norm of subgrad 1107.900554 dualbound = 3092805.636721, lowerbound=1226105.636721, norm of subgrad 37.918237 stepsize= 1.000000 +dualbound = 3092931.551201, lowerbound=1225127.551201, norm of subgrad 1107.463115 dualbound = 3092931.551201, lowerbound=1225127.551201, norm of subgrad 38.378568 stepsize= 1.000000 +dualbound = 3093031.708271, lowerbound=1227524.708271, norm of subgrad 1108.543959 dualbound = 3093031.708271, lowerbound=1227524.708271, norm of subgrad 38.015222 stepsize= 1.000000 +dualbound = 3093154.609614, lowerbound=1232703.609614, norm of subgrad 1110.859851 dualbound = 3093154.609614, lowerbound=1232703.609614, norm of subgrad 37.800811 stepsize= 1.000000 +dualbound = 3093260.290360, lowerbound=1225272.290360, norm of subgrad 1107.514917 dualbound = 3093260.290360, lowerbound=1225272.290360, norm of subgrad 37.718440 stepsize= 1.000000 +dualbound = 3093396.069522, lowerbound=1231670.069522, norm of subgrad 1110.383298 dualbound = 3093396.069522, lowerbound=1231670.069522, norm of subgrad 37.640127 stepsize= 1.000000 +dualbound = 3093496.345928, lowerbound=1227741.345928, norm of subgrad 1108.656550 dualbound = 3093496.345928, lowerbound=1227741.345928, norm of subgrad 38.448360 stepsize= 1.000000 +dualbound = 3093591.045686, lowerbound=1226502.045686, norm of subgrad 1108.106965 dualbound = 3093591.045686, lowerbound=1226502.045686, norm of subgrad 38.648412 stepsize= 1.000000 +dualbound = 3093685.810034, lowerbound=1225753.810034, norm of subgrad 1107.793216 dualbound = 3093685.810034, lowerbound=1225753.810034, norm of subgrad 39.328925 stepsize= 1.000000 +dualbound = 3093817.555657, lowerbound=1228843.555657, norm of subgrad 1109.150376 dualbound = 3093817.555657, lowerbound=1228843.555657, norm of subgrad 38.765263 stepsize= 1.000000 +dualbound = 3093924.121673, lowerbound=1225980.121673, norm of subgrad 1107.875499 dualbound = 3093924.121673, lowerbound=1225980.121673, norm of subgrad 38.917426 stepsize= 1.000000 +dualbound = 3094046.006656, lowerbound=1230707.006656, norm of subgrad 1109.977030 dualbound = 3094046.006656, lowerbound=1230707.006656, norm of subgrad 38.260750 stepsize= 1.000000 +dualbound = 3094169.476585, lowerbound=1227906.476585, norm of subgrad 1108.713884 dualbound = 3094169.476585, lowerbound=1227906.476585, norm of subgrad 38.255325 stepsize= 1.000000 +dualbound = 3094303.425527, lowerbound=1229162.425527, norm of subgrad 1109.290956 dualbound = 3094303.425527, lowerbound=1229162.425527, norm of subgrad 38.703345 stepsize= 1.000000 +dualbound = 3094385.183442, lowerbound=1224738.183442, norm of subgrad 1107.279180 dualbound = 3094385.183442, lowerbound=1224738.183442, norm of subgrad 37.560057 stepsize= 1.000000 +dualbound = 3094525.476126, lowerbound=1227525.476126, norm of subgrad 1108.565053 dualbound = 3094525.476126, lowerbound=1227525.476126, norm of subgrad 39.131735 stepsize= 1.000000 +dualbound = 3094603.394017, lowerbound=1231383.394017, norm of subgrad 1110.266362 dualbound = 3094603.394017, lowerbound=1231383.394017, norm of subgrad 37.227918 stepsize= 1.000000 +dualbound = 3094785.359208, lowerbound=1230413.359208, norm of subgrad 1109.833483 dualbound = 3094785.359208, lowerbound=1230413.359208, norm of subgrad 38.716472 stepsize= 1.000000 +dualbound = 3094819.073070, lowerbound=1228264.073070, norm of subgrad 1108.933304 dualbound = 3094819.073070, lowerbound=1228264.073070, norm of subgrad 38.764853 stepsize= 1.000000 +dualbound = 3094955.441352, lowerbound=1229882.441352, norm of subgrad 1109.605534 dualbound = 3094955.441352, lowerbound=1229882.441352, norm of subgrad 38.449555 stepsize= 1.000000 +dualbound = 3095099.825614, lowerbound=1230386.825614, norm of subgrad 1109.844956 dualbound = 3095099.825614, lowerbound=1230386.825614, norm of subgrad 38.902240 stepsize= 1.000000 +dualbound = 3095203.175070, lowerbound=1230302.175070, norm of subgrad 1109.811324 dualbound = 3095203.175070, lowerbound=1230302.175070, norm of subgrad 38.501292 stepsize= 1.000000 +dualbound = 3095284.807882, lowerbound=1224338.807882, norm of subgrad 1107.148955 dualbound = 3095284.807882, lowerbound=1224338.807882, norm of subgrad 39.008112 stepsize= 1.000000 +dualbound = 3095415.001054, lowerbound=1229437.001054, norm of subgrad 1109.425978 dualbound = 3095415.001054, lowerbound=1229437.001054, norm of subgrad 38.976829 stepsize= 1.000000 +dualbound = 3095524.804357, lowerbound=1230538.804357, norm of subgrad 1109.928738 dualbound = 3095524.804357, lowerbound=1230538.804357, norm of subgrad 38.894772 stepsize= 1.000000 +dualbound = 3095663.825138, lowerbound=1228278.825138, norm of subgrad 1108.863303 dualbound = 3095663.825138, lowerbound=1228278.825138, norm of subgrad 37.921244 stepsize= 1.000000 +dualbound = 3095769.048781, lowerbound=1231308.048781, norm of subgrad 1110.244139 dualbound = 3095769.048781, lowerbound=1231308.048781, norm of subgrad 37.937101 stepsize= 1.000000 +dualbound = 3095905.791514, lowerbound=1228391.791514, norm of subgrad 1108.916043 dualbound = 3095905.791514, lowerbound=1228391.791514, norm of subgrad 37.943942 stepsize= 1.000000 +dualbound = 3096009.105584, lowerbound=1229334.105584, norm of subgrad 1109.346251 dualbound = 3096009.105584, lowerbound=1229334.105584, norm of subgrad 37.660511 stepsize= 1.000000 +dualbound = 3096132.410364, lowerbound=1229181.410364, norm of subgrad 1109.302218 dualbound = 3096132.410364, lowerbound=1229181.410364, norm of subgrad 38.643302 stepsize= 1.000000 +dualbound = 3096178.667214, lowerbound=1229803.667214, norm of subgrad 1109.611944 dualbound = 3096178.667214, lowerbound=1229803.667214, norm of subgrad 38.487100 stepsize= 1.000000 +dualbound = 3096342.201881, lowerbound=1228961.201881, norm of subgrad 1109.175460 dualbound = 3096342.201881, lowerbound=1228961.201881, norm of subgrad 38.373619 stepsize= 1.000000 +dualbound = 3096469.831228, lowerbound=1229950.831228, norm of subgrad 1109.639956 dualbound = 3096469.831228, lowerbound=1229950.831228, norm of subgrad 38.439945 stepsize= 1.000000 +dualbound = 3096561.352441, lowerbound=1227341.352441, norm of subgrad 1108.463059 dualbound = 3096561.352441, lowerbound=1227341.352441, norm of subgrad 37.954199 stepsize= 1.000000 +dualbound = 3096676.911366, lowerbound=1221843.911366, norm of subgrad 1105.981425 dualbound = 3096676.911366, lowerbound=1221843.911366, norm of subgrad 38.295678 stepsize= 1.000000 +dualbound = 3096792.493591, lowerbound=1231248.493591, norm of subgrad 1110.215517 dualbound = 3096792.493591, lowerbound=1231248.493591, norm of subgrad 38.020813 stepsize= 1.000000 +dualbound = 3096915.601888, lowerbound=1231511.601888, norm of subgrad 1110.336256 dualbound = 3096915.601888, lowerbound=1231511.601888, norm of subgrad 38.185184 stepsize= 1.000000 +dualbound = 3097045.919554, lowerbound=1230042.919554, norm of subgrad 1109.660723 dualbound = 3097045.919554, lowerbound=1230042.919554, norm of subgrad 37.872387 stepsize= 1.000000 +dualbound = 3097135.240089, lowerbound=1228809.240089, norm of subgrad 1109.128595 dualbound = 3097135.240089, lowerbound=1228809.240089, norm of subgrad 38.030521 stepsize= 1.000000 +dualbound = 3097264.681853, lowerbound=1229448.681853, norm of subgrad 1109.421778 dualbound = 3097264.681853, lowerbound=1229448.681853, norm of subgrad 38.696793 stepsize= 1.000000 +dualbound = 3097358.442890, lowerbound=1225179.442890, norm of subgrad 1107.504150 dualbound = 3097358.442890, lowerbound=1225179.442890, norm of subgrad 38.467662 stepsize= 1.000000 +dualbound = 3097484.636713, lowerbound=1231687.636713, norm of subgrad 1110.402466 dualbound = 3097484.636713, lowerbound=1231687.636713, norm of subgrad 37.844337 stepsize= 1.000000 +dualbound = 3097600.658268, lowerbound=1227176.658268, norm of subgrad 1108.388767 dualbound = 3097600.658268, lowerbound=1227176.658268, norm of subgrad 38.275600 stepsize= 1.000000 +dualbound = 3097715.454200, lowerbound=1228458.454200, norm of subgrad 1108.966390 dualbound = 3097715.454200, lowerbound=1228458.454200, norm of subgrad 38.246515 stepsize= 1.000000 +dualbound = 3097833.595433, lowerbound=1235771.595433, norm of subgrad 1112.274065 dualbound = 3097833.595433, lowerbound=1235771.595433, norm of subgrad 38.731657 stepsize= 1.000000 +dualbound = 3097923.134969, lowerbound=1226490.134969, norm of subgrad 1108.074066 dualbound = 3097923.134969, lowerbound=1226490.134969, norm of subgrad 37.782794 stepsize= 1.000000 +dualbound = 3098064.499086, lowerbound=1231540.499086, norm of subgrad 1110.339812 dualbound = 3098064.499086, lowerbound=1231540.499086, norm of subgrad 38.149235 stepsize= 1.000000 +dualbound = 3098154.292376, lowerbound=1227906.292376, norm of subgrad 1108.749427 dualbound = 3098154.292376, lowerbound=1227906.292376, norm of subgrad 38.843188 stepsize= 1.000000 +dualbound = 3098257.822797, lowerbound=1226616.822797, norm of subgrad 1108.165070 dualbound = 3098257.822797, lowerbound=1226616.822797, norm of subgrad 38.942656 stepsize= 1.000000 +dualbound = 3098369.438148, lowerbound=1229387.438148, norm of subgrad 1109.418514 dualbound = 3098369.438148, lowerbound=1229387.438148, norm of subgrad 39.161401 stepsize= 1.000000 +dualbound = 3098515.797173, lowerbound=1232580.797173, norm of subgrad 1110.850484 dualbound = 3098515.797173, lowerbound=1232580.797173, norm of subgrad 39.425360 stepsize= 1.000000 +dualbound = 3098614.643409, lowerbound=1227706.643409, norm of subgrad 1108.621055 dualbound = 3098614.643409, lowerbound=1227706.643409, norm of subgrad 37.852955 stepsize= 1.000000 +dualbound = 3098740.394992, lowerbound=1231731.394992, norm of subgrad 1110.421269 dualbound = 3098740.394992, lowerbound=1231731.394992, norm of subgrad 37.812056 stepsize= 1.000000 +dualbound = 3098866.146695, lowerbound=1229796.146695, norm of subgrad 1109.549975 dualbound = 3098866.146695, lowerbound=1229796.146695, norm of subgrad 37.825279 stepsize= 1.000000 +dualbound = 3098954.847818, lowerbound=1227172.847818, norm of subgrad 1108.380281 dualbound = 3098954.847818, lowerbound=1227172.847818, norm of subgrad 37.718711 stepsize= 1.000000 +dualbound = 3099066.717265, lowerbound=1234209.717265, norm of subgrad 1111.564536 dualbound = 3099066.717265, lowerbound=1234209.717265, norm of subgrad 38.443068 stepsize= 1.000000 +dualbound = 3099201.794076, lowerbound=1226737.794076, norm of subgrad 1108.170020 dualbound = 3099201.794076, lowerbound=1226737.794076, norm of subgrad 37.921983 stepsize= 1.000000 +dualbound = 3099298.328266, lowerbound=1226277.328266, norm of subgrad 1107.963595 dualbound = 3099298.328266, lowerbound=1226277.328266, norm of subgrad 37.450423 stepsize= 1.000000 +dualbound = 3099416.172159, lowerbound=1233877.172159, norm of subgrad 1111.375352 dualbound = 3099416.172159, lowerbound=1233877.172159, norm of subgrad 37.360994 stepsize= 1.000000 +dualbound = 3099560.466655, lowerbound=1224075.466655, norm of subgrad 1106.975820 dualbound = 3099560.466655, lowerbound=1224075.466655, norm of subgrad 38.266101 stepsize= 1.000000 +dualbound = 3099629.878443, lowerbound=1234111.878443, norm of subgrad 1111.503881 dualbound = 3099629.878443, lowerbound=1234111.878443, norm of subgrad 37.395344 stepsize= 1.000000 +dualbound = 3099756.901698, lowerbound=1230558.901698, norm of subgrad 1109.906258 dualbound = 3099756.901698, lowerbound=1230558.901698, norm of subgrad 38.210251 stepsize= 1.000000 +dualbound = 3099862.002917, lowerbound=1231612.002917, norm of subgrad 1110.423794 dualbound = 3099862.002917, lowerbound=1231612.002917, norm of subgrad 39.167604 stepsize= 1.000000 +dualbound = 3099954.307578, lowerbound=1232025.307578, norm of subgrad 1110.589171 dualbound = 3099954.307578, lowerbound=1232025.307578, norm of subgrad 38.409695 stepsize= 1.000000 +dualbound = 3100096.388907, lowerbound=1224594.388907, norm of subgrad 1107.250825 dualbound = 3100096.388907, lowerbound=1224594.388907, norm of subgrad 39.396463 stepsize= 1.000000 +dualbound = 3100193.838611, lowerbound=1234271.838611, norm of subgrad 1111.622615 dualbound = 3100193.838611, lowerbound=1234271.838611, norm of subgrad 39.120962 stepsize= 1.000000 +dualbound = 3100323.646161, lowerbound=1230746.646161, norm of subgrad 1110.009300 dualbound = 3100323.646161, lowerbound=1230746.646161, norm of subgrad 38.778958 stepsize= 1.000000 +dualbound = 3100421.789792, lowerbound=1227683.789792, norm of subgrad 1108.615709 dualbound = 3100421.789792, lowerbound=1227683.789792, norm of subgrad 37.988730 stepsize= 1.000000 +dualbound = 3100557.932391, lowerbound=1228934.932391, norm of subgrad 1109.189313 dualbound = 3100557.932391, lowerbound=1228934.932391, norm of subgrad 38.757484 stepsize= 1.000000 +dualbound = 3100664.889524, lowerbound=1225577.889524, norm of subgrad 1107.653777 dualbound = 3100664.889524, lowerbound=1225577.889524, norm of subgrad 37.761848 stepsize= 1.000000 +dualbound = 3100782.920191, lowerbound=1233109.920191, norm of subgrad 1111.059818 dualbound = 3100782.920191, lowerbound=1233109.920191, norm of subgrad 38.236510 stepsize= 1.000000 +dualbound = 3100896.695992, lowerbound=1226686.695992, norm of subgrad 1108.146514 dualbound = 3100896.695992, lowerbound=1226686.695992, norm of subgrad 37.626796 stepsize= 1.000000 +dualbound = 3101019.293072, lowerbound=1228611.293072, norm of subgrad 1109.044766 dualbound = 3101019.293072, lowerbound=1228611.293072, norm of subgrad 38.621200 stepsize= 1.000000 +dualbound = 3101119.528944, lowerbound=1229104.528944, norm of subgrad 1109.244576 dualbound = 3101119.528944, lowerbound=1229104.528944, norm of subgrad 37.672747 stepsize= 1.000000 +dualbound = 3101245.470440, lowerbound=1226118.470440, norm of subgrad 1107.907248 dualbound = 3101245.470440, lowerbound=1226118.470440, norm of subgrad 38.287615 stepsize= 1.000000 +dualbound = 3101343.889793, lowerbound=1236041.889793, norm of subgrad 1112.376236 dualbound = 3101343.889793, lowerbound=1236041.889793, norm of subgrad 37.913314 stepsize= 1.000000 +dualbound = 3101449.947176, lowerbound=1227385.947176, norm of subgrad 1108.497157 dualbound = 3101449.947176, lowerbound=1227385.947176, norm of subgrad 38.549415 stepsize= 1.000000 +dualbound = 3101573.196497, lowerbound=1232376.196497, norm of subgrad 1110.729128 dualbound = 3101573.196497, lowerbound=1232376.196497, norm of subgrad 38.291635 stepsize= 1.000000 +dualbound = 3101683.481061, lowerbound=1225280.481061, norm of subgrad 1107.546604 dualbound = 3101683.481061, lowerbound=1225280.481061, norm of subgrad 38.591250 stepsize= 1.000000 +dualbound = 3101791.935508, lowerbound=1233959.935508, norm of subgrad 1111.453524 dualbound = 3101791.935508, lowerbound=1233959.935508, norm of subgrad 38.437670 stepsize= 1.000000 +dualbound = 3101905.175255, lowerbound=1223803.175255, norm of subgrad 1106.877218 dualbound = 3101905.175255, lowerbound=1223803.175255, norm of subgrad 38.564747 stepsize= 1.000000 +dualbound = 3102005.424250, lowerbound=1232081.424250, norm of subgrad 1110.632894 dualbound = 3102005.424250, lowerbound=1232081.424250, norm of subgrad 39.041632 stepsize= 1.000000 +dualbound = 3102116.039635, lowerbound=1231077.039635, norm of subgrad 1110.169374 dualbound = 3102116.039635, lowerbound=1231077.039635, norm of subgrad 38.853769 stepsize= 1.000000 +dualbound = 3102253.400195, lowerbound=1231008.400195, norm of subgrad 1110.110986 dualbound = 3102253.400195, lowerbound=1231008.400195, norm of subgrad 38.410423 stepsize= 1.000000 +dualbound = 3102361.316868, lowerbound=1230122.316868, norm of subgrad 1109.729840 dualbound = 3102361.316868, lowerbound=1230122.316868, norm of subgrad 38.547590 stepsize= 1.000000 +dualbound = 3102495.848479, lowerbound=1228412.848479, norm of subgrad 1108.964313 dualbound = 3102495.848479, lowerbound=1228412.848479, norm of subgrad 39.032443 stepsize= 1.000000 +dualbound = 3102576.701669, lowerbound=1227389.701669, norm of subgrad 1108.500204 dualbound = 3102576.701669, lowerbound=1227389.701669, norm of subgrad 38.260334 stepsize= 1.000000 +dualbound = 3102732.052190, lowerbound=1232526.052190, norm of subgrad 1110.796585 dualbound = 3102732.052190, lowerbound=1232526.052190, norm of subgrad 38.708533 stepsize= 1.000000 +dualbound = 3102820.287207, lowerbound=1233279.287207, norm of subgrad 1111.150884 dualbound = 3102820.287207, lowerbound=1233279.287207, norm of subgrad 38.278388 stepsize= 1.000000 +dualbound = 3102948.012825, lowerbound=1230966.012825, norm of subgrad 1110.088741 dualbound = 3102948.012825, lowerbound=1230966.012825, norm of subgrad 38.193267 stepsize= 1.000000 +dualbound = 3103044.770945, lowerbound=1231085.770945, norm of subgrad 1110.182765 dualbound = 3103044.770945, lowerbound=1231085.770945, norm of subgrad 38.945579 stepsize= 1.000000 +dualbound = 3103151.456518, lowerbound=1231221.456518, norm of subgrad 1110.236667 dualbound = 3103151.456518, lowerbound=1231221.456518, norm of subgrad 38.867539 stepsize= 1.000000 +dualbound = 3103248.351708, lowerbound=1231824.351708, norm of subgrad 1110.511752 dualbound = 3103248.351708, lowerbound=1231824.351708, norm of subgrad 38.844500 stepsize= 1.000000 +dualbound = 3103396.242248, lowerbound=1228708.242248, norm of subgrad 1109.049251 dualbound = 3103396.242248, lowerbound=1228708.242248, norm of subgrad 37.813893 stepsize= 1.000000 +dualbound = 3103520.542358, lowerbound=1231101.542358, norm of subgrad 1110.143478 dualbound = 3103520.542358, lowerbound=1231101.542358, norm of subgrad 37.964459 stepsize= 1.000000 +dualbound = 3103635.388919, lowerbound=1227265.388919, norm of subgrad 1108.407592 dualbound = 3103635.388919, lowerbound=1227265.388919, norm of subgrad 37.641022 stepsize= 1.000000 +dualbound = 3103728.666252, lowerbound=1227861.666252, norm of subgrad 1108.672930 dualbound = 3103728.666252, lowerbound=1227861.666252, norm of subgrad 37.246172 stepsize= 1.000000 +dualbound = 3103854.961131, lowerbound=1232648.961131, norm of subgrad 1110.814999 dualbound = 3103854.961131, lowerbound=1232648.961131, norm of subgrad 37.246408 stepsize= 1.000000 +dualbound = 3103980.823977, lowerbound=1223917.823977, norm of subgrad 1106.891514 dualbound = 3103980.823977, lowerbound=1223917.823977, norm of subgrad 37.641239 stepsize= 1.000000 +dualbound = 3104084.475101, lowerbound=1231807.475101, norm of subgrad 1110.475788 dualbound = 3104084.475101, lowerbound=1231807.475101, norm of subgrad 38.113661 stepsize= 1.000000 +dualbound = 3104198.413142, lowerbound=1231995.413142, norm of subgrad 1110.548699 dualbound = 3104198.413142, lowerbound=1231995.413142, norm of subgrad 37.906966 stepsize= 1.000000 +dualbound = 3104305.465839, lowerbound=1228006.465839, norm of subgrad 1108.777915 dualbound = 3104305.465839, lowerbound=1228006.465839, norm of subgrad 38.588246 stepsize= 1.000000 +dualbound = 3104406.701584, lowerbound=1229059.701584, norm of subgrad 1109.260881 dualbound = 3104406.701584, lowerbound=1229059.701584, norm of subgrad 38.745784 stepsize= 1.000000 +dualbound = 3104529.698515, lowerbound=1232682.698515, norm of subgrad 1110.887797 dualbound = 3104529.698515, lowerbound=1232682.698515, norm of subgrad 38.884405 stepsize= 1.000000 +dualbound = 3104639.468658, lowerbound=1227811.468658, norm of subgrad 1108.712978 dualbound = 3104639.468658, lowerbound=1227811.468658, norm of subgrad 39.278113 stepsize= 1.000000 +dualbound = 3104742.924829, lowerbound=1227494.924829, norm of subgrad 1108.545860 dualbound = 3104742.924829, lowerbound=1227494.924829, norm of subgrad 38.502677 stepsize= 1.000000 +dualbound = 3104867.587526, lowerbound=1229577.587526, norm of subgrad 1109.500603 dualbound = 3104867.587526, lowerbound=1229577.587526, norm of subgrad 39.225791 stepsize= 1.000000 +dualbound = 3104961.440996, lowerbound=1231222.440996, norm of subgrad 1110.247919 dualbound = 3104961.440996, lowerbound=1231222.440996, norm of subgrad 39.010940 stepsize= 1.000000 +dualbound = 3105094.698174, lowerbound=1236182.698174, norm of subgrad 1112.454807 dualbound = 3105094.698174, lowerbound=1236182.698174, norm of subgrad 38.810529 stepsize= 1.000000 +dualbound = 3105214.455682, lowerbound=1227130.455682, norm of subgrad 1108.379202 dualbound = 3105214.455682, lowerbound=1227130.455682, norm of subgrad 38.649159 stepsize= 1.000000 +dualbound = 3105321.075277, lowerbound=1231559.075277, norm of subgrad 1110.371593 dualbound = 3105321.075277, lowerbound=1231559.075277, norm of subgrad 38.374726 stepsize= 1.000000 +dualbound = 3105444.163175, lowerbound=1230863.163175, norm of subgrad 1110.037460 dualbound = 3105444.163175, lowerbound=1230863.163175, norm of subgrad 37.987997 stepsize= 1.000000 +dualbound = 3105569.256791, lowerbound=1228520.256791, norm of subgrad 1108.988844 dualbound = 3105569.256791, lowerbound=1228520.256791, norm of subgrad 38.224254 stepsize= 1.000000 +dualbound = 3105672.642705, lowerbound=1231955.642705, norm of subgrad 1110.510983 dualbound = 3105672.642705, lowerbound=1231955.642705, norm of subgrad 37.180451 stepsize= 1.000000 +dualbound = 3105807.324316, lowerbound=1230780.324316, norm of subgrad 1109.970866 dualbound = 3105807.324316, lowerbound=1230780.324316, norm of subgrad 37.278434 stepsize= 1.000000 +dualbound = 3105920.400686, lowerbound=1229177.400686, norm of subgrad 1109.283733 dualbound = 3105920.400686, lowerbound=1229177.400686, norm of subgrad 38.027311 stepsize= 1.000000 +dualbound = 3106006.204357, lowerbound=1229768.204357, norm of subgrad 1109.542340 dualbound = 3106006.204357, lowerbound=1229768.204357, norm of subgrad 37.440669 stepsize= 1.000000 +dualbound = 3106127.125228, lowerbound=1229282.125228, norm of subgrad 1109.334992 dualbound = 3106127.125228, lowerbound=1229282.125228, norm of subgrad 38.248149 stepsize= 1.000000 +dualbound = 3106234.922053, lowerbound=1229629.922053, norm of subgrad 1109.488586 dualbound = 3106234.922053, lowerbound=1229629.922053, norm of subgrad 37.984165 stepsize= 1.000000 +dualbound = 3106352.589207, lowerbound=1233331.589207, norm of subgrad 1111.146070 dualbound = 3106352.589207, lowerbound=1233331.589207, norm of subgrad 37.837378 stepsize= 1.000000 +dualbound = 3106441.384409, lowerbound=1234169.384409, norm of subgrad 1111.584178 dualbound = 3106441.384409, lowerbound=1234169.384409, norm of subgrad 39.227480 stepsize= 1.000000 +dualbound = 3106575.306084, lowerbound=1229739.306084, norm of subgrad 1109.521656 dualbound = 3106575.306084, lowerbound=1229739.306084, norm of subgrad 37.853952 stepsize= 1.000000 +dualbound = 3106683.724425, lowerbound=1229740.724425, norm of subgrad 1109.557445 dualbound = 3106683.724425, lowerbound=1229740.724425, norm of subgrad 38.541125 stepsize= 1.000000 +dualbound = 3106805.133154, lowerbound=1230413.133154, norm of subgrad 1109.865367 dualbound = 3106805.133154, lowerbound=1230413.133154, norm of subgrad 38.851110 stepsize= 1.000000 +dualbound = 3106914.065374, lowerbound=1227401.065374, norm of subgrad 1108.469695 dualbound = 3106914.065374, lowerbound=1227401.065374, norm of subgrad 37.588991 stepsize= 1.000000 +dualbound = 3107044.759804, lowerbound=1229091.759804, norm of subgrad 1109.246934 dualbound = 3107044.759804, lowerbound=1229091.759804, norm of subgrad 38.310500 stepsize= 1.000000 +dualbound = 3107127.195311, lowerbound=1229501.195311, norm of subgrad 1109.438685 dualbound = 3107127.195311, lowerbound=1229501.195311, norm of subgrad 37.887142 stepsize= 1.000000 +dualbound = 3107246.319177, lowerbound=1234500.319177, norm of subgrad 1111.691198 dualbound = 3107246.319177, lowerbound=1234500.319177, norm of subgrad 38.420357 stepsize= 1.000000 +dualbound = 3107342.448822, lowerbound=1228481.448822, norm of subgrad 1108.976307 dualbound = 3107342.448822, lowerbound=1228481.448822, norm of subgrad 37.988546 stepsize= 1.000000 +dualbound = 3107477.180495, lowerbound=1227446.180495, norm of subgrad 1108.505832 dualbound = 3107477.180495, lowerbound=1227446.180495, norm of subgrad 38.389213 stepsize= 1.000000 +dualbound = 3107601.672903, lowerbound=1228245.672903, norm of subgrad 1108.864136 dualbound = 3107601.672903, lowerbound=1228245.672903, norm of subgrad 38.190214 stepsize= 1.000000 +dualbound = 3107697.345169, lowerbound=1230089.345169, norm of subgrad 1109.732105 dualbound = 3107697.345169, lowerbound=1230089.345169, norm of subgrad 38.880230 stepsize= 1.000000 +dualbound = 3107771.765716, lowerbound=1230762.765716, norm of subgrad 1110.057551 dualbound = 3107771.765716, lowerbound=1230762.765716, norm of subgrad 39.235450 stepsize= 1.000000 +dualbound = 3107915.625320, lowerbound=1231401.625320, norm of subgrad 1110.304294 dualbound = 3107915.625320, lowerbound=1231401.625320, norm of subgrad 38.959718 stepsize= 1.000000 +dualbound = 3108026.933244, lowerbound=1226808.933244, norm of subgrad 1108.217458 dualbound = 3108026.933244, lowerbound=1226808.933244, norm of subgrad 38.056641 stepsize= 1.000000 +dualbound = 3108170.737786, lowerbound=1234191.737786, norm of subgrad 1111.553300 dualbound = 3108170.737786, lowerbound=1234191.737786, norm of subgrad 38.766023 stepsize= 1.000000 +dualbound = 3108266.214097, lowerbound=1234660.214097, norm of subgrad 1111.755915 dualbound = 3108266.214097, lowerbound=1234660.214097, norm of subgrad 37.900875 stepsize= 1.000000 +dualbound = 3108404.435036, lowerbound=1230806.435036, norm of subgrad 1110.007403 dualbound = 3108404.435036, lowerbound=1230806.435036, norm of subgrad 38.055498 stepsize= 1.000000 +dualbound = 3108473.828285, lowerbound=1229869.828285, norm of subgrad 1109.639504 dualbound = 3108473.828285, lowerbound=1229869.828285, norm of subgrad 38.722000 stepsize= 1.000000 +dualbound = 3108603.850054, lowerbound=1232900.850054, norm of subgrad 1110.977880 dualbound = 3108603.850054, lowerbound=1232900.850054, norm of subgrad 38.743022 stepsize= 1.000000 +dualbound = 3108718.701597, lowerbound=1225841.701597, norm of subgrad 1107.816186 dualbound = 3108718.701597, lowerbound=1225841.701597, norm of subgrad 39.113317 stepsize= 1.000000 +dualbound = 3108825.993958, lowerbound=1230902.993958, norm of subgrad 1110.060806 dualbound = 3108825.993958, lowerbound=1230902.993958, norm of subgrad 37.938007 stepsize= 1.000000 +dualbound = 3108960.083724, lowerbound=1230562.083724, norm of subgrad 1109.910845 dualbound = 3108960.083724, lowerbound=1230562.083724, norm of subgrad 38.393877 stepsize= 1.000000 +dualbound = 3109081.496856, lowerbound=1232006.496856, norm of subgrad 1110.548287 dualbound = 3109081.496856, lowerbound=1232006.496856, norm of subgrad 37.847234 stepsize= 1.000000 +dualbound = 3109175.686634, lowerbound=1232974.686634, norm of subgrad 1111.001659 dualbound = 3109175.686634, lowerbound=1232974.686634, norm of subgrad 38.002497 stepsize= 1.000000 +dualbound = 3109288.665387, lowerbound=1229671.665387, norm of subgrad 1109.521818 dualbound = 3109288.665387, lowerbound=1229671.665387, norm of subgrad 38.470492 stepsize= 1.000000 +dualbound = 3109391.666964, lowerbound=1229814.666964, norm of subgrad 1109.575444 dualbound = 3109391.666964, lowerbound=1229814.666964, norm of subgrad 38.026327 stepsize= 1.000000 +dualbound = 3109526.112739, lowerbound=1231471.112739, norm of subgrad 1110.291904 dualbound = 3109526.112739, lowerbound=1231471.112739, norm of subgrad 37.569213 stepsize= 1.000000 +dualbound = 3109629.506134, lowerbound=1228704.506134, norm of subgrad 1109.081830 dualbound = 3109629.506134, lowerbound=1228704.506134, norm of subgrad 38.228175 stepsize= 1.000000 +dualbound = 3109761.774506, lowerbound=1228095.774506, norm of subgrad 1108.786623 dualbound = 3109761.774506, lowerbound=1228095.774506, norm of subgrad 38.003531 stepsize= 1.000000 +dualbound = 3109859.973260, lowerbound=1232309.973260, norm of subgrad 1110.706520 dualbound = 3109859.973260, lowerbound=1232309.973260, norm of subgrad 38.173273 stepsize= 1.000000 +dualbound = 3109953.170257, lowerbound=1233658.170257, norm of subgrad 1111.330810 dualbound = 3109953.170257, lowerbound=1233658.170257, norm of subgrad 38.616020 stepsize= 1.000000 +dualbound = 3110034.372077, lowerbound=1233077.372077, norm of subgrad 1111.094223 dualbound = 3110034.372077, lowerbound=1233077.372077, norm of subgrad 39.168888 stepsize= 1.000000 +dualbound = 3110150.709678, lowerbound=1229547.709678, norm of subgrad 1109.447930 dualbound = 3110150.709678, lowerbound=1229547.709678, norm of subgrad 37.991283 stepsize= 1.000000 +dualbound = 3110311.558304, lowerbound=1226327.558304, norm of subgrad 1107.987165 dualbound = 3110311.558304, lowerbound=1226327.558304, norm of subgrad 38.325561 stepsize= 1.000000 +dualbound = 3110420.848143, lowerbound=1233951.848143, norm of subgrad 1111.410297 dualbound = 3110420.848143, lowerbound=1233951.848143, norm of subgrad 37.286591 stepsize= 1.000000 +dualbound = 3110540.703439, lowerbound=1231506.703439, norm of subgrad 1110.319640 dualbound = 3110540.703439, lowerbound=1231506.703439, norm of subgrad 37.720754 stepsize= 1.000000 +dualbound = 3110623.300826, lowerbound=1230216.300826, norm of subgrad 1109.746503 dualbound = 3110623.300826, lowerbound=1230216.300826, norm of subgrad 37.464615 stepsize= 1.000000 +dualbound = 3110741.369682, lowerbound=1233749.369682, norm of subgrad 1111.343048 dualbound = 3110741.369682, lowerbound=1233749.369682, norm of subgrad 38.106021 stepsize= 1.000000 +dualbound = 3110856.762581, lowerbound=1231355.762581, norm of subgrad 1110.246262 dualbound = 3110856.762581, lowerbound=1231355.762581, norm of subgrad 37.501905 stepsize= 1.000000 +dualbound = 3110982.410716, lowerbound=1224592.410716, norm of subgrad 1107.202064 dualbound = 3110982.410716, lowerbound=1224592.410716, norm of subgrad 37.810688 stepsize= 1.000000 +dualbound = 3111107.336978, lowerbound=1233228.336978, norm of subgrad 1111.096457 dualbound = 3111107.336978, lowerbound=1233228.336978, norm of subgrad 37.840802 stepsize= 1.000000 +dualbound = 3111195.314054, lowerbound=1232810.314054, norm of subgrad 1110.906978 dualbound = 3111195.314054, lowerbound=1232810.314054, norm of subgrad 37.309209 stepsize= 1.000000 +dualbound = 3111303.009096, lowerbound=1230414.009096, norm of subgrad 1109.830171 dualbound = 3111303.009096, lowerbound=1230414.009096, norm of subgrad 37.639010 stepsize= 1.000000 +dualbound = 3111410.874910, lowerbound=1230728.874910, norm of subgrad 1109.983727 dualbound = 3111410.874910, lowerbound=1230728.874910, norm of subgrad 37.985074 stepsize= 1.000000 +dualbound = 3111536.259875, lowerbound=1231356.259875, norm of subgrad 1110.283865 dualbound = 3111536.259875, lowerbound=1231356.259875, norm of subgrad 38.721893 stepsize= 1.000000 +dualbound = 3111605.883672, lowerbound=1232719.883672, norm of subgrad 1110.941890 dualbound = 3111605.883672, lowerbound=1232719.883672, norm of subgrad 39.263517 stepsize= 1.000000 +dualbound = 3111735.409118, lowerbound=1232329.409118, norm of subgrad 1110.722472 dualbound = 3111735.409118, lowerbound=1232329.409118, norm of subgrad 38.788213 stepsize= 1.000000 +dualbound = 3111845.589731, lowerbound=1229183.589731, norm of subgrad 1109.330694 dualbound = 3111845.589731, lowerbound=1229183.589731, norm of subgrad 39.257873 stepsize= 1.000000 +dualbound = 3111956.764505, lowerbound=1227753.764505, norm of subgrad 1108.683798 dualbound = 3111956.764505, lowerbound=1227753.764505, norm of subgrad 39.206821 stepsize= 1.000000 +dualbound = 3112048.735124, lowerbound=1227910.735124, norm of subgrad 1108.753235 dualbound = 3112048.735124, lowerbound=1227910.735124, norm of subgrad 38.922623 stepsize= 1.000000 +dualbound = 3112189.175809, lowerbound=1226683.175809, norm of subgrad 1108.153498 dualbound = 3112189.175809, lowerbound=1226683.175809, norm of subgrad 38.228794 stepsize= 1.000000 +dualbound = 3112328.056224, lowerbound=1233530.056224, norm of subgrad 1111.238524 dualbound = 3112328.056224, lowerbound=1233530.056224, norm of subgrad 38.208381 stepsize= 1.000000 +dualbound = 3112454.088563, lowerbound=1230292.088563, norm of subgrad 1109.783352 dualbound = 3112454.088563, lowerbound=1230292.088563, norm of subgrad 38.118661 stepsize= 1.000000 +dualbound = 3112529.341848, lowerbound=1231560.341848, norm of subgrad 1110.373064 dualbound = 3112529.341848, lowerbound=1231560.341848, norm of subgrad 37.990174 stepsize= 1.000000 +dualbound = 3112650.551060, lowerbound=1232410.551060, norm of subgrad 1110.755397 dualbound = 3112650.551060, lowerbound=1232410.551060, norm of subgrad 38.577315 stepsize= 1.000000 +dualbound = 3112751.734495, lowerbound=1235905.734495, norm of subgrad 1112.285366 dualbound = 3112751.734495, lowerbound=1235905.734495, norm of subgrad 37.069980 stepsize= 1.000000 +dualbound = 3112888.832646, lowerbound=1230537.832646, norm of subgrad 1109.897668 dualbound = 3112888.832646, lowerbound=1230537.832646, norm of subgrad 38.367931 stepsize= 1.000000 +dualbound = 3112985.522558, lowerbound=1228959.522558, norm of subgrad 1109.206258 dualbound = 3112985.522558, lowerbound=1228959.522558, norm of subgrad 38.414710 stepsize= 1.000000 +dualbound = 3113113.090230, lowerbound=1233945.090230, norm of subgrad 1111.437848 dualbound = 3113113.090230, lowerbound=1233945.090230, norm of subgrad 38.426133 stepsize= 1.000000 +dualbound = 3113198.578702, lowerbound=1229373.578702, norm of subgrad 1109.396042 dualbound = 3113198.578702, lowerbound=1229373.578702, norm of subgrad 38.359985 stepsize= 1.000000 +dualbound = 3113335.111999, lowerbound=1230411.111999, norm of subgrad 1109.830218 dualbound = 3113335.111999, lowerbound=1230411.111999, norm of subgrad 38.059602 stepsize= 1.000000 +dualbound = 3113427.456877, lowerbound=1233942.456877, norm of subgrad 1111.463655 dualbound = 3113427.456877, lowerbound=1233942.456877, norm of subgrad 38.747192 stepsize= 1.000000 +dualbound = 3113524.904595, lowerbound=1229265.904595, norm of subgrad 1109.320920 dualbound = 3113524.904595, lowerbound=1229265.904595, norm of subgrad 37.741856 stepsize= 1.000000 +dualbound = 3113696.594451, lowerbound=1231494.594451, norm of subgrad 1110.306081 dualbound = 3113696.594451, lowerbound=1231494.594451, norm of subgrad 38.166607 stepsize= 1.000000 +dualbound = 3113785.159997, lowerbound=1229202.159997, norm of subgrad 1109.284526 dualbound = 3113785.159997, lowerbound=1229202.159997, norm of subgrad 37.397400 stepsize= 1.000000 +dualbound = 3113896.290648, lowerbound=1234247.290648, norm of subgrad 1111.545901 dualbound = 3113896.290648, lowerbound=1234247.290648, norm of subgrad 37.391585 stepsize= 1.000000 +dualbound = 3114005.905865, lowerbound=1229387.905865, norm of subgrad 1109.358781 dualbound = 3114005.905865, lowerbound=1229387.905865, norm of subgrad 37.398064 stepsize= 1.000000 +dualbound = 3114098.263378, lowerbound=1234336.263378, norm of subgrad 1111.642597 dualbound = 3114098.263378, lowerbound=1234336.263378, norm of subgrad 38.798937 stepsize= 1.000000 +dualbound = 3114203.146958, lowerbound=1231793.146958, norm of subgrad 1110.493650 dualbound = 3114203.146958, lowerbound=1231793.146958, norm of subgrad 38.831477 stepsize= 1.000000 +dualbound = 3114317.219211, lowerbound=1229448.219211, norm of subgrad 1109.424274 dualbound = 3114317.219211, lowerbound=1229448.219211, norm of subgrad 38.575540 stepsize= 1.000000 +dualbound = 3114437.229366, lowerbound=1230509.229366, norm of subgrad 1109.910010 dualbound = 3114437.229366, lowerbound=1230509.229366, norm of subgrad 38.871714 stepsize= 1.000000 +dualbound = 3114541.226101, lowerbound=1231310.226101, norm of subgrad 1110.274392 dualbound = 3114541.226101, lowerbound=1231310.226101, norm of subgrad 38.768502 stepsize= 1.000000 +dualbound = 3114670.049920, lowerbound=1233378.049920, norm of subgrad 1111.185426 dualbound = 3114670.049920, lowerbound=1233378.049920, norm of subgrad 38.520434 stepsize= 1.000000 +dualbound = 3114766.255317, lowerbound=1234223.255317, norm of subgrad 1111.597614 dualbound = 3114766.255317, lowerbound=1234223.255317, norm of subgrad 39.015451 stepsize= 1.000000 +dualbound = 3114888.386326, lowerbound=1233904.386326, norm of subgrad 1111.424935 dualbound = 3114888.386326, lowerbound=1233904.386326, norm of subgrad 38.511440 stepsize= 1.000000 +dualbound = 3115009.258642, lowerbound=1228490.258642, norm of subgrad 1108.959990 dualbound = 3115009.258642, lowerbound=1228490.258642, norm of subgrad 37.720980 stepsize= 1.000000 +dualbound = 3115127.114573, lowerbound=1229531.114573, norm of subgrad 1109.486419 dualbound = 3115127.114573, lowerbound=1229531.114573, norm of subgrad 39.330089 stepsize= 1.000000 +dualbound = 3115189.127917, lowerbound=1235580.127917, norm of subgrad 1112.190239 dualbound = 3115189.127917, lowerbound=1235580.127917, norm of subgrad 38.065908 stepsize= 1.000000 +dualbound = 3115352.864691, lowerbound=1229873.864691, norm of subgrad 1109.588602 dualbound = 3115352.864691, lowerbound=1229873.864691, norm of subgrad 38.428333 stepsize= 1.000000 +dualbound = 3115440.213131, lowerbound=1228033.213131, norm of subgrad 1108.761116 dualbound = 3115440.213131, lowerbound=1228033.213131, norm of subgrad 37.487977 stepsize= 1.000000 +dualbound = 3115562.310163, lowerbound=1232335.310163, norm of subgrad 1110.733231 dualbound = 3115562.310163, lowerbound=1232335.310163, norm of subgrad 38.924247 stepsize= 1.000000 +dualbound = 3115645.935781, lowerbound=1229221.935781, norm of subgrad 1109.302905 dualbound = 3115645.935781, lowerbound=1229221.935781, norm of subgrad 37.611509 stepsize= 1.000000 +dualbound = 3115783.438501, lowerbound=1233528.438501, norm of subgrad 1111.283689 dualbound = 3115783.438501, lowerbound=1233528.438501, norm of subgrad 39.503199 stepsize= 1.000000 +dualbound = 3115848.120569, lowerbound=1230054.120569, norm of subgrad 1109.706772 dualbound = 3115848.120569, lowerbound=1230054.120569, norm of subgrad 38.205786 stepsize= 1.000000 +dualbound = 3116011.981836, lowerbound=1231012.981836, norm of subgrad 1110.105843 dualbound = 3116011.981836, lowerbound=1231012.981836, norm of subgrad 38.546871 stepsize= 1.000000 +dualbound = 3116101.272599, lowerbound=1232379.272599, norm of subgrad 1110.757072 dualbound = 3116101.272599, lowerbound=1232379.272599, norm of subgrad 38.617234 stepsize= 1.000000 +dualbound = 3116211.957663, lowerbound=1230529.957663, norm of subgrad 1109.913942 dualbound = 3116211.957663, lowerbound=1230529.957663, norm of subgrad 38.596438 stepsize= 1.000000 +dualbound = 3116321.992229, lowerbound=1230163.992229, norm of subgrad 1109.755825 dualbound = 3116321.992229, lowerbound=1230163.992229, norm of subgrad 38.781885 stepsize= 1.000000 +dualbound = 3116431.688629, lowerbound=1234999.688629, norm of subgrad 1111.928815 dualbound = 3116431.688629, lowerbound=1234999.688629, norm of subgrad 38.674234 stepsize= 1.000000 +dualbound = 3116523.829232, lowerbound=1230475.829232, norm of subgrad 1109.892260 dualbound = 3116523.829232, lowerbound=1230475.829232, norm of subgrad 38.433587 stepsize= 1.000000 +dualbound = 3116666.141781, lowerbound=1235397.141781, norm of subgrad 1112.085492 dualbound = 3116666.141781, lowerbound=1235397.141781, norm of subgrad 38.461832 stepsize= 1.000000 +dualbound = 3116769.485323, lowerbound=1233493.485323, norm of subgrad 1111.213069 dualbound = 3116769.485323, lowerbound=1233493.485323, norm of subgrad 37.474572 stepsize= 1.000000 +dualbound = 3116915.626896, lowerbound=1232284.626896, norm of subgrad 1110.657745 dualbound = 3116915.626896, lowerbound=1232284.626896, norm of subgrad 37.711292 stepsize= 1.000000 +dualbound = 3117015.695277, lowerbound=1227511.695277, norm of subgrad 1108.511477 dualbound = 3117015.695277, lowerbound=1227511.695277, norm of subgrad 37.229939 stepsize= 1.000000 +dualbound = 3117115.148136, lowerbound=1229594.148136, norm of subgrad 1109.480125 dualbound = 3117115.148136, lowerbound=1229594.148136, norm of subgrad 38.097938 stepsize= 1.000000 +dualbound = 3117217.904062, lowerbound=1231805.904062, norm of subgrad 1110.466525 dualbound = 3117217.904062, lowerbound=1231805.904062, norm of subgrad 37.851763 stepsize= 1.000000 +dualbound = 3117326.580935, lowerbound=1236300.580935, norm of subgrad 1112.530261 dualbound = 3117326.580935, lowerbound=1236300.580935, norm of subgrad 39.136644 stepsize= 1.000000 +dualbound = 3117421.804325, lowerbound=1227910.804325, norm of subgrad 1108.731620 dualbound = 3117421.804325, lowerbound=1227910.804325, norm of subgrad 38.343492 stepsize= 1.000000 +dualbound = 3117573.944478, lowerbound=1230095.944478, norm of subgrad 1109.700836 dualbound = 3117573.944478, lowerbound=1230095.944478, norm of subgrad 38.628230 stepsize= 1.000000 +dualbound = 3117650.454321, lowerbound=1230694.454321, norm of subgrad 1110.003358 dualbound = 3117650.454321, lowerbound=1230694.454321, norm of subgrad 38.594169 stepsize= 1.000000 +dualbound = 3117767.694793, lowerbound=1234430.694793, norm of subgrad 1111.670677 dualbound = 3117767.694793, lowerbound=1234430.694793, norm of subgrad 38.707111 stepsize= 1.000000 +dualbound = 3117884.436096, lowerbound=1233011.436096, norm of subgrad 1111.022698 dualbound = 3117884.436096, lowerbound=1233011.436096, norm of subgrad 38.428392 stepsize= 1.000000 +dualbound = 3118001.262051, lowerbound=1231712.262051, norm of subgrad 1110.427513 dualbound = 3118001.262051, lowerbound=1231712.262051, norm of subgrad 38.129070 stepsize= 1.000000 +dualbound = 3118101.306255, lowerbound=1228802.306255, norm of subgrad 1109.092560 dualbound = 3118101.306255, lowerbound=1228802.306255, norm of subgrad 37.202745 stepsize= 1.000000 +dualbound = 3118270.154001, lowerbound=1239114.154001, norm of subgrad 1113.756775 dualbound = 3118270.154001, lowerbound=1239114.154001, norm of subgrad 38.843889 stepsize= 1.000000 +dualbound = 3118333.048471, lowerbound=1231230.048471, norm of subgrad 1110.215767 dualbound = 3118333.048471, lowerbound=1231230.048471, norm of subgrad 37.575184 stepsize= 1.000000 +dualbound = 3118490.109170, lowerbound=1232450.109170, norm of subgrad 1110.736742 dualbound = 3118490.109170, lowerbound=1232450.109170, norm of subgrad 37.987639 stepsize= 1.000000 +dualbound = 3118576.848147, lowerbound=1224975.848147, norm of subgrad 1107.397331 dualbound = 3118576.848147, lowerbound=1224975.848147, norm of subgrad 37.943892 stepsize= 1.000000 +dualbound = 3118668.726133, lowerbound=1232358.726133, norm of subgrad 1110.703257 dualbound = 3118668.726133, lowerbound=1232358.726133, norm of subgrad 37.348065 stepsize= 1.000000 +dualbound = 3118785.284239, lowerbound=1227118.284239, norm of subgrad 1108.365591 dualbound = 3118785.284239, lowerbound=1227118.284239, norm of subgrad 38.373925 stepsize= 1.000000 +dualbound = 3118898.951527, lowerbound=1233365.951527, norm of subgrad 1111.169182 dualbound = 3118898.951527, lowerbound=1233365.951527, norm of subgrad 38.008779 stepsize= 1.000000 +dualbound = 3119015.654700, lowerbound=1231061.654700, norm of subgrad 1110.142178 dualbound = 3119015.654700, lowerbound=1231061.654700, norm of subgrad 38.349748 stepsize= 1.000000 +dualbound = 3119104.343116, lowerbound=1234036.343116, norm of subgrad 1111.483398 dualbound = 3119104.343116, lowerbound=1234036.343116, norm of subgrad 38.048501 stepsize= 1.000000 +dualbound = 3119208.685124, lowerbound=1229316.685124, norm of subgrad 1109.344259 dualbound = 3119208.685124, lowerbound=1229316.685124, norm of subgrad 37.846295 stepsize= 1.000000 +dualbound = 3119371.702136, lowerbound=1234720.702136, norm of subgrad 1111.763330 dualbound = 3119371.702136, lowerbound=1234720.702136, norm of subgrad 38.210169 stepsize= 1.000000 +dualbound = 3119445.158541, lowerbound=1227461.158541, norm of subgrad 1108.521609 dualbound = 3119445.158541, lowerbound=1227461.158541, norm of subgrad 37.847806 stepsize= 1.000000 +dualbound = 3119577.383372, lowerbound=1237082.383372, norm of subgrad 1112.826754 dualbound = 3119577.383372, lowerbound=1237082.383372, norm of subgrad 37.857956 stepsize= 1.000000 +dualbound = 3119670.970548, lowerbound=1228550.970548, norm of subgrad 1108.998183 dualbound = 3119670.970548, lowerbound=1228550.970548, norm of subgrad 37.677409 stepsize= 1.000000 +dualbound = 3119804.950671, lowerbound=1233838.950671, norm of subgrad 1111.381550 dualbound = 3119804.950671, lowerbound=1233838.950671, norm of subgrad 38.261993 stepsize= 1.000000 +dualbound = 3119925.536018, lowerbound=1229942.536018, norm of subgrad 1109.602422 dualbound = 3119925.536018, lowerbound=1229942.536018, norm of subgrad 37.357534 stepsize= 1.000000 +dualbound = 3120055.383630, lowerbound=1237270.383630, norm of subgrad 1112.892800 dualbound = 3120055.383630, lowerbound=1237270.383630, norm of subgrad 37.280660 stepsize= 1.000000 +dualbound = 3120150.725979, lowerbound=1231164.725979, norm of subgrad 1110.170584 dualbound = 3120150.725979, lowerbound=1231164.725979, norm of subgrad 37.541209 stepsize= 1.000000 +dualbound = 3120251.318005, lowerbound=1230527.318005, norm of subgrad 1109.862747 dualbound = 3120251.318005, lowerbound=1230527.318005, norm of subgrad 36.994486 stepsize= 1.000000 +dualbound = 3120345.839300, lowerbound=1230575.839300, norm of subgrad 1109.936412 dualbound = 3120345.839300, lowerbound=1230575.839300, norm of subgrad 38.438539 stepsize= 1.000000 +dualbound = 3120446.810457, lowerbound=1235658.810457, norm of subgrad 1112.231455 dualbound = 3120446.810457, lowerbound=1235658.810457, norm of subgrad 38.742369 stepsize= 1.000000 +dualbound = 3120546.163578, lowerbound=1231460.163578, norm of subgrad 1110.314894 dualbound = 3120546.163578, lowerbound=1231460.163578, norm of subgrad 37.925626 stepsize= 1.000000 +dualbound = 3120689.738402, lowerbound=1228645.738402, norm of subgrad 1109.024679 dualbound = 3120689.738402, lowerbound=1228645.738402, norm of subgrad 37.862578 stepsize= 1.000000 +dualbound = 3120785.476665, lowerbound=1229637.476665, norm of subgrad 1109.503257 dualbound = 3120785.476665, lowerbound=1229637.476665, norm of subgrad 38.154138 stepsize= 1.000000 +dualbound = 3120904.401568, lowerbound=1236243.401568, norm of subgrad 1112.462764 dualbound = 3120904.401568, lowerbound=1236243.401568, norm of subgrad 38.064746 stepsize= 1.000000 +dualbound = 3120994.387994, lowerbound=1231878.387994, norm of subgrad 1110.518072 dualbound = 3120994.387994, lowerbound=1231878.387994, norm of subgrad 38.235931 stepsize= 1.000000 +dualbound = 3121110.087598, lowerbound=1231487.087598, norm of subgrad 1110.305403 dualbound = 3121110.087598, lowerbound=1231487.087598, norm of subgrad 37.505994 stepsize= 1.000000 +dualbound = 3121243.559957, lowerbound=1228985.559957, norm of subgrad 1109.176974 dualbound = 3121243.559957, lowerbound=1228985.559957, norm of subgrad 37.702418 stepsize= 1.000000 +dualbound = 3121348.416349, lowerbound=1234780.416349, norm of subgrad 1111.828411 dualbound = 3121348.416349, lowerbound=1234780.416349, norm of subgrad 38.559777 stepsize= 1.000000 +dualbound = 3121436.946803, lowerbound=1233004.946803, norm of subgrad 1111.035529 dualbound = 3121436.946803, lowerbound=1233004.946803, norm of subgrad 38.516626 stepsize= 1.000000 +dualbound = 3121554.571022, lowerbound=1234848.571022, norm of subgrad 1111.852315 dualbound = 3121554.571022, lowerbound=1234848.571022, norm of subgrad 38.530822 stepsize= 1.000000 +dualbound = 3121674.892001, lowerbound=1230807.892001, norm of subgrad 1110.042743 dualbound = 3121674.892001, lowerbound=1230807.892001, norm of subgrad 38.824232 stepsize= 1.000000 +dualbound = 3121785.208407, lowerbound=1233803.208407, norm of subgrad 1111.378967 dualbound = 3121785.208407, lowerbound=1233803.208407, norm of subgrad 38.344705 stepsize= 1.000000 +dualbound = 3121903.744262, lowerbound=1229853.744262, norm of subgrad 1109.609726 dualbound = 3121903.744262, lowerbound=1229853.744262, norm of subgrad 38.710927 stepsize= 1.000000 +dualbound = 3121994.972325, lowerbound=1234778.972325, norm of subgrad 1111.872282 dualbound = 3121994.972325, lowerbound=1234778.972325, norm of subgrad 39.651331 stepsize= 1.000000 +dualbound = 3122086.960810, lowerbound=1228975.960810, norm of subgrad 1109.211414 dualbound = 3122086.960810, lowerbound=1228975.960810, norm of subgrad 38.288229 stepsize= 1.000000 +dualbound = 3122211.603150, lowerbound=1233755.603150, norm of subgrad 1111.375995 dualbound = 3122211.603150, lowerbound=1233755.603150, norm of subgrad 39.059472 stepsize= 1.000000 +dualbound = 3122335.496565, lowerbound=1231823.496565, norm of subgrad 1110.500561 dualbound = 3122335.496565, lowerbound=1231823.496565, norm of subgrad 38.883074 stepsize= 1.000000 +dualbound = 3122456.913458, lowerbound=1228333.913458, norm of subgrad 1108.894906 dualbound = 3122456.913458, lowerbound=1228333.913458, norm of subgrad 37.886896 stepsize= 1.000000 +dualbound = 3122566.179872, lowerbound=1230672.179872, norm of subgrad 1109.931160 dualbound = 3122566.179872, lowerbound=1230672.179872, norm of subgrad 37.205731 stepsize= 1.000000 +dualbound = 3122698.702422, lowerbound=1238857.702422, norm of subgrad 1113.627273 dualbound = 3122698.702422, lowerbound=1238857.702422, norm of subgrad 37.954217 stepsize= 1.000000 +dualbound = 3122759.801554, lowerbound=1228662.801554, norm of subgrad 1109.058070 dualbound = 3122759.801554, lowerbound=1228662.801554, norm of subgrad 37.524647 stepsize= 1.000000 +dualbound = 3122912.159939, lowerbound=1233458.159939, norm of subgrad 1111.185925 dualbound = 3122912.159939, lowerbound=1233458.159939, norm of subgrad 37.793629 stepsize= 1.000000 +dualbound = 3123015.035394, lowerbound=1230946.035394, norm of subgrad 1110.075239 dualbound = 3123015.035394, lowerbound=1230946.035394, norm of subgrad 37.734274 stepsize= 1.000000 +dualbound = 3123115.545768, lowerbound=1233386.545768, norm of subgrad 1111.162700 dualbound = 3123115.545768, lowerbound=1233386.545768, norm of subgrad 37.369913 stepsize= 1.000000 +dualbound = 3123229.184225, lowerbound=1230486.184225, norm of subgrad 1109.859984 dualbound = 3123229.184225, lowerbound=1230486.184225, norm of subgrad 37.638258 stepsize= 1.000000 +dualbound = 3123347.154845, lowerbound=1239176.154845, norm of subgrad 1113.769794 dualbound = 3123347.154845, lowerbound=1239176.154845, norm of subgrad 37.748783 stepsize= 1.000000 +dualbound = 3123444.103919, lowerbound=1233879.103919, norm of subgrad 1111.407263 dualbound = 3123444.103919, lowerbound=1233879.103919, norm of subgrad 37.999330 stepsize= 1.000000 +dualbound = 3123558.701086, lowerbound=1233437.701086, norm of subgrad 1111.214966 dualbound = 3123558.701086, lowerbound=1233437.701086, norm of subgrad 38.413502 stepsize= 1.000000 +dualbound = 3123643.787280, lowerbound=1231510.787280, norm of subgrad 1110.346697 dualbound = 3123643.787280, lowerbound=1231510.787280, norm of subgrad 38.001134 stepsize= 1.000000 +dualbound = 3123784.113255, lowerbound=1232827.113255, norm of subgrad 1110.924441 dualbound = 3123784.113255, lowerbound=1232827.113255, norm of subgrad 38.292636 stepsize= 1.000000 +dualbound = 3123860.247128, lowerbound=1230069.247128, norm of subgrad 1109.739270 dualbound = 3123860.247128, lowerbound=1230069.247128, norm of subgrad 39.091353 stepsize= 1.000000 +dualbound = 3123988.033528, lowerbound=1238480.033528, norm of subgrad 1113.488677 dualbound = 3123988.033528, lowerbound=1238480.033528, norm of subgrad 38.791576 stepsize= 1.000000 +dualbound = 3124069.970133, lowerbound=1229776.970133, norm of subgrad 1109.592705 dualbound = 3124069.970133, lowerbound=1229776.970133, norm of subgrad 38.741923 stepsize= 1.000000 +dualbound = 3124213.281187, lowerbound=1232974.281187, norm of subgrad 1111.002377 dualbound = 3124213.281187, lowerbound=1232974.281187, norm of subgrad 38.669252 stepsize= 1.000000 +dualbound = 3124327.971463, lowerbound=1234391.971463, norm of subgrad 1111.622675 dualbound = 3124327.971463, lowerbound=1234391.971463, norm of subgrad 37.784789 stepsize= 1.000000 +dualbound = 3124458.529280, lowerbound=1234119.529280, norm of subgrad 1111.493378 dualbound = 3124458.529280, lowerbound=1234119.529280, norm of subgrad 37.796267 stepsize= 1.000000 +dualbound = 3124548.393774, lowerbound=1227604.393774, norm of subgrad 1108.606961 dualbound = 3124548.393774, lowerbound=1227604.393774, norm of subgrad 38.663478 stepsize= 1.000000 +dualbound = 3124666.424904, lowerbound=1233126.424904, norm of subgrad 1111.050145 dualbound = 3124666.424904, lowerbound=1233126.424904, norm of subgrad 37.736337 stepsize= 1.000000 +dualbound = 3124773.997042, lowerbound=1228578.997042, norm of subgrad 1109.032911 dualbound = 3124773.997042, lowerbound=1228578.997042, norm of subgrad 38.504183 stepsize= 1.000000 +dualbound = 3124871.939236, lowerbound=1235445.939236, norm of subgrad 1112.131260 dualbound = 3124871.939236, lowerbound=1235445.939236, norm of subgrad 38.573854 stepsize= 1.000000 +dualbound = 3124984.704333, lowerbound=1235212.704333, norm of subgrad 1112.005263 dualbound = 3124984.704333, lowerbound=1235212.704333, norm of subgrad 38.154490 stepsize= 1.000000 +dualbound = 3125119.466888, lowerbound=1230736.466888, norm of subgrad 1109.970931 dualbound = 3125119.466888, lowerbound=1230736.466888, norm of subgrad 37.865057 stepsize= 1.000000 +dualbound = 3125231.924062, lowerbound=1225959.924062, norm of subgrad 1107.831632 dualbound = 3125231.924062, lowerbound=1225959.924062, norm of subgrad 37.992857 stepsize= 1.000000 +dualbound = 3125332.821883, lowerbound=1238072.821883, norm of subgrad 1113.313443 dualbound = 3125332.821883, lowerbound=1238072.821883, norm of subgrad 38.663909 stepsize= 1.000000 +dualbound = 3125409.455023, lowerbound=1232278.455023, norm of subgrad 1110.711238 dualbound = 3125409.455023, lowerbound=1232278.455023, norm of subgrad 38.439994 stepsize= 1.000000 +dualbound = 3125542.245628, lowerbound=1233891.245628, norm of subgrad 1111.420373 dualbound = 3125542.245628, lowerbound=1233891.245628, norm of subgrad 38.688378 stepsize= 1.000000 +dualbound = 3125656.265940, lowerbound=1225450.265940, norm of subgrad 1107.622348 dualbound = 3125656.265940, lowerbound=1225450.265940, norm of subgrad 38.613732 stepsize= 1.000000 +dualbound = 3125743.422453, lowerbound=1238063.422453, norm of subgrad 1113.279580 dualbound = 3125743.422453, lowerbound=1238063.422453, norm of subgrad 37.618566 stepsize= 1.000000 +dualbound = 3125875.544043, lowerbound=1230723.544043, norm of subgrad 1109.989434 dualbound = 3125875.544043, lowerbound=1230723.544043, norm of subgrad 38.537275 stepsize= 1.000000 +dualbound = 3125980.774340, lowerbound=1235043.774340, norm of subgrad 1111.937846 dualbound = 3125980.774340, lowerbound=1235043.774340, norm of subgrad 38.304442 stepsize= 1.000000 +dualbound = 3126083.610441, lowerbound=1230212.610441, norm of subgrad 1109.737181 dualbound = 3126083.610441, lowerbound=1230212.610441, norm of subgrad 37.507814 stepsize= 1.000000 +dualbound = 3126215.057845, lowerbound=1234809.057845, norm of subgrad 1111.845789 dualbound = 3126215.057845, lowerbound=1234809.057845, norm of subgrad 39.031364 stepsize= 1.000000 +dualbound = 3126291.705550, lowerbound=1230312.705550, norm of subgrad 1109.817420 dualbound = 3126291.705550, lowerbound=1230312.705550, norm of subgrad 38.192247 stepsize= 1.000000 +dualbound = 3126426.083841, lowerbound=1234471.083841, norm of subgrad 1111.701886 dualbound = 3126426.083841, lowerbound=1234471.083841, norm of subgrad 39.298579 stepsize= 1.000000 +dualbound = 3126501.010822, lowerbound=1230680.010822, norm of subgrad 1110.026131 dualbound = 3126501.010822, lowerbound=1230680.010822, norm of subgrad 39.407195 stepsize= 1.000000 +dualbound = 3126625.611137, lowerbound=1234770.611137, norm of subgrad 1111.821304 dualbound = 3126625.611137, lowerbound=1234770.611137, norm of subgrad 38.737583 stepsize= 1.000000 +dualbound = 3126737.608074, lowerbound=1228955.608074, norm of subgrad 1109.204944 dualbound = 3126737.608074, lowerbound=1228955.608074, norm of subgrad 38.626376 stepsize= 1.000000 +dualbound = 3126859.567204, lowerbound=1232472.567204, norm of subgrad 1110.796366 dualbound = 3126859.567204, lowerbound=1232472.567204, norm of subgrad 38.960995 stepsize= 1.000000 +dualbound = 3126961.261252, lowerbound=1230800.261252, norm of subgrad 1110.016334 dualbound = 3126961.261252, lowerbound=1230800.261252, norm of subgrad 37.916936 stepsize= 1.000000 +dualbound = 3127115.027283, lowerbound=1232344.027283, norm of subgrad 1110.699792 dualbound = 3127115.027283, lowerbound=1232344.027283, norm of subgrad 38.259195 stepsize= 1.000000 +dualbound = 3127190.417603, lowerbound=1232547.417603, norm of subgrad 1110.812953 dualbound = 3127190.417603, lowerbound=1232547.417603, norm of subgrad 37.860142 stepsize= 1.000000 +dualbound = 3127299.437553, lowerbound=1232805.437553, norm of subgrad 1110.916935 dualbound = 3127299.437553, lowerbound=1232805.437553, norm of subgrad 37.947595 stepsize= 1.000000 +dualbound = 3127417.026891, lowerbound=1233776.026891, norm of subgrad 1111.370337 dualbound = 3127417.026891, lowerbound=1233776.026891, norm of subgrad 38.543344 stepsize= 1.000000 +dualbound = 3127532.874218, lowerbound=1234728.874218, norm of subgrad 1111.778698 dualbound = 3127532.874218, lowerbound=1234728.874218, norm of subgrad 37.932141 stepsize= 1.000000 +dualbound = 3127652.680576, lowerbound=1231051.680576, norm of subgrad 1110.126425 dualbound = 3127652.680576, lowerbound=1231051.680576, norm of subgrad 38.063189 stepsize= 1.000000 +dualbound = 3127779.362467, lowerbound=1234850.362467, norm of subgrad 1111.842328 dualbound = 3127779.362467, lowerbound=1234850.362467, norm of subgrad 38.336430 stepsize= 1.000000 +dualbound = 3127844.104858, lowerbound=1232665.104858, norm of subgrad 1110.909584 dualbound = 3127844.104858, lowerbound=1232665.104858, norm of subgrad 38.983873 stepsize= 1.000000 +dualbound = 3127952.477004, lowerbound=1236011.477004, norm of subgrad 1112.380995 dualbound = 3127952.477004, lowerbound=1236011.477004, norm of subgrad 38.579426 stepsize= 1.000000 +dualbound = 3128059.304690, lowerbound=1231323.304690, norm of subgrad 1110.269024 dualbound = 3128059.304690, lowerbound=1231323.304690, norm of subgrad 38.481524 stepsize= 1.000000 +dualbound = 3128182.378682, lowerbound=1235331.378682, norm of subgrad 1112.074808 dualbound = 3128182.378682, lowerbound=1235331.378682, norm of subgrad 38.756599 stepsize= 1.000000 +dualbound = 3128289.195284, lowerbound=1231979.195284, norm of subgrad 1110.547250 dualbound = 3128289.195284, lowerbound=1231979.195284, norm of subgrad 37.984426 stepsize= 1.000000 +dualbound = 3128429.108092, lowerbound=1234299.108092, norm of subgrad 1111.592150 dualbound = 3128429.108092, lowerbound=1234299.108092, norm of subgrad 38.443632 stepsize= 1.000000 +dualbound = 3128520.282035, lowerbound=1228594.282035, norm of subgrad 1109.005537 dualbound = 3128520.282035, lowerbound=1228594.282035, norm of subgrad 37.285036 stepsize= 1.000000 +dualbound = 3128648.866169, lowerbound=1234419.866169, norm of subgrad 1111.645117 dualbound = 3128648.866169, lowerbound=1234419.866169, norm of subgrad 38.256818 stepsize= 1.000000 +dualbound = 3128720.840198, lowerbound=1235155.840198, norm of subgrad 1112.001727 dualbound = 3128720.840198, lowerbound=1235155.840198, norm of subgrad 38.261914 stepsize= 1.000000 +dualbound = 3128847.442950, lowerbound=1235434.442950, norm of subgrad 1112.099116 dualbound = 3128847.442950, lowerbound=1235434.442950, norm of subgrad 38.165465 stepsize= 1.000000 +dualbound = 3128954.278343, lowerbound=1232759.278343, norm of subgrad 1110.894360 dualbound = 3128954.278343, lowerbound=1232759.278343, norm of subgrad 37.866019 stepsize= 1.000000 +dualbound = 3129080.079613, lowerbound=1235113.079613, norm of subgrad 1111.943380 dualbound = 3129080.079613, lowerbound=1235113.079613, norm of subgrad 37.825934 stepsize= 1.000000 +dualbound = 3129180.826751, lowerbound=1232348.826751, norm of subgrad 1110.722660 dualbound = 3129180.826751, lowerbound=1232348.826751, norm of subgrad 38.167357 stepsize= 1.000000 +dualbound = 3129295.138534, lowerbound=1235420.138534, norm of subgrad 1112.094033 dualbound = 3129295.138534, lowerbound=1235420.138534, norm of subgrad 38.043551 stepsize= 1.000000 +dualbound = 3129397.884119, lowerbound=1232130.884119, norm of subgrad 1110.621395 dualbound = 3129397.884119, lowerbound=1232130.884119, norm of subgrad 38.101779 stepsize= 1.000000 +dualbound = 3129496.803506, lowerbound=1235540.803506, norm of subgrad 1112.155027 dualbound = 3129496.803506, lowerbound=1235540.803506, norm of subgrad 38.038394 stepsize= 1.000000 +dualbound = 3129591.413470, lowerbound=1226503.413470, norm of subgrad 1108.107582 dualbound = 3129591.413470, lowerbound=1226503.413470, norm of subgrad 38.647250 stepsize= 1.000000 +dualbound = 3129714.876637, lowerbound=1232235.876637, norm of subgrad 1110.684418 dualbound = 3129714.876637, lowerbound=1232235.876637, norm of subgrad 38.826063 stepsize= 1.000000 +dualbound = 3129819.617564, lowerbound=1231959.617564, norm of subgrad 1110.537986 dualbound = 3129819.617564, lowerbound=1231959.617564, norm of subgrad 37.943918 stepsize= 1.000000 +dualbound = 3129967.984602, lowerbound=1234367.984602, norm of subgrad 1111.620882 dualbound = 3129967.984602, lowerbound=1234367.984602, norm of subgrad 38.488531 stepsize= 1.000000 +dualbound = 3130050.979306, lowerbound=1227335.979306, norm of subgrad 1108.449358 dualbound = 3130050.979306, lowerbound=1227335.979306, norm of subgrad 37.509928 stepsize= 1.000000 +dualbound = 3130179.142739, lowerbound=1235880.142739, norm of subgrad 1112.322410 dualbound = 3130179.142739, lowerbound=1235880.142739, norm of subgrad 38.847953 stepsize= 1.000000 +dualbound = 3130253.208064, lowerbound=1233105.208064, norm of subgrad 1111.112599 dualbound = 3130253.208064, lowerbound=1233105.208064, norm of subgrad 39.243666 stepsize= 1.000000 +dualbound = 3130373.688470, lowerbound=1239393.688470, norm of subgrad 1113.895277 dualbound = 3130373.688470, lowerbound=1239393.688470, norm of subgrad 38.593787 stepsize= 1.000000 +dualbound = 3130478.874350, lowerbound=1233017.874350, norm of subgrad 1111.041347 dualbound = 3130478.874350, lowerbound=1233017.874350, norm of subgrad 38.732233 stepsize= 1.000000 +dualbound = 3130615.984759, lowerbound=1235061.984759, norm of subgrad 1111.918156 dualbound = 3130615.984759, lowerbound=1235061.984759, norm of subgrad 37.909239 stepsize= 1.000000 +dualbound = 3130696.022122, lowerbound=1229850.022122, norm of subgrad 1109.602642 dualbound = 3130696.022122, lowerbound=1229850.022122, norm of subgrad 38.053086 stepsize= 1.000000 +dualbound = 3130838.286627, lowerbound=1238844.286627, norm of subgrad 1113.632474 dualbound = 3130838.286627, lowerbound=1238844.286627, norm of subgrad 38.409172 stepsize= 1.000000 +dualbound = 3130909.803696, lowerbound=1232755.803696, norm of subgrad 1110.922951 dualbound = 3130909.803696, lowerbound=1232755.803696, norm of subgrad 38.282072 stepsize= 1.000000 +dualbound = 3131029.178309, lowerbound=1232004.178309, norm of subgrad 1110.567503 dualbound = 3131029.178309, lowerbound=1232004.178309, norm of subgrad 38.410605 stepsize= 1.000000 +dualbound = 3131144.391740, lowerbound=1234911.391740, norm of subgrad 1111.875169 dualbound = 3131144.391740, lowerbound=1234911.391740, norm of subgrad 38.343362 stepsize= 1.000000 +dualbound = 3131276.551692, lowerbound=1232885.551692, norm of subgrad 1110.982696 dualbound = 3131276.551692, lowerbound=1232885.551692, norm of subgrad 39.104475 stepsize= 1.000000 +dualbound = 3131335.208951, lowerbound=1233730.208951, norm of subgrad 1111.349274 dualbound = 3131335.208951, lowerbound=1233730.208951, norm of subgrad 37.757877 stepsize= 1.000000 +dualbound = 3131503.303267, lowerbound=1231371.303267, norm of subgrad 1110.271275 dualbound = 3131503.303267, lowerbound=1231371.303267, norm of subgrad 38.718139 stepsize= 1.000000 +dualbound = 3131590.663880, lowerbound=1230166.663880, norm of subgrad 1109.734952 dualbound = 3131590.663880, lowerbound=1230166.663880, norm of subgrad 37.846540 stepsize= 1.000000 +dualbound = 3131710.845525, lowerbound=1232650.845525, norm of subgrad 1110.841503 dualbound = 3131710.845525, lowerbound=1232650.845525, norm of subgrad 37.923365 stepsize= 1.000000 +dualbound = 3131795.256984, lowerbound=1228540.256984, norm of subgrad 1109.026265 dualbound = 3131795.256984, lowerbound=1228540.256984, norm of subgrad 38.515081 stepsize= 1.000000 +dualbound = 3131905.578131, lowerbound=1238391.578131, norm of subgrad 1113.440424 dualbound = 3131905.578131, lowerbound=1238391.578131, norm of subgrad 38.318679 stepsize= 1.000000 +dualbound = 3132030.960338, lowerbound=1230755.960338, norm of subgrad 1109.999532 dualbound = 3132030.960338, lowerbound=1230755.960338, norm of subgrad 38.319476 stepsize= 1.000000 +dualbound = 3132157.842994, lowerbound=1236477.842994, norm of subgrad 1112.564984 dualbound = 3132157.842994, lowerbound=1236477.842994, norm of subgrad 38.077325 stepsize= 1.000000 +dualbound = 3132247.638961, lowerbound=1229462.638961, norm of subgrad 1109.454208 dualbound = 3132247.638961, lowerbound=1229462.638961, norm of subgrad 38.933224 stepsize= 1.000000 +dualbound = 3132351.616962, lowerbound=1234862.616962, norm of subgrad 1111.868525 dualbound = 3132351.616962, lowerbound=1234862.616962, norm of subgrad 38.639074 stepsize= 1.000000 +dualbound = 3132440.348095, lowerbound=1229918.348095, norm of subgrad 1109.650552 dualbound = 3132440.348095, lowerbound=1229918.348095, norm of subgrad 38.661753 stepsize= 1.000000 +dualbound = 3132571.907488, lowerbound=1233852.907488, norm of subgrad 1111.399077 dualbound = 3132571.907488, lowerbound=1233852.907488, norm of subgrad 38.555926 stepsize= 1.000000 +dualbound = 3132685.058943, lowerbound=1235482.058943, norm of subgrad 1112.147499 dualbound = 3132685.058943, lowerbound=1235482.058943, norm of subgrad 38.770497 stepsize= 1.000000 +dualbound = 3132804.350817, lowerbound=1235838.350817, norm of subgrad 1112.293734 dualbound = 3132804.350817, lowerbound=1235838.350817, norm of subgrad 38.448561 stepsize= 1.000000 +dualbound = 3132886.973546, lowerbound=1233306.973546, norm of subgrad 1111.152093 dualbound = 3132886.973546, lowerbound=1233306.973546, norm of subgrad 37.876414 stepsize= 1.000000 +dualbound = 3133033.757043, lowerbound=1230802.757043, norm of subgrad 1110.031872 dualbound = 3133033.757043, lowerbound=1230802.757043, norm of subgrad 38.920220 stepsize= 1.000000 +dualbound = 3133097.841694, lowerbound=1235079.841694, norm of subgrad 1111.988688 dualbound = 3133097.841694, lowerbound=1235079.841694, norm of subgrad 38.769636 stepsize= 1.000000 +dualbound = 3133251.192223, lowerbound=1235137.192223, norm of subgrad 1111.951524 dualbound = 3133251.192223, lowerbound=1235137.192223, norm of subgrad 38.109717 stepsize= 1.000000 +dualbound = 3133363.017173, lowerbound=1235142.017173, norm of subgrad 1111.982022 dualbound = 3133363.017173, lowerbound=1235142.017173, norm of subgrad 38.390428 stepsize= 1.000000 +dualbound = 3133451.249589, lowerbound=1233337.249589, norm of subgrad 1111.155817 dualbound = 3133451.249589, lowerbound=1233337.249589, norm of subgrad 37.659427 stepsize= 1.000000 +dualbound = 3133580.494850, lowerbound=1225964.494850, norm of subgrad 1107.844978 dualbound = 3133580.494850, lowerbound=1225964.494850, norm of subgrad 38.538880 stepsize= 1.000000 +dualbound = 3133708.159357, lowerbound=1237602.159357, norm of subgrad 1113.042748 dualbound = 3133708.159357, lowerbound=1237602.159357, norm of subgrad 37.278204 stepsize= 1.000000 +dualbound = 3133808.400542, lowerbound=1229435.400542, norm of subgrad 1109.400920 dualbound = 3133808.400542, lowerbound=1229435.400542, norm of subgrad 37.884577 stepsize= 1.000000 +dualbound = 3133925.901161, lowerbound=1235558.901161, norm of subgrad 1112.152373 dualbound = 3133925.901161, lowerbound=1235558.901161, norm of subgrad 37.967099 stepsize= 1.000000 +dualbound = 3133999.737440, lowerbound=1231289.737440, norm of subgrad 1110.262463 dualbound = 3133999.737440, lowerbound=1231289.737440, norm of subgrad 38.299299 stepsize= 1.000000 +dualbound = 3134136.327926, lowerbound=1235732.327926, norm of subgrad 1112.231688 dualbound = 3134136.327926, lowerbound=1235732.327926, norm of subgrad 38.256901 stepsize= 1.000000 +dualbound = 3134235.631393, lowerbound=1228211.631393, norm of subgrad 1108.883958 dualbound = 3134235.631393, lowerbound=1228211.631393, norm of subgrad 38.875487 stepsize= 1.000000 +dualbound = 3134336.234913, lowerbound=1239596.234913, norm of subgrad 1113.998310 dualbound = 3134336.234913, lowerbound=1239596.234913, norm of subgrad 38.685960 stepsize= 1.000000 +dualbound = 3134429.034837, lowerbound=1229945.034837, norm of subgrad 1109.637344 dualbound = 3134429.034837, lowerbound=1229945.034837, norm of subgrad 37.984206 stepsize= 1.000000 +dualbound = 3134574.656505, lowerbound=1231009.656505, norm of subgrad 1110.127315 dualbound = 3134574.656505, lowerbound=1231009.656505, norm of subgrad 38.969497 stepsize= 1.000000 +dualbound = 3134656.553520, lowerbound=1228245.553520, norm of subgrad 1108.873552 dualbound = 3134656.553520, lowerbound=1228245.553520, norm of subgrad 37.906424 stepsize= 1.000000 +dualbound = 3134786.111690, lowerbound=1239645.111690, norm of subgrad 1113.971773 dualbound = 3134786.111690, lowerbound=1239645.111690, norm of subgrad 37.650474 stepsize= 1.000000 +dualbound = 3134900.646316, lowerbound=1234024.646317, norm of subgrad 1111.492081 dualbound = 3134900.646316, lowerbound=1234024.646317, norm of subgrad 38.788331 stepsize= 1.000000 +dualbound = 3134993.911511, lowerbound=1233646.911511, norm of subgrad 1111.287502 dualbound = 3134993.911511, lowerbound=1233646.911511, norm of subgrad 37.500203 stepsize= 1.000000 +dualbound = 3135136.690721, lowerbound=1230764.690721, norm of subgrad 1109.981392 dualbound = 3135136.690721, lowerbound=1230764.690721, norm of subgrad 37.904871 stepsize= 1.000000 +dualbound = 3135241.910345, lowerbound=1236777.910345, norm of subgrad 1112.704323 dualbound = 3135241.910345, lowerbound=1236777.910345, norm of subgrad 37.923866 stepsize= 1.000000 +dualbound = 3135325.754121, lowerbound=1232841.754121, norm of subgrad 1110.960285 dualbound = 3135325.754121, lowerbound=1232841.754121, norm of subgrad 38.403695 stepsize= 1.000000 +dualbound = 3135447.346105, lowerbound=1237535.346105, norm of subgrad 1113.059453 dualbound = 3135447.346105, lowerbound=1237535.346105, norm of subgrad 38.569314 stepsize= 1.000000 +dualbound = 3135564.104530, lowerbound=1237485.104530, norm of subgrad 1113.030595 dualbound = 3135564.104530, lowerbound=1237485.104530, norm of subgrad 38.324384 stepsize= 1.000000 +dualbound = 3135673.488734, lowerbound=1233979.488734, norm of subgrad 1111.460970 dualbound = 3135673.488734, lowerbound=1233979.488734, norm of subgrad 38.410730 stepsize= 1.000000 +dualbound = 3135758.484675, lowerbound=1230621.484675, norm of subgrad 1109.974542 dualbound = 3135758.484675, lowerbound=1230621.484675, norm of subgrad 38.820046 stepsize= 1.000000 +dualbound = 3135884.784727, lowerbound=1235944.784727, norm of subgrad 1112.333037 dualbound = 3135884.784727, lowerbound=1235944.784727, norm of subgrad 38.292298 stepsize= 1.000000 +dualbound = 3135994.384219, lowerbound=1229919.384219, norm of subgrad 1109.617224 dualbound = 3135994.384219, lowerbound=1229919.384219, norm of subgrad 37.955230 stepsize= 1.000000 +dualbound = 3136105.755157, lowerbound=1241194.755157, norm of subgrad 1114.689982 dualbound = 3136105.755157, lowerbound=1241194.755157, norm of subgrad 38.083736 stepsize= 1.000000 +dualbound = 3136229.795920, lowerbound=1227884.795920, norm of subgrad 1108.717185 dualbound = 3136229.795920, lowerbound=1227884.795920, norm of subgrad 38.639886 stepsize= 1.000000 +dualbound = 3136296.264007, lowerbound=1237681.264007, norm of subgrad 1113.163629 dualbound = 3136296.264007, lowerbound=1237681.264007, norm of subgrad 38.967526 stepsize= 1.000000 +dualbound = 3136430.142433, lowerbound=1231935.142433, norm of subgrad 1110.568837 dualbound = 3136430.142433, lowerbound=1231935.142433, norm of subgrad 39.520608 stepsize= 1.000000 +dualbound = 3136516.366011, lowerbound=1238246.366011, norm of subgrad 1113.389135 dualbound = 3136516.366011, lowerbound=1238246.366011, norm of subgrad 38.408639 stepsize= 1.000000 +dualbound = 3136663.720397, lowerbound=1235008.720397, norm of subgrad 1111.905446 dualbound = 3136663.720397, lowerbound=1235008.720397, norm of subgrad 38.371270 stepsize= 1.000000 +dualbound = 3136762.059895, lowerbound=1233783.059895, norm of subgrad 1111.400045 dualbound = 3136762.059895, lowerbound=1233783.059895, norm of subgrad 39.055595 stepsize= 1.000000 +dualbound = 3136854.687043, lowerbound=1235640.687043, norm of subgrad 1112.209822 dualbound = 3136854.687043, lowerbound=1235640.687043, norm of subgrad 38.244309 stepsize= 1.000000 +dualbound = 3136973.017603, lowerbound=1233372.017603, norm of subgrad 1111.180461 dualbound = 3136973.017603, lowerbound=1233372.017603, norm of subgrad 38.318802 stepsize= 1.000000 +dualbound = 3137094.628328, lowerbound=1229536.628328, norm of subgrad 1109.452400 dualbound = 3137094.628328, lowerbound=1229536.628328, norm of subgrad 38.335502 stepsize= 1.000000 +dualbound = 3137212.820325, lowerbound=1234135.820325, norm of subgrad 1111.486761 dualbound = 3137212.820325, lowerbound=1234135.820325, norm of subgrad 37.218168 stepsize= 1.000000 +dualbound = 3137337.706574, lowerbound=1227867.706574, norm of subgrad 1108.681517 dualbound = 3137337.706574, lowerbound=1227867.706574, norm of subgrad 37.840273 stepsize= 1.000000 +dualbound = 3137429.492291, lowerbound=1233803.492291, norm of subgrad 1111.349402 dualbound = 3137429.492291, lowerbound=1233803.492291, norm of subgrad 37.226143 stepsize= 1.000000 +dualbound = 3137549.912922, lowerbound=1236130.912922, norm of subgrad 1112.417598 dualbound = 3137549.912922, lowerbound=1236130.912922, norm of subgrad 38.241609 stepsize= 1.000000 +dualbound = 3137637.734741, lowerbound=1235005.734741, norm of subgrad 1111.898257 dualbound = 3137637.734741, lowerbound=1235005.734741, norm of subgrad 37.414193 stepsize= 1.000000 +dualbound = 3137742.751505, lowerbound=1231566.751505, norm of subgrad 1110.366945 dualbound = 3137742.751505, lowerbound=1231566.751505, norm of subgrad 38.118457 stepsize= 1.000000 +dualbound = 3137869.409536, lowerbound=1235228.409536, norm of subgrad 1112.037504 dualbound = 3137869.409536, lowerbound=1235228.409536, norm of subgrad 39.059673 stepsize= 1.000000 +dualbound = 3137945.795379, lowerbound=1231834.795379, norm of subgrad 1110.499345 dualbound = 3137945.795379, lowerbound=1231834.795379, norm of subgrad 38.083932 stepsize= 1.000000 +dualbound = 3138081.804092, lowerbound=1237264.804092, norm of subgrad 1112.936568 dualbound = 3138081.804092, lowerbound=1237264.804092, norm of subgrad 38.717034 stepsize= 1.000000 +dualbound = 3138176.478138, lowerbound=1233948.478138, norm of subgrad 1111.472212 dualbound = 3138176.478138, lowerbound=1233948.478138, norm of subgrad 38.944500 stepsize= 1.000000 +dualbound = 3138264.170929, lowerbound=1232334.170929, norm of subgrad 1110.743522 dualbound = 3138264.170929, lowerbound=1232334.170929, norm of subgrad 38.790370 stepsize= 1.000000 +dualbound = 3138413.913203, lowerbound=1235111.913203, norm of subgrad 1111.989619 dualbound = 3138413.913203, lowerbound=1235111.913203, norm of subgrad 39.480910 stepsize= 1.000000 +dualbound = 3138505.164796, lowerbound=1230770.164796, norm of subgrad 1110.033857 dualbound = 3138505.164796, lowerbound=1230770.164796, norm of subgrad 38.681411 stepsize= 1.000000 +dualbound = 3138613.933828, lowerbound=1231796.933828, norm of subgrad 1110.482748 dualbound = 3138613.933828, lowerbound=1231796.933828, norm of subgrad 38.519723 stepsize= 1.000000 +dualbound = 3138721.218117, lowerbound=1233679.218117, norm of subgrad 1111.329932 dualbound = 3138721.218117, lowerbound=1233679.218117, norm of subgrad 38.500445 stepsize= 1.000000 +dualbound = 3138834.147723, lowerbound=1234911.147723, norm of subgrad 1111.880905 dualbound = 3138834.147723, lowerbound=1234911.147723, norm of subgrad 38.482848 stepsize= 1.000000 +dualbound = 3138954.476402, lowerbound=1237583.476402, norm of subgrad 1113.067148 dualbound = 3138954.476402, lowerbound=1237583.476402, norm of subgrad 38.148770 stepsize= 1.000000 +dualbound = 3139064.184684, lowerbound=1230632.184684, norm of subgrad 1109.969452 dualbound = 3139064.184684, lowerbound=1230632.184684, norm of subgrad 38.854965 stepsize= 1.000000 +dualbound = 3139162.974706, lowerbound=1235275.974706, norm of subgrad 1112.064285 dualbound = 3139162.974706, lowerbound=1235275.974706, norm of subgrad 38.856017 stepsize= 1.000000 +dualbound = 3139269.581125, lowerbound=1229388.581125, norm of subgrad 1109.376663 dualbound = 3139269.581125, lowerbound=1229388.581125, norm of subgrad 37.876199 stepsize= 1.000000 +dualbound = 3139386.749450, lowerbound=1240311.749450, norm of subgrad 1114.317616 dualbound = 3139386.749450, lowerbound=1240311.749450, norm of subgrad 38.848016 stepsize= 1.000000 +dualbound = 3139501.170813, lowerbound=1232162.170813, norm of subgrad 1110.643584 dualbound = 3139501.170813, lowerbound=1232162.170813, norm of subgrad 38.489237 stepsize= 1.000000 +dualbound = 3139614.994954, lowerbound=1239857.994954, norm of subgrad 1114.093351 dualbound = 3139614.994954, lowerbound=1239857.994954, norm of subgrad 38.207645 stepsize= 1.000000 +dualbound = 3139743.492917, lowerbound=1233445.492917, norm of subgrad 1111.173026 dualbound = 3139743.492917, lowerbound=1233445.492917, norm of subgrad 37.262554 stepsize= 1.000000 +dualbound = 3139868.291195, lowerbound=1230411.291195, norm of subgrad 1109.828046 dualbound = 3139868.291195, lowerbound=1230411.291195, norm of subgrad 37.839110 stepsize= 1.000000 +dualbound = 3139939.599574, lowerbound=1235870.599574, norm of subgrad 1112.310029 dualbound = 3139939.599574, lowerbound=1235870.599574, norm of subgrad 37.872264 stepsize= 1.000000 +dualbound = 3140053.552877, lowerbound=1231284.552877, norm of subgrad 1110.253373 dualbound = 3140053.552877, lowerbound=1231284.552877, norm of subgrad 38.625811 stepsize= 1.000000 +dualbound = 3140164.420770, lowerbound=1230258.420770, norm of subgrad 1109.800172 dualbound = 3140164.420770, lowerbound=1230258.420770, norm of subgrad 38.844149 stepsize= 1.000000 +dualbound = 3140265.606586, lowerbound=1234162.606586, norm of subgrad 1111.562237 dualbound = 3140265.606586, lowerbound=1234162.606586, norm of subgrad 38.848241 stepsize= 1.000000 +dualbound = 3140364.316381, lowerbound=1235435.316382, norm of subgrad 1112.099508 dualbound = 3140364.316381, lowerbound=1235435.316382, norm of subgrad 37.798278 stepsize= 1.000000 +dualbound = 3140496.958220, lowerbound=1236483.958220, norm of subgrad 1112.600538 dualbound = 3140496.958220, lowerbound=1236483.958220, norm of subgrad 39.097850 stepsize= 1.000000 +dualbound = 3140577.169092, lowerbound=1232092.169092, norm of subgrad 1110.667443 dualbound = 3140577.169092, lowerbound=1232092.169092, norm of subgrad 39.625886 stepsize= 1.000000 +dualbound = 3140670.981342, lowerbound=1237487.981342, norm of subgrad 1113.051203 dualbound = 3140670.981342, lowerbound=1237487.981342, norm of subgrad 38.585130 stepsize= 1.000000 +dualbound = 3140812.865701, lowerbound=1230407.865701, norm of subgrad 1109.855786 dualbound = 3140812.865701, lowerbound=1230407.865701, norm of subgrad 38.908667 stepsize= 1.000000 +dualbound = 3140919.716017, lowerbound=1234764.716017, norm of subgrad 1111.813706 dualbound = 3140919.716017, lowerbound=1234764.716017, norm of subgrad 38.364701 stepsize= 1.000000 +dualbound = 3141031.503685, lowerbound=1230997.503685, norm of subgrad 1110.112834 dualbound = 3141031.503685, lowerbound=1230997.503685, norm of subgrad 38.272545 stepsize= 1.000000 +dualbound = 3141127.129577, lowerbound=1232454.129577, norm of subgrad 1110.770512 dualbound = 3141127.129577, lowerbound=1232454.129577, norm of subgrad 38.113330 stepsize= 1.000000 +dualbound = 3141270.883506, lowerbound=1228964.883506, norm of subgrad 1109.167653 dualbound = 3141270.883506, lowerbound=1228964.883506, norm of subgrad 37.838524 stepsize= 1.000000 +dualbound = 3141361.564657, lowerbound=1239663.564657, norm of subgrad 1114.021797 dualbound = 3141361.564657, lowerbound=1239663.564657, norm of subgrad 38.362497 stepsize= 1.000000 +dualbound = 3141452.632776, lowerbound=1233923.632776, norm of subgrad 1111.433144 dualbound = 3141452.632776, lowerbound=1233923.632776, norm of subgrad 38.092888 stepsize= 1.000000 +dualbound = 3141603.960591, lowerbound=1238697.960591, norm of subgrad 1113.551508 dualbound = 3141603.960591, lowerbound=1238697.960591, norm of subgrad 38.083170 stepsize= 1.000000 +dualbound = 3141696.174782, lowerbound=1225565.174782, norm of subgrad 1107.665191 dualbound = 3141696.174782, lowerbound=1225565.174782, norm of subgrad 38.068546 stepsize= 1.000000 +dualbound = 3141801.872816, lowerbound=1236375.872816, norm of subgrad 1112.526796 dualbound = 3141801.872816, lowerbound=1236375.872816, norm of subgrad 38.022336 stepsize= 1.000000 +dualbound = 3141924.152828, lowerbound=1230929.152828, norm of subgrad 1110.044212 dualbound = 3141924.152828, lowerbound=1230929.152828, norm of subgrad 37.299866 stepsize= 1.000000 +dualbound = 3142046.716630, lowerbound=1239148.716630, norm of subgrad 1113.758823 dualbound = 3142046.716630, lowerbound=1239148.716630, norm of subgrad 37.849225 stepsize= 1.000000 +dualbound = 3142124.766774, lowerbound=1233536.766774, norm of subgrad 1111.271689 dualbound = 3142124.766774, lowerbound=1233536.766774, norm of subgrad 38.289034 stepsize= 1.000000 +dualbound = 3142247.811020, lowerbound=1239224.811020, norm of subgrad 1113.805105 dualbound = 3142247.811020, lowerbound=1239224.811020, norm of subgrad 38.210525 stepsize= 1.000000 +dualbound = 3142349.444793, lowerbound=1226924.444793, norm of subgrad 1108.297995 dualbound = 3142349.444793, lowerbound=1226924.444793, norm of subgrad 38.750920 stepsize= 1.000000 +dualbound = 3142457.038045, lowerbound=1239232.038045, norm of subgrad 1113.812838 dualbound = 3142457.038045, lowerbound=1239232.038045, norm of subgrad 38.139130 stepsize= 1.000000 +dualbound = 3142562.487391, lowerbound=1232414.487391, norm of subgrad 1110.753117 dualbound = 3142562.487391, lowerbound=1232414.487391, norm of subgrad 38.255056 stepsize= 1.000000 +dualbound = 3142664.846100, lowerbound=1232799.846100, norm of subgrad 1110.973378 dualbound = 3142664.846100, lowerbound=1232799.846100, norm of subgrad 39.551975 stepsize= 1.000000 +dualbound = 3142774.827486, lowerbound=1233207.827486, norm of subgrad 1111.131328 dualbound = 3142774.827486, lowerbound=1233207.827486, norm of subgrad 38.922762 stepsize= 1.000000 +dualbound = 3142896.761525, lowerbound=1235537.761525, norm of subgrad 1112.167596 dualbound = 3142896.761525, lowerbound=1235537.761525, norm of subgrad 38.741890 stepsize= 1.000000 +dualbound = 3142995.094732, lowerbound=1234076.094732, norm of subgrad 1111.506678 dualbound = 3142995.094732, lowerbound=1234076.094732, norm of subgrad 38.331882 stepsize= 1.000000 +dualbound = 3143118.190348, lowerbound=1232792.190348, norm of subgrad 1110.927626 dualbound = 3143118.190348, lowerbound=1232792.190348, norm of subgrad 38.614707 stepsize= 1.000000 +dualbound = 3143225.678245, lowerbound=1230835.678245, norm of subgrad 1110.048052 dualbound = 3143225.678245, lowerbound=1230835.678245, norm of subgrad 38.451110 stepsize= 1.000000 +dualbound = 3143337.985585, lowerbound=1230442.985585, norm of subgrad 1109.870256 dualbound = 3143337.985585, lowerbound=1230442.985585, norm of subgrad 38.487756 stepsize= 1.000000 +dualbound = 3143462.942709, lowerbound=1228560.942709, norm of subgrad 1109.008991 dualbound = 3143462.942709, lowerbound=1228560.942709, norm of subgrad 38.274758 stepsize= 1.000000 +dualbound = 3143563.297578, lowerbound=1234493.297578, norm of subgrad 1111.683542 dualbound = 3143563.297578, lowerbound=1234493.297578, norm of subgrad 38.044117 stepsize= 1.000000 +dualbound = 3143680.084680, lowerbound=1238650.084680, norm of subgrad 1113.531358 dualbound = 3143680.084680, lowerbound=1238650.084680, norm of subgrad 37.666790 stepsize= 1.000000 +dualbound = 3143819.639591, lowerbound=1236478.639591, norm of subgrad 1112.551859 dualbound = 3143819.639591, lowerbound=1236478.639591, norm of subgrad 37.849107 stepsize= 1.000000 +dualbound = 3143901.301946, lowerbound=1232045.301946, norm of subgrad 1110.591870 dualbound = 3143901.301946, lowerbound=1232045.301946, norm of subgrad 38.087562 stepsize= 1.000000 +dualbound = 3144011.978886, lowerbound=1233215.978886, norm of subgrad 1111.118346 dualbound = 3144011.978886, lowerbound=1233215.978886, norm of subgrad 38.453569 stepsize= 1.000000 +dualbound = 3144123.118898, lowerbound=1232891.118898, norm of subgrad 1110.947847 dualbound = 3144123.118898, lowerbound=1232891.118898, norm of subgrad 37.751027 stepsize= 1.000000 +dualbound = 3144239.907039, lowerbound=1235004.907039, norm of subgrad 1111.906429 dualbound = 3144239.907039, lowerbound=1235004.907039, norm of subgrad 38.049811 stepsize= 1.000000 +dualbound = 3144325.834203, lowerbound=1230938.834203, norm of subgrad 1110.095417 dualbound = 3144325.834203, lowerbound=1230938.834203, norm of subgrad 38.195905 stepsize= 1.000000 +dualbound = 3144445.794837, lowerbound=1237085.794837, norm of subgrad 1112.845360 dualbound = 3144445.794837, lowerbound=1237085.794837, norm of subgrad 38.196343 stepsize= 1.000000 +dualbound = 3144553.766137, lowerbound=1232309.766137, norm of subgrad 1110.713629 dualbound = 3144553.766137, lowerbound=1232309.766137, norm of subgrad 38.509366 stepsize= 1.000000 +dualbound = 3144653.012181, lowerbound=1231063.012181, norm of subgrad 1110.157652 dualbound = 3144653.012181, lowerbound=1231063.012181, norm of subgrad 38.551862 stepsize= 1.000000 +dualbound = 3144773.157181, lowerbound=1236006.157181, norm of subgrad 1112.362422 dualbound = 3144773.157181, lowerbound=1236006.157181, norm of subgrad 38.264148 stepsize= 1.000000 +dualbound = 3144898.864925, lowerbound=1234494.864925, norm of subgrad 1111.698639 dualbound = 3144898.864925, lowerbound=1234494.864925, norm of subgrad 38.790563 stepsize= 1.000000 +dualbound = 3145003.114665, lowerbound=1234671.114665, norm of subgrad 1111.777907 dualbound = 3145003.114665, lowerbound=1234671.114665, norm of subgrad 38.512981 stepsize= 1.000000 +dualbound = 3145103.208833, lowerbound=1231791.208833, norm of subgrad 1110.487825 dualbound = 3145103.208833, lowerbound=1231791.208833, norm of subgrad 38.627635 stepsize= 1.000000 +dualbound = 3145195.317269, lowerbound=1235347.317269, norm of subgrad 1112.099059 dualbound = 3145195.317269, lowerbound=1235347.317269, norm of subgrad 38.847245 stepsize= 1.000000 +dualbound = 3145312.572293, lowerbound=1239814.572293, norm of subgrad 1114.105279 dualbound = 3145312.572293, lowerbound=1239814.572293, norm of subgrad 39.156800 stepsize= 1.000000 +dualbound = 3145405.641470, lowerbound=1233334.641470, norm of subgrad 1111.152393 dualbound = 3145405.641470, lowerbound=1233334.641470, norm of subgrad 37.657259 stepsize= 1.000000 +dualbound = 3145550.220436, lowerbound=1237439.220436, norm of subgrad 1113.000548 dualbound = 3145550.220436, lowerbound=1237439.220436, norm of subgrad 38.413265 stepsize= 1.000000 +dualbound = 3145649.524772, lowerbound=1226050.524772, norm of subgrad 1107.906821 dualbound = 3145649.524772, lowerbound=1226050.524772, norm of subgrad 38.811137 stepsize= 1.000000 +dualbound = 3145751.318505, lowerbound=1236518.318505, norm of subgrad 1112.573736 dualbound = 3145751.318505, lowerbound=1236518.318505, norm of subgrad 37.467235 stepsize= 1.000000 +dualbound = 3145893.775460, lowerbound=1239079.775460, norm of subgrad 1113.712609 dualbound = 3145893.775460, lowerbound=1239079.775460, norm of subgrad 37.662408 stepsize= 1.000000 +dualbound = 3145989.772741, lowerbound=1234879.772741, norm of subgrad 1111.842063 dualbound = 3145989.772741, lowerbound=1234879.772741, norm of subgrad 37.536613 stepsize= 1.000000 +dualbound = 3146108.008788, lowerbound=1232637.008788, norm of subgrad 1110.843827 dualbound = 3146108.008788, lowerbound=1232637.008788, norm of subgrad 38.147556 stepsize= 1.000000 +dualbound = 3146201.972543, lowerbound=1233733.972543, norm of subgrad 1111.340619 dualbound = 3146201.972543, lowerbound=1233733.972543, norm of subgrad 37.920493 stepsize= 1.000000 +dualbound = 3146306.429140, lowerbound=1233552.429140, norm of subgrad 1111.305282 dualbound = 3146306.429140, lowerbound=1233552.429140, norm of subgrad 39.388534 stepsize= 1.000000 +dualbound = 3146399.266811, lowerbound=1239459.266811, norm of subgrad 1113.952542 dualbound = 3146399.266811, lowerbound=1239459.266811, norm of subgrad 39.036363 stepsize= 1.000000 +dualbound = 3146516.806716, lowerbound=1233774.806716, norm of subgrad 1111.373838 dualbound = 3146516.806716, lowerbound=1233774.806716, norm of subgrad 38.659280 stepsize= 1.000000 +dualbound = 3146643.332220, lowerbound=1233126.332220, norm of subgrad 1111.092855 dualbound = 3146643.332220, lowerbound=1233126.332220, norm of subgrad 39.083571 stepsize= 1.000000 +dualbound = 3146733.547901, lowerbound=1235175.547901, norm of subgrad 1112.012387 dualbound = 3146733.547901, lowerbound=1235175.547901, norm of subgrad 38.551468 stepsize= 1.000000 +dualbound = 3146857.759993, lowerbound=1231201.759993, norm of subgrad 1110.209782 dualbound = 3146857.759993, lowerbound=1231201.759993, norm of subgrad 38.577352 stepsize= 1.000000 +dualbound = 3146954.893078, lowerbound=1235499.893078, norm of subgrad 1112.127193 dualbound = 3146954.893078, lowerbound=1235499.893078, norm of subgrad 37.737688 stepsize= 1.000000 +dualbound = 3147089.557570, lowerbound=1236623.557570, norm of subgrad 1112.673158 dualbound = 3147089.557570, lowerbound=1236623.557570, norm of subgrad 39.403864 stepsize= 1.000000 +dualbound = 3147155.042496, lowerbound=1232301.042496, norm of subgrad 1110.687644 dualbound = 3147155.042496, lowerbound=1232301.042496, norm of subgrad 37.302613 stepsize= 1.000000 +dualbound = 3147306.302635, lowerbound=1233216.302635, norm of subgrad 1111.125692 dualbound = 3147306.302635, lowerbound=1233216.302635, norm of subgrad 39.182396 stepsize= 1.000000 +dualbound = 3147394.780122, lowerbound=1234494.780122, norm of subgrad 1111.648677 dualbound = 3147394.780122, lowerbound=1234494.780122, norm of subgrad 36.830388 stepsize= 1.000000 +dualbound = 3147537.318396, lowerbound=1238266.318396, norm of subgrad 1113.368456 dualbound = 3147537.318396, lowerbound=1238266.318396, norm of subgrad 38.282349 stepsize= 1.000000 +dualbound = 3147615.488528, lowerbound=1237753.488528, norm of subgrad 1113.141271 dualbound = 3147615.488528, lowerbound=1237753.488528, norm of subgrad 37.525593 stepsize= 1.000000 +dualbound = 3147741.436976, lowerbound=1235213.436976, norm of subgrad 1112.055051 dualbound = 3147741.436976, lowerbound=1235213.436976, norm of subgrad 39.735984 stepsize= 1.000000 +dualbound = 3147798.870488, lowerbound=1231829.870488, norm of subgrad 1110.502531 dualbound = 3147798.870488, lowerbound=1231829.870488, norm of subgrad 37.992545 stepsize= 1.000000 +dualbound = 3147957.234607, lowerbound=1235660.234607, norm of subgrad 1112.175901 dualbound = 3147957.234607, lowerbound=1235660.234607, norm of subgrad 37.859796 stepsize= 1.000000 +dualbound = 3148093.036438, lowerbound=1240171.036438, norm of subgrad 1114.240565 dualbound = 3148093.036438, lowerbound=1240171.036438, norm of subgrad 38.688523 stepsize= 1.000000 +dualbound = 3148153.071173, lowerbound=1227243.071173, norm of subgrad 1108.431807 dualbound = 3148153.071173, lowerbound=1227243.071173, norm of subgrad 37.921428 stepsize= 1.000000 +dualbound = 3148279.337698, lowerbound=1239170.337698, norm of subgrad 1113.796812 dualbound = 3148279.337698, lowerbound=1239170.337698, norm of subgrad 38.720363 stepsize= 1.000000 +dualbound = 3148384.205144, lowerbound=1232716.205144, norm of subgrad 1110.897927 dualbound = 3148384.205144, lowerbound=1232716.205144, norm of subgrad 38.508018 stepsize= 1.000000 +dualbound = 3148493.427235, lowerbound=1233914.427235, norm of subgrad 1111.409208 dualbound = 3148493.427235, lowerbound=1233914.427235, norm of subgrad 37.752114 stepsize= 1.000000 +dualbound = 3148634.153193, lowerbound=1239328.153193, norm of subgrad 1113.825908 dualbound = 3148634.153193, lowerbound=1239328.153193, norm of subgrad 37.692519 stepsize= 1.000000 +dualbound = 3148714.278390, lowerbound=1229283.278390, norm of subgrad 1109.342273 dualbound = 3148714.278390, lowerbound=1229283.278390, norm of subgrad 37.909434 stepsize= 1.000000 +dualbound = 3148830.622800, lowerbound=1236678.622800, norm of subgrad 1112.682175 dualbound = 3148830.622800, lowerbound=1236678.622800, norm of subgrad 38.721369 stepsize= 1.000000 +dualbound = 3148939.403471, lowerbound=1234353.403471, norm of subgrad 1111.606227 dualbound = 3148939.403471, lowerbound=1234353.403471, norm of subgrad 37.733018 stepsize= 1.000000 +dualbound = 3149041.170323, lowerbound=1234631.170323, norm of subgrad 1111.775234 dualbound = 3149041.170323, lowerbound=1234631.170323, norm of subgrad 38.920006 stepsize= 1.000000 +dualbound = 3149143.174108, lowerbound=1233980.174108, norm of subgrad 1111.457230 dualbound = 3149143.174108, lowerbound=1233980.174108, norm of subgrad 38.196908 stepsize= 1.000000 +dualbound = 3149259.017688, lowerbound=1233706.017688, norm of subgrad 1111.344689 dualbound = 3149259.017688, lowerbound=1233706.017688, norm of subgrad 38.689063 stepsize= 1.000000 +dualbound = 3149366.114993, lowerbound=1231115.114993, norm of subgrad 1110.186523 dualbound = 3149366.114993, lowerbound=1231115.114993, norm of subgrad 38.808470 stepsize= 1.000000 +dualbound = 3149478.121383, lowerbound=1240214.121383, norm of subgrad 1114.275604 dualbound = 3149478.121383, lowerbound=1240214.121383, norm of subgrad 38.833058 stepsize= 1.000000 +dualbound = 3149604.407406, lowerbound=1230582.407406, norm of subgrad 1109.907837 dualbound = 3149604.407406, lowerbound=1230582.407406, norm of subgrad 37.937923 stepsize= 1.000000 +dualbound = 3149735.804664, lowerbound=1238061.804664, norm of subgrad 1113.270320 dualbound = 3149735.804664, lowerbound=1238061.804664, norm of subgrad 37.952566 stepsize= 1.000000 +dualbound = 3149840.000983, lowerbound=1228826.000983, norm of subgrad 1109.137503 dualbound = 3149840.000983, lowerbound=1228826.000983, norm of subgrad 38.264818 stepsize= 1.000000 +dualbound = 3149929.531949, lowerbound=1236946.531949, norm of subgrad 1112.795818 dualbound = 3149929.531949, lowerbound=1236946.531949, norm of subgrad 38.177624 stepsize= 1.000000 +dualbound = 3150040.122776, lowerbound=1231178.122776, norm of subgrad 1110.230662 dualbound = 3150040.122776, lowerbound=1231178.122776, norm of subgrad 39.301283 stepsize= 1.000000 +dualbound = 3150146.045389, lowerbound=1237774.045389, norm of subgrad 1113.195421 dualbound = 3150146.045389, lowerbound=1237774.045389, norm of subgrad 39.190849 stepsize= 1.000000 +dualbound = 3150241.607398, lowerbound=1232603.607398, norm of subgrad 1110.843197 dualbound = 3150241.607398, lowerbound=1232603.607398, norm of subgrad 38.269596 stepsize= 1.000000 +dualbound = 3150373.219102, lowerbound=1238054.219102, norm of subgrad 1113.286225 dualbound = 3150373.219102, lowerbound=1238054.219102, norm of subgrad 38.517680 stepsize= 1.000000 +dualbound = 3150454.114688, lowerbound=1229455.114688, norm of subgrad 1109.395382 dualbound = 3150454.114688, lowerbound=1229455.114688, norm of subgrad 37.200747 stepsize= 1.000000 +dualbound = 3150619.262027, lowerbound=1235124.262027, norm of subgrad 1111.949307 dualbound = 3150619.262027, lowerbound=1235124.262027, norm of subgrad 38.368572 stepsize= 1.000000 +dualbound = 3150682.285143, lowerbound=1235990.285143, norm of subgrad 1112.358883 dualbound = 3150682.285143, lowerbound=1235990.285143, norm of subgrad 37.616793 stepsize= 1.000000 +dualbound = 3150831.634121, lowerbound=1234221.634121, norm of subgrad 1111.522215 dualbound = 3150831.634121, lowerbound=1234221.634121, norm of subgrad 37.541297 stepsize= 1.000000 +dualbound = 3150942.451099, lowerbound=1230095.451099, norm of subgrad 1109.692052 dualbound = 3150942.451099, lowerbound=1230095.451099, norm of subgrad 37.839358 stepsize= 1.000000 +dualbound = 3151024.039806, lowerbound=1234015.039806, norm of subgrad 1111.479212 dualbound = 3151024.039806, lowerbound=1234015.039806, norm of subgrad 38.112842 stepsize= 1.000000 +dualbound = 3151122.309230, lowerbound=1237291.309230, norm of subgrad 1112.971387 dualbound = 3151122.309230, lowerbound=1237291.309230, norm of subgrad 38.887908 stepsize= 1.000000 +dualbound = 3151232.174276, lowerbound=1236902.174276, norm of subgrad 1112.800600 dualbound = 3151232.174276, lowerbound=1236902.174276, norm of subgrad 39.151820 stepsize= 1.000000 +dualbound = 3151333.016152, lowerbound=1231762.016152, norm of subgrad 1110.498994 dualbound = 3151333.016152, lowerbound=1231762.016152, norm of subgrad 39.329911 stepsize= 1.000000 +dualbound = 3151454.847105, lowerbound=1235303.847105, norm of subgrad 1112.070523 dualbound = 3151454.847105, lowerbound=1235303.847105, norm of subgrad 38.972182 stepsize= 1.000000 +dualbound = 3151563.254184, lowerbound=1233670.254184, norm of subgrad 1111.316901 dualbound = 3151563.254184, lowerbound=1233670.254184, norm of subgrad 38.254504 stepsize= 1.000000 +dualbound = 3151689.313023, lowerbound=1235823.313023, norm of subgrad 1112.294616 dualbound = 3151689.313023, lowerbound=1235823.313023, norm of subgrad 38.756404 stepsize= 1.000000 +dualbound = 3151791.941593, lowerbound=1233492.941593, norm of subgrad 1111.225873 dualbound = 3151791.941593, lowerbound=1233492.941593, norm of subgrad 37.850080 stepsize= 1.000000 +dualbound = 3151911.940248, lowerbound=1234396.940248, norm of subgrad 1111.653696 dualbound = 3151911.940248, lowerbound=1234396.940248, norm of subgrad 38.691067 stepsize= 1.000000 +dualbound = 3152004.554402, lowerbound=1237385.554402, norm of subgrad 1112.981381 dualbound = 3152004.554402, lowerbound=1237385.554402, norm of subgrad 37.876301 stepsize= 1.000000 +dualbound = 3152136.553361, lowerbound=1232536.553361, norm of subgrad 1110.804912 dualbound = 3152136.553361, lowerbound=1232536.553361, norm of subgrad 38.509726 stepsize= 1.000000 +dualbound = 3152208.703984, lowerbound=1232881.703984, norm of subgrad 1110.960262 dualbound = 3152208.703984, lowerbound=1232881.703984, norm of subgrad 37.724669 stepsize= 1.000000 +dualbound = 3152346.541835, lowerbound=1231852.541835, norm of subgrad 1110.505084 dualbound = 3152346.541835, lowerbound=1231852.541835, norm of subgrad 38.818009 stepsize= 1.000000 +dualbound = 3152452.350034, lowerbound=1239410.350034, norm of subgrad 1113.903654 dualbound = 3152452.350034, lowerbound=1239410.350034, norm of subgrad 38.429262 stepsize= 1.000000 +dualbound = 3152570.346543, lowerbound=1232577.346543, norm of subgrad 1110.840829 dualbound = 3152570.346543, lowerbound=1232577.346543, norm of subgrad 38.832931 stepsize= 1.000000 +dualbound = 3152660.449189, lowerbound=1236353.449189, norm of subgrad 1112.556268 dualbound = 3152660.449189, lowerbound=1236353.449189, norm of subgrad 38.962837 stepsize= 1.000000 +dualbound = 3152760.758063, lowerbound=1236933.758063, norm of subgrad 1112.806703 dualbound = 3152760.758063, lowerbound=1236933.758063, norm of subgrad 38.798310 stepsize= 1.000000 +dualbound = 3152880.332116, lowerbound=1238270.332116, norm of subgrad 1113.421453 dualbound = 3152880.332116, lowerbound=1238270.332116, norm of subgrad 39.453442 stepsize= 1.000000 +dualbound = 3152975.500956, lowerbound=1236967.500956, norm of subgrad 1112.841633 dualbound = 3152975.500956, lowerbound=1236967.500956, norm of subgrad 39.295914 stepsize= 1.000000 +dualbound = 3153074.367158, lowerbound=1232691.367158, norm of subgrad 1110.898000 dualbound = 3153074.367158, lowerbound=1232691.367158, norm of subgrad 38.753919 stepsize= 1.000000 +dualbound = 3153214.252163, lowerbound=1236493.252163, norm of subgrad 1112.597974 dualbound = 3153214.252163, lowerbound=1236493.252163, norm of subgrad 38.998526 stepsize= 1.000000 +dualbound = 3153327.658665, lowerbound=1234026.658665, norm of subgrad 1111.470944 dualbound = 3153327.658665, lowerbound=1234026.658665, norm of subgrad 38.136682 stepsize= 1.000000 +dualbound = 3153449.271847, lowerbound=1234778.271847, norm of subgrad 1111.786073 dualbound = 3153449.271847, lowerbound=1234778.271847, norm of subgrad 37.571441 stepsize= 1.000000 +dualbound = 3153563.103897, lowerbound=1232202.103897, norm of subgrad 1110.626447 dualbound = 3153563.103897, lowerbound=1232202.103897, norm of subgrad 37.454400 stepsize= 1.000000 +dualbound = 3153659.957756, lowerbound=1234665.957756, norm of subgrad 1111.759397 dualbound = 3153659.957756, lowerbound=1234665.957756, norm of subgrad 37.945406 stepsize= 1.000000 +dualbound = 3153781.061881, lowerbound=1234213.061881, norm of subgrad 1111.551646 dualbound = 3153781.061881, lowerbound=1234213.061881, norm of subgrad 38.145827 stepsize= 1.000000 +dualbound = 3153884.399019, lowerbound=1233510.399019, norm of subgrad 1111.217080 dualbound = 3153884.399019, lowerbound=1233510.399019, norm of subgrad 37.367595 stepsize= 1.000000 +dualbound = 3154009.308711, lowerbound=1233295.308711, norm of subgrad 1111.145944 dualbound = 3154009.308711, lowerbound=1233295.308711, norm of subgrad 38.404553 stepsize= 1.000000 +dualbound = 3154090.189360, lowerbound=1237873.189360, norm of subgrad 1113.207613 dualbound = 3154090.189360, lowerbound=1237873.189360, norm of subgrad 37.932580 stepsize= 1.000000 +dualbound = 3154212.022872, lowerbound=1236654.022872, norm of subgrad 1112.687298 dualbound = 3154212.022872, lowerbound=1236654.022872, norm of subgrad 39.253452 stepsize= 1.000000 +dualbound = 3154321.558034, lowerbound=1243074.558034, norm of subgrad 1115.547201 dualbound = 3154321.558034, lowerbound=1243074.558034, norm of subgrad 38.477723 stepsize= 1.000000 +dualbound = 3154421.260457, lowerbound=1235260.260457, norm of subgrad 1112.040134 dualbound = 3154421.260457, lowerbound=1235260.260457, norm of subgrad 38.375805 stepsize= 1.000000 +dualbound = 3154553.428882, lowerbound=1233167.428882, norm of subgrad 1111.070848 dualbound = 3154553.428882, lowerbound=1233167.428882, norm of subgrad 37.989057 stepsize= 1.000000 +dualbound = 3154661.229022, lowerbound=1233162.229022, norm of subgrad 1111.097309 dualbound = 3154661.229022, lowerbound=1233162.229022, norm of subgrad 38.507144 stepsize= 1.000000 +dualbound = 3154749.313244, lowerbound=1232170.313244, norm of subgrad 1110.640497 dualbound = 3154749.313244, lowerbound=1232170.313244, norm of subgrad 37.948442 stepsize= 1.000000 +dualbound = 3154859.108241, lowerbound=1237615.108241, norm of subgrad 1113.095283 dualbound = 3154859.108241, lowerbound=1237615.108241, norm of subgrad 38.416077 stepsize= 1.000000 +dualbound = 3154959.254697, lowerbound=1236793.254697, norm of subgrad 1112.711218 dualbound = 3154959.254697, lowerbound=1236793.254697, norm of subgrad 37.856921 stepsize= 1.000000 +dualbound = 3155061.271776, lowerbound=1232792.271776, norm of subgrad 1110.972219 dualbound = 3155061.271776, lowerbound=1232792.271776, norm of subgrad 39.610820 stepsize= 1.000000 +dualbound = 3155157.143748, lowerbound=1234455.143748, norm of subgrad 1111.720353 dualbound = 3155157.143748, lowerbound=1234455.143748, norm of subgrad 39.533176 stepsize= 1.000000 +dualbound = 3155290.455882, lowerbound=1237415.455882, norm of subgrad 1112.992568 dualbound = 3155290.455882, lowerbound=1237415.455882, norm of subgrad 38.344649 stepsize= 1.000000 +dualbound = 3155435.654871, lowerbound=1236267.654871, norm of subgrad 1112.474564 dualbound = 3155435.654871, lowerbound=1236267.654871, norm of subgrad 38.434346 stepsize= 1.000000 +dualbound = 3155511.246659, lowerbound=1236308.246659, norm of subgrad 1112.522470 dualbound = 3155511.246659, lowerbound=1236308.246659, norm of subgrad 38.387391 stepsize= 1.000000 +dualbound = 3155614.455487, lowerbound=1234835.455487, norm of subgrad 1111.813139 dualbound = 3155614.455487, lowerbound=1234835.455487, norm of subgrad 37.365878 stepsize= 1.000000 +dualbound = 3155774.922926, lowerbound=1232279.922926, norm of subgrad 1110.663281 dualbound = 3155774.922926, lowerbound=1232279.922926, norm of subgrad 38.124368 stepsize= 1.000000 +dualbound = 3155846.165761, lowerbound=1236295.165761, norm of subgrad 1112.512546 dualbound = 3155846.165761, lowerbound=1236295.165761, norm of subgrad 38.213124 stepsize= 1.000000 +dualbound = 3155941.947518, lowerbound=1236483.947518, norm of subgrad 1112.617161 dualbound = 3155941.947518, lowerbound=1236483.947518, norm of subgrad 39.099639 stepsize= 1.000000 +dualbound = 3156035.728830, lowerbound=1238005.728830, norm of subgrad 1113.289598 dualbound = 3156035.728830, lowerbound=1238005.728830, norm of subgrad 38.752823 stepsize= 1.000000 +dualbound = 3156170.060511, lowerbound=1231445.060511, norm of subgrad 1110.308093 dualbound = 3156170.060511, lowerbound=1231445.060511, norm of subgrad 38.384003 stepsize= 1.000000 +dualbound = 3156310.825082, lowerbound=1236976.825082, norm of subgrad 1112.789210 dualbound = 3156310.825082, lowerbound=1236976.825082, norm of subgrad 38.259176 stepsize= 1.000000 +dualbound = 3156381.013211, lowerbound=1233639.013211, norm of subgrad 1111.327140 dualbound = 3156381.013211, lowerbound=1233639.013211, norm of subgrad 38.460215 stepsize= 1.000000 +dualbound = 3156517.388141, lowerbound=1236026.388141, norm of subgrad 1112.357132 dualbound = 3156517.388141, lowerbound=1236026.388141, norm of subgrad 38.057521 stepsize= 1.000000 +dualbound = 3156612.241944, lowerbound=1234032.241944, norm of subgrad 1111.487401 dualbound = 3156612.241944, lowerbound=1234032.241944, norm of subgrad 38.299527 stepsize= 1.000000 +dualbound = 3156710.571071, lowerbound=1236739.571071, norm of subgrad 1112.702822 dualbound = 3156710.571071, lowerbound=1236739.571071, norm of subgrad 38.292677 stepsize= 1.000000 +dualbound = 3156832.304162, lowerbound=1237548.304162, norm of subgrad 1113.067969 dualbound = 3156832.304162, lowerbound=1237548.304162, norm of subgrad 38.648843 stepsize= 1.000000 +dualbound = 3156939.168920, lowerbound=1232990.168920, norm of subgrad 1110.993775 dualbound = 3156939.168920, lowerbound=1232990.168920, norm of subgrad 37.734133 stepsize= 1.000000 +dualbound = 3157041.458621, lowerbound=1235373.458621, norm of subgrad 1112.077092 dualbound = 3157041.458621, lowerbound=1235373.458621, norm of subgrad 38.003812 stepsize= 1.000000 +dualbound = 3157165.679626, lowerbound=1234186.679626, norm of subgrad 1111.576664 dualbound = 3157165.679626, lowerbound=1234186.679626, norm of subgrad 39.245650 stepsize= 1.000000 +dualbound = 3157242.251011, lowerbound=1234700.251011, norm of subgrad 1111.791460 dualbound = 3157242.251011, lowerbound=1234700.251011, norm of subgrad 38.165054 stepsize= 1.000000 +dualbound = 3157387.014787, lowerbound=1236499.014787, norm of subgrad 1112.585734 dualbound = 3157387.014787, lowerbound=1236499.014787, norm of subgrad 38.636301 stepsize= 1.000000 +dualbound = 3157465.537882, lowerbound=1230917.537882, norm of subgrad 1110.101139 dualbound = 3157465.537882, lowerbound=1230917.537882, norm of subgrad 38.542484 stepsize= 1.000000 +dualbound = 3157571.092404, lowerbound=1234922.092404, norm of subgrad 1111.889874 dualbound = 3157571.092404, lowerbound=1234922.092404, norm of subgrad 38.503955 stepsize= 1.000000 +dualbound = 3157688.863419, lowerbound=1234329.863419, norm of subgrad 1111.624426 dualbound = 3157688.863419, lowerbound=1234329.863419, norm of subgrad 38.688125 stepsize= 1.000000 +dualbound = 3157830.070726, lowerbound=1233271.070726, norm of subgrad 1111.149437 dualbound = 3157830.070726, lowerbound=1233271.070726, norm of subgrad 39.028289 stepsize= 1.000000 +dualbound = 3157933.569721, lowerbound=1237285.569721, norm of subgrad 1112.940955 dualbound = 3157933.569721, lowerbound=1237285.569721, norm of subgrad 38.151003 stepsize= 1.000000 +dualbound = 3158031.472113, lowerbound=1231493.472113, norm of subgrad 1110.337549 dualbound = 3158031.472113, lowerbound=1231493.472113, norm of subgrad 38.130072 stepsize= 1.000000 +dualbound = 3158148.730008, lowerbound=1233818.730008, norm of subgrad 1111.409344 dualbound = 3158148.730008, lowerbound=1233818.730008, norm of subgrad 39.105727 stepsize= 1.000000 +dualbound = 3158244.240005, lowerbound=1233469.240005, norm of subgrad 1111.239956 dualbound = 3158244.240005, lowerbound=1233469.240005, norm of subgrad 38.477396 stepsize= 1.000000 +dualbound = 3158367.671024, lowerbound=1232013.671024, norm of subgrad 1110.578530 dualbound = 3158367.671024, lowerbound=1232013.671024, norm of subgrad 38.657871 stepsize= 1.000000 +dualbound = 3158485.708561, lowerbound=1242217.708561, norm of subgrad 1115.138874 dualbound = 3158485.708561, lowerbound=1242217.708561, norm of subgrad 37.881889 stepsize= 1.000000 +dualbound = 3158595.232920, lowerbound=1232397.232920, norm of subgrad 1110.721492 dualbound = 3158595.232920, lowerbound=1232397.232920, norm of subgrad 37.610163 stepsize= 1.000000 +dualbound = 3158710.318329, lowerbound=1237118.318329, norm of subgrad 1112.838856 dualbound = 3158710.318329, lowerbound=1237118.318329, norm of subgrad 37.511137 stepsize= 1.000000 +dualbound = 3158808.668067, lowerbound=1233154.668067, norm of subgrad 1111.074106 dualbound = 3158808.668067, lowerbound=1233154.668067, norm of subgrad 37.806742 stepsize= 1.000000 +dualbound = 3158926.477754, lowerbound=1236915.477754, norm of subgrad 1112.776922 dualbound = 3158926.477754, lowerbound=1236915.477754, norm of subgrad 38.403251 stepsize= 1.000000 +dualbound = 3159024.578769, lowerbound=1239525.578768, norm of subgrad 1113.972881 dualbound = 3159024.578769, lowerbound=1239525.578768, norm of subgrad 38.834276 stepsize= 1.000000 +dualbound = 3159100.626763, lowerbound=1237636.626763, norm of subgrad 1113.138189 dualbound = 3159100.626763, lowerbound=1237636.626763, norm of subgrad 38.936461 stepsize= 1.000000 +dualbound = 3159216.805954, lowerbound=1240102.805954, norm of subgrad 1114.225653 dualbound = 3159216.805954, lowerbound=1240102.805954, norm of subgrad 38.886748 stepsize= 1.000000 +dualbound = 3159354.143299, lowerbound=1235224.143299, norm of subgrad 1112.022996 dualbound = 3159354.143299, lowerbound=1235224.143299, norm of subgrad 38.837319 stepsize= 1.000000 +dualbound = 3159441.810811, lowerbound=1231125.810811, norm of subgrad 1110.152607 dualbound = 3159441.810811, lowerbound=1231125.810811, norm of subgrad 37.425493 stepsize= 1.000000 +dualbound = 3159582.287019, lowerbound=1234407.287019, norm of subgrad 1111.658800 dualbound = 3159582.287019, lowerbound=1234407.287019, norm of subgrad 38.967630 stepsize= 1.000000 +dualbound = 3159646.747388, lowerbound=1237368.747388, norm of subgrad 1112.990003 dualbound = 3159646.747388, lowerbound=1237368.747388, norm of subgrad 37.979736 stepsize= 1.000000 +dualbound = 3159765.828094, lowerbound=1239823.828094, norm of subgrad 1114.079812 dualbound = 3159765.828094, lowerbound=1239823.828094, norm of subgrad 38.328589 stepsize= 1.000000 +dualbound = 3159903.105356, lowerbound=1233075.105356, norm of subgrad 1111.017149 dualbound = 3159903.105356, lowerbound=1233075.105356, norm of subgrad 37.699831 stepsize= 1.000000 +dualbound = 3160014.767167, lowerbound=1238784.767167, norm of subgrad 1113.592280 dualbound = 3160014.767167, lowerbound=1238784.767167, norm of subgrad 37.611990 stepsize= 1.000000 +dualbound = 3160084.561689, lowerbound=1229808.561689, norm of subgrad 1109.556921 dualbound = 3160084.561689, lowerbound=1229808.561689, norm of subgrad 37.118655 stepsize= 1.000000 +dualbound = 3160225.066553, lowerbound=1240279.066553, norm of subgrad 1114.267502 dualbound = 3160225.066553, lowerbound=1240279.066553, norm of subgrad 38.124859 stepsize= 1.000000 +dualbound = 3160320.634295, lowerbound=1232176.634295, norm of subgrad 1110.619032 dualbound = 3160320.634295, lowerbound=1232176.634295, norm of subgrad 37.330520 stepsize= 1.000000 +dualbound = 3160443.453231, lowerbound=1238268.453231, norm of subgrad 1113.379743 dualbound = 3160443.453231, lowerbound=1238268.453231, norm of subgrad 38.325174 stepsize= 1.000000 +dualbound = 3160514.944391, lowerbound=1239190.944391, norm of subgrad 1113.806511 dualbound = 3160514.944391, lowerbound=1239190.944391, norm of subgrad 38.019615 stepsize= 1.000000 +dualbound = 3160635.707592, lowerbound=1234087.707592, norm of subgrad 1111.511002 dualbound = 3160635.707592, lowerbound=1234087.707592, norm of subgrad 38.597451 stepsize= 1.000000 +dualbound = 3160764.001432, lowerbound=1235249.001432, norm of subgrad 1111.994605 dualbound = 3160764.001432, lowerbound=1235249.001432, norm of subgrad 37.567191 stepsize= 1.000000 +dualbound = 3160891.357630, lowerbound=1235763.357630, norm of subgrad 1112.249234 dualbound = 3160891.357630, lowerbound=1235763.357630, norm of subgrad 38.240766 stepsize= 1.000000 +dualbound = 3160981.294960, lowerbound=1238604.294960, norm of subgrad 1113.534146 dualbound = 3160981.294960, lowerbound=1238604.294960, norm of subgrad 37.999175 stepsize= 1.000000 +dualbound = 3161065.326524, lowerbound=1237536.326524, norm of subgrad 1113.060792 dualbound = 3161065.326524, lowerbound=1237536.326524, norm of subgrad 38.105532 stepsize= 1.000000 +dualbound = 3161195.068555, lowerbound=1230932.068555, norm of subgrad 1110.090117 dualbound = 3161195.068555, lowerbound=1230932.068555, norm of subgrad 38.700672 stepsize= 1.000000 +dualbound = 3161280.709006, lowerbound=1239715.709006, norm of subgrad 1114.066744 dualbound = 3161280.709006, lowerbound=1239715.709006, norm of subgrad 38.918382 stepsize= 1.000000 +dualbound = 3161387.089348, lowerbound=1237911.089348, norm of subgrad 1113.214305 dualbound = 3161387.089348, lowerbound=1237911.089348, norm of subgrad 37.965515 stepsize= 1.000000 +dualbound = 3161531.893069, lowerbound=1231812.893069, norm of subgrad 1110.463819 dualbound = 3161531.893069, lowerbound=1231812.893069, norm of subgrad 38.233542 stepsize= 1.000000 +dualbound = 3161626.258574, lowerbound=1237603.258574, norm of subgrad 1113.076933 dualbound = 3161626.258574, lowerbound=1237603.258574, norm of subgrad 37.833391 stepsize= 1.000000 +dualbound = 3161729.687743, lowerbound=1236804.687743, norm of subgrad 1112.714558 dualbound = 3161729.687743, lowerbound=1236804.687743, norm of subgrad 37.847446 stepsize= 1.000000 +dualbound = 3161839.655484, lowerbound=1240345.655484, norm of subgrad 1114.306805 dualbound = 3161839.655484, lowerbound=1240345.655484, norm of subgrad 37.999576 stepsize= 1.000000 +dualbound = 3161966.856376, lowerbound=1240644.856376, norm of subgrad 1114.448230 dualbound = 3161966.856376, lowerbound=1240644.856376, norm of subgrad 38.434371 stepsize= 1.000000 +dualbound = 3162045.777860, lowerbound=1228788.777860, norm of subgrad 1109.114412 dualbound = 3162045.777860, lowerbound=1228788.777860, norm of subgrad 37.748132 stepsize= 1.000000 +dualbound = 3162161.703454, lowerbound=1235628.703454, norm of subgrad 1112.173864 dualbound = 3162161.703454, lowerbound=1235628.703454, norm of subgrad 37.655353 stepsize= 1.000000 +dualbound = 3162287.783369, lowerbound=1233962.783369, norm of subgrad 1111.421065 dualbound = 3162287.783369, lowerbound=1233962.783369, norm of subgrad 37.683948 stepsize= 1.000000 +dualbound = 3162397.277697, lowerbound=1240374.277697, norm of subgrad 1114.317853 dualbound = 3162397.277697, lowerbound=1240374.277697, norm of subgrad 37.940669 stepsize= 1.000000 +dualbound = 3162475.910063, lowerbound=1233474.910063, norm of subgrad 1111.234408 dualbound = 3162475.910063, lowerbound=1233474.910063, norm of subgrad 38.021472 stepsize= 1.000000 +dualbound = 3162593.452207, lowerbound=1238773.452207, norm of subgrad 1113.606058 dualbound = 3162593.452207, lowerbound=1238773.452207, norm of subgrad 38.243197 stepsize= 1.000000 +dualbound = 3162710.615045, lowerbound=1230482.615045, norm of subgrad 1109.860629 dualbound = 3162710.615045, lowerbound=1230482.615045, norm of subgrad 37.751329 stepsize= 1.000000 +dualbound = 3162813.836331, lowerbound=1238341.836331, norm of subgrad 1113.441438 dualbound = 3162813.836331, lowerbound=1238341.836331, norm of subgrad 38.900145 stepsize= 1.000000 +dualbound = 3162883.056656, lowerbound=1235960.056656, norm of subgrad 1112.366871 dualbound = 3162883.056656, lowerbound=1235960.056656, norm of subgrad 38.330410 stepsize= 1.000000 +dualbound = 3163021.286216, lowerbound=1233270.286216, norm of subgrad 1111.151334 dualbound = 3163021.286216, lowerbound=1233270.286216, norm of subgrad 39.054187 stepsize= 1.000000 +dualbound = 3163141.833543, lowerbound=1235141.833543, norm of subgrad 1111.986436 dualbound = 3163141.833543, lowerbound=1235141.833543, norm of subgrad 38.633500 stepsize= 1.000000 +dualbound = 3163219.245470, lowerbound=1239332.245470, norm of subgrad 1113.862310 dualbound = 3163219.245470, lowerbound=1239332.245470, norm of subgrad 37.873631 stepsize= 1.000000 +dualbound = 3163342.030320, lowerbound=1234258.030320, norm of subgrad 1111.605609 dualbound = 3163342.030320, lowerbound=1234258.030320, norm of subgrad 39.138023 stepsize= 1.000000 +dualbound = 3163435.482904, lowerbound=1242797.482904, norm of subgrad 1115.429282 dualbound = 3163435.482904, lowerbound=1242797.482904, norm of subgrad 38.450651 stepsize= 1.000000 +dualbound = 3163539.470559, lowerbound=1231868.470559, norm of subgrad 1110.502801 dualbound = 3163539.470559, lowerbound=1231868.470559, norm of subgrad 38.104956 stepsize= 1.000000 +dualbound = 3163655.869896, lowerbound=1245018.869896, norm of subgrad 1116.413843 dualbound = 3163655.869896, lowerbound=1245018.869896, norm of subgrad 38.436953 stepsize= 1.000000 +dualbound = 3163776.732538, lowerbound=1235427.732538, norm of subgrad 1112.105540 dualbound = 3163776.732538, lowerbound=1235427.732538, norm of subgrad 38.364862 stepsize= 1.000000 +dualbound = 3163860.277425, lowerbound=1238154.277425, norm of subgrad 1113.349126 dualbound = 3163860.277425, lowerbound=1238154.277425, norm of subgrad 38.412822 stepsize= 1.000000 +dualbound = 3163969.575755, lowerbound=1232466.575755, norm of subgrad 1110.777465 dualbound = 3163969.575755, lowerbound=1232466.575755, norm of subgrad 38.331427 stepsize= 1.000000 +dualbound = 3164079.241760, lowerbound=1242128.241760, norm of subgrad 1115.142700 dualbound = 3164079.241760, lowerbound=1242128.241760, norm of subgrad 39.046972 stepsize= 1.000000 +dualbound = 3164198.631259, lowerbound=1231618.631259, norm of subgrad 1110.389405 dualbound = 3164198.631259, lowerbound=1231618.631259, norm of subgrad 38.280406 stepsize= 1.000000 +dualbound = 3164330.048037, lowerbound=1233658.048037, norm of subgrad 1111.280814 dualbound = 3164330.048037, lowerbound=1233658.048037, norm of subgrad 37.661874 stepsize= 1.000000 +dualbound = 3164441.340194, lowerbound=1234752.340194, norm of subgrad 1111.786104 dualbound = 3164441.340194, lowerbound=1234752.340194, norm of subgrad 37.779520 stepsize= 1.000000 +dualbound = 3164559.825055, lowerbound=1238184.825055, norm of subgrad 1113.322875 dualbound = 3164559.825055, lowerbound=1238184.825055, norm of subgrad 37.702584 stepsize= 1.000000 +dualbound = 3164634.307910, lowerbound=1235144.307910, norm of subgrad 1111.978556 dualbound = 3164634.307910, lowerbound=1235144.307910, norm of subgrad 37.768808 stepsize= 1.000000 +dualbound = 3164752.955498, lowerbound=1236691.955498, norm of subgrad 1112.679179 dualbound = 3164752.955498, lowerbound=1236691.955498, norm of subgrad 38.492176 stepsize= 1.000000 +dualbound = 3164847.718388, lowerbound=1236176.718388, norm of subgrad 1112.475042 dualbound = 3164847.718388, lowerbound=1236176.718388, norm of subgrad 38.971309 stepsize= 1.000000 +dualbound = 3164933.209590, lowerbound=1236539.209590, norm of subgrad 1112.623121 dualbound = 3164933.209590, lowerbound=1236539.209590, norm of subgrad 38.425138 stepsize= 1.000000 +dualbound = 3165072.828457, lowerbound=1234103.828457, norm of subgrad 1111.490813 dualbound = 3165072.828457, lowerbound=1234103.828457, norm of subgrad 38.047587 stepsize= 1.000000 +dualbound = 3165182.740772, lowerbound=1237184.740772, norm of subgrad 1112.898352 dualbound = 3165182.740772, lowerbound=1237184.740772, norm of subgrad 38.313344 stepsize= 1.000000 +dualbound = 3165271.215689, lowerbound=1235942.215689, norm of subgrad 1112.350761 dualbound = 3165271.215689, lowerbound=1235942.215689, norm of subgrad 38.346772 stepsize= 1.000000 +dualbound = 3165387.720205, lowerbound=1241734.720205, norm of subgrad 1114.970726 dualbound = 3165387.720205, lowerbound=1241734.720205, norm of subgrad 39.261998 stepsize= 1.000000 +dualbound = 3165465.762269, lowerbound=1235320.762269, norm of subgrad 1112.108701 dualbound = 3165465.762269, lowerbound=1235320.762269, norm of subgrad 39.281574 stepsize= 1.000000 +dualbound = 3165582.670402, lowerbound=1240110.670402, norm of subgrad 1114.222451 dualbound = 3165582.670402, lowerbound=1240110.670402, norm of subgrad 38.702818 stepsize= 1.000000 +dualbound = 3165733.492569, lowerbound=1237058.492569, norm of subgrad 1112.809729 dualbound = 3165733.492569, lowerbound=1237058.492569, norm of subgrad 37.918626 stepsize= 1.000000 +dualbound = 3165847.754707, lowerbound=1243126.754707, norm of subgrad 1115.526671 dualbound = 3165847.754707, lowerbound=1243126.754707, norm of subgrad 37.245968 stepsize= 1.000000 +dualbound = 3165930.068989, lowerbound=1232871.068989, norm of subgrad 1110.975278 dualbound = 3165930.068989, lowerbound=1232871.068989, norm of subgrad 38.435846 stepsize= 1.000000 +dualbound = 3166023.285346, lowerbound=1238877.285346, norm of subgrad 1113.674677 dualbound = 3166023.285346, lowerbound=1238877.285346, norm of subgrad 38.564444 stepsize= 1.000000 +dualbound = 3166112.241679, lowerbound=1231710.241679, norm of subgrad 1110.427954 dualbound = 3166112.241679, lowerbound=1231710.241679, norm of subgrad 37.801539 stepsize= 1.000000 +dualbound = 3166249.674170, lowerbound=1239207.674170, norm of subgrad 1113.796065 dualbound = 3166249.674170, lowerbound=1239207.674170, norm of subgrad 38.359256 stepsize= 1.000000 +dualbound = 3166370.381686, lowerbound=1235064.381686, norm of subgrad 1111.927328 dualbound = 3166370.381686, lowerbound=1235064.381686, norm of subgrad 37.930298 stepsize= 1.000000 +dualbound = 3166459.132631, lowerbound=1239875.132631, norm of subgrad 1114.104633 dualbound = 3166459.132631, lowerbound=1239875.132631, norm of subgrad 37.983562 stepsize= 1.000000 +dualbound = 3166561.200058, lowerbound=1229438.200058, norm of subgrad 1109.413449 dualbound = 3166561.200058, lowerbound=1229438.200058, norm of subgrad 38.236990 stepsize= 1.000000 +dualbound = 3166692.013588, lowerbound=1237185.013588, norm of subgrad 1112.916445 dualbound = 3166692.013588, lowerbound=1237185.013588, norm of subgrad 39.100045 stepsize= 1.000000 +dualbound = 3166785.429966, lowerbound=1239860.429966, norm of subgrad 1114.077390 dualbound = 3166785.429966, lowerbound=1239860.429966, norm of subgrad 37.435496 stepsize= 1.000000 +dualbound = 3166884.768712, lowerbound=1235599.768712, norm of subgrad 1112.173444 dualbound = 3166884.768712, lowerbound=1235599.768712, norm of subgrad 37.806597 stepsize= 1.000000 +dualbound = 3167015.505074, lowerbound=1238923.505074, norm of subgrad 1113.663551 dualbound = 3167015.505074, lowerbound=1238923.505074, norm of subgrad 38.127895 stepsize= 1.000000 +dualbound = 3167130.270381, lowerbound=1235923.270381, norm of subgrad 1112.310780 dualbound = 3167130.270381, lowerbound=1235923.270381, norm of subgrad 37.772547 stepsize= 1.000000 +dualbound = 3167225.300750, lowerbound=1233184.300750, norm of subgrad 1111.095541 dualbound = 3167225.300750, lowerbound=1233184.300750, norm of subgrad 38.000400 stepsize= 1.000000 +dualbound = 3167335.122470, lowerbound=1241199.122470, norm of subgrad 1114.708986 dualbound = 3167335.122470, lowerbound=1241199.122470, norm of subgrad 38.559327 stepsize= 1.000000 +dualbound = 3167421.602772, lowerbound=1236892.602772, norm of subgrad 1112.752714 dualbound = 3167421.602772, lowerbound=1236892.602772, norm of subgrad 37.582979 stepsize= 1.000000 +dualbound = 3167549.397072, lowerbound=1237044.397072, norm of subgrad 1112.835296 dualbound = 3167549.397072, lowerbound=1237044.397072, norm of subgrad 38.546002 stepsize= 1.000000 +dualbound = 3167641.583372, lowerbound=1238969.583372, norm of subgrad 1113.704891 dualbound = 3167641.583372, lowerbound=1238969.583372, norm of subgrad 38.225467 stepsize= 1.000000 +dualbound = 3167764.914843, lowerbound=1238299.914843, norm of subgrad 1113.411386 dualbound = 3167764.914843, lowerbound=1238299.914843, norm of subgrad 38.837243 stepsize= 1.000000 +dualbound = 3167835.447478, lowerbound=1234676.447478, norm of subgrad 1111.789750 dualbound = 3167835.447478, lowerbound=1234676.447478, norm of subgrad 38.347524 stepsize= 1.000000 +dualbound = 3167972.784730, lowerbound=1237274.784730, norm of subgrad 1112.935211 dualbound = 3167972.784730, lowerbound=1237274.784730, norm of subgrad 38.566012 stepsize= 1.000000 +dualbound = 3168080.664284, lowerbound=1238758.664284, norm of subgrad 1113.612888 dualbound = 3168080.664284, lowerbound=1238758.664284, norm of subgrad 38.508175 stepsize= 1.000000 +dualbound = 3168193.665527, lowerbound=1235829.665527, norm of subgrad 1112.279491 dualbound = 3168193.665527, lowerbound=1235829.665527, norm of subgrad 38.065749 stepsize= 1.000000 +dualbound = 3168295.748907, lowerbound=1237983.748907, norm of subgrad 1113.247389 dualbound = 3168295.748907, lowerbound=1237983.748907, norm of subgrad 37.922070 stepsize= 1.000000 +dualbound = 3168400.855591, lowerbound=1235483.855591, norm of subgrad 1112.116386 dualbound = 3168400.855591, lowerbound=1235483.855591, norm of subgrad 37.737338 stepsize= 1.000000 +dualbound = 3168525.575273, lowerbound=1236109.575273, norm of subgrad 1112.353170 dualbound = 3168525.575273, lowerbound=1236109.575273, norm of subgrad 36.670420 stepsize= 1.000000 +dualbound = 3168647.601003, lowerbound=1237997.601003, norm of subgrad 1113.235645 dualbound = 3168647.601003, lowerbound=1237997.601003, norm of subgrad 37.656682 stepsize= 1.000000 +dualbound = 3168730.960690, lowerbound=1237080.960690, norm of subgrad 1112.849029 dualbound = 3168730.960690, lowerbound=1237080.960690, norm of subgrad 37.886141 stepsize= 1.000000 +dualbound = 3168849.546012, lowerbound=1240550.546012, norm of subgrad 1114.414441 dualbound = 3168849.546012, lowerbound=1240550.546012, norm of subgrad 38.569228 stepsize= 1.000000 +dualbound = 3168928.840337, lowerbound=1237639.840337, norm of subgrad 1113.085280 dualbound = 3168928.840337, lowerbound=1237639.840337, norm of subgrad 37.393774 stepsize= 1.000000 +dualbound = 3169045.510297, lowerbound=1240225.510297, norm of subgrad 1114.256034 dualbound = 3169045.510297, lowerbound=1240225.510297, norm of subgrad 38.179444 stepsize= 1.000000 +dualbound = 3169164.933199, lowerbound=1227214.933199, norm of subgrad 1108.372200 dualbound = 3169164.933199, lowerbound=1227214.933199, norm of subgrad 37.328580 stepsize= 1.000000 +dualbound = 3169267.734351, lowerbound=1245360.734351, norm of subgrad 1116.563807 dualbound = 3169267.734351, lowerbound=1245360.734351, norm of subgrad 38.168065 stepsize= 1.000000 +dualbound = 3169362.872018, lowerbound=1233115.872018, norm of subgrad 1111.077347 dualbound = 3169362.872018, lowerbound=1233115.872018, norm of subgrad 38.368446 stepsize= 1.000000 +dualbound = 3169441.222714, lowerbound=1243146.222714, norm of subgrad 1115.588285 dualbound = 3169441.222714, lowerbound=1243146.222714, norm of subgrad 38.332111 stepsize= 1.000000 +dualbound = 3169575.128522, lowerbound=1232482.128522, norm of subgrad 1110.792568 dualbound = 3169575.128522, lowerbound=1232482.128522, norm of subgrad 38.883233 stepsize= 1.000000 +dualbound = 3169687.551007, lowerbound=1238547.551007, norm of subgrad 1113.509565 dualbound = 3169687.551007, lowerbound=1238547.551007, norm of subgrad 38.320001 stepsize= 1.000000 +dualbound = 3169786.302909, lowerbound=1236773.302909, norm of subgrad 1112.695512 dualbound = 3169786.302909, lowerbound=1236773.302909, norm of subgrad 37.639765 stepsize= 1.000000 +dualbound = 3169914.219255, lowerbound=1237148.219255, norm of subgrad 1112.900364 dualbound = 3169914.219255, lowerbound=1237148.219255, norm of subgrad 39.075777 stepsize= 1.000000 +dualbound = 3169987.915125, lowerbound=1241186.915125, norm of subgrad 1114.674802 dualbound = 3169987.915125, lowerbound=1241186.915125, norm of subgrad 37.238366 stepsize= 1.000000 +dualbound = 3170126.353268, lowerbound=1232913.353268, norm of subgrad 1110.955604 dualbound = 3170126.353268, lowerbound=1232913.353268, norm of subgrad 38.045212 stepsize= 1.000000 +dualbound = 3170220.539073, lowerbound=1238846.539073, norm of subgrad 1113.644710 dualbound = 3170220.539073, lowerbound=1238846.539073, norm of subgrad 38.107556 stepsize= 1.000000 +dualbound = 3170354.739148, lowerbound=1236083.739148, norm of subgrad 1112.383809 dualbound = 3170354.739148, lowerbound=1236083.739148, norm of subgrad 38.055224 stepsize= 1.000000 +dualbound = 3170439.705091, lowerbound=1235009.705091, norm of subgrad 1111.893298 dualbound = 3170439.705091, lowerbound=1235009.705091, norm of subgrad 37.174803 stepsize= 1.000000 +dualbound = 3170546.470645, lowerbound=1239130.470645, norm of subgrad 1113.747939 dualbound = 3170546.470645, lowerbound=1239130.470645, norm of subgrad 37.560159 stepsize= 1.000000 +dualbound = 3170688.197668, lowerbound=1235063.197668, norm of subgrad 1111.933090 dualbound = 3170688.197668, lowerbound=1235063.197668, norm of subgrad 38.389152 stepsize= 1.000000 +dualbound = 3170752.483789, lowerbound=1239644.483789, norm of subgrad 1114.013233 dualbound = 3170752.483789, lowerbound=1239644.483789, norm of subgrad 38.016919 stepsize= 1.000000 +dualbound = 3170872.791563, lowerbound=1237206.791563, norm of subgrad 1112.915896 dualbound = 3170872.791563, lowerbound=1237206.791563, norm of subgrad 38.669210 stepsize= 1.000000 +dualbound = 3170985.060936, lowerbound=1236425.060936, norm of subgrad 1112.565531 dualbound = 3170985.060936, lowerbound=1236425.060936, norm of subgrad 38.591053 stepsize= 1.000000 +dualbound = 3171082.171828, lowerbound=1235988.171828, norm of subgrad 1112.406927 dualbound = 3171082.171828, lowerbound=1235988.171828, norm of subgrad 39.472913 stepsize= 1.000000 +dualbound = 3171144.631572, lowerbound=1234629.631572, norm of subgrad 1111.739012 dualbound = 3171144.631572, lowerbound=1234629.631572, norm of subgrad 37.369235 stepsize= 1.000000 +dualbound = 3171313.879402, lowerbound=1237225.879402, norm of subgrad 1112.924921 dualbound = 3171313.879402, lowerbound=1237225.879402, norm of subgrad 39.309640 stepsize= 1.000000 +dualbound = 3171409.238740, lowerbound=1237108.238740, norm of subgrad 1112.850951 dualbound = 3171409.238740, lowerbound=1237108.238740, norm of subgrad 37.740685 stepsize= 1.000000 +dualbound = 3171539.234704, lowerbound=1236017.234704, norm of subgrad 1112.351669 dualbound = 3171539.234704, lowerbound=1236017.234704, norm of subgrad 37.934100 stepsize= 1.000000 +dualbound = 3171647.593652, lowerbound=1235372.593652, norm of subgrad 1112.090191 dualbound = 3171647.593652, lowerbound=1235372.593652, norm of subgrad 38.475433 stepsize= 1.000000 +dualbound = 3171707.602511, lowerbound=1235168.602511, norm of subgrad 1111.997573 dualbound = 3171707.602511, lowerbound=1235168.602511, norm of subgrad 37.815458 stepsize= 1.000000 +dualbound = 3171840.589882, lowerbound=1237721.589882, norm of subgrad 1113.120654 dualbound = 3171840.589882, lowerbound=1237721.589882, norm of subgrad 38.065567 stepsize= 1.000000 +dualbound = 3171953.002947, lowerbound=1239637.002947, norm of subgrad 1113.986536 dualbound = 3171953.002947, lowerbound=1239637.002947, norm of subgrad 37.965946 stepsize= 1.000000 +dualbound = 3172067.404859, lowerbound=1234925.404859, norm of subgrad 1111.865282 dualbound = 3172067.404859, lowerbound=1234925.404859, norm of subgrad 37.860295 stepsize= 1.000000 +dualbound = 3172160.889336, lowerbound=1239427.889336, norm of subgrad 1113.922300 dualbound = 3172160.889336, lowerbound=1239427.889336, norm of subgrad 38.580882 stepsize= 1.000000 +dualbound = 3172270.398473, lowerbound=1231605.398473, norm of subgrad 1110.411815 dualbound = 3172270.398473, lowerbound=1231605.398473, norm of subgrad 38.968053 stepsize= 1.000000 +dualbound = 3172371.115150, lowerbound=1238621.115150, norm of subgrad 1113.527330 dualbound = 3172371.115150, lowerbound=1238621.115150, norm of subgrad 37.718917 stepsize= 1.000000 +dualbound = 3172505.999631, lowerbound=1239770.999631, norm of subgrad 1114.062835 dualbound = 3172505.999631, lowerbound=1239770.999631, norm of subgrad 38.728342 stepsize= 1.000000 +dualbound = 3172613.691242, lowerbound=1243500.691242, norm of subgrad 1115.693816 dualbound = 3172613.691242, lowerbound=1243500.691242, norm of subgrad 37.144200 stepsize= 1.000000 +dualbound = 3172738.980169, lowerbound=1236210.980169, norm of subgrad 1112.409987 dualbound = 3172738.980169, lowerbound=1236210.980169, norm of subgrad 37.017414 stepsize= 1.000000 +dualbound = 3172833.946208, lowerbound=1235560.946208, norm of subgrad 1112.142053 dualbound = 3172833.946208, lowerbound=1235560.946208, norm of subgrad 37.335855 stepsize= 1.000000 +dualbound = 3172943.301294, lowerbound=1238145.301294, norm of subgrad 1113.327131 dualbound = 3172943.301294, lowerbound=1238145.301294, norm of subgrad 38.227674 stepsize= 1.000000 +dualbound = 3173027.083387, lowerbound=1239690.083387, norm of subgrad 1114.025621 dualbound = 3173027.083387, lowerbound=1239690.083387, norm of subgrad 38.036589 stepsize= 1.000000 +dualbound = 3173142.421328, lowerbound=1234508.421328, norm of subgrad 1111.684947 dualbound = 3173142.421328, lowerbound=1234508.421328, norm of subgrad 38.083303 stepsize= 1.000000 +dualbound = 3173241.622066, lowerbound=1238506.622066, norm of subgrad 1113.509148 dualbound = 3173241.622066, lowerbound=1238506.622066, norm of subgrad 38.667826 stepsize= 1.000000 +dualbound = 3173335.696329, lowerbound=1234783.696329, norm of subgrad 1111.816845 dualbound = 3173335.696329, lowerbound=1234783.696329, norm of subgrad 38.040429 stepsize= 1.000000 +dualbound = 3173438.876436, lowerbound=1237180.876436, norm of subgrad 1112.908746 dualbound = 3173438.876436, lowerbound=1237180.876436, norm of subgrad 38.576938 stepsize= 1.000000 +dualbound = 3173583.363632, lowerbound=1238527.363632, norm of subgrad 1113.482988 dualbound = 3173583.363632, lowerbound=1238527.363632, norm of subgrad 38.229402 stepsize= 1.000000 +dualbound = 3173659.885445, lowerbound=1233405.885445, norm of subgrad 1111.211449 dualbound = 3173659.885445, lowerbound=1233405.885445, norm of subgrad 38.229855 stepsize= 1.000000 +dualbound = 3173763.279645, lowerbound=1237600.279645, norm of subgrad 1113.110632 dualbound = 3173763.279645, lowerbound=1237600.279645, norm of subgrad 38.966578 stepsize= 1.000000 +dualbound = 3173873.031603, lowerbound=1232136.031603, norm of subgrad 1110.605255 dualbound = 3173873.031603, lowerbound=1232136.031603, norm of subgrad 37.653047 stepsize= 1.000000 +dualbound = 3173999.565156, lowerbound=1235284.565156, norm of subgrad 1112.040271 dualbound = 3173999.565156, lowerbound=1235284.565156, norm of subgrad 38.412674 stepsize= 1.000000 +dualbound = 3174088.683194, lowerbound=1240846.683194, norm of subgrad 1114.542814 dualbound = 3174088.683194, lowerbound=1240846.683194, norm of subgrad 38.054146 stepsize= 1.000000 +dualbound = 3174204.797311, lowerbound=1236557.797311, norm of subgrad 1112.614847 dualbound = 3174204.797311, lowerbound=1236557.797311, norm of subgrad 38.342067 stepsize= 1.000000 +dualbound = 3174312.249190, lowerbound=1238290.249190, norm of subgrad 1113.385490 dualbound = 3174312.249190, lowerbound=1238290.249190, norm of subgrad 38.005945 stepsize= 1.000000 +dualbound = 3174431.115605, lowerbound=1232410.115605, norm of subgrad 1110.737645 dualbound = 3174431.115605, lowerbound=1232410.115605, norm of subgrad 38.037697 stepsize= 1.000000 +dualbound = 3174514.360081, lowerbound=1238921.360081, norm of subgrad 1113.681894 dualbound = 3174514.360081, lowerbound=1238921.360081, norm of subgrad 38.068944 stepsize= 1.000000 +dualbound = 3174637.142961, lowerbound=1241009.142961, norm of subgrad 1114.597301 dualbound = 3174637.142961, lowerbound=1241009.142961, norm of subgrad 37.957646 stepsize= 1.000000 +dualbound = 3174749.589647, lowerbound=1238057.589647, norm of subgrad 1113.267977 dualbound = 3174749.589647, lowerbound=1238057.589647, norm of subgrad 37.688814 stepsize= 1.000000 +dualbound = 3174866.462840, lowerbound=1240439.462840, norm of subgrad 1114.361460 dualbound = 3174866.462840, lowerbound=1240439.462840, norm of subgrad 38.456120 stepsize= 1.000000 +dualbound = 3174950.253882, lowerbound=1235368.253882, norm of subgrad 1112.066209 dualbound = 3174950.253882, lowerbound=1235368.253882, norm of subgrad 37.507213 stepsize= 1.000000 +dualbound = 3175074.186078, lowerbound=1237368.186078, norm of subgrad 1112.967738 dualbound = 3175074.186078, lowerbound=1237368.186078, norm of subgrad 38.117348 stepsize= 1.000000 +dualbound = 3175191.670049, lowerbound=1240784.670049, norm of subgrad 1114.487178 dualbound = 3175191.670049, lowerbound=1240784.670049, norm of subgrad 37.609626 stepsize= 1.000000 +dualbound = 3175287.750988, lowerbound=1239308.750988, norm of subgrad 1113.827523 dualbound = 3175287.750988, lowerbound=1239308.750988, norm of subgrad 37.404290 stepsize= 1.000000 +dualbound = 3175406.694115, lowerbound=1239153.694115, norm of subgrad 1113.774526 dualbound = 3175406.694115, lowerbound=1239153.694115, norm of subgrad 38.196114 stepsize= 1.000000 +dualbound = 3175495.152576, lowerbound=1232637.152576, norm of subgrad 1110.831739 dualbound = 3175495.152576, lowerbound=1232637.152576, norm of subgrad 37.395969 stepsize= 1.000000 +dualbound = 3175598.166153, lowerbound=1234470.166153, norm of subgrad 1111.694727 dualbound = 3175598.166153, lowerbound=1234470.166153, norm of subgrad 38.704180 stepsize= 1.000000 +dualbound = 3175696.919047, lowerbound=1238581.919047, norm of subgrad 1113.500749 dualbound = 3175696.919047, lowerbound=1238581.919047, norm of subgrad 37.426633 stepsize= 1.000000 +dualbound = 3175837.610283, lowerbound=1232087.610283, norm of subgrad 1110.575801 dualbound = 3175837.610283, lowerbound=1232087.610283, norm of subgrad 37.837696 stepsize= 1.000000 +dualbound = 3175927.252433, lowerbound=1239312.252433, norm of subgrad 1113.827748 dualbound = 3175927.252433, lowerbound=1239312.252433, norm of subgrad 37.277904 stepsize= 1.000000 +dualbound = 3176029.367086, lowerbound=1235770.367086, norm of subgrad 1112.278458 dualbound = 3176029.367086, lowerbound=1235770.367086, norm of subgrad 38.666712 stepsize= 1.000000 +dualbound = 3176120.950636, lowerbound=1243429.950636, norm of subgrad 1115.690795 dualbound = 3176120.950636, lowerbound=1243429.950636, norm of subgrad 37.783377 stepsize= 1.000000 +dualbound = 3176255.016371, lowerbound=1239435.016371, norm of subgrad 1113.868940 dualbound = 3176255.016371, lowerbound=1239435.016371, norm of subgrad 37.457519 stepsize= 1.000000 +dualbound = 3176361.606960, lowerbound=1237341.606960, norm of subgrad 1112.939624 dualbound = 3176361.606960, lowerbound=1237341.606960, norm of subgrad 37.411102 stepsize= 1.000000 +dualbound = 3176487.158757, lowerbound=1238769.158757, norm of subgrad 1113.584374 dualbound = 3176487.158757, lowerbound=1238769.158757, norm of subgrad 37.769721 stepsize= 1.000000 +dualbound = 3176549.318572, lowerbound=1234457.318572, norm of subgrad 1111.636325 dualbound = 3176549.318572, lowerbound=1234457.318572, norm of subgrad 36.608193 stepsize= 1.000000 +dualbound = 3176731.694004, lowerbound=1240355.694004, norm of subgrad 1114.282143 dualbound = 3176731.694004, lowerbound=1240355.694004, norm of subgrad 38.096922 stepsize= 1.000000 +dualbound = 3176785.286759, lowerbound=1235458.286759, norm of subgrad 1112.105789 dualbound = 3176785.286759, lowerbound=1235458.286759, norm of subgrad 37.075501 stepsize= 1.000000 +dualbound = 3176892.369574, lowerbound=1238455.369574, norm of subgrad 1113.476704 dualbound = 3176892.369574, lowerbound=1238455.369574, norm of subgrad 38.497829 stepsize= 1.000000 +dualbound = 3176966.410340, lowerbound=1241380.410340, norm of subgrad 1114.799718 dualbound = 3176966.410340, lowerbound=1241380.410340, norm of subgrad 38.367183 stepsize= 1.000000 +dualbound = 3177108.230453, lowerbound=1236855.230453, norm of subgrad 1112.785348 dualbound = 3177108.230453, lowerbound=1236855.230453, norm of subgrad 39.721784 stepsize= 1.000000 +dualbound = 3177167.046734, lowerbound=1239003.046734, norm of subgrad 1113.724403 dualbound = 3177167.046734, lowerbound=1239003.046734, norm of subgrad 37.918548 stepsize= 1.000000 +dualbound = 3177314.153096, lowerbound=1235160.153096, norm of subgrad 1112.009511 dualbound = 3177314.153096, lowerbound=1235160.153096, norm of subgrad 39.396781 stepsize= 1.000000 +dualbound = 3177406.195571, lowerbound=1238046.195571, norm of subgrad 1113.299688 dualbound = 3177406.195571, lowerbound=1238046.195571, norm of subgrad 38.497305 stepsize= 1.000000 +dualbound = 3177506.273693, lowerbound=1237250.273693, norm of subgrad 1112.965082 dualbound = 3177506.273693, lowerbound=1237250.273693, norm of subgrad 39.256568 stepsize= 1.000000 +dualbound = 3177605.901359, lowerbound=1234499.901359, norm of subgrad 1111.677967 dualbound = 3177605.901359, lowerbound=1234499.901359, norm of subgrad 37.783960 stepsize= 1.000000 +dualbound = 3177736.407847, lowerbound=1236936.407847, norm of subgrad 1112.771498 dualbound = 3177736.407847, lowerbound=1236936.407847, norm of subgrad 38.137993 stepsize= 1.000000 +dualbound = 3177861.486602, lowerbound=1240770.486602, norm of subgrad 1114.481263 dualbound = 3177861.486602, lowerbound=1240770.486602, norm of subgrad 37.723716 stepsize= 1.000000 +dualbound = 3177964.680978, lowerbound=1239257.680978, norm of subgrad 1113.800557 dualbound = 3177964.680978, lowerbound=1239257.680978, norm of subgrad 37.379063 stepsize= 1.000000 +dualbound = 3178064.702323, lowerbound=1237613.702323, norm of subgrad 1113.096448 dualbound = 3178064.702323, lowerbound=1237613.702323, norm of subgrad 38.340857 stepsize= 1.000000 +dualbound = 3178160.066120, lowerbound=1235856.066120, norm of subgrad 1112.286414 dualbound = 3178160.066120, lowerbound=1235856.066120, norm of subgrad 37.687714 stepsize= 1.000000 +dualbound = 3178266.838810, lowerbound=1239445.838810, norm of subgrad 1113.895794 dualbound = 3178266.838810, lowerbound=1239445.838810, norm of subgrad 37.746161 stepsize= 1.000000 +dualbound = 3178397.266307, lowerbound=1239394.266307, norm of subgrad 1113.867257 dualbound = 3178397.266307, lowerbound=1239394.266307, norm of subgrad 37.900231 stepsize= 1.000000 +dualbound = 3178484.989763, lowerbound=1238718.989763, norm of subgrad 1113.581155 dualbound = 3178484.989763, lowerbound=1238718.989763, norm of subgrad 37.838122 stepsize= 1.000000 +dualbound = 3178574.304172, lowerbound=1235972.304172, norm of subgrad 1112.327876 dualbound = 3178574.304172, lowerbound=1235972.304172, norm of subgrad 37.286920 stepsize= 1.000000 +dualbound = 3178728.588033, lowerbound=1235490.588033, norm of subgrad 1112.106824 dualbound = 3178728.588033, lowerbound=1235490.588033, norm of subgrad 38.016889 stepsize= 1.000000 +dualbound = 3178812.450636, lowerbound=1243796.450636, norm of subgrad 1115.827249 dualbound = 3178812.450636, lowerbound=1243796.450636, norm of subgrad 36.849187 stepsize= 1.000000 +dualbound = 3178930.708455, lowerbound=1239141.708455, norm of subgrad 1113.750739 dualbound = 3178930.708455, lowerbound=1239141.708455, norm of subgrad 37.646485 stepsize= 1.000000 +dualbound = 3179020.699566, lowerbound=1238277.699566, norm of subgrad 1113.348867 dualbound = 3179020.699566, lowerbound=1238277.699566, norm of subgrad 36.850931 stepsize= 1.000000 +dualbound = 3179144.846223, lowerbound=1234432.846223, norm of subgrad 1111.655903 dualbound = 3179144.846223, lowerbound=1234432.846223, norm of subgrad 38.342492 stepsize= 1.000000 +dualbound = 3179207.560847, lowerbound=1234006.560847, norm of subgrad 1111.433561 dualbound = 3179207.560847, lowerbound=1234006.560847, norm of subgrad 36.615770 stepsize= 1.000000 +dualbound = 3179369.887947, lowerbound=1242176.887947, norm of subgrad 1115.130884 dualbound = 3179369.887947, lowerbound=1242176.887947, norm of subgrad 38.759865 stepsize= 1.000000 +dualbound = 3179430.692100, lowerbound=1235702.692100, norm of subgrad 1112.239494 dualbound = 3179430.692100, lowerbound=1235702.692100, norm of subgrad 37.878809 stepsize= 1.000000 +dualbound = 3179547.718809, lowerbound=1240479.718809, norm of subgrad 1114.354844 dualbound = 3179547.718809, lowerbound=1240479.718809, norm of subgrad 37.736278 stepsize= 1.000000 +dualbound = 3179639.961098, lowerbound=1235426.961098, norm of subgrad 1112.106992 dualbound = 3179639.961098, lowerbound=1235426.961098, norm of subgrad 38.042638 stepsize= 1.000000 +dualbound = 3179753.502844, lowerbound=1235882.502844, norm of subgrad 1112.335607 dualbound = 3179753.502844, lowerbound=1235882.502844, norm of subgrad 39.006945 stepsize= 1.000000 +dualbound = 3179838.872135, lowerbound=1244744.872135, norm of subgrad 1116.299186 dualbound = 3179838.872135, lowerbound=1244744.872135, norm of subgrad 38.267078 stepsize= 1.000000 +dualbound = 3179961.810689, lowerbound=1237142.810689, norm of subgrad 1112.885803 dualbound = 3179961.810689, lowerbound=1237142.810689, norm of subgrad 38.664435 stepsize= 1.000000 +dualbound = 3180044.646053, lowerbound=1240770.646053, norm of subgrad 1114.533825 dualbound = 3180044.646053, lowerbound=1240770.646053, norm of subgrad 38.701878 stepsize= 1.000000 +dualbound = 3180163.318844, lowerbound=1237464.318844, norm of subgrad 1113.033835 dualbound = 3180163.318844, lowerbound=1237464.318844, norm of subgrad 38.712695 stepsize= 1.000000 +dualbound = 3180276.710916, lowerbound=1233286.710916, norm of subgrad 1111.132175 dualbound = 3180276.710916, lowerbound=1233286.710916, norm of subgrad 37.965670 stepsize= 1.000000 +dualbound = 3180385.648778, lowerbound=1238707.648778, norm of subgrad 1113.584145 dualbound = 3180385.648778, lowerbound=1238707.648778, norm of subgrad 38.352808 stepsize= 1.000000 +dualbound = 3180493.463019, lowerbound=1240735.463019, norm of subgrad 1114.502339 dualbound = 3180493.463019, lowerbound=1240735.463019, norm of subgrad 38.572195 stepsize= 1.000000 +dualbound = 3180588.040615, lowerbound=1236300.040615, norm of subgrad 1112.476085 dualbound = 3180588.040615, lowerbound=1236300.040615, norm of subgrad 37.384189 stepsize= 1.000000 +dualbound = 3180737.899868, lowerbound=1241328.899868, norm of subgrad 1114.701709 dualbound = 3180737.899868, lowerbound=1241328.899868, norm of subgrad 37.159915 stepsize= 1.000000 +dualbound = 3180816.862570, lowerbound=1236755.862570, norm of subgrad 1112.695764 dualbound = 3180816.862570, lowerbound=1236755.862570, norm of subgrad 37.615990 stepsize= 1.000000 +dualbound = 3180892.600525, lowerbound=1235827.600525, norm of subgrad 1112.292947 dualbound = 3180892.600525, lowerbound=1235827.600525, norm of subgrad 37.996552 stepsize= 1.000000 +dualbound = 3181008.575279, lowerbound=1239370.575279, norm of subgrad 1113.867396 dualbound = 3181008.575279, lowerbound=1239370.575279, norm of subgrad 38.025975 stepsize= 1.000000 +dualbound = 3181150.686700, lowerbound=1238886.686700, norm of subgrad 1113.616041 dualbound = 3181150.686700, lowerbound=1238886.686700, norm of subgrad 37.364574 stepsize= 1.000000 +dualbound = 3181242.633029, lowerbound=1236836.633029, norm of subgrad 1112.706894 dualbound = 3181242.633029, lowerbound=1236836.633029, norm of subgrad 37.039794 stepsize= 1.000000 +dualbound = 3181353.615394, lowerbound=1240539.615394, norm of subgrad 1114.389346 dualbound = 3181353.615394, lowerbound=1240539.615394, norm of subgrad 37.881161 stepsize= 1.000000 +dualbound = 3181452.389988, lowerbound=1238178.389988, norm of subgrad 1113.299775 dualbound = 3181452.389988, lowerbound=1238178.389988, norm of subgrad 36.834421 stepsize= 1.000000 +dualbound = 3181595.710066, lowerbound=1240782.710066, norm of subgrad 1114.505141 dualbound = 3181595.710066, lowerbound=1240782.710066, norm of subgrad 38.500910 stepsize= 1.000000 +dualbound = 3181637.128602, lowerbound=1235080.128602, norm of subgrad 1111.953294 dualbound = 3181637.128602, lowerbound=1235080.128602, norm of subgrad 37.435525 stepsize= 1.000000 +dualbound = 3181780.926719, lowerbound=1233832.926719, norm of subgrad 1111.406733 dualbound = 3181780.926719, lowerbound=1233832.926719, norm of subgrad 39.189260 stepsize= 1.000000 +dualbound = 3181845.911940, lowerbound=1241875.911940, norm of subgrad 1115.025969 dualbound = 3181845.911940, lowerbound=1241875.911940, norm of subgrad 38.366460 stepsize= 1.000000 +dualbound = 3181968.532663, lowerbound=1240901.532663, norm of subgrad 1114.601962 dualbound = 3181968.532663, lowerbound=1240901.532663, norm of subgrad 39.479371 stepsize= 1.000000 +dualbound = 3182075.477052, lowerbound=1240764.477052, norm of subgrad 1114.496064 dualbound = 3182075.477052, lowerbound=1240764.477052, norm of subgrad 37.999268 stepsize= 1.000000 +dualbound = 3182193.924933, lowerbound=1235938.924933, norm of subgrad 1112.339393 dualbound = 3182193.924933, lowerbound=1235938.924933, norm of subgrad 38.450590 stepsize= 1.000000 +dualbound = 3182289.469628, lowerbound=1237312.469628, norm of subgrad 1112.909911 dualbound = 3182289.469628, lowerbound=1237312.469628, norm of subgrad 36.763361 stepsize= 1.000000 +dualbound = 3182452.808261, lowerbound=1239355.808261, norm of subgrad 1113.841465 dualbound = 3182452.808261, lowerbound=1239355.808261, norm of subgrad 38.083312 stepsize= 1.000000 +dualbound = 3182494.001691, lowerbound=1237542.001691, norm of subgrad 1113.041779 dualbound = 3182494.001691, lowerbound=1237542.001691, norm of subgrad 36.894355 stepsize= 1.000000 +dualbound = 3182643.912670, lowerbound=1242163.912670, norm of subgrad 1115.133137 dualbound = 3182643.912670, lowerbound=1242163.912670, norm of subgrad 38.831829 stepsize= 1.000000 +dualbound = 3182716.640300, lowerbound=1236267.640300, norm of subgrad 1112.449837 dualbound = 3182716.640300, lowerbound=1236267.640300, norm of subgrad 36.738639 stepsize= 1.000000 +dualbound = 3182849.385419, lowerbound=1234404.385419, norm of subgrad 1111.640403 dualbound = 3182849.385419, lowerbound=1234404.385419, norm of subgrad 38.376361 stepsize= 1.000000 +dualbound = 3182924.330193, lowerbound=1244843.330193, norm of subgrad 1116.319547 dualbound = 3182924.330193, lowerbound=1244843.330193, norm of subgrad 37.429197 stepsize= 1.000000 +dualbound = 3183048.328060, lowerbound=1237061.328060, norm of subgrad 1112.824931 dualbound = 3183048.328060, lowerbound=1237061.328060, norm of subgrad 37.973647 stepsize= 1.000000 +dualbound = 3183153.801515, lowerbound=1243731.801515, norm of subgrad 1115.874456 dualbound = 3183153.801515, lowerbound=1243731.801515, norm of subgrad 39.363352 stepsize= 1.000000 +dualbound = 3183234.414494, lowerbound=1238652.414494, norm of subgrad 1113.572815 dualbound = 3183234.414494, lowerbound=1238652.414494, norm of subgrad 38.374640 stepsize= 1.000000 +dualbound = 3183372.158419, lowerbound=1234736.158419, norm of subgrad 1111.808058 dualbound = 3183372.158419, lowerbound=1234736.158419, norm of subgrad 38.971065 stepsize= 1.000000 +dualbound = 3183452.081123, lowerbound=1236616.081123, norm of subgrad 1112.643735 dualbound = 3183452.081123, lowerbound=1236616.081123, norm of subgrad 37.946313 stepsize= 1.000000 +dualbound = 3183559.131993, lowerbound=1238274.131993, norm of subgrad 1113.389030 dualbound = 3183559.131993, lowerbound=1238274.131993, norm of subgrad 38.315152 stepsize= 1.000000 +dualbound = 3183697.874872, lowerbound=1244233.874872, norm of subgrad 1116.032202 dualbound = 3183697.874872, lowerbound=1244233.874872, norm of subgrad 37.851590 stepsize= 1.000000 +dualbound = 3183787.927024, lowerbound=1239947.927024, norm of subgrad 1114.122043 dualbound = 3183787.927024, lowerbound=1239947.927024, norm of subgrad 37.550661 stepsize= 1.000000 +dualbound = 3183899.310706, lowerbound=1238343.310706, norm of subgrad 1113.418300 dualbound = 3183899.310706, lowerbound=1238343.310706, norm of subgrad 38.319495 stepsize= 1.000000 +dualbound = 3183979.013094, lowerbound=1240135.013094, norm of subgrad 1114.206899 dualbound = 3183979.013094, lowerbound=1240135.013094, norm of subgrad 37.439316 stepsize= 1.000000 +dualbound = 3184113.731243, lowerbound=1235461.731243, norm of subgrad 1112.104640 dualbound = 3184113.731243, lowerbound=1235461.731243, norm of subgrad 38.075164 stepsize= 1.000000 +dualbound = 3184205.081623, lowerbound=1239256.081623, norm of subgrad 1113.855054 dualbound = 3184205.081623, lowerbound=1239256.081623, norm of subgrad 38.837487 stepsize= 1.000000 +dualbound = 3184320.741894, lowerbound=1237566.741894, norm of subgrad 1113.035373 dualbound = 3184320.741894, lowerbound=1237566.741894, norm of subgrad 37.371918 stepsize= 1.000000 +dualbound = 3184427.517103, lowerbound=1237967.517103, norm of subgrad 1113.217641 dualbound = 3184427.517103, lowerbound=1237967.517103, norm of subgrad 37.319904 stepsize= 1.000000 +dualbound = 3184545.545236, lowerbound=1234769.545236, norm of subgrad 1111.758762 dualbound = 3184545.545236, lowerbound=1234769.545236, norm of subgrad 36.824287 stepsize= 1.000000 +dualbound = 3184633.068151, lowerbound=1242645.068151, norm of subgrad 1115.307163 dualbound = 3184633.068151, lowerbound=1242645.068151, norm of subgrad 36.776663 stepsize= 1.000000 +dualbound = 3184760.489291, lowerbound=1236313.489291, norm of subgrad 1112.458758 dualbound = 3184760.489291, lowerbound=1236313.489291, norm of subgrad 37.127094 stepsize= 1.000000 +dualbound = 3184866.932350, lowerbound=1238462.932350, norm of subgrad 1113.448217 dualbound = 3184866.932350, lowerbound=1238462.932350, norm of subgrad 37.555866 stepsize= 1.000000 +dualbound = 3184952.339360, lowerbound=1234854.339360, norm of subgrad 1111.863454 dualbound = 3184952.339360, lowerbound=1234854.339360, norm of subgrad 38.358923 stepsize= 1.000000 +dualbound = 3185067.110900, lowerbound=1243086.110900, norm of subgrad 1115.512936 dualbound = 3185067.110900, lowerbound=1243086.110900, norm of subgrad 37.386783 stepsize= 1.000000 +dualbound = 3185143.661957, lowerbound=1239872.661957, norm of subgrad 1114.108909 dualbound = 3185143.661957, lowerbound=1239872.661957, norm of subgrad 37.980930 stepsize= 1.000000 +dualbound = 3185286.177639, lowerbound=1240871.177639, norm of subgrad 1114.520156 dualbound = 3185286.177639, lowerbound=1240871.177639, norm of subgrad 37.769243 stepsize= 1.000000 +dualbound = 3185400.529834, lowerbound=1238441.529834, norm of subgrad 1113.414806 dualbound = 3185400.529834, lowerbound=1238441.529834, norm of subgrad 36.950672 stepsize= 1.000000 +dualbound = 3185484.498681, lowerbound=1235531.498681, norm of subgrad 1112.159385 dualbound = 3185484.498681, lowerbound=1235531.498681, norm of subgrad 38.091585 stepsize= 1.000000 +dualbound = 3185558.282430, lowerbound=1240496.282430, norm of subgrad 1114.377531 dualbound = 3185558.282430, lowerbound=1240496.282430, norm of subgrad 37.613611 stepsize= 1.000000 +dualbound = 3185685.362875, lowerbound=1238254.362875, norm of subgrad 1113.375212 dualbound = 3185685.362875, lowerbound=1238254.362875, norm of subgrad 38.432804 stepsize= 1.000000 +dualbound = 3185782.330297, lowerbound=1242119.330297, norm of subgrad 1115.126598 dualbound = 3185782.330297, lowerbound=1242119.330297, norm of subgrad 38.535275 stepsize= 1.000000 +dualbound = 3185883.742343, lowerbound=1236231.742343, norm of subgrad 1112.489435 dualbound = 3185883.742343, lowerbound=1236231.742343, norm of subgrad 38.760960 stepsize= 1.000000 +dualbound = 3185985.451913, lowerbound=1240705.451913, norm of subgrad 1114.500091 dualbound = 3185985.451913, lowerbound=1240705.451913, norm of subgrad 38.816357 stepsize= 1.000000 +dualbound = 3186077.192503, lowerbound=1234610.192503, norm of subgrad 1111.746910 dualbound = 3186077.192503, lowerbound=1234610.192503, norm of subgrad 38.245792 stepsize= 1.000000 +dualbound = 3186226.031275, lowerbound=1239652.031275, norm of subgrad 1113.998668 dualbound = 3186226.031275, lowerbound=1239652.031275, norm of subgrad 38.598430 stepsize= 1.000000 +dualbound = 3186327.997227, lowerbound=1236466.997227, norm of subgrad 1112.575839 dualbound = 3186327.997227, lowerbound=1236466.997227, norm of subgrad 38.209501 stepsize= 1.000000 +dualbound = 3186426.191837, lowerbound=1236579.191837, norm of subgrad 1112.606935 dualbound = 3186426.191837, lowerbound=1236579.191837, norm of subgrad 37.592481 stepsize= 1.000000 +dualbound = 3186536.357980, lowerbound=1242362.357980, norm of subgrad 1115.228388 dualbound = 3186536.357980, lowerbound=1242362.357980, norm of subgrad 38.498911 stepsize= 1.000000 +dualbound = 3186639.149931, lowerbound=1235957.149931, norm of subgrad 1112.340393 dualbound = 3186639.149931, lowerbound=1235957.149931, norm of subgrad 38.036718 stepsize= 1.000000 +dualbound = 3186731.216474, lowerbound=1240463.216474, norm of subgrad 1114.384232 dualbound = 3186731.216474, lowerbound=1240463.216474, norm of subgrad 38.484627 stepsize= 1.000000 +dualbound = 3186827.550844, lowerbound=1240318.550844, norm of subgrad 1114.296438 dualbound = 3186827.550844, lowerbound=1240318.550844, norm of subgrad 37.872607 stepsize= 1.000000 +dualbound = 3186964.294473, lowerbound=1241023.294473, norm of subgrad 1114.584808 dualbound = 3186964.294473, lowerbound=1241023.294473, norm of subgrad 37.586482 stepsize= 1.000000 +dualbound = 3187088.175849, lowerbound=1236246.175849, norm of subgrad 1112.420863 dualbound = 3187088.175849, lowerbound=1236246.175849, norm of subgrad 36.849442 stepsize= 1.000000 +dualbound = 3187185.706973, lowerbound=1245975.706973, norm of subgrad 1116.830653 dualbound = 3187185.706973, lowerbound=1245975.706973, norm of subgrad 37.848793 stepsize= 1.000000 +dualbound = 3187272.301929, lowerbound=1233206.301929, norm of subgrad 1111.068541 dualbound = 3187272.301929, lowerbound=1233206.301929, norm of subgrad 36.791235 stepsize= 1.000000 +dualbound = 3187383.045869, lowerbound=1237954.045869, norm of subgrad 1113.234048 dualbound = 3187383.045869, lowerbound=1237954.045869, norm of subgrad 38.036087 stepsize= 1.000000 +dualbound = 3187472.567228, lowerbound=1237936.567228, norm of subgrad 1113.209130 dualbound = 3187472.567228, lowerbound=1237936.567228, norm of subgrad 37.249448 stepsize= 1.000000 +dualbound = 3187578.224201, lowerbound=1241771.224201, norm of subgrad 1114.974540 dualbound = 3187578.224201, lowerbound=1241771.224201, norm of subgrad 38.764120 stepsize= 1.000000 +dualbound = 3187656.920734, lowerbound=1240070.920734, norm of subgrad 1114.219422 dualbound = 3187656.920734, lowerbound=1240070.920734, norm of subgrad 38.635431 stepsize= 1.000000 +dualbound = 3187792.940314, lowerbound=1240187.940314, norm of subgrad 1114.220328 dualbound = 3187792.940314, lowerbound=1240187.940314, norm of subgrad 37.881652 stepsize= 1.000000 +dualbound = 3187895.783790, lowerbound=1233813.783790, norm of subgrad 1111.390023 dualbound = 3187895.783790, lowerbound=1233813.783790, norm of subgrad 38.429721 stepsize= 1.000000 +dualbound = 3187991.427831, lowerbound=1242832.427831, norm of subgrad 1115.420740 dualbound = 3187991.427831, lowerbound=1242832.427831, norm of subgrad 37.770942 stepsize= 1.000000 +dualbound = 3188117.316003, lowerbound=1243124.316003, norm of subgrad 1115.554712 dualbound = 3188117.316003, lowerbound=1243124.316003, norm of subgrad 38.260792 stepsize= 1.000000 +dualbound = 3188180.919459, lowerbound=1241873.919459, norm of subgrad 1115.034044 dualbound = 3188180.919459, lowerbound=1241873.919459, norm of subgrad 38.608334 stepsize= 1.000000 +dualbound = 3188288.155916, lowerbound=1233469.155916, norm of subgrad 1111.236319 dualbound = 3188288.155916, lowerbound=1233469.155916, norm of subgrad 38.525790 stepsize= 1.000000 +dualbound = 3188419.466212, lowerbound=1245307.466212, norm of subgrad 1116.561000 dualbound = 3188419.466212, lowerbound=1245307.466212, norm of subgrad 39.144735 stepsize= 1.000000 +dualbound = 3188487.922693, lowerbound=1236806.922693, norm of subgrad 1112.756453 dualbound = 3188487.922693, lowerbound=1236806.922693, norm of subgrad 38.580519 stepsize= 1.000000 +dualbound = 3188621.806934, lowerbound=1241258.806934, norm of subgrad 1114.698976 dualbound = 3188621.806934, lowerbound=1241258.806934, norm of subgrad 37.800585 stepsize= 1.000000 +dualbound = 3188737.103326, lowerbound=1234512.103326, norm of subgrad 1111.693799 dualbound = 3188737.103326, lowerbound=1234512.103326, norm of subgrad 38.292250 stepsize= 1.000000 +dualbound = 3188844.035418, lowerbound=1238453.035418, norm of subgrad 1113.440180 dualbound = 3188844.035418, lowerbound=1238453.035418, norm of subgrad 37.455735 stepsize= 1.000000 +dualbound = 3188943.520378, lowerbound=1237547.520378, norm of subgrad 1113.038418 dualbound = 3188943.520378, lowerbound=1237547.520378, norm of subgrad 37.503133 stepsize= 1.000000 +dualbound = 3189070.472732, lowerbound=1243397.472732, norm of subgrad 1115.672655 dualbound = 3189070.472732, lowerbound=1243397.472732, norm of subgrad 38.143838 stepsize= 1.000000 +dualbound = 3189138.289825, lowerbound=1239075.289825, norm of subgrad 1113.746960 dualbound = 3189138.289825, lowerbound=1239075.289825, norm of subgrad 37.746749 stepsize= 1.000000 +dualbound = 3189251.739972, lowerbound=1242582.739972, norm of subgrad 1115.329879 dualbound = 3189251.739972, lowerbound=1242582.739972, norm of subgrad 38.619298 stepsize= 1.000000 +dualbound = 3189366.588574, lowerbound=1239969.588574, norm of subgrad 1114.129072 dualbound = 3189366.588574, lowerbound=1239969.588574, norm of subgrad 37.800114 stepsize= 1.000000 +dualbound = 3189461.756233, lowerbound=1241071.756233, norm of subgrad 1114.650060 dualbound = 3189461.756233, lowerbound=1241071.756233, norm of subgrad 38.316676 stepsize= 1.000000 +dualbound = 3189584.811123, lowerbound=1235881.811123, norm of subgrad 1112.288996 dualbound = 3189584.811123, lowerbound=1235881.811123, norm of subgrad 37.789614 stepsize= 1.000000 +dualbound = 3189692.544891, lowerbound=1238540.544891, norm of subgrad 1113.494295 dualbound = 3189692.544891, lowerbound=1238540.544891, norm of subgrad 37.904271 stepsize= 1.000000 +dualbound = 3189791.262261, lowerbound=1242466.262261, norm of subgrad 1115.253452 dualbound = 3189791.262261, lowerbound=1242466.262261, norm of subgrad 37.718926 stepsize= 1.000000 +dualbound = 3189901.972569, lowerbound=1238704.972569, norm of subgrad 1113.571270 dualbound = 3189901.972569, lowerbound=1238704.972569, norm of subgrad 38.035645 stepsize= 1.000000 +dualbound = 3189994.345425, lowerbound=1241891.345425, norm of subgrad 1115.016747 dualbound = 3189994.345425, lowerbound=1241891.345425, norm of subgrad 38.254057 stepsize= 1.000000 +dualbound = 3190105.747338, lowerbound=1237336.747338, norm of subgrad 1112.943281 dualbound = 3190105.747338, lowerbound=1237336.747338, norm of subgrad 37.648399 stepsize= 1.000000 +dualbound = 3190230.527036, lowerbound=1240404.527036, norm of subgrad 1114.326042 dualbound = 3190230.527036, lowerbound=1240404.527036, norm of subgrad 37.983940 stepsize= 1.000000 +dualbound = 3190320.757729, lowerbound=1236368.757729, norm of subgrad 1112.515958 dualbound = 3190320.757729, lowerbound=1236368.757729, norm of subgrad 37.592961 stepsize= 1.000000 +dualbound = 3190426.195568, lowerbound=1238775.195568, norm of subgrad 1113.587085 dualbound = 3190426.195568, lowerbound=1238775.195568, norm of subgrad 37.502504 stepsize= 1.000000 +dualbound = 3190531.685210, lowerbound=1242662.685210, norm of subgrad 1115.339269 dualbound = 3190531.685210, lowerbound=1242662.685210, norm of subgrad 37.742412 stepsize= 1.000000 +dualbound = 3190616.507720, lowerbound=1235913.507720, norm of subgrad 1112.316280 dualbound = 3190616.507720, lowerbound=1235913.507720, norm of subgrad 37.667260 stepsize= 1.000000 +dualbound = 3190750.558372, lowerbound=1240700.558372, norm of subgrad 1114.459761 dualbound = 3190750.558372, lowerbound=1240700.558372, norm of subgrad 38.132016 stepsize= 1.000000 +dualbound = 3190814.309382, lowerbound=1238914.309382, norm of subgrad 1113.656280 dualbound = 3190814.309382, lowerbound=1238914.309382, norm of subgrad 37.145000 stepsize= 1.000000 +dualbound = 3190952.394522, lowerbound=1241988.394522, norm of subgrad 1115.041432 dualbound = 3190952.394522, lowerbound=1241988.394522, norm of subgrad 38.302547 stepsize= 1.000000 +dualbound = 3191038.790191, lowerbound=1236508.790191, norm of subgrad 1112.598216 dualbound = 3191038.790191, lowerbound=1236508.790191, norm of subgrad 38.110309 stepsize= 1.000000 +dualbound = 3191160.003887, lowerbound=1243028.003887, norm of subgrad 1115.498545 dualbound = 3191160.003887, lowerbound=1243028.003887, norm of subgrad 37.818166 stepsize= 1.000000 +dualbound = 3191239.970031, lowerbound=1238547.970031, norm of subgrad 1113.502568 dualbound = 3191239.970031, lowerbound=1238547.970031, norm of subgrad 37.682438 stepsize= 1.000000 +dualbound = 3191364.950573, lowerbound=1241877.950573, norm of subgrad 1114.990561 dualbound = 3191364.950573, lowerbound=1241877.950573, norm of subgrad 38.091739 stepsize= 1.000000 +dualbound = 3191478.874997, lowerbound=1234452.874997, norm of subgrad 1111.669859 dualbound = 3191478.874997, lowerbound=1234452.874997, norm of subgrad 38.352633 stepsize= 1.000000 +dualbound = 3191566.879333, lowerbound=1241051.879333, norm of subgrad 1114.645629 dualbound = 3191566.879333, lowerbound=1241051.879333, norm of subgrad 38.353674 stepsize= 1.000000 +dualbound = 3191654.274258, lowerbound=1243176.274258, norm of subgrad 1115.583827 dualbound = 3191654.274258, lowerbound=1243176.274258, norm of subgrad 37.926177 stepsize= 1.000000 +dualbound = 3191803.048958, lowerbound=1239719.048958, norm of subgrad 1114.039967 dualbound = 3191803.048958, lowerbound=1239719.048958, norm of subgrad 38.920107 stepsize= 1.000000 +dualbound = 3191863.941254, lowerbound=1237848.941254, norm of subgrad 1113.208849 dualbound = 3191863.941254, lowerbound=1237848.941254, norm of subgrad 38.024890 stepsize= 1.000000 +dualbound = 3191977.063876, lowerbound=1237493.063876, norm of subgrad 1113.051240 dualbound = 3191977.063876, lowerbound=1237493.063876, norm of subgrad 38.770125 stepsize= 1.000000 +dualbound = 3192065.240315, lowerbound=1245300.240315, norm of subgrad 1116.543434 dualbound = 3192065.240315, lowerbound=1245300.240315, norm of subgrad 38.172980 stepsize= 1.000000 +dualbound = 3192202.192192, lowerbound=1239075.192192, norm of subgrad 1113.747365 dualbound = 3192202.192192, lowerbound=1239075.192192, norm of subgrad 38.664608 stepsize= 1.000000 +dualbound = 3192306.038445, lowerbound=1241212.038445, norm of subgrad 1114.677549 dualbound = 3192306.038445, lowerbound=1241212.038445, norm of subgrad 37.387782 stepsize= 1.000000 +dualbound = 3192426.609642, lowerbound=1238209.609642, norm of subgrad 1113.362299 dualbound = 3192426.609642, lowerbound=1238209.609642, norm of subgrad 38.556079 stepsize= 1.000000 +dualbound = 3192500.455273, lowerbound=1237626.455273, norm of subgrad 1113.096337 dualbound = 3192500.455273, lowerbound=1237626.455273, norm of subgrad 37.826520 stepsize= 1.000000 +dualbound = 3192596.784136, lowerbound=1242976.784136, norm of subgrad 1115.496654 dualbound = 3192596.784136, lowerbound=1242976.784136, norm of subgrad 38.109433 stepsize= 1.000000 +dualbound = 3192726.824852, lowerbound=1233922.824852, norm of subgrad 1111.391841 dualbound = 3192726.824852, lowerbound=1233922.824852, norm of subgrad 37.403753 stepsize= 1.000000 +dualbound = 3192844.268374, lowerbound=1241260.268374, norm of subgrad 1114.716676 dualbound = 3192844.268374, lowerbound=1241260.268374, norm of subgrad 38.084689 stepsize= 1.000000 +dualbound = 3192928.518764, lowerbound=1237790.518764, norm of subgrad 1113.147124 dualbound = 3192928.518764, lowerbound=1237790.518764, norm of subgrad 37.286062 stepsize= 1.000000 +dualbound = 3193053.402219, lowerbound=1239341.402219, norm of subgrad 1113.848465 dualbound = 3193053.402219, lowerbound=1239341.402219, norm of subgrad 37.972141 stepsize= 1.000000 +dualbound = 3193149.905318, lowerbound=1245487.905318, norm of subgrad 1116.614932 dualbound = 3193149.905318, lowerbound=1245487.905318, norm of subgrad 37.914418 stepsize= 1.000000 +dualbound = 3193248.081657, lowerbound=1237427.081657, norm of subgrad 1112.991052 dualbound = 3193248.081657, lowerbound=1237427.081657, norm of subgrad 37.685227 stepsize= 1.000000 +dualbound = 3193345.287426, lowerbound=1244278.287426, norm of subgrad 1116.073155 dualbound = 3193345.287426, lowerbound=1244278.287426, norm of subgrad 37.923683 stepsize= 1.000000 +dualbound = 3193455.850035, lowerbound=1235758.850035, norm of subgrad 1112.271932 dualbound = 3193455.850035, lowerbound=1235758.850035, norm of subgrad 38.737096 stepsize= 1.000000 +dualbound = 3193537.441187, lowerbound=1243685.441187, norm of subgrad 1115.806184 dualbound = 3193537.441187, lowerbound=1243685.441187, norm of subgrad 37.677462 stepsize= 1.000000 +dualbound = 3193674.054663, lowerbound=1238099.054663, norm of subgrad 1113.300972 dualbound = 3193674.054663, lowerbound=1238099.054663, norm of subgrad 38.426729 stepsize= 1.000000 +dualbound = 3193776.648502, lowerbound=1238116.648502, norm of subgrad 1113.278783 dualbound = 3193776.648502, lowerbound=1238116.648502, norm of subgrad 37.088999 stepsize= 1.000000 +dualbound = 3193891.270161, lowerbound=1236277.270161, norm of subgrad 1112.448322 dualbound = 3193891.270161, lowerbound=1236277.270161, norm of subgrad 37.129795 stepsize= 1.000000 +dualbound = 3193986.509425, lowerbound=1242680.509425, norm of subgrad 1115.346811 dualbound = 3193986.509425, lowerbound=1242680.509425, norm of subgrad 37.593075 stepsize= 1.000000 +dualbound = 3194047.938722, lowerbound=1243179.938722, norm of subgrad 1115.610568 dualbound = 3194047.938722, lowerbound=1243179.938722, norm of subgrad 38.320090 stepsize= 1.000000 +dualbound = 3194164.690096, lowerbound=1239517.690096, norm of subgrad 1113.928943 dualbound = 3194164.690096, lowerbound=1239517.690096, norm of subgrad 37.904503 stepsize= 1.000000 +dualbound = 3194284.349942, lowerbound=1243489.349942, norm of subgrad 1115.722344 dualbound = 3194284.349942, lowerbound=1243489.349942, norm of subgrad 38.296995 stepsize= 1.000000 +dualbound = 3194377.617550, lowerbound=1240076.617550, norm of subgrad 1114.195054 dualbound = 3194377.617550, lowerbound=1240076.617550, norm of subgrad 38.042971 stepsize= 1.000000 +dualbound = 3194476.599829, lowerbound=1235061.599829, norm of subgrad 1111.977338 dualbound = 3194476.599829, lowerbound=1235061.599829, norm of subgrad 39.127769 stepsize= 1.000000 +dualbound = 3194573.519289, lowerbound=1239014.519289, norm of subgrad 1113.722371 dualbound = 3194573.519289, lowerbound=1239014.519289, norm of subgrad 38.208892 stepsize= 1.000000 +dualbound = 3194703.839308, lowerbound=1239662.839308, norm of subgrad 1114.003519 dualbound = 3194703.839308, lowerbound=1239662.839308, norm of subgrad 38.357790 stepsize= 1.000000 +dualbound = 3194820.086450, lowerbound=1244546.086450, norm of subgrad 1116.194018 dualbound = 3194820.086450, lowerbound=1244546.086450, norm of subgrad 38.200093 stepsize= 1.000000 +dualbound = 3194910.571802, lowerbound=1235907.571802, norm of subgrad 1112.340133 dualbound = 3194910.571802, lowerbound=1235907.571802, norm of subgrad 38.516040 stepsize= 1.000000 +dualbound = 3194998.748491, lowerbound=1239863.748491, norm of subgrad 1114.094138 dualbound = 3194998.748491, lowerbound=1239863.748491, norm of subgrad 37.817677 stepsize= 1.000000 +dualbound = 3195133.093539, lowerbound=1240736.093539, norm of subgrad 1114.487368 dualbound = 3195133.093539, lowerbound=1240736.093539, norm of subgrad 38.475252 stepsize= 1.000000 +dualbound = 3195234.375050, lowerbound=1239181.375050, norm of subgrad 1113.802215 dualbound = 3195234.375050, lowerbound=1239181.375050, norm of subgrad 38.409394 stepsize= 1.000000 +dualbound = 3195312.687950, lowerbound=1243708.687950, norm of subgrad 1115.811672 dualbound = 3195312.687950, lowerbound=1243708.687950, norm of subgrad 37.487503 stepsize= 1.000000 +dualbound = 3195437.016218, lowerbound=1243336.016218, norm of subgrad 1115.641975 dualbound = 3195437.016218, lowerbound=1243336.016218, norm of subgrad 38.017473 stepsize= 1.000000 +dualbound = 3195545.958859, lowerbound=1242756.958859, norm of subgrad 1115.397220 dualbound = 3195545.958859, lowerbound=1242756.958859, norm of subgrad 38.248433 stepsize= 1.000000 +dualbound = 3195660.560908, lowerbound=1241137.560908, norm of subgrad 1114.624852 dualbound = 3195660.560908, lowerbound=1241137.560908, norm of subgrad 36.954053 stepsize= 1.000000 +dualbound = 3195731.210979, lowerbound=1245004.210979, norm of subgrad 1116.388468 dualbound = 3195731.210979, lowerbound=1245004.210979, norm of subgrad 37.278011 stepsize= 1.000000 +dualbound = 3195858.110104, lowerbound=1233413.110104, norm of subgrad 1111.164304 dualbound = 3195858.110104, lowerbound=1233413.110104, norm of subgrad 37.415226 stepsize= 1.000000 +dualbound = 3195960.358264, lowerbound=1237415.358264, norm of subgrad 1113.010044 dualbound = 3195960.358264, lowerbound=1237415.358264, norm of subgrad 38.447993 stepsize= 1.000000 +dualbound = 3196036.767227, lowerbound=1241137.767227, norm of subgrad 1114.665765 dualbound = 3196036.767227, lowerbound=1241137.767227, norm of subgrad 37.661771 stepsize= 1.000000 +dualbound = 3196159.350389, lowerbound=1236928.350389, norm of subgrad 1112.776865 dualbound = 3196159.350389, lowerbound=1236928.350389, norm of subgrad 38.295994 stepsize= 1.000000 +dualbound = 3196260.080992, lowerbound=1242636.080992, norm of subgrad 1115.312549 dualbound = 3196260.080992, lowerbound=1242636.080992, norm of subgrad 37.238832 stepsize= 1.000000 +dualbound = 3196402.810052, lowerbound=1243291.810052, norm of subgrad 1115.597064 dualbound = 3196402.810052, lowerbound=1243291.810052, norm of subgrad 37.519716 stepsize= 1.000000 +dualbound = 3196459.234661, lowerbound=1233675.234661, norm of subgrad 1111.333539 dualbound = 3196459.234661, lowerbound=1233675.234661, norm of subgrad 37.992428 stepsize= 1.000000 +dualbound = 3196587.395327, lowerbound=1241403.395327, norm of subgrad 1114.778182 dualbound = 3196587.395327, lowerbound=1241403.395327, norm of subgrad 38.146568 stepsize= 1.000000 +dualbound = 3196670.029328, lowerbound=1237949.029328, norm of subgrad 1113.231795 dualbound = 3196670.029328, lowerbound=1237949.029328, norm of subgrad 37.664758 stepsize= 1.000000 +dualbound = 3196811.943976, lowerbound=1245331.943976, norm of subgrad 1116.498967 dualbound = 3196811.943976, lowerbound=1245331.943976, norm of subgrad 37.147202 stepsize= 1.000000 +dualbound = 3196895.188214, lowerbound=1236290.188214, norm of subgrad 1112.470309 dualbound = 3196895.188214, lowerbound=1236290.188214, norm of subgrad 37.191992 stepsize= 1.000000 +dualbound = 3197024.988632, lowerbound=1243074.988632, norm of subgrad 1115.505262 dualbound = 3197024.988632, lowerbound=1243074.988632, norm of subgrad 37.507338 stepsize= 1.000000 +dualbound = 3197104.649083, lowerbound=1236936.649083, norm of subgrad 1112.732065 dualbound = 3197104.649083, lowerbound=1236936.649083, norm of subgrad 36.272034 stepsize= 1.000000 +dualbound = 3197229.685654, lowerbound=1241523.685654, norm of subgrad 1114.854110 dualbound = 3197229.685654, lowerbound=1241523.685654, norm of subgrad 38.743213 stepsize= 1.000000 +dualbound = 3197281.813115, lowerbound=1242103.813115, norm of subgrad 1115.116054 dualbound = 3197281.813115, lowerbound=1242103.813115, norm of subgrad 37.843460 stepsize= 1.000000 +dualbound = 3197408.069263, lowerbound=1237990.069263, norm of subgrad 1113.273582 dualbound = 3197408.069263, lowerbound=1237990.069263, norm of subgrad 38.913444 stepsize= 1.000000 +dualbound = 3197505.494310, lowerbound=1241171.494310, norm of subgrad 1114.673268 dualbound = 3197505.494310, lowerbound=1241171.494310, norm of subgrad 37.715051 stepsize= 1.000000 +dualbound = 3197615.719851, lowerbound=1241522.719851, norm of subgrad 1114.861301 dualbound = 3197615.719851, lowerbound=1241522.719851, norm of subgrad 38.771453 stepsize= 1.000000 +dualbound = 3197692.724515, lowerbound=1240225.724515, norm of subgrad 1114.295169 dualbound = 3197692.724515, lowerbound=1240225.724515, norm of subgrad 38.794390 stepsize= 1.000000 +dualbound = 3197809.909200, lowerbound=1246200.909200, norm of subgrad 1116.953853 dualbound = 3197809.909200, lowerbound=1246200.909200, norm of subgrad 38.758027 stepsize= 1.000000 +dualbound = 3197922.175983, lowerbound=1237599.175983, norm of subgrad 1113.084532 dualbound = 3197922.175983, lowerbound=1237599.175983, norm of subgrad 38.344058 stepsize= 1.000000 +dualbound = 3198025.764223, lowerbound=1240925.764223, norm of subgrad 1114.585916 dualbound = 3198025.764223, lowerbound=1240925.764223, norm of subgrad 38.465416 stepsize= 1.000000 +dualbound = 3198153.856884, lowerbound=1241096.856884, norm of subgrad 1114.645171 dualbound = 3198153.856884, lowerbound=1241096.856884, norm of subgrad 38.276529 stepsize= 1.000000 +dualbound = 3198254.775254, lowerbound=1242846.775254, norm of subgrad 1115.420448 dualbound = 3198254.775254, lowerbound=1242846.775254, norm of subgrad 37.641976 stepsize= 1.000000 +dualbound = 3198359.016324, lowerbound=1239558.016324, norm of subgrad 1113.897220 dualbound = 3198359.016324, lowerbound=1239558.016324, norm of subgrad 36.238668 stepsize= 1.000000 +dualbound = 3198496.299658, lowerbound=1241265.299658, norm of subgrad 1114.696506 dualbound = 3198496.299658, lowerbound=1241265.299658, norm of subgrad 37.686647 stepsize= 1.000000 +dualbound = 3198548.618589, lowerbound=1238176.618589, norm of subgrad 1113.347034 dualbound = 3198548.618589, lowerbound=1238176.618589, norm of subgrad 37.647296 stepsize= 1.000000 +dualbound = 3198661.207712, lowerbound=1242484.207712, norm of subgrad 1115.260152 dualbound = 3198661.207712, lowerbound=1242484.207712, norm of subgrad 37.862767 stepsize= 1.000000 +dualbound = 3198756.110070, lowerbound=1236625.110070, norm of subgrad 1112.617234 dualbound = 3198756.110070, lowerbound=1236625.110070, norm of subgrad 37.241138 stepsize= 1.000000 +dualbound = 3198895.625458, lowerbound=1237603.625458, norm of subgrad 1113.080242 dualbound = 3198895.625458, lowerbound=1237603.625458, norm of subgrad 38.516430 stepsize= 1.000000 +dualbound = 3198963.940447, lowerbound=1240473.940447, norm of subgrad 1114.387249 dualbound = 3198963.940447, lowerbound=1240473.940447, norm of subgrad 38.122369 stepsize= 1.000000 +dualbound = 3199085.656889, lowerbound=1246921.656889, norm of subgrad 1117.232589 dualbound = 3199085.656889, lowerbound=1246921.656889, norm of subgrad 37.532871 stepsize= 1.000000 +dualbound = 3199216.430163, lowerbound=1233576.430163, norm of subgrad 1111.249491 dualbound = 3199216.430163, lowerbound=1233576.430163, norm of subgrad 37.812343 stepsize= 1.000000 +dualbound = 3199299.561489, lowerbound=1242788.561489, norm of subgrad 1115.428421 dualbound = 3199299.561489, lowerbound=1242788.561489, norm of subgrad 38.407438 stepsize= 1.000000 +dualbound = 3199378.435782, lowerbound=1239417.435782, norm of subgrad 1113.902795 dualbound = 3199378.435782, lowerbound=1239417.435782, norm of subgrad 37.958850 stepsize= 1.000000 +dualbound = 3199510.611301, lowerbound=1244214.611301, norm of subgrad 1116.042388 dualbound = 3199510.611301, lowerbound=1244214.611301, norm of subgrad 38.316779 stepsize= 1.000000 +dualbound = 3199601.059910, lowerbound=1240238.059910, norm of subgrad 1114.262115 dualbound = 3199601.059910, lowerbound=1240238.059910, norm of subgrad 37.847703 stepsize= 1.000000 +dualbound = 3199734.970639, lowerbound=1245426.970639, norm of subgrad 1116.605110 dualbound = 3199734.970639, lowerbound=1245426.970639, norm of subgrad 38.909006 stepsize= 1.000000 +dualbound = 3199794.972761, lowerbound=1240502.972761, norm of subgrad 1114.402967 dualbound = 3199794.972761, lowerbound=1240502.972761, norm of subgrad 38.092022 stepsize= 1.000000 +dualbound = 3199916.374335, lowerbound=1239296.374335, norm of subgrad 1113.815233 dualbound = 3199916.374335, lowerbound=1239296.374335, norm of subgrad 37.541997 stepsize= 1.000000 +dualbound = 3200011.077370, lowerbound=1237061.077370, norm of subgrad 1112.818528 dualbound = 3200011.077370, lowerbound=1237061.077370, norm of subgrad 37.399238 stepsize= 1.000000 +dualbound = 3200141.797453, lowerbound=1244695.797453, norm of subgrad 1116.252569 dualbound = 3200141.797453, lowerbound=1244695.797453, norm of subgrad 38.140793 stepsize= 1.000000 +dualbound = 3200214.847522, lowerbound=1238061.847522, norm of subgrad 1113.271686 dualbound = 3200214.847522, lowerbound=1238061.847522, norm of subgrad 37.216261 stepsize= 1.000000 +dualbound = 3200347.015030, lowerbound=1238881.015030, norm of subgrad 1113.643576 dualbound = 3200347.015030, lowerbound=1238881.015030, norm of subgrad 38.120434 stepsize= 1.000000 +dualbound = 3200436.669521, lowerbound=1239354.669521, norm of subgrad 1113.836464 dualbound = 3200436.669521, lowerbound=1239354.669521, norm of subgrad 36.968290 stepsize= 1.000000 +dualbound = 3200540.083313, lowerbound=1243936.083313, norm of subgrad 1115.905947 dualbound = 3200540.083313, lowerbound=1243936.083313, norm of subgrad 37.595396 stepsize= 1.000000 +dualbound = 3200636.780885, lowerbound=1245222.780885, norm of subgrad 1116.512777 dualbound = 3200636.780885, lowerbound=1245222.780885, norm of subgrad 38.401791 stepsize= 1.000000 +dualbound = 3200729.223764, lowerbound=1234837.223764, norm of subgrad 1111.848562 dualbound = 3200729.223764, lowerbound=1234837.223764, norm of subgrad 38.241900 stepsize= 1.000000 +dualbound = 3200835.898861, lowerbound=1242183.898861, norm of subgrad 1115.111608 dualbound = 3200835.898861, lowerbound=1242183.898861, norm of subgrad 37.372117 stepsize= 1.000000 +dualbound = 3200972.097030, lowerbound=1240508.097030, norm of subgrad 1114.377448 dualbound = 3200972.097030, lowerbound=1240508.097030, norm of subgrad 38.277907 stepsize= 1.000000 +dualbound = 3201063.452358, lowerbound=1239367.452358, norm of subgrad 1113.848038 dualbound = 3201063.452358, lowerbound=1239367.452358, norm of subgrad 37.166589 stepsize= 1.000000 +dualbound = 3201189.999942, lowerbound=1236702.999942, norm of subgrad 1112.645945 dualbound = 3201189.999942, lowerbound=1236702.999942, norm of subgrad 37.477294 stepsize= 1.000000 +dualbound = 3201284.270434, lowerbound=1242058.270434, norm of subgrad 1115.074110 dualbound = 3201284.270434, lowerbound=1242058.270434, norm of subgrad 37.765997 stepsize= 1.000000 +dualbound = 3201376.045925, lowerbound=1238071.045925, norm of subgrad 1113.309052 dualbound = 3201376.045925, lowerbound=1238071.045925, norm of subgrad 38.441846 stepsize= 1.000000 +dualbound = 3201450.617561, lowerbound=1244780.617561, norm of subgrad 1116.322811 dualbound = 3201450.617561, lowerbound=1244780.617561, norm of subgrad 38.348033 stepsize= 1.000000 +dualbound = 3201581.558583, lowerbound=1237323.558583, norm of subgrad 1112.962514 dualbound = 3201581.558583, lowerbound=1237323.558583, norm of subgrad 38.638595 stepsize= 1.000000 +dualbound = 3201681.671546, lowerbound=1243569.671546, norm of subgrad 1115.769542 dualbound = 3201681.671546, lowerbound=1243569.671546, norm of subgrad 38.368124 stepsize= 1.000000 +dualbound = 3201766.167350, lowerbound=1239954.167350, norm of subgrad 1114.157156 dualbound = 3201766.167350, lowerbound=1239954.167350, norm of subgrad 38.425198 stepsize= 1.000000 +dualbound = 3201888.047797, lowerbound=1242963.047797, norm of subgrad 1115.496772 dualbound = 3201888.047797, lowerbound=1242963.047797, norm of subgrad 38.624868 stepsize= 1.000000 +dualbound = 3201998.181270, lowerbound=1239897.181270, norm of subgrad 1114.099269 dualbound = 3201998.181270, lowerbound=1239897.181270, norm of subgrad 37.817106 stepsize= 1.000000 +dualbound = 3202125.908854, lowerbound=1243531.908854, norm of subgrad 1115.717665 dualbound = 3202125.908854, lowerbound=1243531.908854, norm of subgrad 37.705803 stepsize= 1.000000 +dualbound = 3202215.224748, lowerbound=1238885.224748, norm of subgrad 1113.623017 dualbound = 3202215.224748, lowerbound=1238885.224748, norm of subgrad 36.882461 stepsize= 1.000000 +dualbound = 3202324.419913, lowerbound=1239219.419913, norm of subgrad 1113.788768 dualbound = 3202324.419913, lowerbound=1239219.419913, norm of subgrad 37.619080 stepsize= 1.000000 +dualbound = 3202410.179831, lowerbound=1244170.179831, norm of subgrad 1116.039954 dualbound = 3202410.179831, lowerbound=1244170.179831, norm of subgrad 38.219889 stepsize= 1.000000 +dualbound = 3202504.866007, lowerbound=1235622.866007, norm of subgrad 1112.204058 dualbound = 3202504.866007, lowerbound=1235622.866007, norm of subgrad 38.336486 stepsize= 1.000000 +dualbound = 3202606.219993, lowerbound=1244854.219993, norm of subgrad 1116.331143 dualbound = 3202606.219993, lowerbound=1244854.219993, norm of subgrad 37.978336 stepsize= 1.000000 +dualbound = 3202724.292385, lowerbound=1240368.292385, norm of subgrad 1114.298565 dualbound = 3202724.292385, lowerbound=1240368.292385, norm of subgrad 37.564244 stepsize= 1.000000 +dualbound = 3202821.133414, lowerbound=1239664.133414, norm of subgrad 1113.991532 dualbound = 3202821.133414, lowerbound=1239664.133414, norm of subgrad 37.547850 stepsize= 1.000000 +dualbound = 3202937.648655, lowerbound=1239462.648655, norm of subgrad 1113.896606 dualbound = 3202937.648655, lowerbound=1239462.648655, norm of subgrad 37.676455 stepsize= 1.000000 +dualbound = 3203020.657222, lowerbound=1236088.657222, norm of subgrad 1112.413438 dualbound = 3203020.657222, lowerbound=1236088.657222, norm of subgrad 38.183878 stepsize= 1.000000 +dualbound = 3203156.431454, lowerbound=1242315.431454, norm of subgrad 1115.177309 dualbound = 3203156.431454, lowerbound=1242315.431454, norm of subgrad 37.957532 stepsize= 1.000000 +dualbound = 3203247.288823, lowerbound=1235791.288823, norm of subgrad 1112.264936 dualbound = 3203247.288823, lowerbound=1235791.288823, norm of subgrad 37.853103 stepsize= 1.000000 +dualbound = 3203345.464331, lowerbound=1243726.464331, norm of subgrad 1115.804402 dualbound = 3203345.464331, lowerbound=1243726.464331, norm of subgrad 37.298465 stepsize= 1.000000 +dualbound = 3203454.239196, lowerbound=1242256.239196, norm of subgrad 1115.201434 dualbound = 3203454.239196, lowerbound=1242256.239196, norm of subgrad 39.073967 stepsize= 1.000000 +dualbound = 3203546.728524, lowerbound=1244512.728524, norm of subgrad 1116.186691 dualbound = 3203546.728524, lowerbound=1244512.728524, norm of subgrad 38.111538 stepsize= 1.000000 +dualbound = 3203659.784015, lowerbound=1240623.784015, norm of subgrad 1114.423521 dualbound = 3203659.784015, lowerbound=1240623.784015, norm of subgrad 37.802850 stepsize= 1.000000 +dualbound = 3203777.414165, lowerbound=1238822.414165, norm of subgrad 1113.600204 dualbound = 3203777.414165, lowerbound=1238822.414165, norm of subgrad 37.424994 stepsize= 1.000000 +dualbound = 3203867.313298, lowerbound=1243045.313298, norm of subgrad 1115.500925 dualbound = 3203867.313298, lowerbound=1243045.313298, norm of subgrad 37.241095 stepsize= 1.000000 +dualbound = 3203992.202810, lowerbound=1242871.202810, norm of subgrad 1115.425122 dualbound = 3203992.202810, lowerbound=1242871.202810, norm of subgrad 37.774191 stepsize= 1.000000 +dualbound = 3204085.891054, lowerbound=1240888.891054, norm of subgrad 1114.521373 dualbound = 3204085.891054, lowerbound=1240888.891054, norm of subgrad 36.914607 stepsize= 1.000000 +dualbound = 3204204.007331, lowerbound=1242055.007331, norm of subgrad 1115.046191 dualbound = 3204204.007331, lowerbound=1242055.007331, norm of subgrad 37.297671 stepsize= 1.000000 +dualbound = 3204293.276849, lowerbound=1238587.276849, norm of subgrad 1113.491929 dualbound = 3204293.276849, lowerbound=1238587.276849, norm of subgrad 36.963083 stepsize= 1.000000 +dualbound = 3204408.761762, lowerbound=1240413.761762, norm of subgrad 1114.328390 dualbound = 3204408.761762, lowerbound=1240413.761762, norm of subgrad 37.808530 stepsize= 1.000000 +dualbound = 3204502.947591, lowerbound=1238849.947591, norm of subgrad 1113.669137 dualbound = 3204502.947591, lowerbound=1238849.947591, norm of subgrad 38.770941 stepsize= 1.000000 +dualbound = 3204588.232809, lowerbound=1242147.232809, norm of subgrad 1115.127003 dualbound = 3204588.232809, lowerbound=1242147.232809, norm of subgrad 38.030057 stepsize= 1.000000 +dualbound = 3204703.216279, lowerbound=1238229.216279, norm of subgrad 1113.353141 dualbound = 3204703.216279, lowerbound=1238229.216279, norm of subgrad 37.960288 stepsize= 1.000000 +dualbound = 3204812.954460, lowerbound=1240487.954460, norm of subgrad 1114.408791 dualbound = 3204812.954460, lowerbound=1240487.954460, norm of subgrad 39.099082 stepsize= 1.000000 +dualbound = 3204887.578404, lowerbound=1238860.578404, norm of subgrad 1113.661339 dualbound = 3204887.578404, lowerbound=1238860.578404, norm of subgrad 38.152640 stepsize= 1.000000 +dualbound = 3205013.867358, lowerbound=1239734.867358, norm of subgrad 1114.026870 dualbound = 3205013.867358, lowerbound=1239734.867358, norm of subgrad 38.043251 stepsize= 1.000000 +dualbound = 3205161.497235, lowerbound=1241561.497235, norm of subgrad 1114.836982 dualbound = 3205161.497235, lowerbound=1241561.497235, norm of subgrad 38.047732 stepsize= 1.000000 +dualbound = 3205225.806095, lowerbound=1237948.806095, norm of subgrad 1113.230347 dualbound = 3205225.806095, lowerbound=1237948.806095, norm of subgrad 37.380595 stepsize= 1.000000 +dualbound = 3205344.559299, lowerbound=1243409.559299, norm of subgrad 1115.696446 dualbound = 3205344.559299, lowerbound=1243409.559299, norm of subgrad 38.571404 stepsize= 1.000000 +dualbound = 3205424.806740, lowerbound=1244294.806740, norm of subgrad 1116.080108 dualbound = 3205424.806740, lowerbound=1244294.806740, norm of subgrad 37.686170 stepsize= 1.000000 +dualbound = 3205558.087734, lowerbound=1240972.087734, norm of subgrad 1114.576641 dualbound = 3205558.087734, lowerbound=1240972.087734, norm of subgrad 37.977375 stepsize= 1.000000 +dualbound = 3205656.258053, lowerbound=1241737.258053, norm of subgrad 1114.912668 dualbound = 3205656.258053, lowerbound=1241737.258053, norm of subgrad 37.298396 stepsize= 1.000000 +dualbound = 3205768.291866, lowerbound=1244227.291866, norm of subgrad 1116.029252 dualbound = 3205768.291866, lowerbound=1244227.291866, norm of subgrad 37.497117 stepsize= 1.000000 +dualbound = 3205867.825017, lowerbound=1242611.825017, norm of subgrad 1115.328573 dualbound = 3205867.825017, lowerbound=1242611.825017, norm of subgrad 38.020168 stepsize= 1.000000 +dualbound = 3205956.775120, lowerbound=1239750.775120, norm of subgrad 1114.053758 dualbound = 3205956.775120, lowerbound=1239750.775120, norm of subgrad 38.130698 stepsize= 1.000000 +dualbound = 3206042.051473, lowerbound=1240477.051473, norm of subgrad 1114.392683 dualbound = 3206042.051473, lowerbound=1240477.051473, norm of subgrad 38.461362 stepsize= 1.000000 +dualbound = 3206151.083878, lowerbound=1237507.083878, norm of subgrad 1113.012167 dualbound = 3206151.083878, lowerbound=1237507.083878, norm of subgrad 37.390272 stepsize= 1.000000 +dualbound = 3206269.378156, lowerbound=1237889.378156, norm of subgrad 1113.215782 dualbound = 3206269.378156, lowerbound=1237889.378156, norm of subgrad 38.448593 stepsize= 1.000000 +dualbound = 3206384.753072, lowerbound=1242579.753072, norm of subgrad 1115.268018 dualbound = 3206384.753072, lowerbound=1242579.753072, norm of subgrad 36.856138 stepsize= 1.000000 +dualbound = 3206490.591925, lowerbound=1247304.591925, norm of subgrad 1117.407084 dualbound = 3206490.591925, lowerbound=1247304.591925, norm of subgrad 37.414420 stepsize= 1.000000 +dualbound = 3206581.217982, lowerbound=1239684.217982, norm of subgrad 1114.007728 dualbound = 3206581.217982, lowerbound=1239684.217982, norm of subgrad 37.677925 stepsize= 1.000000 +dualbound = 3206698.614354, lowerbound=1236084.614354, norm of subgrad 1112.390495 dualbound = 3206698.614354, lowerbound=1236084.614354, norm of subgrad 38.018369 stepsize= 1.000000 +dualbound = 3206800.834842, lowerbound=1241238.834842, norm of subgrad 1114.703923 dualbound = 3206800.834842, lowerbound=1241238.834842, norm of subgrad 37.791805 stepsize= 1.000000 +dualbound = 3206905.821142, lowerbound=1243812.821142, norm of subgrad 1115.867295 dualbound = 3206905.821142, lowerbound=1243812.821142, norm of subgrad 38.104938 stepsize= 1.000000 +dualbound = 3206984.319274, lowerbound=1240632.319274, norm of subgrad 1114.439913 dualbound = 3206984.319274, lowerbound=1240632.319274, norm of subgrad 37.716020 stepsize= 1.000000 +dualbound = 3207094.381789, lowerbound=1242879.381789, norm of subgrad 1115.428788 dualbound = 3207094.381789, lowerbound=1242879.381789, norm of subgrad 37.577420 stepsize= 1.000000 +dualbound = 3207204.149444, lowerbound=1237879.149444, norm of subgrad 1113.192324 dualbound = 3207204.149444, lowerbound=1237879.149444, norm of subgrad 37.785813 stepsize= 1.000000 +dualbound = 3207302.929007, lowerbound=1239042.929007, norm of subgrad 1113.711780 dualbound = 3207302.929007, lowerbound=1239042.929007, norm of subgrad 37.547031 stepsize= 1.000000 +dualbound = 3207433.052964, lowerbound=1241606.052964, norm of subgrad 1114.864141 dualbound = 3207433.052964, lowerbound=1241606.052964, norm of subgrad 38.027937 stepsize= 1.000000 +dualbound = 3207515.702144, lowerbound=1242631.702144, norm of subgrad 1115.313724 dualbound = 3207515.702144, lowerbound=1242631.702144, norm of subgrad 37.089745 stepsize= 1.000000 +dualbound = 3207618.750994, lowerbound=1241035.750994, norm of subgrad 1114.616863 dualbound = 3207618.750994, lowerbound=1241035.750994, norm of subgrad 37.921615 stepsize= 1.000000 +dualbound = 3207707.944308, lowerbound=1242313.944308, norm of subgrad 1115.194577 dualbound = 3207707.944308, lowerbound=1242313.944308, norm of subgrad 37.870745 stepsize= 1.000000 +dualbound = 3207821.672595, lowerbound=1241271.672595, norm of subgrad 1114.746461 dualbound = 3207821.672595, lowerbound=1241271.672595, norm of subgrad 38.752139 stepsize= 1.000000 +dualbound = 3207918.185551, lowerbound=1244130.185551, norm of subgrad 1116.011732 dualbound = 3207918.185551, lowerbound=1244130.185551, norm of subgrad 38.059335 stepsize= 1.000000 +dualbound = 3208016.130236, lowerbound=1240102.130236, norm of subgrad 1114.250479 dualbound = 3208016.130236, lowerbound=1240102.130236, norm of subgrad 39.369337 stepsize= 1.000000 +dualbound = 3208093.625924, lowerbound=1241244.625924, norm of subgrad 1114.755859 dualbound = 3208093.625924, lowerbound=1241244.625924, norm of subgrad 38.903672 stepsize= 1.000000 +dualbound = 3208218.739212, lowerbound=1238990.739212, norm of subgrad 1113.700920 dualbound = 3208218.739212, lowerbound=1238990.739212, norm of subgrad 38.263733 stepsize= 1.000000 +dualbound = 3208336.460523, lowerbound=1237736.460523, norm of subgrad 1113.136766 dualbound = 3208336.460523, lowerbound=1237736.460523, norm of subgrad 38.140809 stepsize= 1.000000 +dualbound = 3208465.048726, lowerbound=1245455.048726, norm of subgrad 1116.598875 dualbound = 3208465.048726, lowerbound=1245455.048726, norm of subgrad 38.296060 stepsize= 1.000000 +dualbound = 3208512.634776, lowerbound=1235802.634776, norm of subgrad 1112.298357 dualbound = 3208512.634776, lowerbound=1235802.634776, norm of subgrad 38.112807 stepsize= 1.000000 +dualbound = 3208626.909646, lowerbound=1240872.909646, norm of subgrad 1114.536186 dualbound = 3208626.909646, lowerbound=1240872.909646, norm of subgrad 37.845408 stepsize= 1.000000 +dualbound = 3208757.393559, lowerbound=1238402.393559, norm of subgrad 1113.431809 dualbound = 3208757.393559, lowerbound=1238402.393559, norm of subgrad 38.190102 stepsize= 1.000000 +dualbound = 3208853.999652, lowerbound=1239702.999652, norm of subgrad 1114.039945 dualbound = 3208853.999652, lowerbound=1239702.999652, norm of subgrad 38.452647 stepsize= 1.000000 +dualbound = 3208951.629001, lowerbound=1239872.629001, norm of subgrad 1114.090494 dualbound = 3208951.629001, lowerbound=1239872.629001, norm of subgrad 37.717759 stepsize= 1.000000 +dualbound = 3209069.766881, lowerbound=1241642.766881, norm of subgrad 1114.897649 dualbound = 3209069.766881, lowerbound=1241642.766881, norm of subgrad 38.368449 stepsize= 1.000000 +dualbound = 3209178.507708, lowerbound=1239543.507708, norm of subgrad 1113.938287 dualbound = 3209178.507708, lowerbound=1239543.507708, norm of subgrad 37.732490 stepsize= 1.000000 +dualbound = 3209264.251246, lowerbound=1242491.251246, norm of subgrad 1115.259275 dualbound = 3209264.251246, lowerbound=1242491.251246, norm of subgrad 37.386408 stepsize= 1.000000 +dualbound = 3209393.153470, lowerbound=1242507.153470, norm of subgrad 1115.269991 dualbound = 3209393.153470, lowerbound=1242507.153470, norm of subgrad 38.064448 stepsize= 1.000000 +dualbound = 3209465.369245, lowerbound=1242951.369245, norm of subgrad 1115.484814 dualbound = 3209465.369245, lowerbound=1242951.369245, norm of subgrad 37.778509 stepsize= 1.000000 +dualbound = 3209576.539855, lowerbound=1243220.539855, norm of subgrad 1115.607252 dualbound = 3209576.539855, lowerbound=1243220.539855, norm of subgrad 38.342804 stepsize= 1.000000 +dualbound = 3209664.785322, lowerbound=1238280.785322, norm of subgrad 1113.381240 dualbound = 3209664.785322, lowerbound=1238280.785322, norm of subgrad 37.752423 stepsize= 1.000000 +dualbound = 3209801.582469, lowerbound=1243187.582469, norm of subgrad 1115.549453 dualbound = 3209801.582469, lowerbound=1243187.582469, norm of subgrad 37.413863 stepsize= 1.000000 +dualbound = 3209915.067932, lowerbound=1238491.067932, norm of subgrad 1113.460852 dualbound = 3209915.067932, lowerbound=1238491.067932, norm of subgrad 37.649508 stepsize= 1.000000 +dualbound = 3209998.524180, lowerbound=1238392.524180, norm of subgrad 1113.440849 dualbound = 3209998.524180, lowerbound=1238392.524180, norm of subgrad 37.966515 stepsize= 1.000000 +dualbound = 3210070.934052, lowerbound=1241539.934052, norm of subgrad 1114.884269 dualbound = 3210070.934052, lowerbound=1241539.934052, norm of subgrad 38.722214 stepsize= 1.000000 +dualbound = 3210176.526523, lowerbound=1239332.526523, norm of subgrad 1113.844032 dualbound = 3210176.526523, lowerbound=1239332.526523, norm of subgrad 37.704011 stepsize= 1.000000 +dualbound = 3210299.554825, lowerbound=1237609.554825, norm of subgrad 1113.054606 dualbound = 3210299.554825, lowerbound=1237609.554825, norm of subgrad 37.470366 stepsize= 1.000000 +dualbound = 3210419.689844, lowerbound=1243282.689844, norm of subgrad 1115.626143 dualbound = 3210419.689844, lowerbound=1243282.689844, norm of subgrad 38.198626 stepsize= 1.000000 +dualbound = 3210494.896192, lowerbound=1242262.896192, norm of subgrad 1115.158238 dualbound = 3210494.896192, lowerbound=1242262.896192, norm of subgrad 37.285471 stepsize= 1.000000 +dualbound = 3210633.585398, lowerbound=1245874.585398, norm of subgrad 1116.770158 dualbound = 3210633.585398, lowerbound=1245874.585398, norm of subgrad 37.943237 stepsize= 1.000000 +dualbound = 3210696.231228, lowerbound=1242317.231228, norm of subgrad 1115.228331 dualbound = 3210696.231228, lowerbound=1242317.231228, norm of subgrad 38.466165 stepsize= 1.000000 +dualbound = 3210820.153793, lowerbound=1242187.153793, norm of subgrad 1115.110826 dualbound = 3210820.153793, lowerbound=1242187.153793, norm of subgrad 37.535617 stepsize= 1.000000 +dualbound = 3210925.116687, lowerbound=1240654.116687, norm of subgrad 1114.466741 dualbound = 3210925.116687, lowerbound=1240654.116687, norm of subgrad 38.561158 stepsize= 1.000000 +dualbound = 3211035.898776, lowerbound=1240608.898776, norm of subgrad 1114.419086 dualbound = 3211035.898776, lowerbound=1240608.898776, norm of subgrad 37.838897 stepsize= 1.000000 +dualbound = 3211127.273266, lowerbound=1246134.273266, norm of subgrad 1116.891344 dualbound = 3211127.273266, lowerbound=1246134.273266, norm of subgrad 37.461640 stepsize= 1.000000 +dualbound = 3211224.586634, lowerbound=1238364.586634, norm of subgrad 1113.444919 dualbound = 3211224.586634, lowerbound=1238364.586634, norm of subgrad 38.630472 stepsize= 1.000000 +dualbound = 3211336.126162, lowerbound=1241616.126162, norm of subgrad 1114.889737 dualbound = 3211336.126162, lowerbound=1241616.126162, norm of subgrad 38.399733 stepsize= 1.000000 +dualbound = 3211424.681128, lowerbound=1239715.681128, norm of subgrad 1114.039802 dualbound = 3211424.681128, lowerbound=1239715.681128, norm of subgrad 38.177938 stepsize= 1.000000 +dualbound = 3211545.495849, lowerbound=1241909.495849, norm of subgrad 1114.996186 dualbound = 3211545.495849, lowerbound=1241909.495849, norm of subgrad 37.786436 stepsize= 1.000000 +dualbound = 3211668.464067, lowerbound=1232663.464067, norm of subgrad 1110.847183 dualbound = 3211668.464067, lowerbound=1232663.464067, norm of subgrad 37.960087 stepsize= 1.000000 +dualbound = 3211752.885839, lowerbound=1241306.885839, norm of subgrad 1114.733549 dualbound = 3211752.885839, lowerbound=1241306.885839, norm of subgrad 37.528946 stepsize= 1.000000 +dualbound = 3211879.249643, lowerbound=1243044.249643, norm of subgrad 1115.517929 dualbound = 3211879.249643, lowerbound=1243044.249643, norm of subgrad 38.240866 stepsize= 1.000000 +dualbound = 3211947.816968, lowerbound=1241391.816968, norm of subgrad 1114.793172 dualbound = 3211947.816968, lowerbound=1241391.816968, norm of subgrad 37.954806 stepsize= 1.000000 +dualbound = 3212074.902490, lowerbound=1245009.902490, norm of subgrad 1116.385642 dualbound = 3212074.902490, lowerbound=1245009.902490, norm of subgrad 37.869322 stepsize= 1.000000 +dualbound = 3212165.348756, lowerbound=1243608.348756, norm of subgrad 1115.730410 dualbound = 3212165.348756, lowerbound=1243608.348756, norm of subgrad 36.557438 stepsize= 1.000000 +dualbound = 3212316.090466, lowerbound=1241867.090466, norm of subgrad 1114.956094 dualbound = 3212316.090466, lowerbound=1241867.090466, norm of subgrad 37.559842 stepsize= 1.000000 +dualbound = 3212388.910111, lowerbound=1238628.910111, norm of subgrad 1113.545648 dualbound = 3212388.910111, lowerbound=1238628.910111, norm of subgrad 37.786501 stepsize= 1.000000 +dualbound = 3212472.110075, lowerbound=1243740.110075, norm of subgrad 1115.816342 dualbound = 3212472.110075, lowerbound=1243740.110075, norm of subgrad 37.271973 stepsize= 1.000000 +dualbound = 3212583.493818, lowerbound=1242825.493818, norm of subgrad 1115.395219 dualbound = 3212583.493818, lowerbound=1242825.493818, norm of subgrad 37.314659 stepsize= 1.000000 +dualbound = 3212705.497348, lowerbound=1239117.497348, norm of subgrad 1113.761867 dualbound = 3212705.497348, lowerbound=1239117.497348, norm of subgrad 38.340625 stepsize= 1.000000 +dualbound = 3212784.749807, lowerbound=1245348.749807, norm of subgrad 1116.544558 dualbound = 3212784.749807, lowerbound=1245348.749807, norm of subgrad 37.446662 stepsize= 1.000000 +dualbound = 3212908.487275, lowerbound=1239241.487275, norm of subgrad 1113.786554 dualbound = 3212908.487275, lowerbound=1239241.487275, norm of subgrad 37.453137 stepsize= 1.000000 +dualbound = 3213005.171519, lowerbound=1244281.171519, norm of subgrad 1116.068623 dualbound = 3213005.171519, lowerbound=1244281.171519, norm of subgrad 37.744990 stepsize= 1.000000 +dualbound = 3213099.838461, lowerbound=1240361.838461, norm of subgrad 1114.318553 dualbound = 3213099.838461, lowerbound=1240361.838461, norm of subgrad 37.929763 stepsize= 1.000000 +dualbound = 3213199.268332, lowerbound=1239120.268332, norm of subgrad 1113.753684 dualbound = 3213199.268332, lowerbound=1239120.268332, norm of subgrad 37.768107 stepsize= 1.000000 +dualbound = 3213329.435934, lowerbound=1242927.435934, norm of subgrad 1115.463776 dualbound = 3213329.435934, lowerbound=1242927.435934, norm of subgrad 38.238300 stepsize= 1.000000 +dualbound = 3213403.177591, lowerbound=1241228.177591, norm of subgrad 1114.722915 dualbound = 3213403.177591, lowerbound=1241228.177591, norm of subgrad 38.114848 stepsize= 1.000000 +dualbound = 3213520.452883, lowerbound=1236078.452883, norm of subgrad 1112.391771 dualbound = 3213520.452883, lowerbound=1236078.452883, norm of subgrad 38.134962 stepsize= 1.000000 +dualbound = 3213619.708617, lowerbound=1242260.708617, norm of subgrad 1115.178330 dualbound = 3213619.708617, lowerbound=1242260.708617, norm of subgrad 38.226375 stepsize= 1.000000 +dualbound = 3213731.396794, lowerbound=1241520.396794, norm of subgrad 1114.841871 dualbound = 3213731.396794, lowerbound=1241520.396794, norm of subgrad 38.258178 stepsize= 1.000000 +dualbound = 3213826.204255, lowerbound=1241577.204255, norm of subgrad 1114.861518 dualbound = 3213826.204255, lowerbound=1241577.204255, norm of subgrad 37.865650 stepsize= 1.000000 +dualbound = 3213925.244842, lowerbound=1245952.244842, norm of subgrad 1116.827312 dualbound = 3213925.244842, lowerbound=1245952.244842, norm of subgrad 38.079398 stepsize= 1.000000 +dualbound = 3214031.657384, lowerbound=1240590.657384, norm of subgrad 1114.421669 dualbound = 3214031.657384, lowerbound=1240590.657384, norm of subgrad 38.097409 stepsize= 1.000000 +dualbound = 3214159.470291, lowerbound=1241667.470291, norm of subgrad 1114.866122 dualbound = 3214159.470291, lowerbound=1241667.470291, norm of subgrad 37.239937 stepsize= 1.000000 +dualbound = 3214253.915827, lowerbound=1241892.915827, norm of subgrad 1115.005792 dualbound = 3214253.915827, lowerbound=1241892.915827, norm of subgrad 37.940026 stepsize= 1.000000 +dualbound = 3214329.151106, lowerbound=1239914.151106, norm of subgrad 1114.099256 dualbound = 3214329.151106, lowerbound=1239914.151106, norm of subgrad 37.124591 stepsize= 1.000000 +dualbound = 3214438.782210, lowerbound=1243128.782210, norm of subgrad 1115.556266 dualbound = 3214438.782210, lowerbound=1243128.782210, norm of subgrad 38.034604 stepsize= 1.000000 +dualbound = 3214557.829827, lowerbound=1240098.829827, norm of subgrad 1114.157004 dualbound = 3214557.829827, lowerbound=1240098.829827, norm of subgrad 36.960081 stepsize= 1.000000 +dualbound = 3214663.522677, lowerbound=1243207.522677, norm of subgrad 1115.577215 dualbound = 3214663.522677, lowerbound=1243207.522677, norm of subgrad 37.559191 stepsize= 1.000000 +dualbound = 3214758.463081, lowerbound=1244036.463081, norm of subgrad 1115.950027 dualbound = 3214758.463081, lowerbound=1244036.463081, norm of subgrad 37.455846 stepsize= 1.000000 +dualbound = 3214864.209113, lowerbound=1241843.209113, norm of subgrad 1114.970049 dualbound = 3214864.209113, lowerbound=1241843.209113, norm of subgrad 37.692785 stepsize= 1.000000 +dualbound = 3214979.324030, lowerbound=1241299.324030, norm of subgrad 1114.714907 dualbound = 3214979.324030, lowerbound=1241299.324030, norm of subgrad 37.484863 stepsize= 1.000000 +dualbound = 3215074.666712, lowerbound=1241166.666712, norm of subgrad 1114.686354 dualbound = 3215074.666712, lowerbound=1241166.666712, norm of subgrad 38.135845 stepsize= 1.000000 +dualbound = 3215154.694324, lowerbound=1240894.694324, norm of subgrad 1114.577361 dualbound = 3215154.694324, lowerbound=1240894.694324, norm of subgrad 38.314848 stepsize= 1.000000 +dualbound = 3215266.106153, lowerbound=1240282.106153, norm of subgrad 1114.281430 dualbound = 3215266.106153, lowerbound=1240282.106153, norm of subgrad 38.110521 stepsize= 1.000000 +dualbound = 3215369.223551, lowerbound=1240928.223551, norm of subgrad 1114.582533 dualbound = 3215369.223551, lowerbound=1240928.223551, norm of subgrad 38.329067 stepsize= 1.000000 +dualbound = 3215470.849714, lowerbound=1240155.849714, norm of subgrad 1114.200094 dualbound = 3215470.849714, lowerbound=1240155.849714, norm of subgrad 37.250855 stepsize= 1.000000 +dualbound = 3215618.627995, lowerbound=1241879.627995, norm of subgrad 1114.951850 dualbound = 3215618.627995, lowerbound=1241879.627995, norm of subgrad 37.226043 stepsize= 1.000000 +dualbound = 3215701.138654, lowerbound=1244167.138654, norm of subgrad 1116.035008 dualbound = 3215701.138654, lowerbound=1244167.138654, norm of subgrad 38.072440 stepsize= 1.000000 +dualbound = 3215785.778230, lowerbound=1244736.778230, norm of subgrad 1116.254800 dualbound = 3215785.778230, lowerbound=1244736.778230, norm of subgrad 37.049151 stepsize= 1.000000 +dualbound = 3215896.070753, lowerbound=1239521.070753, norm of subgrad 1113.919688 dualbound = 3215896.070753, lowerbound=1239521.070753, norm of subgrad 37.500567 stepsize= 1.000000 +dualbound = 3216003.632583, lowerbound=1234808.632583, norm of subgrad 1111.800177 dualbound = 3216003.632583, lowerbound=1234808.632583, norm of subgrad 37.397351 stepsize= 1.000000 +dualbound = 3216117.524595, lowerbound=1247998.524595, norm of subgrad 1117.723814 dualbound = 3216117.524595, lowerbound=1247998.524595, norm of subgrad 37.707983 stepsize= 1.000000 +dualbound = 3216205.252502, lowerbound=1238771.252502, norm of subgrad 1113.596090 dualbound = 3216205.252502, lowerbound=1238771.252502, norm of subgrad 37.586273 stepsize= 1.000000 +dualbound = 3216288.683037, lowerbound=1242418.683037, norm of subgrad 1115.250054 dualbound = 3216288.683037, lowerbound=1242418.683037, norm of subgrad 38.045112 stepsize= 1.000000 +dualbound = 3216391.498369, lowerbound=1238431.498369, norm of subgrad 1113.474965 dualbound = 3216391.498369, lowerbound=1238431.498369, norm of subgrad 38.701619 stepsize= 1.000000 +dualbound = 3216499.386999, lowerbound=1246317.386999, norm of subgrad 1116.974658 dualbound = 3216499.386999, lowerbound=1246317.386999, norm of subgrad 37.721196 stepsize= 1.000000 +dualbound = 3216627.104550, lowerbound=1235137.104550, norm of subgrad 1111.956881 dualbound = 3216627.104550, lowerbound=1235137.104550, norm of subgrad 37.930430 stepsize= 1.000000 +dualbound = 3216722.394653, lowerbound=1245865.394653, norm of subgrad 1116.786638 dualbound = 3216722.394653, lowerbound=1245865.394653, norm of subgrad 37.977495 stepsize= 1.000000 +dualbound = 3216837.508825, lowerbound=1244066.508825, norm of subgrad 1115.947807 dualbound = 3216837.508825, lowerbound=1244066.508825, norm of subgrad 37.257404 stepsize= 1.000000 +dualbound = 3216911.431221, lowerbound=1240438.431221, norm of subgrad 1114.363689 dualbound = 3216911.431221, lowerbound=1240438.431221, norm of subgrad 37.972653 stepsize= 1.000000 +dualbound = 3217031.019259, lowerbound=1241350.019259, norm of subgrad 1114.805373 dualbound = 3217031.019259, lowerbound=1241350.019259, norm of subgrad 39.504279 stepsize= 1.000000 +dualbound = 3217115.038576, lowerbound=1235416.038576, norm of subgrad 1112.073306 dualbound = 3217115.038576, lowerbound=1235416.038576, norm of subgrad 37.081253 stepsize= 1.000000 +dualbound = 3217269.084273, lowerbound=1239125.084273, norm of subgrad 1113.741031 dualbound = 3217269.084273, lowerbound=1239125.084273, norm of subgrad 38.053196 stepsize= 1.000000 +dualbound = 3217343.838812, lowerbound=1242761.838812, norm of subgrad 1115.419580 dualbound = 3217343.838812, lowerbound=1242761.838812, norm of subgrad 38.389511 stepsize= 1.000000 +dualbound = 3217430.674241, lowerbound=1237785.674241, norm of subgrad 1113.151685 dualbound = 3217430.674241, lowerbound=1237785.674241, norm of subgrad 37.521133 stepsize= 1.000000 +dualbound = 3217556.656774, lowerbound=1245150.656774, norm of subgrad 1116.470625 dualbound = 3217556.656774, lowerbound=1245150.656774, norm of subgrad 38.496526 stepsize= 1.000000 +dualbound = 3217649.047238, lowerbound=1245072.047238, norm of subgrad 1116.422880 dualbound = 3217649.047238, lowerbound=1245072.047238, norm of subgrad 37.688068 stepsize= 1.000000 +dualbound = 3217770.597072, lowerbound=1243763.597072, norm of subgrad 1115.834933 dualbound = 3217770.597072, lowerbound=1243763.597072, norm of subgrad 38.020387 stepsize= 1.000000 +dualbound = 3217859.676571, lowerbound=1242258.676571, norm of subgrad 1115.150966 dualbound = 3217859.676571, lowerbound=1242258.676571, norm of subgrad 37.310582 stepsize= 1.000000 +dualbound = 3217966.061725, lowerbound=1240093.061725, norm of subgrad 1114.179995 dualbound = 3217966.061725, lowerbound=1240093.061725, norm of subgrad 37.555095 stepsize= 1.000000 +dualbound = 3218069.187697, lowerbound=1246660.187697, norm of subgrad 1117.129888 dualbound = 3218069.187697, lowerbound=1246660.187697, norm of subgrad 37.711086 stepsize= 1.000000 +dualbound = 3218177.516084, lowerbound=1238135.516084, norm of subgrad 1113.292197 dualbound = 3218177.516084, lowerbound=1238135.516084, norm of subgrad 37.313917 stepsize= 1.000000 +dualbound = 3218289.588088, lowerbound=1242224.588088, norm of subgrad 1115.160790 dualbound = 3218289.588088, lowerbound=1242224.588088, norm of subgrad 38.354557 stepsize= 1.000000 +dualbound = 3218368.334768, lowerbound=1241997.334768, norm of subgrad 1115.058893 dualbound = 3218368.334768, lowerbound=1241997.334768, norm of subgrad 37.917630 stepsize= 1.000000 +dualbound = 3218480.744943, lowerbound=1245436.744943, norm of subgrad 1116.579037 dualbound = 3218480.744943, lowerbound=1245436.744943, norm of subgrad 37.741359 stepsize= 1.000000 +dualbound = 3218585.309318, lowerbound=1243885.309318, norm of subgrad 1115.887230 dualbound = 3218585.309318, lowerbound=1243885.309318, norm of subgrad 37.730152 stepsize= 1.000000 +dualbound = 3218699.606994, lowerbound=1238146.606994, norm of subgrad 1113.291340 dualbound = 3218699.606994, lowerbound=1238146.606994, norm of subgrad 37.219587 stepsize= 1.000000 +dualbound = 3218802.756995, lowerbound=1240987.756995, norm of subgrad 1114.575146 dualbound = 3218802.756995, lowerbound=1240987.756995, norm of subgrad 37.324925 stepsize= 1.000000 +dualbound = 3218900.238397, lowerbound=1239621.238397, norm of subgrad 1113.956569 dualbound = 3218900.238397, lowerbound=1239621.238397, norm of subgrad 37.087483 stepsize= 1.000000 +dualbound = 3218996.026723, lowerbound=1245622.026723, norm of subgrad 1116.681256 dualbound = 3218996.026723, lowerbound=1245622.026723, norm of subgrad 38.089215 stepsize= 1.000000 +dualbound = 3219091.177579, lowerbound=1243442.177579, norm of subgrad 1115.699412 dualbound = 3219091.177579, lowerbound=1243442.177579, norm of subgrad 37.922959 stepsize= 1.000000 +dualbound = 3219197.058720, lowerbound=1238757.058720, norm of subgrad 1113.624290 dualbound = 3219197.058720, lowerbound=1238757.058720, norm of subgrad 38.831445 stepsize= 1.000000 +dualbound = 3219286.750550, lowerbound=1243592.750550, norm of subgrad 1115.770474 dualbound = 3219286.750550, lowerbound=1243592.750550, norm of subgrad 37.956446 stepsize= 1.000000 +dualbound = 3219390.639036, lowerbound=1237724.639036, norm of subgrad 1113.120227 dualbound = 3219390.639036, lowerbound=1237724.639036, norm of subgrad 37.628294 stepsize= 1.000000 +dualbound = 3219520.042822, lowerbound=1246514.042822, norm of subgrad 1117.065818 dualbound = 3219520.042822, lowerbound=1246514.042822, norm of subgrad 38.097294 stepsize= 1.000000 +dualbound = 3219613.779901, lowerbound=1239826.779901, norm of subgrad 1114.075751 dualbound = 3219613.779901, lowerbound=1239826.779901, norm of subgrad 37.838302 stepsize= 1.000000 +dualbound = 3219705.718210, lowerbound=1242759.718210, norm of subgrad 1115.416388 dualbound = 3219705.718210, lowerbound=1242759.718210, norm of subgrad 38.547870 stepsize= 1.000000 +dualbound = 3219798.641749, lowerbound=1238314.641749, norm of subgrad 1113.426981 dualbound = 3219798.641749, lowerbound=1238314.641749, norm of subgrad 38.703017 stepsize= 1.000000 +dualbound = 3219914.022055, lowerbound=1244369.022055, norm of subgrad 1116.099020 dualbound = 3219914.022055, lowerbound=1244369.022055, norm of subgrad 37.727713 stepsize= 1.000000 +dualbound = 3220014.086723, lowerbound=1240351.086723, norm of subgrad 1114.324947 dualbound = 3220014.086723, lowerbound=1240351.086723, norm of subgrad 38.328379 stepsize= 1.000000 +dualbound = 3220115.430559, lowerbound=1239794.430559, norm of subgrad 1114.038343 dualbound = 3220115.430559, lowerbound=1239794.430559, norm of subgrad 37.260486 stepsize= 1.000000 +dualbound = 3220249.580586, lowerbound=1243846.580586, norm of subgrad 1115.862259 dualbound = 3220249.580586, lowerbound=1243846.580586, norm of subgrad 37.896570 stepsize= 1.000000 +dualbound = 3220345.574832, lowerbound=1243894.574832, norm of subgrad 1115.890037 dualbound = 3220345.574832, lowerbound=1243894.574832, norm of subgrad 37.576512 stepsize= 1.000000 +dualbound = 3220423.202924, lowerbound=1240792.202924, norm of subgrad 1114.496390 dualbound = 3220423.202924, lowerbound=1240792.202924, norm of subgrad 37.250880 stepsize= 1.000000 +dualbound = 3220549.958055, lowerbound=1241396.958055, norm of subgrad 1114.754214 dualbound = 3220549.958055, lowerbound=1241396.958055, norm of subgrad 37.506734 stepsize= 1.000000 +dualbound = 3220668.916149, lowerbound=1246532.916149, norm of subgrad 1117.071133 dualbound = 3220668.916149, lowerbound=1246532.916149, norm of subgrad 37.867639 stepsize= 1.000000 +dualbound = 3220742.364142, lowerbound=1237921.364142, norm of subgrad 1113.213530 dualbound = 3220742.364142, lowerbound=1237921.364142, norm of subgrad 37.369078 stepsize= 1.000000 +dualbound = 3220865.064848, lowerbound=1250419.064848, norm of subgrad 1118.827540 dualbound = 3220865.064848, lowerbound=1250419.064848, norm of subgrad 38.453878 stepsize= 1.000000 +dualbound = 3220950.323512, lowerbound=1238086.323512, norm of subgrad 1113.293907 dualbound = 3220950.323512, lowerbound=1238086.323512, norm of subgrad 37.712845 stepsize= 1.000000 +dualbound = 3221052.043344, lowerbound=1243867.043344, norm of subgrad 1115.902793 dualbound = 3221052.043344, lowerbound=1243867.043344, norm of subgrad 38.389059 stepsize= 1.000000 +dualbound = 3221149.279658, lowerbound=1238111.279658, norm of subgrad 1113.304217 dualbound = 3221149.279658, lowerbound=1238111.279658, norm of subgrad 37.844898 stepsize= 1.000000 +dualbound = 3221277.875227, lowerbound=1245260.875227, norm of subgrad 1116.524015 dualbound = 3221277.875227, lowerbound=1245260.875227, norm of subgrad 38.647064 stepsize= 1.000000 +dualbound = 3221357.695687, lowerbound=1238341.695687, norm of subgrad 1113.400959 dualbound = 3221357.695687, lowerbound=1238341.695687, norm of subgrad 37.414175 stepsize= 1.000000 +dualbound = 3221465.567787, lowerbound=1240593.567787, norm of subgrad 1114.408618 dualbound = 3221465.567787, lowerbound=1240593.567787, norm of subgrad 37.694457 stepsize= 1.000000 +dualbound = 3221571.092433, lowerbound=1243304.092433, norm of subgrad 1115.631253 dualbound = 3221571.092433, lowerbound=1243304.092433, norm of subgrad 37.875119 stepsize= 1.000000 +dualbound = 3221673.576019, lowerbound=1244403.576019, norm of subgrad 1116.117187 dualbound = 3221673.576019, lowerbound=1244403.576019, norm of subgrad 37.636200 stepsize= 1.000000 +dualbound = 3221786.512814, lowerbound=1235636.512814, norm of subgrad 1112.176925 dualbound = 3221786.512814, lowerbound=1235636.512814, norm of subgrad 37.602351 stepsize= 1.000000 +dualbound = 3221881.890274, lowerbound=1246833.890274, norm of subgrad 1117.221952 dualbound = 3221881.890274, lowerbound=1246833.890274, norm of subgrad 38.031270 stepsize= 1.000000 +dualbound = 3221971.750088, lowerbound=1242165.750088, norm of subgrad 1115.126338 dualbound = 3221971.750088, lowerbound=1242165.750088, norm of subgrad 37.826708 stepsize= 1.000000 +dualbound = 3222061.028574, lowerbound=1242721.028574, norm of subgrad 1115.396803 dualbound = 3222061.028574, lowerbound=1242721.028574, norm of subgrad 38.448387 stepsize= 1.000000 +dualbound = 3222177.403226, lowerbound=1244700.403226, norm of subgrad 1116.279715 dualbound = 3222177.403226, lowerbound=1244700.403226, norm of subgrad 38.683002 stepsize= 1.000000 +dualbound = 3222275.751229, lowerbound=1242204.751229, norm of subgrad 1115.162657 dualbound = 3222275.751229, lowerbound=1242204.751229, norm of subgrad 38.488284 stepsize= 1.000000 +dualbound = 3222371.775634, lowerbound=1241890.775634, norm of subgrad 1115.016940 dualbound = 3222371.775634, lowerbound=1241890.775634, norm of subgrad 38.314807 stepsize= 1.000000 +dualbound = 3222480.738268, lowerbound=1240275.738268, norm of subgrad 1114.279919 dualbound = 3222480.738268, lowerbound=1240275.738268, norm of subgrad 38.117747 stepsize= 1.000000 +dualbound = 3222598.672618, lowerbound=1242817.672618, norm of subgrad 1115.411436 dualbound = 3222598.672618, lowerbound=1242817.672618, norm of subgrad 37.985976 stepsize= 1.000000 +dualbound = 3222679.395888, lowerbound=1239662.395888, norm of subgrad 1114.033391 dualbound = 3222679.395888, lowerbound=1239662.395888, norm of subgrad 38.583977 stepsize= 1.000000 +dualbound = 3222788.943492, lowerbound=1245175.943492, norm of subgrad 1116.444779 dualbound = 3222788.943492, lowerbound=1245175.943492, norm of subgrad 37.182625 stepsize= 1.000000 +dualbound = 3222917.943859, lowerbound=1243572.943859, norm of subgrad 1115.745466 dualbound = 3222917.943859, lowerbound=1243572.943859, norm of subgrad 38.000005 stepsize= 1.000000 +dualbound = 3222987.681187, lowerbound=1246859.681187, norm of subgrad 1117.229914 dualbound = 3222987.681187, lowerbound=1246859.681187, norm of subgrad 37.586398 stepsize= 1.000000 +dualbound = 3223099.173519, lowerbound=1242778.173519, norm of subgrad 1115.379385 dualbound = 3223099.173519, lowerbound=1242778.173519, norm of subgrad 37.476557 stepsize= 1.000000 +dualbound = 3223208.271028, lowerbound=1247443.271028, norm of subgrad 1117.491956 dualbound = 3223208.271028, lowerbound=1247443.271028, norm of subgrad 38.132630 stepsize= 1.000000 +dualbound = 3223293.757999, lowerbound=1231038.757999, norm of subgrad 1110.117903 dualbound = 3223293.757999, lowerbound=1231038.757999, norm of subgrad 37.529814 stepsize= 1.000000 +dualbound = 3223413.799746, lowerbound=1244544.799746, norm of subgrad 1116.171492 dualbound = 3223413.799746, lowerbound=1244544.799746, norm of subgrad 37.603746 stepsize= 1.000000 +dualbound = 3223509.238705, lowerbound=1240697.238705, norm of subgrad 1114.483844 dualbound = 3223509.238705, lowerbound=1240697.238705, norm of subgrad 38.372372 stepsize= 1.000000 +dualbound = 3223611.919655, lowerbound=1247669.919655, norm of subgrad 1117.576807 dualbound = 3223611.919655, lowerbound=1247669.919655, norm of subgrad 37.559033 stepsize= 1.000000 +dualbound = 3223727.728327, lowerbound=1244371.728327, norm of subgrad 1116.085896 dualbound = 3223727.728327, lowerbound=1244371.728327, norm of subgrad 37.306952 stepsize= 1.000000 +dualbound = 3223838.462102, lowerbound=1242885.462102, norm of subgrad 1115.410894 dualbound = 3223838.462102, lowerbound=1242885.462102, norm of subgrad 36.969363 stepsize= 1.000000 +dualbound = 3223927.130305, lowerbound=1240722.130305, norm of subgrad 1114.455531 dualbound = 3223927.130305, lowerbound=1240722.130305, norm of subgrad 37.116953 stepsize= 1.000000 +dualbound = 3224032.017802, lowerbound=1241969.017802, norm of subgrad 1115.041263 dualbound = 3224032.017802, lowerbound=1241969.017802, norm of subgrad 38.116761 stepsize= 1.000000 +dualbound = 3224119.030125, lowerbound=1240245.030125, norm of subgrad 1114.271076 dualbound = 3224119.030125, lowerbound=1240245.030125, norm of subgrad 37.973837 stepsize= 1.000000 +dualbound = 3224243.709468, lowerbound=1245997.709468, norm of subgrad 1116.806478 dualbound = 3224243.709468, lowerbound=1245997.709468, norm of subgrad 37.197841 stepsize= 1.000000 +dualbound = 3224356.273654, lowerbound=1240504.273654, norm of subgrad 1114.369451 dualbound = 3224356.273654, lowerbound=1240504.273654, norm of subgrad 37.783120 stepsize= 1.000000 +dualbound = 3224439.156081, lowerbound=1243746.156081, norm of subgrad 1115.823085 dualbound = 3224439.156081, lowerbound=1243746.156081, norm of subgrad 37.388266 stepsize= 1.000000 +dualbound = 3224521.780336, lowerbound=1239607.780336, norm of subgrad 1113.951875 dualbound = 3224521.780336, lowerbound=1239607.780336, norm of subgrad 36.927283 stepsize= 1.000000 +dualbound = 3224650.376102, lowerbound=1248516.376102, norm of subgrad 1117.964389 dualbound = 3224650.376102, lowerbound=1248516.376102, norm of subgrad 38.165374 stepsize= 1.000000 +dualbound = 3224714.647525, lowerbound=1242564.647525, norm of subgrad 1115.324907 dualbound = 3224714.647525, lowerbound=1242564.647525, norm of subgrad 38.069298 stepsize= 1.000000 +dualbound = 3224832.668916, lowerbound=1246132.668916, norm of subgrad 1116.887939 dualbound = 3224832.668916, lowerbound=1246132.668916, norm of subgrad 37.736208 stepsize= 1.000000 +dualbound = 3224926.863125, lowerbound=1242784.863125, norm of subgrad 1115.389108 dualbound = 3224926.863125, lowerbound=1242784.863125, norm of subgrad 37.445884 stepsize= 1.000000 +dualbound = 3225042.031276, lowerbound=1243300.031276, norm of subgrad 1115.632122 dualbound = 3225042.031276, lowerbound=1243300.031276, norm of subgrad 38.081073 stepsize= 1.000000 +dualbound = 3225133.791373, lowerbound=1238421.791373, norm of subgrad 1113.441867 dualbound = 3225133.791373, lowerbound=1238421.791373, norm of subgrad 37.719492 stepsize= 1.000000 +dualbound = 3225256.921654, lowerbound=1249491.921654, norm of subgrad 1118.405079 dualbound = 3225256.921654, lowerbound=1249491.921654, norm of subgrad 38.224734 stepsize= 1.000000 +dualbound = 3225349.921711, lowerbound=1238060.921711, norm of subgrad 1113.253305 dualbound = 3225349.921711, lowerbound=1238060.921711, norm of subgrad 36.945907 stepsize= 1.000000 +dualbound = 3225466.495344, lowerbound=1247185.495344, norm of subgrad 1117.374823 dualbound = 3225466.495344, lowerbound=1247185.495344, norm of subgrad 38.178183 stepsize= 1.000000 +dualbound = 3225549.214510, lowerbound=1235340.214510, norm of subgrad 1112.058099 dualbound = 3225549.214510, lowerbound=1235340.214510, norm of subgrad 37.626044 stepsize= 1.000000 +dualbound = 3225645.063928, lowerbound=1241260.063928, norm of subgrad 1114.715687 dualbound = 3225645.063928, lowerbound=1241260.063928, norm of subgrad 37.773660 stepsize= 1.000000 +dualbound = 3225748.324561, lowerbound=1247469.324561, norm of subgrad 1117.525536 dualbound = 3225748.324561, lowerbound=1247469.324561, norm of subgrad 38.694452 stepsize= 1.000000 +dualbound = 3225839.118577, lowerbound=1244631.118577, norm of subgrad 1116.213742 dualbound = 3225839.118577, lowerbound=1244631.118577, norm of subgrad 37.320156 stepsize= 1.000000 +dualbound = 3225978.211954, lowerbound=1239211.211954, norm of subgrad 1113.802142 dualbound = 3225978.211954, lowerbound=1239211.211954, norm of subgrad 38.510951 stepsize= 1.000000 +dualbound = 3226056.096379, lowerbound=1241236.096379, norm of subgrad 1114.695069 dualbound = 3226056.096379, lowerbound=1241236.096379, norm of subgrad 37.240897 stepsize= 1.000000 +dualbound = 3226178.186859, lowerbound=1245768.186859, norm of subgrad 1116.731923 dualbound = 3226178.186859, lowerbound=1245768.186859, norm of subgrad 38.001191 stepsize= 1.000000 +dualbound = 3226256.623587, lowerbound=1247916.623587, norm of subgrad 1117.676440 dualbound = 3226256.623587, lowerbound=1247916.623587, norm of subgrad 36.911201 stepsize= 1.000000 +dualbound = 3226381.950886, lowerbound=1241704.950886, norm of subgrad 1114.902664 dualbound = 3226381.950886, lowerbound=1241704.950886, norm of subgrad 37.793218 stepsize= 1.000000 +dualbound = 3226472.076164, lowerbound=1244370.076164, norm of subgrad 1116.103972 dualbound = 3226472.076164, lowerbound=1244370.076164, norm of subgrad 37.524995 stepsize= 1.000000 +dualbound = 3226547.318517, lowerbound=1240641.318517, norm of subgrad 1114.460999 dualbound = 3226547.318517, lowerbound=1240641.318517, norm of subgrad 38.173844 stepsize= 1.000000 +dualbound = 3226658.908576, lowerbound=1244306.908576, norm of subgrad 1116.051929 dualbound = 3226658.908576, lowerbound=1244306.908576, norm of subgrad 37.102427 stepsize= 1.000000 +dualbound = 3226795.504388, lowerbound=1241082.504388, norm of subgrad 1114.627518 dualbound = 3226795.504388, lowerbound=1241082.504388, norm of subgrad 38.060423 stepsize= 1.000000 +dualbound = 3226870.935913, lowerbound=1242526.935913, norm of subgrad 1115.262721 dualbound = 3226870.935913, lowerbound=1242526.935913, norm of subgrad 36.870470 stepsize= 1.000000 +dualbound = 3226982.406399, lowerbound=1241722.406399, norm of subgrad 1114.900626 dualbound = 3226982.406399, lowerbound=1241722.406399, norm of subgrad 37.315821 stepsize= 1.000000 +dualbound = 3227089.063689, lowerbound=1244027.063689, norm of subgrad 1115.973146 dualbound = 3227089.063689, lowerbound=1244027.063689, norm of subgrad 38.414285 stepsize= 1.000000 +dualbound = 3227157.673308, lowerbound=1238748.673308, norm of subgrad 1113.581911 dualbound = 3227157.673308, lowerbound=1238748.673308, norm of subgrad 37.210343 stepsize= 1.000000 +dualbound = 3227288.897529, lowerbound=1245759.897529, norm of subgrad 1116.725972 dualbound = 3227288.897529, lowerbound=1245759.897529, norm of subgrad 38.055541 stepsize= 1.000000 +dualbound = 3227402.416359, lowerbound=1241839.416359, norm of subgrad 1114.944580 dualbound = 3227402.416359, lowerbound=1241839.416359, norm of subgrad 37.087988 stepsize= 1.000000 +dualbound = 3227497.627362, lowerbound=1242513.627362, norm of subgrad 1115.254961 dualbound = 3227497.627362, lowerbound=1242513.627362, norm of subgrad 37.083837 stepsize= 1.000000 +dualbound = 3227586.496281, lowerbound=1243378.496281, norm of subgrad 1115.672665 dualbound = 3227586.496281, lowerbound=1243378.496281, norm of subgrad 37.892861 stepsize= 1.000000 +dualbound = 3227652.582249, lowerbound=1247455.582249, norm of subgrad 1117.497912 dualbound = 3227652.582249, lowerbound=1247455.582249, norm of subgrad 37.577732 stepsize= 1.000000 +dualbound = 3227776.571161, lowerbound=1242552.571161, norm of subgrad 1115.321286 dualbound = 3227776.571161, lowerbound=1242552.571161, norm of subgrad 38.897158 stepsize= 1.000000 +dualbound = 3227858.846434, lowerbound=1245566.846434, norm of subgrad 1116.609532 dualbound = 3227858.846434, lowerbound=1245566.846434, norm of subgrad 36.500346 stepsize= 1.000000 +dualbound = 3227979.879653, lowerbound=1239945.879653, norm of subgrad 1114.131446 dualbound = 3227979.879653, lowerbound=1239945.879653, norm of subgrad 38.262687 stepsize= 1.000000 +dualbound = 3228074.269156, lowerbound=1242777.269156, norm of subgrad 1115.393325 dualbound = 3228074.269156, lowerbound=1242777.269156, norm of subgrad 37.674786 stepsize= 1.000000 +dualbound = 3228186.904650, lowerbound=1243586.904650, norm of subgrad 1115.772784 dualbound = 3228186.904650, lowerbound=1243586.904650, norm of subgrad 38.400983 stepsize= 1.000000 +dualbound = 3228272.799852, lowerbound=1244209.799852, norm of subgrad 1116.076969 dualbound = 3228272.799852, lowerbound=1244209.799852, norm of subgrad 38.780088 stepsize= 1.000000 +dualbound = 3228373.435397, lowerbound=1242696.435397, norm of subgrad 1115.366951 dualbound = 3228373.435397, lowerbound=1242696.435397, norm of subgrad 38.047806 stepsize= 1.000000 +dualbound = 3228505.865718, lowerbound=1247619.865717, norm of subgrad 1117.574993 dualbound = 3228505.865718, lowerbound=1247619.865717, norm of subgrad 38.554252 stepsize= 1.000000 +dualbound = 3228587.511896, lowerbound=1239329.511896, norm of subgrad 1113.844474 dualbound = 3228587.511896, lowerbound=1239329.511896, norm of subgrad 37.438565 stepsize= 1.000000 +dualbound = 3228697.543770, lowerbound=1242425.543770, norm of subgrad 1115.250888 dualbound = 3228697.543770, lowerbound=1242425.543770, norm of subgrad 38.327952 stepsize= 1.000000 +dualbound = 3228800.615804, lowerbound=1243907.615804, norm of subgrad 1115.905290 dualbound = 3228800.615804, lowerbound=1243907.615804, norm of subgrad 37.948281 stepsize= 1.000000 +dualbound = 3228898.278538, lowerbound=1244159.278538, norm of subgrad 1116.006397 dualbound = 3228898.278538, lowerbound=1244159.278538, norm of subgrad 37.532156 stepsize= 1.000000 +dualbound = 3228994.734857, lowerbound=1241566.734857, norm of subgrad 1114.856823 dualbound = 3228994.734857, lowerbound=1241566.734857, norm of subgrad 37.887416 stepsize= 1.000000 +dualbound = 3229076.624898, lowerbound=1245117.624898, norm of subgrad 1116.452697 dualbound = 3229076.624898, lowerbound=1245117.624898, norm of subgrad 37.827107 stepsize= 1.000000 +dualbound = 3229215.979138, lowerbound=1243799.979138, norm of subgrad 1115.825694 dualbound = 3229215.979138, lowerbound=1243799.979138, norm of subgrad 37.501390 stepsize= 1.000000 +dualbound = 3229312.398330, lowerbound=1250766.398330, norm of subgrad 1118.994369 dualbound = 3229312.398330, lowerbound=1250766.398330, norm of subgrad 38.450217 stepsize= 1.000000 +dualbound = 3229379.016804, lowerbound=1239259.016804, norm of subgrad 1113.823153 dualbound = 3229379.016804, lowerbound=1239259.016804, norm of subgrad 37.544886 stepsize= 1.000000 +dualbound = 3229494.937449, lowerbound=1243048.937449, norm of subgrad 1115.510617 dualbound = 3229494.937449, lowerbound=1243048.937449, norm of subgrad 37.827512 stepsize= 1.000000 +dualbound = 3229586.201924, lowerbound=1235405.201924, norm of subgrad 1112.095860 dualbound = 3229586.201924, lowerbound=1235405.201924, norm of subgrad 37.990321 stepsize= 1.000000 +dualbound = 3229715.477704, lowerbound=1247109.477704, norm of subgrad 1117.340359 dualbound = 3229715.477704, lowerbound=1247109.477704, norm of subgrad 38.331133 stepsize= 1.000000 +dualbound = 3229817.908522, lowerbound=1240253.908522, norm of subgrad 1114.251277 dualbound = 3229817.908522, lowerbound=1240253.908522, norm of subgrad 37.475736 stepsize= 1.000000 +dualbound = 3229910.311526, lowerbound=1243477.311526, norm of subgrad 1115.703953 dualbound = 3229910.311526, lowerbound=1243477.311526, norm of subgrad 37.555333 stepsize= 1.000000 +dualbound = 3230037.948042, lowerbound=1241663.948042, norm of subgrad 1114.891900 dualbound = 3230037.948042, lowerbound=1241663.948042, norm of subgrad 38.047819 stepsize= 1.000000 +dualbound = 3230129.131100, lowerbound=1244502.131100, norm of subgrad 1116.136699 dualbound = 3230129.131100, lowerbound=1244502.131100, norm of subgrad 36.744837 stepsize= 1.000000 +dualbound = 3230245.467980, lowerbound=1243888.467980, norm of subgrad 1115.863104 dualbound = 3230245.467980, lowerbound=1243888.467980, norm of subgrad 37.125960 stepsize= 1.000000 +dualbound = 3230320.666049, lowerbound=1245234.666049, norm of subgrad 1116.487199 dualbound = 3230320.666049, lowerbound=1245234.666049, norm of subgrad 37.204812 stepsize= 1.000000 +dualbound = 3230440.193766, lowerbound=1239101.193766, norm of subgrad 1113.737489 dualbound = 3230440.193766, lowerbound=1239101.193766, norm of subgrad 37.809096 stepsize= 1.000000 +dualbound = 3230523.742833, lowerbound=1247337.742833, norm of subgrad 1117.424603 dualbound = 3230523.742833, lowerbound=1247337.742833, norm of subgrad 37.196089 stepsize= 1.000000 +dualbound = 3230640.697829, lowerbound=1239194.697829, norm of subgrad 1113.796524 dualbound = 3230640.697829, lowerbound=1239194.697829, norm of subgrad 38.274731 stepsize= 1.000000 +dualbound = 3230735.805895, lowerbound=1244347.805895, norm of subgrad 1116.114602 dualbound = 3230735.805895, lowerbound=1244347.805895, norm of subgrad 38.198273 stepsize= 1.000000 +dualbound = 3230823.821224, lowerbound=1243836.821224, norm of subgrad 1115.890147 dualbound = 3230823.821224, lowerbound=1243836.821224, norm of subgrad 38.236309 stepsize= 1.000000 +dualbound = 3230948.499460, lowerbound=1247099.499460, norm of subgrad 1117.315309 dualbound = 3230948.499460, lowerbound=1247099.499460, norm of subgrad 37.665345 stepsize= 1.000000 +dualbound = 3231044.171802, lowerbound=1239907.171802, norm of subgrad 1114.090289 dualbound = 3231044.171802, lowerbound=1239907.171802, norm of subgrad 37.224620 stepsize= 1.000000 +dualbound = 3231156.757377, lowerbound=1245606.757377, norm of subgrad 1116.669941 dualbound = 3231156.757377, lowerbound=1245606.757377, norm of subgrad 38.178339 stepsize= 1.000000 +dualbound = 3231245.752831, lowerbound=1243479.752831, norm of subgrad 1115.713562 dualbound = 3231245.752831, lowerbound=1243479.752831, norm of subgrad 37.762355 stepsize= 1.000000 +dualbound = 3231331.797344, lowerbound=1241933.797344, norm of subgrad 1114.993631 dualbound = 3231331.797344, lowerbound=1241933.797344, norm of subgrad 36.919433 stepsize= 1.000000 +dualbound = 3231468.304805, lowerbound=1247824.304805, norm of subgrad 1117.663771 dualbound = 3231468.304805, lowerbound=1247824.304805, norm of subgrad 38.529307 stepsize= 1.000000 +dualbound = 3231514.768946, lowerbound=1244919.768946, norm of subgrad 1116.356022 dualbound = 3231514.768946, lowerbound=1244919.768946, norm of subgrad 37.114204 stepsize= 1.000000 +dualbound = 3231682.384388, lowerbound=1240070.384388, norm of subgrad 1114.177896 dualbound = 3231682.384388, lowerbound=1240070.384388, norm of subgrad 38.595537 stepsize= 1.000000 +dualbound = 3231736.197481, lowerbound=1243906.197481, norm of subgrad 1115.932882 dualbound = 3231736.197481, lowerbound=1243906.197481, norm of subgrad 38.128901 stepsize= 1.000000 +dualbound = 3231858.231227, lowerbound=1242579.231227, norm of subgrad 1115.290200 dualbound = 3231858.231227, lowerbound=1242579.231227, norm of subgrad 37.616934 stepsize= 1.000000 +dualbound = 3231959.645831, lowerbound=1243496.645831, norm of subgrad 1115.718892 dualbound = 3231959.645831, lowerbound=1243496.645831, norm of subgrad 37.860462 stepsize= 1.000000 +dualbound = 3232064.182914, lowerbound=1239977.182914, norm of subgrad 1114.141007 dualbound = 3232064.182914, lowerbound=1239977.182914, norm of subgrad 37.914866 stepsize= 1.000000 +dualbound = 3232125.769935, lowerbound=1242448.769935, norm of subgrad 1115.289097 dualbound = 3232125.769935, lowerbound=1242448.769935, norm of subgrad 38.504377 stepsize= 1.000000 +dualbound = 3232247.445992, lowerbound=1242747.445992, norm of subgrad 1115.386232 dualbound = 3232247.445992, lowerbound=1242747.445992, norm of subgrad 38.218792 stepsize= 1.000000 +dualbound = 3232330.747656, lowerbound=1240969.747656, norm of subgrad 1114.604750 dualbound = 3232330.747656, lowerbound=1240969.747656, norm of subgrad 38.174621 stepsize= 1.000000 +dualbound = 3232439.252132, lowerbound=1245260.252132, norm of subgrad 1116.498657 dualbound = 3232439.252132, lowerbound=1245260.252132, norm of subgrad 37.649761 stepsize= 1.000000 +dualbound = 3232553.430256, lowerbound=1242429.430256, norm of subgrad 1115.210935 dualbound = 3232553.430256, lowerbound=1242429.430256, norm of subgrad 37.150749 stepsize= 1.000000 +dualbound = 3232669.692809, lowerbound=1246657.692809, norm of subgrad 1117.112211 dualbound = 3232669.692809, lowerbound=1246657.692809, norm of subgrad 37.393349 stepsize= 1.000000 +dualbound = 3232753.037348, lowerbound=1242113.037348, norm of subgrad 1115.102254 dualbound = 3232753.037348, lowerbound=1242113.037348, norm of subgrad 37.727239 stepsize= 1.000000 +dualbound = 3232848.857269, lowerbound=1248562.857269, norm of subgrad 1117.978022 dualbound = 3232848.857269, lowerbound=1248562.857269, norm of subgrad 37.520926 stepsize= 1.000000 +dualbound = 3232971.571563, lowerbound=1241739.571563, norm of subgrad 1114.890834 dualbound = 3232971.571563, lowerbound=1241739.571563, norm of subgrad 36.942040 stepsize= 1.000000 +dualbound = 3233069.708085, lowerbound=1250855.708085, norm of subgrad 1119.014168 dualbound = 3233069.708085, lowerbound=1250855.708085, norm of subgrad 37.883196 stepsize= 1.000000 +dualbound = 3233156.820165, lowerbound=1240393.820165, norm of subgrad 1114.314058 dualbound = 3233156.820165, lowerbound=1240393.820165, norm of subgrad 37.270794 stepsize= 1.000000 +dualbound = 3233263.575026, lowerbound=1245782.575026, norm of subgrad 1116.749558 dualbound = 3233263.575026, lowerbound=1245782.575026, norm of subgrad 38.128137 stepsize= 1.000000 +dualbound = 3233359.608584, lowerbound=1237379.608584, norm of subgrad 1112.957595 dualbound = 3233359.608584, lowerbound=1237379.608584, norm of subgrad 37.296562 stepsize= 1.000000 +dualbound = 3233469.916543, lowerbound=1244104.916543, norm of subgrad 1115.992794 dualbound = 3233469.916543, lowerbound=1244104.916543, norm of subgrad 38.017206 stepsize= 1.000000 +dualbound = 3233555.334173, lowerbound=1240833.334173, norm of subgrad 1114.534582 dualbound = 3233555.334173, lowerbound=1240833.334173, norm of subgrad 37.939658 stepsize= 1.000000 +dualbound = 3233659.204025, lowerbound=1244308.204025, norm of subgrad 1116.078942 dualbound = 3233659.204025, lowerbound=1244308.204025, norm of subgrad 37.787165 stepsize= 1.000000 +dualbound = 3233765.074318, lowerbound=1243947.074318, norm of subgrad 1115.921177 dualbound = 3233765.074318, lowerbound=1243947.074318, norm of subgrad 37.932444 stepsize= 1.000000 +dualbound = 3233859.922702, lowerbound=1246993.922702, norm of subgrad 1117.278355 dualbound = 3233859.922702, lowerbound=1246993.922702, norm of subgrad 37.574571 stepsize= 1.000000 +dualbound = 3233971.918186, lowerbound=1244629.918186, norm of subgrad 1116.203798 dualbound = 3233971.918186, lowerbound=1244629.918186, norm of subgrad 37.322855 stepsize= 1.000000 +dualbound = 3234088.389967, lowerbound=1245770.389967, norm of subgrad 1116.737834 dualbound = 3234088.389967, lowerbound=1245770.389967, norm of subgrad 38.071929 stepsize= 1.000000 +dualbound = 3234157.226121, lowerbound=1241607.226121, norm of subgrad 1114.880364 dualbound = 3234157.226121, lowerbound=1241607.226121, norm of subgrad 37.680713 stepsize= 1.000000 +dualbound = 3234264.556433, lowerbound=1245565.556433, norm of subgrad 1116.623731 dualbound = 3234264.556433, lowerbound=1245565.556433, norm of subgrad 37.287133 stepsize= 1.000000 +dualbound = 3234391.736763, lowerbound=1244406.736763, norm of subgrad 1116.106060 dualbound = 3234391.736763, lowerbound=1244406.736763, norm of subgrad 37.592291 stepsize= 1.000000 +dualbound = 3234479.389762, lowerbound=1245492.389762, norm of subgrad 1116.586938 dualbound = 3234479.389762, lowerbound=1245492.389762, norm of subgrad 36.900583 stepsize= 1.000000 +dualbound = 3234581.907734, lowerbound=1240010.907734, norm of subgrad 1114.168258 dualbound = 3234581.907734, lowerbound=1240010.907734, norm of subgrad 38.242881 stepsize= 1.000000 +dualbound = 3234669.199615, lowerbound=1246368.199615, norm of subgrad 1117.006356 dualbound = 3234669.199615, lowerbound=1246368.199615, norm of subgrad 37.713285 stepsize= 1.000000 +dualbound = 3234753.015919, lowerbound=1242737.015919, norm of subgrad 1115.366315 dualbound = 3234753.015919, lowerbound=1242737.015919, norm of subgrad 37.266826 stepsize= 1.000000 +dualbound = 3234900.606247, lowerbound=1243933.606247, norm of subgrad 1115.916039 dualbound = 3234900.606247, lowerbound=1243933.606247, norm of subgrad 38.504420 stepsize= 1.000000 +dualbound = 3234968.851512, lowerbound=1240881.851512, norm of subgrad 1114.549170 dualbound = 3234968.851512, lowerbound=1240881.851512, norm of subgrad 37.499937 stepsize= 1.000000 +dualbound = 3235081.462974, lowerbound=1246791.462974, norm of subgrad 1117.173426 dualbound = 3235081.462974, lowerbound=1246791.462974, norm of subgrad 37.384642 stepsize= 1.000000 +dualbound = 3235203.000928, lowerbound=1240880.000928, norm of subgrad 1114.528152 dualbound = 3235203.000928, lowerbound=1240880.000928, norm of subgrad 37.610344 stepsize= 1.000000 +dualbound = 3235283.696512, lowerbound=1241996.696512, norm of subgrad 1115.068472 dualbound = 3235283.696512, lowerbound=1241996.696512, norm of subgrad 38.232128 stepsize= 1.000000 +dualbound = 3235352.129114, lowerbound=1246735.129114, norm of subgrad 1117.191178 dualbound = 3235352.129114, lowerbound=1246735.129114, norm of subgrad 38.071414 stepsize= 1.000000 +dualbound = 3235501.481231, lowerbound=1245073.481231, norm of subgrad 1116.403369 dualbound = 3235501.481231, lowerbound=1245073.481231, norm of subgrad 37.846428 stepsize= 1.000000 +dualbound = 3235566.326262, lowerbound=1240076.326262, norm of subgrad 1114.170241 dualbound = 3235566.326262, lowerbound=1240076.326262, norm of subgrad 36.930273 stepsize= 1.000000 +dualbound = 3235707.867032, lowerbound=1249066.867032, norm of subgrad 1118.193573 dualbound = 3235707.867032, lowerbound=1249066.867032, norm of subgrad 37.835708 stepsize= 1.000000 +dualbound = 3235785.989035, lowerbound=1242872.989035, norm of subgrad 1115.439370 dualbound = 3235785.989035, lowerbound=1242872.989035, norm of subgrad 37.551591 stepsize= 1.000000 +dualbound = 3235874.524668, lowerbound=1248221.524668, norm of subgrad 1117.814620 dualbound = 3235874.524668, lowerbound=1248221.524668, norm of subgrad 37.101693 stepsize= 1.000000 +dualbound = 3235996.417080, lowerbound=1240314.417080, norm of subgrad 1114.274390 dualbound = 3235996.417080, lowerbound=1240314.417080, norm of subgrad 37.615056 stepsize= 1.000000 +dualbound = 3236105.391124, lowerbound=1246425.391124, norm of subgrad 1117.003308 dualbound = 3236105.391124, lowerbound=1246425.391124, norm of subgrad 37.148002 stepsize= 1.000000 +dualbound = 3236210.758562, lowerbound=1241757.758562, norm of subgrad 1114.923207 dualbound = 3236210.758562, lowerbound=1241757.758562, norm of subgrad 37.434843 stepsize= 1.000000 +dualbound = 3236310.290771, lowerbound=1246866.290771, norm of subgrad 1117.223026 dualbound = 3236310.290771, lowerbound=1246866.290771, norm of subgrad 37.689948 stepsize= 1.000000 +dualbound = 3236384.118340, lowerbound=1242680.118340, norm of subgrad 1115.338567 dualbound = 3236384.118340, lowerbound=1242680.118340, norm of subgrad 37.065180 stepsize= 1.000000 +dualbound = 3236506.066972, lowerbound=1248191.066972, norm of subgrad 1117.806364 dualbound = 3236506.066972, lowerbound=1248191.066972, norm of subgrad 37.708734 stepsize= 1.000000 +dualbound = 3236596.836022, lowerbound=1242370.836022, norm of subgrad 1115.212014 dualbound = 3236596.836022, lowerbound=1242370.836022, norm of subgrad 37.653274 stepsize= 1.000000 +dualbound = 3236701.171555, lowerbound=1245934.171555, norm of subgrad 1116.826831 dualbound = 3236701.171555, lowerbound=1245934.171555, norm of subgrad 38.371025 stepsize= 1.000000 +dualbound = 3236765.219995, lowerbound=1240221.219995, norm of subgrad 1114.246032 dualbound = 3236765.219995, lowerbound=1240221.219995, norm of subgrad 37.243099 stepsize= 1.000000 +dualbound = 3236893.101347, lowerbound=1247871.101347, norm of subgrad 1117.698574 dualbound = 3236893.101347, lowerbound=1247871.101347, norm of subgrad 38.818570 stepsize= 1.000000 +dualbound = 3236997.798341, lowerbound=1241371.798341, norm of subgrad 1114.740238 dualbound = 3236997.798341, lowerbound=1241371.798341, norm of subgrad 37.130809 stepsize= 1.000000 +dualbound = 3237105.404496, lowerbound=1248795.404496, norm of subgrad 1118.098119 dualbound = 3237105.404496, lowerbound=1248795.404496, norm of subgrad 38.152407 stepsize= 1.000000 +dualbound = 3237169.303806, lowerbound=1237693.303806, norm of subgrad 1113.149273 dualbound = 3237169.303806, lowerbound=1237693.303806, norm of subgrad 38.365340 stepsize= 1.000000 +dualbound = 3237277.719269, lowerbound=1247075.719269, norm of subgrad 1117.289452 dualbound = 3237277.719269, lowerbound=1247075.719269, norm of subgrad 36.992100 stepsize= 1.000000 +dualbound = 3237399.775629, lowerbound=1238576.775629, norm of subgrad 1113.483173 dualbound = 3237399.775629, lowerbound=1238576.775629, norm of subgrad 37.283460 stepsize= 1.000000 +dualbound = 3237512.537350, lowerbound=1248265.537350, norm of subgrad 1117.837885 dualbound = 3237512.537350, lowerbound=1248265.537350, norm of subgrad 37.533475 stepsize= 1.000000 +dualbound = 3237583.020188, lowerbound=1238930.020188, norm of subgrad 1113.666027 dualbound = 3237583.020188, lowerbound=1238930.020188, norm of subgrad 37.315986 stepsize= 1.000000 +dualbound = 3237700.997339, lowerbound=1244855.997339, norm of subgrad 1116.338657 dualbound = 3237700.997339, lowerbound=1244855.997339, norm of subgrad 38.392410 stepsize= 1.000000 +dualbound = 3237796.281216, lowerbound=1242930.281216, norm of subgrad 1115.455190 dualbound = 3237796.281216, lowerbound=1242930.281216, norm of subgrad 37.487116 stepsize= 1.000000 +dualbound = 3237896.256307, lowerbound=1242333.256307, norm of subgrad 1115.215341 dualbound = 3237896.256307, lowerbound=1242333.256307, norm of subgrad 38.366328 stepsize= 1.000000 +dualbound = 3238007.473457, lowerbound=1244269.473457, norm of subgrad 1116.045014 dualbound = 3238007.473457, lowerbound=1244269.473457, norm of subgrad 37.392742 stepsize= 1.000000 +dualbound = 3238124.690402, lowerbound=1244244.690402, norm of subgrad 1116.056311 dualbound = 3238124.690402, lowerbound=1244244.690402, norm of subgrad 38.134197 stepsize= 1.000000 +dualbound = 3238207.915646, lowerbound=1242591.915646, norm of subgrad 1115.329510 dualbound = 3238207.915646, lowerbound=1242591.915646, norm of subgrad 38.094950 stepsize= 1.000000 +dualbound = 3238295.181898, lowerbound=1245915.181898, norm of subgrad 1116.808928 dualbound = 3238295.181898, lowerbound=1245915.181898, norm of subgrad 37.871708 stepsize= 1.000000 +dualbound = 3238409.057520, lowerbound=1247847.057520, norm of subgrad 1117.651134 dualbound = 3238409.057520, lowerbound=1247847.057520, norm of subgrad 37.561624 stepsize= 1.000000 +dualbound = 3238514.234119, lowerbound=1242507.234119, norm of subgrad 1115.257026 dualbound = 3238514.234119, lowerbound=1242507.234119, norm of subgrad 37.365447 stepsize= 1.000000 +dualbound = 3238600.842031, lowerbound=1246401.842031, norm of subgrad 1116.995901 dualbound = 3238600.842031, lowerbound=1246401.842031, norm of subgrad 36.940600 stepsize= 1.000000 +dualbound = 3238729.029689, lowerbound=1246185.029689, norm of subgrad 1116.904665 dualbound = 3238729.029689, lowerbound=1246185.029689, norm of subgrad 37.672107 stepsize= 1.000000 +dualbound = 3238830.644223, lowerbound=1242907.644223, norm of subgrad 1115.455801 dualbound = 3238830.644223, lowerbound=1242907.644223, norm of subgrad 37.889504 stepsize= 1.000000 +dualbound = 3238887.166575, lowerbound=1242711.166575, norm of subgrad 1115.350692 dualbound = 3238887.166575, lowerbound=1242711.166575, norm of subgrad 36.776655 stepsize= 1.000000 +dualbound = 3239035.323072, lowerbound=1245769.323072, norm of subgrad 1116.696612 dualbound = 3239035.323072, lowerbound=1245769.323072, norm of subgrad 37.284802 stepsize= 1.000000 +dualbound = 3239126.376898, lowerbound=1242505.376898, norm of subgrad 1115.244985 dualbound = 3239126.376898, lowerbound=1242505.376898, norm of subgrad 36.838212 stepsize= 1.000000 +dualbound = 3239216.519587, lowerbound=1247790.519587, norm of subgrad 1117.629867 dualbound = 3239216.519587, lowerbound=1247790.519587, norm of subgrad 37.364993 stepsize= 1.000000 +dualbound = 3239296.370445, lowerbound=1245046.370445, norm of subgrad 1116.410037 dualbound = 3239296.370445, lowerbound=1245046.370445, norm of subgrad 37.481340 stepsize= 1.000000 +dualbound = 3239406.497693, lowerbound=1245302.497693, norm of subgrad 1116.512202 dualbound = 3239406.497693, lowerbound=1245302.497693, norm of subgrad 37.511695 stepsize= 1.000000 +dualbound = 3239537.889432, lowerbound=1244554.889432, norm of subgrad 1116.175116 dualbound = 3239537.889432, lowerbound=1244554.889432, norm of subgrad 37.727864 stepsize= 1.000000 +dualbound = 3239609.775800, lowerbound=1242482.775800, norm of subgrad 1115.260855 dualbound = 3239609.775800, lowerbound=1242482.775800, norm of subgrad 37.361563 stepsize= 1.000000 +dualbound = 3239714.536198, lowerbound=1246880.536198, norm of subgrad 1117.245960 dualbound = 3239714.536198, lowerbound=1246880.536198, norm of subgrad 38.246051 stepsize= 1.000000 +dualbound = 3239795.627789, lowerbound=1246310.627789, norm of subgrad 1116.965366 dualbound = 3239795.627789, lowerbound=1246310.627789, norm of subgrad 37.176492 stepsize= 1.000000 +dualbound = 3239927.003404, lowerbound=1245777.003404, norm of subgrad 1116.723333 dualbound = 3239927.003404, lowerbound=1245777.003404, norm of subgrad 37.754147 stepsize= 1.000000 +dualbound = 3240033.820226, lowerbound=1245189.820226, norm of subgrad 1116.451889 dualbound = 3240033.820226, lowerbound=1245189.820226, norm of subgrad 37.172797 stepsize= 1.000000 +dualbound = 3240126.921050, lowerbound=1242764.921050, norm of subgrad 1115.398100 dualbound = 3240126.921050, lowerbound=1242764.921050, norm of subgrad 37.961834 stepsize= 1.000000 +dualbound = 3240211.810987, lowerbound=1245278.810987, norm of subgrad 1116.504282 dualbound = 3240211.810987, lowerbound=1245278.810987, norm of subgrad 37.254395 stepsize= 1.000000 +dualbound = 3240325.713931, lowerbound=1247280.713931, norm of subgrad 1117.395505 dualbound = 3240325.713931, lowerbound=1247280.713931, norm of subgrad 37.495372 stepsize= 1.000000 +dualbound = 3240430.176417, lowerbound=1239677.176417, norm of subgrad 1114.003670 dualbound = 3240430.176417, lowerbound=1239677.176417, norm of subgrad 37.834673 stepsize= 1.000000 +dualbound = 3240510.888889, lowerbound=1246737.888889, norm of subgrad 1117.165560 dualbound = 3240510.888889, lowerbound=1246737.888889, norm of subgrad 37.439451 stepsize= 1.000000 +dualbound = 3240608.761150, lowerbound=1246185.761150, norm of subgrad 1116.924689 dualbound = 3240608.761150, lowerbound=1246185.761150, norm of subgrad 37.853299 stepsize= 1.000000 +dualbound = 3240713.848548, lowerbound=1247231.848548, norm of subgrad 1117.427782 dualbound = 3240713.848548, lowerbound=1247231.848548, norm of subgrad 38.962641 stepsize= 1.000000 +dualbound = 3240791.173353, lowerbound=1246733.173353, norm of subgrad 1117.192541 dualbound = 3240791.173353, lowerbound=1246733.173353, norm of subgrad 38.253429 stepsize= 1.000000 +dualbound = 3240910.374085, lowerbound=1246498.374085, norm of subgrad 1117.079842 dualbound = 3240910.374085, lowerbound=1246498.374085, norm of subgrad 38.577205 stepsize= 1.000000 +dualbound = 3241009.968787, lowerbound=1243042.968787, norm of subgrad 1115.521837 dualbound = 3241009.968787, lowerbound=1243042.968787, norm of subgrad 38.020977 stepsize= 1.000000 +dualbound = 3241123.101022, lowerbound=1246579.101022, norm of subgrad 1117.103890 dualbound = 3241123.101022, lowerbound=1246579.101022, norm of subgrad 38.146196 stepsize= 1.000000 +dualbound = 3241202.968592, lowerbound=1244649.968592, norm of subgrad 1116.233832 dualbound = 3241202.968592, lowerbound=1244649.968592, norm of subgrad 37.521561 stepsize= 1.000000 +dualbound = 3241312.589838, lowerbound=1243285.589838, norm of subgrad 1115.616686 dualbound = 3241312.589838, lowerbound=1243285.589838, norm of subgrad 37.744155 stepsize= 1.000000 +dualbound = 3241417.506549, lowerbound=1238986.506549, norm of subgrad 1113.688245 dualbound = 3241417.506549, lowerbound=1238986.506549, norm of subgrad 37.681782 stepsize= 1.000000 +dualbound = 3241547.622653, lowerbound=1247315.622653, norm of subgrad 1117.402623 dualbound = 3241547.622653, lowerbound=1247315.622653, norm of subgrad 37.458191 stepsize= 1.000000 +dualbound = 3241614.539969, lowerbound=1242980.539969, norm of subgrad 1115.492062 dualbound = 3241614.539969, lowerbound=1242980.539969, norm of subgrad 37.535547 stepsize= 1.000000 +dualbound = 3241714.021665, lowerbound=1244759.021665, norm of subgrad 1116.275065 dualbound = 3241714.021665, lowerbound=1244759.021665, norm of subgrad 37.556380 stepsize= 1.000000 +dualbound = 3241810.012523, lowerbound=1243422.012523, norm of subgrad 1115.684997 dualbound = 3241810.012523, lowerbound=1243422.012523, norm of subgrad 37.775533 stepsize= 1.000000 +dualbound = 3241906.207401, lowerbound=1246157.207401, norm of subgrad 1116.903849 dualbound = 3241906.207401, lowerbound=1246157.207401, norm of subgrad 37.592484 stepsize= 1.000000 +dualbound = 3242020.050377, lowerbound=1244140.050377, norm of subgrad 1116.010327 dualbound = 3242020.050377, lowerbound=1244140.050377, norm of subgrad 38.116177 stepsize= 1.000000 +dualbound = 3242099.918268, lowerbound=1248517.918268, norm of subgrad 1117.992361 dualbound = 3242099.918268, lowerbound=1248517.918268, norm of subgrad 38.325812 stepsize= 1.000000 +dualbound = 3242205.628309, lowerbound=1242337.628309, norm of subgrad 1115.197574 dualbound = 3242205.628309, lowerbound=1242337.628309, norm of subgrad 37.864364 stepsize= 1.000000 +dualbound = 3242305.378050, lowerbound=1246971.378050, norm of subgrad 1117.290194 dualbound = 3242305.378050, lowerbound=1246971.378050, norm of subgrad 38.285111 stepsize= 1.000000 +dualbound = 3242389.977345, lowerbound=1245611.977345, norm of subgrad 1116.683025 dualbound = 3242389.977345, lowerbound=1245611.977345, norm of subgrad 38.126097 stepsize= 1.000000 +dualbound = 3242516.822077, lowerbound=1246068.822077, norm of subgrad 1116.855775 dualbound = 3242516.822077, lowerbound=1246068.822077, norm of subgrad 37.747116 stepsize= 1.000000 +dualbound = 3242620.069422, lowerbound=1245803.069422, norm of subgrad 1116.739481 dualbound = 3242620.069422, lowerbound=1245803.069422, norm of subgrad 37.513296 stepsize= 1.000000 +dualbound = 3242722.121053, lowerbound=1244785.121053, norm of subgrad 1116.302433 dualbound = 3242722.121053, lowerbound=1244785.121053, norm of subgrad 38.053274 stepsize= 1.000000 +dualbound = 3242814.950063, lowerbound=1246317.950063, norm of subgrad 1116.991920 dualbound = 3242814.950063, lowerbound=1246317.950063, norm of subgrad 38.024058 stepsize= 1.000000 +dualbound = 3242913.903268, lowerbound=1247510.903268, norm of subgrad 1117.511478 dualbound = 3242913.903268, lowerbound=1247510.903268, norm of subgrad 37.682266 stepsize= 1.000000 +dualbound = 3243029.113270, lowerbound=1247446.113270, norm of subgrad 1117.477567 dualbound = 3243029.113270, lowerbound=1247446.113270, norm of subgrad 37.751954 stepsize= 1.000000 +dualbound = 3243115.287852, lowerbound=1243158.287852, norm of subgrad 1115.531393 dualbound = 3243115.287852, lowerbound=1243158.287852, norm of subgrad 36.581069 stepsize= 1.000000 +dualbound = 3243250.787551, lowerbound=1245442.787551, norm of subgrad 1116.566517 dualbound = 3243250.787551, lowerbound=1245442.787551, norm of subgrad 37.596538 stepsize= 1.000000 +dualbound = 3243328.736174, lowerbound=1247926.736174, norm of subgrad 1117.695279 dualbound = 3243328.736174, lowerbound=1247926.736174, norm of subgrad 37.335621 stepsize= 1.000000 +dualbound = 3243434.852574, lowerbound=1246053.852574, norm of subgrad 1116.853103 dualbound = 3243434.852574, lowerbound=1246053.852574, norm of subgrad 37.591441 stepsize= 1.000000 +dualbound = 3243511.937392, lowerbound=1245580.937392, norm of subgrad 1116.671813 dualbound = 3243511.937392, lowerbound=1245580.937392, norm of subgrad 38.106231 stepsize= 1.000000 +dualbound = 3243583.685796, lowerbound=1244847.685796, norm of subgrad 1116.334934 dualbound = 3243583.685796, lowerbound=1244847.685796, norm of subgrad 37.785558 stepsize= 1.000000 +dualbound = 3243717.047291, lowerbound=1245594.047291, norm of subgrad 1116.691563 dualbound = 3243717.047291, lowerbound=1245594.047291, norm of subgrad 39.234698 stepsize= 1.000000 +dualbound = 3243796.126338, lowerbound=1246887.126338, norm of subgrad 1117.229666 dualbound = 3243796.126338, lowerbound=1246887.126338, norm of subgrad 37.337368 stepsize= 1.000000 +dualbound = 3243934.393793, lowerbound=1242860.393793, norm of subgrad 1115.426104 dualbound = 3243934.393793, lowerbound=1242860.393793, norm of subgrad 38.121745 stepsize= 1.000000 +dualbound = 3244007.579893, lowerbound=1246939.579893, norm of subgrad 1117.265671 dualbound = 3244007.579893, lowerbound=1246939.579893, norm of subgrad 37.632248 stepsize= 1.000000 +dualbound = 3244110.458774, lowerbound=1243784.458774, norm of subgrad 1115.859516 dualbound = 3244110.458774, lowerbound=1243784.458774, norm of subgrad 38.221445 stepsize= 1.000000 +dualbound = 3244213.982417, lowerbound=1246682.982417, norm of subgrad 1117.125321 dualbound = 3244213.982417, lowerbound=1246682.982417, norm of subgrad 37.276315 stepsize= 1.000000 +dualbound = 3244324.599297, lowerbound=1243547.599297, norm of subgrad 1115.733660 dualbound = 3244324.599297, lowerbound=1243547.599297, norm of subgrad 37.744097 stepsize= 1.000000 +dualbound = 3244420.972902, lowerbound=1246846.972902, norm of subgrad 1117.185290 dualbound = 3244420.972902, lowerbound=1246846.972902, norm of subgrad 36.774633 stepsize= 1.000000 +dualbound = 3244539.906078, lowerbound=1245658.906078, norm of subgrad 1116.666873 dualbound = 3244539.906078, lowerbound=1245658.906078, norm of subgrad 37.482438 stepsize= 1.000000 +dualbound = 3244628.958646, lowerbound=1246246.958646, norm of subgrad 1116.927016 dualbound = 3244628.958646, lowerbound=1246246.958646, norm of subgrad 36.987195 stepsize= 1.000000 +dualbound = 3244716.676810, lowerbound=1247679.676810, norm of subgrad 1117.603542 dualbound = 3244716.676810, lowerbound=1247679.676810, norm of subgrad 38.022601 stepsize= 1.000000 +dualbound = 3244808.482401, lowerbound=1248900.482401, norm of subgrad 1118.125432 dualbound = 3244808.482401, lowerbound=1248900.482401, norm of subgrad 37.360482 stepsize= 1.000000 +dualbound = 3244916.455900, lowerbound=1245256.455900, norm of subgrad 1116.494718 dualbound = 3244916.455900, lowerbound=1245256.455900, norm of subgrad 37.576236 stepsize= 1.000000 +dualbound = 3245008.665933, lowerbound=1250497.665933, norm of subgrad 1118.872498 dualbound = 3245008.665933, lowerbound=1250497.665933, norm of subgrad 38.343318 stepsize= 1.000000 +dualbound = 3245095.781956, lowerbound=1239987.781956, norm of subgrad 1114.128261 dualbound = 3245095.781956, lowerbound=1239987.781956, norm of subgrad 37.163369 stepsize= 1.000000 +dualbound = 3245229.750330, lowerbound=1249271.750330, norm of subgrad 1118.277582 dualbound = 3245229.750330, lowerbound=1249271.750330, norm of subgrad 37.509577 stepsize= 1.000000 +dualbound = 3245332.514951, lowerbound=1244891.514951, norm of subgrad 1116.344712 dualbound = 3245332.514951, lowerbound=1244891.514951, norm of subgrad 37.904678 stepsize= 1.000000 +dualbound = 3245392.711191, lowerbound=1247145.711191, norm of subgrad 1117.377605 dualbound = 3245392.711191, lowerbound=1247145.711191, norm of subgrad 38.042033 stepsize= 1.000000 +dualbound = 3245508.183866, lowerbound=1251563.183866, norm of subgrad 1119.326665 dualbound = 3245508.183866, lowerbound=1251563.183866, norm of subgrad 38.006219 stepsize= 1.000000 +dualbound = 3245612.425700, lowerbound=1240435.425700, norm of subgrad 1114.371314 dualbound = 3245612.425700, lowerbound=1240435.425700, norm of subgrad 38.629546 stepsize= 1.000000 +dualbound = 3245678.737321, lowerbound=1245018.737321, norm of subgrad 1116.390047 dualbound = 3245678.737321, lowerbound=1245018.737321, norm of subgrad 37.071709 stepsize= 1.000000 +dualbound = 3245815.083546, lowerbound=1243081.083546, norm of subgrad 1115.507993 dualbound = 3245815.083546, lowerbound=1243081.083546, norm of subgrad 37.594497 stepsize= 1.000000 +dualbound = 3245922.111406, lowerbound=1244318.111406, norm of subgrad 1116.098612 dualbound = 3245922.111406, lowerbound=1244318.111406, norm of subgrad 38.275682 stepsize= 1.000000 +dualbound = 3245989.179886, lowerbound=1246491.179886, norm of subgrad 1117.054690 dualbound = 3245989.179886, lowerbound=1246491.179886, norm of subgrad 37.243368 stepsize= 1.000000 +dualbound = 3246128.394412, lowerbound=1249063.394412, norm of subgrad 1118.173240 dualbound = 3246128.394412, lowerbound=1249063.394412, norm of subgrad 37.245329 stepsize= 1.000000 +dualbound = 3246226.265312, lowerbound=1246298.265312, norm of subgrad 1116.959384 dualbound = 3246226.265312, lowerbound=1246298.265312, norm of subgrad 37.388112 stepsize= 1.000000 +dualbound = 3246324.591990, lowerbound=1250149.591990, norm of subgrad 1118.689676 dualbound = 3246324.591990, lowerbound=1250149.591990, norm of subgrad 37.620828 stepsize= 1.000000 +dualbound = 3246391.233787, lowerbound=1243354.233787, norm of subgrad 1115.648347 dualbound = 3246391.233787, lowerbound=1243354.233787, norm of subgrad 37.197336 stepsize= 1.000000 +dualbound = 3246523.748922, lowerbound=1247025.748922, norm of subgrad 1117.293493 dualbound = 3246523.748922, lowerbound=1247025.748922, norm of subgrad 38.098755 stepsize= 1.000000 +dualbound = 3246607.478873, lowerbound=1246597.478873, norm of subgrad 1117.088841 dualbound = 3246607.478873, lowerbound=1246597.478873, norm of subgrad 37.063863 stepsize= 1.000000 +dualbound = 3246711.211973, lowerbound=1243765.211973, norm of subgrad 1115.868815 dualbound = 3246711.211973, lowerbound=1243765.211973, norm of subgrad 38.752201 stepsize= 1.000000 +dualbound = 3246771.082826, lowerbound=1247160.082826, norm of subgrad 1117.365689 dualbound = 3246771.082826, lowerbound=1247160.082826, norm of subgrad 37.494944 stepsize= 1.000000 +dualbound = 3246899.175761, lowerbound=1247192.175761, norm of subgrad 1117.361703 dualbound = 3246899.175761, lowerbound=1247192.175761, norm of subgrad 37.856214 stepsize= 1.000000 +dualbound = 3247014.638875, lowerbound=1245123.638875, norm of subgrad 1116.425384 dualbound = 3247014.638875, lowerbound=1245123.638875, norm of subgrad 37.382658 stepsize= 1.000000 +dualbound = 3247105.641325, lowerbound=1244752.641325, norm of subgrad 1116.275791 dualbound = 3247105.641325, lowerbound=1244752.641325, norm of subgrad 37.549999 stepsize= 1.000000 +dualbound = 3247215.181853, lowerbound=1243922.181853, norm of subgrad 1115.887621 dualbound = 3247215.181853, lowerbound=1243922.181853, norm of subgrad 37.316759 stepsize= 1.000000 +dualbound = 3247319.834048, lowerbound=1246357.834048, norm of subgrad 1117.008878 dualbound = 3247319.834048, lowerbound=1246357.834048, norm of subgrad 38.153010 stepsize= 1.000000 +dualbound = 3247383.448215, lowerbound=1247482.448215, norm of subgrad 1117.512169 dualbound = 3247383.448215, lowerbound=1247482.448215, norm of subgrad 37.611357 stepsize= 1.000000 +dualbound = 3247492.420955, lowerbound=1252222.420955, norm of subgrad 1119.621106 dualbound = 3247492.420955, lowerbound=1252222.420955, norm of subgrad 37.920611 stepsize= 1.000000 +dualbound = 3247600.383525, lowerbound=1244927.383525, norm of subgrad 1116.344205 dualbound = 3247600.383525, lowerbound=1244927.383525, norm of subgrad 37.482830 stepsize= 1.000000 +dualbound = 3247698.499549, lowerbound=1247747.499549, norm of subgrad 1117.631200 dualbound = 3247698.499549, lowerbound=1247747.499549, norm of subgrad 38.080389 stepsize= 1.000000 +dualbound = 3247783.502798, lowerbound=1244197.502798, norm of subgrad 1116.008290 dualbound = 3247783.502798, lowerbound=1244197.502798, norm of subgrad 36.905328 stepsize= 1.000000 +dualbound = 3247915.313395, lowerbound=1254030.313395, norm of subgrad 1120.425059 dualbound = 3247915.313395, lowerbound=1254030.313395, norm of subgrad 38.128868 stepsize= 1.000000 +dualbound = 3247993.725931, lowerbound=1246007.725931, norm of subgrad 1116.837377 dualbound = 3247993.725931, lowerbound=1246007.725931, norm of subgrad 37.368604 stepsize= 1.000000 +dualbound = 3248093.511023, lowerbound=1249198.511023, norm of subgrad 1118.254672 dualbound = 3248093.511023, lowerbound=1249198.511023, norm of subgrad 37.346822 stepsize= 1.000000 +dualbound = 3248196.531403, lowerbound=1245235.531403, norm of subgrad 1116.492065 dualbound = 3248196.531403, lowerbound=1245235.531403, norm of subgrad 37.709686 stepsize= 1.000000 +dualbound = 3248287.489616, lowerbound=1247013.489616, norm of subgrad 1117.278161 dualbound = 3248287.489616, lowerbound=1247013.489616, norm of subgrad 37.255311 stepsize= 1.000000 +dualbound = 3248389.480396, lowerbound=1246344.480396, norm of subgrad 1116.993501 dualbound = 3248389.480396, lowerbound=1246344.480396, norm of subgrad 37.841654 stepsize= 1.000000 +dualbound = 3248479.369490, lowerbound=1249285.369490, norm of subgrad 1118.313628 dualbound = 3248479.369490, lowerbound=1249285.369490, norm of subgrad 37.813874 stepsize= 1.000000 +dualbound = 3248566.263718, lowerbound=1242955.263718, norm of subgrad 1115.473112 dualbound = 3248566.263718, lowerbound=1242955.263718, norm of subgrad 37.575181 stepsize= 1.000000 +dualbound = 3248702.372272, lowerbound=1249216.372272, norm of subgrad 1118.291273 dualbound = 3248702.372272, lowerbound=1249216.372272, norm of subgrad 38.666634 stepsize= 1.000000 +dualbound = 3248756.599354, lowerbound=1245970.599354, norm of subgrad 1116.852989 dualbound = 3248756.599354, lowerbound=1245970.599354, norm of subgrad 38.002988 stepsize= 1.000000 +dualbound = 3248876.546455, lowerbound=1252152.546455, norm of subgrad 1119.576950 dualbound = 3248876.546455, lowerbound=1252152.546455, norm of subgrad 37.682185 stepsize= 1.000000 +dualbound = 3249002.883240, lowerbound=1246686.883240, norm of subgrad 1117.105583 dualbound = 3249002.883240, lowerbound=1246686.883240, norm of subgrad 36.936930 stepsize= 1.000000 +dualbound = 3249083.640897, lowerbound=1253455.640898, norm of subgrad 1120.169916 dualbound = 3249083.640897, lowerbound=1253455.640898, norm of subgrad 37.493435 stepsize= 1.000000 +dualbound = 3249168.310236, lowerbound=1241542.310236, norm of subgrad 1114.832862 dualbound = 3249168.310236, lowerbound=1241542.310236, norm of subgrad 37.345272 stepsize= 1.000000 +dualbound = 3249292.158029, lowerbound=1249696.158029, norm of subgrad 1118.494595 dualbound = 3249292.158029, lowerbound=1249696.158029, norm of subgrad 38.181773 stepsize= 1.000000 +dualbound = 3249356.834297, lowerbound=1246390.834297, norm of subgrad 1117.043345 dualbound = 3249356.834297, lowerbound=1246390.834297, norm of subgrad 38.205710 stepsize= 1.000000 +dualbound = 3249485.492651, lowerbound=1253463.492651, norm of subgrad 1120.173421 dualbound = 3249485.492651, lowerbound=1253463.492651, norm of subgrad 38.126872 stepsize= 1.000000 +dualbound = 3249567.389841, lowerbound=1247023.389841, norm of subgrad 1117.303625 dualbound = 3249567.389841, lowerbound=1247023.389841, norm of subgrad 37.761054 stepsize= 1.000000 +dualbound = 3249669.541070, lowerbound=1246586.541070, norm of subgrad 1117.089317 dualbound = 3249669.541070, lowerbound=1246586.541070, norm of subgrad 37.472006 stepsize= 1.000000 +dualbound = 3249772.801077, lowerbound=1248906.801077, norm of subgrad 1118.140332 dualbound = 3249772.801077, lowerbound=1248906.801077, norm of subgrad 37.871625 stepsize= 1.000000 +dualbound = 3249868.929226, lowerbound=1251242.929226, norm of subgrad 1119.172877 dualbound = 3249868.929226, lowerbound=1251242.929226, norm of subgrad 37.431646 stepsize= 1.000000 +dualbound = 3249984.639309, lowerbound=1248703.639309, norm of subgrad 1118.021753 dualbound = 3249984.639309, lowerbound=1248703.639309, norm of subgrad 37.211693 stepsize= 1.000000 +dualbound = 3250105.073178, lowerbound=1253524.073178, norm of subgrad 1120.168324 dualbound = 3250105.073178, lowerbound=1253524.073178, norm of subgrad 37.059869 stepsize= 1.000000 +dualbound = 3250170.196877, lowerbound=1242678.196877, norm of subgrad 1115.331877 dualbound = 3250170.196877, lowerbound=1242678.196877, norm of subgrad 36.771235 stepsize= 1.000000 +dualbound = 3250259.025907, lowerbound=1250926.025907, norm of subgrad 1119.047821 dualbound = 3250259.025907, lowerbound=1250926.025907, norm of subgrad 37.826301 stepsize= 1.000000 +dualbound = 3250362.232159, lowerbound=1244593.232159, norm of subgrad 1116.194979 dualbound = 3250362.232159, lowerbound=1244593.232159, norm of subgrad 37.432690 stepsize= 1.000000 +dualbound = 3250463.792968, lowerbound=1251209.792968, norm of subgrad 1119.160754 dualbound = 3250463.792968, lowerbound=1251209.792968, norm of subgrad 37.584050 stepsize= 1.000000 +dualbound = 3250557.672700, lowerbound=1248239.672700, norm of subgrad 1117.830342 dualbound = 3250557.672700, lowerbound=1248239.672700, norm of subgrad 37.401601 stepsize= 1.000000 +dualbound = 3250651.533171, lowerbound=1255194.533171, norm of subgrad 1120.956972 dualbound = 3250651.533171, lowerbound=1255194.533171, norm of subgrad 37.998164 stepsize= 1.000000 +dualbound = 3250716.643660, lowerbound=1251967.643660, norm of subgrad 1119.537692 dualbound = 3250716.643660, lowerbound=1251967.643660, norm of subgrad 38.237553 stepsize= 1.000000 +dualbound = 3250826.603479, lowerbound=1249980.603479, norm of subgrad 1118.622190 dualbound = 3250826.603479, lowerbound=1249980.603479, norm of subgrad 38.012627 stepsize= 1.000000 +dualbound = 3250942.359559, lowerbound=1252248.359559, norm of subgrad 1119.613933 dualbound = 3250942.359559, lowerbound=1252248.359559, norm of subgrad 37.453385 stepsize= 1.000000 +dualbound = 3251043.942158, lowerbound=1248960.942158, norm of subgrad 1118.128321 dualbound = 3251043.942158, lowerbound=1248960.942158, norm of subgrad 36.763876 stepsize= 1.000000 +dualbound = 3251142.745055, lowerbound=1249678.745055, norm of subgrad 1118.482340 dualbound = 3251142.745055, lowerbound=1249678.745055, norm of subgrad 37.720060 stepsize= 1.000000 +dualbound = 3251233.288722, lowerbound=1252166.288722, norm of subgrad 1119.577281 dualbound = 3251233.288722, lowerbound=1252166.288722, norm of subgrad 37.115275 stepsize= 1.000000 +dualbound = 3251323.433149, lowerbound=1248892.433149, norm of subgrad 1118.113784 dualbound = 3251323.433149, lowerbound=1248892.433149, norm of subgrad 37.096421 stepsize= 1.000000 +dualbound = 3251447.833486, lowerbound=1251150.833486, norm of subgrad 1119.104925 dualbound = 3251447.833486, lowerbound=1251150.833486, norm of subgrad 37.005410 stepsize= 1.000000 +dualbound = 3251502.220623, lowerbound=1248861.220623, norm of subgrad 1118.119055 dualbound = 3251502.220623, lowerbound=1248861.220623, norm of subgrad 37.193913 stepsize= 1.000000 +dualbound = 3251606.504822, lowerbound=1248687.504822, norm of subgrad 1118.036451 dualbound = 3251606.504822, lowerbound=1248687.504822, norm of subgrad 37.713183 stepsize= 1.000000 +dualbound = 3251739.269924, lowerbound=1251211.269924, norm of subgrad 1119.125225 dualbound = 3251739.269924, lowerbound=1251211.269924, norm of subgrad 36.915648 stepsize= 1.000000 +dualbound = 3251814.246677, lowerbound=1250392.246677, norm of subgrad 1118.774887 dualbound = 3251814.246677, lowerbound=1250392.246677, norm of subgrad 36.605693 stepsize= 1.000000 +dualbound = 3251928.032579, lowerbound=1249189.032579, norm of subgrad 1118.249987 dualbound = 3251928.032579, lowerbound=1249189.032579, norm of subgrad 37.520473 stepsize= 1.000000 +dualbound = 3251993.260973, lowerbound=1247358.260973, norm of subgrad 1117.456156 dualbound = 3251993.260973, lowerbound=1247358.260973, norm of subgrad 37.619521 stepsize= 1.000000 +dualbound = 3252097.660067, lowerbound=1251661.660067, norm of subgrad 1119.350553 dualbound = 3252097.660067, lowerbound=1251661.660067, norm of subgrad 37.261228 stepsize= 1.000000 +dualbound = 3252214.685534, lowerbound=1254309.685534, norm of subgrad 1120.564450 dualbound = 3252214.685534, lowerbound=1254309.685534, norm of subgrad 38.366984 stepsize= 1.000000 +dualbound = 3252273.047332, lowerbound=1247868.047332, norm of subgrad 1117.675734 dualbound = 3252273.047332, lowerbound=1247868.047332, norm of subgrad 37.274144 stepsize= 1.000000 +dualbound = 3252390.940453, lowerbound=1248984.940453, norm of subgrad 1118.190029 dualbound = 3252390.940453, lowerbound=1248984.940453, norm of subgrad 38.495365 stepsize= 1.000000 +dualbound = 3252486.807969, lowerbound=1249856.807969, norm of subgrad 1118.549868 dualbound = 3252486.807969, lowerbound=1249856.807969, norm of subgrad 37.321140 stepsize= 1.000000 +dualbound = 3252615.061709, lowerbound=1253951.061709, norm of subgrad 1120.386122 dualbound = 3252615.061709, lowerbound=1253951.061709, norm of subgrad 37.977016 stepsize= 1.000000 +dualbound = 3252669.968081, lowerbound=1250525.968081, norm of subgrad 1118.853864 dualbound = 3252669.968081, lowerbound=1250525.968081, norm of subgrad 36.917562 stepsize= 1.000000 +dualbound = 3252806.825587, lowerbound=1254220.825587, norm of subgrad 1120.524353 dualbound = 3252806.825587, lowerbound=1254220.825587, norm of subgrad 38.611624 stepsize= 1.000000 +dualbound = 3252860.145177, lowerbound=1246666.145177, norm of subgrad 1117.144192 dualbound = 3252860.145177, lowerbound=1246666.145177, norm of subgrad 37.394112 stepsize= 1.000000 +dualbound = 3252958.831989, lowerbound=1250929.831989, norm of subgrad 1119.077670 dualbound = 3252958.831989, lowerbound=1250929.831989, norm of subgrad 38.777401 stepsize= 1.000000 +dualbound = 3253089.852859, lowerbound=1253753.852859, norm of subgrad 1120.278917 dualbound = 3253089.852859, lowerbound=1253753.852859, norm of subgrad 37.443569 stepsize= 1.000000 +dualbound = 3253180.181856, lowerbound=1249755.181856, norm of subgrad 1118.505781 dualbound = 3253180.181856, lowerbound=1249755.181856, norm of subgrad 37.287116 stepsize= 1.000000 +dualbound = 3253280.391612, lowerbound=1248254.391612, norm of subgrad 1117.831558 dualbound = 3253280.391612, lowerbound=1248254.391612, norm of subgrad 37.325725 stepsize= 1.000000 +dualbound = 3253361.763159, lowerbound=1252468.763159, norm of subgrad 1119.752992 dualbound = 3253361.763159, lowerbound=1252468.763159, norm of subgrad 38.201722 stepsize= 1.000000 +dualbound = 3253438.723069, lowerbound=1246921.723069, norm of subgrad 1117.280056 dualbound = 3253438.723069, lowerbound=1246921.723069, norm of subgrad 38.340056 stepsize= 1.000000 +dualbound = 3253533.412287, lowerbound=1256634.412287, norm of subgrad 1121.616874 dualbound = 3253533.412287, lowerbound=1256634.412287, norm of subgrad 38.531665 stepsize= 1.000000 +dualbound = 3253633.122495, lowerbound=1249527.122495, norm of subgrad 1118.399804 dualbound = 3253633.122495, lowerbound=1249527.122495, norm of subgrad 37.292227 stepsize= 1.000000 +dualbound = 3253769.695935, lowerbound=1249785.695935, norm of subgrad 1118.502434 dualbound = 3253769.695935, lowerbound=1249785.695935, norm of subgrad 37.397506 stepsize= 1.000000 +dualbound = 3253850.356092, lowerbound=1249147.356092, norm of subgrad 1118.203629 dualbound = 3253850.356092, lowerbound=1249147.356092, norm of subgrad 36.230652 stepsize= 1.000000 +dualbound = 3253961.067052, lowerbound=1253764.067052, norm of subgrad 1120.271872 dualbound = 3253961.067052, lowerbound=1253764.067052, norm of subgrad 36.819980 stepsize= 1.000000 +dualbound = 3254022.466743, lowerbound=1250371.466743, norm of subgrad 1118.790627 dualbound = 3254022.466743, lowerbound=1250371.466743, norm of subgrad 37.180636 stepsize= 1.000000 +dualbound = 3254135.570731, lowerbound=1252338.570731, norm of subgrad 1119.655112 dualbound = 3254135.570731, lowerbound=1252338.570731, norm of subgrad 37.444679 stepsize= 1.000000 +dualbound = 3254237.282441, lowerbound=1250407.282441, norm of subgrad 1118.776243 dualbound = 3254237.282441, lowerbound=1250407.282441, norm of subgrad 36.806409 stepsize= 1.000000 +dualbound = 3254352.341814, lowerbound=1251074.341814, norm of subgrad 1119.070302 dualbound = 3254352.341814, lowerbound=1251074.341814, norm of subgrad 36.865422 stepsize= 1.000000 +dualbound = 3254452.653474, lowerbound=1247816.653474, norm of subgrad 1117.628585 dualbound = 3254452.653474, lowerbound=1247816.653474, norm of subgrad 37.112150 stepsize= 1.000000 +dualbound = 3254523.890927, lowerbound=1253160.890927, norm of subgrad 1120.035219 dualbound = 3254523.890927, lowerbound=1253160.890927, norm of subgrad 37.272476 stepsize= 1.000000 +dualbound = 3254611.395623, lowerbound=1253421.395623, norm of subgrad 1120.164897 dualbound = 3254611.395623, lowerbound=1253421.395623, norm of subgrad 37.888055 stepsize= 1.000000 +dualbound = 3254706.001943, lowerbound=1252878.001943, norm of subgrad 1119.921873 dualbound = 3254706.001943, lowerbound=1252878.001943, norm of subgrad 37.968491 stepsize= 1.000000 +dualbound = 3254816.359812, lowerbound=1249509.359812, norm of subgrad 1118.391416 dualbound = 3254816.359812, lowerbound=1249509.359812, norm of subgrad 37.421356 stepsize= 1.000000 +dualbound = 3254914.721863, lowerbound=1249903.721863, norm of subgrad 1118.579779 dualbound = 3254914.721863, lowerbound=1249903.721863, norm of subgrad 37.621298 stepsize= 1.000000 +dualbound = 3254988.995617, lowerbound=1248179.995617, norm of subgrad 1117.832275 dualbound = 3254988.995617, lowerbound=1248179.995617, norm of subgrad 37.990443 stepsize= 1.000000 +dualbound = 3255094.595267, lowerbound=1249732.595267, norm of subgrad 1118.521164 dualbound = 3255094.595267, lowerbound=1249732.595267, norm of subgrad 38.243949 stepsize= 1.000000 +dualbound = 3255182.204738, lowerbound=1251592.204738, norm of subgrad 1119.321761 dualbound = 3255182.204738, lowerbound=1251592.204738, norm of subgrad 37.102688 stepsize= 1.000000 +dualbound = 3255325.829025, lowerbound=1254058.829025, norm of subgrad 1120.428859 dualbound = 3255325.829025, lowerbound=1254058.829025, norm of subgrad 38.021366 stepsize= 1.000000 +dualbound = 3255395.727930, lowerbound=1244716.727931, norm of subgrad 1116.284340 dualbound = 3255395.727930, lowerbound=1244716.727931, norm of subgrad 37.998670 stepsize= 1.000000 +dualbound = 3255477.607797, lowerbound=1249833.607797, norm of subgrad 1118.541286 dualbound = 3255477.607797, lowerbound=1249833.607797, norm of subgrad 37.187093 stepsize= 1.000000 +dualbound = 3255602.435756, lowerbound=1251766.435756, norm of subgrad 1119.415220 dualbound = 3255602.435756, lowerbound=1251766.435756, norm of subgrad 38.063473 stepsize= 1.000000 +dualbound = 3255707.159425, lowerbound=1251535.159425, norm of subgrad 1119.282877 dualbound = 3255707.159425, lowerbound=1251535.159425, norm of subgrad 36.928629 stepsize= 1.000000 +dualbound = 3255776.888075, lowerbound=1252401.888075, norm of subgrad 1119.700803 dualbound = 3255776.888075, lowerbound=1252401.888075, norm of subgrad 37.386209 stepsize= 1.000000 +dualbound = 3255890.106387, lowerbound=1247175.106387, norm of subgrad 1117.345115 dualbound = 3255890.106387, lowerbound=1247175.106387, norm of subgrad 37.392757 stepsize= 1.000000 +dualbound = 3255986.312413, lowerbound=1255444.312413, norm of subgrad 1121.022441 dualbound = 3255986.312413, lowerbound=1255444.312413, norm of subgrad 36.649775 stepsize= 1.000000 +dualbound = 3256078.111046, lowerbound=1247793.111046, norm of subgrad 1117.643553 dualbound = 3256078.111046, lowerbound=1247793.111046, norm of subgrad 37.759749 stepsize= 1.000000 +dualbound = 3256151.653330, lowerbound=1253903.653330, norm of subgrad 1120.366303 dualbound = 3256151.653330, lowerbound=1253903.653330, norm of subgrad 37.289976 stepsize= 1.000000 +dualbound = 3256269.384245, lowerbound=1248517.384245, norm of subgrad 1117.943820 dualbound = 3256269.384245, lowerbound=1248517.384245, norm of subgrad 37.399611 stepsize= 1.000000 +dualbound = 3256367.639766, lowerbound=1251571.639766, norm of subgrad 1119.306767 dualbound = 3256367.639766, lowerbound=1251571.639766, norm of subgrad 37.070953 stepsize= 1.000000 +dualbound = 3256475.813715, lowerbound=1247898.813715, norm of subgrad 1117.676525 dualbound = 3256475.813715, lowerbound=1247898.813715, norm of subgrad 37.552283 stepsize= 1.000000 +dualbound = 3256550.041067, lowerbound=1254324.041067, norm of subgrad 1120.548545 dualbound = 3256550.041067, lowerbound=1254324.041067, norm of subgrad 37.137950 stepsize= 1.000000 +dualbound = 3256667.843475, lowerbound=1248931.843475, norm of subgrad 1118.155107 dualbound = 3256667.843475, lowerbound=1248931.843475, norm of subgrad 38.168081 stepsize= 1.000000 +dualbound = 3256750.863033, lowerbound=1253861.863033, norm of subgrad 1120.335603 dualbound = 3256750.863033, lowerbound=1253861.863033, norm of subgrad 37.054279 stepsize= 1.000000 +dualbound = 3256866.643145, lowerbound=1246694.643145, norm of subgrad 1117.130540 dualbound = 3256866.643145, lowerbound=1246694.643145, norm of subgrad 37.440354 stepsize= 1.000000 +dualbound = 3256962.259214, lowerbound=1253389.259214, norm of subgrad 1120.130912 dualbound = 3256962.259214, lowerbound=1253389.259214, norm of subgrad 37.411443 stepsize= 1.000000 +dualbound = 3257041.111023, lowerbound=1248723.111023, norm of subgrad 1118.051480 dualbound = 3257041.111023, lowerbound=1248723.111023, norm of subgrad 37.347715 stepsize= 1.000000 +dualbound = 3257140.956664, lowerbound=1254270.956664, norm of subgrad 1120.489606 dualbound = 3257140.956664, lowerbound=1254270.956664, norm of subgrad 36.412163 stepsize= 1.000000 +dualbound = 3257270.523885, lowerbound=1250568.523885, norm of subgrad 1118.868412 dualbound = 3257270.523885, lowerbound=1250568.523885, norm of subgrad 37.783161 stepsize= 1.000000 +dualbound = 3257332.455739, lowerbound=1252495.455739, norm of subgrad 1119.711327 dualbound = 3257332.455739, lowerbound=1252495.455739, norm of subgrad 36.330866 stepsize= 1.000000 +dualbound = 3257468.867064, lowerbound=1250159.867064, norm of subgrad 1118.675497 dualbound = 3257468.867064, lowerbound=1250159.867064, norm of subgrad 37.568755 stepsize= 1.000000 +dualbound = 3257538.072152, lowerbound=1252306.072152, norm of subgrad 1119.660249 dualbound = 3257538.072152, lowerbound=1252306.072152, norm of subgrad 37.446029 stepsize= 1.000000 +dualbound = 3257634.898562, lowerbound=1251001.898562, norm of subgrad 1119.070998 dualbound = 3257634.898562, lowerbound=1251001.898562, norm of subgrad 37.614178 stepsize= 1.000000 +dualbound = 3257710.124971, lowerbound=1251845.124971, norm of subgrad 1119.473146 dualbound = 3257710.124971, lowerbound=1251845.124971, norm of subgrad 38.081838 stepsize= 1.000000 +dualbound = 3257796.456544, lowerbound=1251747.456544, norm of subgrad 1119.419696 dualbound = 3257796.456544, lowerbound=1251747.456544, norm of subgrad 37.938524 stepsize= 1.000000 +dualbound = 3257925.802091, lowerbound=1249946.802091, norm of subgrad 1118.580262 dualbound = 3257925.802091, lowerbound=1249946.802091, norm of subgrad 37.474599 stepsize= 1.000000 +dualbound = 3258023.422742, lowerbound=1250844.422742, norm of subgrad 1119.009125 dualbound = 3258023.422742, lowerbound=1250844.422742, norm of subgrad 37.876386 stepsize= 1.000000 +dualbound = 3258121.587082, lowerbound=1251387.587082, norm of subgrad 1119.225887 dualbound = 3258121.587082, lowerbound=1251387.587082, norm of subgrad 37.110165 stepsize= 1.000000 +dualbound = 3258235.470948, lowerbound=1248928.470948, norm of subgrad 1118.128110 dualbound = 3258235.470948, lowerbound=1248928.470948, norm of subgrad 37.361529 stepsize= 1.000000 +dualbound = 3258314.114999, lowerbound=1252847.114999, norm of subgrad 1119.886206 dualbound = 3258314.114999, lowerbound=1252847.114999, norm of subgrad 37.103154 stepsize= 1.000000 +dualbound = 3258420.067042, lowerbound=1251273.067042, norm of subgrad 1119.180534 dualbound = 3258420.067042, lowerbound=1251273.067042, norm of subgrad 37.389197 stepsize= 1.000000 +dualbound = 3258496.287299, lowerbound=1253656.287299, norm of subgrad 1120.260812 dualbound = 3258496.287299, lowerbound=1253656.287299, norm of subgrad 37.472927 stepsize= 1.000000 +dualbound = 3258599.820096, lowerbound=1250313.820096, norm of subgrad 1118.776484 dualbound = 3258599.820096, lowerbound=1250313.820096, norm of subgrad 38.085861 stepsize= 1.000000 +dualbound = 3258665.374168, lowerbound=1251522.374168, norm of subgrad 1119.341491 dualbound = 3258665.374168, lowerbound=1251522.374168, norm of subgrad 38.321718 stepsize= 1.000000 +dualbound = 3258768.929865, lowerbound=1247587.929865, norm of subgrad 1117.573680 dualbound = 3258768.929865, lowerbound=1247587.929865, norm of subgrad 38.555878 stepsize= 1.000000 +dualbound = 3258886.876660, lowerbound=1252333.876660, norm of subgrad 1119.692760 dualbound = 3258886.876660, lowerbound=1252333.876660, norm of subgrad 38.677471 stepsize= 1.000000 +dualbound = 3258956.743856, lowerbound=1251196.743856, norm of subgrad 1119.162966 dualbound = 3258956.743856, lowerbound=1251196.743856, norm of subgrad 37.401433 stepsize= 1.000000 +dualbound = 3259086.682494, lowerbound=1252075.682494, norm of subgrad 1119.518951 dualbound = 3259086.682494, lowerbound=1252075.682494, norm of subgrad 37.107124 stepsize= 1.000000 +dualbound = 3259180.936273, lowerbound=1250971.936273, norm of subgrad 1119.047781 dualbound = 3259180.936273, lowerbound=1250971.936273, norm of subgrad 37.286107 stepsize= 1.000000 +dualbound = 3259260.032414, lowerbound=1255492.032414, norm of subgrad 1121.079851 dualbound = 3259260.032414, lowerbound=1255492.032414, norm of subgrad 37.511280 stepsize= 1.000000 +dualbound = 3259375.183137, lowerbound=1250765.183137, norm of subgrad 1118.944674 dualbound = 3259375.183137, lowerbound=1250765.183137, norm of subgrad 37.244472 stepsize= 1.000000 +dualbound = 3259479.682482, lowerbound=1252297.682482, norm of subgrad 1119.614524 dualbound = 3259479.682482, lowerbound=1252297.682482, norm of subgrad 36.653777 stepsize= 1.000000 +dualbound = 3259555.704167, lowerbound=1243935.704167, norm of subgrad 1115.894576 dualbound = 3259555.704167, lowerbound=1243935.704167, norm of subgrad 36.892027 stepsize= 1.000000 +dualbound = 3259678.631501, lowerbound=1252931.631501, norm of subgrad 1119.930637 dualbound = 3259678.631501, lowerbound=1252931.631501, norm of subgrad 37.893632 stepsize= 1.000000 +dualbound = 3259749.134490, lowerbound=1246358.134490, norm of subgrad 1116.983498 dualbound = 3259749.134490, lowerbound=1246358.134490, norm of subgrad 36.939180 stepsize= 1.000000 +dualbound = 3259840.190207, lowerbound=1255357.190207, norm of subgrad 1120.983582 dualbound = 3259840.190207, lowerbound=1255357.190207, norm of subgrad 36.579444 stepsize= 1.000000 +dualbound = 3259938.700820, lowerbound=1251713.700820, norm of subgrad 1119.401046 dualbound = 3259938.700820, lowerbound=1251713.700820, norm of subgrad 37.993560 stepsize= 1.000000 +dualbound = 3260040.197366, lowerbound=1255055.197366, norm of subgrad 1120.879653 dualbound = 3260040.197366, lowerbound=1255055.197366, norm of subgrad 37.649655 stepsize= 1.000000 +dualbound = 3260141.134623, lowerbound=1245360.134623, norm of subgrad 1116.555478 dualbound = 3260141.134623, lowerbound=1245360.134623, norm of subgrad 37.906955 stepsize= 1.000000 +dualbound = 3260221.191984, lowerbound=1256257.191984, norm of subgrad 1121.427301 dualbound = 3260221.191984, lowerbound=1256257.191984, norm of subgrad 37.710176 stepsize= 1.000000 +dualbound = 3260334.240039, lowerbound=1250181.240039, norm of subgrad 1118.696670 dualbound = 3260334.240039, lowerbound=1250181.240039, norm of subgrad 37.603830 stepsize= 1.000000 +dualbound = 3260447.011684, lowerbound=1254374.011684, norm of subgrad 1120.578427 dualbound = 3260447.011684, lowerbound=1254374.011684, norm of subgrad 37.878380 stepsize= 1.000000 +dualbound = 3260532.788387, lowerbound=1248767.788387, norm of subgrad 1118.074143 dualbound = 3260532.788387, lowerbound=1248767.788387, norm of subgrad 37.520351 stepsize= 1.000000 +dualbound = 3260610.498064, lowerbound=1251113.498064, norm of subgrad 1119.143645 dualbound = 3260610.498064, lowerbound=1251113.498064, norm of subgrad 38.035637 stepsize= 1.000000 +dualbound = 3260704.854471, lowerbound=1249197.854471, norm of subgrad 1118.274499 dualbound = 3260704.854471, lowerbound=1249197.854471, norm of subgrad 37.872898 stepsize= 1.000000 +dualbound = 3260811.498761, lowerbound=1253384.498761, norm of subgrad 1120.122537 dualbound = 3260811.498761, lowerbound=1253384.498761, norm of subgrad 37.371704 stepsize= 1.000000 +dualbound = 3260933.916289, lowerbound=1255509.916289, norm of subgrad 1121.083813 dualbound = 3260933.916289, lowerbound=1255509.916289, norm of subgrad 37.966005 stepsize= 1.000000 +dualbound = 3261020.896293, lowerbound=1247375.896293, norm of subgrad 1117.418854 dualbound = 3261020.896293, lowerbound=1247375.896293, norm of subgrad 36.551060 stepsize= 1.000000 +dualbound = 3261095.528448, lowerbound=1251013.528448, norm of subgrad 1119.062343 dualbound = 3261095.528448, lowerbound=1251013.528448, norm of subgrad 36.900300 stepsize= 1.000000 +dualbound = 3261213.335766, lowerbound=1251318.335766, norm of subgrad 1119.201651 dualbound = 3261213.335766, lowerbound=1251318.335766, norm of subgrad 37.574025 stepsize= 1.000000 +dualbound = 3261318.629760, lowerbound=1255130.629760, norm of subgrad 1120.882523 dualbound = 3261318.629760, lowerbound=1255130.629760, norm of subgrad 36.773550 stepsize= 1.000000 +dualbound = 3261398.975964, lowerbound=1247672.975964, norm of subgrad 1117.576832 dualbound = 3261398.975964, lowerbound=1247672.975964, norm of subgrad 37.220239 stepsize= 1.000000 +dualbound = 3261482.174704, lowerbound=1249921.174704, norm of subgrad 1118.559866 dualbound = 3261482.174704, lowerbound=1249921.174704, norm of subgrad 36.581399 stepsize= 1.000000 +dualbound = 3261584.957112, lowerbound=1251812.957112, norm of subgrad 1119.433766 dualbound = 3261584.957112, lowerbound=1251812.957112, norm of subgrad 37.706530 stepsize= 1.000000 +dualbound = 3261674.533831, lowerbound=1251573.533831, norm of subgrad 1119.321015 dualbound = 3261674.533831, lowerbound=1251573.533831, norm of subgrad 37.357419 stepsize= 1.000000 +dualbound = 3261781.238130, lowerbound=1245075.238130, norm of subgrad 1116.417591 dualbound = 3261781.238130, lowerbound=1245075.238130, norm of subgrad 37.678964 stepsize= 1.000000 +dualbound = 3261883.930358, lowerbound=1251393.930358, norm of subgrad 1119.231402 dualbound = 3261883.930358, lowerbound=1251393.930358, norm of subgrad 37.251741 stepsize= 1.000000 +dualbound = 3261970.349444, lowerbound=1248321.349444, norm of subgrad 1117.853903 dualbound = 3261970.349444, lowerbound=1248321.349444, norm of subgrad 36.910962 stepsize= 1.000000 +dualbound = 3262088.129691, lowerbound=1254516.129691, norm of subgrad 1120.642731 dualbound = 3262088.129691, lowerbound=1254516.129691, norm of subgrad 37.970781 stepsize= 1.000000 +dualbound = 3262137.462100, lowerbound=1255103.462100, norm of subgrad 1120.910550 dualbound = 3262137.462100, lowerbound=1255103.462100, norm of subgrad 37.233485 stepsize= 1.000000 +dualbound = 3262244.633916, lowerbound=1252880.633916, norm of subgrad 1119.898939 dualbound = 3262244.633916, lowerbound=1252880.633916, norm of subgrad 37.418870 stepsize= 1.000000 +dualbound = 3262361.910195, lowerbound=1249373.910195, norm of subgrad 1118.325494 dualbound = 3262361.910195, lowerbound=1249373.910195, norm of subgrad 37.353397 stepsize= 1.000000 +dualbound = 3262449.305303, lowerbound=1251831.305303, norm of subgrad 1119.408909 dualbound = 3262449.305303, lowerbound=1251831.305303, norm of subgrad 36.501988 stepsize= 1.000000 +dualbound = 3262571.934698, lowerbound=1253603.934698, norm of subgrad 1120.199953 dualbound = 3262571.934698, lowerbound=1253603.934698, norm of subgrad 36.967951 stepsize= 1.000000 +dualbound = 3262650.106211, lowerbound=1252692.106211, norm of subgrad 1119.806727 dualbound = 3262650.106211, lowerbound=1252692.106211, norm of subgrad 36.785480 stepsize= 1.000000 +dualbound = 3262748.034122, lowerbound=1252048.034122, norm of subgrad 1119.513749 dualbound = 3262748.034122, lowerbound=1252048.034122, norm of subgrad 36.890756 stepsize= 1.000000 +dualbound = 3262856.713810, lowerbound=1250524.713810, norm of subgrad 1118.835427 dualbound = 3262856.713810, lowerbound=1250524.713810, norm of subgrad 37.103634 stepsize= 1.000000 +dualbound = 3262941.417957, lowerbound=1249921.417957, norm of subgrad 1118.555952 dualbound = 3262941.417957, lowerbound=1249921.417957, norm of subgrad 36.478818 stepsize= 1.000000 +dualbound = 3263029.624296, lowerbound=1252651.624296, norm of subgrad 1119.823479 dualbound = 3263029.624296, lowerbound=1252651.624296, norm of subgrad 37.963224 stepsize= 1.000000 +dualbound = 3263100.951785, lowerbound=1251035.951785, norm of subgrad 1119.092915 dualbound = 3263100.951785, lowerbound=1251035.951785, norm of subgrad 37.474358 stepsize= 1.000000 +dualbound = 3263224.841798, lowerbound=1251081.841798, norm of subgrad 1119.083930 dualbound = 3263224.841798, lowerbound=1251081.841798, norm of subgrad 37.294638 stepsize= 1.000000 +dualbound = 3263312.413276, lowerbound=1248932.413276, norm of subgrad 1118.141500 dualbound = 3263312.413276, lowerbound=1248932.413276, norm of subgrad 37.357348 stepsize= 1.000000 +dualbound = 3263414.097550, lowerbound=1249385.097550, norm of subgrad 1118.335861 dualbound = 3263414.097550, lowerbound=1249385.097550, norm of subgrad 37.305285 stepsize= 1.000000 +dualbound = 3263516.132247, lowerbound=1250875.132247, norm of subgrad 1119.027315 dualbound = 3263516.132247, lowerbound=1250875.132247, norm of subgrad 38.066188 stepsize= 1.000000 +dualbound = 3263608.958867, lowerbound=1254459.958867, norm of subgrad 1120.586435 dualbound = 3263608.958867, lowerbound=1254459.958867, norm of subgrad 36.699136 stepsize= 1.000000 +dualbound = 3263697.943110, lowerbound=1250167.943110, norm of subgrad 1118.690280 dualbound = 3263697.943110, lowerbound=1250167.943110, norm of subgrad 37.269079 stepsize= 1.000000 +dualbound = 3263795.814676, lowerbound=1251528.814676, norm of subgrad 1119.313099 dualbound = 3263795.814676, lowerbound=1251528.814676, norm of subgrad 37.826863 stepsize= 1.000000 +dualbound = 3263870.948012, lowerbound=1254877.948012, norm of subgrad 1120.832703 dualbound = 3263870.948012, lowerbound=1254877.948012, norm of subgrad 38.250926 stepsize= 1.000000 +dualbound = 3263971.341493, lowerbound=1250399.341493, norm of subgrad 1118.808000 dualbound = 3263971.341493, lowerbound=1250399.341493, norm of subgrad 37.846975 stepsize= 1.000000 +dualbound = 3264067.098547, lowerbound=1252665.098547, norm of subgrad 1119.825477 dualbound = 3264067.098547, lowerbound=1252665.098547, norm of subgrad 37.944131 stepsize= 1.000000 +dualbound = 3264170.066250, lowerbound=1250456.066250, norm of subgrad 1118.804749 dualbound = 3264170.066250, lowerbound=1250456.066250, norm of subgrad 37.026581 stepsize= 1.000000 +dualbound = 3264275.272676, lowerbound=1250765.272676, norm of subgrad 1118.945161 dualbound = 3264275.272676, lowerbound=1250765.272676, norm of subgrad 37.124203 stepsize= 1.000000 +dualbound = 3264375.572105, lowerbound=1256644.572105, norm of subgrad 1121.560329 dualbound = 3264375.572105, lowerbound=1256644.572105, norm of subgrad 36.787218 stepsize= 1.000000 +dualbound = 3264462.454854, lowerbound=1251451.454854, norm of subgrad 1119.244144 dualbound = 3264462.454854, lowerbound=1251451.454854, norm of subgrad 36.645365 stepsize= 1.000000 +dualbound = 3264555.890772, lowerbound=1256590.890772, norm of subgrad 1121.556905 dualbound = 3264555.890772, lowerbound=1256590.890772, norm of subgrad 37.315358 stepsize= 1.000000 +dualbound = 3264672.531790, lowerbound=1247124.531790, norm of subgrad 1117.305031 dualbound = 3264672.531790, lowerbound=1247124.531790, norm of subgrad 36.913968 stepsize= 1.000000 +dualbound = 3264747.930303, lowerbound=1253652.930303, norm of subgrad 1120.240122 dualbound = 3264747.930303, lowerbound=1253652.930303, norm of subgrad 36.883581 stepsize= 1.000000 +dualbound = 3264850.927408, lowerbound=1255448.927408, norm of subgrad 1121.024945 dualbound = 3264850.927408, lowerbound=1255448.927408, norm of subgrad 36.755913 stepsize= 1.000000 +dualbound = 3264936.467578, lowerbound=1255587.467578, norm of subgrad 1121.092087 dualbound = 3264936.467578, lowerbound=1255587.467578, norm of subgrad 36.681605 stepsize= 1.000000 +dualbound = 3265030.871110, lowerbound=1250072.871110, norm of subgrad 1118.655832 dualbound = 3265030.871110, lowerbound=1250072.871110, norm of subgrad 37.581958 stepsize= 1.000000 +dualbound = 3265131.021935, lowerbound=1256740.021935, norm of subgrad 1121.636314 dualbound = 3265131.021935, lowerbound=1256740.021935, norm of subgrad 37.790883 stepsize= 1.000000 +dualbound = 3265214.478506, lowerbound=1247765.478506, norm of subgrad 1117.598979 dualbound = 3265214.478506, lowerbound=1247765.478506, norm of subgrad 36.680466 stepsize= 1.000000 +dualbound = 3265334.138107, lowerbound=1254490.138107, norm of subgrad 1120.601240 dualbound = 3265334.138107, lowerbound=1254490.138107, norm of subgrad 37.103364 stepsize= 1.000000 +dualbound = 3265430.033410, lowerbound=1250883.033410, norm of subgrad 1118.987951 dualbound = 3265430.033410, lowerbound=1250883.033410, norm of subgrad 36.700072 stepsize= 1.000000 +dualbound = 3265517.277392, lowerbound=1255955.277392, norm of subgrad 1121.266372 dualbound = 3265517.277392, lowerbound=1255955.277392, norm of subgrad 37.016807 stepsize= 1.000000 +dualbound = 3265610.991241, lowerbound=1250872.991241, norm of subgrad 1118.983463 dualbound = 3265610.991241, lowerbound=1250872.991241, norm of subgrad 36.670340 stepsize= 1.000000 +dualbound = 3265705.673203, lowerbound=1251422.673203, norm of subgrad 1119.247369 dualbound = 3265705.673203, lowerbound=1251422.673203, norm of subgrad 37.238179 stepsize= 1.000000 +dualbound = 3265797.455557, lowerbound=1246801.455557, norm of subgrad 1117.185506 dualbound = 3265797.455557, lowerbound=1246801.455557, norm of subgrad 37.333395 stepsize= 1.000000 +dualbound = 3265907.585243, lowerbound=1255494.585243, norm of subgrad 1121.091248 dualbound = 3265907.585243, lowerbound=1255494.585243, norm of subgrad 38.224726 stepsize= 1.000000 +dualbound = 3265966.404998, lowerbound=1254269.404998, norm of subgrad 1120.536213 dualbound = 3265966.404998, lowerbound=1254269.404998, norm of subgrad 37.293696 stepsize= 1.000000 +dualbound = 3266064.314087, lowerbound=1256716.314087, norm of subgrad 1121.654276 dualbound = 3266064.314087, lowerbound=1256716.314087, norm of subgrad 38.599341 stepsize= 1.000000 +dualbound = 3266153.512960, lowerbound=1252035.512960, norm of subgrad 1119.549245 dualbound = 3266153.512960, lowerbound=1252035.512960, norm of subgrad 38.002617 stepsize= 1.000000 +dualbound = 3266258.707549, lowerbound=1255259.707549, norm of subgrad 1120.965971 dualbound = 3266258.707549, lowerbound=1255259.707549, norm of subgrad 37.552558 stepsize= 1.000000 +dualbound = 3266358.619629, lowerbound=1251893.619629, norm of subgrad 1119.435402 dualbound = 3266358.619629, lowerbound=1251893.619629, norm of subgrad 36.632118 stepsize= 1.000000 +dualbound = 3266483.233031, lowerbound=1252023.233031, norm of subgrad 1119.503565 dualbound = 3266483.233031, lowerbound=1252023.233031, norm of subgrad 37.277519 stepsize= 1.000000 +dualbound = 3266551.603358, lowerbound=1250086.603358, norm of subgrad 1118.639175 dualbound = 3266551.603358, lowerbound=1250086.603358, norm of subgrad 36.542719 stepsize= 1.000000 +dualbound = 3266652.233574, lowerbound=1252482.233574, norm of subgrad 1119.721498 dualbound = 3266652.233574, lowerbound=1252482.233574, norm of subgrad 37.344748 stepsize= 1.000000 +dualbound = 3266745.675239, lowerbound=1250180.675239, norm of subgrad 1118.676305 dualbound = 3266745.675239, lowerbound=1250180.675239, norm of subgrad 36.734747 stepsize= 1.000000 +dualbound = 3266864.403031, lowerbound=1254266.403031, norm of subgrad 1120.505869 dualbound = 3266864.403031, lowerbound=1254266.403031, norm of subgrad 37.225365 stepsize= 1.000000 +dualbound = 3266904.462580, lowerbound=1250609.462580, norm of subgrad 1118.889835 dualbound = 3266904.462580, lowerbound=1250609.462580, norm of subgrad 36.675054 stepsize= 1.000000 +dualbound = 3267032.358082, lowerbound=1252695.358082, norm of subgrad 1119.809519 dualbound = 3267032.358082, lowerbound=1252695.358082, norm of subgrad 37.495273 stepsize= 1.000000 +dualbound = 3267114.758849, lowerbound=1250274.758849, norm of subgrad 1118.724166 dualbound = 3267114.758849, lowerbound=1250274.758849, norm of subgrad 36.761403 stepsize= 1.000000 +dualbound = 3267228.126665, lowerbound=1253201.126665, norm of subgrad 1120.043806 dualbound = 3267228.126665, lowerbound=1253201.126665, norm of subgrad 37.554864 stepsize= 1.000000 +dualbound = 3267274.299161, lowerbound=1253501.299161, norm of subgrad 1120.211274 dualbound = 3267274.299161, lowerbound=1253501.299161, norm of subgrad 37.658631 stepsize= 1.000000 +dualbound = 3267418.923705, lowerbound=1251071.923705, norm of subgrad 1119.113454 dualbound = 3267418.923705, lowerbound=1251071.923705, norm of subgrad 38.569736 stepsize= 1.000000 +dualbound = 3267466.484863, lowerbound=1254415.484863, norm of subgrad 1120.631289 dualbound = 3267466.484863, lowerbound=1254415.484863, norm of subgrad 38.033685 stepsize= 1.000000 +dualbound = 3267573.449827, lowerbound=1253979.449827, norm of subgrad 1120.398344 dualbound = 3267573.449827, lowerbound=1253979.449827, norm of subgrad 37.682422 stepsize= 1.000000 +dualbound = 3267687.062816, lowerbound=1252638.062816, norm of subgrad 1119.777238 dualbound = 3267687.062816, lowerbound=1252638.062816, norm of subgrad 37.102736 stepsize= 1.000000 +dualbound = 3267800.607562, lowerbound=1250406.607562, norm of subgrad 1118.788455 dualbound = 3267800.607562, lowerbound=1250406.607562, norm of subgrad 37.343604 stepsize= 1.000000 +dualbound = 3267866.896203, lowerbound=1255325.896203, norm of subgrad 1120.980774 dualbound = 3267866.896203, lowerbound=1255325.896203, norm of subgrad 36.582628 stepsize= 1.000000 +dualbound = 3267992.409609, lowerbound=1252720.409609, norm of subgrad 1119.838118 dualbound = 3267992.409609, lowerbound=1252720.409609, norm of subgrad 37.980435 stepsize= 1.000000 +dualbound = 3268065.386304, lowerbound=1254137.386304, norm of subgrad 1120.463469 dualbound = 3268065.386304, lowerbound=1254137.386304, norm of subgrad 37.067192 stepsize= 1.000000 +dualbound = 3268173.374807, lowerbound=1252984.374807, norm of subgrad 1119.940791 dualbound = 3268173.374807, lowerbound=1252984.374807, norm of subgrad 37.295958 stepsize= 1.000000 +dualbound = 3268266.179150, lowerbound=1249043.179150, norm of subgrad 1118.183875 dualbound = 3268266.179150, lowerbound=1249043.179150, norm of subgrad 37.212959 stepsize= 1.000000 +dualbound = 3268362.260497, lowerbound=1253581.260497, norm of subgrad 1120.225986 dualbound = 3268362.260497, lowerbound=1253581.260497, norm of subgrad 37.697233 stepsize= 1.000000 +dualbound = 3268425.070560, lowerbound=1248455.070560, norm of subgrad 1117.950388 dualbound = 3268425.070560, lowerbound=1248455.070560, norm of subgrad 37.693634 stepsize= 1.000000 +dualbound = 3268536.959167, lowerbound=1253428.959167, norm of subgrad 1120.158453 dualbound = 3268536.959167, lowerbound=1253428.959167, norm of subgrad 37.919502 stepsize= 1.000000 +dualbound = 3268633.852017, lowerbound=1251621.852017, norm of subgrad 1119.313563 dualbound = 3268633.852017, lowerbound=1251621.852017, norm of subgrad 36.577218 stepsize= 1.000000 +dualbound = 3268769.199122, lowerbound=1254939.199122, norm of subgrad 1120.810510 dualbound = 3268769.199122, lowerbound=1254939.199122, norm of subgrad 37.581207 stepsize= 1.000000 +dualbound = 3268828.783246, lowerbound=1248208.783246, norm of subgrad 1117.801764 dualbound = 3268828.783246, lowerbound=1248208.783246, norm of subgrad 36.490877 stepsize= 1.000000 +dualbound = 3268938.829898, lowerbound=1254436.829898, norm of subgrad 1120.586824 dualbound = 3268938.829898, lowerbound=1254436.829898, norm of subgrad 37.256498 stepsize= 1.000000 +dualbound = 3269038.241647, lowerbound=1253450.241647, norm of subgrad 1120.141170 dualbound = 3269038.241647, lowerbound=1253450.241647, norm of subgrad 36.951478 stepsize= 1.000000 +dualbound = 3269133.368174, lowerbound=1258250.368174, norm of subgrad 1122.328993 dualbound = 3269133.368174, lowerbound=1258250.368174, norm of subgrad 38.303088 stepsize= 1.000000 +dualbound = 3269163.784085, lowerbound=1245005.784085, norm of subgrad 1116.407535 dualbound = 3269163.784085, lowerbound=1245005.784085, norm of subgrad 37.288281 stepsize= 1.000000 +dualbound = 3269300.645025, lowerbound=1254212.645025, norm of subgrad 1120.489913 dualbound = 3269300.645025, lowerbound=1254212.645025, norm of subgrad 37.707571 stepsize= 1.000000 +dualbound = 3269390.924142, lowerbound=1247424.924142, norm of subgrad 1117.464059 dualbound = 3269390.924142, lowerbound=1247424.924142, norm of subgrad 37.299854 stepsize= 1.000000 +dualbound = 3269515.266483, lowerbound=1250935.266483, norm of subgrad 1119.023801 dualbound = 3269515.266483, lowerbound=1250935.266483, norm of subgrad 37.461211 stepsize= 1.000000 +dualbound = 3269595.432874, lowerbound=1256290.432874, norm of subgrad 1121.452377 dualbound = 3269595.432874, lowerbound=1256290.432874, norm of subgrad 38.015344 stepsize= 1.000000 +dualbound = 3269667.215754, lowerbound=1254063.215754, norm of subgrad 1120.449560 dualbound = 3269667.215754, lowerbound=1254063.215754, norm of subgrad 37.626890 stepsize= 1.000000 +dualbound = 3269772.368669, lowerbound=1252755.368669, norm of subgrad 1119.855512 dualbound = 3269772.368669, lowerbound=1252755.368669, norm of subgrad 37.764440 stepsize= 1.000000 +dualbound = 3269887.369227, lowerbound=1254484.369227, norm of subgrad 1120.610713 dualbound = 3269887.369227, lowerbound=1254484.369227, norm of subgrad 37.403216 stepsize= 1.000000 +dualbound = 3269969.498535, lowerbound=1256869.498535, norm of subgrad 1121.707403 dualbound = 3269969.498535, lowerbound=1256869.498535, norm of subgrad 37.949036 stepsize= 1.000000 +dualbound = 3270055.919365, lowerbound=1255808.919365, norm of subgrad 1121.200214 dualbound = 3270055.919365, lowerbound=1255808.919365, norm of subgrad 36.978654 stepsize= 1.000000 +dualbound = 3270143.909752, lowerbound=1252585.909752, norm of subgrad 1119.770472 dualbound = 3270143.909752, lowerbound=1252585.909752, norm of subgrad 37.255743 stepsize= 1.000000 +dualbound = 3270270.960899, lowerbound=1251366.960899, norm of subgrad 1119.222481 dualbound = 3270270.960899, lowerbound=1251366.960899, norm of subgrad 37.670295 stepsize= 1.000000 +dualbound = 3270357.409918, lowerbound=1253099.409918, norm of subgrad 1119.988576 dualbound = 3270357.409918, lowerbound=1253099.409918, norm of subgrad 36.897819 stepsize= 1.000000 +dualbound = 3270457.995482, lowerbound=1252659.995482, norm of subgrad 1119.810696 dualbound = 3270457.995482, lowerbound=1252659.995482, norm of subgrad 37.637555 stepsize= 1.000000 +dualbound = 3270541.604799, lowerbound=1251640.604799, norm of subgrad 1119.327747 dualbound = 3270541.604799, lowerbound=1251640.604799, norm of subgrad 36.573342 stepsize= 1.000000 +dualbound = 3270666.664058, lowerbound=1254743.664058, norm of subgrad 1120.746922 dualbound = 3270666.664058, lowerbound=1254743.664058, norm of subgrad 38.145239 stepsize= 1.000000 +dualbound = 3270720.078447, lowerbound=1253703.078447, norm of subgrad 1120.254024 dualbound = 3270720.078447, lowerbound=1253703.078447, norm of subgrad 36.323744 stepsize= 1.000000 +dualbound = 3270857.365155, lowerbound=1253260.365155, norm of subgrad 1120.060429 dualbound = 3270857.365155, lowerbound=1253260.365155, norm of subgrad 37.580403 stepsize= 1.000000 +dualbound = 3270911.832521, lowerbound=1252372.832521, norm of subgrad 1119.700778 dualbound = 3270911.832521, lowerbound=1252372.832521, norm of subgrad 37.569500 stepsize= 1.000000 +dualbound = 3271020.122290, lowerbound=1253427.122290, norm of subgrad 1120.157633 dualbound = 3271020.122290, lowerbound=1253427.122290, norm of subgrad 37.872018 stepsize= 1.000000 +dualbound = 3271105.176929, lowerbound=1249691.176929, norm of subgrad 1118.487898 dualbound = 3271105.176929, lowerbound=1249691.176929, norm of subgrad 37.537377 stepsize= 1.000000 +dualbound = 3271202.206766, lowerbound=1253871.206766, norm of subgrad 1120.349145 dualbound = 3271202.206766, lowerbound=1253871.206766, norm of subgrad 37.523724 stepsize= 1.000000 +dualbound = 3271289.951635, lowerbound=1259875.951635, norm of subgrad 1123.011109 dualbound = 3271289.951635, lowerbound=1259875.951635, norm of subgrad 36.955986 stepsize= 1.000000 +dualbound = 3271410.247339, lowerbound=1251588.247339, norm of subgrad 1119.302572 dualbound = 3271410.247339, lowerbound=1251588.247339, norm of subgrad 37.017505 stepsize= 1.000000 +dualbound = 3271493.704555, lowerbound=1251583.704555, norm of subgrad 1119.285801 dualbound = 3271493.704555, lowerbound=1251583.704555, norm of subgrad 36.061853 stepsize= 1.000000 +dualbound = 3271618.848394, lowerbound=1248383.848394, norm of subgrad 1117.866651 dualbound = 3271618.848394, lowerbound=1248383.848394, norm of subgrad 36.974908 stepsize= 1.000000 +dualbound = 3271661.585488, lowerbound=1254660.585488, norm of subgrad 1120.704950 dualbound = 3271661.585488, lowerbound=1254660.585488, norm of subgrad 36.901722 stepsize= 1.000000 +dualbound = 3271777.424076, lowerbound=1250003.424076, norm of subgrad 1118.620322 dualbound = 3271777.424076, lowerbound=1250003.424076, norm of subgrad 37.733786 stepsize= 1.000000 +dualbound = 3271866.531154, lowerbound=1255743.531154, norm of subgrad 1121.210743 dualbound = 3271866.531154, lowerbound=1255743.531154, norm of subgrad 38.198260 stepsize= 1.000000 +dualbound = 3271954.060307, lowerbound=1251906.060307, norm of subgrad 1119.445425 dualbound = 3271954.060307, lowerbound=1251906.060307, norm of subgrad 36.599579 stepsize= 1.000000 +dualbound = 3272074.622118, lowerbound=1249908.622118, norm of subgrad 1118.573923 dualbound = 3272074.622118, lowerbound=1249908.622118, norm of subgrad 37.677073 stepsize= 1.000000 +dualbound = 3272135.596592, lowerbound=1252703.596592, norm of subgrad 1119.835969 dualbound = 3272135.596592, lowerbound=1252703.596592, norm of subgrad 37.282361 stepsize= 1.000000 +dualbound = 3272241.633168, lowerbound=1255632.633168, norm of subgrad 1121.122934 dualbound = 3272241.633168, lowerbound=1255632.633168, norm of subgrad 37.283194 stepsize= 1.000000 +dualbound = 3272335.077176, lowerbound=1252807.077176, norm of subgrad 1119.874581 dualbound = 3272335.077176, lowerbound=1252807.077176, norm of subgrad 37.489252 stepsize= 1.000000 +dualbound = 3272424.707387, lowerbound=1256647.707387, norm of subgrad 1121.592487 dualbound = 3272424.707387, lowerbound=1256647.707387, norm of subgrad 37.571668 stepsize= 1.000000 +dualbound = 3272534.339878, lowerbound=1250971.339878, norm of subgrad 1119.036791 dualbound = 3272534.339878, lowerbound=1250971.339878, norm of subgrad 37.170317 stepsize= 1.000000 +dualbound = 3272625.648022, lowerbound=1253300.648022, norm of subgrad 1120.079751 dualbound = 3272625.648022, lowerbound=1253300.648022, norm of subgrad 37.004164 stepsize= 1.000000 +dualbound = 3272722.835943, lowerbound=1254433.835943, norm of subgrad 1120.600212 dualbound = 3272722.835943, lowerbound=1254433.835943, norm of subgrad 37.525830 stepsize= 1.000000 +dualbound = 3272778.024619, lowerbound=1252907.024619, norm of subgrad 1119.920990 dualbound = 3272778.024619, lowerbound=1252907.024619, norm of subgrad 37.029565 stepsize= 1.000000 +dualbound = 3272924.027727, lowerbound=1254637.027727, norm of subgrad 1120.672578 dualbound = 3272924.027727, lowerbound=1254637.027727, norm of subgrad 37.629817 stepsize= 1.000000 +dualbound = 3272988.014255, lowerbound=1254137.014255, norm of subgrad 1120.462857 dualbound = 3272988.014255, lowerbound=1254137.014255, norm of subgrad 36.932188 stepsize= 1.000000 +dualbound = 3273087.142789, lowerbound=1251495.142789, norm of subgrad 1119.290017 dualbound = 3273087.142789, lowerbound=1251495.142789, norm of subgrad 37.604900 stepsize= 1.000000 +dualbound = 3273186.066534, lowerbound=1255375.066534, norm of subgrad 1121.002706 dualbound = 3273186.066534, lowerbound=1255375.066534, norm of subgrad 37.025987 stepsize= 1.000000 +dualbound = 3273279.866086, lowerbound=1253478.866086, norm of subgrad 1120.164214 dualbound = 3273279.866086, lowerbound=1253478.866086, norm of subgrad 37.186013 stepsize= 1.000000 +dualbound = 3273368.870914, lowerbound=1253447.870914, norm of subgrad 1120.144130 dualbound = 3273368.870914, lowerbound=1253447.870914, norm of subgrad 36.932436 stepsize= 1.000000 +dualbound = 3273465.586678, lowerbound=1252282.586678, norm of subgrad 1119.637703 dualbound = 3273465.586678, lowerbound=1252282.586678, norm of subgrad 37.452847 stepsize= 1.000000 +dualbound = 3273542.186496, lowerbound=1253666.186496, norm of subgrad 1120.279066 dualbound = 3273542.186496, lowerbound=1253666.186496, norm of subgrad 37.889310 stepsize= 1.000000 +dualbound = 3273648.909359, lowerbound=1256180.909359, norm of subgrad 1121.369212 dualbound = 3273648.909359, lowerbound=1256180.909359, norm of subgrad 37.345989 stepsize= 1.000000 +dualbound = 3273743.050478, lowerbound=1252838.050478, norm of subgrad 1119.885731 dualbound = 3273743.050478, lowerbound=1252838.050478, norm of subgrad 37.418460 stepsize= 1.000000 +dualbound = 3273855.623418, lowerbound=1246564.623418, norm of subgrad 1117.061602 dualbound = 3273855.623418, lowerbound=1246564.623418, norm of subgrad 37.075234 stepsize= 1.000000 +dualbound = 3273943.386640, lowerbound=1257865.386640, norm of subgrad 1122.106673 dualbound = 3273943.386640, lowerbound=1257865.386640, norm of subgrad 36.684646 stepsize= 1.000000 +dualbound = 3274045.534063, lowerbound=1250219.534063, norm of subgrad 1118.727194 dualbound = 3274045.534063, lowerbound=1250219.534063, norm of subgrad 37.856934 stepsize= 1.000000 +dualbound = 3274110.379580, lowerbound=1252722.379580, norm of subgrad 1119.855517 dualbound = 3274110.379580, lowerbound=1252722.379580, norm of subgrad 37.667566 stepsize= 1.000000 +dualbound = 3274220.140897, lowerbound=1253159.140897, norm of subgrad 1120.028634 dualbound = 3274220.140897, lowerbound=1253159.140897, norm of subgrad 37.613313 stepsize= 1.000000 +dualbound = 3274310.266097, lowerbound=1257355.266097, norm of subgrad 1121.893607 dualbound = 3274310.266097, lowerbound=1257355.266097, norm of subgrad 37.150036 stepsize= 1.000000 +dualbound = 3274438.811788, lowerbound=1255436.811788, norm of subgrad 1120.992334 dualbound = 3274438.811788, lowerbound=1255436.811788, norm of subgrad 36.270452 stepsize= 1.000000 +dualbound = 3274521.090218, lowerbound=1252514.090218, norm of subgrad 1119.735723 dualbound = 3274521.090218, lowerbound=1252514.090218, norm of subgrad 37.098227 stepsize= 1.000000 +dualbound = 3274590.233900, lowerbound=1251851.233900, norm of subgrad 1119.453989 dualbound = 3274590.233900, lowerbound=1251851.233900, norm of subgrad 37.351622 stepsize= 1.000000 +dualbound = 3274725.578215, lowerbound=1254804.578215, norm of subgrad 1120.736177 dualbound = 3274725.578215, lowerbound=1254804.578215, norm of subgrad 37.152985 stepsize= 1.000000 +dualbound = 3274807.341975, lowerbound=1252315.341975, norm of subgrad 1119.629556 dualbound = 3274807.341975, lowerbound=1252315.341975, norm of subgrad 36.561780 stepsize= 1.000000 +dualbound = 3274889.540597, lowerbound=1251454.540597, norm of subgrad 1119.258031 dualbound = 3274889.540597, lowerbound=1251454.540597, norm of subgrad 36.962124 stepsize= 1.000000 +dualbound = 3275016.524564, lowerbound=1256475.524564, norm of subgrad 1121.489868 dualbound = 3275016.524564, lowerbound=1256475.524564, norm of subgrad 37.295897 stepsize= 1.000000 +dualbound = 3275061.686991, lowerbound=1250522.686991, norm of subgrad 1118.873848 dualbound = 3275061.686991, lowerbound=1250522.686991, norm of subgrad 37.432104 stepsize= 1.000000 +dualbound = 3275166.693716, lowerbound=1257468.693716, norm of subgrad 1121.972680 dualbound = 3275166.693716, lowerbound=1257468.693716, norm of subgrad 38.196947 stepsize= 1.000000 +dualbound = 3275248.329974, lowerbound=1249808.329974, norm of subgrad 1118.534903 dualbound = 3275248.329974, lowerbound=1249808.329974, norm of subgrad 37.331438 stepsize= 1.000000 +dualbound = 3275383.004090, lowerbound=1253762.004090, norm of subgrad 1120.277200 dualbound = 3275383.004090, lowerbound=1253762.004090, norm of subgrad 37.331945 stepsize= 1.000000 +dualbound = 3275446.648795, lowerbound=1251279.648795, norm of subgrad 1119.172305 dualbound = 3275446.648795, lowerbound=1251279.648795, norm of subgrad 36.478003 stepsize= 1.000000 +dualbound = 3275556.713410, lowerbound=1255187.713410, norm of subgrad 1120.933858 dualbound = 3275556.713410, lowerbound=1255187.713410, norm of subgrad 37.617345 stepsize= 1.000000 +dualbound = 3275635.691654, lowerbound=1250712.691654, norm of subgrad 1118.952497 dualbound = 3275635.691654, lowerbound=1250712.691654, norm of subgrad 37.695865 stepsize= 1.000000 +dualbound = 3275720.194968, lowerbound=1254978.194968, norm of subgrad 1120.871177 dualbound = 3275720.194968, lowerbound=1254978.194968, norm of subgrad 38.190356 stepsize= 1.000000 +dualbound = 3275829.803361, lowerbound=1249649.803361, norm of subgrad 1118.442132 dualbound = 3275829.803361, lowerbound=1249649.803361, norm of subgrad 37.048730 stepsize= 1.000000 +dualbound = 3275936.985281, lowerbound=1251519.985281, norm of subgrad 1119.281013 dualbound = 3275936.985281, lowerbound=1251519.985281, norm of subgrad 37.110402 stepsize= 1.000000 +dualbound = 3276037.439461, lowerbound=1255202.439461, norm of subgrad 1120.910094 dualbound = 3276037.439461, lowerbound=1255202.439461, norm of subgrad 36.571221 stepsize= 1.000000 +dualbound = 3276124.475291, lowerbound=1253579.475291, norm of subgrad 1120.195731 dualbound = 3276124.475291, lowerbound=1253579.475291, norm of subgrad 36.688361 stepsize= 1.000000 +dualbound = 3276239.600025, lowerbound=1255161.600025, norm of subgrad 1120.893215 dualbound = 3276239.600025, lowerbound=1255161.600025, norm of subgrad 36.812019 stepsize= 1.000000 +dualbound = 3276312.370003, lowerbound=1254370.370003, norm of subgrad 1120.550476 dualbound = 3276312.370003, lowerbound=1254370.370003, norm of subgrad 36.548187 stepsize= 1.000000 +dualbound = 3276400.113477, lowerbound=1256856.113477, norm of subgrad 1121.656861 dualbound = 3276400.113477, lowerbound=1256856.113477, norm of subgrad 36.684376 stepsize= 1.000000 +dualbound = 3276495.503689, lowerbound=1255394.503689, norm of subgrad 1121.010483 dualbound = 3276495.503689, lowerbound=1255394.503689, norm of subgrad 36.951187 stepsize= 1.000000 +dualbound = 3276612.020938, lowerbound=1252159.020938, norm of subgrad 1119.542327 dualbound = 3276612.020938, lowerbound=1252159.020938, norm of subgrad 36.503661 stepsize= 1.000000 +dualbound = 3276686.665955, lowerbound=1253892.665955, norm of subgrad 1120.344887 dualbound = 3276686.665955, lowerbound=1253892.665955, norm of subgrad 36.805503 stepsize= 1.000000 +dualbound = 3276782.246660, lowerbound=1254275.246660, norm of subgrad 1120.504907 dualbound = 3276782.246660, lowerbound=1254275.246660, norm of subgrad 36.763851 stepsize= 1.000000 +dualbound = 3276879.605843, lowerbound=1256009.605843, norm of subgrad 1121.287477 dualbound = 3276879.605843, lowerbound=1256009.605843, norm of subgrad 37.058861 stepsize= 1.000000 +dualbound = 3276965.779593, lowerbound=1246505.779593, norm of subgrad 1117.034368 dualbound = 3276965.779593, lowerbound=1246505.779593, norm of subgrad 36.690241 stepsize= 1.000000 +dualbound = 3277072.237684, lowerbound=1255038.237684, norm of subgrad 1120.850676 dualbound = 3277072.237684, lowerbound=1255038.237684, norm of subgrad 37.073685 stepsize= 1.000000 +dualbound = 3277126.077738, lowerbound=1255566.077738, norm of subgrad 1121.125808 dualbound = 3277126.077738, lowerbound=1255566.077738, norm of subgrad 37.561151 stepsize= 1.000000 +dualbound = 3277245.779129, lowerbound=1257668.779129, norm of subgrad 1122.039562 dualbound = 3277245.779129, lowerbound=1257668.779129, norm of subgrad 37.731968 stepsize= 1.000000 +dualbound = 3277330.447508, lowerbound=1252833.447508, norm of subgrad 1119.884569 dualbound = 3277330.447508, lowerbound=1252833.447508, norm of subgrad 37.318472 stepsize= 1.000000 +dualbound = 3277445.333899, lowerbound=1252049.333899, norm of subgrad 1119.528621 dualbound = 3277445.333899, lowerbound=1252049.333899, norm of subgrad 37.548454 stepsize= 1.000000 +dualbound = 3277508.958049, lowerbound=1254353.958049, norm of subgrad 1120.570372 dualbound = 3277508.958049, lowerbound=1254353.958049, norm of subgrad 37.250828 stepsize= 1.000000 +dualbound = 3277618.919333, lowerbound=1249513.919333, norm of subgrad 1118.423855 dualbound = 3277618.919333, lowerbound=1249513.919333, norm of subgrad 38.313983 stepsize= 1.000000 +dualbound = 3277698.359040, lowerbound=1251361.359040, norm of subgrad 1119.207469 dualbound = 3277698.359040, lowerbound=1251361.359040, norm of subgrad 36.652963 stepsize= 1.000000 +dualbound = 3277830.729605, lowerbound=1255011.729605, norm of subgrad 1120.853126 dualbound = 3277830.729605, lowerbound=1255011.729605, norm of subgrad 37.846672 stepsize= 1.000000 +dualbound = 3277878.062615, lowerbound=1250174.062615, norm of subgrad 1118.679160 dualbound = 3277878.062615, lowerbound=1250174.062615, norm of subgrad 36.281304 stepsize= 1.000000 +dualbound = 3278020.116952, lowerbound=1257225.116952, norm of subgrad 1121.820448 dualbound = 3278020.116952, lowerbound=1257225.116952, norm of subgrad 37.390565 stepsize= 1.000000 +dualbound = 3278105.023871, lowerbound=1252939.023871, norm of subgrad 1119.887951 dualbound = 3278105.023871, lowerbound=1252939.023871, norm of subgrad 35.984815 stepsize= 1.000000 +dualbound = 3278194.611797, lowerbound=1254736.611797, norm of subgrad 1120.737976 dualbound = 3278194.611797, lowerbound=1254736.611797, norm of subgrad 37.504505 stepsize= 1.000000 +dualbound = 3278257.139402, lowerbound=1250894.139402, norm of subgrad 1119.027765 dualbound = 3278257.139402, lowerbound=1250894.139402, norm of subgrad 37.303185 stepsize= 1.000000 +dualbound = 3278374.759865, lowerbound=1259710.759865, norm of subgrad 1122.951807 dualbound = 3278374.759865, lowerbound=1259710.759865, norm of subgrad 37.783865 stepsize= 1.000000 +dualbound = 3278445.074520, lowerbound=1251044.074520, norm of subgrad 1119.089395 dualbound = 3278445.074520, lowerbound=1251044.074520, norm of subgrad 37.246673 stepsize= 1.000000 +dualbound = 3278567.021814, lowerbound=1257275.021814, norm of subgrad 1121.855615 dualbound = 3278567.021814, lowerbound=1257275.021814, norm of subgrad 37.509296 stepsize= 1.000000 +dualbound = 3278630.271723, lowerbound=1252656.271723, norm of subgrad 1119.822875 dualbound = 3278630.271723, lowerbound=1252656.271723, norm of subgrad 37.553294 stepsize= 1.000000 +dualbound = 3278738.732210, lowerbound=1251371.732210, norm of subgrad 1119.209870 dualbound = 3278738.732210, lowerbound=1251371.732210, norm of subgrad 36.979190 stepsize= 1.000000 +dualbound = 3278834.625686, lowerbound=1249182.625686, norm of subgrad 1118.259641 dualbound = 3278834.625686, lowerbound=1249182.625686, norm of subgrad 37.654926 stepsize= 1.000000 +dualbound = 3278927.365813, lowerbound=1251704.365813, norm of subgrad 1119.384816 dualbound = 3278927.365813, lowerbound=1251704.365813, norm of subgrad 37.559821 stepsize= 1.000000 +dualbound = 3279008.920848, lowerbound=1252386.920848, norm of subgrad 1119.678043 dualbound = 3279008.920848, lowerbound=1252386.920848, norm of subgrad 37.061503 stepsize= 1.000000 +dualbound = 3279121.382414, lowerbound=1260541.382414, norm of subgrad 1123.286866 dualbound = 3279121.382414, lowerbound=1260541.382414, norm of subgrad 36.666900 stepsize= 1.000000 +dualbound = 3279215.999893, lowerbound=1245177.999893, norm of subgrad 1116.477496 dualbound = 3279215.999893, lowerbound=1245177.999893, norm of subgrad 37.929111 stepsize= 1.000000 +dualbound = 3279293.440518, lowerbound=1261905.440518, norm of subgrad 1123.914339 dualbound = 3279293.440518, lowerbound=1261905.440518, norm of subgrad 36.816309 stepsize= 1.000000 +dualbound = 3279401.624702, lowerbound=1249913.624702, norm of subgrad 1118.567667 dualbound = 3279401.624702, lowerbound=1249913.624702, norm of subgrad 37.258344 stepsize= 1.000000 +dualbound = 3279502.616552, lowerbound=1255708.616552, norm of subgrad 1121.152361 dualbound = 3279502.616552, lowerbound=1255708.616552, norm of subgrad 37.080883 stepsize= 1.000000 +dualbound = 3279611.442479, lowerbound=1251346.442479, norm of subgrad 1119.206613 dualbound = 3279611.442479, lowerbound=1251346.442479, norm of subgrad 37.226683 stepsize= 1.000000 +dualbound = 3279687.307651, lowerbound=1260915.307651, norm of subgrad 1123.492460 dualbound = 3279687.307651, lowerbound=1260915.307651, norm of subgrad 37.361279 stepsize= 1.000000 +dualbound = 3279778.535809, lowerbound=1252871.535809, norm of subgrad 1119.893091 dualbound = 3279778.535809, lowerbound=1252871.535809, norm of subgrad 37.151422 stepsize= 1.000000 +dualbound = 3279872.035148, lowerbound=1251349.035148, norm of subgrad 1119.225641 dualbound = 3279872.035148, lowerbound=1251349.035148, norm of subgrad 37.556615 stepsize= 1.000000 +dualbound = 3279975.156993, lowerbound=1253359.156993, norm of subgrad 1120.119707 dualbound = 3279975.156993, lowerbound=1253359.156993, norm of subgrad 37.578210 stepsize= 1.000000 +dualbound = 3280061.839263, lowerbound=1255632.839263, norm of subgrad 1121.123918 dualbound = 3280061.839263, lowerbound=1255632.839263, norm of subgrad 37.049727 stepsize= 1.000000 +dualbound = 3280176.777092, lowerbound=1251999.777092, norm of subgrad 1119.499789 dualbound = 3280176.777092, lowerbound=1251999.777092, norm of subgrad 37.348867 stepsize= 1.000000 +dualbound = 3280253.720946, lowerbound=1254614.720946, norm of subgrad 1120.677349 dualbound = 3280253.720946, lowerbound=1254614.720946, norm of subgrad 37.147596 stepsize= 1.000000 +dualbound = 3280360.247469, lowerbound=1251281.247469, norm of subgrad 1119.172126 dualbound = 3280360.247469, lowerbound=1251281.247469, norm of subgrad 37.034126 stepsize= 1.000000 +dualbound = 3280455.179175, lowerbound=1255561.179175, norm of subgrad 1121.119610 dualbound = 3280455.179175, lowerbound=1255561.179175, norm of subgrad 37.985941 stepsize= 1.000000 +dualbound = 3280524.031635, lowerbound=1255317.031635, norm of subgrad 1120.997338 dualbound = 3280524.031635, lowerbound=1255317.031635, norm of subgrad 37.240468 stepsize= 1.000000 +dualbound = 3280644.199888, lowerbound=1253174.199888, norm of subgrad 1120.013482 dualbound = 3280644.199888, lowerbound=1253174.199888, norm of subgrad 37.096742 stepsize= 1.000000 +dualbound = 3280723.559698, lowerbound=1251510.559698, norm of subgrad 1119.317006 dualbound = 3280723.559698, lowerbound=1251510.559698, norm of subgrad 37.938896 stepsize= 1.000000 +dualbound = 3280816.184932, lowerbound=1254175.184932, norm of subgrad 1120.499525 dualbound = 3280816.184932, lowerbound=1254175.184932, norm of subgrad 37.902839 stepsize= 1.000000 +dualbound = 3280906.853741, lowerbound=1250016.853741, norm of subgrad 1118.592801 dualbound = 3280906.853741, lowerbound=1250016.853741, norm of subgrad 36.382260 stepsize= 1.000000 +dualbound = 3281030.288747, lowerbound=1254281.288747, norm of subgrad 1120.507157 dualbound = 3281030.288747, lowerbound=1254281.288747, norm of subgrad 37.127281 stepsize= 1.000000 +dualbound = 3281098.960074, lowerbound=1249790.960074, norm of subgrad 1118.513281 dualbound = 3281098.960074, lowerbound=1249790.960074, norm of subgrad 36.737873 stepsize= 1.000000 +dualbound = 3281199.193152, lowerbound=1255260.193152, norm of subgrad 1120.966187 dualbound = 3281199.193152, lowerbound=1255260.193152, norm of subgrad 37.486439 stepsize= 1.000000 +dualbound = 3281265.620728, lowerbound=1255079.620728, norm of subgrad 1120.897685 dualbound = 3281265.620728, lowerbound=1255079.620728, norm of subgrad 37.395556 stepsize= 1.000000 +dualbound = 3281376.424954, lowerbound=1255858.424954, norm of subgrad 1121.250385 dualbound = 3281376.424954, lowerbound=1255858.424954, norm of subgrad 38.141896 stepsize= 1.000000 +dualbound = 3281480.055274, lowerbound=1252952.055274, norm of subgrad 1119.897341 dualbound = 3281480.055274, lowerbound=1252952.055274, norm of subgrad 36.354234 stepsize= 1.000000 +dualbound = 3281615.135230, lowerbound=1254260.135230, norm of subgrad 1120.491917 dualbound = 3281615.135230, lowerbound=1254260.135230, norm of subgrad 37.109028 stepsize= 1.000000 +dualbound = 3281659.324194, lowerbound=1248470.324194, norm of subgrad 1117.926797 dualbound = 3281659.324194, lowerbound=1248470.324194, norm of subgrad 36.526551 stepsize= 1.000000 +dualbound = 3281776.275727, lowerbound=1257841.275727, norm of subgrad 1122.113753 dualbound = 3281776.275727, lowerbound=1257841.275727, norm of subgrad 37.615842 stepsize= 1.000000 +dualbound = 3281838.782584, lowerbound=1253076.782584, norm of subgrad 1120.001689 dualbound = 3281838.782584, lowerbound=1253076.782584, norm of subgrad 37.276090 stepsize= 1.000000 +dualbound = 3281950.842868, lowerbound=1256054.842868, norm of subgrad 1121.276881 dualbound = 3281950.842868, lowerbound=1256054.842868, norm of subgrad 36.318870 stepsize= 1.000000 +dualbound = 3282069.689924, lowerbound=1249633.689924, norm of subgrad 1118.448787 dualbound = 3282069.689924, lowerbound=1249633.689924, norm of subgrad 37.587858 stepsize= 1.000000 +dualbound = 3282128.750294, lowerbound=1256659.750294, norm of subgrad 1121.582253 dualbound = 3282128.750294, lowerbound=1256659.750294, norm of subgrad 36.688695 stepsize= 1.000000 +dualbound = 3282230.465917, lowerbound=1252252.465917, norm of subgrad 1119.603709 dualbound = 3282230.465917, lowerbound=1252252.465917, norm of subgrad 36.901431 stepsize= 1.000000 +dualbound = 3282347.684662, lowerbound=1257609.684662, norm of subgrad 1121.969110 dualbound = 3282347.684662, lowerbound=1257609.684662, norm of subgrad 36.362326 stepsize= 1.000000 +dualbound = 3282436.157192, lowerbound=1249827.157192, norm of subgrad 1118.542872 dualbound = 3282436.157192, lowerbound=1249827.157192, norm of subgrad 37.409525 stepsize= 1.000000 +dualbound = 3282534.384638, lowerbound=1256129.384638, norm of subgrad 1121.351142 dualbound = 3282534.384638, lowerbound=1256129.384638, norm of subgrad 37.379506 stepsize= 1.000000 +dualbound = 3282609.793138, lowerbound=1249804.793138, norm of subgrad 1118.526170 dualbound = 3282609.793138, lowerbound=1249804.793138, norm of subgrad 37.032533 stepsize= 1.000000 +dualbound = 3282725.335056, lowerbound=1254919.335056, norm of subgrad 1120.799864 dualbound = 3282725.335056, lowerbound=1254919.335056, norm of subgrad 37.263144 stepsize= 1.000000 +dualbound = 3282798.720444, lowerbound=1256967.720444, norm of subgrad 1121.737813 dualbound = 3282798.720444, lowerbound=1256967.720444, norm of subgrad 37.435082 stepsize= 1.000000 +dualbound = 3282898.808042, lowerbound=1253988.808042, norm of subgrad 1120.396273 dualbound = 3282898.808042, lowerbound=1253988.808042, norm of subgrad 37.404379 stepsize= 1.000000 +dualbound = 3282991.529427, lowerbound=1252347.529427, norm of subgrad 1119.652861 dualbound = 3282991.529427, lowerbound=1252347.529427, norm of subgrad 36.982717 stepsize= 1.000000 +dualbound = 3283087.751116, lowerbound=1251941.751116, norm of subgrad 1119.475659 dualbound = 3283087.751116, lowerbound=1251941.751116, norm of subgrad 37.151335 stepsize= 1.000000 +dualbound = 3283180.669091, lowerbound=1253642.669091, norm of subgrad 1120.254734 dualbound = 3283180.669091, lowerbound=1253642.669091, norm of subgrad 37.695066 stepsize= 1.000000 +dualbound = 3283242.168741, lowerbound=1254459.168741, norm of subgrad 1120.645871 dualbound = 3283242.168741, lowerbound=1254459.168741, norm of subgrad 38.072295 stepsize= 1.000000 +dualbound = 3283325.698840, lowerbound=1254568.698840, norm of subgrad 1120.678678 dualbound = 3283325.698840, lowerbound=1254568.698840, norm of subgrad 37.888390 stepsize= 1.000000 +dualbound = 3283449.102077, lowerbound=1258414.102077, norm of subgrad 1122.376097 dualbound = 3283449.102077, lowerbound=1258414.102077, norm of subgrad 37.913101 stepsize= 1.000000 +dualbound = 3283538.729573, lowerbound=1252691.729573, norm of subgrad 1119.808345 dualbound = 3283538.729573, lowerbound=1252691.729573, norm of subgrad 36.994966 stepsize= 1.000000 +dualbound = 3283651.536471, lowerbound=1252402.536471, norm of subgrad 1119.691268 dualbound = 3283651.536471, lowerbound=1252402.536471, norm of subgrad 37.667053 stepsize= 1.000000 +dualbound = 3283747.800132, lowerbound=1253662.800132, norm of subgrad 1120.244973 dualbound = 3283747.800132, lowerbound=1253662.800132, norm of subgrad 37.178807 stepsize= 1.000000 +dualbound = 3283844.222114, lowerbound=1256097.222114, norm of subgrad 1121.333234 dualbound = 3283844.222114, lowerbound=1256097.222114, norm of subgrad 37.248114 stepsize= 1.000000 +dualbound = 3283934.688545, lowerbound=1255532.688545, norm of subgrad 1121.072562 dualbound = 3283934.688545, lowerbound=1255532.688545, norm of subgrad 36.898055 stepsize= 1.000000 +dualbound = 3284036.831971, lowerbound=1250777.831971, norm of subgrad 1118.962391 dualbound = 3284036.831971, lowerbound=1250777.831971, norm of subgrad 37.431850 stepsize= 1.000000 +dualbound = 3284142.183529, lowerbound=1254482.183529, norm of subgrad 1120.619553 dualbound = 3284142.183529, lowerbound=1254482.183529, norm of subgrad 37.567959 stepsize= 1.000000 +dualbound = 3284220.692191, lowerbound=1252406.692191, norm of subgrad 1119.700715 dualbound = 3284220.692191, lowerbound=1252406.692191, norm of subgrad 37.436729 stepsize= 1.000000 +dualbound = 3284312.062788, lowerbound=1255300.062788, norm of subgrad 1120.958992 dualbound = 3284312.062788, lowerbound=1255300.062788, norm of subgrad 36.611072 stepsize= 1.000000 +dualbound = 3284420.759177, lowerbound=1251486.759177, norm of subgrad 1119.251875 dualbound = 3284420.759177, lowerbound=1251486.759177, norm of subgrad 36.697362 stepsize= 1.000000 +dualbound = 3284508.323972, lowerbound=1251587.323972, norm of subgrad 1119.307073 dualbound = 3284508.323972, lowerbound=1251587.323972, norm of subgrad 36.722810 stepsize= 1.000000 +dualbound = 3284597.953541, lowerbound=1257642.953541, norm of subgrad 1122.027608 dualbound = 3284597.953541, lowerbound=1257642.953541, norm of subgrad 37.317952 stepsize= 1.000000 +dualbound = 3284692.666625, lowerbound=1255863.666625, norm of subgrad 1121.238452 dualbound = 3284692.666625, lowerbound=1255863.666625, norm of subgrad 37.506174 stepsize= 1.000000 +dualbound = 3284778.866023, lowerbound=1258153.866023, norm of subgrad 1122.258823 dualbound = 3284778.866023, lowerbound=1258153.866023, norm of subgrad 37.379131 stepsize= 1.000000 +dualbound = 3284866.366559, lowerbound=1251194.366559, norm of subgrad 1119.151628 dualbound = 3284866.366559, lowerbound=1251194.366559, norm of subgrad 37.329620 stepsize= 1.000000 +dualbound = 3284976.524919, lowerbound=1252199.524919, norm of subgrad 1119.597037 dualbound = 3284976.524919, lowerbound=1252199.524919, norm of subgrad 37.525436 stepsize= 1.000000 +dualbound = 3285038.904966, lowerbound=1252410.904966, norm of subgrad 1119.720458 dualbound = 3285038.904966, lowerbound=1252410.904966, norm of subgrad 37.754206 stepsize= 1.000000 +dualbound = 3285148.033541, lowerbound=1255585.033541, norm of subgrad 1121.125342 dualbound = 3285148.033541, lowerbound=1255585.033541, norm of subgrad 38.027997 stepsize= 1.000000 +dualbound = 3285220.600924, lowerbound=1252660.600924, norm of subgrad 1119.799357 dualbound = 3285220.600924, lowerbound=1252660.600924, norm of subgrad 36.912970 stepsize= 1.000000 +dualbound = 3285348.360091, lowerbound=1256136.360091, norm of subgrad 1121.311447 dualbound = 3285348.360091, lowerbound=1256136.360091, norm of subgrad 36.479572 stepsize= 1.000000 +dualbound = 3285443.018950, lowerbound=1251760.018950, norm of subgrad 1119.396274 dualbound = 3285443.018950, lowerbound=1251760.018950, norm of subgrad 37.184121 stepsize= 1.000000 +dualbound = 3285523.957536, lowerbound=1254523.957536, norm of subgrad 1120.651577 dualbound = 3285523.957536, lowerbound=1254523.957536, norm of subgrad 37.642245 stepsize= 1.000000 +dualbound = 3285589.790135, lowerbound=1251554.790135, norm of subgrad 1119.315322 dualbound = 3285589.790135, lowerbound=1251554.790135, norm of subgrad 37.119168 stepsize= 1.000000 +dualbound = 3285719.490643, lowerbound=1260366.490643, norm of subgrad 1123.209015 dualbound = 3285719.490643, lowerbound=1260366.490643, norm of subgrad 36.901226 stepsize= 1.000000 +dualbound = 3285807.535283, lowerbound=1248689.535283, norm of subgrad 1118.025731 dualbound = 3285807.535283, lowerbound=1248689.535283, norm of subgrad 37.148952 stepsize= 1.000000 +dualbound = 3285890.344076, lowerbound=1255478.344076, norm of subgrad 1121.071962 dualbound = 3285890.344076, lowerbound=1255478.344076, norm of subgrad 37.507450 stepsize= 1.000000 +dualbound = 3285990.647052, lowerbound=1253385.647052, norm of subgrad 1120.110105 dualbound = 3285990.647052, lowerbound=1253385.647052, norm of subgrad 36.895840 stepsize= 1.000000 +dualbound = 3286103.909675, lowerbound=1253869.909675, norm of subgrad 1120.314648 dualbound = 3286103.909675, lowerbound=1253869.909675, norm of subgrad 36.718696 stepsize= 1.000000 +dualbound = 3286198.477297, lowerbound=1252387.477297, norm of subgrad 1119.672487 dualbound = 3286198.477297, lowerbound=1252387.477297, norm of subgrad 37.061673 stepsize= 1.000000 +dualbound = 3286275.464873, lowerbound=1258096.464873, norm of subgrad 1122.232358 dualbound = 3286275.464873, lowerbound=1258096.464873, norm of subgrad 37.228854 stepsize= 1.000000 +dualbound = 3286372.356155, lowerbound=1254099.356155, norm of subgrad 1120.429095 dualbound = 3286372.356155, lowerbound=1254099.356155, norm of subgrad 36.863143 stepsize= 1.000000 +dualbound = 3286491.545350, lowerbound=1250662.545350, norm of subgrad 1118.902384 dualbound = 3286491.545350, lowerbound=1250662.545350, norm of subgrad 37.405737 stepsize= 1.000000 +dualbound = 3286562.431451, lowerbound=1257795.431451, norm of subgrad 1122.085750 dualbound = 3286562.431451, lowerbound=1257795.431451, norm of subgrad 36.768004 stepsize= 1.000000 +dualbound = 3286666.211632, lowerbound=1256046.211632, norm of subgrad 1121.314948 dualbound = 3286666.211632, lowerbound=1256046.211632, norm of subgrad 37.480397 stepsize= 1.000000 +dualbound = 3286749.880767, lowerbound=1253823.880767, norm of subgrad 1120.307494 dualbound = 3286749.880767, lowerbound=1253823.880767, norm of subgrad 36.724231 stepsize= 1.000000 +dualbound = 3286860.224065, lowerbound=1254374.224065, norm of subgrad 1120.578076 dualbound = 3286860.224065, lowerbound=1254374.224065, norm of subgrad 37.833098 stepsize= 1.000000 +dualbound = 3286929.400714, lowerbound=1254631.400714, norm of subgrad 1120.724498 dualbound = 3286929.400714, lowerbound=1254631.400714, norm of subgrad 38.225340 stepsize= 1.000000 +dualbound = 3287012.921781, lowerbound=1256170.921781, norm of subgrad 1121.395970 dualbound = 3287012.921781, lowerbound=1256170.921781, norm of subgrad 37.967368 stepsize= 1.000000 +dualbound = 3287109.586799, lowerbound=1253024.586799, norm of subgrad 1119.982851 dualbound = 3287109.586799, lowerbound=1253024.586799, norm of subgrad 37.863769 stepsize= 1.000000 +dualbound = 3287182.865499, lowerbound=1254707.865499, norm of subgrad 1120.739428 dualbound = 3287182.865499, lowerbound=1254707.865499, norm of subgrad 37.713110 stepsize= 1.000000 +dualbound = 3287308.649860, lowerbound=1251795.649860, norm of subgrad 1119.414423 dualbound = 3287308.649860, lowerbound=1251795.649860, norm of subgrad 37.666754 stepsize= 1.000000 +dualbound = 3287380.302699, lowerbound=1255843.302699, norm of subgrad 1121.236506 dualbound = 3287380.302699, lowerbound=1255843.302699, norm of subgrad 37.411934 stepsize= 1.000000 +dualbound = 3287490.672414, lowerbound=1250920.672414, norm of subgrad 1118.990917 dualbound = 3287490.672414, lowerbound=1250920.672414, norm of subgrad 36.474234 stepsize= 1.000000 +dualbound = 3287598.833561, lowerbound=1256451.833561, norm of subgrad 1121.486885 dualbound = 3287598.833561, lowerbound=1256451.833561, norm of subgrad 37.271452 stepsize= 1.000000 +dualbound = 3287690.510571, lowerbound=1255750.510571, norm of subgrad 1121.171490 dualbound = 3287690.510571, lowerbound=1255750.510571, norm of subgrad 36.968595 stepsize= 1.000000 +dualbound = 3287784.067181, lowerbound=1252980.067181, norm of subgrad 1119.942886 dualbound = 3287784.067181, lowerbound=1252980.067181, norm of subgrad 37.223066 stepsize= 1.000000 +dualbound = 3287872.319240, lowerbound=1251029.319240, norm of subgrad 1119.095760 dualbound = 3287872.319240, lowerbound=1251029.319240, norm of subgrad 37.871520 stepsize= 1.000000 +dualbound = 3287982.111710, lowerbound=1251172.111710, norm of subgrad 1119.106390 dualbound = 3287982.111710, lowerbound=1251172.111710, norm of subgrad 36.562173 stepsize= 1.000000 +dualbound = 3288080.594861, lowerbound=1256995.594861, norm of subgrad 1121.729288 dualbound = 3288080.594861, lowerbound=1256995.594861, norm of subgrad 37.141394 stepsize= 1.000000 +dualbound = 3288166.396292, lowerbound=1253339.396292, norm of subgrad 1120.096155 dualbound = 3288166.396292, lowerbound=1253339.396292, norm of subgrad 36.902594 stepsize= 1.000000 +dualbound = 3288254.378094, lowerbound=1257740.378094, norm of subgrad 1122.054089 dualbound = 3288254.378094, lowerbound=1257740.378094, norm of subgrad 36.782901 stepsize= 1.000000 +dualbound = 3288357.589034, lowerbound=1255422.589034, norm of subgrad 1121.031930 dualbound = 3288357.589034, lowerbound=1255422.589034, norm of subgrad 37.325741 stepsize= 1.000000 +dualbound = 3288439.339803, lowerbound=1250073.339803, norm of subgrad 1118.643974 dualbound = 3288439.339803, lowerbound=1250073.339803, norm of subgrad 37.050651 stepsize= 1.000000 +dualbound = 3288534.760554, lowerbound=1258320.760554, norm of subgrad 1122.319367 dualbound = 3288534.760554, lowerbound=1258320.760554, norm of subgrad 37.086665 stepsize= 1.000000 +dualbound = 3288613.062824, lowerbound=1250631.062824, norm of subgrad 1118.919149 dualbound = 3288613.062824, lowerbound=1250631.062824, norm of subgrad 37.779654 stepsize= 1.000000 +dualbound = 3288725.476039, lowerbound=1258251.476039, norm of subgrad 1122.288945 dualbound = 3288725.476039, lowerbound=1258251.476039, norm of subgrad 37.328450 stepsize= 1.000000 +dualbound = 3288805.196265, lowerbound=1250806.196265, norm of subgrad 1118.965681 dualbound = 3288805.196265, lowerbound=1250806.196265, norm of subgrad 36.847255 stepsize= 1.000000 +dualbound = 3288935.039603, lowerbound=1255284.039603, norm of subgrad 1120.963443 dualbound = 3288935.039603, lowerbound=1255284.039603, norm of subgrad 37.481240 stepsize= 1.000000 +dualbound = 3289015.824393, lowerbound=1250840.824393, norm of subgrad 1118.995453 dualbound = 3289015.824393, lowerbound=1250840.824393, norm of subgrad 37.293227 stepsize= 1.000000 +dualbound = 3289080.208164, lowerbound=1258203.208165, norm of subgrad 1122.287489 dualbound = 3289080.208164, lowerbound=1258203.208165, norm of subgrad 37.287850 stepsize= 1.000000 +dualbound = 3289189.069659, lowerbound=1248833.069659, norm of subgrad 1118.080529 dualbound = 3289189.069659, lowerbound=1248833.069659, norm of subgrad 37.146487 stepsize= 1.000000 +dualbound = 3289295.995152, lowerbound=1258614.995152, norm of subgrad 1122.460688 dualbound = 3289295.995152, lowerbound=1258614.995152, norm of subgrad 37.548975 stepsize= 1.000000 +dualbound = 3289370.843334, lowerbound=1249091.843334, norm of subgrad 1118.189985 dualbound = 3289370.843334, lowerbound=1249091.843334, norm of subgrad 36.494495 stepsize= 1.000000 +dualbound = 3289467.664856, lowerbound=1260212.664856, norm of subgrad 1123.161905 dualbound = 3289467.664856, lowerbound=1260212.664856, norm of subgrad 37.105546 stepsize= 1.000000 +dualbound = 3289566.251867, lowerbound=1253747.251867, norm of subgrad 1120.292485 dualbound = 3289566.251867, lowerbound=1253747.251867, norm of subgrad 37.504493 stepsize= 1.000000 +dualbound = 3289662.676391, lowerbound=1256403.676391, norm of subgrad 1121.451593 dualbound = 3289662.676391, lowerbound=1256403.676391, norm of subgrad 36.693658 stepsize= 1.000000 +dualbound = 3289754.208065, lowerbound=1250026.208065, norm of subgrad 1118.614861 dualbound = 3289754.208065, lowerbound=1250026.208065, norm of subgrad 36.939568 stepsize= 1.000000 +dualbound = 3289830.710389, lowerbound=1254272.710389, norm of subgrad 1120.534565 dualbound = 3289830.710389, lowerbound=1254272.710389, norm of subgrad 37.436644 stepsize= 1.000000 +dualbound = 3289941.335089, lowerbound=1252536.335089, norm of subgrad 1119.738512 dualbound = 3289941.335089, lowerbound=1252536.335089, norm of subgrad 37.264255 stepsize= 1.000000 +dualbound = 3290036.830087, lowerbound=1256838.830087, norm of subgrad 1121.677240 dualbound = 3290036.830087, lowerbound=1256838.830087, norm of subgrad 37.636352 stepsize= 1.000000 +dualbound = 3290137.009801, lowerbound=1252145.009801, norm of subgrad 1119.570904 dualbound = 3290137.009801, lowerbound=1252145.009801, norm of subgrad 37.338716 stepsize= 1.000000 +dualbound = 3290214.675489, lowerbound=1255344.675489, norm of subgrad 1121.006992 dualbound = 3290214.675489, lowerbound=1255344.675489, norm of subgrad 37.278220 stepsize= 1.000000 +dualbound = 3290310.880762, lowerbound=1254259.880762, norm of subgrad 1120.511437 dualbound = 3290310.880762, lowerbound=1254259.880762, norm of subgrad 37.178021 stepsize= 1.000000 +dualbound = 3290402.355693, lowerbound=1258282.355693, norm of subgrad 1122.286218 dualbound = 3290402.355693, lowerbound=1258282.355693, norm of subgrad 36.544150 stepsize= 1.000000 +dualbound = 3290511.377725, lowerbound=1249180.377725, norm of subgrad 1118.230914 dualbound = 3290511.377725, lowerbound=1249180.377725, norm of subgrad 37.000298 stepsize= 1.000000 +dualbound = 3290600.266275, lowerbound=1259108.266275, norm of subgrad 1122.654117 dualbound = 3290600.266275, lowerbound=1259108.266275, norm of subgrad 36.508746 stepsize= 1.000000 +dualbound = 3290703.950569, lowerbound=1252163.950569, norm of subgrad 1119.604372 dualbound = 3290703.950569, lowerbound=1252163.950569, norm of subgrad 38.127212 stepsize= 1.000000 +dualbound = 3290779.522441, lowerbound=1252002.522441, norm of subgrad 1119.506374 dualbound = 3290779.522441, lowerbound=1252002.522441, norm of subgrad 36.980696 stepsize= 1.000000 +dualbound = 3290880.600819, lowerbound=1253243.600819, norm of subgrad 1120.063659 dualbound = 3290880.600819, lowerbound=1253243.600819, norm of subgrad 37.417621 stepsize= 1.000000 +dualbound = 3290968.972453, lowerbound=1258988.972453, norm of subgrad 1122.640179 dualbound = 3290968.972453, lowerbound=1258988.972453, norm of subgrad 37.687818 stepsize= 1.000000 +dualbound = 3291057.810208, lowerbound=1251099.810208, norm of subgrad 1119.119212 dualbound = 3291057.810208, lowerbound=1251099.810208, norm of subgrad 37.640905 stepsize= 1.000000 +dualbound = 3291160.781600, lowerbound=1253571.781600, norm of subgrad 1120.190511 dualbound = 3291160.781600, lowerbound=1253571.781600, norm of subgrad 36.850663 stepsize= 1.000000 +dualbound = 3291271.121933, lowerbound=1252734.121933, norm of subgrad 1119.805841 dualbound = 3291271.121933, lowerbound=1252734.121933, norm of subgrad 36.624313 stepsize= 1.000000 +dualbound = 3291380.034815, lowerbound=1257746.034815, norm of subgrad 1122.044578 dualbound = 3291380.034815, lowerbound=1257746.034815, norm of subgrad 36.700312 stepsize= 1.000000 +dualbound = 3291472.404997, lowerbound=1255013.404997, norm of subgrad 1120.833353 dualbound = 3291472.404997, lowerbound=1255013.404997, norm of subgrad 36.692917 stepsize= 1.000000 +dualbound = 3291557.496938, lowerbound=1256690.496938, norm of subgrad 1121.587935 dualbound = 3291557.496938, lowerbound=1256690.496938, norm of subgrad 36.797988 stepsize= 1.000000 +dualbound = 3291639.775812, lowerbound=1252672.775812, norm of subgrad 1119.827565 dualbound = 3291639.775812, lowerbound=1252672.775812, norm of subgrad 37.726368 stepsize= 1.000000 +dualbound = 3291724.752468, lowerbound=1253979.752468, norm of subgrad 1120.419900 dualbound = 3291724.752468, lowerbound=1253979.752468, norm of subgrad 38.026000 stepsize= 1.000000 +dualbound = 3291815.672566, lowerbound=1251819.672566, norm of subgrad 1119.408180 dualbound = 3291815.672566, lowerbound=1251819.672566, norm of subgrad 36.686784 stepsize= 1.000000 +dualbound = 3291937.610643, lowerbound=1250450.610643, norm of subgrad 1118.795607 dualbound = 3291937.610643, lowerbound=1250450.610643, norm of subgrad 37.080157 stepsize= 1.000000 +dualbound = 3292018.905041, lowerbound=1260782.905041, norm of subgrad 1123.406830 dualbound = 3292018.905041, lowerbound=1260782.905041, norm of subgrad 36.623686 stepsize= 1.000000 +dualbound = 3292108.735961, lowerbound=1255405.735961, norm of subgrad 1121.053405 dualbound = 3292108.735961, lowerbound=1255405.735961, norm of subgrad 38.010932 stepsize= 1.000000 +dualbound = 3292174.323850, lowerbound=1253342.323850, norm of subgrad 1120.112193 dualbound = 3292174.323850, lowerbound=1253342.323850, norm of subgrad 37.075435 stepsize= 1.000000 +dualbound = 3292300.633124, lowerbound=1256759.633124, norm of subgrad 1121.626334 dualbound = 3292300.633124, lowerbound=1256759.633124, norm of subgrad 37.580703 stepsize= 1.000000 +dualbound = 3292386.366251, lowerbound=1252408.366251, norm of subgrad 1119.705928 dualbound = 3292386.366251, lowerbound=1252408.366251, norm of subgrad 37.666074 stepsize= 1.000000 +dualbound = 3292474.470482, lowerbound=1255829.470482, norm of subgrad 1121.211162 dualbound = 3292474.470482, lowerbound=1255829.470482, norm of subgrad 37.055421 stepsize= 1.000000 +dualbound = 3292584.810902, lowerbound=1255225.810902, norm of subgrad 1120.947729 dualbound = 3292584.810902, lowerbound=1255225.810902, norm of subgrad 37.527862 stepsize= 1.000000 +dualbound = 3292672.387432, lowerbound=1253048.387432, norm of subgrad 1119.957761 dualbound = 3292672.387432, lowerbound=1253048.387432, norm of subgrad 36.668468 stepsize= 1.000000 +dualbound = 3292777.253452, lowerbound=1253488.253452, norm of subgrad 1120.142961 dualbound = 3292777.253452, lowerbound=1253488.253452, norm of subgrad 36.563178 stepsize= 1.000000 +dualbound = 3292869.708550, lowerbound=1252478.708550, norm of subgrad 1119.698043 dualbound = 3292869.708550, lowerbound=1252478.708550, norm of subgrad 36.571233 stepsize= 1.000000 +dualbound = 3292951.073901, lowerbound=1255319.073901, norm of subgrad 1120.993789 dualbound = 3292951.073901, lowerbound=1255319.073901, norm of subgrad 37.274191 stepsize= 1.000000 +dualbound = 3293072.529134, lowerbound=1254896.529134, norm of subgrad 1120.792813 dualbound = 3293072.529134, lowerbound=1254896.529134, norm of subgrad 37.436015 stepsize= 1.000000 +dualbound = 3293107.528548, lowerbound=1261056.528548, norm of subgrad 1123.570438 dualbound = 3293107.528548, lowerbound=1261056.528548, norm of subgrad 37.269282 stepsize= 1.000000 +dualbound = 3293228.547948, lowerbound=1249224.547948, norm of subgrad 1118.274362 dualbound = 3293228.547948, lowerbound=1249224.547948, norm of subgrad 37.868449 stepsize= 1.000000 +dualbound = 3293331.151555, lowerbound=1254999.151555, norm of subgrad 1120.832794 dualbound = 3293331.151555, lowerbound=1254999.151555, norm of subgrad 37.008156 stepsize= 1.000000 +dualbound = 3293435.749119, lowerbound=1253168.749119, norm of subgrad 1120.019977 dualbound = 3293435.749119, lowerbound=1253168.749119, norm of subgrad 37.156393 stepsize= 1.000000 +dualbound = 3293522.761964, lowerbound=1250278.761964, norm of subgrad 1118.746514 dualbound = 3293522.761964, lowerbound=1250278.761964, norm of subgrad 37.443462 stepsize= 1.000000 +dualbound = 3293608.053560, lowerbound=1259858.053560, norm of subgrad 1122.983105 dualbound = 3293608.053560, lowerbound=1259858.053560, norm of subgrad 36.308286 stepsize= 1.000000 +dualbound = 3293735.578466, lowerbound=1252321.578466, norm of subgrad 1119.611798 dualbound = 3293735.578466, lowerbound=1252321.578466, norm of subgrad 36.558513 stepsize= 1.000000 +dualbound = 3293820.013216, lowerbound=1259343.013216, norm of subgrad 1122.779592 dualbound = 3293820.013216, lowerbound=1259343.013216, norm of subgrad 37.086854 stepsize= 1.000000 +dualbound = 3293912.473120, lowerbound=1246989.473120, norm of subgrad 1117.258911 dualbound = 3293912.473120, lowerbound=1246989.473120, norm of subgrad 37.019723 stepsize= 1.000000 +dualbound = 3293989.495774, lowerbound=1255473.495774, norm of subgrad 1121.048837 dualbound = 3293989.495774, lowerbound=1255473.495774, norm of subgrad 36.797047 stepsize= 1.000000 +dualbound = 3294091.466141, lowerbound=1251833.466141, norm of subgrad 1119.431760 dualbound = 3294091.466141, lowerbound=1251833.466141, norm of subgrad 37.362687 stepsize= 1.000000 +dualbound = 3294169.761936, lowerbound=1255994.761936, norm of subgrad 1121.300032 dualbound = 3294169.761936, lowerbound=1255994.761936, norm of subgrad 37.380420 stepsize= 1.000000 +dualbound = 3294255.348578, lowerbound=1256116.348578, norm of subgrad 1121.372083 dualbound = 3294255.348578, lowerbound=1256116.348578, norm of subgrad 38.007718 stepsize= 1.000000 +dualbound = 3294335.224481, lowerbound=1254227.224481, norm of subgrad 1120.534348 dualbound = 3294335.224481, lowerbound=1254227.224481, norm of subgrad 38.077236 stepsize= 1.000000 +dualbound = 3294452.542173, lowerbound=1252985.542173, norm of subgrad 1119.959616 dualbound = 3294452.542173, lowerbound=1252985.542173, norm of subgrad 37.964690 stepsize= 1.000000 +dualbound = 3294554.640390, lowerbound=1256164.640390, norm of subgrad 1121.357053 dualbound = 3294554.640390, lowerbound=1256164.640390, norm of subgrad 37.136212 stepsize= 1.000000 +dualbound = 3294655.970923, lowerbound=1252347.970923, norm of subgrad 1119.668688 dualbound = 3294655.970923, lowerbound=1252347.970923, norm of subgrad 37.567679 stepsize= 1.000000 +dualbound = 3294721.001917, lowerbound=1253254.001917, norm of subgrad 1120.083480 dualbound = 3294721.001917, lowerbound=1253254.001917, norm of subgrad 37.390253 stepsize= 1.000000 +dualbound = 3294843.851007, lowerbound=1256241.851007, norm of subgrad 1121.389696 dualbound = 3294843.851007, lowerbound=1256241.851007, norm of subgrad 37.361064 stepsize= 1.000000 +dualbound = 3294929.558144, lowerbound=1254275.558144, norm of subgrad 1120.537174 dualbound = 3294929.558144, lowerbound=1254275.558144, norm of subgrad 37.599297 stepsize= 1.000000 +dualbound = 3295030.200117, lowerbound=1252555.200117, norm of subgrad 1119.731307 dualbound = 3295030.200117, lowerbound=1252555.200117, norm of subgrad 36.655722 stepsize= 1.000000 +dualbound = 3295117.868744, lowerbound=1255809.868744, norm of subgrad 1121.215799 dualbound = 3295117.868744, lowerbound=1255809.868744, norm of subgrad 37.452218 stepsize= 1.000000 +dualbound = 3295208.776833, lowerbound=1253076.776833, norm of subgrad 1120.021329 dualbound = 3295208.776833, lowerbound=1253076.776833, norm of subgrad 38.234907 stepsize= 1.000000 +dualbound = 3295283.074922, lowerbound=1255680.074922, norm of subgrad 1121.166836 dualbound = 3295283.074922, lowerbound=1255680.074922, norm of subgrad 37.540619 stepsize= 1.000000 +dualbound = 3295387.071103, lowerbound=1254071.071103, norm of subgrad 1120.465114 dualbound = 3295387.071103, lowerbound=1254071.071103, norm of subgrad 38.405679 stepsize= 1.000000 +dualbound = 3295489.548554, lowerbound=1252323.548554, norm of subgrad 1119.635007 dualbound = 3295489.548554, lowerbound=1252323.548554, norm of subgrad 36.898204 stepsize= 1.000000 +dualbound = 3295596.289302, lowerbound=1253470.289302, norm of subgrad 1120.167527 dualbound = 3295596.289302, lowerbound=1253470.289302, norm of subgrad 37.573139 stepsize= 1.000000 +dualbound = 3295700.144814, lowerbound=1257505.144814, norm of subgrad 1121.949261 dualbound = 3295700.144814, lowerbound=1257505.144814, norm of subgrad 36.998047 stepsize= 1.000000 +dualbound = 3295777.191962, lowerbound=1254115.191962, norm of subgrad 1120.448657 dualbound = 3295777.191962, lowerbound=1254115.191962, norm of subgrad 36.973601 stepsize= 1.000000 +dualbound = 3295873.058793, lowerbound=1251157.058793, norm of subgrad 1119.144789 dualbound = 3295873.058793, lowerbound=1251157.058793, norm of subgrad 37.734160 stepsize= 1.000000 +dualbound = 3295972.732204, lowerbound=1255037.732204, norm of subgrad 1120.841529 dualbound = 3295972.732204, lowerbound=1255037.732204, norm of subgrad 36.710672 stepsize= 1.000000 +dualbound = 3296080.182489, lowerbound=1257723.182489, norm of subgrad 1122.027265 dualbound = 3296080.182489, lowerbound=1257723.182489, norm of subgrad 36.461628 stepsize= 1.000000 +dualbound = 3296171.866353, lowerbound=1253673.866353, norm of subgrad 1120.223132 dualbound = 3296171.866353, lowerbound=1253673.866353, norm of subgrad 36.299915 stepsize= 1.000000 +dualbound = 3296281.271065, lowerbound=1255583.271065, norm of subgrad 1121.073713 dualbound = 3296281.271065, lowerbound=1255583.271065, norm of subgrad 36.502119 stepsize= 1.000000 +dualbound = 3296347.713307, lowerbound=1253200.713307, norm of subgrad 1120.014604 dualbound = 3296347.713307, lowerbound=1253200.713307, norm of subgrad 36.033904 stepsize= 1.000000 +dualbound = 3296453.532102, lowerbound=1252614.532102, norm of subgrad 1119.779680 dualbound = 3296453.532102, lowerbound=1252614.532102, norm of subgrad 37.387415 stepsize= 1.000000 +dualbound = 3296516.182188, lowerbound=1250621.182188, norm of subgrad 1118.885688 dualbound = 3296516.182188, lowerbound=1250621.182188, norm of subgrad 36.696731 stepsize= 1.000000 +dualbound = 3296622.849888, lowerbound=1257325.849888, norm of subgrad 1121.853310 dualbound = 3296622.849888, lowerbound=1257325.849888, norm of subgrad 36.546788 stepsize= 1.000000 +dualbound = 3296735.202013, lowerbound=1249981.202013, norm of subgrad 1118.592062 dualbound = 3296735.202013, lowerbound=1249981.202013, norm of subgrad 37.139630 stepsize= 1.000000 +dualbound = 3296806.743532, lowerbound=1253273.743532, norm of subgrad 1120.065955 dualbound = 3296806.743532, lowerbound=1253273.743532, norm of subgrad 36.681624 stepsize= 1.000000 +dualbound = 3296912.923622, lowerbound=1253520.923622, norm of subgrad 1120.177630 dualbound = 3296912.923622, lowerbound=1253520.923622, norm of subgrad 37.191129 stepsize= 1.000000 +dualbound = 3297003.456929, lowerbound=1253025.456929, norm of subgrad 1120.015382 dualbound = 3297003.456929, lowerbound=1253025.456929, norm of subgrad 38.723808 stepsize= 1.000000 +dualbound = 3297034.632268, lowerbound=1256931.632268, norm of subgrad 1121.766300 dualbound = 3297034.632268, lowerbound=1256931.632268, norm of subgrad 38.199154 stepsize= 1.000000 +dualbound = 3297170.023707, lowerbound=1253325.023707, norm of subgrad 1120.132592 dualbound = 3297170.023707, lowerbound=1253325.023707, norm of subgrad 38.825139 stepsize= 1.000000 +dualbound = 3297260.422589, lowerbound=1256368.422589, norm of subgrad 1121.493389 dualbound = 3297260.422589, lowerbound=1256368.422589, norm of subgrad 38.332739 stepsize= 1.000000 +dualbound = 3297364.055425, lowerbound=1252742.055425, norm of subgrad 1119.874571 dualbound = 3297364.055425, lowerbound=1252742.055425, norm of subgrad 38.478992 stepsize= 1.000000 +dualbound = 3297445.560534, lowerbound=1259357.560534, norm of subgrad 1122.802993 dualbound = 3297445.560534, lowerbound=1259357.560534, norm of subgrad 37.556692 stepsize= 1.000000 +dualbound = 3297558.470119, lowerbound=1252711.470119, norm of subgrad 1119.843949 dualbound = 3297558.470119, lowerbound=1252711.470119, norm of subgrad 38.103931 stepsize= 1.000000 +dualbound = 3297665.216948, lowerbound=1258351.216948, norm of subgrad 1122.340954 dualbound = 3297665.216948, lowerbound=1258351.216948, norm of subgrad 37.479952 stepsize= 1.000000 +dualbound = 3297777.827945, lowerbound=1252774.827945, norm of subgrad 1119.861522 dualbound = 3297777.827945, lowerbound=1252774.827945, norm of subgrad 37.783740 stepsize= 1.000000 +dualbound = 3297842.182500, lowerbound=1257800.182500, norm of subgrad 1122.097225 dualbound = 3297842.182500, lowerbound=1257800.182500, norm of subgrad 36.964233 stepsize= 1.000000 +dualbound = 3297953.156199, lowerbound=1250077.156199, norm of subgrad 1118.653725 dualbound = 3297953.156199, lowerbound=1250077.156199, norm of subgrad 37.682538 stepsize= 1.000000 +dualbound = 3298034.327592, lowerbound=1259842.327592, norm of subgrad 1123.012612 dualbound = 3298034.327592, lowerbound=1259842.327592, norm of subgrad 37.365377 stepsize= 1.000000 +dualbound = 3298120.916240, lowerbound=1250879.916240, norm of subgrad 1119.002644 dualbound = 3298120.916240, lowerbound=1250879.916240, norm of subgrad 37.061957 stepsize= 1.000000 +dualbound = 3298218.797889, lowerbound=1257385.797889, norm of subgrad 1121.898301 dualbound = 3298218.797889, lowerbound=1257385.797889, norm of subgrad 36.984884 stepsize= 1.000000 +dualbound = 3298346.122034, lowerbound=1255475.122034, norm of subgrad 1121.040642 dualbound = 3298346.122034, lowerbound=1255475.122034, norm of subgrad 37.206507 stepsize= 1.000000 +dualbound = 3298414.213562, lowerbound=1256386.213562, norm of subgrad 1121.445591 dualbound = 3298414.213562, lowerbound=1256386.213562, norm of subgrad 36.360577 stepsize= 1.000000 +dualbound = 3298514.666434, lowerbound=1253076.666434, norm of subgrad 1119.976190 dualbound = 3298514.666434, lowerbound=1253076.666434, norm of subgrad 37.019628 stepsize= 1.000000 +dualbound = 3298624.419524, lowerbound=1256302.419524, norm of subgrad 1121.396192 dualbound = 3298624.419524, lowerbound=1256302.419524, norm of subgrad 36.561634 stepsize= 1.000000 +dualbound = 3298721.888999, lowerbound=1252267.888999, norm of subgrad 1119.628907 dualbound = 3298721.888999, lowerbound=1252267.888999, norm of subgrad 37.396116 stepsize= 1.000000 +dualbound = 3298786.017693, lowerbound=1253228.017693, norm of subgrad 1120.052239 dualbound = 3298786.017693, lowerbound=1253228.017693, norm of subgrad 36.784898 stepsize= 1.000000 +dualbound = 3298907.729107, lowerbound=1254163.729107, norm of subgrad 1120.454697 dualbound = 3298907.729107, lowerbound=1254163.729107, norm of subgrad 37.104062 stepsize= 1.000000 +dualbound = 3298994.191431, lowerbound=1256186.191431, norm of subgrad 1121.359528 dualbound = 3298994.191431, lowerbound=1256186.191431, norm of subgrad 36.707796 stepsize= 1.000000 +dualbound = 3299072.635569, lowerbound=1252031.635569, norm of subgrad 1119.525630 dualbound = 3299072.635569, lowerbound=1252031.635569, norm of subgrad 37.208119 stepsize= 1.000000 +dualbound = 3299180.357245, lowerbound=1256553.357245, norm of subgrad 1121.544184 dualbound = 3299180.357245, lowerbound=1256553.357245, norm of subgrad 37.626077 stepsize= 1.000000 +dualbound = 3299248.020185, lowerbound=1253871.020185, norm of subgrad 1120.389227 dualbound = 3299248.020185, lowerbound=1253871.020185, norm of subgrad 38.323138 stepsize= 1.000000 +dualbound = 3299339.420403, lowerbound=1258137.420403, norm of subgrad 1122.244368 dualbound = 3299339.420403, lowerbound=1258137.420403, norm of subgrad 37.234396 stepsize= 1.000000 +dualbound = 3299450.188632, lowerbound=1253114.188632, norm of subgrad 1120.002763 dualbound = 3299450.188632, lowerbound=1253114.188632, norm of subgrad 37.453548 stepsize= 1.000000 +dualbound = 3299552.541788, lowerbound=1256929.541788, norm of subgrad 1121.736842 dualbound = 3299552.541788, lowerbound=1256929.541788, norm of subgrad 38.292991 stepsize= 1.000000 +dualbound = 3299590.735585, lowerbound=1250604.735585, norm of subgrad 1118.931068 dualbound = 3299590.735585, lowerbound=1250604.735585, norm of subgrad 37.949885 stepsize= 1.000000 +dualbound = 3299717.439043, lowerbound=1256967.439043, norm of subgrad 1121.722086 dualbound = 3299717.439043, lowerbound=1256967.439043, norm of subgrad 37.678952 stepsize= 1.000000 +dualbound = 3299819.035230, lowerbound=1252232.035231, norm of subgrad 1119.605750 dualbound = 3299819.035230, lowerbound=1252232.035231, norm of subgrad 37.237027 stepsize= 1.000000 +dualbound = 3299890.163645, lowerbound=1256823.163645, norm of subgrad 1121.676497 dualbound = 3299890.163645, lowerbound=1256823.163645, norm of subgrad 37.498379 stepsize= 1.000000 +dualbound = 3300011.435125, lowerbound=1256791.435125, norm of subgrad 1121.651655 dualbound = 3300011.435125, lowerbound=1256791.435125, norm of subgrad 37.845363 stepsize= 1.000000 +dualbound = 3300095.873060, lowerbound=1249158.873060, norm of subgrad 1118.257516 dualbound = 3300095.873060, lowerbound=1249158.873060, norm of subgrad 37.754972 stepsize= 1.000000 +dualbound = 3300201.146994, lowerbound=1252252.146994, norm of subgrad 1119.604907 dualbound = 3300201.146994, lowerbound=1252252.146994, norm of subgrad 36.990187 stepsize= 1.000000 +dualbound = 3300295.337714, lowerbound=1252196.337714, norm of subgrad 1119.602312 dualbound = 3300295.337714, lowerbound=1252196.337714, norm of subgrad 37.512541 stepsize= 1.000000 +dualbound = 3300371.147334, lowerbound=1255438.147334, norm of subgrad 1121.051804 dualbound = 3300371.147334, lowerbound=1255438.147334, norm of subgrad 37.347150 stepsize= 1.000000 +dualbound = 3300487.430255, lowerbound=1257889.430255, norm of subgrad 1122.128081 dualbound = 3300487.430255, lowerbound=1257889.430255, norm of subgrad 37.393621 stepsize= 1.000000 +dualbound = 3300585.593165, lowerbound=1254094.593165, norm of subgrad 1120.463115 dualbound = 3300585.593165, lowerbound=1254094.593165, norm of subgrad 37.962652 stepsize= 1.000000 +dualbound = 3300672.946171, lowerbound=1257684.946171, norm of subgrad 1122.039191 dualbound = 3300672.946171, lowerbound=1257684.946171, norm of subgrad 37.072267 stepsize= 1.000000 +dualbound = 3300781.897039, lowerbound=1253894.897039, norm of subgrad 1120.341420 dualbound = 3300781.897039, lowerbound=1253894.897039, norm of subgrad 37.134228 stepsize= 1.000000 +dualbound = 3300851.241022, lowerbound=1258075.241022, norm of subgrad 1122.237605 dualbound = 3300851.241022, lowerbound=1258075.241022, norm of subgrad 37.567858 stepsize= 1.000000 +dualbound = 3300935.069557, lowerbound=1250630.069557, norm of subgrad 1118.892787 dualbound = 3300935.069557, lowerbound=1250630.069557, norm of subgrad 37.078680 stepsize= 1.000000 +dualbound = 3301065.448344, lowerbound=1260685.448344, norm of subgrad 1123.383037 dualbound = 3301065.448344, lowerbound=1260685.448344, norm of subgrad 37.873194 stepsize= 1.000000 +dualbound = 3301149.849862, lowerbound=1253456.849862, norm of subgrad 1120.165992 dualbound = 3301149.849862, lowerbound=1253456.849862, norm of subgrad 37.408575 stepsize= 1.000000 +dualbound = 3301225.497486, lowerbound=1256082.497486, norm of subgrad 1121.360111 dualbound = 3301225.497486, lowerbound=1256082.497486, norm of subgrad 37.969035 stepsize= 1.000000 +dualbound = 3301333.464775, lowerbound=1251504.464775, norm of subgrad 1119.283460 dualbound = 3301333.464775, lowerbound=1251504.464775, norm of subgrad 37.402771 stepsize= 1.000000 +dualbound = 3301403.217300, lowerbound=1252521.217300, norm of subgrad 1119.750962 dualbound = 3301403.217300, lowerbound=1252521.217300, norm of subgrad 37.292795 stepsize= 1.000000 +dualbound = 3301555.952877, lowerbound=1252397.952877, norm of subgrad 1119.667340 dualbound = 3301555.952877, lowerbound=1252397.952877, norm of subgrad 37.546446 stepsize= 1.000000 +dualbound = 3301607.963265, lowerbound=1256117.963265, norm of subgrad 1121.333119 dualbound = 3301607.963265, lowerbound=1256117.963265, norm of subgrad 36.359461 stepsize= 1.000000 +dualbound = 3301747.654838, lowerbound=1260928.654838, norm of subgrad 1123.457901 dualbound = 3301747.654838, lowerbound=1260928.654838, norm of subgrad 36.995832 stepsize= 1.000000 +dualbound = 3301824.353655, lowerbound=1253655.353655, norm of subgrad 1120.225582 dualbound = 3301824.353655, lowerbound=1253655.353655, norm of subgrad 36.423877 stepsize= 1.000000 +dualbound = 3301915.261323, lowerbound=1254078.261323, norm of subgrad 1120.411648 dualbound = 3301915.261323, lowerbound=1254078.261323, norm of subgrad 36.536388 stepsize= 1.000000 +dualbound = 3301984.287867, lowerbound=1255589.287867, norm of subgrad 1121.120104 dualbound = 3301984.287867, lowerbound=1255589.287867, norm of subgrad 37.283060 stepsize= 1.000000 +dualbound = 3302082.235456, lowerbound=1254297.235456, norm of subgrad 1120.527659 dualbound = 3302082.235456, lowerbound=1254297.235456, norm of subgrad 37.188003 stepsize= 1.000000 +dualbound = 3302185.730041, lowerbound=1256543.730041, norm of subgrad 1121.534988 dualbound = 3302185.730041, lowerbound=1256543.730041, norm of subgrad 37.423182 stepsize= 1.000000 +dualbound = 3302297.433781, lowerbound=1254251.433781, norm of subgrad 1120.492050 dualbound = 3302297.433781, lowerbound=1254251.433781, norm of subgrad 36.914817 stepsize= 1.000000 +dualbound = 3302385.723075, lowerbound=1256823.723075, norm of subgrad 1121.662482 dualbound = 3302385.723075, lowerbound=1256823.723075, norm of subgrad 37.299991 stepsize= 1.000000 +dualbound = 3302451.187923, lowerbound=1251223.187923, norm of subgrad 1119.183715 dualbound = 3302451.187923, lowerbound=1251223.187923, norm of subgrad 37.609372 stepsize= 1.000000 +dualbound = 3302542.445042, lowerbound=1255342.445042, norm of subgrad 1121.011349 dualbound = 3302542.445042, lowerbound=1255342.445042, norm of subgrad 37.619903 stepsize= 1.000000 +dualbound = 3302639.186259, lowerbound=1258920.186259, norm of subgrad 1122.631812 dualbound = 3302639.186259, lowerbound=1258920.186259, norm of subgrad 38.454404 stepsize= 1.000000 +dualbound = 3302716.395479, lowerbound=1253591.395479, norm of subgrad 1120.225154 dualbound = 3302716.395479, lowerbound=1253591.395479, norm of subgrad 37.285510 stepsize= 1.000000 +dualbound = 3302853.571663, lowerbound=1256832.571663, norm of subgrad 1121.661523 dualbound = 3302853.571663, lowerbound=1256832.571663, norm of subgrad 37.804447 stepsize= 1.000000 +dualbound = 3302916.434712, lowerbound=1254421.434712, norm of subgrad 1120.579955 dualbound = 3302916.434712, lowerbound=1254421.434712, norm of subgrad 36.617797 stepsize= 1.000000 +dualbound = 3303051.104392, lowerbound=1256097.104392, norm of subgrad 1121.334074 dualbound = 3303051.104392, lowerbound=1256097.104392, norm of subgrad 37.784516 stepsize= 1.000000 +dualbound = 3303109.761709, lowerbound=1252870.761709, norm of subgrad 1119.890067 dualbound = 3303109.761709, lowerbound=1252870.761709, norm of subgrad 36.628641 stepsize= 1.000000 +dualbound = 3303204.472001, lowerbound=1263061.472001, norm of subgrad 1124.456523 dualbound = 3303204.472001, lowerbound=1263061.472001, norm of subgrad 37.890768 stepsize= 1.000000 +dualbound = 3303304.222945, lowerbound=1249114.222945, norm of subgrad 1118.215195 dualbound = 3303304.222945, lowerbound=1249114.222945, norm of subgrad 37.292773 stepsize= 1.000000 +dualbound = 3303392.708447, lowerbound=1259337.708447, norm of subgrad 1122.779011 dualbound = 3303392.708447, lowerbound=1259337.708447, norm of subgrad 37.195235 stepsize= 1.000000 +dualbound = 3303503.460205, lowerbound=1251790.460205, norm of subgrad 1119.396025 dualbound = 3303503.460205, lowerbound=1251790.460205, norm of subgrad 36.983128 stepsize= 1.000000 +dualbound = 3303598.081459, lowerbound=1254457.081459, norm of subgrad 1120.586044 dualbound = 3303598.081459, lowerbound=1254457.081459, norm of subgrad 36.750799 stepsize= 1.000000 +dualbound = 3303679.813109, lowerbound=1256282.813109, norm of subgrad 1121.426686 dualbound = 3303679.813109, lowerbound=1256282.813109, norm of subgrad 37.372873 stepsize= 1.000000 +dualbound = 3303779.332896, lowerbound=1256872.332896, norm of subgrad 1121.671669 dualbound = 3303779.332896, lowerbound=1256872.332896, norm of subgrad 37.074517 stepsize= 1.000000 +dualbound = 3303867.562653, lowerbound=1252005.562653, norm of subgrad 1119.488527 dualbound = 3303867.562653, lowerbound=1252005.562653, norm of subgrad 36.568152 stepsize= 1.000000 +dualbound = 3303973.145388, lowerbound=1259443.145388, norm of subgrad 1122.834425 dualbound = 3303973.145388, lowerbound=1259443.145388, norm of subgrad 37.677350 stepsize= 1.000000 +dualbound = 3304028.141930, lowerbound=1250990.141930, norm of subgrad 1119.059043 dualbound = 3304028.141930, lowerbound=1250990.141930, norm of subgrad 36.851005 stepsize= 1.000000 +dualbound = 3304146.859670, lowerbound=1261660.859670, norm of subgrad 1123.811310 dualbound = 3304146.859670, lowerbound=1261660.859670, norm of subgrad 37.546208 stepsize= 1.000000 +dualbound = 3304245.938332, lowerbound=1246568.938332, norm of subgrad 1117.072038 dualbound = 3304245.938332, lowerbound=1246568.938332, norm of subgrad 37.149410 stepsize= 1.000000 +dualbound = 3304345.107666, lowerbound=1259420.107666, norm of subgrad 1122.818377 dualbound = 3304345.107666, lowerbound=1259420.107666, norm of subgrad 37.418837 stepsize= 1.000000 +dualbound = 3304406.153896, lowerbound=1254432.153896, norm of subgrad 1120.604370 dualbound = 3304406.153896, lowerbound=1254432.153896, norm of subgrad 37.189330 stepsize= 1.000000 +dualbound = 3304522.922585, lowerbound=1256427.922585, norm of subgrad 1121.495396 dualbound = 3304522.922585, lowerbound=1256427.922585, norm of subgrad 37.957459 stepsize= 1.000000 +dualbound = 3304610.522378, lowerbound=1251116.522378, norm of subgrad 1119.094957 dualbound = 3304610.522378, lowerbound=1251116.522378, norm of subgrad 36.668785 stepsize= 1.000000 +dualbound = 3304729.145496, lowerbound=1256207.145496, norm of subgrad 1121.373330 dualbound = 3304729.145496, lowerbound=1256207.145496, norm of subgrad 37.277649 stepsize= 1.000000 +dualbound = 3304793.461508, lowerbound=1251690.461508, norm of subgrad 1119.375478 dualbound = 3304793.461508, lowerbound=1251690.461508, norm of subgrad 37.085253 stepsize= 1.000000 +dualbound = 3304922.952684, lowerbound=1258667.952684, norm of subgrad 1122.474923 dualbound = 3304922.952684, lowerbound=1258667.952684, norm of subgrad 37.569817 stepsize= 1.000000 +dualbound = 3304985.749640, lowerbound=1245933.749640, norm of subgrad 1116.791274 dualbound = 3304985.749640, lowerbound=1245933.749640, norm of subgrad 36.766791 stepsize= 1.000000 +dualbound = 3305099.061323, lowerbound=1258516.061323, norm of subgrad 1122.400134 dualbound = 3305099.061323, lowerbound=1258516.061323, norm of subgrad 37.139086 stepsize= 1.000000 +dualbound = 3305178.399271, lowerbound=1255978.399271, norm of subgrad 1121.274453 dualbound = 3305178.399271, lowerbound=1255978.399271, norm of subgrad 36.842068 stepsize= 1.000000 +dualbound = 3305271.905909, lowerbound=1260983.905909, norm of subgrad 1123.548800 dualbound = 3305271.905909, lowerbound=1260983.905909, norm of subgrad 38.360222 stepsize= 1.000000 +dualbound = 3305333.522564, lowerbound=1261375.522564, norm of subgrad 1123.712829 dualbound = 3305333.522564, lowerbound=1261375.522564, norm of subgrad 37.637968 stepsize= 1.000000 +dualbound = 3305447.925962, lowerbound=1257294.925962, norm of subgrad 1121.879194 dualbound = 3305447.925962, lowerbound=1257294.925962, norm of subgrad 37.847106 stepsize= 1.000000 +dualbound = 3305553.806153, lowerbound=1253712.806153, norm of subgrad 1120.266400 dualbound = 3305553.806153, lowerbound=1253712.806153, norm of subgrad 37.281097 stepsize= 1.000000 +dualbound = 3305647.473358, lowerbound=1253802.473358, norm of subgrad 1120.293923 dualbound = 3305647.473358, lowerbound=1253802.473358, norm of subgrad 36.737817 stepsize= 1.000000 +dualbound = 3305748.725567, lowerbound=1252151.725567, norm of subgrad 1119.580603 dualbound = 3305748.725567, lowerbound=1252151.725567, norm of subgrad 37.553325 stepsize= 1.000000 +dualbound = 3305830.374388, lowerbound=1255580.374388, norm of subgrad 1121.115683 dualbound = 3305830.374388, lowerbound=1255580.374388, norm of subgrad 37.438601 stepsize= 1.000000 +dualbound = 3305910.913142, lowerbound=1255053.913142, norm of subgrad 1120.828673 dualbound = 3305910.913142, lowerbound=1255053.913142, norm of subgrad 35.826509 stepsize= 1.000000 +dualbound = 3306047.422563, lowerbound=1254540.422563, norm of subgrad 1120.620106 dualbound = 3306047.422563, lowerbound=1254540.422563, norm of subgrad 37.222432 stepsize= 1.000000 +dualbound = 3306088.960974, lowerbound=1254780.960974, norm of subgrad 1120.743932 dualbound = 3306088.960974, lowerbound=1254780.960974, norm of subgrad 36.435401 stepsize= 1.000000 +dualbound = 3306198.474658, lowerbound=1252886.474658, norm of subgrad 1119.929228 dualbound = 3306198.474658, lowerbound=1252886.474658, norm of subgrad 38.268965 stepsize= 1.000000 +dualbound = 3306277.120628, lowerbound=1254258.120628, norm of subgrad 1120.504405 dualbound = 3306277.120628, lowerbound=1254258.120628, norm of subgrad 36.751136 stepsize= 1.000000 +dualbound = 3306385.827112, lowerbound=1259908.827112, norm of subgrad 1123.038213 dualbound = 3306385.827112, lowerbound=1259908.827112, norm of subgrad 37.612584 stepsize= 1.000000 +dualbound = 3306471.196557, lowerbound=1252350.196557, norm of subgrad 1119.678613 dualbound = 3306471.196557, lowerbound=1252350.196557, norm of subgrad 37.621396 stepsize= 1.000000 +dualbound = 3306584.161510, lowerbound=1258424.161510, norm of subgrad 1122.369441 dualbound = 3306584.161510, lowerbound=1258424.161510, norm of subgrad 37.442822 stepsize= 1.000000 +dualbound = 3306683.817496, lowerbound=1251155.817496, norm of subgrad 1119.131725 dualbound = 3306683.817496, lowerbound=1251155.817496, norm of subgrad 37.411977 stepsize= 1.000000 +dualbound = 3306754.933910, lowerbound=1259416.933910, norm of subgrad 1122.847244 dualbound = 3306754.933910, lowerbound=1259416.933910, norm of subgrad 37.948866 stepsize= 1.000000 +dualbound = 3306856.270535, lowerbound=1255099.270535, norm of subgrad 1120.872995 dualbound = 3306856.270535, lowerbound=1255099.270535, norm of subgrad 36.855619 stepsize= 1.000000 +dualbound = 3306967.182456, lowerbound=1258471.182456, norm of subgrad 1122.375687 dualbound = 3306967.182456, lowerbound=1258471.182456, norm of subgrad 36.971772 stepsize= 1.000000 +dualbound = 3307047.826812, lowerbound=1253612.826812, norm of subgrad 1120.228917 dualbound = 3307047.826812, lowerbound=1253612.826812, norm of subgrad 37.157023 stepsize= 1.000000 +dualbound = 3307136.805062, lowerbound=1259772.805062, norm of subgrad 1122.990118 dualbound = 3307136.805062, lowerbound=1259772.805062, norm of subgrad 37.722384 stepsize= 1.000000 +dualbound = 3307240.930037, lowerbound=1255910.930037, norm of subgrad 1121.240799 dualbound = 3307240.930037, lowerbound=1255910.930037, norm of subgrad 37.069192 stepsize= 1.000000 +dualbound = 3307318.942516, lowerbound=1259219.942516, norm of subgrad 1122.717214 dualbound = 3307318.942516, lowerbound=1259219.942516, norm of subgrad 36.769722 stepsize= 1.000000 +dualbound = 3307433.387028, lowerbound=1249527.387028, norm of subgrad 1118.388299 dualbound = 3307433.387028, lowerbound=1249527.387028, norm of subgrad 37.140874 stepsize= 1.000000 +dualbound = 3307527.315281, lowerbound=1256454.315281, norm of subgrad 1121.487100 dualbound = 3307527.315281, lowerbound=1256454.315281, norm of subgrad 37.053046 stepsize= 1.000000 +dualbound = 3307604.623346, lowerbound=1256306.623346, norm of subgrad 1121.438640 dualbound = 3307604.623346, lowerbound=1256306.623346, norm of subgrad 37.353823 stepsize= 1.000000 +dualbound = 3307695.124841, lowerbound=1257526.124841, norm of subgrad 1121.969307 dualbound = 3307695.124841, lowerbound=1257526.124841, norm of subgrad 37.141641 stepsize= 1.000000 +dualbound = 3307801.728725, lowerbound=1255414.728725, norm of subgrad 1121.028871 dualbound = 3307801.728725, lowerbound=1255414.728725, norm of subgrad 37.384541 stepsize= 1.000000 +dualbound = 3307884.138844, lowerbound=1256120.138844, norm of subgrad 1121.326954 dualbound = 3307884.138844, lowerbound=1256120.138844, norm of subgrad 36.556944 stepsize= 1.000000 +dualbound = 3307980.888097, lowerbound=1252695.888097, norm of subgrad 1119.806183 dualbound = 3307980.888097, lowerbound=1252695.888097, norm of subgrad 36.969572 stepsize= 1.000000 +dualbound = 3308081.453009, lowerbound=1255964.453009, norm of subgrad 1121.278936 dualbound = 3308081.453009, lowerbound=1255964.453009, norm of subgrad 37.450833 stepsize= 1.000000 +dualbound = 3308158.596296, lowerbound=1254181.596296, norm of subgrad 1120.480967 dualbound = 3308158.596296, lowerbound=1254181.596296, norm of subgrad 37.055948 stepsize= 1.000000 +dualbound = 3308261.739092, lowerbound=1255004.739092, norm of subgrad 1120.827257 dualbound = 3308261.739092, lowerbound=1255004.739092, norm of subgrad 36.771494 stepsize= 1.000000 +dualbound = 3308358.105619, lowerbound=1257714.105619, norm of subgrad 1122.060206 dualbound = 3308358.105619, lowerbound=1257714.105619, norm of subgrad 37.434830 stepsize= 1.000000 +dualbound = 3308462.470654, lowerbound=1256840.470654, norm of subgrad 1121.658357 dualbound = 3308462.470654, lowerbound=1256840.470654, norm of subgrad 37.166719 stepsize= 1.000000 +dualbound = 3308514.639735, lowerbound=1257097.639735, norm of subgrad 1121.789927 dualbound = 3308514.639735, lowerbound=1257097.639735, norm of subgrad 36.975250 stepsize= 1.000000 +dualbound = 3308634.983739, lowerbound=1253927.983739, norm of subgrad 1120.355294 dualbound = 3308634.983739, lowerbound=1253927.983739, norm of subgrad 37.260489 stepsize= 1.000000 +dualbound = 3308745.420285, lowerbound=1256709.420285, norm of subgrad 1121.578540 dualbound = 3308745.420285, lowerbound=1256709.420285, norm of subgrad 36.598313 stepsize= 1.000000 +dualbound = 3308836.714826, lowerbound=1257953.714826, norm of subgrad 1122.170092 dualbound = 3308836.714826, lowerbound=1257953.714826, norm of subgrad 37.460573 stepsize= 1.000000 +dualbound = 3308908.418463, lowerbound=1252703.418463, norm of subgrad 1119.811332 dualbound = 3308908.418463, lowerbound=1252703.418463, norm of subgrad 36.683833 stepsize= 1.000000 +dualbound = 3309006.027313, lowerbound=1256814.027313, norm of subgrad 1121.670641 dualbound = 3309006.027313, lowerbound=1256814.027313, norm of subgrad 37.796942 stepsize= 1.000000 +dualbound = 3309077.377413, lowerbound=1256831.377413, norm of subgrad 1121.661436 dualbound = 3309077.377413, lowerbound=1256831.377413, norm of subgrad 36.937110 stepsize= 1.000000 +dualbound = 3309207.303313, lowerbound=1260452.303313, norm of subgrad 1123.268135 dualbound = 3309207.303313, lowerbound=1260452.303313, norm of subgrad 37.535662 stepsize= 1.000000 +dualbound = 3309266.096726, lowerbound=1257824.096726, norm of subgrad 1122.090949 dualbound = 3309266.096726, lowerbound=1257824.096726, norm of subgrad 36.370227 stepsize= 1.000000 +dualbound = 3309378.418980, lowerbound=1253372.418980, norm of subgrad 1120.117592 dualbound = 3309378.418980, lowerbound=1253372.418980, norm of subgrad 37.460943 stepsize= 1.000000 +dualbound = 3309462.508938, lowerbound=1261729.508938, norm of subgrad 1123.840073 dualbound = 3309462.508938, lowerbound=1261729.508938, norm of subgrad 37.028232 stepsize= 1.000000 +dualbound = 3309573.964203, lowerbound=1255643.964203, norm of subgrad 1121.129325 dualbound = 3309573.964203, lowerbound=1255643.964203, norm of subgrad 37.395926 stepsize= 1.000000 +dualbound = 3309647.626822, lowerbound=1251145.626822, norm of subgrad 1119.108407 dualbound = 3309647.626822, lowerbound=1251145.626822, norm of subgrad 36.491953 stepsize= 1.000000 +dualbound = 3309742.175437, lowerbound=1254971.175437, norm of subgrad 1120.862692 dualbound = 3309742.175437, lowerbound=1254971.175437, norm of subgrad 38.164756 stepsize= 1.000000 +dualbound = 3309829.502987, lowerbound=1255884.502987, norm of subgrad 1121.229460 dualbound = 3309829.502987, lowerbound=1255884.502987, norm of subgrad 36.855496 stepsize= 1.000000 +dualbound = 3309935.000760, lowerbound=1250232.000760, norm of subgrad 1118.713547 dualbound = 3309935.000760, lowerbound=1250232.000760, norm of subgrad 37.329583 stepsize= 1.000000 +dualbound = 3310027.762181, lowerbound=1258164.762181, norm of subgrad 1122.269470 dualbound = 3310027.762181, lowerbound=1258164.762181, norm of subgrad 37.639891 stepsize= 1.000000 +dualbound = 3310079.600831, lowerbound=1256134.600831, norm of subgrad 1121.361494 dualbound = 3310079.600831, lowerbound=1256134.600831, norm of subgrad 36.997820 stepsize= 1.000000 +dualbound = 3310214.281276, lowerbound=1260490.281276, norm of subgrad 1123.255662 dualbound = 3310214.281276, lowerbound=1260490.281276, norm of subgrad 36.710767 stepsize= 1.000000 +dualbound = 3310335.884606, lowerbound=1253813.884606, norm of subgrad 1120.295445 dualbound = 3310335.884606, lowerbound=1253813.884606, norm of subgrad 37.008152 stepsize= 1.000000 +dualbound = 3310386.761126, lowerbound=1253107.761126, norm of subgrad 1120.011500 dualbound = 3310386.761126, lowerbound=1253107.761126, norm of subgrad 36.998331 stepsize= 1.000000 +dualbound = 3310481.069353, lowerbound=1258275.069353, norm of subgrad 1122.302575 dualbound = 3310481.069353, lowerbound=1258275.069353, norm of subgrad 37.179406 stepsize= 1.000000 +dualbound = 3310565.076937, lowerbound=1254695.076937, norm of subgrad 1120.698923 dualbound = 3310565.076937, lowerbound=1254695.076937, norm of subgrad 36.810428 stepsize= 1.000000 +dualbound = 3310700.838208, lowerbound=1257027.838208, norm of subgrad 1121.726722 dualbound = 3310700.838208, lowerbound=1257027.838208, norm of subgrad 37.131675 stepsize= 1.000000 +dualbound = 3310755.981994, lowerbound=1257641.981994, norm of subgrad 1122.032968 dualbound = 3310755.981994, lowerbound=1257641.981994, norm of subgrad 37.028959 stepsize= 1.000000 +dualbound = 3310869.686251, lowerbound=1255719.686251, norm of subgrad 1121.148378 dualbound = 3310869.686251, lowerbound=1255719.686251, norm of subgrad 36.982486 stepsize= 1.000000 +dualbound = 3310962.065684, lowerbound=1254825.065684, norm of subgrad 1120.753794 dualbound = 3310962.065684, lowerbound=1254825.065684, norm of subgrad 36.829057 stepsize= 1.000000 +dualbound = 3311069.971410, lowerbound=1256300.971410, norm of subgrad 1121.436566 dualbound = 3311069.971410, lowerbound=1256300.971410, norm of subgrad 37.774406 stepsize= 1.000000 +dualbound = 3311140.526676, lowerbound=1254881.526676, norm of subgrad 1120.754891 dualbound = 3311140.526676, lowerbound=1254881.526676, norm of subgrad 35.784847 stepsize= 1.000000 +dualbound = 3311287.860093, lowerbound=1257593.860093, norm of subgrad 1121.976765 dualbound = 3311287.860093, lowerbound=1257593.860093, norm of subgrad 37.220067 stepsize= 1.000000 +dualbound = 3311333.791521, lowerbound=1255635.791521, norm of subgrad 1121.127018 dualbound = 3311333.791521, lowerbound=1255635.791521, norm of subgrad 36.550396 stepsize= 1.000000 +dualbound = 3311418.326716, lowerbound=1255601.326716, norm of subgrad 1121.137069 dualbound = 3311418.326716, lowerbound=1255601.326716, norm of subgrad 37.835634 stepsize= 1.000000 +dualbound = 3311520.599371, lowerbound=1254873.599371, norm of subgrad 1120.781245 dualbound = 3311520.599371, lowerbound=1254873.599371, norm of subgrad 37.138560 stepsize= 1.000000 +dualbound = 3311621.546773, lowerbound=1256995.546773, norm of subgrad 1121.732832 dualbound = 3311621.546773, lowerbound=1256995.546773, norm of subgrad 37.281998 stepsize= 1.000000 +dualbound = 3311723.678766, lowerbound=1258317.678766, norm of subgrad 1122.296609 dualbound = 3311723.678766, lowerbound=1258317.678766, norm of subgrad 36.525772 stepsize= 1.000000 +dualbound = 3311802.559138, lowerbound=1255326.559138, norm of subgrad 1120.984192 dualbound = 3311802.559138, lowerbound=1255326.559138, norm of subgrad 36.849428 stepsize= 1.000000 +dualbound = 3311887.073617, lowerbound=1254339.073617, norm of subgrad 1120.537850 dualbound = 3311887.073617, lowerbound=1254339.073617, norm of subgrad 36.749347 stepsize= 1.000000 +dualbound = 3311985.975040, lowerbound=1255488.975040, norm of subgrad 1121.083839 dualbound = 3311985.975040, lowerbound=1255488.975040, norm of subgrad 37.932854 stepsize= 1.000000 +dualbound = 3312068.567939, lowerbound=1261440.567939, norm of subgrad 1123.704840 dualbound = 3312068.567939, lowerbound=1261440.567939, norm of subgrad 36.804795 stepsize= 1.000000 +dualbound = 3312177.418230, lowerbound=1251946.418230, norm of subgrad 1119.466578 dualbound = 3312177.418230, lowerbound=1251946.418230, norm of subgrad 36.984460 stepsize= 1.000000 +dualbound = 3312272.543565, lowerbound=1255089.543565, norm of subgrad 1120.900773 dualbound = 3312272.543565, lowerbound=1255089.543565, norm of subgrad 37.737585 stepsize= 1.000000 +dualbound = 3312329.002117, lowerbound=1253555.002117, norm of subgrad 1120.181236 dualbound = 3312329.002117, lowerbound=1253555.002117, norm of subgrad 36.158796 stepsize= 1.000000 +dualbound = 3312477.070573, lowerbound=1257419.070573, norm of subgrad 1121.895749 dualbound = 3312477.070573, lowerbound=1257419.070573, norm of subgrad 37.135811 stepsize= 1.000000 +dualbound = 3312555.264715, lowerbound=1255693.264715, norm of subgrad 1121.121878 dualbound = 3312555.264715, lowerbound=1255693.264715, norm of subgrad 36.044336 stepsize= 1.000000 +dualbound = 3312641.395527, lowerbound=1256789.395527, norm of subgrad 1121.640493 dualbound = 3312641.395527, lowerbound=1256789.395527, norm of subgrad 37.069270 stepsize= 1.000000 +dualbound = 3312709.906329, lowerbound=1256578.906329, norm of subgrad 1121.540863 dualbound = 3312709.906329, lowerbound=1256578.906329, norm of subgrad 36.653933 stepsize= 1.000000 +dualbound = 3312805.394554, lowerbound=1255777.394554, norm of subgrad 1121.190169 dualbound = 3312805.394554, lowerbound=1255777.394554, norm of subgrad 37.222147 stepsize= 1.000000 +dualbound = 3312903.034697, lowerbound=1258637.034697, norm of subgrad 1122.465605 dualbound = 3312903.034697, lowerbound=1258637.034697, norm of subgrad 37.277877 stepsize= 1.000000 +dualbound = 3312984.565427, lowerbound=1262589.565427, norm of subgrad 1124.260897 dualbound = 3312984.565427, lowerbound=1262589.565427, norm of subgrad 38.138311 stepsize= 1.000000 +dualbound = 3313078.632641, lowerbound=1253626.632641, norm of subgrad 1120.261859 dualbound = 3313078.632641, lowerbound=1253626.632641, norm of subgrad 38.132233 stepsize= 1.000000 +dualbound = 3313156.328361, lowerbound=1254880.328361, norm of subgrad 1120.806106 dualbound = 3313156.328361, lowerbound=1254880.328361, norm of subgrad 37.465927 stepsize= 1.000000 +dualbound = 3313282.392016, lowerbound=1256432.392016, norm of subgrad 1121.483567 dualbound = 3313282.392016, lowerbound=1256432.392016, norm of subgrad 37.670461 stepsize= 1.000000 +dualbound = 3313388.508624, lowerbound=1259432.508624, norm of subgrad 1122.797626 dualbound = 3313388.508624, lowerbound=1259432.508624, norm of subgrad 36.716707 stepsize= 1.000000 +dualbound = 3313468.073500, lowerbound=1252812.073500, norm of subgrad 1119.867882 dualbound = 3313468.073500, lowerbound=1252812.073500, norm of subgrad 37.034644 stepsize= 1.000000 +dualbound = 3313559.836099, lowerbound=1257344.836099, norm of subgrad 1121.874251 dualbound = 3313559.836099, lowerbound=1257344.836099, norm of subgrad 36.725503 stepsize= 1.000000 +dualbound = 3313666.110788, lowerbound=1255274.110788, norm of subgrad 1120.959014 dualbound = 3313666.110788, lowerbound=1255274.110788, norm of subgrad 37.165504 stepsize= 1.000000 +dualbound = 3313748.733643, lowerbound=1254939.733643, norm of subgrad 1120.808964 dualbound = 3313748.733643, lowerbound=1254939.733643, norm of subgrad 36.818784 stepsize= 1.000000 +dualbound = 3313854.715285, lowerbound=1256335.715285, norm of subgrad 1121.453394 dualbound = 3313854.715285, lowerbound=1256335.715285, norm of subgrad 37.788644 stepsize= 1.000000 +dualbound = 3313925.326176, lowerbound=1253051.326176, norm of subgrad 1119.967556 dualbound = 3313925.326176, lowerbound=1253051.326176, norm of subgrad 36.696197 stepsize= 1.000000 +dualbound = 3314024.690135, lowerbound=1262581.690135, norm of subgrad 1124.239605 dualbound = 3314024.690135, lowerbound=1262581.690135, norm of subgrad 37.846585 stepsize= 1.000000 +dualbound = 3314108.314525, lowerbound=1252421.314525, norm of subgrad 1119.667948 dualbound = 3314108.314525, lowerbound=1252421.314525, norm of subgrad 36.312868 stepsize= 1.000000 +dualbound = 3314235.399517, lowerbound=1259786.399517, norm of subgrad 1122.995280 dualbound = 3314235.399517, lowerbound=1259786.399517, norm of subgrad 38.197971 stepsize= 1.000000 +dualbound = 3314274.404487, lowerbound=1257456.404487, norm of subgrad 1121.936899 dualbound = 3314274.404487, lowerbound=1257456.404487, norm of subgrad 36.400618 stepsize= 1.000000 +dualbound = 3314420.742993, lowerbound=1257486.742993, norm of subgrad 1121.937495 dualbound = 3314420.742993, lowerbound=1257486.742993, norm of subgrad 37.461160 stepsize= 1.000000 +dualbound = 3314491.487290, lowerbound=1256758.487290, norm of subgrad 1121.601305 dualbound = 3314491.487290, lowerbound=1256758.487290, norm of subgrad 36.079694 stepsize= 1.000000 +dualbound = 3314608.947861, lowerbound=1255834.947861, norm of subgrad 1121.213605 dualbound = 3314608.947861, lowerbound=1255834.947861, norm of subgrad 37.449440 stepsize= 1.000000 +dualbound = 3314673.870146, lowerbound=1255183.870146, norm of subgrad 1120.913855 dualbound = 3314673.870146, lowerbound=1255183.870146, norm of subgrad 36.454386 stepsize= 1.000000 +dualbound = 3314785.689338, lowerbound=1259148.689338, norm of subgrad 1122.689489 dualbound = 3314785.689338, lowerbound=1259148.689338, norm of subgrad 37.347278 stepsize= 1.000000 +dualbound = 3314850.235493, lowerbound=1253594.235493, norm of subgrad 1120.207675 dualbound = 3314850.235493, lowerbound=1253594.235493, norm of subgrad 36.545125 stepsize= 1.000000 +dualbound = 3314946.741449, lowerbound=1259530.741449, norm of subgrad 1122.888125 dualbound = 3314946.741449, lowerbound=1259530.741449, norm of subgrad 37.993499 stepsize= 1.000000 +dualbound = 3315042.315019, lowerbound=1252215.315019, norm of subgrad 1119.585332 dualbound = 3315042.315019, lowerbound=1252215.315019, norm of subgrad 36.763753 stepsize= 1.000000 +dualbound = 3315181.200200, lowerbound=1255225.200200, norm of subgrad 1120.906865 dualbound = 3315181.200200, lowerbound=1255225.200200, norm of subgrad 36.686308 stepsize= 1.000000 +dualbound = 3315227.171283, lowerbound=1257776.171283, norm of subgrad 1122.096774 dualbound = 3315227.171283, lowerbound=1257776.171283, norm of subgrad 37.026627 stepsize= 1.000000 +dualbound = 3315320.140453, lowerbound=1256160.140453, norm of subgrad 1121.369315 dualbound = 3315320.140453, lowerbound=1256160.140453, norm of subgrad 37.442879 stepsize= 1.000000 +dualbound = 3315399.464916, lowerbound=1255704.464916, norm of subgrad 1121.144712 dualbound = 3315399.464916, lowerbound=1255704.464916, norm of subgrad 36.610442 stepsize= 1.000000 +dualbound = 3315544.253955, lowerbound=1256795.253955, norm of subgrad 1121.631069 dualbound = 3315544.253955, lowerbound=1256795.253955, norm of subgrad 37.493853 stepsize= 1.000000 +dualbound = 3315603.416820, lowerbound=1257845.416820, norm of subgrad 1122.120055 dualbound = 3315603.416820, lowerbound=1257845.416820, norm of subgrad 36.975166 stepsize= 1.000000 +dualbound = 3315701.649748, lowerbound=1259255.649748, norm of subgrad 1122.711294 dualbound = 3315701.649748, lowerbound=1259255.649748, norm of subgrad 36.376269 stepsize= 1.000000 +dualbound = 3315819.079598, lowerbound=1254167.079598, norm of subgrad 1120.455300 dualbound = 3315819.079598, lowerbound=1254167.079598, norm of subgrad 37.019317 stepsize= 1.000000 +dualbound = 3315887.911418, lowerbound=1255976.911418, norm of subgrad 1121.277357 dualbound = 3315887.911418, lowerbound=1255976.911418, norm of subgrad 36.808040 stepsize= 1.000000 +dualbound = 3315984.925274, lowerbound=1257028.925274, norm of subgrad 1121.713388 dualbound = 3315984.925274, lowerbound=1257028.925274, norm of subgrad 36.180297 stepsize= 1.000000 +dualbound = 3316096.401227, lowerbound=1259731.401227, norm of subgrad 1122.922705 dualbound = 3316096.401227, lowerbound=1259731.401227, norm of subgrad 36.544164 stepsize= 1.000000 +dualbound = 3316185.353257, lowerbound=1257234.353257, norm of subgrad 1121.832587 dualbound = 3316185.353257, lowerbound=1257234.353257, norm of subgrad 36.918180 stepsize= 1.000000 +dualbound = 3316222.119441, lowerbound=1259561.119441, norm of subgrad 1122.915010 dualbound = 3316222.119441, lowerbound=1259561.119441, norm of subgrad 37.600082 stepsize= 1.000000 +dualbound = 3316324.940172, lowerbound=1254715.940172, norm of subgrad 1120.712693 dualbound = 3316324.940172, lowerbound=1254715.940172, norm of subgrad 37.199741 stepsize= 1.000000 +dualbound = 3316440.172807, lowerbound=1254205.172807, norm of subgrad 1120.462482 dualbound = 3316440.172807, lowerbound=1254205.172807, norm of subgrad 36.691043 stepsize= 1.000000 +dualbound = 3316538.416812, lowerbound=1257228.416812, norm of subgrad 1121.824147 dualbound = 3316538.416812, lowerbound=1257228.416812, norm of subgrad 36.867927 stepsize= 1.000000 +dualbound = 3316618.498998, lowerbound=1256633.498998, norm of subgrad 1121.589720 dualbound = 3316618.498998, lowerbound=1256633.498998, norm of subgrad 37.551061 stepsize= 1.000000 +dualbound = 3316712.999227, lowerbound=1258172.999227, norm of subgrad 1122.269130 dualbound = 3316712.999227, lowerbound=1258172.999227, norm of subgrad 37.543311 stepsize= 1.000000 +dualbound = 3316819.427123, lowerbound=1255007.427123, norm of subgrad 1120.852099 dualbound = 3316819.427123, lowerbound=1255007.427123, norm of subgrad 37.529027 stepsize= 1.000000 +dualbound = 3316895.862232, lowerbound=1255874.862232, norm of subgrad 1121.225607 dualbound = 3316895.862232, lowerbound=1255874.862232, norm of subgrad 36.721044 stepsize= 1.000000 +dualbound = 3317015.304245, lowerbound=1253604.304245, norm of subgrad 1120.205028 dualbound = 3317015.304245, lowerbound=1253604.304245, norm of subgrad 37.073468 stepsize= 1.000000 +dualbound = 3317084.792268, lowerbound=1261813.792268, norm of subgrad 1123.876680 dualbound = 3317084.792268, lowerbound=1261813.792268, norm of subgrad 36.803370 stepsize= 1.000000 +dualbound = 3317169.429172, lowerbound=1257953.429172, norm of subgrad 1122.194916 dualbound = 3317169.429172, lowerbound=1257953.429172, norm of subgrad 38.113474 stepsize= 1.000000 +dualbound = 3317254.839738, lowerbound=1259468.839738, norm of subgrad 1122.831617 dualbound = 3317254.839738, lowerbound=1259468.839738, norm of subgrad 36.978515 stepsize= 1.000000 +dualbound = 3317385.350048, lowerbound=1253632.350048, norm of subgrad 1120.206387 dualbound = 3317385.350048, lowerbound=1253632.350048, norm of subgrad 36.885096 stepsize= 1.000000 +dualbound = 3317470.157697, lowerbound=1257183.157697, norm of subgrad 1121.816900 dualbound = 3317470.157697, lowerbound=1257183.157697, norm of subgrad 37.078399 stepsize= 1.000000 +dualbound = 3317527.469180, lowerbound=1254006.469180, norm of subgrad 1120.425129 dualbound = 3317527.469180, lowerbound=1254006.469180, norm of subgrad 37.460799 stepsize= 1.000000 +dualbound = 3317637.132507, lowerbound=1261750.132507, norm of subgrad 1123.889733 dualbound = 3317637.132507, lowerbound=1261750.132507, norm of subgrad 38.570239 stepsize= 1.000000 +dualbound = 3317739.806792, lowerbound=1253315.806792, norm of subgrad 1120.077590 dualbound = 3317739.806792, lowerbound=1253315.806792, norm of subgrad 36.887319 stepsize= 1.000000 +dualbound = 3317836.653426, lowerbound=1257212.653426, norm of subgrad 1121.814447 dualbound = 3317836.653426, lowerbound=1257212.653426, norm of subgrad 36.767467 stepsize= 1.000000 +dualbound = 3317943.222332, lowerbound=1256137.222332, norm of subgrad 1121.337247 dualbound = 3317943.222332, lowerbound=1256137.222332, norm of subgrad 36.967133 stepsize= 1.000000 +dualbound = 3318040.923460, lowerbound=1257824.923460, norm of subgrad 1122.108695 dualbound = 3318040.923460, lowerbound=1257824.923460, norm of subgrad 37.425942 stepsize= 1.000000 +dualbound = 3318112.441832, lowerbound=1252911.441832, norm of subgrad 1119.910015 dualbound = 3318112.441832, lowerbound=1252911.441832, norm of subgrad 36.858084 stepsize= 1.000000 +dualbound = 3318209.458282, lowerbound=1257989.458282, norm of subgrad 1122.179334 dualbound = 3318209.458282, lowerbound=1257989.458282, norm of subgrad 37.336530 stepsize= 1.000000 +dualbound = 3318289.369287, lowerbound=1257448.369287, norm of subgrad 1121.928415 dualbound = 3318289.369287, lowerbound=1257448.369287, norm of subgrad 36.809116 stepsize= 1.000000 +dualbound = 3318400.854225, lowerbound=1255712.854225, norm of subgrad 1121.188144 dualbound = 3318400.854225, lowerbound=1255712.854225, norm of subgrad 38.229373 stepsize= 1.000000 +dualbound = 3318480.993184, lowerbound=1260183.993184, norm of subgrad 1123.165613 dualbound = 3318480.993184, lowerbound=1260183.993184, norm of subgrad 37.378322 stepsize= 1.000000 +dualbound = 3318565.634489, lowerbound=1255014.634489, norm of subgrad 1120.849961 dualbound = 3318565.634489, lowerbound=1255014.634489, norm of subgrad 37.076155 stepsize= 1.000000 +dualbound = 3318685.408786, lowerbound=1255280.408786, norm of subgrad 1120.952902 dualbound = 3318685.408786, lowerbound=1255280.408786, norm of subgrad 37.077949 stepsize= 1.000000 +dualbound = 3318742.341898, lowerbound=1256482.341898, norm of subgrad 1121.493353 dualbound = 3318742.341898, lowerbound=1256482.341898, norm of subgrad 36.358398 stepsize= 1.000000 +dualbound = 3318860.889241, lowerbound=1257023.889242, norm of subgrad 1121.726299 dualbound = 3318860.889241, lowerbound=1257023.889242, norm of subgrad 36.939780 stepsize= 1.000000 +dualbound = 3318948.198940, lowerbound=1254365.198940, norm of subgrad 1120.569587 dualbound = 3318948.198940, lowerbound=1254365.198940, norm of subgrad 37.393979 stepsize= 1.000000 +dualbound = 3319031.894042, lowerbound=1257587.894042, norm of subgrad 1122.006192 dualbound = 3319031.894042, lowerbound=1257587.894042, norm of subgrad 37.332226 stepsize= 1.000000 +dualbound = 3319139.683578, lowerbound=1256562.683578, norm of subgrad 1121.533184 dualbound = 3319139.683578, lowerbound=1256562.683578, norm of subgrad 37.172430 stepsize= 1.000000 +dualbound = 3319220.702149, lowerbound=1256623.702149, norm of subgrad 1121.576436 dualbound = 3319220.702149, lowerbound=1256623.702149, norm of subgrad 37.296361 stepsize= 1.000000 +dualbound = 3319307.958254, lowerbound=1257797.958254, norm of subgrad 1122.107819 dualbound = 3319307.958254, lowerbound=1257797.958254, norm of subgrad 37.619890 stepsize= 1.000000 +dualbound = 3319401.643134, lowerbound=1256788.643134, norm of subgrad 1121.652193 dualbound = 3319401.643134, lowerbound=1256788.643134, norm of subgrad 37.532451 stepsize= 1.000000 +dualbound = 3319489.301537, lowerbound=1261065.301537, norm of subgrad 1123.535180 dualbound = 3319489.301537, lowerbound=1261065.301537, norm of subgrad 36.792097 stepsize= 1.000000 +dualbound = 3319604.519594, lowerbound=1254873.519594, norm of subgrad 1120.787455 dualbound = 3319604.519594, lowerbound=1254873.519594, norm of subgrad 37.499574 stepsize= 1.000000 +dualbound = 3319685.233791, lowerbound=1260854.233791, norm of subgrad 1123.425669 dualbound = 3319685.233791, lowerbound=1260854.233791, norm of subgrad 36.217595 stepsize= 1.000000 +dualbound = 3319810.974450, lowerbound=1254387.974450, norm of subgrad 1120.555654 dualbound = 3319810.974450, lowerbound=1254387.974450, norm of subgrad 37.185221 stepsize= 1.000000 +dualbound = 3319879.324206, lowerbound=1255107.324206, norm of subgrad 1120.901568 dualbound = 3319879.324206, lowerbound=1255107.324206, norm of subgrad 37.166514 stepsize= 1.000000 +dualbound = 3319971.709374, lowerbound=1257776.709374, norm of subgrad 1122.054682 dualbound = 3319971.709374, lowerbound=1257776.709374, norm of subgrad 36.364614 stepsize= 1.000000 +dualbound = 3320087.744041, lowerbound=1253779.744041, norm of subgrad 1120.291812 dualbound = 3320087.744041, lowerbound=1253779.744041, norm of subgrad 37.283169 stepsize= 1.000000 +dualbound = 3320144.111063, lowerbound=1258614.111063, norm of subgrad 1122.453167 dualbound = 3320144.111063, lowerbound=1258614.111063, norm of subgrad 36.651972 stepsize= 1.000000 +dualbound = 3320233.865864, lowerbound=1254856.865864, norm of subgrad 1120.772888 dualbound = 3320233.865864, lowerbound=1254856.865864, norm of subgrad 36.942588 stepsize= 1.000000 +dualbound = 3320337.029337, lowerbound=1263223.029337, norm of subgrad 1124.499457 dualbound = 3320337.029337, lowerbound=1263223.029337, norm of subgrad 37.137090 stepsize= 1.000000 +dualbound = 3320423.752268, lowerbound=1258331.752268, norm of subgrad 1122.312680 dualbound = 3320423.752268, lowerbound=1258331.752268, norm of subgrad 36.615884 stepsize= 1.000000 +dualbound = 3320521.659093, lowerbound=1258933.659093, norm of subgrad 1122.606636 dualbound = 3320521.659093, lowerbound=1258933.659093, norm of subgrad 37.548726 stepsize= 1.000000 +dualbound = 3320588.583849, lowerbound=1250450.583849, norm of subgrad 1118.786657 dualbound = 3320588.583849, lowerbound=1250450.583849, norm of subgrad 36.054469 stepsize= 1.000000 +dualbound = 3320718.969697, lowerbound=1253948.969697, norm of subgrad 1120.376709 dualbound = 3320718.969697, lowerbound=1253948.969697, norm of subgrad 37.754283 stepsize= 1.000000 +dualbound = 3320773.229102, lowerbound=1258803.229102, norm of subgrad 1122.534289 dualbound = 3320773.229102, lowerbound=1258803.229102, norm of subgrad 36.527516 stepsize= 1.000000 +dualbound = 3320907.756913, lowerbound=1256936.756913, norm of subgrad 1121.702615 dualbound = 3320907.756913, lowerbound=1256936.756913, norm of subgrad 37.610209 stepsize= 1.000000 +dualbound = 3320957.788888, lowerbound=1258342.788888, norm of subgrad 1122.347446 dualbound = 3320957.788888, lowerbound=1258342.788888, norm of subgrad 37.027449 stepsize= 1.000000 +dualbound = 3321084.055497, lowerbound=1256636.055497, norm of subgrad 1121.549845 dualbound = 3321084.055497, lowerbound=1256636.055497, norm of subgrad 36.935980 stepsize= 1.000000 +dualbound = 3321170.935538, lowerbound=1261913.935538, norm of subgrad 1123.904327 dualbound = 3321170.935538, lowerbound=1261913.935538, norm of subgrad 36.522323 stepsize= 1.000000 +dualbound = 3321264.764389, lowerbound=1255355.764389, norm of subgrad 1120.986960 dualbound = 3321264.764389, lowerbound=1255355.764389, norm of subgrad 36.740017 stepsize= 1.000000 +dualbound = 3321368.503855, lowerbound=1257887.503855, norm of subgrad 1122.093804 dualbound = 3321368.503855, lowerbound=1257887.503855, norm of subgrad 36.204136 stepsize= 1.000000 +dualbound = 3321474.748928, lowerbound=1251704.748928, norm of subgrad 1119.354613 dualbound = 3321474.748928, lowerbound=1251704.748928, norm of subgrad 36.827233 stepsize= 1.000000 +dualbound = 3321560.808724, lowerbound=1263850.808724, norm of subgrad 1124.765668 dualbound = 3321560.808724, lowerbound=1263850.808724, norm of subgrad 36.511091 stepsize= 1.000000 +dualbound = 3321649.981517, lowerbound=1253075.981517, norm of subgrad 1119.975438 dualbound = 3321649.981517, lowerbound=1253075.981517, norm of subgrad 36.853396 stepsize= 1.000000 +dualbound = 3321733.550011, lowerbound=1257463.550011, norm of subgrad 1121.954790 dualbound = 3321733.550011, lowerbound=1257463.550011, norm of subgrad 37.450881 stepsize= 1.000000 +dualbound = 3321812.831370, lowerbound=1253793.831370, norm of subgrad 1120.319076 dualbound = 3321812.831370, lowerbound=1253793.831370, norm of subgrad 37.420333 stepsize= 1.000000 +dualbound = 3321894.575143, lowerbound=1258364.575143, norm of subgrad 1122.353142 dualbound = 3321894.575143, lowerbound=1258364.575143, norm of subgrad 37.332878 stepsize= 1.000000 +dualbound = 3321998.823323, lowerbound=1256767.823323, norm of subgrad 1121.612154 dualbound = 3321998.823323, lowerbound=1256767.823323, norm of subgrad 36.745723 stepsize= 1.000000 +dualbound = 3322111.298854, lowerbound=1259427.298854, norm of subgrad 1122.808665 dualbound = 3322111.298854, lowerbound=1259427.298854, norm of subgrad 37.208541 stepsize= 1.000000 +dualbound = 3322177.614410, lowerbound=1255273.614410, norm of subgrad 1120.966375 dualbound = 3322177.614410, lowerbound=1255273.614410, norm of subgrad 36.855333 stepsize= 1.000000 +dualbound = 3322274.510917, lowerbound=1260015.510917, norm of subgrad 1123.085264 dualbound = 3322274.510917, lowerbound=1260015.510917, norm of subgrad 37.441908 stepsize= 1.000000 +dualbound = 3322374.553610, lowerbound=1252950.553610, norm of subgrad 1119.889527 dualbound = 3322374.553610, lowerbound=1252950.553610, norm of subgrad 36.083829 stepsize= 1.000000 +dualbound = 3322484.682528, lowerbound=1258711.682528, norm of subgrad 1122.482375 dualbound = 3322484.682528, lowerbound=1258711.682528, norm of subgrad 36.947651 stepsize= 1.000000 +dualbound = 3322552.866331, lowerbound=1258160.866331, norm of subgrad 1122.243675 dualbound = 3322552.866331, lowerbound=1258160.866331, norm of subgrad 36.581195 stepsize= 1.000000 +dualbound = 3322651.062521, lowerbound=1256643.062521, norm of subgrad 1121.586404 dualbound = 3322651.062521, lowerbound=1256643.062521, norm of subgrad 37.565891 stepsize= 1.000000 +dualbound = 3322726.445285, lowerbound=1261198.445285, norm of subgrad 1123.602886 dualbound = 3322726.445285, lowerbound=1261198.445285, norm of subgrad 36.883367 stepsize= 1.000000 +dualbound = 3322851.904337, lowerbound=1258673.904337, norm of subgrad 1122.442384 dualbound = 3322851.904337, lowerbound=1258673.904337, norm of subgrad 36.448032 stepsize= 1.000000 +dualbound = 3322946.456528, lowerbound=1255641.456528, norm of subgrad 1121.117057 dualbound = 3322946.456528, lowerbound=1255641.456528, norm of subgrad 36.831402 stepsize= 1.000000 +dualbound = 3323024.708705, lowerbound=1254862.708705, norm of subgrad 1120.767018 dualbound = 3323024.708705, lowerbound=1254862.708705, norm of subgrad 36.527417 stepsize= 1.000000 +dualbound = 3323097.107490, lowerbound=1260860.107490, norm of subgrad 1123.459882 dualbound = 3323097.107490, lowerbound=1260860.107490, norm of subgrad 37.072885 stepsize= 1.000000 +dualbound = 3323189.928267, lowerbound=1260371.928267, norm of subgrad 1123.233247 dualbound = 3323189.928267, lowerbound=1260371.928267, norm of subgrad 37.065088 stepsize= 1.000000 +dualbound = 3323278.471610, lowerbound=1258010.471610, norm of subgrad 1122.203400 dualbound = 3323278.471610, lowerbound=1258010.471610, norm of subgrad 37.663555 stepsize= 1.000000 +dualbound = 3323368.468775, lowerbound=1257126.468775, norm of subgrad 1121.792971 dualbound = 3323368.468775, lowerbound=1257126.468775, norm of subgrad 37.188670 stepsize= 1.000000 +dualbound = 3323459.221822, lowerbound=1254826.221822, norm of subgrad 1120.766355 dualbound = 3323459.221822, lowerbound=1254826.221822, norm of subgrad 37.171939 stepsize= 1.000000 +dualbound = 3323546.671804, lowerbound=1260315.671804, norm of subgrad 1123.230462 dualbound = 3323546.671804, lowerbound=1260315.671804, norm of subgrad 37.662315 stepsize= 1.000000 +dualbound = 3323658.506972, lowerbound=1254722.506972, norm of subgrad 1120.693315 dualbound = 3323658.506972, lowerbound=1254722.506972, norm of subgrad 36.644715 stepsize= 1.000000 +dualbound = 3323770.712175, lowerbound=1253965.712175, norm of subgrad 1120.315006 dualbound = 3323770.712175, lowerbound=1253965.712175, norm of subgrad 35.386512 stepsize= 1.000000 +dualbound = 3323867.442659, lowerbound=1257307.442659, norm of subgrad 1121.838867 dualbound = 3323867.442659, lowerbound=1257307.442659, norm of subgrad 36.217820 stepsize= 1.000000 +dualbound = 3323947.443068, lowerbound=1256221.443068, norm of subgrad 1121.372571 dualbound = 3323947.443068, lowerbound=1256221.443068, norm of subgrad 36.537657 stepsize= 1.000000 +dualbound = 3324041.810461, lowerbound=1256427.810461, norm of subgrad 1121.491779 dualbound = 3324041.810461, lowerbound=1256427.810461, norm of subgrad 37.554858 stepsize= 1.000000 +dualbound = 3324110.590898, lowerbound=1262036.590898, norm of subgrad 1123.986028 dualbound = 3324110.590898, lowerbound=1262036.590898, norm of subgrad 37.104992 stepsize= 1.000000 +dualbound = 3324221.503539, lowerbound=1255236.503539, norm of subgrad 1120.953390 dualbound = 3324221.503539, lowerbound=1255236.503539, norm of subgrad 37.562117 stepsize= 1.000000 +dualbound = 3324304.318266, lowerbound=1260986.318266, norm of subgrad 1123.496915 dualbound = 3324304.318266, lowerbound=1260986.318266, norm of subgrad 36.630789 stepsize= 1.000000 +dualbound = 3324384.344555, lowerbound=1254867.344555, norm of subgrad 1120.804775 dualbound = 3324384.344555, lowerbound=1254867.344555, norm of subgrad 37.630125 stepsize= 1.000000 +dualbound = 3324478.018721, lowerbound=1258362.018721, norm of subgrad 1122.333292 dualbound = 3324478.018721, lowerbound=1258362.018721, norm of subgrad 36.927959 stepsize= 1.000000 +dualbound = 3324591.882457, lowerbound=1258098.882457, norm of subgrad 1122.216059 dualbound = 3324591.882457, lowerbound=1258098.882457, norm of subgrad 37.200319 stepsize= 1.000000 +dualbound = 3324650.294205, lowerbound=1256150.294205, norm of subgrad 1121.371167 dualbound = 3324650.294205, lowerbound=1256150.294205, norm of subgrad 37.167348 stepsize= 1.000000 +dualbound = 3324735.837543, lowerbound=1256932.837543, norm of subgrad 1121.747225 dualbound = 3324735.837543, lowerbound=1256932.837543, norm of subgrad 38.334623 stepsize= 1.000000 +dualbound = 3324839.290891, lowerbound=1256059.290891, norm of subgrad 1121.314983 dualbound = 3324839.290891, lowerbound=1256059.290891, norm of subgrad 37.302190 stepsize= 1.000000 +dualbound = 3324923.827983, lowerbound=1262758.827983, norm of subgrad 1124.317494 dualbound = 3324923.827983, lowerbound=1262758.827983, norm of subgrad 37.623624 stepsize= 1.000000 +dualbound = 3325054.482387, lowerbound=1257543.482387, norm of subgrad 1121.981053 dualbound = 3325054.482387, lowerbound=1257543.482387, norm of subgrad 37.797545 stepsize= 1.000000 +dualbound = 3325128.016452, lowerbound=1260943.016452, norm of subgrad 1123.503456 dualbound = 3325128.016452, lowerbound=1260943.016452, norm of subgrad 37.289865 stepsize= 1.000000 +dualbound = 3325221.930684, lowerbound=1259294.930684, norm of subgrad 1122.764415 dualbound = 3325221.930684, lowerbound=1259294.930684, norm of subgrad 37.402062 stepsize= 1.000000 +dualbound = 3325329.246041, lowerbound=1255678.246041, norm of subgrad 1121.117410 dualbound = 3325329.246041, lowerbound=1255678.246041, norm of subgrad 36.514591 stepsize= 1.000000 +dualbound = 3325440.751216, lowerbound=1256382.751216, norm of subgrad 1121.438697 dualbound = 3325440.751216, lowerbound=1256382.751216, norm of subgrad 36.790015 stepsize= 1.000000 +dualbound = 3325499.903752, lowerbound=1260014.903752, norm of subgrad 1123.064515 dualbound = 3325499.903752, lowerbound=1260014.903752, norm of subgrad 36.306370 stepsize= 1.000000 +dualbound = 3325598.643863, lowerbound=1254566.643863, norm of subgrad 1120.631359 dualbound = 3325598.643863, lowerbound=1254566.643863, norm of subgrad 36.697958 stepsize= 1.000000 +dualbound = 3325687.648314, lowerbound=1256479.648314, norm of subgrad 1121.501515 dualbound = 3325687.648314, lowerbound=1256479.648314, norm of subgrad 37.081052 stepsize= 1.000000 +dualbound = 3325794.808501, lowerbound=1254816.808501, norm of subgrad 1120.736280 dualbound = 3325794.808501, lowerbound=1254816.808501, norm of subgrad 36.608198 stepsize= 1.000000 +dualbound = 3325877.999272, lowerbound=1259822.999273, norm of subgrad 1122.964380 dualbound = 3325877.999272, lowerbound=1259822.999273, norm of subgrad 36.182741 stepsize= 1.000000 +dualbound = 3325977.361023, lowerbound=1254918.361023, norm of subgrad 1120.797645 dualbound = 3325977.361023, lowerbound=1254918.361023, norm of subgrad 36.991374 stepsize= 1.000000 +dualbound = 3326048.501307, lowerbound=1257629.501307, norm of subgrad 1121.995321 dualbound = 3326048.501307, lowerbound=1257629.501307, norm of subgrad 36.264863 stepsize= 1.000000 +dualbound = 3326156.890740, lowerbound=1258261.890740, norm of subgrad 1122.281556 dualbound = 3326156.890740, lowerbound=1258261.890740, norm of subgrad 36.910560 stepsize= 1.000000 +dualbound = 3326237.550958, lowerbound=1255282.550958, norm of subgrad 1120.948059 dualbound = 3326237.550958, lowerbound=1255282.550958, norm of subgrad 36.368396 stepsize= 1.000000 +dualbound = 3326329.554350, lowerbound=1259739.554350, norm of subgrad 1122.943700 dualbound = 3326329.554350, lowerbound=1259739.554350, norm of subgrad 36.810371 stepsize= 1.000000 +dualbound = 3326444.459563, lowerbound=1257976.459563, norm of subgrad 1122.134778 dualbound = 3326444.459563, lowerbound=1257976.459563, norm of subgrad 36.399247 stepsize= 1.000000 +dualbound = 3326512.690627, lowerbound=1259820.690627, norm of subgrad 1122.999862 dualbound = 3326512.690627, lowerbound=1259820.690627, norm of subgrad 37.097588 stepsize= 1.000000 +dualbound = 3326590.186562, lowerbound=1256691.186562, norm of subgrad 1121.593592 dualbound = 3326590.186562, lowerbound=1256691.186562, norm of subgrad 36.857780 stepsize= 1.000000 +dualbound = 3326714.439883, lowerbound=1260399.439883, norm of subgrad 1123.222347 dualbound = 3326714.439883, lowerbound=1260399.439883, norm of subgrad 36.786592 stepsize= 1.000000 +dualbound = 3326779.490988, lowerbound=1252541.490988, norm of subgrad 1119.728758 dualbound = 3326779.490988, lowerbound=1252541.490988, norm of subgrad 36.277419 stepsize= 1.000000 +dualbound = 3326911.926789, lowerbound=1260102.926789, norm of subgrad 1123.090347 dualbound = 3326911.926789, lowerbound=1260102.926789, norm of subgrad 36.897640 stepsize= 1.000000 +dualbound = 3326970.439931, lowerbound=1258003.439931, norm of subgrad 1122.190911 dualbound = 3326970.439931, lowerbound=1258003.439931, norm of subgrad 36.979902 stepsize= 1.000000 +dualbound = 3327068.840587, lowerbound=1259339.840587, norm of subgrad 1122.783969 dualbound = 3327068.840587, lowerbound=1259339.840587, norm of subgrad 37.448640 stepsize= 1.000000 +dualbound = 3327146.325721, lowerbound=1256429.325721, norm of subgrad 1121.505384 dualbound = 3327146.325721, lowerbound=1256429.325721, norm of subgrad 37.715847 stepsize= 1.000000 +dualbound = 3327240.914578, lowerbound=1256303.914578, norm of subgrad 1121.428515 dualbound = 3327240.914578, lowerbound=1256303.914578, norm of subgrad 37.317407 stepsize= 1.000000 +dualbound = 3327350.441240, lowerbound=1260196.441240, norm of subgrad 1123.168928 dualbound = 3327350.441240, lowerbound=1260196.441240, norm of subgrad 37.703139 stepsize= 1.000000 +dualbound = 3327444.542520, lowerbound=1252609.542520, norm of subgrad 1119.766736 dualbound = 3327444.542520, lowerbound=1252609.542520, norm of subgrad 36.906656 stepsize= 1.000000 +dualbound = 3327543.902694, lowerbound=1260111.902694, norm of subgrad 1123.113486 dualbound = 3327543.902694, lowerbound=1260111.902694, norm of subgrad 37.031881 stepsize= 1.000000 +dualbound = 3327630.672129, lowerbound=1250580.672129, norm of subgrad 1118.855072 dualbound = 3327630.672129, lowerbound=1250580.672129, norm of subgrad 36.643819 stepsize= 1.000000 +dualbound = 3327722.309914, lowerbound=1261234.309914, norm of subgrad 1123.604606 dualbound = 3327722.309914, lowerbound=1261234.309914, norm of subgrad 36.669303 stepsize= 1.000000 +dualbound = 3327823.272611, lowerbound=1258393.272611, norm of subgrad 1122.323159 dualbound = 3327823.272611, lowerbound=1258393.272611, norm of subgrad 36.289981 stepsize= 1.000000 +dualbound = 3327919.753122, lowerbound=1256457.753122, norm of subgrad 1121.468570 dualbound = 3327919.753122, lowerbound=1256457.753122, norm of subgrad 36.475752 stepsize= 1.000000 +dualbound = 3328018.688691, lowerbound=1258200.688691, norm of subgrad 1122.241814 dualbound = 3328018.688691, lowerbound=1258200.688691, norm of subgrad 36.399664 stepsize= 1.000000 +dualbound = 3328091.125229, lowerbound=1261171.125229, norm of subgrad 1123.587614 dualbound = 3328091.125229, lowerbound=1261171.125229, norm of subgrad 36.748286 stepsize= 1.000000 +dualbound = 3328173.046005, lowerbound=1264058.046005, norm of subgrad 1124.869791 dualbound = 3328173.046005, lowerbound=1264058.046005, norm of subgrad 36.822830 stepsize= 1.000000 +dualbound = 3328283.094485, lowerbound=1258345.094485, norm of subgrad 1122.319070 dualbound = 3328283.094485, lowerbound=1258345.094485, norm of subgrad 36.946562 stepsize= 1.000000 +dualbound = 3328346.288010, lowerbound=1255995.288010, norm of subgrad 1121.283768 dualbound = 3328346.288010, lowerbound=1255995.288010, norm of subgrad 36.676880 stepsize= 1.000000 +dualbound = 3328437.325119, lowerbound=1258175.325119, norm of subgrad 1122.262592 dualbound = 3328437.325119, lowerbound=1258175.325119, norm of subgrad 37.269788 stepsize= 1.000000 +dualbound = 3328526.773224, lowerbound=1257260.773224, norm of subgrad 1121.834111 dualbound = 3328526.773224, lowerbound=1257260.773224, norm of subgrad 36.612131 stepsize= 1.000000 +dualbound = 3328638.628645, lowerbound=1255738.628645, norm of subgrad 1121.152366 dualbound = 3328638.628645, lowerbound=1255738.628645, norm of subgrad 36.821942 stepsize= 1.000000 +dualbound = 3328721.061964, lowerbound=1257447.061964, norm of subgrad 1121.936300 dualbound = 3328721.061964, lowerbound=1257447.061964, norm of subgrad 37.100314 stepsize= 1.000000 +dualbound = 3328823.780220, lowerbound=1261298.780220, norm of subgrad 1123.649314 dualbound = 3328823.780220, lowerbound=1261298.780220, norm of subgrad 37.305740 stepsize= 1.000000 +dualbound = 3328875.907913, lowerbound=1257956.907913, norm of subgrad 1122.168841 dualbound = 3328875.907913, lowerbound=1257956.907913, norm of subgrad 36.852784 stepsize= 1.000000 +dualbound = 3328995.120987, lowerbound=1259742.120987, norm of subgrad 1122.937274 dualbound = 3328995.120987, lowerbound=1259742.120987, norm of subgrad 36.948790 stepsize= 1.000000 +dualbound = 3329078.470033, lowerbound=1253887.470033, norm of subgrad 1120.344353 dualbound = 3329078.470033, lowerbound=1253887.470033, norm of subgrad 36.977683 stepsize= 1.000000 +dualbound = 3329184.277244, lowerbound=1259995.277244, norm of subgrad 1123.060229 dualbound = 3329184.277244, lowerbound=1259995.277244, norm of subgrad 37.078393 stepsize= 1.000000 +dualbound = 3329260.144366, lowerbound=1255093.144366, norm of subgrad 1120.880522 dualbound = 3329260.144366, lowerbound=1255093.144366, norm of subgrad 36.822101 stepsize= 1.000000 +dualbound = 3329370.856352, lowerbound=1258594.856352, norm of subgrad 1122.428107 dualbound = 3329370.856352, lowerbound=1258594.856352, norm of subgrad 36.887830 stepsize= 1.000000 +dualbound = 3329443.863577, lowerbound=1251793.863577, norm of subgrad 1119.391292 dualbound = 3329443.863577, lowerbound=1251793.863577, norm of subgrad 36.276814 stepsize= 1.000000 +dualbound = 3329567.631134, lowerbound=1256475.631134, norm of subgrad 1121.476095 dualbound = 3329567.631134, lowerbound=1256475.631134, norm of subgrad 36.834326 stepsize= 1.000000 +dualbound = 3329644.440408, lowerbound=1258137.440408, norm of subgrad 1122.239921 dualbound = 3329644.440408, lowerbound=1258137.440408, norm of subgrad 36.902700 stepsize= 1.000000 +dualbound = 3329736.845145, lowerbound=1259130.845145, norm of subgrad 1122.674416 dualbound = 3329736.845145, lowerbound=1259130.845145, norm of subgrad 36.870106 stepsize= 1.000000 +dualbound = 3329814.129014, lowerbound=1255366.129014, norm of subgrad 1121.007194 dualbound = 3329814.129014, lowerbound=1255366.129014, norm of subgrad 36.990321 stepsize= 1.000000 +dualbound = 3329910.320109, lowerbound=1260121.320109, norm of subgrad 1123.128808 dualbound = 3329910.320109, lowerbound=1260121.320109, norm of subgrad 37.325475 stepsize= 1.000000 +dualbound = 3330018.493068, lowerbound=1259913.493068, norm of subgrad 1123.017584 dualbound = 3330018.493068, lowerbound=1259913.493068, norm of subgrad 36.921172 stepsize= 1.000000 +dualbound = 3330105.175909, lowerbound=1257804.175909, norm of subgrad 1122.100787 dualbound = 3330105.175909, lowerbound=1257804.175909, norm of subgrad 37.318666 stepsize= 1.000000 +dualbound = 3330187.138825, lowerbound=1254622.138825, norm of subgrad 1120.675751 dualbound = 3330187.138825, lowerbound=1254622.138825, norm of subgrad 37.067006 stepsize= 1.000000 +dualbound = 3330284.383774, lowerbound=1255003.383774, norm of subgrad 1120.832005 dualbound = 3330284.383774, lowerbound=1255003.383774, norm of subgrad 36.854375 stepsize= 1.000000 +dualbound = 3330371.560158, lowerbound=1259971.560158, norm of subgrad 1123.061690 dualbound = 3330371.560158, lowerbound=1259971.560158, norm of subgrad 37.191079 stepsize= 1.000000 +dualbound = 3330446.100810, lowerbound=1257549.100810, norm of subgrad 1121.976872 dualbound = 3330446.100810, lowerbound=1257549.100810, norm of subgrad 36.844819 stepsize= 1.000000 +dualbound = 3330562.796510, lowerbound=1262448.796510, norm of subgrad 1124.174273 dualbound = 3330562.796510, lowerbound=1262448.796510, norm of subgrad 37.890575 stepsize= 1.000000 +dualbound = 3330643.091165, lowerbound=1259609.091165, norm of subgrad 1122.924793 dualbound = 3330643.091165, lowerbound=1259609.091165, norm of subgrad 37.832455 stepsize= 1.000000 +dualbound = 3330728.284917, lowerbound=1255742.284917, norm of subgrad 1121.162916 dualbound = 3330728.284917, lowerbound=1255742.284917, norm of subgrad 36.731373 stepsize= 1.000000 +dualbound = 3330843.507190, lowerbound=1258831.507190, norm of subgrad 1122.534412 dualbound = 3330843.507190, lowerbound=1258831.507190, norm of subgrad 36.975969 stepsize= 1.000000 +dualbound = 3330940.780194, lowerbound=1255847.780194, norm of subgrad 1121.193016 dualbound = 3330940.780194, lowerbound=1255847.780194, norm of subgrad 36.376820 stepsize= 1.000000 +dualbound = 3331023.817332, lowerbound=1260483.817332, norm of subgrad 1123.276376 dualbound = 3331023.817332, lowerbound=1260483.817332, norm of subgrad 36.729241 stepsize= 1.000000 +dualbound = 3331110.377818, lowerbound=1257781.377818, norm of subgrad 1122.068794 dualbound = 3331110.377818, lowerbound=1257781.377818, norm of subgrad 36.654611 stepsize= 1.000000 +dualbound = 3331217.571533, lowerbound=1255636.571533, norm of subgrad 1121.112649 dualbound = 3331217.571533, lowerbound=1255636.571533, norm of subgrad 36.934993 stepsize= 1.000000 +dualbound = 3331286.986097, lowerbound=1263355.986097, norm of subgrad 1124.567022 dualbound = 3331286.986097, lowerbound=1263355.986097, norm of subgrad 36.937983 stepsize= 1.000000 +dualbound = 3331394.271482, lowerbound=1255028.271482, norm of subgrad 1120.850691 dualbound = 3331394.271482, lowerbound=1255028.271482, norm of subgrad 37.219422 stepsize= 1.000000 +dualbound = 3331464.299088, lowerbound=1259259.299088, norm of subgrad 1122.749437 dualbound = 3331464.299088, lowerbound=1259259.299088, norm of subgrad 37.108323 stepsize= 1.000000 +dualbound = 3331564.356465, lowerbound=1254730.356465, norm of subgrad 1120.731617 dualbound = 3331564.356465, lowerbound=1254730.356465, norm of subgrad 37.537413 stepsize= 1.000000 +dualbound = 3331643.831469, lowerbound=1261909.831469, norm of subgrad 1123.878477 dualbound = 3331643.831469, lowerbound=1261909.831469, norm of subgrad 35.671768 stepsize= 1.000000 +dualbound = 3331791.970757, lowerbound=1258853.970757, norm of subgrad 1122.519920 dualbound = 3331791.970757, lowerbound=1258853.970757, norm of subgrad 36.676141 stepsize= 1.000000 +dualbound = 3331841.338832, lowerbound=1257110.338832, norm of subgrad 1121.800490 dualbound = 3331841.338832, lowerbound=1257110.338832, norm of subgrad 37.085955 stepsize= 1.000000 +dualbound = 3331917.875948, lowerbound=1254292.875948, norm of subgrad 1120.540885 dualbound = 3331917.875948, lowerbound=1254292.875948, norm of subgrad 37.356888 stepsize= 1.000000 +dualbound = 3332049.280087, lowerbound=1254835.280087, norm of subgrad 1120.743628 dualbound = 3332049.280087, lowerbound=1254835.280087, norm of subgrad 36.910759 stepsize= 1.000000 +dualbound = 3332123.789139, lowerbound=1253951.789139, norm of subgrad 1120.356546 dualbound = 3332123.789139, lowerbound=1253951.789139, norm of subgrad 36.352566 stepsize= 1.000000 +dualbound = 3332227.900966, lowerbound=1260818.900966, norm of subgrad 1123.432642 dualbound = 3332227.900966, lowerbound=1260818.900966, norm of subgrad 37.230523 stepsize= 1.000000 +dualbound = 3332298.273024, lowerbound=1256352.273024, norm of subgrad 1121.427337 dualbound = 3332298.273024, lowerbound=1256352.273024, norm of subgrad 36.295620 stepsize= 1.000000 +dualbound = 3332398.199282, lowerbound=1259360.199282, norm of subgrad 1122.779675 dualbound = 3332398.199282, lowerbound=1259360.199282, norm of subgrad 37.066511 stepsize= 1.000000 +dualbound = 3332481.019886, lowerbound=1256266.019886, norm of subgrad 1121.394230 dualbound = 3332481.019886, lowerbound=1256266.019886, norm of subgrad 36.630870 stepsize= 1.000000 +dualbound = 3332553.762211, lowerbound=1259319.762211, norm of subgrad 1122.786606 dualbound = 3332553.762211, lowerbound=1259319.762211, norm of subgrad 37.453202 stepsize= 1.000000 +dualbound = 3332661.239591, lowerbound=1259354.239591, norm of subgrad 1122.764552 dualbound = 3332661.239591, lowerbound=1259354.239591, norm of subgrad 36.789637 stepsize= 1.000000 +dualbound = 3332764.712330, lowerbound=1258916.712330, norm of subgrad 1122.578600 dualbound = 3332764.712330, lowerbound=1258916.712330, norm of subgrad 37.006388 stepsize= 1.000000 +dualbound = 3332844.525860, lowerbound=1258862.525860, norm of subgrad 1122.554019 dualbound = 3332844.525860, lowerbound=1258862.525860, norm of subgrad 36.671699 stepsize= 1.000000 +dualbound = 3332938.409001, lowerbound=1253411.409001, norm of subgrad 1120.135889 dualbound = 3332938.409001, lowerbound=1253411.409001, norm of subgrad 37.240880 stepsize= 1.000000 +dualbound = 3333053.125149, lowerbound=1260572.125149, norm of subgrad 1123.318354 dualbound = 3333053.125149, lowerbound=1260572.125149, norm of subgrad 37.238638 stepsize= 1.000000 +dualbound = 3333098.114617, lowerbound=1256548.114617, norm of subgrad 1121.534714 dualbound = 3333098.114617, lowerbound=1256548.114617, norm of subgrad 36.564867 stepsize= 1.000000 +dualbound = 3333212.002721, lowerbound=1261354.002721, norm of subgrad 1123.685900 dualbound = 3333212.002721, lowerbound=1261354.002721, norm of subgrad 37.813861 stepsize= 1.000000 +dualbound = 3333321.510798, lowerbound=1257040.510798, norm of subgrad 1121.731925 dualbound = 3333321.510798, lowerbound=1257040.510798, norm of subgrad 36.762863 stepsize= 1.000000 +dualbound = 3333405.513793, lowerbound=1256749.513793, norm of subgrad 1121.635196 dualbound = 3333405.513793, lowerbound=1256749.513793, norm of subgrad 37.416614 stepsize= 1.000000 +dualbound = 3333481.728742, lowerbound=1255958.728742, norm of subgrad 1121.282627 dualbound = 3333481.728742, lowerbound=1255958.728742, norm of subgrad 37.312397 stepsize= 1.000000 +dualbound = 3333556.175670, lowerbound=1260404.175670, norm of subgrad 1123.276981 dualbound = 3333556.175670, lowerbound=1260404.175670, norm of subgrad 37.702081 stepsize= 1.000000 +dualbound = 3333651.981581, lowerbound=1254608.981581, norm of subgrad 1120.682373 dualbound = 3333651.981581, lowerbound=1254608.981581, norm of subgrad 37.627196 stepsize= 1.000000 +dualbound = 3333766.883827, lowerbound=1258368.883827, norm of subgrad 1122.331450 dualbound = 3333766.883827, lowerbound=1258368.883827, norm of subgrad 37.066187 stepsize= 1.000000 +dualbound = 3333882.529318, lowerbound=1257241.529318, norm of subgrad 1121.848711 dualbound = 3333882.529318, lowerbound=1257241.529318, norm of subgrad 37.664911 stepsize= 1.000000 +dualbound = 3333916.096523, lowerbound=1259059.096523, norm of subgrad 1122.651369 dualbound = 3333916.096523, lowerbound=1259059.096523, norm of subgrad 36.339609 stepsize= 1.000000 +dualbound = 3334028.831681, lowerbound=1259198.831681, norm of subgrad 1122.718055 dualbound = 3334028.831681, lowerbound=1259198.831681, norm of subgrad 37.546440 stepsize= 1.000000 +dualbound = 3334109.519667, lowerbound=1255957.519667, norm of subgrad 1121.253994 dualbound = 3334109.519667, lowerbound=1255957.519667, norm of subgrad 36.519693 stepsize= 1.000000 +dualbound = 3334219.570970, lowerbound=1261095.570970, norm of subgrad 1123.544646 dualbound = 3334219.570970, lowerbound=1261095.570970, norm of subgrad 36.973657 stepsize= 1.000000 +dualbound = 3334294.416663, lowerbound=1252168.416663, norm of subgrad 1119.599668 dualbound = 3334294.416663, lowerbound=1252168.416663, norm of subgrad 37.547912 stepsize= 1.000000 +dualbound = 3334380.957778, lowerbound=1265361.957778, norm of subgrad 1125.463441 dualbound = 3334380.957778, lowerbound=1265361.957778, norm of subgrad 37.316767 stepsize= 1.000000 +dualbound = 3334486.251584, lowerbound=1256734.251584, norm of subgrad 1121.611007 dualbound = 3334486.251584, lowerbound=1256734.251584, norm of subgrad 37.179212 stepsize= 1.000000 +dualbound = 3334589.443502, lowerbound=1261191.443502, norm of subgrad 1123.558385 dualbound = 3334589.443502, lowerbound=1261191.443502, norm of subgrad 35.988775 stepsize= 1.000000 +dualbound = 3334714.907985, lowerbound=1255203.907985, norm of subgrad 1120.894245 dualbound = 3334714.907985, lowerbound=1255203.907985, norm of subgrad 36.406929 stepsize= 1.000000 +dualbound = 3334768.973388, lowerbound=1260664.973388, norm of subgrad 1123.366358 dualbound = 3334768.973388, lowerbound=1260664.973388, norm of subgrad 36.620560 stepsize= 1.000000 +dualbound = 3334839.008820, lowerbound=1258524.008820, norm of subgrad 1122.413475 dualbound = 3334839.008820, lowerbound=1258524.008820, norm of subgrad 36.851532 stepsize= 1.000000 +dualbound = 3334926.858366, lowerbound=1253543.858366, norm of subgrad 1120.196794 dualbound = 3334926.858366, lowerbound=1253543.858366, norm of subgrad 37.213567 stepsize= 1.000000 +dualbound = 3335026.396052, lowerbound=1259306.396052, norm of subgrad 1122.739683 dualbound = 3335026.396052, lowerbound=1259306.396052, norm of subgrad 36.572362 stepsize= 1.000000 +dualbound = 3335147.818161, lowerbound=1255748.818161, norm of subgrad 1121.140410 dualbound = 3335147.818161, lowerbound=1255748.818161, norm of subgrad 36.447525 stepsize= 1.000000 +dualbound = 3335237.110351, lowerbound=1263479.110351, norm of subgrad 1124.602201 dualbound = 3335237.110351, lowerbound=1263479.110351, norm of subgrad 36.610001 stepsize= 1.000000 +dualbound = 3335314.388499, lowerbound=1254836.388499, norm of subgrad 1120.767767 dualbound = 3335314.388499, lowerbound=1254836.388499, norm of subgrad 36.895503 stepsize= 1.000000 +dualbound = 3335403.459416, lowerbound=1258830.459416, norm of subgrad 1122.556662 dualbound = 3335403.459416, lowerbound=1258830.459416, norm of subgrad 37.310467 stepsize= 1.000000 +dualbound = 3335494.793698, lowerbound=1253823.793698, norm of subgrad 1120.297636 dualbound = 3335494.793698, lowerbound=1253823.793698, norm of subgrad 36.528541 stepsize= 1.000000 +dualbound = 3335589.177352, lowerbound=1260035.177352, norm of subgrad 1123.069088 dualbound = 3335589.177352, lowerbound=1260035.177352, norm of subgrad 36.652198 stepsize= 1.000000 +dualbound = 3335676.842338, lowerbound=1257434.842338, norm of subgrad 1121.968735 dualbound = 3335676.842338, lowerbound=1257434.842338, norm of subgrad 38.297062 stepsize= 1.000000 +dualbound = 3335736.645222, lowerbound=1261155.645222, norm of subgrad 1123.601640 dualbound = 3335736.645222, lowerbound=1261155.645222, norm of subgrad 37.212940 stepsize= 1.000000 +dualbound = 3335850.220988, lowerbound=1258006.220988, norm of subgrad 1122.190813 dualbound = 3335850.220988, lowerbound=1258006.220988, norm of subgrad 37.677258 stepsize= 1.000000 +dualbound = 3335947.392881, lowerbound=1257683.392881, norm of subgrad 1122.036271 dualbound = 3335947.392881, lowerbound=1257683.392881, norm of subgrad 37.137204 stepsize= 1.000000 +dualbound = 3336051.379337, lowerbound=1256120.379337, norm of subgrad 1121.375218 dualbound = 3336051.379337, lowerbound=1256120.379337, norm of subgrad 38.288203 stepsize= 1.000000 +dualbound = 3336129.029079, lowerbound=1258949.029079, norm of subgrad 1122.592548 dualbound = 3336129.029079, lowerbound=1258949.029079, norm of subgrad 36.642185 stepsize= 1.000000 +dualbound = 3336238.207921, lowerbound=1260721.207921, norm of subgrad 1123.386491 dualbound = 3336238.207921, lowerbound=1260721.207921, norm of subgrad 37.217991 stepsize= 1.000000 +dualbound = 3336337.813328, lowerbound=1262565.813328, norm of subgrad 1124.192961 dualbound = 3336337.813328, lowerbound=1262565.813328, norm of subgrad 36.655223 stepsize= 1.000000 +dualbound = 3336415.035078, lowerbound=1258704.035078, norm of subgrad 1122.487877 dualbound = 3336415.035078, lowerbound=1258704.035078, norm of subgrad 36.772568 stepsize= 1.000000 +dualbound = 3336490.305998, lowerbound=1258462.305998, norm of subgrad 1122.400689 dualbound = 3336490.305998, lowerbound=1258462.305998, norm of subgrad 37.366709 stepsize= 1.000000 +dualbound = 3336581.881126, lowerbound=1254006.881126, norm of subgrad 1120.394520 dualbound = 3336581.881126, lowerbound=1254006.881126, norm of subgrad 36.994258 stepsize= 1.000000 +dualbound = 3336702.678083, lowerbound=1253123.678083, norm of subgrad 1119.990481 dualbound = 3336702.678083, lowerbound=1253123.678083, norm of subgrad 37.091737 stepsize= 1.000000 +dualbound = 3336772.019864, lowerbound=1258338.019864, norm of subgrad 1122.326610 dualbound = 3336772.019864, lowerbound=1258338.019864, norm of subgrad 36.719774 stepsize= 1.000000 +dualbound = 3336880.334730, lowerbound=1257745.334730, norm of subgrad 1122.035799 dualbound = 3336880.334730, lowerbound=1257745.334730, norm of subgrad 36.432333 stepsize= 1.000000 +dualbound = 3336958.542975, lowerbound=1252982.542975, norm of subgrad 1119.930151 dualbound = 3336958.542975, lowerbound=1252982.542975, norm of subgrad 36.595194 stepsize= 1.000000 +dualbound = 3337077.968382, lowerbound=1260349.968382, norm of subgrad 1123.200324 dualbound = 3337077.968382, lowerbound=1260349.968382, norm of subgrad 36.720912 stepsize= 1.000000 +dualbound = 3337141.024165, lowerbound=1258359.024165, norm of subgrad 1122.324830 dualbound = 3337141.024165, lowerbound=1258359.024165, norm of subgrad 36.291263 stepsize= 1.000000 +dualbound = 3337252.612216, lowerbound=1260179.612216, norm of subgrad 1123.144075 dualbound = 3337252.612216, lowerbound=1260179.612216, norm of subgrad 37.210053 stepsize= 1.000000 +dualbound = 3337318.959910, lowerbound=1258310.959910, norm of subgrad 1122.345740 dualbound = 3337318.959910, lowerbound=1258310.959910, norm of subgrad 37.621107 stepsize= 1.000000 +dualbound = 3337400.845018, lowerbound=1259849.845018, norm of subgrad 1123.013733 dualbound = 3337400.845018, lowerbound=1259849.845018, norm of subgrad 37.307976 stepsize= 1.000000 +dualbound = 3337508.794320, lowerbound=1253083.794320, norm of subgrad 1119.989194 dualbound = 3337508.794320, lowerbound=1253083.794320, norm of subgrad 37.415896 stepsize= 1.000000 +dualbound = 3337599.666841, lowerbound=1264705.666841, norm of subgrad 1125.158952 dualbound = 3337599.666841, lowerbound=1264705.666841, norm of subgrad 36.984761 stepsize= 1.000000 +dualbound = 3337696.500581, lowerbound=1255917.500581, norm of subgrad 1121.240608 dualbound = 3337696.500581, lowerbound=1255917.500581, norm of subgrad 36.875924 stepsize= 1.000000 +dualbound = 3337769.005665, lowerbound=1262071.005665, norm of subgrad 1123.969753 dualbound = 3337769.005665, lowerbound=1262071.005665, norm of subgrad 36.187085 stepsize= 1.000000 +dualbound = 3337876.674279, lowerbound=1253617.674279, norm of subgrad 1120.205639 dualbound = 3337876.674279, lowerbound=1253617.674279, norm of subgrad 36.751444 stepsize= 1.000000 +dualbound = 3337965.383844, lowerbound=1263429.383844, norm of subgrad 1124.581426 dualbound = 3337965.383844, lowerbound=1263429.383844, norm of subgrad 36.643002 stepsize= 1.000000 +dualbound = 3338049.150818, lowerbound=1257933.150818, norm of subgrad 1122.160484 dualbound = 3338049.150818, lowerbound=1257933.150818, norm of subgrad 37.346579 stepsize= 1.000000 +dualbound = 3338114.797135, lowerbound=1256237.797135, norm of subgrad 1121.415533 dualbound = 3338114.797135, lowerbound=1256237.797135, norm of subgrad 37.425210 stepsize= 1.000000 +dualbound = 3338221.177209, lowerbound=1258156.177209, norm of subgrad 1122.261189 dualbound = 3338221.177209, lowerbound=1258156.177209, norm of subgrad 37.687930 stepsize= 1.000000 +dualbound = 3338319.448475, lowerbound=1260148.448475, norm of subgrad 1123.124414 dualbound = 3338319.448475, lowerbound=1260148.448475, norm of subgrad 36.854732 stepsize= 1.000000 +dualbound = 3338409.303080, lowerbound=1252099.303080, norm of subgrad 1119.544686 dualbound = 3338409.303080, lowerbound=1252099.303080, norm of subgrad 37.025054 stepsize= 1.000000 +dualbound = 3338490.507659, lowerbound=1261348.507659, norm of subgrad 1123.642518 dualbound = 3338490.507659, lowerbound=1261348.507659, norm of subgrad 36.127615 stepsize= 1.000000 +dualbound = 3338608.023967, lowerbound=1259235.023967, norm of subgrad 1122.724376 dualbound = 3338608.023967, lowerbound=1259235.023967, norm of subgrad 37.316435 stepsize= 1.000000 +dualbound = 3338684.059833, lowerbound=1257435.059833, norm of subgrad 1121.932734 dualbound = 3338684.059833, lowerbound=1257435.059833, norm of subgrad 37.067990 stepsize= 1.000000 +dualbound = 3338755.818857, lowerbound=1257882.818857, norm of subgrad 1122.154543 dualbound = 3338755.818857, lowerbound=1257882.818857, norm of subgrad 37.679690 stepsize= 1.000000 +dualbound = 3338829.360021, lowerbound=1255939.360021, norm of subgrad 1121.279341 dualbound = 3338829.360021, lowerbound=1255939.360021, norm of subgrad 37.437163 stepsize= 1.000000 +dualbound = 3338969.200294, lowerbound=1259903.200294, norm of subgrad 1123.027248 dualbound = 3338969.200294, lowerbound=1259903.200294, norm of subgrad 37.773539 stepsize= 1.000000 +dualbound = 3339043.924782, lowerbound=1257960.924782, norm of subgrad 1122.165730 dualbound = 3339043.924782, lowerbound=1257960.924782, norm of subgrad 37.009789 stepsize= 1.000000 +dualbound = 3339126.793127, lowerbound=1256663.793127, norm of subgrad 1121.592080 dualbound = 3339126.793127, lowerbound=1256663.793127, norm of subgrad 37.254105 stepsize= 1.000000 +dualbound = 3339220.322013, lowerbound=1256854.322013, norm of subgrad 1121.673893 dualbound = 3339220.322013, lowerbound=1256854.322013, norm of subgrad 37.303202 stepsize= 1.000000 +dualbound = 3339299.038450, lowerbound=1257280.038450, norm of subgrad 1121.859634 dualbound = 3339299.038450, lowerbound=1257280.038450, norm of subgrad 36.982650 stepsize= 1.000000 +dualbound = 3339405.544748, lowerbound=1265502.544748, norm of subgrad 1125.483694 dualbound = 3339405.544748, lowerbound=1265502.544748, norm of subgrad 36.297470 stepsize= 1.000000 +dualbound = 3339515.532484, lowerbound=1256217.532484, norm of subgrad 1121.348979 dualbound = 3339515.532484, lowerbound=1256217.532484, norm of subgrad 36.276545 stepsize= 1.000000 +dualbound = 3339608.546686, lowerbound=1260293.546686, norm of subgrad 1123.180104 dualbound = 3339608.546686, lowerbound=1260293.546686, norm of subgrad 36.510467 stepsize= 1.000000 +dualbound = 3339704.077640, lowerbound=1254540.077640, norm of subgrad 1120.598535 dualbound = 3339704.077640, lowerbound=1254540.077640, norm of subgrad 36.007374 stepsize= 1.000000 +dualbound = 3339768.560320, lowerbound=1259520.560320, norm of subgrad 1122.844406 dualbound = 3339768.560320, lowerbound=1259520.560320, norm of subgrad 36.379701 stepsize= 1.000000 +dualbound = 3339869.140223, lowerbound=1255402.140224, norm of subgrad 1121.003631 dualbound = 3339869.140223, lowerbound=1255402.140224, norm of subgrad 36.709398 stepsize= 1.000000 +dualbound = 3339958.179724, lowerbound=1262384.179724, norm of subgrad 1124.131300 dualbound = 3339958.179724, lowerbound=1262384.179724, norm of subgrad 37.095006 stepsize= 1.000000 +dualbound = 3340047.301260, lowerbound=1259282.301260, norm of subgrad 1122.742313 dualbound = 3340047.301260, lowerbound=1259282.301260, norm of subgrad 36.839130 stepsize= 1.000000 +dualbound = 3340114.912312, lowerbound=1257790.912312, norm of subgrad 1122.122058 dualbound = 3340114.912312, lowerbound=1257790.912312, norm of subgrad 37.876260 stepsize= 1.000000 +dualbound = 3340212.108699, lowerbound=1255898.108699, norm of subgrad 1121.221704 dualbound = 3340212.108699, lowerbound=1255898.108699, norm of subgrad 36.567696 stepsize= 1.000000 +dualbound = 3340312.953577, lowerbound=1262360.953577, norm of subgrad 1124.134313 dualbound = 3340312.953577, lowerbound=1262360.953577, norm of subgrad 37.654281 stepsize= 1.000000 +dualbound = 3340390.916365, lowerbound=1257983.916365, norm of subgrad 1122.167508 dualbound = 3340390.916365, lowerbound=1257983.916365, norm of subgrad 36.796233 stepsize= 1.000000 +dualbound = 3340497.369271, lowerbound=1263817.369271, norm of subgrad 1124.783254 dualbound = 3340497.369271, lowerbound=1263817.369271, norm of subgrad 37.768411 stepsize= 1.000000 +dualbound = 3340561.374552, lowerbound=1254273.374552, norm of subgrad 1120.526829 dualbound = 3340561.374552, lowerbound=1254273.374552, norm of subgrad 37.027088 stepsize= 1.000000 +dualbound = 3340689.812160, lowerbound=1261181.812160, norm of subgrad 1123.569674 dualbound = 3340689.812160, lowerbound=1261181.812160, norm of subgrad 36.816268 stepsize= 1.000000 +dualbound = 3340797.577820, lowerbound=1256239.577820, norm of subgrad 1121.347216 dualbound = 3340797.577820, lowerbound=1256239.577820, norm of subgrad 35.885452 stepsize= 1.000000 +dualbound = 3340899.124480, lowerbound=1263268.124480, norm of subgrad 1124.491941 dualbound = 3340899.124480, lowerbound=1263268.124480, norm of subgrad 36.270465 stepsize= 1.000000 +dualbound = 3340955.025645, lowerbound=1250711.025645, norm of subgrad 1118.919580 dualbound = 3340955.025645, lowerbound=1250711.025645, norm of subgrad 36.412926 stepsize= 1.000000 +dualbound = 3341029.509619, lowerbound=1257755.509619, norm of subgrad 1122.051028 dualbound = 3341029.509619, lowerbound=1257755.509619, norm of subgrad 36.297162 stepsize= 1.000000 +dualbound = 3341128.787918, lowerbound=1259759.787918, norm of subgrad 1122.966958 dualbound = 3341128.787918, lowerbound=1259759.787918, norm of subgrad 37.340036 stepsize= 1.000000 +dualbound = 3341221.579097, lowerbound=1259882.579097, norm of subgrad 1123.004265 dualbound = 3341221.579097, lowerbound=1259882.579097, norm of subgrad 36.725892 stepsize= 1.000000 +dualbound = 3341298.627041, lowerbound=1260090.627041, norm of subgrad 1123.118260 dualbound = 3341298.627041, lowerbound=1260090.627041, norm of subgrad 37.162453 stepsize= 1.000000 +dualbound = 3341401.996753, lowerbound=1260206.996753, norm of subgrad 1123.157601 dualbound = 3341401.996753, lowerbound=1260206.996753, norm of subgrad 37.139867 stepsize= 1.000000 +dualbound = 3341488.426474, lowerbound=1256629.426474, norm of subgrad 1121.545107 dualbound = 3341488.426474, lowerbound=1256629.426474, norm of subgrad 36.337718 stepsize= 1.000000 +dualbound = 3341603.341775, lowerbound=1261885.341775, norm of subgrad 1123.868917 dualbound = 3341603.341775, lowerbound=1261885.341775, norm of subgrad 36.206564 stepsize= 1.000000 +dualbound = 3341672.621533, lowerbound=1259076.621533, norm of subgrad 1122.682333 dualbound = 3341672.621533, lowerbound=1259076.621533, norm of subgrad 37.527054 stepsize= 1.000000 +dualbound = 3341729.412036, lowerbound=1257471.412036, norm of subgrad 1121.961859 dualbound = 3341729.412036, lowerbound=1257471.412036, norm of subgrad 37.199335 stepsize= 1.000000 +dualbound = 3341843.400872, lowerbound=1260250.400872, norm of subgrad 1123.192504 dualbound = 3341843.400872, lowerbound=1260250.400872, norm of subgrad 37.749024 stepsize= 1.000000 +dualbound = 3341922.110004, lowerbound=1254224.110004, norm of subgrad 1120.506631 dualbound = 3341922.110004, lowerbound=1254224.110004, norm of subgrad 37.278803 stepsize= 1.000000 +dualbound = 3342038.582222, lowerbound=1263131.582222, norm of subgrad 1124.466354 dualbound = 3342038.582222, lowerbound=1263131.582222, norm of subgrad 37.542938 stepsize= 1.000000 +dualbound = 3342115.635278, lowerbound=1258767.635278, norm of subgrad 1122.527788 dualbound = 3342115.635278, lowerbound=1258767.635278, norm of subgrad 37.122137 stepsize= 1.000000 +dualbound = 3342213.395585, lowerbound=1258503.395585, norm of subgrad 1122.412756 dualbound = 3342213.395585, lowerbound=1258503.395585, norm of subgrad 37.480132 stepsize= 1.000000 +dualbound = 3342293.093652, lowerbound=1255912.093652, norm of subgrad 1121.237751 dualbound = 3342293.093652, lowerbound=1255912.093652, norm of subgrad 36.629197 stepsize= 1.000000 +dualbound = 3342402.056753, lowerbound=1261909.056753, norm of subgrad 1123.877688 dualbound = 3342402.056753, lowerbound=1261909.056753, norm of subgrad 36.068866 stepsize= 1.000000 +dualbound = 3342501.015616, lowerbound=1258505.015616, norm of subgrad 1122.387195 dualbound = 3342501.015616, lowerbound=1258505.015616, norm of subgrad 36.700938 stepsize= 1.000000 +dualbound = 3342593.529820, lowerbound=1258467.529820, norm of subgrad 1122.349558 dualbound = 3342593.529820, lowerbound=1258467.529820, norm of subgrad 35.965458 stepsize= 1.000000 +dualbound = 3342681.936107, lowerbound=1259906.936107, norm of subgrad 1123.012438 dualbound = 3342681.936107, lowerbound=1259906.936107, norm of subgrad 36.584236 stepsize= 1.000000 +dualbound = 3342743.119340, lowerbound=1258044.119340, norm of subgrad 1122.232649 dualbound = 3342743.119340, lowerbound=1258044.119340, norm of subgrad 37.725101 stepsize= 1.000000 +dualbound = 3342824.098291, lowerbound=1258249.098291, norm of subgrad 1122.283876 dualbound = 3342824.098291, lowerbound=1258249.098291, norm of subgrad 36.782862 stepsize= 1.000000 +dualbound = 3342946.765409, lowerbound=1255002.765409, norm of subgrad 1120.840205 dualbound = 3342946.765409, lowerbound=1255002.765409, norm of subgrad 37.452198 stepsize= 1.000000 +dualbound = 3343027.897062, lowerbound=1256898.897062, norm of subgrad 1121.689305 dualbound = 3343027.897062, lowerbound=1256898.897062, norm of subgrad 37.001779 stepsize= 1.000000 +dualbound = 3343103.755474, lowerbound=1257178.755474, norm of subgrad 1121.819395 dualbound = 3343103.755474, lowerbound=1257178.755474, norm of subgrad 37.092565 stepsize= 1.000000 +dualbound = 3343219.947819, lowerbound=1258516.947819, norm of subgrad 1122.398302 dualbound = 3343219.947819, lowerbound=1258516.947819, norm of subgrad 37.110542 stepsize= 1.000000 +dualbound = 3343296.511808, lowerbound=1258107.511808, norm of subgrad 1122.212775 dualbound = 3343296.511808, lowerbound=1258107.511808, norm of subgrad 36.476897 stepsize= 1.000000 +dualbound = 3343400.850892, lowerbound=1256167.850892, norm of subgrad 1121.357147 dualbound = 3343400.850892, lowerbound=1256167.850892, norm of subgrad 37.125989 stepsize= 1.000000 +dualbound = 3343489.596633, lowerbound=1264073.596633, norm of subgrad 1124.899372 dualbound = 3343489.596633, lowerbound=1264073.596633, norm of subgrad 37.599810 stepsize= 1.000000 +dualbound = 3343535.289499, lowerbound=1258857.289499, norm of subgrad 1122.585538 dualbound = 3343535.289499, lowerbound=1258857.289499, norm of subgrad 37.238325 stepsize= 1.000000 +dualbound = 3343665.976749, lowerbound=1264123.976749, norm of subgrad 1124.892873 dualbound = 3343665.976749, lowerbound=1264123.976749, norm of subgrad 37.291919 stepsize= 1.000000 +dualbound = 3343749.786719, lowerbound=1257115.786719, norm of subgrad 1121.770826 dualbound = 3343749.786719, lowerbound=1257115.786719, norm of subgrad 36.576085 stepsize= 1.000000 +dualbound = 3343847.232987, lowerbound=1258744.232987, norm of subgrad 1122.514692 dualbound = 3343847.232987, lowerbound=1258744.232987, norm of subgrad 37.315496 stepsize= 1.000000 +dualbound = 3343947.389216, lowerbound=1255858.389216, norm of subgrad 1121.206667 dualbound = 3343947.389216, lowerbound=1255858.389216, norm of subgrad 36.690002 stepsize= 1.000000 +dualbound = 3344024.014700, lowerbound=1260350.014700, norm of subgrad 1123.219486 dualbound = 3344024.014700, lowerbound=1260350.014700, norm of subgrad 36.723637 stepsize= 1.000000 +dualbound = 3344122.397890, lowerbound=1256960.397890, norm of subgrad 1121.704238 dualbound = 3344122.397890, lowerbound=1256960.397890, norm of subgrad 36.856250 stepsize= 1.000000 +dualbound = 3344200.379925, lowerbound=1259421.379925, norm of subgrad 1122.785990 dualbound = 3344200.379925, lowerbound=1259421.379925, norm of subgrad 36.124535 stepsize= 1.000000 +dualbound = 3344313.590652, lowerbound=1259351.590652, norm of subgrad 1122.767380 dualbound = 3344313.590652, lowerbound=1259351.590652, norm of subgrad 36.989333 stepsize= 1.000000 +dualbound = 3344394.020205, lowerbound=1263061.020205, norm of subgrad 1124.419859 dualbound = 3344394.020205, lowerbound=1263061.020205, norm of subgrad 36.598218 stepsize= 1.000000 +dualbound = 3344459.205887, lowerbound=1258139.205887, norm of subgrad 1122.252737 dualbound = 3344459.205887, lowerbound=1258139.205887, norm of subgrad 37.110452 stepsize= 1.000000 +dualbound = 3344551.045268, lowerbound=1257131.045268, norm of subgrad 1121.783422 dualbound = 3344551.045268, lowerbound=1257131.045268, norm of subgrad 36.862439 stepsize= 1.000000 +dualbound = 3344639.327185, lowerbound=1259387.327185, norm of subgrad 1122.774834 dualbound = 3344639.327185, lowerbound=1259387.327185, norm of subgrad 36.390684 stepsize= 1.000000 +dualbound = 3344743.453095, lowerbound=1257249.453095, norm of subgrad 1121.819260 dualbound = 3344743.453095, lowerbound=1257249.453095, norm of subgrad 36.511997 stepsize= 1.000000 +dualbound = 3344851.201449, lowerbound=1258486.201449, norm of subgrad 1122.386832 dualbound = 3344851.201449, lowerbound=1258486.201449, norm of subgrad 37.064111 stepsize= 1.000000 +dualbound = 3344927.946975, lowerbound=1263266.946975, norm of subgrad 1124.511426 dualbound = 3344927.946975, lowerbound=1263266.946975, norm of subgrad 36.547853 stepsize= 1.000000 +dualbound = 3345000.022883, lowerbound=1258255.022883, norm of subgrad 1122.285624 dualbound = 3345000.022883, lowerbound=1258255.022883, norm of subgrad 36.634354 stepsize= 1.000000 +dualbound = 3345088.834911, lowerbound=1260128.834911, norm of subgrad 1123.131263 dualbound = 3345088.834911, lowerbound=1260128.834911, norm of subgrad 37.199624 stepsize= 1.000000 +dualbound = 3345168.815498, lowerbound=1259965.815498, norm of subgrad 1123.041769 dualbound = 3345168.815498, lowerbound=1259965.815498, norm of subgrad 36.564745 stepsize= 1.000000 +dualbound = 3345272.802429, lowerbound=1260404.802429, norm of subgrad 1123.241649 dualbound = 3345272.802429, lowerbound=1260404.802429, norm of subgrad 37.026841 stepsize= 1.000000 +dualbound = 3345363.739010, lowerbound=1257819.739010, norm of subgrad 1122.089898 dualbound = 3345363.739010, lowerbound=1257819.739010, norm of subgrad 36.836620 stepsize= 1.000000 +dualbound = 3345458.055500, lowerbound=1262369.055500, norm of subgrad 1124.116122 dualbound = 3345458.055500, lowerbound=1262369.055500, norm of subgrad 36.909572 stepsize= 1.000000 +dualbound = 3345549.657461, lowerbound=1255677.657461, norm of subgrad 1121.132310 dualbound = 3345549.657461, lowerbound=1255677.657461, norm of subgrad 36.764140 stepsize= 1.000000 +dualbound = 3345643.107676, lowerbound=1255667.107676, norm of subgrad 1121.122700 dualbound = 3345643.107676, lowerbound=1255667.107676, norm of subgrad 36.639463 stepsize= 1.000000 +dualbound = 3345710.541465, lowerbound=1258650.541465, norm of subgrad 1122.493003 dualbound = 3345710.541465, lowerbound=1258650.541465, norm of subgrad 37.515781 stepsize= 1.000000 +dualbound = 3345813.005664, lowerbound=1261504.005664, norm of subgrad 1123.750420 dualbound = 3345813.005664, lowerbound=1261504.005664, norm of subgrad 37.596066 stepsize= 1.000000 +dualbound = 3345886.149549, lowerbound=1258257.149549, norm of subgrad 1122.318203 dualbound = 3345886.149549, lowerbound=1258257.149549, norm of subgrad 37.605104 stepsize= 1.000000 +dualbound = 3345988.123572, lowerbound=1260411.123572, norm of subgrad 1123.262714 dualbound = 3345988.123572, lowerbound=1260411.123572, norm of subgrad 37.549621 stepsize= 1.000000 +dualbound = 3346077.840878, lowerbound=1256122.840878, norm of subgrad 1121.380328 dualbound = 3346077.840878, lowerbound=1256122.840878, norm of subgrad 38.219332 stepsize= 1.000000 +dualbound = 3346155.887592, lowerbound=1256542.887592, norm of subgrad 1121.579639 dualbound = 3346155.887592, lowerbound=1256542.887592, norm of subgrad 38.419353 stepsize= 1.000000 +dualbound = 3346260.917339, lowerbound=1258688.917339, norm of subgrad 1122.496734 dualbound = 3346260.917339, lowerbound=1258688.917339, norm of subgrad 37.616881 stepsize= 1.000000 +dualbound = 3346367.318611, lowerbound=1262313.318611, norm of subgrad 1124.071314 dualbound = 3346367.318611, lowerbound=1262313.318611, norm of subgrad 36.460955 stepsize= 1.000000 +dualbound = 3346459.315824, lowerbound=1254901.315824, norm of subgrad 1120.758366 dualbound = 3346459.315824, lowerbound=1254901.315824, norm of subgrad 35.916531 stepsize= 1.000000 +dualbound = 3346563.392225, lowerbound=1258426.392225, norm of subgrad 1122.333904 dualbound = 3346563.392225, lowerbound=1258426.392225, norm of subgrad 36.208789 stepsize= 1.000000 +dualbound = 3346621.351656, lowerbound=1256238.351656, norm of subgrad 1121.377881 dualbound = 3346621.351656, lowerbound=1256238.351656, norm of subgrad 36.165722 stepsize= 1.000000 +dualbound = 3346713.855447, lowerbound=1259704.855447, norm of subgrad 1122.925579 dualbound = 3346713.855447, lowerbound=1259704.855447, norm of subgrad 36.735593 stepsize= 1.000000 +dualbound = 3346807.404623, lowerbound=1258261.404623, norm of subgrad 1122.286686 dualbound = 3346807.404623, lowerbound=1258261.404623, norm of subgrad 36.872065 stepsize= 1.000000 +dualbound = 3346895.069527, lowerbound=1258645.069527, norm of subgrad 1122.496802 dualbound = 3346895.069527, lowerbound=1258645.069527, norm of subgrad 37.969263 stepsize= 1.000000 +dualbound = 3346970.801588, lowerbound=1257949.801588, norm of subgrad 1122.174586 dualbound = 3346970.801588, lowerbound=1257949.801588, norm of subgrad 37.439712 stepsize= 1.000000 +dualbound = 3347073.037599, lowerbound=1257180.037599, norm of subgrad 1121.814172 dualbound = 3347073.037599, lowerbound=1257180.037599, norm of subgrad 37.272456 stepsize= 1.000000 +dualbound = 3347176.622498, lowerbound=1261698.622498, norm of subgrad 1123.847242 dualbound = 3347176.622498, lowerbound=1261698.622498, norm of subgrad 37.915497 stepsize= 1.000000 +dualbound = 3347252.757346, lowerbound=1259760.757346, norm of subgrad 1122.950915 dualbound = 3347252.757346, lowerbound=1259760.757346, norm of subgrad 36.525811 stepsize= 1.000000 +dualbound = 3347355.948637, lowerbound=1260532.948637, norm of subgrad 1123.302697 dualbound = 3347355.948637, lowerbound=1260532.948637, norm of subgrad 37.137465 stepsize= 1.000000 +dualbound = 3347457.607155, lowerbound=1258447.607155, norm of subgrad 1122.348701 dualbound = 3347457.607155, lowerbound=1258447.607155, norm of subgrad 36.340866 stepsize= 1.000000 +dualbound = 3347539.543504, lowerbound=1256202.543504, norm of subgrad 1121.382871 dualbound = 3347539.543504, lowerbound=1256202.543504, norm of subgrad 37.134032 stepsize= 1.000000 +dualbound = 3347621.344739, lowerbound=1257156.344739, norm of subgrad 1121.804058 dualbound = 3347621.344739, lowerbound=1257156.344739, norm of subgrad 37.010826 stepsize= 1.000000 +dualbound = 3347717.238279, lowerbound=1264606.238279, norm of subgrad 1125.108990 dualbound = 3347717.238279, lowerbound=1264606.238279, norm of subgrad 36.876734 stepsize= 1.000000 +dualbound = 3347786.731901, lowerbound=1257268.731901, norm of subgrad 1121.858160 dualbound = 3347786.731901, lowerbound=1257268.731901, norm of subgrad 36.966115 stepsize= 1.000000 +dualbound = 3347894.417508, lowerbound=1260954.417508, norm of subgrad 1123.458685 dualbound = 3347894.417508, lowerbound=1260954.417508, norm of subgrad 36.231003 stepsize= 1.000000 +dualbound = 3347986.730586, lowerbound=1258995.730586, norm of subgrad 1122.590188 dualbound = 3347986.730586, lowerbound=1258995.730586, norm of subgrad 36.129117 stepsize= 1.000000 +dualbound = 3348067.610226, lowerbound=1260314.610226, norm of subgrad 1123.208178 dualbound = 3348067.610226, lowerbound=1260314.610226, norm of subgrad 36.917200 stepsize= 1.000000 +dualbound = 3348144.118264, lowerbound=1260314.118264, norm of subgrad 1123.195494 dualbound = 3348144.118264, lowerbound=1260314.118264, norm of subgrad 36.476130 stepsize= 1.000000 +dualbound = 3348266.000035, lowerbound=1259558.000035, norm of subgrad 1122.862859 dualbound = 3348266.000035, lowerbound=1259558.000035, norm of subgrad 37.214000 stepsize= 1.000000 +dualbound = 3348351.519742, lowerbound=1262664.519742, norm of subgrad 1124.238195 dualbound = 3348351.519742, lowerbound=1262664.519742, norm of subgrad 36.503694 stepsize= 1.000000 +dualbound = 3348435.778053, lowerbound=1253629.778053, norm of subgrad 1120.190063 dualbound = 3348435.778053, lowerbound=1253629.778053, norm of subgrad 35.780697 stepsize= 1.000000 +dualbound = 3348520.455057, lowerbound=1261529.455057, norm of subgrad 1123.751065 dualbound = 3348520.455057, lowerbound=1261529.455057, norm of subgrad 37.036158 stepsize= 1.000000 +dualbound = 3348595.080960, lowerbound=1256295.080960, norm of subgrad 1121.426806 dualbound = 3348595.080960, lowerbound=1256295.080960, norm of subgrad 37.116383 stepsize= 1.000000 +dualbound = 3348691.656070, lowerbound=1259665.656070, norm of subgrad 1122.953987 dualbound = 3348691.656070, lowerbound=1259665.656070, norm of subgrad 38.165103 stepsize= 1.000000 +dualbound = 3348775.075863, lowerbound=1259122.075863, norm of subgrad 1122.661603 dualbound = 3348775.075863, lowerbound=1259122.075863, norm of subgrad 36.474920 stepsize= 1.000000 +dualbound = 3348873.339868, lowerbound=1256623.339868, norm of subgrad 1121.565575 dualbound = 3348873.339868, lowerbound=1256623.339868, norm of subgrad 37.205699 stepsize= 1.000000 +dualbound = 3348956.477073, lowerbound=1265754.477073, norm of subgrad 1125.618709 dualbound = 3348956.477073, lowerbound=1265754.477073, norm of subgrad 36.689743 stepsize= 1.000000 +dualbound = 3349036.074503, lowerbound=1257932.074503, norm of subgrad 1122.148419 dualbound = 3349036.074503, lowerbound=1257932.074503, norm of subgrad 36.940458 stepsize= 1.000000 +dualbound = 3349135.493256, lowerbound=1259758.493256, norm of subgrad 1122.947235 dualbound = 3349135.493256, lowerbound=1259758.493256, norm of subgrad 36.761648 stepsize= 1.000000 +dualbound = 3349212.558362, lowerbound=1254889.558362, norm of subgrad 1120.824053 dualbound = 3349212.558362, lowerbound=1254889.558362, norm of subgrad 37.869052 stepsize= 1.000000 +dualbound = 3349267.811573, lowerbound=1261711.811573, norm of subgrad 1123.840652 dualbound = 3349267.811573, lowerbound=1261711.811573, norm of subgrad 36.895165 stepsize= 1.000000 +dualbound = 3349374.652240, lowerbound=1260134.652240, norm of subgrad 1123.140086 dualbound = 3349374.652240, lowerbound=1260134.652240, norm of subgrad 37.627658 stepsize= 1.000000 +dualbound = 3349495.260183, lowerbound=1259263.260183, norm of subgrad 1122.728489 dualbound = 3349495.260183, lowerbound=1259263.260183, norm of subgrad 37.102668 stepsize= 1.000000 +dualbound = 3349552.193605, lowerbound=1257777.193605, norm of subgrad 1122.103468 dualbound = 3349552.193605, lowerbound=1257777.193605, norm of subgrad 37.362192 stepsize= 1.000000 +dualbound = 3349669.317327, lowerbound=1261028.317327, norm of subgrad 1123.534297 dualbound = 3349669.317327, lowerbound=1261028.317327, norm of subgrad 37.657984 stepsize= 1.000000 +dualbound = 3349753.289644, lowerbound=1262106.289644, norm of subgrad 1124.011250 dualbound = 3349753.289644, lowerbound=1262106.289644, norm of subgrad 37.134517 stepsize= 1.000000 +dualbound = 3349853.071084, lowerbound=1261522.071084, norm of subgrad 1123.722417 dualbound = 3349853.071084, lowerbound=1261522.071084, norm of subgrad 36.466168 stepsize= 1.000000 +dualbound = 3349951.331693, lowerbound=1256829.331693, norm of subgrad 1121.634669 dualbound = 3349951.331693, lowerbound=1256829.331693, norm of subgrad 36.513841 stepsize= 1.000000 +dualbound = 3350035.709298, lowerbound=1263869.709298, norm of subgrad 1124.785628 dualbound = 3350035.709298, lowerbound=1263869.709298, norm of subgrad 36.842606 stepsize= 1.000000 +dualbound = 3350096.724658, lowerbound=1257706.724658, norm of subgrad 1122.052015 dualbound = 3350096.724658, lowerbound=1257706.724658, norm of subgrad 36.810533 stepsize= 1.000000 +dualbound = 3350221.288498, lowerbound=1261993.288498, norm of subgrad 1123.959647 dualbound = 3350221.288498, lowerbound=1261993.288498, norm of subgrad 37.637267 stepsize= 1.000000 +dualbound = 3350279.172152, lowerbound=1261269.172152, norm of subgrad 1123.645038 dualbound = 3350279.172152, lowerbound=1261269.172152, norm of subgrad 36.971390 stepsize= 1.000000 +dualbound = 3350389.585552, lowerbound=1261280.585552, norm of subgrad 1123.641217 dualbound = 3350389.585552, lowerbound=1261280.585552, norm of subgrad 37.408734 stepsize= 1.000000 +dualbound = 3350483.725311, lowerbound=1257149.725311, norm of subgrad 1121.807348 dualbound = 3350483.725311, lowerbound=1257149.725311, norm of subgrad 37.364954 stepsize= 1.000000 +dualbound = 3350561.836782, lowerbound=1258805.836782, norm of subgrad 1122.534559 dualbound = 3350561.836782, lowerbound=1258805.836782, norm of subgrad 36.825419 stepsize= 1.000000 +dualbound = 3350650.988420, lowerbound=1258170.988420, norm of subgrad 1122.249967 dualbound = 3350650.988420, lowerbound=1258170.988420, norm of subgrad 36.920883 stepsize= 1.000000 +dualbound = 3350743.139524, lowerbound=1256750.139524, norm of subgrad 1121.600704 dualbound = 3350743.139524, lowerbound=1256750.139524, norm of subgrad 36.471237 stepsize= 1.000000 +dualbound = 3350850.072768, lowerbound=1258324.072768, norm of subgrad 1122.317278 dualbound = 3350850.072768, lowerbound=1258324.072768, norm of subgrad 37.133990 stepsize= 1.000000 +dualbound = 3350943.625783, lowerbound=1261129.625783, norm of subgrad 1123.571371 dualbound = 3350943.625783, lowerbound=1261129.625783, norm of subgrad 37.101927 stepsize= 1.000000 +dualbound = 3351028.119482, lowerbound=1258826.119482, norm of subgrad 1122.516868 dualbound = 3351028.119482, lowerbound=1258826.119482, norm of subgrad 36.090078 stepsize= 1.000000 +dualbound = 3351129.721369, lowerbound=1256211.721369, norm of subgrad 1121.367790 dualbound = 3351129.721369, lowerbound=1256211.721369, norm of subgrad 36.818499 stepsize= 1.000000 +dualbound = 3351175.521196, lowerbound=1261247.521196, norm of subgrad 1123.643414 dualbound = 3351175.521196, lowerbound=1261247.521196, norm of subgrad 37.051313 stepsize= 1.000000 +dualbound = 3351293.416997, lowerbound=1263193.416997, norm of subgrad 1124.487180 dualbound = 3351293.416997, lowerbound=1263193.416997, norm of subgrad 37.361689 stepsize= 1.000000 +dualbound = 3351365.009198, lowerbound=1256885.009198, norm of subgrad 1121.679103 dualbound = 3351365.009198, lowerbound=1256885.009198, norm of subgrad 36.750404 stepsize= 1.000000 +dualbound = 3351465.733160, lowerbound=1261619.733160, norm of subgrad 1123.818817 dualbound = 3351465.733160, lowerbound=1261619.733160, norm of subgrad 38.075241 stepsize= 1.000000 +dualbound = 3351531.515869, lowerbound=1256767.515870, norm of subgrad 1121.618258 dualbound = 3351531.515869, lowerbound=1256767.515870, norm of subgrad 36.411299 stepsize= 1.000000 +dualbound = 3351656.292273, lowerbound=1261557.292273, norm of subgrad 1123.734529 dualbound = 3351656.292273, lowerbound=1261557.292273, norm of subgrad 36.698452 stepsize= 1.000000 +dualbound = 3351728.037302, lowerbound=1257026.037302, norm of subgrad 1121.764698 dualbound = 3351728.037302, lowerbound=1257026.037302, norm of subgrad 37.439886 stepsize= 1.000000 +dualbound = 3351825.755090, lowerbound=1264375.755090, norm of subgrad 1125.027891 dualbound = 3351825.755090, lowerbound=1264375.755090, norm of subgrad 37.546209 stepsize= 1.000000 +dualbound = 3351895.781705, lowerbound=1256176.781705, norm of subgrad 1121.385207 dualbound = 3351895.781705, lowerbound=1256176.781705, norm of subgrad 37.390194 stepsize= 1.000000 +dualbound = 3351991.318746, lowerbound=1259464.318746, norm of subgrad 1122.855876 dualbound = 3351991.318746, lowerbound=1259464.318746, norm of subgrad 37.901676 stepsize= 1.000000 +dualbound = 3352087.803524, lowerbound=1259919.803524, norm of subgrad 1123.025291 dualbound = 3352087.803524, lowerbound=1259919.803524, norm of subgrad 36.911851 stepsize= 1.000000 +dualbound = 3352179.785692, lowerbound=1259506.785692, norm of subgrad 1122.826694 dualbound = 3352179.785692, lowerbound=1259506.785692, norm of subgrad 36.400305 stepsize= 1.000000 +dualbound = 3352271.835741, lowerbound=1257807.835741, norm of subgrad 1122.087713 dualbound = 3352271.835741, lowerbound=1257807.835741, norm of subgrad 36.946584 stepsize= 1.000000 +dualbound = 3352365.261567, lowerbound=1260294.261567, norm of subgrad 1123.173745 dualbound = 3352365.261567, lowerbound=1260294.261567, norm of subgrad 36.310134 stepsize= 1.000000 +dualbound = 3352433.423295, lowerbound=1259168.423295, norm of subgrad 1122.691152 dualbound = 3352433.423295, lowerbound=1259168.423295, norm of subgrad 36.539865 stepsize= 1.000000 +dualbound = 3352530.064357, lowerbound=1260383.064357, norm of subgrad 1123.236424 dualbound = 3352530.064357, lowerbound=1260383.064357, norm of subgrad 37.062664 stepsize= 1.000000 +dualbound = 3352618.304281, lowerbound=1258360.304281, norm of subgrad 1122.318718 dualbound = 3352618.304281, lowerbound=1258360.304281, norm of subgrad 36.431304 stepsize= 1.000000 +dualbound = 3352727.420511, lowerbound=1263480.420511, norm of subgrad 1124.629459 dualbound = 3352727.420511, lowerbound=1263480.420511, norm of subgrad 37.684430 stepsize= 1.000000 +dualbound = 3352776.909965, lowerbound=1256873.909965, norm of subgrad 1121.703575 dualbound = 3352776.909965, lowerbound=1256873.909965, norm of subgrad 37.342863 stepsize= 1.000000 +dualbound = 3352881.790148, lowerbound=1264074.790148, norm of subgrad 1124.882123 dualbound = 3352881.790148, lowerbound=1264074.790148, norm of subgrad 37.281097 stepsize= 1.000000 +dualbound = 3352953.962059, lowerbound=1261847.962059, norm of subgrad 1123.901669 dualbound = 3352953.962059, lowerbound=1261847.962059, norm of subgrad 37.137204 stepsize= 1.000000 +dualbound = 3353075.543948, lowerbound=1260393.543948, norm of subgrad 1123.250882 dualbound = 3353075.543948, lowerbound=1260393.543948, norm of subgrad 37.690607 stepsize= 1.000000 +dualbound = 3353128.241741, lowerbound=1260359.241741, norm of subgrad 1123.241845 dualbound = 3353128.241741, lowerbound=1260359.241741, norm of subgrad 36.955349 stepsize= 1.000000 +dualbound = 3353245.972511, lowerbound=1256859.972511, norm of subgrad 1121.693796 dualbound = 3353245.972511, lowerbound=1256859.972511, norm of subgrad 38.140933 stepsize= 1.000000 +dualbound = 3353307.902428, lowerbound=1258304.902428, norm of subgrad 1122.343041 dualbound = 3353307.902428, lowerbound=1258304.902428, norm of subgrad 37.562347 stepsize= 1.000000 +dualbound = 3353415.670730, lowerbound=1256964.670730, norm of subgrad 1121.715503 dualbound = 3353415.670730, lowerbound=1256964.670730, norm of subgrad 37.266182 stepsize= 1.000000 +dualbound = 3353510.662401, lowerbound=1263098.662401, norm of subgrad 1124.456608 dualbound = 3353510.662401, lowerbound=1263098.662401, norm of subgrad 37.403097 stepsize= 1.000000 +dualbound = 3353602.703778, lowerbound=1261292.703778, norm of subgrad 1123.652840 dualbound = 3353602.703778, lowerbound=1261292.703778, norm of subgrad 37.350253 stepsize= 1.000000 +dualbound = 3353664.921621, lowerbound=1255134.921621, norm of subgrad 1120.919677 dualbound = 3353664.921621, lowerbound=1255134.921621, norm of subgrad 37.258796 stepsize= 1.000000 +dualbound = 3353770.958491, lowerbound=1256407.958491, norm of subgrad 1121.456624 dualbound = 3353770.958491, lowerbound=1256407.958491, norm of subgrad 36.919329 stepsize= 1.000000 +dualbound = 3353880.291997, lowerbound=1261084.291997, norm of subgrad 1123.570332 dualbound = 3353880.291997, lowerbound=1261084.291997, norm of subgrad 37.885796 stepsize= 1.000000 +dualbound = 3353943.554850, lowerbound=1262338.554850, norm of subgrad 1124.114565 dualbound = 3353943.554850, lowerbound=1262338.554850, norm of subgrad 36.854618 stepsize= 1.000000 +dualbound = 3354038.112849, lowerbound=1257550.112849, norm of subgrad 1121.981334 dualbound = 3354038.112849, lowerbound=1257550.112849, norm of subgrad 37.236514 stepsize= 1.000000 +dualbound = 3354127.711368, lowerbound=1259770.711368, norm of subgrad 1122.972267 dualbound = 3354127.711368, lowerbound=1259770.711368, norm of subgrad 37.223629 stepsize= 1.000000 +dualbound = 3354221.006802, lowerbound=1262845.006802, norm of subgrad 1124.334918 dualbound = 3354221.006802, lowerbound=1262845.006802, norm of subgrad 37.111931 stepsize= 1.000000 +dualbound = 3354298.191021, lowerbound=1261205.191021, norm of subgrad 1123.596988 dualbound = 3354298.191021, lowerbound=1261205.191021, norm of subgrad 36.635832 stepsize= 1.000000 +dualbound = 3354401.286520, lowerbound=1262113.286520, norm of subgrad 1123.990341 dualbound = 3354401.286520, lowerbound=1262113.286520, norm of subgrad 36.661908 stepsize= 1.000000 +dualbound = 3354514.648124, lowerbound=1260127.648124, norm of subgrad 1123.090668 dualbound = 3354514.648124, lowerbound=1260127.648124, norm of subgrad 36.309250 stepsize= 1.000000 +dualbound = 3354588.821349, lowerbound=1260410.821349, norm of subgrad 1123.233200 dualbound = 3354588.821349, lowerbound=1260410.821349, norm of subgrad 36.279102 stepsize= 1.000000 +dualbound = 3354673.474355, lowerbound=1257276.474355, norm of subgrad 1121.853143 dualbound = 3354673.474355, lowerbound=1257276.474355, norm of subgrad 36.914130 stepsize= 1.000000 +dualbound = 3354743.556772, lowerbound=1261145.556772, norm of subgrad 1123.560215 dualbound = 3354743.556772, lowerbound=1261145.556772, norm of subgrad 36.222678 stepsize= 1.000000 +dualbound = 3354871.127513, lowerbound=1258057.127513, norm of subgrad 1122.175177 dualbound = 3354871.127513, lowerbound=1258057.127513, norm of subgrad 36.709273 stepsize= 1.000000 +dualbound = 3354945.621254, lowerbound=1267482.621254, norm of subgrad 1126.367889 dualbound = 3354945.621254, lowerbound=1267482.621254, norm of subgrad 36.006857 stepsize= 1.000000 +dualbound = 3355014.146792, lowerbound=1257153.146792, norm of subgrad 1121.804861 dualbound = 3355014.146792, lowerbound=1257153.146792, norm of subgrad 36.898856 stepsize= 1.000000 +dualbound = 3355082.258458, lowerbound=1259327.258458, norm of subgrad 1122.780592 dualbound = 3355082.258458, lowerbound=1259327.258458, norm of subgrad 37.109455 stepsize= 1.000000 +dualbound = 3355187.884631, lowerbound=1258313.884631, norm of subgrad 1122.280662 dualbound = 3355187.884631, lowerbound=1258313.884631, norm of subgrad 36.133450 stepsize= 1.000000 +dualbound = 3355290.536967, lowerbound=1258496.536967, norm of subgrad 1122.393664 dualbound = 3355290.536967, lowerbound=1258496.536967, norm of subgrad 37.062816 stepsize= 1.000000 +dualbound = 3355345.544235, lowerbound=1257431.544235, norm of subgrad 1121.928939 dualbound = 3355345.544235, lowerbound=1257431.544235, norm of subgrad 36.715218 stepsize= 1.000000 +dualbound = 3355444.798594, lowerbound=1259675.798594, norm of subgrad 1122.932678 dualbound = 3355444.798594, lowerbound=1259675.798594, norm of subgrad 37.433332 stepsize= 1.000000 +dualbound = 3355544.334521, lowerbound=1262489.334521, norm of subgrad 1124.159835 dualbound = 3355544.334521, lowerbound=1262489.334521, norm of subgrad 36.681548 stepsize= 1.000000 +dualbound = 3355636.672638, lowerbound=1263175.672638, norm of subgrad 1124.459280 dualbound = 3355636.672638, lowerbound=1263175.672638, norm of subgrad 36.405194 stepsize= 1.000000 +dualbound = 3355743.344278, lowerbound=1260920.344278, norm of subgrad 1123.480015 dualbound = 3355743.344278, lowerbound=1260920.344278, norm of subgrad 37.331912 stepsize= 1.000000 +dualbound = 3355783.280388, lowerbound=1262101.280388, norm of subgrad 1124.045497 dualbound = 3355783.280388, lowerbound=1262101.280388, norm of subgrad 37.642212 stepsize= 1.000000 +dualbound = 3355864.891288, lowerbound=1258225.891288, norm of subgrad 1122.284675 dualbound = 3355864.891288, lowerbound=1258225.891288, norm of subgrad 37.129650 stepsize= 1.000000 +dualbound = 3355975.228605, lowerbound=1264015.228605, norm of subgrad 1124.852981 dualbound = 3355975.228605, lowerbound=1264015.228605, norm of subgrad 37.273815 stepsize= 1.000000 +dualbound = 3356074.985090, lowerbound=1257571.985090, norm of subgrad 1121.982168 dualbound = 3356074.985090, lowerbound=1257571.985090, norm of subgrad 37.037231 stepsize= 1.000000 +dualbound = 3356156.526169, lowerbound=1257518.526169, norm of subgrad 1121.979735 dualbound = 3356156.526169, lowerbound=1257518.526169, norm of subgrad 37.437162 stepsize= 1.000000 +dualbound = 3356236.390557, lowerbound=1256300.390557, norm of subgrad 1121.421594 dualbound = 3356236.390557, lowerbound=1256300.390557, norm of subgrad 36.957603 stepsize= 1.000000 +dualbound = 3356330.392590, lowerbound=1260724.392590, norm of subgrad 1123.387018 dualbound = 3356330.392590, lowerbound=1260724.392590, norm of subgrad 36.986512 stepsize= 1.000000 +dualbound = 3356423.365819, lowerbound=1260771.365819, norm of subgrad 1123.419497 dualbound = 3356423.365819, lowerbound=1260771.365819, norm of subgrad 37.322557 stepsize= 1.000000 +dualbound = 3356510.525830, lowerbound=1259168.525830, norm of subgrad 1122.704559 dualbound = 3356510.525830, lowerbound=1259168.525830, norm of subgrad 37.204301 stepsize= 1.000000 +dualbound = 3356599.565765, lowerbound=1258981.565765, norm of subgrad 1122.627082 dualbound = 3356599.565765, lowerbound=1258981.565765, norm of subgrad 37.403742 stepsize= 1.000000 +dualbound = 3356677.897079, lowerbound=1260273.897079, norm of subgrad 1123.206525 dualbound = 3356677.897079, lowerbound=1260273.897079, norm of subgrad 37.380895 stepsize= 1.000000 +dualbound = 3356773.918166, lowerbound=1262274.918166, norm of subgrad 1124.069356 dualbound = 3356773.918166, lowerbound=1262274.918166, norm of subgrad 36.783435 stepsize= 1.000000 +dualbound = 3356888.895718, lowerbound=1264478.895718, norm of subgrad 1125.042620 dualbound = 3356888.895718, lowerbound=1264478.895718, norm of subgrad 36.837176 stepsize= 1.000000 +dualbound = 3356952.053825, lowerbound=1254648.053825, norm of subgrad 1120.665005 dualbound = 3356952.053825, lowerbound=1254648.053825, norm of subgrad 36.126972 stepsize= 1.000000 +dualbound = 3357056.489332, lowerbound=1261317.489332, norm of subgrad 1123.673658 dualbound = 3357056.489332, lowerbound=1261317.489332, norm of subgrad 37.807876 stepsize= 1.000000 +dualbound = 3357131.163676, lowerbound=1258456.163676, norm of subgrad 1122.367214 dualbound = 3357131.163676, lowerbound=1258456.163676, norm of subgrad 36.423541 stepsize= 1.000000 +dualbound = 3357231.842527, lowerbound=1266462.842527, norm of subgrad 1125.919554 dualbound = 3357231.842527, lowerbound=1266462.842527, norm of subgrad 36.505874 stepsize= 1.000000 +dualbound = 3357299.610104, lowerbound=1259270.610104, norm of subgrad 1122.744677 dualbound = 3357299.610104, lowerbound=1259270.610104, norm of subgrad 36.779989 stepsize= 1.000000 +dualbound = 3357379.078029, lowerbound=1258538.078029, norm of subgrad 1122.416179 dualbound = 3357379.078029, lowerbound=1258538.078029, norm of subgrad 36.870963 stepsize= 1.000000 +dualbound = 3357471.217021, lowerbound=1257525.217021, norm of subgrad 1121.985836 dualbound = 3357471.217021, lowerbound=1257525.217021, norm of subgrad 37.671461 stepsize= 1.000000 +dualbound = 3357576.205466, lowerbound=1258529.205466, norm of subgrad 1122.412226 dualbound = 3357576.205466, lowerbound=1258529.205466, norm of subgrad 37.215433 stepsize= 1.000000 +dualbound = 3357662.023984, lowerbound=1266742.023984, norm of subgrad 1126.052851 dualbound = 3357662.023984, lowerbound=1266742.023984, norm of subgrad 36.589869 stepsize= 1.000000 +dualbound = 3357764.676583, lowerbound=1260521.676583, norm of subgrad 1123.297679 dualbound = 3357764.676583, lowerbound=1260521.676583, norm of subgrad 37.130211 stepsize= 1.000000 +dualbound = 3357828.318374, lowerbound=1261145.318374, norm of subgrad 1123.537858 dualbound = 3357828.318374, lowerbound=1261145.318374, norm of subgrad 35.435036 stepsize= 1.000000 +dualbound = 3357947.022184, lowerbound=1260241.022184, norm of subgrad 1123.156722 dualbound = 3357947.022184, lowerbound=1260241.022184, norm of subgrad 36.860600 stepsize= 1.000000 +dualbound = 3358002.147068, lowerbound=1260266.147068, norm of subgrad 1123.199513 dualbound = 3358002.147068, lowerbound=1260266.147068, norm of subgrad 36.961127 stepsize= 1.000000 +dualbound = 3358109.182329, lowerbound=1261267.182329, norm of subgrad 1123.632583 dualbound = 3358109.182329, lowerbound=1261267.182329, norm of subgrad 37.283177 stepsize= 1.000000 +dualbound = 3358187.500884, lowerbound=1258466.500884, norm of subgrad 1122.364692 dualbound = 3358187.500884, lowerbound=1258466.500884, norm of subgrad 36.253532 stepsize= 1.000000 +dualbound = 3358308.325993, lowerbound=1263016.325993, norm of subgrad 1124.397761 dualbound = 3358308.325993, lowerbound=1263016.325993, norm of subgrad 37.078634 stepsize= 1.000000 +dualbound = 3358378.326965, lowerbound=1265572.326965, norm of subgrad 1125.559562 dualbound = 3358378.326965, lowerbound=1265572.326965, norm of subgrad 37.175274 stepsize= 1.000000 +dualbound = 3358428.609780, lowerbound=1259426.609780, norm of subgrad 1122.827061 dualbound = 3358428.609780, lowerbound=1259426.609780, norm of subgrad 36.936199 stepsize= 1.000000 +dualbound = 3358542.488410, lowerbound=1258541.488410, norm of subgrad 1122.432398 dualbound = 3358542.488410, lowerbound=1258541.488410, norm of subgrad 37.774047 stepsize= 1.000000 +dualbound = 3358627.331988, lowerbound=1260275.331988, norm of subgrad 1123.196035 dualbound = 3358627.331988, lowerbound=1260275.331988, norm of subgrad 37.132783 stepsize= 1.000000 +dualbound = 3358722.502649, lowerbound=1263320.502649, norm of subgrad 1124.545910 dualbound = 3358722.502649, lowerbound=1263320.502649, norm of subgrad 37.123721 stepsize= 1.000000 +dualbound = 3358793.555940, lowerbound=1260023.555940, norm of subgrad 1123.102202 dualbound = 3358793.555940, lowerbound=1260023.555940, norm of subgrad 37.497377 stepsize= 1.000000 +dualbound = 3358910.209889, lowerbound=1262829.209889, norm of subgrad 1124.334118 dualbound = 3358910.209889, lowerbound=1262829.209889, norm of subgrad 37.611886 stepsize= 1.000000 +dualbound = 3358971.198739, lowerbound=1258800.198739, norm of subgrad 1122.561445 dualbound = 3358971.198739, lowerbound=1258800.198739, norm of subgrad 37.483181 stepsize= 1.000000 +dualbound = 3359074.852203, lowerbound=1255321.852203, norm of subgrad 1120.961575 dualbound = 3359074.852203, lowerbound=1255321.852203, norm of subgrad 36.560272 stepsize= 1.000000 +dualbound = 3359169.853332, lowerbound=1262195.853332, norm of subgrad 1124.014170 dualbound = 3359169.853332, lowerbound=1262195.853332, norm of subgrad 36.152471 stepsize= 1.000000 +dualbound = 3359293.492300, lowerbound=1258067.492300, norm of subgrad 1122.160636 dualbound = 3359293.492300, lowerbound=1258067.492300, norm of subgrad 36.064373 stepsize= 1.000000 +dualbound = 3359364.410556, lowerbound=1259130.410556, norm of subgrad 1122.678231 dualbound = 3359364.410556, lowerbound=1259130.410556, norm of subgrad 36.700385 stepsize= 1.000000 +dualbound = 3359439.780467, lowerbound=1261044.780467, norm of subgrad 1123.531388 dualbound = 3359439.780467, lowerbound=1261044.780467, norm of subgrad 36.788176 stepsize= 1.000000 +dualbound = 3359540.313883, lowerbound=1260946.313883, norm of subgrad 1123.455079 dualbound = 3359540.313883, lowerbound=1260946.313883, norm of subgrad 36.132166 stepsize= 1.000000 +dualbound = 3359636.731005, lowerbound=1256228.731005, norm of subgrad 1121.367349 dualbound = 3359636.731005, lowerbound=1256228.731005, norm of subgrad 36.502289 stepsize= 1.000000 +dualbound = 3359727.716455, lowerbound=1267176.716455, norm of subgrad 1126.249402 dualbound = 3359727.716455, lowerbound=1267176.716455, norm of subgrad 36.769355 stepsize= 1.000000 +dualbound = 3359780.777251, lowerbound=1255662.777251, norm of subgrad 1121.143959 dualbound = 3359780.777251, lowerbound=1255662.777251, norm of subgrad 36.797565 stepsize= 1.000000 +dualbound = 3359873.583469, lowerbound=1262243.583469, norm of subgrad 1124.076769 dualbound = 3359873.583469, lowerbound=1262243.583469, norm of subgrad 37.387247 stepsize= 1.000000 +dualbound = 3359957.218298, lowerbound=1262533.218298, norm of subgrad 1124.210042 dualbound = 3359957.218298, lowerbound=1262533.218298, norm of subgrad 37.398327 stepsize= 1.000000 +dualbound = 3360036.466463, lowerbound=1262862.466463, norm of subgrad 1124.351576 dualbound = 3360036.466463, lowerbound=1262862.466463, norm of subgrad 37.192044 stepsize= 1.000000 +dualbound = 3360152.241119, lowerbound=1259355.241119, norm of subgrad 1122.777022 dualbound = 3360152.241119, lowerbound=1259355.241119, norm of subgrad 37.266267 stepsize= 1.000000 +dualbound = 3360194.860377, lowerbound=1260425.860377, norm of subgrad 1123.274615 dualbound = 3360194.860377, lowerbound=1260425.860377, norm of subgrad 36.913673 stepsize= 1.000000 +dualbound = 3360315.134382, lowerbound=1259606.134382, norm of subgrad 1122.895870 dualbound = 3360315.134382, lowerbound=1259606.134382, norm of subgrad 37.540298 stepsize= 1.000000 +dualbound = 3360412.152166, lowerbound=1264961.152166, norm of subgrad 1125.269813 dualbound = 3360412.152166, lowerbound=1264961.152166, norm of subgrad 36.986724 stepsize= 1.000000 +dualbound = 3360507.305895, lowerbound=1256262.305895, norm of subgrad 1121.424231 dualbound = 3360507.305895, lowerbound=1256262.305895, norm of subgrad 37.751208 stepsize= 1.000000 +dualbound = 3360563.290503, lowerbound=1261051.290503, norm of subgrad 1123.550751 dualbound = 3360563.290503, lowerbound=1261051.290503, norm of subgrad 37.026809 stepsize= 1.000000 +dualbound = 3360666.874522, lowerbound=1260973.874522, norm of subgrad 1123.508734 dualbound = 3360666.874522, lowerbound=1260973.874522, norm of subgrad 37.437735 stepsize= 1.000000 +dualbound = 3360749.283692, lowerbound=1263784.283692, norm of subgrad 1124.780994 dualbound = 3360749.283692, lowerbound=1263784.283692, norm of subgrad 37.820751 stepsize= 1.000000 +dualbound = 3360851.896187, lowerbound=1258056.896187, norm of subgrad 1122.221857 dualbound = 3360851.896187, lowerbound=1258056.896187, norm of subgrad 37.783760 stepsize= 1.000000 +dualbound = 3360936.303447, lowerbound=1264017.303447, norm of subgrad 1124.843235 dualbound = 3360936.303447, lowerbound=1264017.303447, norm of subgrad 36.597913 stepsize= 1.000000 +dualbound = 3361048.694750, lowerbound=1262139.694750, norm of subgrad 1124.026109 dualbound = 3361048.694750, lowerbound=1262139.694750, norm of subgrad 37.515214 stepsize= 1.000000 +dualbound = 3361102.707939, lowerbound=1263329.707939, norm of subgrad 1124.549113 dualbound = 3361102.707939, lowerbound=1263329.707939, norm of subgrad 36.537832 stepsize= 1.000000 +dualbound = 3361216.981275, lowerbound=1258031.981275, norm of subgrad 1122.199172 dualbound = 3361216.981275, lowerbound=1258031.981275, norm of subgrad 37.593528 stepsize= 1.000000 +dualbound = 3361294.966524, lowerbound=1261337.966524, norm of subgrad 1123.676985 dualbound = 3361294.966524, lowerbound=1261337.966524, norm of subgrad 37.282506 stepsize= 1.000000 +dualbound = 3361364.484373, lowerbound=1259368.484373, norm of subgrad 1122.769114 dualbound = 3361364.484373, lowerbound=1259368.484373, norm of subgrad 36.214884 stepsize= 1.000000 +dualbound = 3361496.328575, lowerbound=1265997.328575, norm of subgrad 1125.694154 dualbound = 3361496.328575, lowerbound=1265997.328575, norm of subgrad 36.357175 stepsize= 1.000000 +dualbound = 3361562.324965, lowerbound=1259976.324965, norm of subgrad 1123.072271 dualbound = 3361562.324965, lowerbound=1259976.324965, norm of subgrad 37.161760 stepsize= 1.000000 +dualbound = 3361628.155044, lowerbound=1262305.155044, norm of subgrad 1124.117945 dualbound = 3361628.155044, lowerbound=1262305.155044, norm of subgrad 37.441021 stepsize= 1.000000 +dualbound = 3361740.290621, lowerbound=1259218.290621, norm of subgrad 1122.713361 dualbound = 3361740.290621, lowerbound=1259218.290621, norm of subgrad 37.136715 stepsize= 1.000000 +dualbound = 3361805.055409, lowerbound=1260291.055409, norm of subgrad 1123.170092 dualbound = 3361805.055409, lowerbound=1260291.055409, norm of subgrad 35.843616 stepsize= 1.000000 +dualbound = 3361943.532888, lowerbound=1256170.532888, norm of subgrad 1121.332035 dualbound = 3361943.532888, lowerbound=1256170.532888, norm of subgrad 36.789638 stepsize= 1.000000 +dualbound = 3362002.647914, lowerbound=1264385.647914, norm of subgrad 1124.997177 dualbound = 3362002.647914, lowerbound=1264385.647914, norm of subgrad 35.946002 stepsize= 1.000000 +dualbound = 3362105.028642, lowerbound=1264187.028642, norm of subgrad 1124.938233 dualbound = 3362105.028642, lowerbound=1264187.028642, norm of subgrad 37.435020 stepsize= 1.000000 +dualbound = 3362135.032034, lowerbound=1259249.032034, norm of subgrad 1122.763569 dualbound = 3362135.032034, lowerbound=1259249.032034, norm of subgrad 37.134935 stepsize= 1.000000 +dualbound = 3362239.723712, lowerbound=1260295.723712, norm of subgrad 1123.213125 dualbound = 3362239.723712, lowerbound=1260295.723712, norm of subgrad 37.638965 stepsize= 1.000000 +dualbound = 3362332.547623, lowerbound=1260885.547623, norm of subgrad 1123.435155 dualbound = 3362332.547623, lowerbound=1260885.547623, norm of subgrad 36.246709 stepsize= 1.000000 +dualbound = 3362449.415848, lowerbound=1258159.415848, norm of subgrad 1122.218524 dualbound = 3362449.415848, lowerbound=1258159.415848, norm of subgrad 36.494770 stepsize= 1.000000 +dualbound = 3362527.637739, lowerbound=1264287.637739, norm of subgrad 1124.977617 dualbound = 3362527.637739, lowerbound=1264287.637739, norm of subgrad 36.948909 stepsize= 1.000000 +dualbound = 3362599.079297, lowerbound=1263013.079297, norm of subgrad 1124.416328 dualbound = 3362599.079297, lowerbound=1263013.079297, norm of subgrad 37.019475 stepsize= 1.000000 +dualbound = 3362692.979211, lowerbound=1260146.979211, norm of subgrad 1123.129102 dualbound = 3362692.979211, lowerbound=1260146.979211, norm of subgrad 36.958083 stepsize= 1.000000 +dualbound = 3362776.367251, lowerbound=1261074.367251, norm of subgrad 1123.551675 dualbound = 3362776.367251, lowerbound=1261074.367251, norm of subgrad 37.113179 stepsize= 1.000000 +dualbound = 3362861.883078, lowerbound=1264221.883078, norm of subgrad 1125.000392 dualbound = 3362861.883078, lowerbound=1264221.883078, norm of subgrad 38.594246 stepsize= 1.000000 +dualbound = 3362917.722983, lowerbound=1259750.722983, norm of subgrad 1122.975834 dualbound = 3362917.722983, lowerbound=1259750.722983, norm of subgrad 37.146196 stepsize= 1.000000 +dualbound = 3363049.980461, lowerbound=1263409.980461, norm of subgrad 1124.563018 dualbound = 3363049.980461, lowerbound=1263409.980461, norm of subgrad 36.935856 stepsize= 1.000000 +dualbound = 3363134.459585, lowerbound=1262408.459585, norm of subgrad 1124.121639 dualbound = 3363134.459585, lowerbound=1262408.459585, norm of subgrad 36.407130 stepsize= 1.000000 +dualbound = 3363255.310716, lowerbound=1262121.310716, norm of subgrad 1123.976117 dualbound = 3363255.310716, lowerbound=1262121.310716, norm of subgrad 36.357271 stepsize= 1.000000 +dualbound = 3363335.053164, lowerbound=1257912.053164, norm of subgrad 1122.126131 dualbound = 3363335.053164, lowerbound=1257912.053164, norm of subgrad 36.534127 stepsize= 1.000000 +dualbound = 3363412.522792, lowerbound=1261319.522792, norm of subgrad 1123.651869 dualbound = 3363412.522792, lowerbound=1261319.522792, norm of subgrad 36.762340 stepsize= 1.000000 +dualbound = 3363503.630913, lowerbound=1257917.630913, norm of subgrad 1122.125943 dualbound = 3363503.630913, lowerbound=1257917.630913, norm of subgrad 36.607487 stepsize= 1.000000 +dualbound = 3363587.477342, lowerbound=1260894.477342, norm of subgrad 1123.448921 dualbound = 3363587.477342, lowerbound=1260894.477342, norm of subgrad 36.425903 stepsize= 1.000000 +dualbound = 3363678.794951, lowerbound=1259134.794951, norm of subgrad 1122.681965 dualbound = 3363678.794951, lowerbound=1259134.794951, norm of subgrad 37.031306 stepsize= 1.000000 +dualbound = 3363755.423284, lowerbound=1258899.423284, norm of subgrad 1122.605640 dualbound = 3363755.423284, lowerbound=1258899.423284, norm of subgrad 37.691224 stepsize= 1.000000 +dualbound = 3363812.821727, lowerbound=1262884.821727, norm of subgrad 1124.397537 dualbound = 3363812.821727, lowerbound=1262884.821727, norm of subgrad 37.978921 stepsize= 1.000000 +dualbound = 3363922.975807, lowerbound=1259994.975807, norm of subgrad 1123.066327 dualbound = 3363922.975807, lowerbound=1259994.975807, norm of subgrad 37.324979 stepsize= 1.000000 +dualbound = 3364033.374257, lowerbound=1259494.374257, norm of subgrad 1122.843878 dualbound = 3364033.374257, lowerbound=1259494.374257, norm of subgrad 37.341645 stepsize= 1.000000 +dualbound = 3364086.047725, lowerbound=1263079.047725, norm of subgrad 1124.456779 dualbound = 3364086.047725, lowerbound=1263079.047725, norm of subgrad 37.103551 stepsize= 1.000000 +dualbound = 3364200.105461, lowerbound=1260550.105461, norm of subgrad 1123.310334 dualbound = 3364200.105461, lowerbound=1260550.105461, norm of subgrad 37.283478 stepsize= 1.000000 +dualbound = 3364292.567923, lowerbound=1258289.567923, norm of subgrad 1122.311707 dualbound = 3364292.567923, lowerbound=1258289.567923, norm of subgrad 37.235231 stepsize= 1.000000 +dualbound = 3364346.784704, lowerbound=1262550.784704, norm of subgrad 1124.245429 dualbound = 3364346.784704, lowerbound=1262550.784704, norm of subgrad 37.831426 stepsize= 1.000000 +dualbound = 3364441.416556, lowerbound=1257572.416556, norm of subgrad 1121.997512 dualbound = 3364441.416556, lowerbound=1257572.416556, norm of subgrad 37.425016 stepsize= 1.000000 +dualbound = 3364531.668757, lowerbound=1262235.668757, norm of subgrad 1124.066577 dualbound = 3364531.668757, lowerbound=1262235.668757, norm of subgrad 37.151746 stepsize= 1.000000 +dualbound = 3364619.260880, lowerbound=1266621.260880, norm of subgrad 1126.031199 dualbound = 3364619.260880, lowerbound=1266621.260880, norm of subgrad 37.584467 stepsize= 1.000000 +dualbound = 3364715.496538, lowerbound=1256824.496538, norm of subgrad 1121.659706 dualbound = 3364715.496538, lowerbound=1256824.496538, norm of subgrad 37.312674 stepsize= 1.000000 +dualbound = 3364785.799353, lowerbound=1263379.799353, norm of subgrad 1124.562937 dualbound = 3364785.799353, lowerbound=1263379.799353, norm of subgrad 36.500723 stepsize= 1.000000 +dualbound = 3364904.369047, lowerbound=1262819.369047, norm of subgrad 1124.322627 dualbound = 3364904.369047, lowerbound=1262819.369047, norm of subgrad 37.424186 stepsize= 1.000000 +dualbound = 3364971.769218, lowerbound=1262843.769218, norm of subgrad 1124.333922 dualbound = 3364971.769218, lowerbound=1262843.769218, norm of subgrad 36.747791 stepsize= 1.000000 +dualbound = 3365097.291405, lowerbound=1260644.291405, norm of subgrad 1123.352701 dualbound = 3365097.291405, lowerbound=1260644.291405, norm of subgrad 37.450263 stepsize= 1.000000 +dualbound = 3365142.206598, lowerbound=1258560.206598, norm of subgrad 1122.451873 dualbound = 3365142.206598, lowerbound=1258560.206598, norm of subgrad 37.187568 stepsize= 1.000000 +dualbound = 3365247.318315, lowerbound=1257861.318315, norm of subgrad 1122.114218 dualbound = 3365247.318315, lowerbound=1257861.318315, norm of subgrad 37.203652 stepsize= 1.000000 +dualbound = 3365333.494948, lowerbound=1261647.494948, norm of subgrad 1123.778668 dualbound = 3365333.494948, lowerbound=1261647.494948, norm of subgrad 36.292928 stepsize= 1.000000 +dualbound = 3365420.732557, lowerbound=1260039.732557, norm of subgrad 1123.075123 dualbound = 3365420.732557, lowerbound=1260039.732557, norm of subgrad 36.677481 stepsize= 1.000000 +dualbound = 3365521.461123, lowerbound=1265176.461123, norm of subgrad 1125.351261 dualbound = 3365521.461123, lowerbound=1265176.461123, norm of subgrad 36.602303 stepsize= 1.000000 +dualbound = 3365602.952752, lowerbound=1258343.952752, norm of subgrad 1122.304305 dualbound = 3365602.952752, lowerbound=1258343.952752, norm of subgrad 36.117747 stepsize= 1.000000 +dualbound = 3365691.763086, lowerbound=1267089.763086, norm of subgrad 1126.205915 dualbound = 3365691.763086, lowerbound=1267089.763086, norm of subgrad 36.589757 stepsize= 1.000000 +dualbound = 3365771.978719, lowerbound=1258226.978719, norm of subgrad 1122.296297 dualbound = 3365771.978719, lowerbound=1258226.978719, norm of subgrad 37.446170 stepsize= 1.000000 +dualbound = 3365856.871999, lowerbound=1264644.871999, norm of subgrad 1125.120381 dualbound = 3365856.871999, lowerbound=1264644.871999, norm of subgrad 36.549874 stepsize= 1.000000 +dualbound = 3365938.093010, lowerbound=1255684.093010, norm of subgrad 1121.154357 dualbound = 3365938.093010, lowerbound=1255684.093010, norm of subgrad 37.205121 stepsize= 1.000000 +dualbound = 3366048.225260, lowerbound=1263729.225260, norm of subgrad 1124.689391 dualbound = 3366048.225260, lowerbound=1263729.225260, norm of subgrad 36.154284 stepsize= 1.000000 +dualbound = 3366155.492474, lowerbound=1263302.492474, norm of subgrad 1124.489436 dualbound = 3366155.492474, lowerbound=1263302.492474, norm of subgrad 35.794793 stepsize= 1.000000 +dualbound = 3366240.456742, lowerbound=1263885.456742, norm of subgrad 1124.772624 dualbound = 3366240.456742, lowerbound=1263885.456742, norm of subgrad 36.234849 stepsize= 1.000000 +dualbound = 3366303.178624, lowerbound=1262925.178624, norm of subgrad 1124.377685 dualbound = 3366303.178624, lowerbound=1262925.178624, norm of subgrad 36.915063 stepsize= 1.000000 +dualbound = 3366386.918818, lowerbound=1258799.918818, norm of subgrad 1122.515888 dualbound = 3366386.918818, lowerbound=1258799.918818, norm of subgrad 36.410715 stepsize= 1.000000 +dualbound = 3366489.294987, lowerbound=1255384.294987, norm of subgrad 1120.975600 dualbound = 3366489.294987, lowerbound=1255384.294987, norm of subgrad 36.116148 stepsize= 1.000000 +dualbound = 3366579.029158, lowerbound=1261922.029158, norm of subgrad 1123.897695 dualbound = 3366579.029158, lowerbound=1261922.029158, norm of subgrad 36.245471 stepsize= 1.000000 +dualbound = 3366665.631229, lowerbound=1263013.631229, norm of subgrad 1124.399676 dualbound = 3366665.631229, lowerbound=1263013.631229, norm of subgrad 36.709700 stepsize= 1.000000 +dualbound = 3366721.337531, lowerbound=1266046.337531, norm of subgrad 1125.761226 dualbound = 3366721.337531, lowerbound=1266046.337531, norm of subgrad 36.711120 stepsize= 1.000000 +dualbound = 3366829.827786, lowerbound=1265376.827786, norm of subgrad 1125.446502 dualbound = 3366829.827786, lowerbound=1265376.827786, norm of subgrad 36.898377 stepsize= 1.000000 +dualbound = 3366909.941147, lowerbound=1264546.941147, norm of subgrad 1125.091970 dualbound = 3366909.941147, lowerbound=1264546.941147, norm of subgrad 36.947441 stepsize= 1.000000 +dualbound = 3366982.745285, lowerbound=1258073.745285, norm of subgrad 1122.229809 dualbound = 3366982.745285, lowerbound=1258073.745285, norm of subgrad 37.400590 stepsize= 1.000000 +dualbound = 3367066.247787, lowerbound=1263859.247787, norm of subgrad 1124.795647 dualbound = 3367066.247787, lowerbound=1263859.247787, norm of subgrad 37.276031 stepsize= 1.000000 +dualbound = 3367160.626913, lowerbound=1258665.626913, norm of subgrad 1122.496159 dualbound = 3367160.626913, lowerbound=1258665.626913, norm of subgrad 37.767435 stepsize= 1.000000 +dualbound = 3367251.099765, lowerbound=1261836.099765, norm of subgrad 1123.898171 dualbound = 3367251.099765, lowerbound=1261836.099765, norm of subgrad 37.436251 stepsize= 1.000000 +dualbound = 3367329.111709, lowerbound=1259481.111709, norm of subgrad 1122.832629 dualbound = 3367329.111709, lowerbound=1259481.111709, norm of subgrad 36.742509 stepsize= 1.000000 +dualbound = 3367448.983604, lowerbound=1258970.983604, norm of subgrad 1122.592082 dualbound = 3367448.983604, lowerbound=1258970.983604, norm of subgrad 36.903549 stepsize= 1.000000 +dualbound = 3367526.499406, lowerbound=1263099.499406, norm of subgrad 1124.440972 dualbound = 3367526.499406, lowerbound=1263099.499406, norm of subgrad 36.681273 stepsize= 1.000000 +dualbound = 3367631.713693, lowerbound=1263766.713693, norm of subgrad 1124.728284 dualbound = 3367631.713693, lowerbound=1263766.713693, norm of subgrad 36.772466 stepsize= 1.000000 +dualbound = 3367699.318917, lowerbound=1262848.318917, norm of subgrad 1124.350621 dualbound = 3367699.318917, lowerbound=1262848.318917, norm of subgrad 37.196844 stepsize= 1.000000 +dualbound = 3367769.080882, lowerbound=1263738.080882, norm of subgrad 1124.704886 dualbound = 3367769.080882, lowerbound=1263738.080882, norm of subgrad 35.954999 stepsize= 1.000000 +dualbound = 3367877.520744, lowerbound=1263408.520744, norm of subgrad 1124.592602 dualbound = 3367877.520744, lowerbound=1263408.520744, norm of subgrad 37.529187 stepsize= 1.000000 +dualbound = 3367942.901081, lowerbound=1260912.901081, norm of subgrad 1123.477148 dualbound = 3367942.901081, lowerbound=1260912.901081, norm of subgrad 36.788318 stepsize= 1.000000 +dualbound = 3368061.890552, lowerbound=1263694.890552, norm of subgrad 1124.698133 dualbound = 3368061.890552, lowerbound=1263694.890552, norm of subgrad 37.013369 stepsize= 1.000000 +dualbound = 3368140.699287, lowerbound=1261312.699287, norm of subgrad 1123.650613 dualbound = 3368140.699287, lowerbound=1261312.699287, norm of subgrad 36.834885 stepsize= 1.000000 +dualbound = 3368223.717378, lowerbound=1263573.717378, norm of subgrad 1124.647819 dualbound = 3368223.717378, lowerbound=1263573.717378, norm of subgrad 36.633565 stepsize= 1.000000 +dualbound = 3368284.215412, lowerbound=1262363.215412, norm of subgrad 1124.176239 dualbound = 3368284.215412, lowerbound=1262363.215412, norm of subgrad 38.334032 stepsize= 1.000000 +dualbound = 3368364.483357, lowerbound=1264349.483357, norm of subgrad 1125.018437 dualbound = 3368364.483357, lowerbound=1264349.483357, norm of subgrad 37.380047 stepsize= 1.000000 +dualbound = 3368455.876321, lowerbound=1258258.876321, norm of subgrad 1122.289123 dualbound = 3368455.876321, lowerbound=1258258.876321, norm of subgrad 36.951224 stepsize= 1.000000 +dualbound = 3368563.127413, lowerbound=1259488.127413, norm of subgrad 1122.851338 dualbound = 3368563.127413, lowerbound=1259488.127413, norm of subgrad 37.606530 stepsize= 1.000000 +dualbound = 3368637.092107, lowerbound=1260324.092107, norm of subgrad 1123.212398 dualbound = 3368637.092107, lowerbound=1260324.092107, norm of subgrad 36.823426 stepsize= 1.000000 +dualbound = 3368755.870476, lowerbound=1259790.870476, norm of subgrad 1122.959425 dualbound = 3368755.870476, lowerbound=1259790.870476, norm of subgrad 36.956439 stepsize= 1.000000 +dualbound = 3368859.453756, lowerbound=1257906.453756, norm of subgrad 1122.122745 dualbound = 3368859.453756, lowerbound=1257906.453756, norm of subgrad 36.831824 stepsize= 1.000000 +dualbound = 3368942.754739, lowerbound=1265524.754739, norm of subgrad 1125.510442 dualbound = 3368942.754739, lowerbound=1265524.754739, norm of subgrad 36.500698 stepsize= 1.000000 +dualbound = 3369014.000869, lowerbound=1262779.000869, norm of subgrad 1124.292222 dualbound = 3369014.000869, lowerbound=1262779.000869, norm of subgrad 36.403930 stepsize= 1.000000 +dualbound = 3369103.762982, lowerbound=1260051.762982, norm of subgrad 1123.080479 dualbound = 3369103.762982, lowerbound=1260051.762982, norm of subgrad 36.711880 stepsize= 1.000000 +dualbound = 3369183.542707, lowerbound=1259915.542707, norm of subgrad 1123.012708 dualbound = 3369183.542707, lowerbound=1259915.542707, norm of subgrad 36.356289 stepsize= 1.000000 +dualbound = 3369283.678389, lowerbound=1262001.678389, norm of subgrad 1123.957596 dualbound = 3369283.678389, lowerbound=1262001.678389, norm of subgrad 37.136716 stepsize= 1.000000 +dualbound = 3369338.645995, lowerbound=1262664.645995, norm of subgrad 1124.296067 dualbound = 3369338.645995, lowerbound=1262664.645995, norm of subgrad 37.841348 stepsize= 1.000000 +dualbound = 3369450.218278, lowerbound=1263036.218278, norm of subgrad 1124.403050 dualbound = 3369450.218278, lowerbound=1263036.218278, norm of subgrad 36.845248 stepsize= 1.000000 +dualbound = 3369528.737775, lowerbound=1264716.737775, norm of subgrad 1125.171426 dualbound = 3369528.737775, lowerbound=1264716.737775, norm of subgrad 37.047530 stepsize= 1.000000 +dualbound = 3369641.277477, lowerbound=1261692.277477, norm of subgrad 1123.794144 dualbound = 3369641.277477, lowerbound=1261692.277477, norm of subgrad 36.517663 stepsize= 1.000000 +dualbound = 3369689.401733, lowerbound=1259235.401733, norm of subgrad 1122.757499 dualbound = 3369689.401733, lowerbound=1259235.401733, norm of subgrad 37.378125 stepsize= 1.000000 +dualbound = 3369783.318360, lowerbound=1260323.318360, norm of subgrad 1123.230750 dualbound = 3369783.318360, lowerbound=1260323.318360, norm of subgrad 37.655234 stepsize= 1.000000 +dualbound = 3369863.590149, lowerbound=1263220.590149, norm of subgrad 1124.482365 dualbound = 3369863.590149, lowerbound=1263220.590149, norm of subgrad 36.335544 stepsize= 1.000000 +dualbound = 3370005.365145, lowerbound=1261774.365145, norm of subgrad 1123.842678 dualbound = 3370005.365145, lowerbound=1261774.365145, norm of subgrad 37.279686 stepsize= 1.000000 +dualbound = 3370058.847824, lowerbound=1264958.847824, norm of subgrad 1125.299892 dualbound = 3370058.847824, lowerbound=1264958.847824, norm of subgrad 37.342773 stepsize= 1.000000 +dualbound = 3370122.434114, lowerbound=1264112.434114, norm of subgrad 1124.920635 dualbound = 3370122.434114, lowerbound=1264112.434114, norm of subgrad 37.384305 stepsize= 1.000000 +dualbound = 3370219.416363, lowerbound=1257796.416363, norm of subgrad 1122.088417 dualbound = 3370219.416363, lowerbound=1257796.416363, norm of subgrad 37.188469 stepsize= 1.000000 +dualbound = 3370304.524777, lowerbound=1258431.524777, norm of subgrad 1122.333518 dualbound = 3370304.524777, lowerbound=1258431.524777, norm of subgrad 35.862354 stepsize= 1.000000 +dualbound = 3370419.091839, lowerbound=1263261.091839, norm of subgrad 1124.487924 dualbound = 3370419.091839, lowerbound=1263261.091839, norm of subgrad 36.422068 stepsize= 1.000000 +dualbound = 3370511.147009, lowerbound=1261405.147009, norm of subgrad 1123.669056 dualbound = 3370511.147009, lowerbound=1261405.147009, norm of subgrad 36.318799 stepsize= 1.000000 +dualbound = 3370574.855891, lowerbound=1262446.855891, norm of subgrad 1124.140941 dualbound = 3370574.855891, lowerbound=1262446.855891, norm of subgrad 36.189900 stepsize= 1.000000 +dualbound = 3370678.377289, lowerbound=1262090.377289, norm of subgrad 1123.993940 dualbound = 3370678.377289, lowerbound=1262090.377289, norm of subgrad 37.088022 stepsize= 1.000000 +dualbound = 3370762.022150, lowerbound=1261715.022150, norm of subgrad 1123.853648 dualbound = 3370762.022150, lowerbound=1261715.022150, norm of subgrad 37.625056 stepsize= 1.000000 +dualbound = 3370833.029050, lowerbound=1264228.029050, norm of subgrad 1124.955568 dualbound = 3370833.029050, lowerbound=1264228.029050, norm of subgrad 36.986577 stepsize= 1.000000 +dualbound = 3370935.427384, lowerbound=1269241.427384, norm of subgrad 1127.181630 dualbound = 3370935.427384, lowerbound=1269241.427384, norm of subgrad 37.408533 stepsize= 1.000000 +dualbound = 3371016.745293, lowerbound=1260527.745293, norm of subgrad 1123.299936 dualbound = 3371016.745293, lowerbound=1260527.745293, norm of subgrad 36.828222 stepsize= 1.000000 +dualbound = 3371101.996290, lowerbound=1260903.996290, norm of subgrad 1123.486981 dualbound = 3371101.996290, lowerbound=1260903.996290, norm of subgrad 37.473337 stepsize= 1.000000 +dualbound = 3371170.033891, lowerbound=1260150.033891, norm of subgrad 1123.132242 dualbound = 3371170.033891, lowerbound=1260150.033891, norm of subgrad 36.661118 stepsize= 1.000000 +dualbound = 3371255.456326, lowerbound=1262599.456326, norm of subgrad 1124.225714 dualbound = 3371255.456326, lowerbound=1262599.456326, norm of subgrad 37.005708 stepsize= 1.000000 +dualbound = 3371360.600583, lowerbound=1259437.600583, norm of subgrad 1122.816815 dualbound = 3371360.600583, lowerbound=1259437.600583, norm of subgrad 37.217526 stepsize= 1.000000 +dualbound = 3371437.017637, lowerbound=1264305.017637, norm of subgrad 1124.992008 dualbound = 3371437.017637, lowerbound=1264305.017637, norm of subgrad 37.127039 stepsize= 1.000000 +dualbound = 3371543.471934, lowerbound=1258598.471934, norm of subgrad 1122.453327 dualbound = 3371543.471934, lowerbound=1258598.471934, norm of subgrad 37.542700 stepsize= 1.000000 +dualbound = 3371636.726097, lowerbound=1263646.726097, norm of subgrad 1124.675832 dualbound = 3371636.726097, lowerbound=1263646.726097, norm of subgrad 36.636787 stepsize= 1.000000 +dualbound = 3371726.650295, lowerbound=1261584.650295, norm of subgrad 1123.754266 dualbound = 3371726.650295, lowerbound=1261584.650295, norm of subgrad 36.454413 stepsize= 1.000000 +dualbound = 3371820.596179, lowerbound=1267854.596179, norm of subgrad 1126.534330 dualbound = 3371820.596179, lowerbound=1267854.596179, norm of subgrad 36.317295 stepsize= 1.000000 +dualbound = 3371913.100600, lowerbound=1262741.100600, norm of subgrad 1124.285151 dualbound = 3371913.100600, lowerbound=1262741.100600, norm of subgrad 36.993302 stepsize= 1.000000 +dualbound = 3371962.374634, lowerbound=1264316.374634, norm of subgrad 1124.996166 dualbound = 3371962.374634, lowerbound=1264316.374634, norm of subgrad 36.732466 stepsize= 1.000000 +dualbound = 3372062.118130, lowerbound=1261939.118130, norm of subgrad 1123.946671 dualbound = 3372062.118130, lowerbound=1261939.118130, norm of subgrad 37.639653 stepsize= 1.000000 +dualbound = 3372130.874906, lowerbound=1260274.874906, norm of subgrad 1123.195831 dualbound = 3372130.874906, lowerbound=1260274.874906, norm of subgrad 36.915536 stepsize= 1.000000 +dualbound = 3372225.689708, lowerbound=1263374.689708, norm of subgrad 1124.595345 dualbound = 3372225.689708, lowerbound=1263374.689708, norm of subgrad 37.878949 stepsize= 1.000000 +dualbound = 3372318.549642, lowerbound=1260863.549642, norm of subgrad 1123.468980 dualbound = 3372318.549642, lowerbound=1260863.549642, norm of subgrad 37.574725 stepsize= 1.000000 +dualbound = 3372414.597880, lowerbound=1264038.597880, norm of subgrad 1124.869591 dualbound = 3372414.597880, lowerbound=1264038.597880, norm of subgrad 37.269937 stepsize= 1.000000 +dualbound = 3372489.920777, lowerbound=1265050.920777, norm of subgrad 1125.334582 dualbound = 3372489.920777, lowerbound=1265050.920777, norm of subgrad 37.447602 stepsize= 1.000000 +dualbound = 3372569.696240, lowerbound=1259467.696240, norm of subgrad 1122.869848 dualbound = 3372569.696240, lowerbound=1259467.696240, norm of subgrad 38.062783 stepsize= 1.000000 +dualbound = 3372656.348047, lowerbound=1263852.348047, norm of subgrad 1124.787690 dualbound = 3372656.348047, lowerbound=1263852.348047, norm of subgrad 37.170577 stepsize= 1.000000 +dualbound = 3372779.923761, lowerbound=1263370.923761, norm of subgrad 1124.544318 dualbound = 3372779.923761, lowerbound=1263370.923761, norm of subgrad 36.777380 stepsize= 1.000000 +dualbound = 3372862.838341, lowerbound=1262309.838341, norm of subgrad 1124.057311 dualbound = 3372862.838341, lowerbound=1262309.838341, norm of subgrad 35.747931 stepsize= 1.000000 +dualbound = 3372952.244599, lowerbound=1262656.244599, norm of subgrad 1124.253194 dualbound = 3372952.244599, lowerbound=1262656.244599, norm of subgrad 37.126894 stepsize= 1.000000 +dualbound = 3373023.898899, lowerbound=1261951.898899, norm of subgrad 1123.929223 dualbound = 3373023.898899, lowerbound=1261951.898899, norm of subgrad 36.560283 stepsize= 1.000000 +dualbound = 3373110.128859, lowerbound=1259847.128859, norm of subgrad 1123.010298 dualbound = 3373110.128859, lowerbound=1259847.128859, norm of subgrad 37.299195 stepsize= 1.000000 +dualbound = 3373194.653225, lowerbound=1265286.653225, norm of subgrad 1125.398886 dualbound = 3373194.653225, lowerbound=1265286.653225, norm of subgrad 36.339020 stepsize= 1.000000 +dualbound = 3373310.991410, lowerbound=1258332.991410, norm of subgrad 1122.319469 dualbound = 3373310.991410, lowerbound=1258332.991410, norm of subgrad 37.206695 stepsize= 1.000000 +dualbound = 3373361.094567, lowerbound=1270315.094567, norm of subgrad 1127.660895 dualbound = 3373361.094567, lowerbound=1270315.094567, norm of subgrad 36.798141 stepsize= 1.000000 +dualbound = 3373454.847957, lowerbound=1257978.847957, norm of subgrad 1122.181290 dualbound = 3373454.847957, lowerbound=1257978.847957, norm of subgrad 37.493378 stepsize= 1.000000 +dualbound = 3373537.159528, lowerbound=1265425.159528, norm of subgrad 1125.482634 dualbound = 3373537.159528, lowerbound=1265425.159528, norm of subgrad 36.990696 stepsize= 1.000000 +dualbound = 3373640.065763, lowerbound=1261416.065763, norm of subgrad 1123.708621 dualbound = 3373640.065763, lowerbound=1261416.065763, norm of subgrad 37.522077 stepsize= 1.000000 +dualbound = 3373697.499895, lowerbound=1266240.499895, norm of subgrad 1125.856785 dualbound = 3373697.499895, lowerbound=1266240.499895, norm of subgrad 37.019375 stepsize= 1.000000 +dualbound = 3373812.334425, lowerbound=1260337.334425, norm of subgrad 1123.218293 dualbound = 3373812.334425, lowerbound=1260337.334425, norm of subgrad 37.374250 stepsize= 1.000000 +dualbound = 3373903.525026, lowerbound=1266222.525026, norm of subgrad 1125.859016 dualbound = 3373903.525026, lowerbound=1266222.525026, norm of subgrad 37.778176 stepsize= 1.000000 +dualbound = 3373958.588313, lowerbound=1260222.588313, norm of subgrad 1123.182349 dualbound = 3373958.588313, lowerbound=1260222.588313, norm of subgrad 37.027872 stepsize= 1.000000 +dualbound = 3374061.657429, lowerbound=1266646.657429, norm of subgrad 1126.010505 dualbound = 3374061.657429, lowerbound=1266646.657429, norm of subgrad 36.824844 stepsize= 1.000000 +dualbound = 3374154.894423, lowerbound=1261594.894423, norm of subgrad 1123.765943 dualbound = 3374154.894423, lowerbound=1261594.894423, norm of subgrad 36.718347 stepsize= 1.000000 +dualbound = 3374244.874519, lowerbound=1265223.874519, norm of subgrad 1125.359442 dualbound = 3374244.874519, lowerbound=1265223.874519, norm of subgrad 36.055237 stepsize= 1.000000 +dualbound = 3374347.366251, lowerbound=1258737.366251, norm of subgrad 1122.478225 dualbound = 3374347.366251, lowerbound=1258737.366251, norm of subgrad 36.366079 stepsize= 1.000000 +dualbound = 3374443.498543, lowerbound=1265616.498543, norm of subgrad 1125.535205 dualbound = 3374443.498543, lowerbound=1265616.498543, norm of subgrad 36.181933 stepsize= 1.000000 +dualbound = 3374520.737076, lowerbound=1257226.737076, norm of subgrad 1121.799776 dualbound = 3374520.737076, lowerbound=1257226.737076, norm of subgrad 35.850224 stepsize= 1.000000 +dualbound = 3374599.854596, lowerbound=1268109.854596, norm of subgrad 1126.656937 dualbound = 3374599.854596, lowerbound=1268109.854596, norm of subgrad 36.402164 stepsize= 1.000000 +dualbound = 3374684.471628, lowerbound=1263273.471628, norm of subgrad 1124.530334 dualbound = 3374684.471628, lowerbound=1263273.471628, norm of subgrad 37.143196 stepsize= 1.000000 +dualbound = 3374760.678172, lowerbound=1262117.678172, norm of subgrad 1124.022988 dualbound = 3374760.678172, lowerbound=1262117.678172, norm of subgrad 37.231795 stepsize= 1.000000 +dualbound = 3374835.833036, lowerbound=1264185.833036, norm of subgrad 1124.928368 dualbound = 3374835.833036, lowerbound=1264185.833036, norm of subgrad 36.785253 stepsize= 1.000000 +dualbound = 3374945.354938, lowerbound=1260048.354938, norm of subgrad 1123.080298 dualbound = 3374945.354938, lowerbound=1260048.354938, norm of subgrad 37.020561 stepsize= 1.000000 +dualbound = 3375004.837484, lowerbound=1261837.837484, norm of subgrad 1123.916740 dualbound = 3375004.837484, lowerbound=1261837.837484, norm of subgrad 37.556392 stepsize= 1.000000 +dualbound = 3375098.761628, lowerbound=1263295.761628, norm of subgrad 1124.539800 dualbound = 3375098.761628, lowerbound=1263295.761628, norm of subgrad 37.254854 stepsize= 1.000000 +dualbound = 3375198.009814, lowerbound=1265978.009814, norm of subgrad 1125.716665 dualbound = 3375198.009814, lowerbound=1265978.009814, norm of subgrad 36.867983 stepsize= 1.000000 +dualbound = 3375301.153940, lowerbound=1265496.153940, norm of subgrad 1125.537273 dualbound = 3375301.153940, lowerbound=1265496.153940, norm of subgrad 37.962404 stepsize= 1.000000 +dualbound = 3375362.226912, lowerbound=1266153.226912, norm of subgrad 1125.829129 dualbound = 3375362.226912, lowerbound=1266153.226912, norm of subgrad 37.404184 stepsize= 1.000000 +dualbound = 3375445.067922, lowerbound=1265280.067922, norm of subgrad 1125.435946 dualbound = 3375445.067922, lowerbound=1265280.067922, norm of subgrad 37.534531 stepsize= 1.000000 +dualbound = 3375541.145875, lowerbound=1256237.145875, norm of subgrad 1121.413459 dualbound = 3375541.145875, lowerbound=1256237.145875, norm of subgrad 37.776685 stepsize= 1.000000 +dualbound = 3375623.178465, lowerbound=1269857.178465, norm of subgrad 1127.447195 dualbound = 3375623.178465, lowerbound=1269857.178465, norm of subgrad 36.905726 stepsize= 1.000000 +dualbound = 3375727.075232, lowerbound=1261624.075232, norm of subgrad 1123.798503 dualbound = 3375727.075232, lowerbound=1261624.075232, norm of subgrad 37.455264 stepsize= 1.000000 +dualbound = 3375802.504924, lowerbound=1264211.504924, norm of subgrad 1124.906443 dualbound = 3375802.504924, lowerbound=1264211.504924, norm of subgrad 35.755135 stepsize= 1.000000 +dualbound = 3375906.955106, lowerbound=1263464.955106, norm of subgrad 1124.626585 dualbound = 3375906.955106, lowerbound=1263464.955106, norm of subgrad 37.741889 stepsize= 1.000000 +dualbound = 3375947.354510, lowerbound=1266550.354510, norm of subgrad 1125.958416 dualbound = 3375947.354510, lowerbound=1266550.354510, norm of subgrad 35.670708 stepsize= 1.000000 +dualbound = 3376067.507113, lowerbound=1255467.507113, norm of subgrad 1121.072035 dualbound = 3376067.507113, lowerbound=1255467.507113, norm of subgrad 38.146463 stepsize= 1.000000 +dualbound = 3376119.294545, lowerbound=1262731.294545, norm of subgrad 1124.283903 dualbound = 3376119.294545, lowerbound=1262731.294545, norm of subgrad 36.534743 stepsize= 1.000000 +dualbound = 3376243.238033, lowerbound=1267535.238033, norm of subgrad 1126.396572 dualbound = 3376243.238033, lowerbound=1267535.238033, norm of subgrad 36.850285 stepsize= 1.000000 +dualbound = 3376328.937824, lowerbound=1261616.937824, norm of subgrad 1123.785984 dualbound = 3376328.937824, lowerbound=1261616.937824, norm of subgrad 36.928306 stepsize= 1.000000 +dualbound = 3376382.678457, lowerbound=1265648.678457, norm of subgrad 1125.587259 dualbound = 3376382.678457, lowerbound=1265648.678457, norm of subgrad 36.766026 stepsize= 1.000000 +dualbound = 3376476.882970, lowerbound=1265319.882970, norm of subgrad 1125.415871 dualbound = 3376476.882970, lowerbound=1265319.882970, norm of subgrad 36.540450 stepsize= 1.000000 +dualbound = 3376575.446649, lowerbound=1265092.446649, norm of subgrad 1125.301491 dualbound = 3376575.446649, lowerbound=1265092.446649, norm of subgrad 36.187894 stepsize= 1.000000 +dualbound = 3376688.207904, lowerbound=1264299.207904, norm of subgrad 1124.948536 dualbound = 3376688.207904, lowerbound=1264299.207904, norm of subgrad 36.369785 stepsize= 1.000000 +dualbound = 3376767.801738, lowerbound=1257289.801738, norm of subgrad 1121.831004 dualbound = 3376767.801738, lowerbound=1257289.801738, norm of subgrad 35.980465 stepsize= 1.000000 +dualbound = 3376840.529648, lowerbound=1266985.529648, norm of subgrad 1126.168517 dualbound = 3376840.529648, lowerbound=1266985.529648, norm of subgrad 36.643252 stepsize= 1.000000 +dualbound = 3376928.092809, lowerbound=1263204.092809, norm of subgrad 1124.499930 dualbound = 3376928.092809, lowerbound=1263204.092809, norm of subgrad 37.196279 stepsize= 1.000000 +dualbound = 3376996.461607, lowerbound=1262406.461607, norm of subgrad 1124.167453 dualbound = 3376996.461607, lowerbound=1262406.461607, norm of subgrad 37.608095 stepsize= 1.000000 +dualbound = 3377077.167835, lowerbound=1262906.167835, norm of subgrad 1124.353222 dualbound = 3377077.167835, lowerbound=1262906.167835, norm of subgrad 36.670236 stepsize= 1.000000 +dualbound = 3377173.948240, lowerbound=1261914.948240, norm of subgrad 1123.894990 dualbound = 3377173.948240, lowerbound=1261914.948240, norm of subgrad 36.356298 stepsize= 1.000000 +dualbound = 3377275.118893, lowerbound=1266813.118893, norm of subgrad 1126.081311 dualbound = 3377275.118893, lowerbound=1266813.118893, norm of subgrad 36.703823 stepsize= 1.000000 +dualbound = 3377339.346337, lowerbound=1264337.346337, norm of subgrad 1125.001932 dualbound = 3377339.346337, lowerbound=1264337.346337, norm of subgrad 36.826993 stepsize= 1.000000 +dualbound = 3377438.631855, lowerbound=1263228.631855, norm of subgrad 1124.509952 dualbound = 3377438.631855, lowerbound=1263228.631855, norm of subgrad 37.326740 stepsize= 1.000000 +dualbound = 3377517.723012, lowerbound=1261463.723012, norm of subgrad 1123.711584 dualbound = 3377517.723012, lowerbound=1261463.723012, norm of subgrad 36.648208 stepsize= 1.000000 +dualbound = 3377606.409477, lowerbound=1264102.409477, norm of subgrad 1124.910845 dualbound = 3377606.409477, lowerbound=1264102.409477, norm of subgrad 37.559106 stepsize= 1.000000 +dualbound = 3377661.718278, lowerbound=1261431.718278, norm of subgrad 1123.744508 dualbound = 3377661.718278, lowerbound=1261431.718278, norm of subgrad 37.753262 stepsize= 1.000000 +dualbound = 3377752.139064, lowerbound=1266190.139064, norm of subgrad 1125.814878 dualbound = 3377752.139064, lowerbound=1266190.139064, norm of subgrad 36.870324 stepsize= 1.000000 +dualbound = 3377878.670261, lowerbound=1262581.670261, norm of subgrad 1124.222251 dualbound = 3377878.670261, lowerbound=1262581.670261, norm of subgrad 37.689935 stepsize= 1.000000 +dualbound = 3377942.212650, lowerbound=1263927.212650, norm of subgrad 1124.804966 dualbound = 3377942.212650, lowerbound=1263927.212650, norm of subgrad 36.366776 stepsize= 1.000000 +dualbound = 3378053.059990, lowerbound=1266987.059990, norm of subgrad 1126.182516 dualbound = 3378053.059990, lowerbound=1266987.059990, norm of subgrad 37.561248 stepsize= 1.000000 +dualbound = 3378112.310912, lowerbound=1261177.310912, norm of subgrad 1123.607276 dualbound = 3378112.310912, lowerbound=1261177.310912, norm of subgrad 37.084376 stepsize= 1.000000 +dualbound = 3378218.061640, lowerbound=1260521.061640, norm of subgrad 1123.295625 dualbound = 3378218.061640, lowerbound=1260521.061640, norm of subgrad 37.118065 stepsize= 1.000000 +dualbound = 3378307.315729, lowerbound=1264889.315729, norm of subgrad 1125.235671 dualbound = 3378307.315729, lowerbound=1264889.315729, norm of subgrad 36.813776 stepsize= 1.000000 +dualbound = 3378395.555294, lowerbound=1266018.555294, norm of subgrad 1125.739115 dualbound = 3378395.555294, lowerbound=1266018.555294, norm of subgrad 36.854302 stepsize= 1.000000 +dualbound = 3378455.369458, lowerbound=1257088.369458, norm of subgrad 1121.808080 dualbound = 3378455.369458, lowerbound=1257088.369458, norm of subgrad 37.746711 stepsize= 1.000000 +dualbound = 3378512.946345, lowerbound=1265053.946345, norm of subgrad 1125.347922 dualbound = 3378512.946345, lowerbound=1265053.946345, norm of subgrad 37.570958 stepsize= 1.000000 +dualbound = 3378614.975365, lowerbound=1261766.975365, norm of subgrad 1123.871423 dualbound = 3378614.975365, lowerbound=1261766.975365, norm of subgrad 37.709800 stepsize= 1.000000 +dualbound = 3378707.231589, lowerbound=1268007.231589, norm of subgrad 1126.633584 dualbound = 3378707.231589, lowerbound=1268007.231589, norm of subgrad 37.259311 stepsize= 1.000000 +dualbound = 3378788.615089, lowerbound=1263007.615089, norm of subgrad 1124.416122 dualbound = 3378788.615089, lowerbound=1263007.615089, norm of subgrad 37.220740 stepsize= 1.000000 +dualbound = 3378873.757982, lowerbound=1267243.757982, norm of subgrad 1126.312904 dualbound = 3378873.757982, lowerbound=1267243.757982, norm of subgrad 37.711310 stepsize= 1.000000 +dualbound = 3378969.175621, lowerbound=1260584.175621, norm of subgrad 1123.331285 dualbound = 3378969.175621, lowerbound=1260584.175621, norm of subgrad 37.207763 stepsize= 1.000000 +dualbound = 3379060.317061, lowerbound=1266723.317061, norm of subgrad 1126.054314 dualbound = 3379060.317061, lowerbound=1266723.317061, norm of subgrad 36.961351 stepsize= 1.000000 +dualbound = 3379151.817815, lowerbound=1261054.817815, norm of subgrad 1123.538525 dualbound = 3379151.817815, lowerbound=1261054.817815, norm of subgrad 37.087744 stepsize= 1.000000 +dualbound = 3379247.405975, lowerbound=1266941.405975, norm of subgrad 1126.142267 dualbound = 3379247.405975, lowerbound=1266941.405975, norm of subgrad 36.750349 stepsize= 1.000000 +dualbound = 3379344.388064, lowerbound=1265169.388064, norm of subgrad 1125.357005 dualbound = 3379344.388064, lowerbound=1265169.388064, norm of subgrad 36.823662 stepsize= 1.000000 +dualbound = 3379393.540201, lowerbound=1263745.540201, norm of subgrad 1124.745989 dualbound = 3379393.540201, lowerbound=1263745.540201, norm of subgrad 36.839546 stepsize= 1.000000 +dualbound = 3379489.019765, lowerbound=1264855.019765, norm of subgrad 1125.211989 dualbound = 3379489.019765, lowerbound=1264855.019765, norm of subgrad 36.639863 stepsize= 1.000000 +dualbound = 3379580.954953, lowerbound=1262827.954953, norm of subgrad 1124.319330 dualbound = 3379580.954953, lowerbound=1262827.954953, norm of subgrad 36.850172 stepsize= 1.000000 +dualbound = 3379671.555252, lowerbound=1267649.555252, norm of subgrad 1126.450423 dualbound = 3379671.555252, lowerbound=1267649.555252, norm of subgrad 36.491099 stepsize= 1.000000 +dualbound = 3379753.344228, lowerbound=1265421.344228, norm of subgrad 1125.459170 dualbound = 3379753.344228, lowerbound=1265421.344228, norm of subgrad 36.315134 stepsize= 1.000000 +dualbound = 3379843.282190, lowerbound=1264373.282190, norm of subgrad 1124.996125 dualbound = 3379843.282190, lowerbound=1264373.282190, norm of subgrad 36.509423 stepsize= 1.000000 +dualbound = 3379924.749449, lowerbound=1259266.749449, norm of subgrad 1122.759881 dualbound = 3379924.749449, lowerbound=1259266.749449, norm of subgrad 37.476223 stepsize= 1.000000 +dualbound = 3379988.031929, lowerbound=1264367.031929, norm of subgrad 1124.996459 dualbound = 3379988.031929, lowerbound=1264367.031929, norm of subgrad 36.239240 stepsize= 1.000000 +dualbound = 3380080.399035, lowerbound=1263813.399035, norm of subgrad 1124.767264 dualbound = 3380080.399035, lowerbound=1263813.399035, norm of subgrad 37.153292 stepsize= 1.000000 +dualbound = 3380154.940420, lowerbound=1261390.940420, norm of subgrad 1123.702781 dualbound = 3380154.940420, lowerbound=1261390.940420, norm of subgrad 37.303370 stepsize= 1.000000 +dualbound = 3380221.062413, lowerbound=1267341.062413, norm of subgrad 1126.345889 dualbound = 3380221.062413, lowerbound=1267341.062413, norm of subgrad 37.149993 stepsize= 1.000000 +dualbound = 3380325.619330, lowerbound=1266834.619330, norm of subgrad 1126.109062 dualbound = 3380325.619330, lowerbound=1266834.619330, norm of subgrad 37.303578 stepsize= 1.000000 +dualbound = 3380407.347063, lowerbound=1266499.347063, norm of subgrad 1125.948643 dualbound = 3380407.347063, lowerbound=1266499.347063, norm of subgrad 36.643249 stepsize= 1.000000 +dualbound = 3380515.425876, lowerbound=1257791.425876, norm of subgrad 1122.070152 dualbound = 3380515.425876, lowerbound=1257791.425876, norm of subgrad 36.852121 stepsize= 1.000000 +dualbound = 3380592.877896, lowerbound=1267294.877896, norm of subgrad 1126.308074 dualbound = 3380592.877896, lowerbound=1267294.877896, norm of subgrad 36.775699 stepsize= 1.000000 +dualbound = 3380671.473352, lowerbound=1264459.473352, norm of subgrad 1125.018432 dualbound = 3380671.473352, lowerbound=1264459.473352, norm of subgrad 35.855201 stepsize= 1.000000 +dualbound = 3380794.288022, lowerbound=1263712.288022, norm of subgrad 1124.677860 dualbound = 3380794.288022, lowerbound=1263712.288022, norm of subgrad 36.205175 stepsize= 1.000000 +dualbound = 3380848.985427, lowerbound=1261907.985427, norm of subgrad 1123.909687 dualbound = 3380848.985427, lowerbound=1261907.985427, norm of subgrad 36.327640 stepsize= 1.000000 +dualbound = 3380923.077164, lowerbound=1270177.077164, norm of subgrad 1127.588612 dualbound = 3380923.077164, lowerbound=1270177.077164, norm of subgrad 36.784395 stepsize= 1.000000 +dualbound = 3381025.503662, lowerbound=1262555.503662, norm of subgrad 1124.191934 dualbound = 3381025.503662, lowerbound=1262555.503662, norm of subgrad 36.802534 stepsize= 1.000000 +dualbound = 3381113.700897, lowerbound=1265344.700897, norm of subgrad 1125.419789 dualbound = 3381113.700897, lowerbound=1265344.700897, norm of subgrad 36.238063 stepsize= 1.000000 +dualbound = 3381202.981777, lowerbound=1263106.981777, norm of subgrad 1124.442076 dualbound = 3381202.981777, lowerbound=1263106.981777, norm of subgrad 36.773372 stepsize= 1.000000 +dualbound = 3381262.310101, lowerbound=1264667.310101, norm of subgrad 1125.138796 dualbound = 3381262.310101, lowerbound=1264667.310101, norm of subgrad 36.459955 stepsize= 1.000000 +dualbound = 3381378.532212, lowerbound=1264667.532212, norm of subgrad 1125.129562 dualbound = 3381378.532212, lowerbound=1264667.532212, norm of subgrad 36.948912 stepsize= 1.000000 +dualbound = 3381453.643369, lowerbound=1269907.643369, norm of subgrad 1127.459819 dualbound = 3381453.643369, lowerbound=1269907.643369, norm of subgrad 36.511795 stepsize= 1.000000 +dualbound = 3381552.987194, lowerbound=1260069.987194, norm of subgrad 1123.074791 dualbound = 3381552.987194, lowerbound=1260069.987194, norm of subgrad 36.419004 stepsize= 1.000000 +dualbound = 3381629.280298, lowerbound=1265016.280298, norm of subgrad 1125.308082 dualbound = 3381629.280298, lowerbound=1265016.280298, norm of subgrad 37.125370 stepsize= 1.000000 +dualbound = 3381687.669461, lowerbound=1259339.669461, norm of subgrad 1122.804377 dualbound = 3381687.669461, lowerbound=1259339.669461, norm of subgrad 37.528511 stepsize= 1.000000 +dualbound = 3381789.157985, lowerbound=1264827.157985, norm of subgrad 1125.228936 dualbound = 3381789.157985, lowerbound=1264827.157985, norm of subgrad 37.609687 stepsize= 1.000000 +dualbound = 3381860.015725, lowerbound=1263791.015725, norm of subgrad 1124.766205 dualbound = 3381860.015725, lowerbound=1263791.015725, norm of subgrad 37.132974 stepsize= 1.000000 +dualbound = 3381966.599579, lowerbound=1263810.599579, norm of subgrad 1124.775355 dualbound = 3381966.599579, lowerbound=1263810.599579, norm of subgrad 37.624246 stepsize= 1.000000 +dualbound = 3382055.947863, lowerbound=1267735.947863, norm of subgrad 1126.487882 dualbound = 3382055.947863, lowerbound=1267735.947863, norm of subgrad 36.446513 stepsize= 1.000000 +dualbound = 3382158.974054, lowerbound=1263392.974054, norm of subgrad 1124.579021 dualbound = 3382158.974054, lowerbound=1263392.974054, norm of subgrad 37.256224 stepsize= 1.000000 +dualbound = 3382221.609438, lowerbound=1266194.609438, norm of subgrad 1125.833296 dualbound = 3382221.609438, lowerbound=1266194.609438, norm of subgrad 36.995072 stepsize= 1.000000 +dualbound = 3382314.604924, lowerbound=1260561.604924, norm of subgrad 1123.320793 dualbound = 3382314.604924, lowerbound=1260561.604924, norm of subgrad 37.161748 stepsize= 1.000000 +dualbound = 3382390.483257, lowerbound=1267032.483257, norm of subgrad 1126.197355 dualbound = 3382390.483257, lowerbound=1267032.483257, norm of subgrad 36.930723 stepsize= 1.000000 +dualbound = 3382479.208076, lowerbound=1261431.208076, norm of subgrad 1123.725593 dualbound = 3382479.208076, lowerbound=1261431.208076, norm of subgrad 37.639405 stepsize= 1.000000 +dualbound = 3382537.242416, lowerbound=1264816.242416, norm of subgrad 1125.202756 dualbound = 3382537.242416, lowerbound=1264816.242416, norm of subgrad 36.373539 stepsize= 1.000000 +dualbound = 3382672.188288, lowerbound=1262422.188288, norm of subgrad 1124.141534 dualbound = 3382672.188288, lowerbound=1262422.188288, norm of subgrad 37.509277 stepsize= 1.000000 +dualbound = 3382719.615447, lowerbound=1267488.615447, norm of subgrad 1126.416715 dualbound = 3382719.615447, lowerbound=1267488.615447, norm of subgrad 37.059778 stepsize= 1.000000 +dualbound = 3382813.872851, lowerbound=1260401.872851, norm of subgrad 1123.256370 dualbound = 3382813.872851, lowerbound=1260401.872851, norm of subgrad 37.379906 stepsize= 1.000000 +dualbound = 3382903.504655, lowerbound=1265199.504655, norm of subgrad 1125.378383 dualbound = 3382903.504655, lowerbound=1265199.504655, norm of subgrad 36.967984 stepsize= 1.000000 +dualbound = 3382980.969575, lowerbound=1266426.969575, norm of subgrad 1125.935597 dualbound = 3382980.969575, lowerbound=1266426.969575, norm of subgrad 37.168063 stepsize= 1.000000 +dualbound = 3383060.705345, lowerbound=1261132.705345, norm of subgrad 1123.578972 dualbound = 3383060.705345, lowerbound=1261132.705345, norm of subgrad 37.104390 stepsize= 1.000000 +dualbound = 3383160.581156, lowerbound=1264178.581156, norm of subgrad 1124.927812 dualbound = 3383160.581156, lowerbound=1264178.581156, norm of subgrad 37.200481 stepsize= 1.000000 +dualbound = 3383254.630942, lowerbound=1261590.630942, norm of subgrad 1123.793411 dualbound = 3383254.630942, lowerbound=1261590.630942, norm of subgrad 37.617147 stepsize= 1.000000 +dualbound = 3383318.209803, lowerbound=1259252.209803, norm of subgrad 1122.727576 dualbound = 3383318.209803, lowerbound=1259252.209803, norm of subgrad 36.449676 stepsize= 1.000000 +dualbound = 3383431.177866, lowerbound=1268518.177866, norm of subgrad 1126.847451 dualbound = 3383431.177866, lowerbound=1268518.177866, norm of subgrad 37.147921 stepsize= 1.000000 +dualbound = 3383492.476736, lowerbound=1257495.476736, norm of subgrad 1121.965898 dualbound = 3383492.476736, lowerbound=1257495.476736, norm of subgrad 37.058047 stepsize= 1.000000 +dualbound = 3383599.091965, lowerbound=1268294.091965, norm of subgrad 1126.732041 dualbound = 3383599.091965, lowerbound=1268294.091965, norm of subgrad 36.573422 stepsize= 1.000000 +dualbound = 3383681.206317, lowerbound=1263060.206317, norm of subgrad 1124.428391 dualbound = 3383681.206317, lowerbound=1263060.206317, norm of subgrad 36.893283 stepsize= 1.000000 +dualbound = 3383750.664669, lowerbound=1264811.664669, norm of subgrad 1125.214942 dualbound = 3383750.664669, lowerbound=1264811.664669, norm of subgrad 36.965637 stepsize= 1.000000 +dualbound = 3383812.265236, lowerbound=1265071.265236, norm of subgrad 1125.343621 dualbound = 3383812.265236, lowerbound=1265071.265236, norm of subgrad 37.263931 stepsize= 1.000000 +dualbound = 3383923.841859, lowerbound=1262507.841859, norm of subgrad 1124.163619 dualbound = 3383923.841859, lowerbound=1262507.841859, norm of subgrad 36.709353 stepsize= 1.000000 +dualbound = 3384034.197420, lowerbound=1264234.197420, norm of subgrad 1124.924974 dualbound = 3384034.197420, lowerbound=1264234.197420, norm of subgrad 36.501446 stepsize= 1.000000 +dualbound = 3384102.415190, lowerbound=1265336.415190, norm of subgrad 1125.448984 dualbound = 3384102.415190, lowerbound=1265336.415190, norm of subgrad 36.975908 stepsize= 1.000000 +dualbound = 3384183.001584, lowerbound=1262487.001584, norm of subgrad 1124.202829 dualbound = 3384183.001584, lowerbound=1262487.001584, norm of subgrad 37.756938 stepsize= 1.000000 +dualbound = 3384245.313425, lowerbound=1268821.313425, norm of subgrad 1127.016998 dualbound = 3384245.313425, lowerbound=1268821.313425, norm of subgrad 37.527481 stepsize= 1.000000 +dualbound = 3384342.881856, lowerbound=1263026.881856, norm of subgrad 1124.407347 dualbound = 3384342.881856, lowerbound=1263026.881856, norm of subgrad 36.912985 stepsize= 1.000000 +dualbound = 3384435.565064, lowerbound=1263891.565064, norm of subgrad 1124.771784 dualbound = 3384435.565064, lowerbound=1263891.565064, norm of subgrad 36.230970 stepsize= 1.000000 +dualbound = 3384525.478582, lowerbound=1264540.478582, norm of subgrad 1125.060656 dualbound = 3384525.478582, lowerbound=1264540.478582, norm of subgrad 36.206540 stepsize= 1.000000 +dualbound = 3384635.101084, lowerbound=1266100.101084, norm of subgrad 1125.729142 dualbound = 3384635.101084, lowerbound=1266100.101084, norm of subgrad 35.715858 stepsize= 1.000000 +dualbound = 3384714.028722, lowerbound=1268748.028722, norm of subgrad 1126.950322 dualbound = 3384714.028722, lowerbound=1268748.028722, norm of subgrad 36.714134 stepsize= 1.000000 +dualbound = 3384784.016172, lowerbound=1269445.016172, norm of subgrad 1127.255524 dualbound = 3384784.016172, lowerbound=1269445.016172, norm of subgrad 36.468993 stepsize= 1.000000 +dualbound = 3384879.432761, lowerbound=1262347.432761, norm of subgrad 1124.092715 dualbound = 3384879.432761, lowerbound=1262347.432761, norm of subgrad 36.502282 stepsize= 1.000000 +dualbound = 3384963.071895, lowerbound=1267662.071895, norm of subgrad 1126.449321 dualbound = 3384963.071895, lowerbound=1267662.071895, norm of subgrad 36.188937 stepsize= 1.000000 +dualbound = 3385018.079169, lowerbound=1257634.079169, norm of subgrad 1121.994688 dualbound = 3385018.079169, lowerbound=1257634.079169, norm of subgrad 35.958410 stepsize= 1.000000 +dualbound = 3385125.061876, lowerbound=1263324.061876, norm of subgrad 1124.542157 dualbound = 3385125.061876, lowerbound=1263324.061876, norm of subgrad 37.121189 stepsize= 1.000000 +dualbound = 3385192.476416, lowerbound=1262025.476416, norm of subgrad 1123.984642 dualbound = 3385192.476416, lowerbound=1262025.476416, norm of subgrad 37.194281 stepsize= 1.000000 +dualbound = 3385274.281918, lowerbound=1264278.281918, norm of subgrad 1124.992125 dualbound = 3385274.281918, lowerbound=1264278.281918, norm of subgrad 37.560691 stepsize= 1.000000 +dualbound = 3385354.397509, lowerbound=1263056.397509, norm of subgrad 1124.444929 dualbound = 3385354.397509, lowerbound=1263056.397509, norm of subgrad 37.418118 stepsize= 1.000000 +dualbound = 3385462.550036, lowerbound=1264980.550036, norm of subgrad 1125.269990 dualbound = 3385462.550036, lowerbound=1264980.550036, norm of subgrad 36.880246 stepsize= 1.000000 +dualbound = 3385527.591887, lowerbound=1257938.591887, norm of subgrad 1122.149541 dualbound = 3385527.591887, lowerbound=1257938.591887, norm of subgrad 36.688443 stepsize= 1.000000 +dualbound = 3385633.614976, lowerbound=1271887.614976, norm of subgrad 1128.325580 dualbound = 3385633.614976, lowerbound=1271887.614976, norm of subgrad 36.565326 stepsize= 1.000000 +dualbound = 3385730.582629, lowerbound=1263737.582629, norm of subgrad 1124.711333 dualbound = 3385730.582629, lowerbound=1263737.582629, norm of subgrad 36.537209 stepsize= 1.000000 +dualbound = 3385817.366368, lowerbound=1264595.366368, norm of subgrad 1125.089493 dualbound = 3385817.366368, lowerbound=1264595.366368, norm of subgrad 36.301291 stepsize= 1.000000 +dualbound = 3385908.004623, lowerbound=1269117.004623, norm of subgrad 1127.122001 dualbound = 3385908.004623, lowerbound=1269117.004623, norm of subgrad 37.116550 stepsize= 1.000000 +dualbound = 3385961.933464, lowerbound=1267801.933464, norm of subgrad 1126.547351 dualbound = 3385961.933464, lowerbound=1267801.933464, norm of subgrad 36.890769 stepsize= 1.000000 +dualbound = 3386076.051965, lowerbound=1266364.051965, norm of subgrad 1125.910766 dualbound = 3386076.051965, lowerbound=1266364.051965, norm of subgrad 37.750742 stepsize= 1.000000 +dualbound = 3386138.274197, lowerbound=1265952.274197, norm of subgrad 1125.745208 dualbound = 3386138.274197, lowerbound=1265952.274197, norm of subgrad 37.579545 stepsize= 1.000000 +dualbound = 3386237.521949, lowerbound=1262127.521949, norm of subgrad 1124.000677 dualbound = 3386237.521949, lowerbound=1262127.521949, norm of subgrad 36.732108 stepsize= 1.000000 +dualbound = 3386319.753468, lowerbound=1267406.753468, norm of subgrad 1126.382596 dualbound = 3386319.753468, lowerbound=1267406.753468, norm of subgrad 37.592972 stepsize= 1.000000 +dualbound = 3386407.752053, lowerbound=1261936.752053, norm of subgrad 1123.930048 dualbound = 3386407.752053, lowerbound=1261936.752053, norm of subgrad 37.013492 stepsize= 1.000000 +dualbound = 3386478.983015, lowerbound=1268084.983015, norm of subgrad 1126.661876 dualbound = 3386478.983015, lowerbound=1268084.983015, norm of subgrad 36.786288 stepsize= 1.000000 +dualbound = 3386571.695551, lowerbound=1256277.695551, norm of subgrad 1121.397653 dualbound = 3386571.695551, lowerbound=1256277.695551, norm of subgrad 36.711205 stepsize= 1.000000 +dualbound = 3386659.681488, lowerbound=1268484.681488, norm of subgrad 1126.836138 dualbound = 3386659.681488, lowerbound=1268484.681488, norm of subgrad 36.918639 stepsize= 1.000000 +dualbound = 3386737.251268, lowerbound=1261376.251268, norm of subgrad 1123.676667 dualbound = 3386737.251268, lowerbound=1261376.251268, norm of subgrad 36.750099 stepsize= 1.000000 +dualbound = 3386814.804099, lowerbound=1269435.804099, norm of subgrad 1127.249220 dualbound = 3386814.804099, lowerbound=1269435.804099, norm of subgrad 36.504148 stepsize= 1.000000 +dualbound = 3386921.260069, lowerbound=1262376.260069, norm of subgrad 1124.125109 dualbound = 3386921.260069, lowerbound=1262376.260069, norm of subgrad 37.248570 stepsize= 1.000000 +dualbound = 3386999.060966, lowerbound=1268770.060966, norm of subgrad 1126.992485 dualbound = 3386999.060966, lowerbound=1268770.060966, norm of subgrad 37.680245 stepsize= 1.000000 +dualbound = 3387046.397283, lowerbound=1263822.397283, norm of subgrad 1124.782822 dualbound = 3387046.397283, lowerbound=1263822.397283, norm of subgrad 36.896291 stepsize= 1.000000 +dualbound = 3387160.994564, lowerbound=1266524.994564, norm of subgrad 1125.985788 dualbound = 3387160.994564, lowerbound=1266524.994564, norm of subgrad 37.862875 stepsize= 1.000000 +dualbound = 3387215.313217, lowerbound=1270588.313217, norm of subgrad 1127.785136 dualbound = 3387215.313217, lowerbound=1270588.313217, norm of subgrad 36.950219 stepsize= 1.000000 +dualbound = 3387326.903628, lowerbound=1263063.903628, norm of subgrad 1124.426478 dualbound = 3387326.903628, lowerbound=1263063.903628, norm of subgrad 37.183201 stepsize= 1.000000 +dualbound = 3387412.098780, lowerbound=1263300.098780, norm of subgrad 1124.521720 dualbound = 3387412.098780, lowerbound=1263300.098780, norm of subgrad 36.526636 stepsize= 1.000000 +dualbound = 3387484.896443, lowerbound=1266832.896443, norm of subgrad 1126.118953 dualbound = 3387484.896443, lowerbound=1266832.896443, norm of subgrad 37.199431 stepsize= 1.000000 +dualbound = 3387564.729230, lowerbound=1261713.729230, norm of subgrad 1123.842840 dualbound = 3387564.729230, lowerbound=1261713.729230, norm of subgrad 37.267047 stepsize= 1.000000 +dualbound = 3387650.462518, lowerbound=1262180.462518, norm of subgrad 1124.059813 dualbound = 3387650.462518, lowerbound=1262180.462518, norm of subgrad 37.626231 stepsize= 1.000000 +dualbound = 3387746.295760, lowerbound=1267572.295760, norm of subgrad 1126.426338 dualbound = 3387746.295760, lowerbound=1267572.295760, norm of subgrad 36.875917 stepsize= 1.000000 +dualbound = 3387828.680304, lowerbound=1265962.680304, norm of subgrad 1125.708968 dualbound = 3387828.680304, lowerbound=1265962.680304, norm of subgrad 36.611263 stepsize= 1.000000 +dualbound = 3387920.292230, lowerbound=1263341.292230, norm of subgrad 1124.548928 dualbound = 3387920.292230, lowerbound=1263341.292230, norm of subgrad 36.886473 stepsize= 1.000000 +dualbound = 3387997.050385, lowerbound=1262739.050385, norm of subgrad 1124.281571 dualbound = 3387997.050385, lowerbound=1262739.050385, norm of subgrad 36.698204 stepsize= 1.000000 +dualbound = 3388073.882447, lowerbound=1268138.882447, norm of subgrad 1126.686683 dualbound = 3388073.882447, lowerbound=1268138.882447, norm of subgrad 36.889457 stepsize= 1.000000 +dualbound = 3388159.616372, lowerbound=1264589.616372, norm of subgrad 1125.096714 dualbound = 3388159.616372, lowerbound=1264589.616372, norm of subgrad 36.588713 stepsize= 1.000000 +dualbound = 3388263.711641, lowerbound=1259293.711641, norm of subgrad 1122.724682 dualbound = 3388263.711641, lowerbound=1259293.711641, norm of subgrad 36.346874 stepsize= 1.000000 +dualbound = 3388336.295808, lowerbound=1264566.295808, norm of subgrad 1125.108571 dualbound = 3388336.295808, lowerbound=1264566.295808, norm of subgrad 37.088869 stepsize= 1.000000 +dualbound = 3388403.739420, lowerbound=1263030.739420, norm of subgrad 1124.442413 dualbound = 3388403.739420, lowerbound=1263030.739420, norm of subgrad 37.515911 stepsize= 1.000000 +dualbound = 3388478.628806, lowerbound=1265730.628806, norm of subgrad 1125.665416 dualbound = 3388478.628806, lowerbound=1265730.628806, norm of subgrad 38.299992 stepsize= 1.000000 +dualbound = 3388566.721174, lowerbound=1266810.721174, norm of subgrad 1126.133083 dualbound = 3388566.721174, lowerbound=1266810.721174, norm of subgrad 38.119449 stepsize= 1.000000 +dualbound = 3388643.330487, lowerbound=1263125.330487, norm of subgrad 1124.492032 dualbound = 3388643.330487, lowerbound=1263125.330487, norm of subgrad 37.863034 stepsize= 1.000000 +dualbound = 3388737.503036, lowerbound=1261965.503036, norm of subgrad 1123.962857 dualbound = 3388737.503036, lowerbound=1261965.503036, norm of subgrad 37.698442 stepsize= 1.000000 +dualbound = 3388851.356953, lowerbound=1268521.356953, norm of subgrad 1126.852855 dualbound = 3388851.356953, lowerbound=1268521.356953, norm of subgrad 37.280745 stepsize= 1.000000 +dualbound = 3388938.451058, lowerbound=1261892.451058, norm of subgrad 1123.911229 dualbound = 3388938.451058, lowerbound=1261892.451058, norm of subgrad 37.028288 stepsize= 1.000000 +dualbound = 3389014.523975, lowerbound=1271210.523975, norm of subgrad 1128.052979 dualbound = 3389014.523975, lowerbound=1271210.523975, norm of subgrad 37.000985 stepsize= 1.000000 +dualbound = 3389102.962200, lowerbound=1258333.962200, norm of subgrad 1122.315892 dualbound = 3389102.962200, lowerbound=1258333.962200, norm of subgrad 36.707468 stepsize= 1.000000 +dualbound = 3389213.229335, lowerbound=1270157.229335, norm of subgrad 1127.567838 dualbound = 3389213.229335, lowerbound=1270157.229335, norm of subgrad 36.908903 stepsize= 1.000000 +dualbound = 3389264.798169, lowerbound=1262089.798169, norm of subgrad 1124.013700 dualbound = 3389264.798169, lowerbound=1262089.798169, norm of subgrad 36.994173 stepsize= 1.000000 +dualbound = 3389358.613424, lowerbound=1268364.613424, norm of subgrad 1126.775316 dualbound = 3389358.613424, lowerbound=1268364.613424, norm of subgrad 36.767040 stepsize= 1.000000 +dualbound = 3389442.823100, lowerbound=1264071.823100, norm of subgrad 1124.879915 dualbound = 3389442.823100, lowerbound=1264071.823100, norm of subgrad 36.975799 stepsize= 1.000000 +dualbound = 3389532.288626, lowerbound=1267301.288626, norm of subgrad 1126.306481 dualbound = 3389532.288626, lowerbound=1267301.288626, norm of subgrad 36.803064 stepsize= 1.000000 +dualbound = 3389618.977359, lowerbound=1264625.977359, norm of subgrad 1125.133760 dualbound = 3389618.977359, lowerbound=1264625.977359, norm of subgrad 37.238270 stepsize= 1.000000 +dualbound = 3389710.369343, lowerbound=1267418.369343, norm of subgrad 1126.370884 dualbound = 3389710.369343, lowerbound=1267418.369343, norm of subgrad 37.207418 stepsize= 1.000000 +dualbound = 3389793.724153, lowerbound=1262819.724153, norm of subgrad 1124.299215 dualbound = 3389793.724153, lowerbound=1262819.724153, norm of subgrad 36.226438 stepsize= 1.000000 +dualbound = 3389899.401954, lowerbound=1265746.401954, norm of subgrad 1125.574699 dualbound = 3389899.401954, lowerbound=1265746.401954, norm of subgrad 35.744619 stepsize= 1.000000 +dualbound = 3389989.653427, lowerbound=1264571.653427, norm of subgrad 1125.070510 dualbound = 3389989.653427, lowerbound=1264571.653427, norm of subgrad 36.086722 stepsize= 1.000000 +dualbound = 3390045.888244, lowerbound=1262416.888244, norm of subgrad 1124.147183 dualbound = 3390045.888244, lowerbound=1262416.888244, norm of subgrad 36.691073 stepsize= 1.000000 +dualbound = 3390139.048328, lowerbound=1266258.048328, norm of subgrad 1125.821499 dualbound = 3390139.048328, lowerbound=1266258.048328, norm of subgrad 36.182317 stepsize= 1.000000 +dualbound = 3390222.269002, lowerbound=1265173.269002, norm of subgrad 1125.350732 dualbound = 3390222.269002, lowerbound=1265173.269002, norm of subgrad 36.389843 stepsize= 1.000000 +dualbound = 3390306.467843, lowerbound=1264354.467843, norm of subgrad 1125.010430 dualbound = 3390306.467843, lowerbound=1264354.467843, norm of subgrad 37.124101 stepsize= 1.000000 +dualbound = 3390355.129369, lowerbound=1266825.129369, norm of subgrad 1126.097300 dualbound = 3390355.129369, lowerbound=1266825.129369, norm of subgrad 36.313379 stepsize= 1.000000 +dualbound = 3390458.255142, lowerbound=1266524.255142, norm of subgrad 1125.949935 dualbound = 3390458.255142, lowerbound=1266524.255142, norm of subgrad 36.635035 stepsize= 1.000000 +dualbound = 3390559.878718, lowerbound=1263766.878718, norm of subgrad 1124.713243 dualbound = 3390559.878718, lowerbound=1263766.878718, norm of subgrad 36.257738 stepsize= 1.000000 +dualbound = 3390634.016793, lowerbound=1268936.016793, norm of subgrad 1127.043041 dualbound = 3390634.016793, lowerbound=1268936.016793, norm of subgrad 36.934240 stepsize= 1.000000 +dualbound = 3390711.793247, lowerbound=1264166.793247, norm of subgrad 1124.915460 dualbound = 3390711.793247, lowerbound=1264166.793247, norm of subgrad 36.684826 stepsize= 1.000000 +dualbound = 3390794.276844, lowerbound=1272289.276844, norm of subgrad 1128.510202 dualbound = 3390794.276844, lowerbound=1272289.276844, norm of subgrad 36.448369 stepsize= 1.000000 +dualbound = 3390904.873628, lowerbound=1264523.873628, norm of subgrad 1125.061720 dualbound = 3390904.873628, lowerbound=1264523.873628, norm of subgrad 36.750466 stepsize= 1.000000 +dualbound = 3390960.273738, lowerbound=1265181.273738, norm of subgrad 1125.382723 dualbound = 3390960.273738, lowerbound=1265181.273738, norm of subgrad 36.883602 stepsize= 1.000000 +dualbound = 3391056.398459, lowerbound=1266075.398459, norm of subgrad 1125.767471 dualbound = 3391056.398459, lowerbound=1266075.398459, norm of subgrad 37.055698 stepsize= 1.000000 +dualbound = 3391140.602780, lowerbound=1264713.602780, norm of subgrad 1125.142037 dualbound = 3391140.602780, lowerbound=1264713.602780, norm of subgrad 36.265746 stepsize= 1.000000 +dualbound = 3391248.107766, lowerbound=1263305.107766, norm of subgrad 1124.531951 dualbound = 3391248.107766, lowerbound=1263305.107766, norm of subgrad 37.074317 stepsize= 1.000000 +dualbound = 3391310.105995, lowerbound=1261814.105995, norm of subgrad 1123.883493 dualbound = 3391310.105995, lowerbound=1261814.105995, norm of subgrad 36.905260 stepsize= 1.000000 +dualbound = 3391407.457832, lowerbound=1268211.457832, norm of subgrad 1126.708240 dualbound = 3391407.457832, lowerbound=1268211.457832, norm of subgrad 36.842256 stepsize= 1.000000 +dualbound = 3391509.858436, lowerbound=1261719.858436, norm of subgrad 1123.819762 dualbound = 3391509.858436, lowerbound=1261719.858436, norm of subgrad 36.788593 stepsize= 1.000000 +dualbound = 3391595.426280, lowerbound=1265413.426280, norm of subgrad 1125.504077 dualbound = 3391595.426280, lowerbound=1265413.426280, norm of subgrad 37.836065 stepsize= 1.000000 +dualbound = 3391631.573338, lowerbound=1264463.573338, norm of subgrad 1125.066475 dualbound = 3391631.573338, lowerbound=1264463.573338, norm of subgrad 36.703502 stepsize= 1.000000 +dualbound = 3391734.007682, lowerbound=1266923.007682, norm of subgrad 1126.163402 dualbound = 3391734.007682, lowerbound=1266923.007682, norm of subgrad 37.728429 stepsize= 1.000000 +dualbound = 3391814.718609, lowerbound=1261166.718609, norm of subgrad 1123.619027 dualbound = 3391814.718609, lowerbound=1261166.718609, norm of subgrad 37.864375 stepsize= 1.000000 +dualbound = 3391887.461368, lowerbound=1264923.461368, norm of subgrad 1125.271728 dualbound = 3391887.461368, lowerbound=1264923.461368, norm of subgrad 37.225566 stepsize= 1.000000 +dualbound = 3391992.296062, lowerbound=1263498.296062, norm of subgrad 1124.612509 dualbound = 3391992.296062, lowerbound=1263498.296062, norm of subgrad 36.875937 stepsize= 1.000000 +dualbound = 3392093.229148, lowerbound=1265723.229148, norm of subgrad 1125.614156 dualbound = 3392093.229148, lowerbound=1265723.229148, norm of subgrad 37.214689 stepsize= 1.000000 +dualbound = 3392169.743477, lowerbound=1265917.743477, norm of subgrad 1125.657916 dualbound = 3392169.743477, lowerbound=1265917.743477, norm of subgrad 35.560010 stepsize= 1.000000 +dualbound = 3392275.424278, lowerbound=1264869.424278, norm of subgrad 1125.220611 dualbound = 3392275.424278, lowerbound=1264869.424278, norm of subgrad 36.846720 stepsize= 1.000000 +dualbound = 3392343.202399, lowerbound=1266005.202399, norm of subgrad 1125.729631 dualbound = 3392343.202399, lowerbound=1266005.202399, norm of subgrad 36.466123 stepsize= 1.000000 +dualbound = 3392405.677790, lowerbound=1266362.677790, norm of subgrad 1125.923478 dualbound = 3392405.677790, lowerbound=1266362.677790, norm of subgrad 37.462987 stepsize= 1.000000 +dualbound = 3392473.004195, lowerbound=1263689.004195, norm of subgrad 1124.726191 dualbound = 3392473.004195, lowerbound=1263689.004195, norm of subgrad 37.246831 stepsize= 1.000000 +dualbound = 3392579.769732, lowerbound=1265199.769732, norm of subgrad 1125.384721 dualbound = 3392579.769732, lowerbound=1265199.769732, norm of subgrad 37.386703 stepsize= 1.000000 +dualbound = 3392653.039819, lowerbound=1261917.039819, norm of subgrad 1123.935514 dualbound = 3392653.039819, lowerbound=1261917.039819, norm of subgrad 37.246075 stepsize= 1.000000 +dualbound = 3392724.982189, lowerbound=1267838.982189, norm of subgrad 1126.570451 dualbound = 3392724.982189, lowerbound=1267838.982189, norm of subgrad 37.335538 stepsize= 1.000000 +dualbound = 3392813.907652, lowerbound=1266514.907652, norm of subgrad 1125.975536 dualbound = 3392813.907652, lowerbound=1266514.907652, norm of subgrad 37.348701 stepsize= 1.000000 +dualbound = 3392913.034538, lowerbound=1268525.034538, norm of subgrad 1126.897082 dualbound = 3392913.034538, lowerbound=1268525.034538, norm of subgrad 38.355272 stepsize= 1.000000 +dualbound = 3392990.299603, lowerbound=1267731.299603, norm of subgrad 1126.548401 dualbound = 3392990.299603, lowerbound=1267731.299603, norm of subgrad 38.174141 stepsize= 1.000000 +dualbound = 3393062.292925, lowerbound=1263109.292925, norm of subgrad 1124.508467 dualbound = 3393062.292925, lowerbound=1263109.292925, norm of subgrad 38.496666 stepsize= 1.000000 +dualbound = 3393154.926284, lowerbound=1257687.926284, norm of subgrad 1122.060572 dualbound = 3393154.926284, lowerbound=1257687.926284, norm of subgrad 37.744316 stepsize= 1.000000 +dualbound = 3393245.896555, lowerbound=1266658.896555, norm of subgrad 1126.049687 dualbound = 3393245.896555, lowerbound=1266658.896555, norm of subgrad 37.682493 stepsize= 1.000000 +dualbound = 3393329.792312, lowerbound=1264549.792312, norm of subgrad 1125.123901 dualbound = 3393329.792312, lowerbound=1264549.792312, norm of subgrad 37.919596 stepsize= 1.000000 +dualbound = 3393424.909306, lowerbound=1265916.909306, norm of subgrad 1125.685973 dualbound = 3393424.909306, lowerbound=1265916.909306, norm of subgrad 36.703092 stepsize= 1.000000 +dualbound = 3393536.261828, lowerbound=1263346.261828, norm of subgrad 1124.550249 dualbound = 3393536.261828, lowerbound=1263346.261828, norm of subgrad 37.126170 stepsize= 1.000000 +dualbound = 3393597.456196, lowerbound=1265939.456196, norm of subgrad 1125.691546 dualbound = 3393597.456196, lowerbound=1265939.456196, norm of subgrad 36.099783 stepsize= 1.000000 +dualbound = 3393713.201201, lowerbound=1263247.201201, norm of subgrad 1124.505759 dualbound = 3393713.201201, lowerbound=1263247.201201, norm of subgrad 37.171831 stepsize= 1.000000 +dualbound = 3393768.226519, lowerbound=1270925.226519, norm of subgrad 1127.906125 dualbound = 3393768.226519, lowerbound=1270925.226519, norm of subgrad 36.083588 stepsize= 1.000000 +dualbound = 3393860.930673, lowerbound=1261956.930673, norm of subgrad 1123.935466 dualbound = 3393860.930673, lowerbound=1261956.930673, norm of subgrad 36.968962 stepsize= 1.000000 +dualbound = 3393957.839340, lowerbound=1269655.839340, norm of subgrad 1127.336613 dualbound = 3393957.839340, lowerbound=1269655.839340, norm of subgrad 36.454200 stepsize= 1.000000 +dualbound = 3394025.881613, lowerbound=1263040.881613, norm of subgrad 1124.435361 dualbound = 3394025.881613, lowerbound=1263040.881613, norm of subgrad 37.175829 stepsize= 1.000000 +dualbound = 3394105.431828, lowerbound=1269473.431828, norm of subgrad 1127.268571 dualbound = 3394105.431828, lowerbound=1269473.431828, norm of subgrad 36.613525 stepsize= 1.000000 +dualbound = 3394209.757368, lowerbound=1263275.757368, norm of subgrad 1124.500226 dualbound = 3394209.757368, lowerbound=1263275.757368, norm of subgrad 36.459917 stepsize= 1.000000 +dualbound = 3394291.624236, lowerbound=1268566.624236, norm of subgrad 1126.852974 dualbound = 3394291.624236, lowerbound=1268566.624236, norm of subgrad 36.233505 stepsize= 1.000000 +dualbound = 3394365.212038, lowerbound=1261786.212038, norm of subgrad 1123.854622 dualbound = 3394365.212038, lowerbound=1261786.212038, norm of subgrad 36.559374 stepsize= 1.000000 +dualbound = 3394446.082572, lowerbound=1268934.082572, norm of subgrad 1127.023994 dualbound = 3394446.082572, lowerbound=1268934.082572, norm of subgrad 36.467390 stepsize= 1.000000 +dualbound = 3394550.059939, lowerbound=1269569.059939, norm of subgrad 1127.310099 dualbound = 3394550.059939, lowerbound=1269569.059939, norm of subgrad 36.918523 stepsize= 1.000000 +dualbound = 3394628.969156, lowerbound=1261710.969156, norm of subgrad 1123.812248 dualbound = 3394628.969156, lowerbound=1261710.969156, norm of subgrad 36.358069 stepsize= 1.000000 +dualbound = 3394714.257402, lowerbound=1266112.257402, norm of subgrad 1125.782065 dualbound = 3394714.257402, lowerbound=1266112.257402, norm of subgrad 36.854962 stepsize= 1.000000 +dualbound = 3394796.039212, lowerbound=1266806.039212, norm of subgrad 1126.099480 dualbound = 3394796.039212, lowerbound=1266806.039212, norm of subgrad 37.091533 stepsize= 1.000000 +dualbound = 3394883.288252, lowerbound=1265832.288252, norm of subgrad 1125.635060 dualbound = 3394883.288252, lowerbound=1265832.288252, norm of subgrad 36.183547 stepsize= 1.000000 +dualbound = 3394976.112720, lowerbound=1266883.112720, norm of subgrad 1126.115497 dualbound = 3394976.112720, lowerbound=1266883.112720, norm of subgrad 36.685480 stepsize= 1.000000 +dualbound = 3395036.017553, lowerbound=1261989.017553, norm of subgrad 1123.972427 dualbound = 3395036.017553, lowerbound=1261989.017553, norm of subgrad 37.214310 stepsize= 1.000000 +dualbound = 3395117.436386, lowerbound=1268520.436386, norm of subgrad 1126.838248 dualbound = 3395117.436386, lowerbound=1268520.436386, norm of subgrad 36.406302 stepsize= 1.000000 +dualbound = 3395230.041718, lowerbound=1264794.041718, norm of subgrad 1125.212443 dualbound = 3395230.041718, lowerbound=1264794.041718, norm of subgrad 37.704182 stepsize= 1.000000 +dualbound = 3395298.249650, lowerbound=1270780.249650, norm of subgrad 1127.866237 dualbound = 3395298.249650, lowerbound=1270780.249650, norm of subgrad 37.016320 stepsize= 1.000000 +dualbound = 3395378.506625, lowerbound=1261509.506625, norm of subgrad 1123.747528 dualbound = 3395378.506625, lowerbound=1261509.506625, norm of subgrad 37.138349 stepsize= 1.000000 +dualbound = 3395461.209201, lowerbound=1264673.209201, norm of subgrad 1125.132530 dualbound = 3395461.209201, lowerbound=1264673.209201, norm of subgrad 36.506199 stepsize= 1.000000 +dualbound = 3395576.974245, lowerbound=1264348.974245, norm of subgrad 1124.973766 dualbound = 3395576.974245, lowerbound=1264348.974245, norm of subgrad 36.507055 stepsize= 1.000000 +dualbound = 3395659.502169, lowerbound=1268698.502169, norm of subgrad 1126.898621 dualbound = 3395659.502169, lowerbound=1268698.502169, norm of subgrad 35.840311 stepsize= 1.000000 +dualbound = 3395734.645357, lowerbound=1264523.645357, norm of subgrad 1125.069174 dualbound = 3395734.645357, lowerbound=1264523.645357, norm of subgrad 36.498537 stepsize= 1.000000 +dualbound = 3395806.251628, lowerbound=1265746.251628, norm of subgrad 1125.643928 dualbound = 3395806.251628, lowerbound=1265746.251628, norm of subgrad 37.411312 stepsize= 1.000000 +dualbound = 3395874.220208, lowerbound=1265114.220208, norm of subgrad 1125.366260 dualbound = 3395874.220208, lowerbound=1265114.220208, norm of subgrad 37.456222 stepsize= 1.000000 +dualbound = 3395957.319593, lowerbound=1265423.319593, norm of subgrad 1125.514691 dualbound = 3395957.319593, lowerbound=1265423.319593, norm of subgrad 37.988148 stepsize= 1.000000 +dualbound = 3396062.756539, lowerbound=1261130.756539, norm of subgrad 1123.579884 dualbound = 3396062.756539, lowerbound=1261130.756539, norm of subgrad 37.502493 stepsize= 1.000000 +dualbound = 3396166.073631, lowerbound=1265089.073631, norm of subgrad 1125.323986 dualbound = 3396166.073631, lowerbound=1265089.073631, norm of subgrad 36.990770 stepsize= 1.000000 +dualbound = 3396227.228392, lowerbound=1264802.228392, norm of subgrad 1125.223190 dualbound = 3396227.228392, lowerbound=1264802.228392, norm of subgrad 37.231099 stepsize= 1.000000 +dualbound = 3396330.088548, lowerbound=1265772.088548, norm of subgrad 1125.633639 dualbound = 3396330.088548, lowerbound=1265772.088548, norm of subgrad 37.173380 stepsize= 1.000000 +dualbound = 3396398.201697, lowerbound=1269651.201697, norm of subgrad 1127.383786 dualbound = 3396398.201697, lowerbound=1269651.201697, norm of subgrad 37.564786 stepsize= 1.000000 +dualbound = 3396478.155642, lowerbound=1266182.155642, norm of subgrad 1125.817550 dualbound = 3396478.155642, lowerbound=1266182.155642, norm of subgrad 36.918206 stepsize= 1.000000 +dualbound = 3396581.918091, lowerbound=1263347.918091, norm of subgrad 1124.549207 dualbound = 3396581.918091, lowerbound=1263347.918091, norm of subgrad 36.969750 stepsize= 1.000000 +dualbound = 3396652.857722, lowerbound=1267784.857722, norm of subgrad 1126.520687 dualbound = 3396652.857722, lowerbound=1267784.857722, norm of subgrad 36.536826 stepsize= 1.000000 +dualbound = 3396755.103057, lowerbound=1265139.103057, norm of subgrad 1125.336884 dualbound = 3396755.103057, lowerbound=1265139.103057, norm of subgrad 36.691216 stepsize= 1.000000 +dualbound = 3396841.390068, lowerbound=1273807.390068, norm of subgrad 1129.171550 dualbound = 3396841.390068, lowerbound=1273807.390068, norm of subgrad 36.156424 stepsize= 1.000000 +dualbound = 3396941.578796, lowerbound=1262341.578796, norm of subgrad 1124.090112 dualbound = 3396941.578796, lowerbound=1262341.578796, norm of subgrad 36.567591 stepsize= 1.000000 +dualbound = 3396996.291563, lowerbound=1270221.291563, norm of subgrad 1127.583829 dualbound = 3396996.291563, lowerbound=1270221.291563, norm of subgrad 35.759093 stepsize= 1.000000 +dualbound = 3397092.593275, lowerbound=1264215.593275, norm of subgrad 1124.939373 dualbound = 3397092.593275, lowerbound=1264215.593275, norm of subgrad 37.004077 stepsize= 1.000000 +dualbound = 3397167.135991, lowerbound=1270861.135991, norm of subgrad 1127.896775 dualbound = 3397167.135991, lowerbound=1270861.135991, norm of subgrad 36.939717 stepsize= 1.000000 +dualbound = 3397242.884783, lowerbound=1265098.884783, norm of subgrad 1125.354560 dualbound = 3397242.884783, lowerbound=1265098.884783, norm of subgrad 37.413217 stepsize= 1.000000 +dualbound = 3397331.403629, lowerbound=1268674.403629, norm of subgrad 1126.923424 dualbound = 3397331.403629, lowerbound=1268674.403629, norm of subgrad 37.020519 stepsize= 1.000000 +dualbound = 3397410.581281, lowerbound=1263454.581281, norm of subgrad 1124.604633 dualbound = 3397410.581281, lowerbound=1263454.581281, norm of subgrad 36.880586 stepsize= 1.000000 +dualbound = 3397510.970981, lowerbound=1267249.970981, norm of subgrad 1126.271713 dualbound = 3397510.970981, lowerbound=1267249.970981, norm of subgrad 36.584009 stepsize= 1.000000 +dualbound = 3397583.473686, lowerbound=1262467.473686, norm of subgrad 1124.157673 dualbound = 3397583.473686, lowerbound=1262467.473686, norm of subgrad 36.544530 stepsize= 1.000000 +dualbound = 3397655.659707, lowerbound=1268499.659707, norm of subgrad 1126.853433 dualbound = 3397655.659707, lowerbound=1268499.659707, norm of subgrad 37.029529 stepsize= 1.000000 +dualbound = 3397759.868410, lowerbound=1264898.868410, norm of subgrad 1125.249247 dualbound = 3397759.868410, lowerbound=1264898.868410, norm of subgrad 37.298910 stepsize= 1.000000 +dualbound = 3397829.560717, lowerbound=1264317.560717, norm of subgrad 1124.976249 dualbound = 3397829.560717, lowerbound=1264317.560717, norm of subgrad 36.382582 stepsize= 1.000000 +dualbound = 3397903.245339, lowerbound=1266434.245339, norm of subgrad 1125.922842 dualbound = 3397903.245339, lowerbound=1266434.245339, norm of subgrad 36.629013 stepsize= 1.000000 +dualbound = 3398011.055917, lowerbound=1261801.055918, norm of subgrad 1123.853663 dualbound = 3398011.055917, lowerbound=1261801.055918, norm of subgrad 36.794165 stepsize= 1.000000 +dualbound = 3398084.911088, lowerbound=1268628.911088, norm of subgrad 1126.870849 dualbound = 3398084.911088, lowerbound=1268628.911088, norm of subgrad 35.816968 stepsize= 1.000000 +dualbound = 3398176.248039, lowerbound=1263806.248039, norm of subgrad 1124.775643 dualbound = 3398176.248039, lowerbound=1263806.248039, norm of subgrad 37.487824 stepsize= 1.000000 +dualbound = 3398222.073157, lowerbound=1268332.073157, norm of subgrad 1126.788389 dualbound = 3398222.073157, lowerbound=1268332.073157, norm of subgrad 36.957071 stepsize= 1.000000 +dualbound = 3398336.857955, lowerbound=1264302.857955, norm of subgrad 1124.980826 dualbound = 3398336.857955, lowerbound=1264302.857955, norm of subgrad 37.333427 stepsize= 1.000000 +dualbound = 3398424.642293, lowerbound=1265145.642293, norm of subgrad 1125.338901 dualbound = 3398424.642293, lowerbound=1265145.642293, norm of subgrad 36.466208 stepsize= 1.000000 +dualbound = 3398511.265859, lowerbound=1266677.265859, norm of subgrad 1126.022764 dualbound = 3398511.265859, lowerbound=1266677.265859, norm of subgrad 36.559863 stepsize= 1.000000 +dualbound = 3398573.404271, lowerbound=1265339.404271, norm of subgrad 1125.459641 dualbound = 3398573.404271, lowerbound=1265339.404271, norm of subgrad 37.177122 stepsize= 1.000000 +dualbound = 3398673.996655, lowerbound=1270788.996655, norm of subgrad 1127.871888 dualbound = 3398673.996655, lowerbound=1270788.996655, norm of subgrad 37.504565 stepsize= 1.000000 +dualbound = 3398736.369202, lowerbound=1264144.369202, norm of subgrad 1124.911716 dualbound = 3398736.369202, lowerbound=1264144.369202, norm of subgrad 36.665686 stepsize= 1.000000 +dualbound = 3398864.447340, lowerbound=1264228.447340, norm of subgrad 1124.904639 dualbound = 3398864.447340, lowerbound=1264228.447340, norm of subgrad 36.195002 stepsize= 1.000000 +dualbound = 3398945.680022, lowerbound=1268790.680022, norm of subgrad 1126.959928 dualbound = 3398945.680022, lowerbound=1268790.680022, norm of subgrad 36.458643 stepsize= 1.000000 +dualbound = 3399011.579102, lowerbound=1269924.579102, norm of subgrad 1127.496155 dualbound = 3399011.579102, lowerbound=1269924.579102, norm of subgrad 37.267936 stepsize= 1.000000 +dualbound = 3399073.729477, lowerbound=1268044.729477, norm of subgrad 1126.643568 dualbound = 3399073.729477, lowerbound=1268044.729477, norm of subgrad 36.649016 stepsize= 1.000000 +dualbound = 3399202.835595, lowerbound=1268386.835595, norm of subgrad 1126.798489 dualbound = 3399202.835595, lowerbound=1268386.835595, norm of subgrad 37.644470 stepsize= 1.000000 +dualbound = 3399281.182422, lowerbound=1267591.182422, norm of subgrad 1126.423181 dualbound = 3399281.182422, lowerbound=1267591.182422, norm of subgrad 36.281494 stepsize= 1.000000 +dualbound = 3399342.076393, lowerbound=1265923.076393, norm of subgrad 1125.706479 dualbound = 3399342.076393, lowerbound=1265923.076393, norm of subgrad 36.781707 stepsize= 1.000000 +dualbound = 3399454.392824, lowerbound=1261284.392824, norm of subgrad 1123.631787 dualbound = 3399454.392824, lowerbound=1261284.392824, norm of subgrad 37.098739 stepsize= 1.000000 +dualbound = 3399510.129197, lowerbound=1264671.129197, norm of subgrad 1125.131161 dualbound = 3399510.129197, lowerbound=1264671.129197, norm of subgrad 36.121135 stepsize= 1.000000 +dualbound = 3399623.711876, lowerbound=1270290.711876, norm of subgrad 1127.603083 dualbound = 3399623.711876, lowerbound=1270290.711876, norm of subgrad 36.215779 stepsize= 1.000000 +dualbound = 3399703.578959, lowerbound=1263769.578959, norm of subgrad 1124.743339 dualbound = 3399703.578959, lowerbound=1263769.578959, norm of subgrad 36.849248 stepsize= 1.000000 +dualbound = 3399756.191904, lowerbound=1267383.191904, norm of subgrad 1126.384567 dualbound = 3399756.191904, lowerbound=1267383.191904, norm of subgrad 37.571438 stepsize= 1.000000 +dualbound = 3399847.799453, lowerbound=1264814.799453, norm of subgrad 1125.203892 dualbound = 3399847.799453, lowerbound=1264814.799453, norm of subgrad 36.886414 stepsize= 1.000000 +dualbound = 3399917.688932, lowerbound=1268966.688932, norm of subgrad 1127.035354 dualbound = 3399917.688932, lowerbound=1268966.688932, norm of subgrad 36.220015 stepsize= 1.000000 +dualbound = 3400050.771675, lowerbound=1264191.771675, norm of subgrad 1124.923451 dualbound = 3400050.771675, lowerbound=1264191.771675, norm of subgrad 37.337417 stepsize= 1.000000 +dualbound = 3400092.237638, lowerbound=1267239.237638, norm of subgrad 1126.259401 dualbound = 3400092.237638, lowerbound=1267239.237638, norm of subgrad 35.531197 stepsize= 1.000000 +dualbound = 3400216.897212, lowerbound=1266215.897212, norm of subgrad 1125.807220 dualbound = 3400216.897212, lowerbound=1266215.897212, norm of subgrad 36.751321 stepsize= 1.000000 +dualbound = 3400276.882325, lowerbound=1268800.882325, norm of subgrad 1126.957356 dualbound = 3400276.882325, lowerbound=1268800.882325, norm of subgrad 35.944194 stepsize= 1.000000 +dualbound = 3400371.663117, lowerbound=1263953.663117, norm of subgrad 1124.821614 dualbound = 3400371.663117, lowerbound=1263953.663117, norm of subgrad 36.942940 stepsize= 1.000000 +dualbound = 3400417.114929, lowerbound=1269165.114929, norm of subgrad 1127.150884 dualbound = 3400417.114929, lowerbound=1269165.114929, norm of subgrad 36.734885 stepsize= 1.000000 +dualbound = 3400529.751351, lowerbound=1267737.751351, norm of subgrad 1126.497116 dualbound = 3400529.751351, lowerbound=1267737.751351, norm of subgrad 37.022107 stepsize= 1.000000 +dualbound = 3400621.251551, lowerbound=1268158.251551, norm of subgrad 1126.708148 dualbound = 3400621.251551, lowerbound=1268158.251551, norm of subgrad 37.476662 stepsize= 1.000000 +dualbound = 3400695.234002, lowerbound=1264087.234002, norm of subgrad 1124.906767 dualbound = 3400695.234002, lowerbound=1264087.234002, norm of subgrad 37.443056 stepsize= 1.000000 +dualbound = 3400759.174772, lowerbound=1262220.174772, norm of subgrad 1124.104610 dualbound = 3400759.174772, lowerbound=1262220.174772, norm of subgrad 38.143686 stepsize= 1.000000 +dualbound = 3400836.162721, lowerbound=1269860.162721, norm of subgrad 1127.447632 dualbound = 3400836.162721, lowerbound=1269860.162721, norm of subgrad 36.810161 stepsize= 1.000000 +dualbound = 3400963.153511, lowerbound=1263048.153511, norm of subgrad 1124.425699 dualbound = 3400963.153511, lowerbound=1263048.153511, norm of subgrad 37.576466 stepsize= 1.000000 +dualbound = 3401026.886924, lowerbound=1263073.886924, norm of subgrad 1124.414019 dualbound = 3401026.886924, lowerbound=1263073.886924, norm of subgrad 36.010185 stepsize= 1.000000 +dualbound = 3401139.723874, lowerbound=1267164.723874, norm of subgrad 1126.228540 dualbound = 3401139.723874, lowerbound=1267164.723874, norm of subgrad 36.590121 stepsize= 1.000000 +dualbound = 3401203.353687, lowerbound=1264865.353687, norm of subgrad 1125.228578 dualbound = 3401203.353687, lowerbound=1264865.353687, norm of subgrad 36.573622 stepsize= 1.000000 +dualbound = 3401268.115358, lowerbound=1267224.115358, norm of subgrad 1126.287315 dualbound = 3401268.115358, lowerbound=1267224.115358, norm of subgrad 36.929144 stepsize= 1.000000 +dualbound = 3401349.160149, lowerbound=1265414.160149, norm of subgrad 1125.486188 dualbound = 3401349.160149, lowerbound=1265414.160149, norm of subgrad 37.229622 stepsize= 1.000000 +dualbound = 3401451.499528, lowerbound=1266872.499528, norm of subgrad 1126.131209 dualbound = 3401451.499528, lowerbound=1266872.499528, norm of subgrad 37.434468 stepsize= 1.000000 +dualbound = 3401550.199929, lowerbound=1266386.199929, norm of subgrad 1125.902394 dualbound = 3401550.199929, lowerbound=1266386.199929, norm of subgrad 36.995951 stepsize= 1.000000 +dualbound = 3401609.777812, lowerbound=1264584.777812, norm of subgrad 1125.101230 dualbound = 3401609.777812, lowerbound=1264584.777812, norm of subgrad 36.435942 stepsize= 1.000000 +dualbound = 3401707.932012, lowerbound=1268990.932012, norm of subgrad 1127.043891 dualbound = 3401707.932012, lowerbound=1268990.932012, norm of subgrad 36.539762 stepsize= 1.000000 +dualbound = 3401786.086906, lowerbound=1266699.086906, norm of subgrad 1126.029790 dualbound = 3401786.086906, lowerbound=1266699.086906, norm of subgrad 36.361448 stepsize= 1.000000 +dualbound = 3401876.556214, lowerbound=1263871.556214, norm of subgrad 1124.772669 dualbound = 3401876.556214, lowerbound=1263871.556214, norm of subgrad 36.503004 stepsize= 1.000000 +dualbound = 3401978.851947, lowerbound=1267463.851947, norm of subgrad 1126.409718 dualbound = 3401978.851947, lowerbound=1267463.851947, norm of subgrad 37.911683 stepsize= 1.000000 +dualbound = 3402015.324892, lowerbound=1264419.324892, norm of subgrad 1125.063254 dualbound = 3402015.324892, lowerbound=1264419.324892, norm of subgrad 37.208506 stepsize= 1.000000 +dualbound = 3402133.127902, lowerbound=1270988.127902, norm of subgrad 1127.962822 dualbound = 3402133.127902, lowerbound=1270988.127902, norm of subgrad 37.812736 stepsize= 1.000000 +dualbound = 3402217.858906, lowerbound=1265448.858906, norm of subgrad 1125.483833 dualbound = 3402217.858906, lowerbound=1265448.858906, norm of subgrad 36.738685 stepsize= 1.000000 +dualbound = 3402312.632661, lowerbound=1270351.632661, norm of subgrad 1127.673992 dualbound = 3402312.632661, lowerbound=1270351.632661, norm of subgrad 37.306484 stepsize= 1.000000 +dualbound = 3402391.072744, lowerbound=1267423.072744, norm of subgrad 1126.376524 dualbound = 3402391.072744, lowerbound=1267423.072744, norm of subgrad 37.140814 stepsize= 1.000000 +dualbound = 3402457.347974, lowerbound=1268269.347974, norm of subgrad 1126.743692 dualbound = 3402457.347974, lowerbound=1268269.347974, norm of subgrad 36.718867 stepsize= 1.000000 +dualbound = 3402534.617926, lowerbound=1266106.617927, norm of subgrad 1125.763571 dualbound = 3402534.617926, lowerbound=1266106.617927, norm of subgrad 36.252861 stepsize= 1.000000 +dualbound = 3402633.655587, lowerbound=1269750.655587, norm of subgrad 1127.410598 dualbound = 3402633.655587, lowerbound=1269750.655587, norm of subgrad 37.457144 stepsize= 1.000000 +dualbound = 3402699.686272, lowerbound=1263683.686272, norm of subgrad 1124.704711 dualbound = 3402699.686272, lowerbound=1263683.686272, norm of subgrad 36.647383 stepsize= 1.000000 +dualbound = 3402783.766338, lowerbound=1267266.766338, norm of subgrad 1126.312464 dualbound = 3402783.766338, lowerbound=1267266.766338, norm of subgrad 37.377534 stepsize= 1.000000 +dualbound = 3402884.579754, lowerbound=1269292.579754, norm of subgrad 1127.183472 dualbound = 3402884.579754, lowerbound=1269292.579754, norm of subgrad 36.753414 stepsize= 1.000000 +dualbound = 3402952.712457, lowerbound=1265150.712457, norm of subgrad 1125.339821 dualbound = 3402952.712457, lowerbound=1265150.712457, norm of subgrad 36.154290 stepsize= 1.000000 +dualbound = 3403069.603761, lowerbound=1259258.603761, norm of subgrad 1122.708156 dualbound = 3403069.603761, lowerbound=1259258.603761, norm of subgrad 36.495086 stepsize= 1.000000 +dualbound = 3403134.492271, lowerbound=1268597.492271, norm of subgrad 1126.892405 dualbound = 3403134.492271, lowerbound=1268597.492271, norm of subgrad 36.795224 stepsize= 1.000000 +dualbound = 3403213.331821, lowerbound=1263189.331821, norm of subgrad 1124.473358 dualbound = 3403213.331821, lowerbound=1263189.331821, norm of subgrad 36.466965 stepsize= 1.000000 +dualbound = 3403303.858399, lowerbound=1267294.858399, norm of subgrad 1126.278766 dualbound = 3403303.858399, lowerbound=1267294.858399, norm of subgrad 36.048947 stepsize= 1.000000 +dualbound = 3403408.714543, lowerbound=1266798.714543, norm of subgrad 1126.077135 dualbound = 3403408.714543, lowerbound=1266798.714543, norm of subgrad 36.821952 stepsize= 1.000000 +dualbound = 3403461.250148, lowerbound=1270632.250148, norm of subgrad 1127.808162 dualbound = 3403461.250148, lowerbound=1270632.250148, norm of subgrad 37.034249 stepsize= 1.000000 +dualbound = 3403537.568095, lowerbound=1262230.568095, norm of subgrad 1124.069646 dualbound = 3403537.568095, lowerbound=1262230.568095, norm of subgrad 37.125705 stepsize= 1.000000 +dualbound = 3403645.879353, lowerbound=1267064.879353, norm of subgrad 1126.213514 dualbound = 3403645.879353, lowerbound=1267064.879353, norm of subgrad 37.420733 stepsize= 1.000000 +dualbound = 3403716.019622, lowerbound=1267008.019622, norm of subgrad 1126.181610 dualbound = 3403716.019622, lowerbound=1267008.019622, norm of subgrad 36.703410 stepsize= 1.000000 +dualbound = 3403788.120910, lowerbound=1269299.120910, norm of subgrad 1127.204117 dualbound = 3403788.120910, lowerbound=1269299.120910, norm of subgrad 36.906656 stepsize= 1.000000 +dualbound = 3403893.119081, lowerbound=1263874.119081, norm of subgrad 1124.796034 dualbound = 3403893.119081, lowerbound=1263874.119081, norm of subgrad 37.376439 stepsize= 1.000000 +dualbound = 3403965.411377, lowerbound=1269783.411377, norm of subgrad 1127.389645 dualbound = 3403965.411377, lowerbound=1269783.411377, norm of subgrad 36.004059 stepsize= 1.000000 +dualbound = 3404086.116703, lowerbound=1261830.116703, norm of subgrad 1123.864812 dualbound = 3404086.116703, lowerbound=1261830.116703, norm of subgrad 36.914839 stepsize= 1.000000 +dualbound = 3404156.590648, lowerbound=1268772.590648, norm of subgrad 1126.941254 dualbound = 3404156.590648, lowerbound=1268772.590648, norm of subgrad 35.978799 stepsize= 1.000000 +dualbound = 3404231.881898, lowerbound=1268979.881898, norm of subgrad 1127.040320 dualbound = 3404231.881898, lowerbound=1268979.881898, norm of subgrad 36.266944 stepsize= 1.000000 +dualbound = 3404312.905396, lowerbound=1266920.905396, norm of subgrad 1126.116293 dualbound = 3404312.905396, lowerbound=1266920.905396, norm of subgrad 36.028093 stepsize= 1.000000 +dualbound = 3404414.166885, lowerbound=1267857.166885, norm of subgrad 1126.535471 dualbound = 3404414.166885, lowerbound=1267857.166885, norm of subgrad 36.417873 stepsize= 1.000000 +dualbound = 3404469.705650, lowerbound=1263398.705650, norm of subgrad 1124.547334 dualbound = 3404469.705650, lowerbound=1263398.705650, norm of subgrad 35.546290 stepsize= 1.000000 +dualbound = 3404578.103070, lowerbound=1265884.103070, norm of subgrad 1125.650080 dualbound = 3404578.103070, lowerbound=1265884.103070, norm of subgrad 36.227026 stepsize= 1.000000 +dualbound = 3404664.666979, lowerbound=1264662.666979, norm of subgrad 1125.113180 dualbound = 3404664.666979, lowerbound=1264662.666979, norm of subgrad 36.104901 stepsize= 1.000000 +dualbound = 3404716.620637, lowerbound=1267560.620637, norm of subgrad 1126.426926 dualbound = 3404716.620637, lowerbound=1267560.620637, norm of subgrad 36.454817 stepsize= 1.000000 +dualbound = 3404793.495892, lowerbound=1269034.495892, norm of subgrad 1127.070315 dualbound = 3404793.495892, lowerbound=1269034.495892, norm of subgrad 36.467455 stepsize= 1.000000 +dualbound = 3404923.513860, lowerbound=1264997.513860, norm of subgrad 1125.265086 dualbound = 3404923.513860, lowerbound=1264997.513860, norm of subgrad 36.796983 stepsize= 1.000000 +dualbound = 3404967.687391, lowerbound=1268987.687391, norm of subgrad 1127.039346 dualbound = 3404967.687391, lowerbound=1268987.687391, norm of subgrad 35.695567 stepsize= 1.000000 +dualbound = 3405090.834045, lowerbound=1266353.834045, norm of subgrad 1125.868036 dualbound = 3405090.834045, lowerbound=1266353.834045, norm of subgrad 36.717117 stepsize= 1.000000 +dualbound = 3405154.175476, lowerbound=1270332.175476, norm of subgrad 1127.623685 dualbound = 3405154.175476, lowerbound=1270332.175476, norm of subgrad 35.585691 stepsize= 1.000000 +dualbound = 3405240.295691, lowerbound=1267011.295691, norm of subgrad 1126.175517 dualbound = 3405240.295691, lowerbound=1267011.295691, norm of subgrad 36.689511 stepsize= 1.000000 +dualbound = 3405320.861784, lowerbound=1269048.861784, norm of subgrad 1127.074027 dualbound = 3405320.861784, lowerbound=1269048.861784, norm of subgrad 36.435780 stepsize= 1.000000 +dualbound = 3405408.147739, lowerbound=1268160.147739, norm of subgrad 1126.697896 dualbound = 3405408.147739, lowerbound=1268160.147739, norm of subgrad 37.084848 stepsize= 1.000000 +dualbound = 3405461.885712, lowerbound=1269827.885712, norm of subgrad 1127.440413 dualbound = 3405461.885712, lowerbound=1269827.885712, norm of subgrad 36.711551 stepsize= 1.000000 +dualbound = 3405558.153156, lowerbound=1264494.153156, norm of subgrad 1125.090287 dualbound = 3405558.153156, lowerbound=1264494.153156, norm of subgrad 37.818877 stepsize= 1.000000 +dualbound = 3405623.144800, lowerbound=1265355.144800, norm of subgrad 1125.458638 dualbound = 3405623.144800, lowerbound=1265355.144800, norm of subgrad 36.972850 stepsize= 1.000000 +dualbound = 3405739.464812, lowerbound=1265823.464812, norm of subgrad 1125.656459 dualbound = 3405739.464812, lowerbound=1265823.464812, norm of subgrad 37.353983 stepsize= 1.000000 +dualbound = 3405815.653879, lowerbound=1267327.653879, norm of subgrad 1126.317297 dualbound = 3405815.653879, lowerbound=1267327.653879, norm of subgrad 36.594932 stepsize= 1.000000 +dualbound = 3405908.805780, lowerbound=1266779.805780, norm of subgrad 1126.070959 dualbound = 3405908.805780, lowerbound=1266779.805780, norm of subgrad 36.730803 stepsize= 1.000000 +dualbound = 3405974.495154, lowerbound=1261555.495154, norm of subgrad 1123.771104 dualbound = 3405974.495154, lowerbound=1261555.495154, norm of subgrad 37.036325 stepsize= 1.000000 +dualbound = 3406080.610509, lowerbound=1266323.610509, norm of subgrad 1125.907461 dualbound = 3406080.610509, lowerbound=1266323.610509, norm of subgrad 38.080380 stepsize= 1.000000 +dualbound = 3406121.022737, lowerbound=1264766.022737, norm of subgrad 1125.215989 dualbound = 3406121.022737, lowerbound=1264766.022737, norm of subgrad 37.221126 stepsize= 1.000000 +dualbound = 3406246.107646, lowerbound=1267063.107646, norm of subgrad 1126.201628 dualbound = 3406246.107646, lowerbound=1267063.107646, norm of subgrad 37.310654 stepsize= 1.000000 +dualbound = 3406319.595630, lowerbound=1265285.595630, norm of subgrad 1125.425073 dualbound = 3406319.595630, lowerbound=1265285.595630, norm of subgrad 37.006594 stepsize= 1.000000 +dualbound = 3406399.840746, lowerbound=1266907.840746, norm of subgrad 1126.120260 dualbound = 3406399.840746, lowerbound=1266907.840746, norm of subgrad 36.321414 stepsize= 1.000000 +dualbound = 3406511.882234, lowerbound=1268494.882234, norm of subgrad 1126.780761 dualbound = 3406511.882234, lowerbound=1268494.882234, norm of subgrad 35.384198 stepsize= 1.000000 +dualbound = 3406594.608785, lowerbound=1263298.608785, norm of subgrad 1124.504161 dualbound = 3406594.608785, lowerbound=1263298.608785, norm of subgrad 35.968410 stepsize= 1.000000 +dualbound = 3406673.854351, lowerbound=1264705.854351, norm of subgrad 1125.112374 dualbound = 3406673.854351, lowerbound=1264705.854351, norm of subgrad 35.372950 stepsize= 1.000000 +dualbound = 3406767.810719, lowerbound=1269107.810719, norm of subgrad 1127.084651 dualbound = 3406767.810719, lowerbound=1269107.810719, norm of subgrad 36.138018 stepsize= 1.000000 +dualbound = 3406843.390934, lowerbound=1267287.390934, norm of subgrad 1126.314073 dualbound = 3406843.390934, lowerbound=1267287.390934, norm of subgrad 37.034851 stepsize= 1.000000 +dualbound = 3406905.033289, lowerbound=1263966.033289, norm of subgrad 1124.811999 dualbound = 3406905.033289, lowerbound=1263966.033289, norm of subgrad 36.022803 stepsize= 1.000000 +dualbound = 3407002.586796, lowerbound=1272160.586796, norm of subgrad 1128.450082 dualbound = 3407002.586796, lowerbound=1272160.586796, norm of subgrad 36.558905 stepsize= 1.000000 +dualbound = 3407091.598822, lowerbound=1268131.598822, norm of subgrad 1126.675463 dualbound = 3407091.598822, lowerbound=1268131.598822, norm of subgrad 36.810488 stepsize= 1.000000 +dualbound = 3407147.640580, lowerbound=1268582.640580, norm of subgrad 1126.883597 dualbound = 3407147.640580, lowerbound=1268582.640580, norm of subgrad 36.606581 stepsize= 1.000000 +dualbound = 3407242.998636, lowerbound=1262705.998636, norm of subgrad 1124.251306 dualbound = 3407242.998636, lowerbound=1262705.998636, norm of subgrad 36.474074 stepsize= 1.000000 +dualbound = 3407359.533714, lowerbound=1269260.533714, norm of subgrad 1127.122679 dualbound = 3407359.533714, lowerbound=1269260.533714, norm of subgrad 35.518095 stepsize= 1.000000 +dualbound = 3407440.979794, lowerbound=1268189.979794, norm of subgrad 1126.700927 dualbound = 3407440.979794, lowerbound=1268189.979794, norm of subgrad 36.693952 stepsize= 1.000000 +dualbound = 3407510.633306, lowerbound=1267328.633306, norm of subgrad 1126.299531 dualbound = 3407510.633306, lowerbound=1267328.633306, norm of subgrad 35.939581 stepsize= 1.000000 +dualbound = 3407598.716776, lowerbound=1272040.716776, norm of subgrad 1128.396968 dualbound = 3407598.716776, lowerbound=1272040.716776, norm of subgrad 36.429157 stepsize= 1.000000 +dualbound = 3407683.306991, lowerbound=1264464.306991, norm of subgrad 1125.037469 dualbound = 3407683.306991, lowerbound=1264464.306991, norm of subgrad 36.463546 stepsize= 1.000000 +dualbound = 3407745.319582, lowerbound=1271398.319582, norm of subgrad 1128.106520 dualbound = 3407745.319582, lowerbound=1271398.319582, norm of subgrad 35.888892 stepsize= 1.000000 +dualbound = 3407850.541870, lowerbound=1266066.541870, norm of subgrad 1125.739997 dualbound = 3407850.541870, lowerbound=1266066.541870, norm of subgrad 36.458501 stepsize= 1.000000 +dualbound = 3407921.045603, lowerbound=1269102.045603, norm of subgrad 1127.095402 dualbound = 3407921.045603, lowerbound=1269102.045603, norm of subgrad 36.228493 stepsize= 1.000000 +dualbound = 3408016.876096, lowerbound=1269368.876096, norm of subgrad 1127.200903 dualbound = 3408016.876096, lowerbound=1269368.876096, norm of subgrad 36.177762 stepsize= 1.000000 +dualbound = 3408094.836783, lowerbound=1268280.836783, norm of subgrad 1126.727490 dualbound = 3408094.836783, lowerbound=1268280.836783, norm of subgrad 36.220998 stepsize= 1.000000 +dualbound = 3408150.648749, lowerbound=1267641.648749, norm of subgrad 1126.463337 dualbound = 3408150.648749, lowerbound=1267641.648749, norm of subgrad 36.521391 stepsize= 1.000000 +dualbound = 3408259.261985, lowerbound=1270748.261985, norm of subgrad 1127.823684 dualbound = 3408259.261985, lowerbound=1270748.261985, norm of subgrad 36.696229 stepsize= 1.000000 +dualbound = 3408345.082385, lowerbound=1261155.082385, norm of subgrad 1123.540423 dualbound = 3408345.082385, lowerbound=1261155.082385, norm of subgrad 35.690621 stepsize= 1.000000 +dualbound = 3408433.014205, lowerbound=1265890.014205, norm of subgrad 1125.641601 dualbound = 3408433.014205, lowerbound=1265890.014205, norm of subgrad 35.593986 stepsize= 1.000000 +dualbound = 3408540.143824, lowerbound=1268311.143824, norm of subgrad 1126.722301 dualbound = 3408540.143824, lowerbound=1268311.143824, norm of subgrad 36.043441 stepsize= 1.000000 +dualbound = 3408575.457367, lowerbound=1267864.457367, norm of subgrad 1126.548471 dualbound = 3408575.457367, lowerbound=1267864.457367, norm of subgrad 35.809406 stepsize= 1.000000 +dualbound = 3408678.452832, lowerbound=1266474.452832, norm of subgrad 1125.949578 dualbound = 3408678.452832, lowerbound=1266474.452832, norm of subgrad 37.296052 stepsize= 1.000000 +dualbound = 3408724.665321, lowerbound=1266175.665321, norm of subgrad 1125.821773 dualbound = 3408724.665321, lowerbound=1266175.665321, norm of subgrad 36.677139 stepsize= 1.000000 +dualbound = 3408844.465389, lowerbound=1263124.465389, norm of subgrad 1124.462301 dualbound = 3408844.465389, lowerbound=1263124.465389, norm of subgrad 37.560619 stepsize= 1.000000 +dualbound = 3408899.295904, lowerbound=1266654.295904, norm of subgrad 1126.047644 dualbound = 3408899.295904, lowerbound=1266654.295904, norm of subgrad 37.199873 stepsize= 1.000000 +dualbound = 3408999.383647, lowerbound=1268621.383647, norm of subgrad 1126.899456 dualbound = 3408999.383647, lowerbound=1268621.383647, norm of subgrad 37.162989 stepsize= 1.000000 +dualbound = 3409078.697793, lowerbound=1265669.697793, norm of subgrad 1125.624581 dualbound = 3409078.697793, lowerbound=1265669.697793, norm of subgrad 37.951471 stepsize= 1.000000 +dualbound = 3409138.584235, lowerbound=1267730.584235, norm of subgrad 1126.517458 dualbound = 3409138.584235, lowerbound=1267730.584235, norm of subgrad 37.025484 stepsize= 1.000000 +dualbound = 3409229.499235, lowerbound=1265904.499235, norm of subgrad 1125.712441 dualbound = 3409229.499235, lowerbound=1265904.499235, norm of subgrad 37.615356 stepsize= 1.000000 +dualbound = 3409333.018086, lowerbound=1267802.018086, norm of subgrad 1126.522089 dualbound = 3409333.018086, lowerbound=1267802.018086, norm of subgrad 36.790200 stepsize= 1.000000 +dualbound = 3409429.286521, lowerbound=1264845.286521, norm of subgrad 1125.214774 dualbound = 3409429.286521, lowerbound=1264845.286521, norm of subgrad 36.868258 stepsize= 1.000000 +dualbound = 3409501.882209, lowerbound=1271666.882209, norm of subgrad 1128.239284 dualbound = 3409501.882209, lowerbound=1271666.882209, norm of subgrad 36.463621 stepsize= 1.000000 +dualbound = 3409582.498184, lowerbound=1265910.498184, norm of subgrad 1125.671577 dualbound = 3409582.498184, lowerbound=1265910.498184, norm of subgrad 36.147143 stepsize= 1.000000 +dualbound = 3409694.097973, lowerbound=1268308.097973, norm of subgrad 1126.718731 dualbound = 3409694.097973, lowerbound=1268308.097973, norm of subgrad 36.036090 stepsize= 1.000000 +dualbound = 3409756.045637, lowerbound=1271526.045637, norm of subgrad 1128.163572 dualbound = 3409756.045637, lowerbound=1271526.045637, norm of subgrad 35.901917 stepsize= 1.000000 +dualbound = 3409857.713121, lowerbound=1267008.713121, norm of subgrad 1126.138852 dualbound = 3409857.713121, lowerbound=1267008.713121, norm of subgrad 35.800384 stepsize= 1.000000 +dualbound = 3409946.018422, lowerbound=1274389.018422, norm of subgrad 1129.416672 dualbound = 3409946.018422, lowerbound=1274389.018422, norm of subgrad 35.795325 stepsize= 1.000000 +dualbound = 3409990.315729, lowerbound=1267665.315729, norm of subgrad 1126.455199 dualbound = 3409990.315729, lowerbound=1267665.315729, norm of subgrad 35.781242 stepsize= 1.000000 +dualbound = 3410080.995662, lowerbound=1267094.995662, norm of subgrad 1126.199803 dualbound = 3410080.995662, lowerbound=1267094.995662, norm of subgrad 36.354916 stepsize= 1.000000 +dualbound = 3410171.218119, lowerbound=1262574.218119, norm of subgrad 1124.185580 dualbound = 3410171.218119, lowerbound=1262574.218119, norm of subgrad 36.183179 stepsize= 1.000000 +dualbound = 3410250.885427, lowerbound=1263141.885427, norm of subgrad 1124.432695 dualbound = 3410250.885427, lowerbound=1263141.885427, norm of subgrad 35.870145 stepsize= 1.000000 +dualbound = 3410351.174837, lowerbound=1263665.174837, norm of subgrad 1124.653802 dualbound = 3410351.174837, lowerbound=1263665.174837, norm of subgrad 35.795103 stepsize= 1.000000 +dualbound = 3410422.295531, lowerbound=1268594.295531, norm of subgrad 1126.858596 dualbound = 3410422.295531, lowerbound=1268594.295531, norm of subgrad 35.876464 stepsize= 1.000000 +dualbound = 3410518.756581, lowerbound=1268660.756581, norm of subgrad 1126.889860 dualbound = 3410518.756581, lowerbound=1268660.756581, norm of subgrad 36.283068 stepsize= 1.000000 +dualbound = 3410597.026156, lowerbound=1271233.026156, norm of subgrad 1128.034586 dualbound = 3410597.026156, lowerbound=1271233.026156, norm of subgrad 36.156183 stepsize= 1.000000 +dualbound = 3410687.464692, lowerbound=1268535.464692, norm of subgrad 1126.822286 dualbound = 3410687.464692, lowerbound=1268535.464692, norm of subgrad 35.825110 stepsize= 1.000000 +dualbound = 3410759.524514, lowerbound=1263253.524514, norm of subgrad 1124.483670 dualbound = 3410759.524514, lowerbound=1263253.524514, norm of subgrad 35.805863 stepsize= 1.000000 +dualbound = 3410859.252238, lowerbound=1275291.252238, norm of subgrad 1129.846119 dualbound = 3410859.252238, lowerbound=1275291.252238, norm of subgrad 36.888043 stepsize= 1.000000 +dualbound = 3410926.529939, lowerbound=1269353.529939, norm of subgrad 1127.186999 dualbound = 3410926.529939, lowerbound=1269353.529939, norm of subgrad 35.556683 stepsize= 1.000000 +dualbound = 3411037.475883, lowerbound=1270798.475883, norm of subgrad 1127.825109 dualbound = 3411037.475883, lowerbound=1270798.475883, norm of subgrad 36.082488 stepsize= 1.000000 +dualbound = 3411113.053169, lowerbound=1272075.053169, norm of subgrad 1128.413955 dualbound = 3411113.053169, lowerbound=1272075.053169, norm of subgrad 36.312220 stepsize= 1.000000 +dualbound = 3411178.728513, lowerbound=1264524.728513, norm of subgrad 1125.057211 dualbound = 3411178.728513, lowerbound=1264524.728513, norm of subgrad 35.981597 stepsize= 1.000000 +dualbound = 3411293.927728, lowerbound=1270995.927728, norm of subgrad 1127.933477 dualbound = 3411293.927728, lowerbound=1270995.927728, norm of subgrad 36.785856 stepsize= 1.000000 +dualbound = 3411334.164524, lowerbound=1264789.164524, norm of subgrad 1125.189391 dualbound = 3411334.164524, lowerbound=1264789.164524, norm of subgrad 36.086518 stepsize= 1.000000 +dualbound = 3411428.000685, lowerbound=1270230.000685, norm of subgrad 1127.595673 dualbound = 3411428.000685, lowerbound=1270230.000685, norm of subgrad 36.549092 stepsize= 1.000000 +dualbound = 3411522.989271, lowerbound=1268532.989271, norm of subgrad 1126.844261 dualbound = 3411522.989271, lowerbound=1268532.989271, norm of subgrad 36.605855 stepsize= 1.000000 +dualbound = 3411598.682863, lowerbound=1271802.682863, norm of subgrad 1128.287057 dualbound = 3411598.682863, lowerbound=1271802.682863, norm of subgrad 36.120543 stepsize= 1.000000 +dualbound = 3411680.827047, lowerbound=1263684.827047, norm of subgrad 1124.676321 dualbound = 3411680.827047, lowerbound=1263684.827047, norm of subgrad 35.974216 stepsize= 1.000000 +dualbound = 3411761.428293, lowerbound=1269012.428293, norm of subgrad 1127.049435 dualbound = 3411761.428293, lowerbound=1269012.428293, norm of subgrad 36.174594 stepsize= 1.000000 +dualbound = 3411830.873006, lowerbound=1263547.873006, norm of subgrad 1124.626548 dualbound = 3411830.873006, lowerbound=1263547.873006, norm of subgrad 36.144774 stepsize= 1.000000 +dualbound = 3411928.570615, lowerbound=1264525.570615, norm of subgrad 1125.037586 dualbound = 3411928.570615, lowerbound=1264525.570615, norm of subgrad 35.800805 stepsize= 1.000000 +dualbound = 3412029.290410, lowerbound=1266052.290410, norm of subgrad 1125.739886 dualbound = 3412029.290410, lowerbound=1266052.290410, norm of subgrad 36.588520 stepsize= 1.000000 +dualbound = 3412090.095430, lowerbound=1265452.095430, norm of subgrad 1125.468834 dualbound = 3412090.095430, lowerbound=1265452.095430, norm of subgrad 35.899931 stepsize= 1.000000 +dualbound = 3412159.026713, lowerbound=1268376.026713, norm of subgrad 1126.778162 dualbound = 3412159.026713, lowerbound=1268376.026713, norm of subgrad 36.358373 stepsize= 1.000000 +dualbound = 3412272.764153, lowerbound=1266105.764153, norm of subgrad 1125.720997 dualbound = 3412272.764153, lowerbound=1266105.764153, norm of subgrad 35.436386 stepsize= 1.000000 +dualbound = 3412343.747863, lowerbound=1271424.747863, norm of subgrad 1128.117347 dualbound = 3412343.747863, lowerbound=1271424.747863, norm of subgrad 35.985882 stepsize= 1.000000 +dualbound = 3412431.150081, lowerbound=1268493.150081, norm of subgrad 1126.788423 dualbound = 3412431.150081, lowerbound=1268493.150081, norm of subgrad 35.304422 stepsize= 1.000000 +dualbound = 3412524.155075, lowerbound=1267159.155075, norm of subgrad 1126.205201 dualbound = 3412524.155075, lowerbound=1267159.155075, norm of subgrad 35.665179 stepsize= 1.000000 +dualbound = 3412581.371690, lowerbound=1263682.371690, norm of subgrad 1124.694346 dualbound = 3412581.371690, lowerbound=1263682.371690, norm of subgrad 36.224531 stepsize= 1.000000 +dualbound = 3412658.688179, lowerbound=1271584.688179, norm of subgrad 1128.203301 dualbound = 3412658.688179, lowerbound=1271584.688179, norm of subgrad 36.541983 stepsize= 1.000000 +dualbound = 3412754.539977, lowerbound=1265457.539977, norm of subgrad 1125.493021 dualbound = 3412754.539977, lowerbound=1265457.539977, norm of subgrad 37.052015 stepsize= 1.000000 +dualbound = 3412815.637006, lowerbound=1271390.637006, norm of subgrad 1128.125719 dualbound = 3412815.637006, lowerbound=1271390.637006, norm of subgrad 36.580009 stepsize= 1.000000 +dualbound = 3412929.773133, lowerbound=1263235.773133, norm of subgrad 1124.490006 dualbound = 3412929.773133, lowerbound=1263235.773133, norm of subgrad 36.825754 stepsize= 1.000000 +dualbound = 3412986.941702, lowerbound=1267216.941702, norm of subgrad 1126.285462 dualbound = 3412986.941702, lowerbound=1267216.941702, norm of subgrad 36.866903 stepsize= 1.000000 +dualbound = 3413088.610997, lowerbound=1272441.610997, norm of subgrad 1128.598516 dualbound = 3413088.610997, lowerbound=1272441.610997, norm of subgrad 37.345271 stepsize= 1.000000 +dualbound = 3413141.407494, lowerbound=1267772.407494, norm of subgrad 1126.504952 dualbound = 3413141.407494, lowerbound=1267772.407494, norm of subgrad 35.969383 stepsize= 1.000000 +dualbound = 3413263.067288, lowerbound=1266340.067288, norm of subgrad 1125.843269 dualbound = 3413263.067288, lowerbound=1266340.067288, norm of subgrad 36.120075 stepsize= 1.000000 +dualbound = 3413340.391546, lowerbound=1274510.391546, norm of subgrad 1129.489438 dualbound = 3413340.391546, lowerbound=1274510.391546, norm of subgrad 36.239816 stepsize= 1.000000 +dualbound = 3413409.350668, lowerbound=1267226.350668, norm of subgrad 1126.235477 dualbound = 3413409.350668, lowerbound=1267226.350668, norm of subgrad 35.340616 stepsize= 1.000000 +dualbound = 3413522.813299, lowerbound=1270717.813299, norm of subgrad 1127.780481 dualbound = 3413522.813299, lowerbound=1270717.813299, norm of subgrad 35.839401 stepsize= 1.000000 +dualbound = 3413586.746086, lowerbound=1263563.746086, norm of subgrad 1124.623380 dualbound = 3413586.746086, lowerbound=1263563.746086, norm of subgrad 35.748186 stepsize= 1.000000 +dualbound = 3413672.300100, lowerbound=1269527.300100, norm of subgrad 1127.257424 dualbound = 3413672.300100, lowerbound=1269527.300100, norm of subgrad 35.602725 stepsize= 1.000000 +dualbound = 3413780.051656, lowerbound=1265457.051656, norm of subgrad 1125.443935 dualbound = 3413780.051656, lowerbound=1265457.051656, norm of subgrad 35.703663 stepsize= 1.000000 +dualbound = 3413840.835616, lowerbound=1274172.835616, norm of subgrad 1129.303695 dualbound = 3413840.835616, lowerbound=1274172.835616, norm of subgrad 34.853751 stepsize= 1.000000 +dualbound = 3413918.883580, lowerbound=1261387.883580, norm of subgrad 1123.666269 dualbound = 3413918.883580, lowerbound=1261387.883580, norm of subgrad 36.277375 stepsize= 1.000000 +dualbound = 3413982.302635, lowerbound=1270521.302635, norm of subgrad 1127.726608 dualbound = 3413982.302635, lowerbound=1270521.302635, norm of subgrad 36.185896 stepsize= 1.000000 +dualbound = 3414083.318855, lowerbound=1268984.318855, norm of subgrad 1127.015669 dualbound = 3414083.318855, lowerbound=1268984.318855, norm of subgrad 35.791287 stepsize= 1.000000 +dualbound = 3414193.046309, lowerbound=1271244.046309, norm of subgrad 1128.021297 dualbound = 3414193.046309, lowerbound=1271244.046309, norm of subgrad 36.023984 stepsize= 1.000000 +dualbound = 3414234.477064, lowerbound=1264487.477064, norm of subgrad 1125.051322 dualbound = 3414234.477064, lowerbound=1264487.477064, norm of subgrad 35.978198 stepsize= 1.000000 +dualbound = 3414321.729926, lowerbound=1266115.729926, norm of subgrad 1125.760068 dualbound = 3414321.729926, lowerbound=1266115.729926, norm of subgrad 36.155952 stepsize= 1.000000 +dualbound = 3414418.539085, lowerbound=1268068.539085, norm of subgrad 1126.612417 dualbound = 3414418.539085, lowerbound=1268068.539085, norm of subgrad 35.830283 stepsize= 1.000000 +dualbound = 3414506.856038, lowerbound=1270900.856038, norm of subgrad 1127.860300 dualbound = 3414506.856038, lowerbound=1270900.856038, norm of subgrad 35.444562 stepsize= 1.000000 +dualbound = 3414592.948109, lowerbound=1266060.948109, norm of subgrad 1125.762829 dualbound = 3414592.948109, lowerbound=1266060.948109, norm of subgrad 36.974208 stepsize= 1.000000 +dualbound = 3414627.100656, lowerbound=1270105.100656, norm of subgrad 1127.556695 dualbound = 3414627.100656, lowerbound=1270105.100656, norm of subgrad 36.237447 stepsize= 1.000000 +dualbound = 3414724.896346, lowerbound=1271124.896346, norm of subgrad 1128.019014 dualbound = 3414724.896346, lowerbound=1271124.896346, norm of subgrad 37.413844 stepsize= 1.000000 +dualbound = 3414799.935449, lowerbound=1269117.935449, norm of subgrad 1127.088255 dualbound = 3414799.935449, lowerbound=1269117.935449, norm of subgrad 35.847442 stepsize= 1.000000 +dualbound = 3414929.937985, lowerbound=1262919.937985, norm of subgrad 1124.328216 dualbound = 3414929.937985, lowerbound=1262919.937985, norm of subgrad 36.386846 stepsize= 1.000000 +dualbound = 3415007.238075, lowerbound=1265295.238075, norm of subgrad 1125.400479 dualbound = 3415007.238075, lowerbound=1265295.238075, norm of subgrad 36.170431 stepsize= 1.000000 +dualbound = 3415072.611699, lowerbound=1270064.611699, norm of subgrad 1127.512577 dualbound = 3415072.611699, lowerbound=1270064.611699, norm of subgrad 35.852108 stepsize= 1.000000 +dualbound = 3415165.524380, lowerbound=1273599.524380, norm of subgrad 1129.071089 dualbound = 3415165.524380, lowerbound=1273599.524380, norm of subgrad 35.984895 stepsize= 1.000000 +dualbound = 3415231.111195, lowerbound=1264572.111195, norm of subgrad 1125.065825 dualbound = 3415231.111195, lowerbound=1264572.111195, norm of subgrad 35.589139 stepsize= 1.000000 +dualbound = 3415309.577199, lowerbound=1266804.577199, norm of subgrad 1126.065086 dualbound = 3415309.577199, lowerbound=1266804.577199, norm of subgrad 36.006472 stepsize= 1.000000 +dualbound = 3415392.079588, lowerbound=1262191.079588, norm of subgrad 1124.021388 dualbound = 3415392.079588, lowerbound=1262191.079588, norm of subgrad 36.269855 stepsize= 1.000000 +dualbound = 3415503.323126, lowerbound=1274816.323126, norm of subgrad 1129.592990 dualbound = 3415503.323126, lowerbound=1274816.323126, norm of subgrad 35.710552 stepsize= 1.000000 +dualbound = 3415575.587441, lowerbound=1265800.587441, norm of subgrad 1125.616981 dualbound = 3415575.587441, lowerbound=1265800.587441, norm of subgrad 35.850583 stepsize= 1.000000 +dualbound = 3415650.116796, lowerbound=1271604.116796, norm of subgrad 1128.201718 dualbound = 3415650.116796, lowerbound=1271604.116796, norm of subgrad 36.187420 stepsize= 1.000000 +dualbound = 3415728.072868, lowerbound=1267159.072868, norm of subgrad 1126.226475 dualbound = 3415728.072868, lowerbound=1267159.072868, norm of subgrad 36.124176 stepsize= 1.000000 +dualbound = 3415811.177064, lowerbound=1273015.177064, norm of subgrad 1128.853036 dualbound = 3415811.177064, lowerbound=1273015.177064, norm of subgrad 37.109355 stepsize= 1.000000 +dualbound = 3415888.820842, lowerbound=1265951.820842, norm of subgrad 1125.683268 dualbound = 3415888.820842, lowerbound=1265951.820842, norm of subgrad 35.897685 stepsize= 1.000000 +dualbound = 3415992.369788, lowerbound=1274356.369788, norm of subgrad 1129.410629 dualbound = 3415992.369788, lowerbound=1274356.369788, norm of subgrad 36.270497 stepsize= 1.000000 +dualbound = 3416043.275337, lowerbound=1265166.275337, norm of subgrad 1125.349401 dualbound = 3416043.275337, lowerbound=1265166.275337, norm of subgrad 35.998688 stepsize= 1.000000 +dualbound = 3416130.582811, lowerbound=1269513.582811, norm of subgrad 1127.262872 dualbound = 3416130.582811, lowerbound=1269513.582811, norm of subgrad 35.990380 stepsize= 1.000000 +dualbound = 3416231.886021, lowerbound=1264334.886021, norm of subgrad 1124.981283 dualbound = 3416231.886021, lowerbound=1264334.886021, norm of subgrad 36.732863 stepsize= 1.000000 +dualbound = 3416289.082943, lowerbound=1274082.082943, norm of subgrad 1129.291407 dualbound = 3416289.082943, lowerbound=1274082.082943, norm of subgrad 35.695895 stepsize= 1.000000 +dualbound = 3416401.503865, lowerbound=1264189.503865, norm of subgrad 1124.885551 dualbound = 3416401.503865, lowerbound=1264189.503865, norm of subgrad 35.922429 stepsize= 1.000000 +dualbound = 3416487.321407, lowerbound=1267493.321407, norm of subgrad 1126.353995 dualbound = 3416487.321407, lowerbound=1267493.321407, norm of subgrad 35.578330 stepsize= 1.000000 +dualbound = 3416578.573859, lowerbound=1268156.573859, norm of subgrad 1126.659919 dualbound = 3416578.573859, lowerbound=1268156.573859, norm of subgrad 36.017391 stepsize= 1.000000 +dualbound = 3416639.412401, lowerbound=1269013.412401, norm of subgrad 1127.037449 dualbound = 3416639.412401, lowerbound=1269013.412401, norm of subgrad 35.508288 stepsize= 1.000000 +dualbound = 3416728.254653, lowerbound=1270162.254653, norm of subgrad 1127.540800 dualbound = 3416728.254653, lowerbound=1270162.254653, norm of subgrad 35.704933 stepsize= 1.000000 +dualbound = 3416794.610424, lowerbound=1271865.610424, norm of subgrad 1128.306966 dualbound = 3416794.610424, lowerbound=1271865.610424, norm of subgrad 35.740114 stepsize= 1.000000 +dualbound = 3416896.827165, lowerbound=1264851.827165, norm of subgrad 1125.202572 dualbound = 3416896.827165, lowerbound=1264851.827165, norm of subgrad 36.485843 stepsize= 1.000000 +dualbound = 3416975.273266, lowerbound=1269650.273266, norm of subgrad 1127.325717 dualbound = 3416975.273266, lowerbound=1269650.273266, norm of subgrad 35.936696 stepsize= 1.000000 +dualbound = 3417045.178761, lowerbound=1262669.178761, norm of subgrad 1124.253165 dualbound = 3417045.178761, lowerbound=1262669.178761, norm of subgrad 36.686585 stepsize= 1.000000 +dualbound = 3417106.569537, lowerbound=1276891.569537, norm of subgrad 1130.529774 dualbound = 3417106.569537, lowerbound=1276891.569537, norm of subgrad 35.600432 stepsize= 1.000000 +dualbound = 3417217.446090, lowerbound=1264579.446090, norm of subgrad 1125.064641 dualbound = 3417217.446090, lowerbound=1264579.446090, norm of subgrad 36.081526 stepsize= 1.000000 +dualbound = 3417274.225967, lowerbound=1270917.225967, norm of subgrad 1127.917207 dualbound = 3417274.225967, lowerbound=1270917.225967, norm of subgrad 36.562000 stepsize= 1.000000 +dualbound = 3417362.439109, lowerbound=1265066.439109, norm of subgrad 1125.265942 dualbound = 3417362.439109, lowerbound=1265066.439109, norm of subgrad 35.287578 stepsize= 1.000000 +dualbound = 3417477.510322, lowerbound=1267787.510322, norm of subgrad 1126.469933 dualbound = 3417477.510322, lowerbound=1267787.510322, norm of subgrad 35.525642 stepsize= 1.000000 +dualbound = 3417578.076329, lowerbound=1267946.076329, norm of subgrad 1126.552740 dualbound = 3417578.076329, lowerbound=1267946.076329, norm of subgrad 35.715067 stepsize= 1.000000 +dualbound = 3417614.497374, lowerbound=1275261.497374, norm of subgrad 1129.815249 dualbound = 3417614.497374, lowerbound=1275261.497374, norm of subgrad 35.460133 stepsize= 1.000000 +dualbound = 3417730.413433, lowerbound=1267333.413433, norm of subgrad 1126.284340 dualbound = 3417730.413433, lowerbound=1267333.413433, norm of subgrad 36.040478 stepsize= 1.000000 +dualbound = 3417806.658987, lowerbound=1271020.658987, norm of subgrad 1127.944883 dualbound = 3417806.658987, lowerbound=1271020.658987, norm of subgrad 36.266314 stepsize= 1.000000 +dualbound = 3417851.540971, lowerbound=1266160.540971, norm of subgrad 1125.811059 dualbound = 3417851.540971, lowerbound=1266160.540971, norm of subgrad 36.536037 stepsize= 1.000000 +dualbound = 3417947.469429, lowerbound=1277111.469429, norm of subgrad 1130.643387 dualbound = 3417947.469429, lowerbound=1277111.469429, norm of subgrad 36.591371 stepsize= 1.000000 +dualbound = 3418033.839528, lowerbound=1268575.839528, norm of subgrad 1126.863718 dualbound = 3418033.839528, lowerbound=1268575.839528, norm of subgrad 36.501645 stepsize= 1.000000 +dualbound = 3418079.957665, lowerbound=1268722.957665, norm of subgrad 1126.943636 dualbound = 3418079.957665, lowerbound=1268722.957665, norm of subgrad 36.402172 stepsize= 1.000000 +dualbound = 3418204.659807, lowerbound=1268159.659807, norm of subgrad 1126.695904 dualbound = 3418204.659807, lowerbound=1268159.659807, norm of subgrad 37.532681 stepsize= 1.000000 +dualbound = 3418251.065183, lowerbound=1273171.065183, norm of subgrad 1128.878233 dualbound = 3418251.065183, lowerbound=1273171.065183, norm of subgrad 35.233583 stepsize= 1.000000 +dualbound = 3418376.622438, lowerbound=1264468.622438, norm of subgrad 1125.006054 dualbound = 3418376.622438, lowerbound=1264468.622438, norm of subgrad 35.993850 stepsize= 1.000000 +dualbound = 3418450.961304, lowerbound=1273066.961304, norm of subgrad 1128.812190 dualbound = 3418450.961304, lowerbound=1273066.961304, norm of subgrad 34.990554 stepsize= 1.000000 +dualbound = 3418548.997596, lowerbound=1263047.997596, norm of subgrad 1124.408288 dualbound = 3418548.997596, lowerbound=1263047.997596, norm of subgrad 36.661101 stepsize= 1.000000 +dualbound = 3418598.000297, lowerbound=1272417.000297, norm of subgrad 1128.564132 dualbound = 3418598.000297, lowerbound=1272417.000297, norm of subgrad 35.902684 stepsize= 1.000000 +dualbound = 3418680.334213, lowerbound=1266041.334213, norm of subgrad 1125.712812 dualbound = 3418680.334213, lowerbound=1266041.334213, norm of subgrad 35.641744 stepsize= 1.000000 +dualbound = 3418775.990874, lowerbound=1271343.990874, norm of subgrad 1128.066927 dualbound = 3418775.990874, lowerbound=1271343.990874, norm of subgrad 35.869997 stepsize= 1.000000 +dualbound = 3418863.763579, lowerbound=1264794.763579, norm of subgrad 1125.157662 dualbound = 3418863.763579, lowerbound=1264794.763579, norm of subgrad 35.675940 stepsize= 1.000000 +dualbound = 3418960.298817, lowerbound=1268326.298817, norm of subgrad 1126.753877 dualbound = 3418960.298817, lowerbound=1268326.298817, norm of subgrad 36.667905 stepsize= 1.000000 +dualbound = 3418994.006238, lowerbound=1269352.006238, norm of subgrad 1127.226244 dualbound = 3418994.006238, lowerbound=1269352.006238, norm of subgrad 36.341539 stepsize= 1.000000 +dualbound = 3419080.622615, lowerbound=1269290.622615, norm of subgrad 1127.183935 dualbound = 3419080.622615, lowerbound=1269290.622615, norm of subgrad 36.600770 stepsize= 1.000000 +dualbound = 3419194.412269, lowerbound=1267442.412269, norm of subgrad 1126.366464 dualbound = 3419194.412269, lowerbound=1267442.412269, norm of subgrad 37.051176 stepsize= 1.000000 +dualbound = 3419264.778718, lowerbound=1273386.778718, norm of subgrad 1128.978644 dualbound = 3419264.778718, lowerbound=1273386.778718, norm of subgrad 35.726271 stepsize= 1.000000 +dualbound = 3419350.156710, lowerbound=1273068.156710, norm of subgrad 1128.880045 dualbound = 3419350.156710, lowerbound=1273068.156710, norm of subgrad 37.247523 stepsize= 1.000000 +dualbound = 3419404.851109, lowerbound=1268535.851109, norm of subgrad 1126.842425 dualbound = 3419404.851109, lowerbound=1268535.851109, norm of subgrad 35.954060 stepsize= 1.000000 +dualbound = 3419517.948561, lowerbound=1267054.948561, norm of subgrad 1126.180247 dualbound = 3419517.948561, lowerbound=1267054.948561, norm of subgrad 36.607342 stepsize= 1.000000 +dualbound = 3419571.075015, lowerbound=1275481.075015, norm of subgrad 1129.902241 dualbound = 3419571.075015, lowerbound=1275481.075015, norm of subgrad 35.371266 stepsize= 1.000000 +dualbound = 3419701.647876, lowerbound=1266642.647876, norm of subgrad 1125.952329 dualbound = 3419701.647876, lowerbound=1266642.647876, norm of subgrad 35.448171 stepsize= 1.000000 +dualbound = 3419774.361980, lowerbound=1265976.361980, norm of subgrad 1125.667074 dualbound = 3419774.361980, lowerbound=1265976.361980, norm of subgrad 34.967329 stepsize= 1.000000 +dualbound = 3419869.737316, lowerbound=1269206.737316, norm of subgrad 1127.113897 dualbound = 3419869.737316, lowerbound=1269206.737316, norm of subgrad 35.698394 stepsize= 1.000000 +dualbound = 3419905.357237, lowerbound=1267184.357237, norm of subgrad 1126.224381 dualbound = 3419905.357237, lowerbound=1267184.357237, norm of subgrad 35.108687 stepsize= 1.000000 +dualbound = 3420026.196295, lowerbound=1269914.196295, norm of subgrad 1127.412611 dualbound = 3420026.196295, lowerbound=1269914.196295, norm of subgrad 35.578632 stepsize= 1.000000 +dualbound = 3420083.757767, lowerbound=1271633.757767, norm of subgrad 1128.186491 dualbound = 3420083.757767, lowerbound=1271633.757767, norm of subgrad 35.050841 stepsize= 1.000000 +dualbound = 3420179.191576, lowerbound=1267075.191576, norm of subgrad 1126.183463 dualbound = 3420179.191576, lowerbound=1267075.191576, norm of subgrad 36.186100 stepsize= 1.000000 +dualbound = 3420242.250940, lowerbound=1273315.250940, norm of subgrad 1128.938108 dualbound = 3420242.250940, lowerbound=1273315.250940, norm of subgrad 35.342034 stepsize= 1.000000 +dualbound = 3420332.189667, lowerbound=1272845.189667, norm of subgrad 1128.746291 dualbound = 3420332.189667, lowerbound=1272845.189667, norm of subgrad 36.234496 stepsize= 1.000000 +dualbound = 3420389.014723, lowerbound=1270561.014723, norm of subgrad 1127.749535 dualbound = 3420389.014723, lowerbound=1270561.014723, norm of subgrad 36.260516 stepsize= 1.000000 +dualbound = 3420482.290921, lowerbound=1267551.290921, norm of subgrad 1126.396596 dualbound = 3420482.290921, lowerbound=1267551.290921, norm of subgrad 36.211548 stepsize= 1.000000 +dualbound = 3420583.467092, lowerbound=1267931.467092, norm of subgrad 1126.573773 dualbound = 3420583.467092, lowerbound=1267931.467092, norm of subgrad 36.581090 stepsize= 1.000000 +dualbound = 3420632.421173, lowerbound=1268600.421173, norm of subgrad 1126.868413 dualbound = 3420632.421173, lowerbound=1268600.421173, norm of subgrad 35.790419 stepsize= 1.000000 +dualbound = 3420730.400151, lowerbound=1269571.400151, norm of subgrad 1127.308920 dualbound = 3420730.400151, lowerbound=1269571.400151, norm of subgrad 36.769267 stepsize= 1.000000 +dualbound = 3420816.758490, lowerbound=1270244.758490, norm of subgrad 1127.577828 dualbound = 3420816.758490, lowerbound=1270244.758490, norm of subgrad 35.684147 stepsize= 1.000000 +dualbound = 3420900.526717, lowerbound=1265214.526717, norm of subgrad 1125.326853 dualbound = 3420900.526717, lowerbound=1265214.526717, norm of subgrad 35.068051 stepsize= 1.000000 +dualbound = 3420992.442974, lowerbound=1274480.442974, norm of subgrad 1129.461572 dualbound = 3420992.442974, lowerbound=1274480.442974, norm of subgrad 35.984945 stepsize= 1.000000 +dualbound = 3421049.394255, lowerbound=1270451.394255, norm of subgrad 1127.703593 dualbound = 3421049.394255, lowerbound=1270451.394255, norm of subgrad 36.344893 stepsize= 1.000000 +dualbound = 3421131.093670, lowerbound=1270782.093670, norm of subgrad 1127.814299 dualbound = 3421131.093670, lowerbound=1270782.093670, norm of subgrad 35.562613 stepsize= 1.000000 +dualbound = 3421222.289257, lowerbound=1267785.289257, norm of subgrad 1126.491140 dualbound = 3421222.289257, lowerbound=1267785.289257, norm of subgrad 35.891442 stepsize= 1.000000 +dualbound = 3421311.554945, lowerbound=1270005.554945, norm of subgrad 1127.474414 dualbound = 3421311.554945, lowerbound=1270005.554945, norm of subgrad 35.808738 stepsize= 1.000000 +dualbound = 3421376.674298, lowerbound=1268594.674298, norm of subgrad 1126.859652 dualbound = 3421376.674298, lowerbound=1268594.674298, norm of subgrad 35.820655 stepsize= 1.000000 +dualbound = 3421476.380282, lowerbound=1270145.380282, norm of subgrad 1127.536421 dualbound = 3421476.380282, lowerbound=1270145.380282, norm of subgrad 35.954221 stepsize= 1.000000 +dualbound = 3421521.308830, lowerbound=1272028.308830, norm of subgrad 1128.381278 dualbound = 3421521.308830, lowerbound=1272028.308830, norm of subgrad 35.509556 stepsize= 1.000000 +dualbound = 3421626.824366, lowerbound=1266978.824366, norm of subgrad 1126.156217 dualbound = 3421626.824366, lowerbound=1266978.824366, norm of subgrad 36.803744 stepsize= 1.000000 +dualbound = 3421693.229964, lowerbound=1267166.229964, norm of subgrad 1126.209674 dualbound = 3421693.229964, lowerbound=1267166.229964, norm of subgrad 35.332784 stepsize= 1.000000 +dualbound = 3421805.942555, lowerbound=1269437.942555, norm of subgrad 1127.216458 dualbound = 3421805.942555, lowerbound=1269437.942555, norm of subgrad 35.940403 stepsize= 1.000000 +dualbound = 3421857.662298, lowerbound=1268130.662298, norm of subgrad 1126.666172 dualbound = 3421857.662298, lowerbound=1268130.662298, norm of subgrad 36.023877 stepsize= 1.000000 +dualbound = 3421943.934264, lowerbound=1270358.934264, norm of subgrad 1127.650626 dualbound = 3421943.934264, lowerbound=1270358.934264, norm of subgrad 36.376805 stepsize= 1.000000 +dualbound = 3422007.090394, lowerbound=1267420.090394, norm of subgrad 1126.340575 dualbound = 3422007.090394, lowerbound=1267420.090394, norm of subgrad 35.863019 stepsize= 1.000000 +dualbound = 3422139.790784, lowerbound=1274173.790784, norm of subgrad 1129.307660 dualbound = 3422139.790784, lowerbound=1274173.790784, norm of subgrad 35.981945 stepsize= 1.000000 +dualbound = 3422207.031966, lowerbound=1265891.031966, norm of subgrad 1125.670037 dualbound = 3422207.031966, lowerbound=1265891.031966, norm of subgrad 36.183438 stepsize= 1.000000 +dualbound = 3422267.920423, lowerbound=1269416.920423, norm of subgrad 1127.227981 dualbound = 3422267.920423, lowerbound=1269416.920423, norm of subgrad 35.873228 stepsize= 1.000000 +dualbound = 3422348.880067, lowerbound=1269817.880067, norm of subgrad 1127.417793 dualbound = 3422348.880067, lowerbound=1269817.880067, norm of subgrad 36.523412 stepsize= 1.000000 +dualbound = 3422441.487593, lowerbound=1271181.487593, norm of subgrad 1128.024595 dualbound = 3422441.487593, lowerbound=1271181.487593, norm of subgrad 36.750613 stepsize= 1.000000 +dualbound = 3422499.263737, lowerbound=1271463.263737, norm of subgrad 1128.157021 dualbound = 3422499.263737, lowerbound=1271463.263737, norm of subgrad 36.507207 stepsize= 1.000000 +dualbound = 3422632.276411, lowerbound=1271003.276411, norm of subgrad 1127.923436 dualbound = 3422632.276411, lowerbound=1271003.276411, norm of subgrad 36.619840 stepsize= 1.000000 +dualbound = 3422699.513435, lowerbound=1272213.513435, norm of subgrad 1128.471760 dualbound = 3422699.513435, lowerbound=1272213.513435, norm of subgrad 36.086521 stepsize= 1.000000 +dualbound = 3422776.296624, lowerbound=1273393.296624, norm of subgrad 1128.996588 dualbound = 3422776.296624, lowerbound=1273393.296624, norm of subgrad 36.287507 stepsize= 1.000000 +dualbound = 3422852.732595, lowerbound=1269681.732595, norm of subgrad 1127.341888 dualbound = 3422852.732595, lowerbound=1269681.732595, norm of subgrad 35.978271 stepsize= 1.000000 +dualbound = 3422935.873279, lowerbound=1268285.873279, norm of subgrad 1126.723956 dualbound = 3422935.873279, lowerbound=1268285.873279, norm of subgrad 36.112888 stepsize= 1.000000 +dualbound = 3423010.243536, lowerbound=1268105.243536, norm of subgrad 1126.652228 dualbound = 3423010.243536, lowerbound=1268105.243536, norm of subgrad 36.254245 stepsize= 1.000000 +dualbound = 3423097.368981, lowerbound=1271007.368981, norm of subgrad 1127.912837 dualbound = 3423097.368981, lowerbound=1271007.368981, norm of subgrad 35.596706 stepsize= 1.000000 +dualbound = 3423182.008530, lowerbound=1265011.008530, norm of subgrad 1125.259529 dualbound = 3423182.008530, lowerbound=1265011.008530, norm of subgrad 35.813957 stepsize= 1.000000 +dualbound = 3423267.470394, lowerbound=1273284.470394, norm of subgrad 1128.930233 dualbound = 3423267.470394, lowerbound=1273284.470394, norm of subgrad 35.839390 stepsize= 1.000000 +dualbound = 3423352.737179, lowerbound=1271630.737179, norm of subgrad 1128.212629 dualbound = 3423352.737179, lowerbound=1271630.737179, norm of subgrad 36.307944 stepsize= 1.000000 +dualbound = 3423405.588002, lowerbound=1267721.588002, norm of subgrad 1126.481508 dualbound = 3423405.588002, lowerbound=1267721.588002, norm of subgrad 35.942326 stepsize= 1.000000 +dualbound = 3423489.941615, lowerbound=1268272.941615, norm of subgrad 1126.695585 dualbound = 3423489.941615, lowerbound=1268272.941615, norm of subgrad 35.416855 stepsize= 1.000000 +dualbound = 3423613.288152, lowerbound=1267506.288152, norm of subgrad 1126.325125 dualbound = 3423613.288152, lowerbound=1267506.288152, norm of subgrad 35.004950 stepsize= 1.000000 +dualbound = 3423673.406839, lowerbound=1267185.406839, norm of subgrad 1126.231507 dualbound = 3423673.406839, lowerbound=1267185.406839, norm of subgrad 35.666773 stepsize= 1.000000 +dualbound = 3423737.357190, lowerbound=1271903.357190, norm of subgrad 1128.342748 dualbound = 3423737.357190, lowerbound=1271903.357190, norm of subgrad 36.303586 stepsize= 1.000000 +dualbound = 3423799.161312, lowerbound=1266154.161312, norm of subgrad 1125.811779 dualbound = 3423799.161312, lowerbound=1266154.161312, norm of subgrad 36.875522 stepsize= 1.000000 +dualbound = 3423884.715616, lowerbound=1272598.715616, norm of subgrad 1128.626473 dualbound = 3423884.715616, lowerbound=1272598.715616, norm of subgrad 35.840679 stepsize= 1.000000 +dualbound = 3423971.560629, lowerbound=1269856.560629, norm of subgrad 1127.415877 dualbound = 3423971.560629, lowerbound=1269856.560629, norm of subgrad 36.011734 stepsize= 1.000000 +dualbound = 3424051.163531, lowerbound=1276438.163531, norm of subgrad 1130.324362 dualbound = 3424051.163531, lowerbound=1276438.163531, norm of subgrad 35.701581 stepsize= 1.000000 +dualbound = 3424134.645637, lowerbound=1271652.645637, norm of subgrad 1128.213918 dualbound = 3424134.645637, lowerbound=1271652.645637, norm of subgrad 36.020579 stepsize= 1.000000 +dualbound = 3424226.303702, lowerbound=1266389.303702, norm of subgrad 1125.880679 dualbound = 3424226.303702, lowerbound=1266389.303702, norm of subgrad 36.189198 stepsize= 1.000000 +dualbound = 3424293.968432, lowerbound=1270203.968432, norm of subgrad 1127.563288 dualbound = 3424293.968432, lowerbound=1270203.968432, norm of subgrad 35.533994 stepsize= 1.000000 +dualbound = 3424389.432027, lowerbound=1273124.432027, norm of subgrad 1128.878396 dualbound = 3424389.432027, lowerbound=1273124.432027, norm of subgrad 36.571349 stepsize= 1.000000 +dualbound = 3424429.777449, lowerbound=1272443.777449, norm of subgrad 1128.568021 dualbound = 3424429.777449, lowerbound=1272443.777449, norm of subgrad 35.529501 stepsize= 1.000000 +dualbound = 3424576.949341, lowerbound=1267032.949341, norm of subgrad 1126.147836 dualbound = 3424576.949341, lowerbound=1267032.949341, norm of subgrad 36.375430 stepsize= 1.000000 +dualbound = 3424621.652024, lowerbound=1268902.652024, norm of subgrad 1127.000289 dualbound = 3424621.652024, lowerbound=1268902.652024, norm of subgrad 35.660941 stepsize= 1.000000 +dualbound = 3424703.984094, lowerbound=1271597.984094, norm of subgrad 1128.177727 dualbound = 3424703.984094, lowerbound=1271597.984094, norm of subgrad 35.627687 stepsize= 1.000000 +dualbound = 3424765.267168, lowerbound=1266035.267168, norm of subgrad 1125.726107 dualbound = 3424765.267168, lowerbound=1266035.267168, norm of subgrad 35.850845 stepsize= 1.000000 +dualbound = 3424894.517871, lowerbound=1273089.517871, norm of subgrad 1128.848315 dualbound = 3424894.517871, lowerbound=1273089.517871, norm of subgrad 36.582109 stepsize= 1.000000 +dualbound = 3424931.065700, lowerbound=1272849.065700, norm of subgrad 1128.736934 dualbound = 3424931.065700, lowerbound=1272849.065700, norm of subgrad 35.136133 stepsize= 1.000000 +dualbound = 3425036.191182, lowerbound=1266383.191182, norm of subgrad 1125.874856 dualbound = 3425036.191182, lowerbound=1266383.191182, norm of subgrad 36.278444 stepsize= 1.000000 +dualbound = 3425091.110928, lowerbound=1268925.110928, norm of subgrad 1127.023563 dualbound = 3425091.110928, lowerbound=1268925.110928, norm of subgrad 36.220433 stepsize= 1.000000 +dualbound = 3425195.868614, lowerbound=1273198.868614, norm of subgrad 1128.900292 dualbound = 3425195.868614, lowerbound=1273198.868614, norm of subgrad 36.355986 stepsize= 1.000000 +dualbound = 3425267.357015, lowerbound=1269953.357015, norm of subgrad 1127.453927 dualbound = 3425267.357015, lowerbound=1269953.357015, norm of subgrad 35.643911 stepsize= 1.000000 +dualbound = 3425358.941199, lowerbound=1269289.941199, norm of subgrad 1127.160122 dualbound = 3425358.941199, lowerbound=1269289.941199, norm of subgrad 35.938617 stepsize= 1.000000 +dualbound = 3425435.756776, lowerbound=1262840.756776, norm of subgrad 1124.302787 dualbound = 3425435.756776, lowerbound=1262840.756776, norm of subgrad 35.955745 stepsize= 1.000000 +dualbound = 3425515.406237, lowerbound=1275296.406237, norm of subgrad 1129.844417 dualbound = 3425515.406237, lowerbound=1275296.406237, norm of subgrad 36.491773 stepsize= 1.000000 +dualbound = 3425584.918229, lowerbound=1267973.918229, norm of subgrad 1126.572198 dualbound = 3425584.918229, lowerbound=1267973.918229, norm of subgrad 35.503690 stepsize= 1.000000 +dualbound = 3425690.434450, lowerbound=1275650.434450, norm of subgrad 1129.956386 dualbound = 3425690.434450, lowerbound=1275650.434450, norm of subgrad 35.447373 stepsize= 1.000000 +dualbound = 3425777.003161, lowerbound=1271418.003161, norm of subgrad 1128.119233 dualbound = 3425777.003161, lowerbound=1271418.003161, norm of subgrad 36.353387 stepsize= 1.000000 +dualbound = 3425817.702998, lowerbound=1271846.702998, norm of subgrad 1128.299031 dualbound = 3425817.702998, lowerbound=1271846.702998, norm of subgrad 35.393500 stepsize= 1.000000 +dualbound = 3425935.610116, lowerbound=1267542.610116, norm of subgrad 1126.371435 dualbound = 3425935.610116, lowerbound=1267542.610116, norm of subgrad 35.887423 stepsize= 1.000000 +dualbound = 3426010.176729, lowerbound=1277517.176729, norm of subgrad 1130.779455 dualbound = 3426010.176729, lowerbound=1277517.176729, norm of subgrad 34.922294 stepsize= 1.000000 +dualbound = 3426100.319671, lowerbound=1270230.319671, norm of subgrad 1127.559453 dualbound = 3426100.319671, lowerbound=1270230.319671, norm of subgrad 35.357361 stepsize= 1.000000 +dualbound = 3426151.630435, lowerbound=1267670.630435, norm of subgrad 1126.464216 dualbound = 3426151.630435, lowerbound=1267670.630435, norm of subgrad 36.087543 stepsize= 1.000000 +dualbound = 3426211.478359, lowerbound=1266457.478359, norm of subgrad 1125.929606 dualbound = 3426211.478359, lowerbound=1266457.478359, norm of subgrad 36.329711 stepsize= 1.000000 +dualbound = 3426306.847348, lowerbound=1271262.847348, norm of subgrad 1128.061101 dualbound = 3426306.847348, lowerbound=1271262.847348, norm of subgrad 36.801753 stepsize= 1.000000 +dualbound = 3426399.753174, lowerbound=1268885.753174, norm of subgrad 1127.001221 dualbound = 3426399.753174, lowerbound=1268885.753174, norm of subgrad 36.591062 stepsize= 1.000000 +dualbound = 3426486.649880, lowerbound=1271976.649880, norm of subgrad 1128.343321 dualbound = 3426486.649880, lowerbound=1271976.649880, norm of subgrad 35.621576 stepsize= 1.000000 +dualbound = 3426573.530158, lowerbound=1271286.530158, norm of subgrad 1128.054755 dualbound = 3426573.530158, lowerbound=1271286.530158, norm of subgrad 36.164627 stepsize= 1.000000 +dualbound = 3426621.796617, lowerbound=1273220.796617, norm of subgrad 1128.943221 dualbound = 3426621.796617, lowerbound=1273220.796617, norm of subgrad 36.609650 stepsize= 1.000000 +dualbound = 3426718.841563, lowerbound=1268692.841563, norm of subgrad 1126.893891 dualbound = 3426718.841563, lowerbound=1268692.841563, norm of subgrad 35.972836 stepsize= 1.000000 +dualbound = 3426828.714826, lowerbound=1272364.714826, norm of subgrad 1128.521916 dualbound = 3426828.714826, lowerbound=1272364.714826, norm of subgrad 36.150702 stepsize= 1.000000 +dualbound = 3426874.511086, lowerbound=1271148.511086, norm of subgrad 1128.007319 dualbound = 3426874.511086, lowerbound=1271148.511086, norm of subgrad 36.024939 stepsize= 1.000000 +dualbound = 3426959.376785, lowerbound=1270840.376785, norm of subgrad 1127.876047 dualbound = 3426959.376785, lowerbound=1270840.376785, norm of subgrad 36.726907 stepsize= 1.000000 +dualbound = 3427035.658800, lowerbound=1269873.658800, norm of subgrad 1127.408382 dualbound = 3427035.658800, lowerbound=1269873.658800, norm of subgrad 35.387597 stepsize= 1.000000 +dualbound = 3427134.142890, lowerbound=1266195.142890, norm of subgrad 1125.770022 dualbound = 3427134.142890, lowerbound=1266195.142890, norm of subgrad 35.517377 stepsize= 1.000000 +dualbound = 3427233.681730, lowerbound=1271297.681730, norm of subgrad 1128.046401 dualbound = 3427233.681730, lowerbound=1271297.681730, norm of subgrad 35.924070 stepsize= 1.000000 +dualbound = 3427271.826131, lowerbound=1268454.826131, norm of subgrad 1126.810022 dualbound = 3427271.826131, lowerbound=1268454.826131, norm of subgrad 35.834961 stepsize= 1.000000 +dualbound = 3427358.677467, lowerbound=1271585.677467, norm of subgrad 1128.204183 dualbound = 3427358.677467, lowerbound=1271585.677467, norm of subgrad 36.685847 stepsize= 1.000000 +dualbound = 3427450.555756, lowerbound=1272879.555756, norm of subgrad 1128.736708 dualbound = 3427450.555756, lowerbound=1272879.555756, norm of subgrad 35.480675 stepsize= 1.000000 +dualbound = 3427533.302693, lowerbound=1269715.302693, norm of subgrad 1127.345246 dualbound = 3427533.302693, lowerbound=1269715.302693, norm of subgrad 35.703598 stepsize= 1.000000 +dualbound = 3427612.046823, lowerbound=1269888.046823, norm of subgrad 1127.428511 dualbound = 3427612.046823, lowerbound=1269888.046823, norm of subgrad 35.857274 stepsize= 1.000000 +dualbound = 3427694.603058, lowerbound=1272728.603058, norm of subgrad 1128.677369 dualbound = 3427694.603058, lowerbound=1272728.603058, norm of subgrad 35.588709 stepsize= 1.000000 +dualbound = 3427771.677593, lowerbound=1264537.677593, norm of subgrad 1125.025190 dualbound = 3427771.677593, lowerbound=1264537.677593, norm of subgrad 34.943877 stepsize= 1.000000 +dualbound = 3427884.243847, lowerbound=1272799.243847, norm of subgrad 1128.697587 dualbound = 3427884.243847, lowerbound=1272799.243847, norm of subgrad 35.659028 stepsize= 1.000000 +dualbound = 3427940.403848, lowerbound=1269238.403848, norm of subgrad 1127.124840 dualbound = 3427940.403848, lowerbound=1269238.403848, norm of subgrad 35.045114 stepsize= 1.000000 +dualbound = 3428044.874198, lowerbound=1271354.874198, norm of subgrad 1128.046929 dualbound = 3428044.874198, lowerbound=1271354.874198, norm of subgrad 35.206112 stepsize= 1.000000 +dualbound = 3428108.694587, lowerbound=1267975.694587, norm of subgrad 1126.557897 dualbound = 3428108.694587, lowerbound=1267975.694587, norm of subgrad 34.940240 stepsize= 1.000000 +dualbound = 3428169.842740, lowerbound=1272923.842740, norm of subgrad 1128.763413 dualbound = 3428169.842740, lowerbound=1272923.842740, norm of subgrad 35.272484 stepsize= 1.000000 +dualbound = 3428262.053843, lowerbound=1271947.053843, norm of subgrad 1128.341284 dualbound = 3428262.053843, lowerbound=1271947.053843, norm of subgrad 36.044571 stepsize= 1.000000 +dualbound = 3428339.000520, lowerbound=1274815.000520, norm of subgrad 1129.609225 dualbound = 3428339.000520, lowerbound=1274815.000520, norm of subgrad 35.762364 stepsize= 1.000000 +dualbound = 3428415.410109, lowerbound=1269404.410109, norm of subgrad 1127.214891 dualbound = 3428415.410109, lowerbound=1269404.410109, norm of subgrad 35.852609 stepsize= 1.000000 +dualbound = 3428486.458988, lowerbound=1270302.458988, norm of subgrad 1127.624254 dualbound = 3428486.458988, lowerbound=1270302.458988, norm of subgrad 36.125460 stepsize= 1.000000 +dualbound = 3428567.709048, lowerbound=1270834.709048, norm of subgrad 1127.856688 dualbound = 3428567.709048, lowerbound=1270834.709048, norm of subgrad 36.155913 stepsize= 1.000000 +dualbound = 3428649.479624, lowerbound=1268003.479624, norm of subgrad 1126.602627 dualbound = 3428649.479624, lowerbound=1268003.479624, norm of subgrad 36.218373 stepsize= 1.000000 +dualbound = 3428730.767340, lowerbound=1271298.767340, norm of subgrad 1128.068600 dualbound = 3428730.767340, lowerbound=1271298.767340, norm of subgrad 36.349522 stepsize= 1.000000 +dualbound = 3428819.965287, lowerbound=1270534.965287, norm of subgrad 1127.753947 dualbound = 3428819.965287, lowerbound=1270534.965287, norm of subgrad 37.191369 stepsize= 1.000000 +dualbound = 3428894.908706, lowerbound=1271845.908706, norm of subgrad 1128.295577 dualbound = 3428894.908706, lowerbound=1271845.908706, norm of subgrad 35.776297 stepsize= 1.000000 +dualbound = 3428986.261434, lowerbound=1265794.261434, norm of subgrad 1125.619057 dualbound = 3428986.261434, lowerbound=1265794.261434, norm of subgrad 36.267792 stepsize= 1.000000 +dualbound = 3429065.627738, lowerbound=1273436.627738, norm of subgrad 1128.985663 dualbound = 3429065.627738, lowerbound=1273436.627738, norm of subgrad 35.374656 stepsize= 1.000000 +dualbound = 3429150.958592, lowerbound=1270930.958592, norm of subgrad 1127.899357 dualbound = 3429150.958592, lowerbound=1270930.958592, norm of subgrad 36.212303 stepsize= 1.000000 +dualbound = 3429224.673893, lowerbound=1276823.673893, norm of subgrad 1130.520532 dualbound = 3429224.673893, lowerbound=1276823.673893, norm of subgrad 36.424103 stepsize= 1.000000 +dualbound = 3429293.591528, lowerbound=1267196.591528, norm of subgrad 1126.242244 dualbound = 3429293.591528, lowerbound=1267196.591528, norm of subgrad 35.971067 stepsize= 1.000000 +dualbound = 3429407.382926, lowerbound=1273353.382926, norm of subgrad 1128.995298 dualbound = 3429407.382926, lowerbound=1273353.382926, norm of subgrad 37.293316 stepsize= 1.000000 +dualbound = 3429448.948263, lowerbound=1266241.948263, norm of subgrad 1125.841440 dualbound = 3429448.948263, lowerbound=1266241.948263, norm of subgrad 36.312055 stepsize= 1.000000 +dualbound = 3429541.268650, lowerbound=1267626.268650, norm of subgrad 1126.417893 dualbound = 3429541.268650, lowerbound=1267626.268650, norm of subgrad 35.823461 stepsize= 1.000000 +dualbound = 3429636.833160, lowerbound=1272277.833160, norm of subgrad 1128.469686 dualbound = 3429636.833160, lowerbound=1272277.833160, norm of subgrad 35.518509 stepsize= 1.000000 +dualbound = 3429701.689705, lowerbound=1272028.689705, norm of subgrad 1128.388094 dualbound = 3429701.689705, lowerbound=1272028.689705, norm of subgrad 35.998008 stepsize= 1.000000 +dualbound = 3429790.928249, lowerbound=1269745.928249, norm of subgrad 1127.354393 dualbound = 3429790.928249, lowerbound=1269745.928249, norm of subgrad 35.654432 stepsize= 1.000000 +dualbound = 3429887.467333, lowerbound=1269875.467333, norm of subgrad 1127.400757 dualbound = 3429887.467333, lowerbound=1269875.467333, norm of subgrad 35.405354 stepsize= 1.000000 +dualbound = 3429956.184634, lowerbound=1265408.184634, norm of subgrad 1125.406675 dualbound = 3429956.184634, lowerbound=1265408.184634, norm of subgrad 34.651368 stepsize= 1.000000 +dualbound = 3430073.533951, lowerbound=1274266.533951, norm of subgrad 1129.365988 dualbound = 3430073.533951, lowerbound=1274266.533951, norm of subgrad 36.309080 stepsize= 1.000000 +dualbound = 3430091.546982, lowerbound=1264570.546982, norm of subgrad 1125.087795 dualbound = 3430091.546982, lowerbound=1264570.546982, norm of subgrad 35.637242 stepsize= 1.000000 +dualbound = 3430201.324380, lowerbound=1276003.324380, norm of subgrad 1130.117394 dualbound = 3430201.324380, lowerbound=1276003.324380, norm of subgrad 35.661988 stepsize= 1.000000 +dualbound = 3430288.776643, lowerbound=1268580.776643, norm of subgrad 1126.832630 dualbound = 3430288.776643, lowerbound=1268580.776643, norm of subgrad 35.474671 stepsize= 1.000000 +dualbound = 3430358.293203, lowerbound=1276072.293203, norm of subgrad 1130.170913 dualbound = 3430358.293203, lowerbound=1276072.293203, norm of subgrad 35.826199 stepsize= 1.000000 +dualbound = 3430424.966539, lowerbound=1269111.966539, norm of subgrad 1127.108676 dualbound = 3430424.966539, lowerbound=1269111.966539, norm of subgrad 36.450972 stepsize= 1.000000 +dualbound = 3430520.447325, lowerbound=1270190.447325, norm of subgrad 1127.572812 dualbound = 3430520.447325, lowerbound=1270190.447325, norm of subgrad 36.407153 stepsize= 1.000000 +dualbound = 3430609.189764, lowerbound=1269741.189764, norm of subgrad 1127.350074 dualbound = 3430609.189764, lowerbound=1269741.189764, norm of subgrad 35.577274 stepsize= 1.000000 +dualbound = 3430689.486225, lowerbound=1273419.486225, norm of subgrad 1128.998887 dualbound = 3430689.486225, lowerbound=1273419.486225, norm of subgrad 36.045755 stepsize= 1.000000 +dualbound = 3430743.675469, lowerbound=1266675.675469, norm of subgrad 1125.996748 dualbound = 3430743.675469, lowerbound=1266675.675469, norm of subgrad 35.315567 stepsize= 1.000000 +dualbound = 3430860.674750, lowerbound=1273754.674750, norm of subgrad 1129.141123 dualbound = 3430860.674750, lowerbound=1273754.674750, norm of subgrad 36.359308 stepsize= 1.000000 +dualbound = 3430907.308475, lowerbound=1270037.308475, norm of subgrad 1127.497365 dualbound = 3430907.308475, lowerbound=1270037.308475, norm of subgrad 35.491319 stepsize= 1.000000 +dualbound = 3430992.515918, lowerbound=1271928.515918, norm of subgrad 1128.338830 dualbound = 3430992.515918, lowerbound=1271928.515918, norm of subgrad 36.127655 stepsize= 1.000000 +dualbound = 3431063.885185, lowerbound=1270146.885185, norm of subgrad 1127.583649 dualbound = 3431063.885185, lowerbound=1270146.885185, norm of subgrad 37.004990 stepsize= 1.000000 +dualbound = 3431150.833429, lowerbound=1272365.833429, norm of subgrad 1128.538362 dualbound = 3431150.833429, lowerbound=1272365.833429, norm of subgrad 36.331092 stepsize= 1.000000 +dualbound = 3431240.498045, lowerbound=1272655.498045, norm of subgrad 1128.633465 dualbound = 3431240.498045, lowerbound=1272655.498045, norm of subgrad 35.322296 stepsize= 1.000000 +dualbound = 3431340.425570, lowerbound=1269786.425570, norm of subgrad 1127.362597 dualbound = 3431340.425570, lowerbound=1269786.425570, norm of subgrad 35.495458 stepsize= 1.000000 +dualbound = 3431395.045276, lowerbound=1272107.045276, norm of subgrad 1128.406418 dualbound = 3431395.045276, lowerbound=1272107.045276, norm of subgrad 35.335813 stepsize= 1.000000 +dualbound = 3431486.790318, lowerbound=1270159.790318, norm of subgrad 1127.551236 dualbound = 3431486.790318, lowerbound=1270159.790318, norm of subgrad 36.107410 stepsize= 1.000000 +dualbound = 3431551.725473, lowerbound=1269222.725473, norm of subgrad 1127.137403 dualbound = 3431551.725473, lowerbound=1269222.725473, norm of subgrad 35.790154 stepsize= 1.000000 +dualbound = 3431636.889009, lowerbound=1271409.889009, norm of subgrad 1128.107658 dualbound = 3431636.889009, lowerbound=1271409.889009, norm of subgrad 36.085503 stepsize= 1.000000 +dualbound = 3431703.540142, lowerbound=1270261.540142, norm of subgrad 1127.593251 dualbound = 3431703.540142, lowerbound=1270261.540142, norm of subgrad 35.660218 stepsize= 1.000000 +dualbound = 3431796.085188, lowerbound=1271702.085188, norm of subgrad 1128.246908 dualbound = 3431796.085188, lowerbound=1271702.085188, norm of subgrad 36.490342 stepsize= 1.000000 +dualbound = 3431858.196021, lowerbound=1268370.196021, norm of subgrad 1126.784893 dualbound = 3431858.196021, lowerbound=1268370.196021, norm of subgrad 36.552850 stepsize= 1.000000 +dualbound = 3431960.082205, lowerbound=1267108.082205, norm of subgrad 1126.202949 dualbound = 3431960.082205, lowerbound=1267108.082205, norm of subgrad 36.426449 stepsize= 1.000000 +dualbound = 3432023.719397, lowerbound=1271455.719397, norm of subgrad 1128.114675 dualbound = 3432023.719397, lowerbound=1271455.719397, norm of subgrad 35.364349 stepsize= 1.000000 +dualbound = 3432127.415866, lowerbound=1269295.415866, norm of subgrad 1127.163438 dualbound = 3432127.415866, lowerbound=1269295.415866, norm of subgrad 36.134422 stepsize= 1.000000 +dualbound = 3432189.370939, lowerbound=1269006.370939, norm of subgrad 1127.026784 dualbound = 3432189.370939, lowerbound=1269006.370939, norm of subgrad 35.283921 stepsize= 1.000000 +dualbound = 3432296.170773, lowerbound=1272483.170773, norm of subgrad 1128.560663 dualbound = 3432296.170773, lowerbound=1272483.170773, norm of subgrad 35.676320 stepsize= 1.000000 +dualbound = 3432362.962379, lowerbound=1273129.962379, norm of subgrad 1128.871987 dualbound = 3432362.962379, lowerbound=1273129.962379, norm of subgrad 35.899744 stepsize= 1.000000 +dualbound = 3432453.078087, lowerbound=1271646.078087, norm of subgrad 1128.194167 dualbound = 3432453.078087, lowerbound=1271646.078087, norm of subgrad 35.582520 stepsize= 1.000000 +dualbound = 3432509.065300, lowerbound=1273112.065300, norm of subgrad 1128.874247 dualbound = 3432509.065300, lowerbound=1273112.065300, norm of subgrad 36.069200 stepsize= 1.000000 +dualbound = 3432594.103835, lowerbound=1270389.103835, norm of subgrad 1127.642720 dualbound = 3432594.103835, lowerbound=1270389.103835, norm of subgrad 35.693676 stepsize= 1.000000 +dualbound = 3432677.236491, lowerbound=1274619.236491, norm of subgrad 1129.517701 dualbound = 3432677.236491, lowerbound=1274619.236491, norm of subgrad 35.694995 stepsize= 1.000000 +dualbound = 3432791.414141, lowerbound=1270660.414141, norm of subgrad 1127.742619 dualbound = 3432791.414141, lowerbound=1270660.414141, norm of subgrad 35.456701 stepsize= 1.000000 +dualbound = 3432862.357805, lowerbound=1270556.357805, norm of subgrad 1127.703134 dualbound = 3432862.357805, lowerbound=1270556.357805, norm of subgrad 35.056293 stepsize= 1.000000 +dualbound = 3432931.142607, lowerbound=1277335.142607, norm of subgrad 1130.756005 dualbound = 3432931.142607, lowerbound=1277335.142607, norm of subgrad 36.644028 stepsize= 1.000000 +dualbound = 3432984.547867, lowerbound=1265232.547867, norm of subgrad 1125.357076 dualbound = 3432984.547867, lowerbound=1265232.547867, norm of subgrad 35.346927 stepsize= 1.000000 +dualbound = 3433096.909472, lowerbound=1275405.909472, norm of subgrad 1129.872962 dualbound = 3433096.909472, lowerbound=1275405.909472, norm of subgrad 36.323018 stepsize= 1.000000 +dualbound = 3433153.783030, lowerbound=1270951.783030, norm of subgrad 1127.887753 dualbound = 3433153.783030, lowerbound=1270951.783030, norm of subgrad 35.154993 stepsize= 1.000000 +dualbound = 3433269.194229, lowerbound=1268635.194229, norm of subgrad 1126.847458 dualbound = 3433269.194229, lowerbound=1268635.194229, norm of subgrad 35.572619 stepsize= 1.000000 +dualbound = 3433339.359687, lowerbound=1271028.359687, norm of subgrad 1127.924359 dualbound = 3433339.359687, lowerbound=1271028.359687, norm of subgrad 35.428314 stepsize= 1.000000 +dualbound = 3433415.569700, lowerbound=1267150.569700, norm of subgrad 1126.200502 dualbound = 3433415.569700, lowerbound=1267150.569700, norm of subgrad 35.400706 stepsize= 1.000000 +dualbound = 3433484.818961, lowerbound=1270371.818961, norm of subgrad 1127.640377 dualbound = 3433484.818961, lowerbound=1270371.818961, norm of subgrad 35.640556 stepsize= 1.000000 +dualbound = 3433587.607323, lowerbound=1267774.607323, norm of subgrad 1126.472196 dualbound = 3433587.607323, lowerbound=1267774.607323, norm of subgrad 35.606016 stepsize= 1.000000 +dualbound = 3433651.585384, lowerbound=1271778.585384, norm of subgrad 1128.233391 dualbound = 3433651.585384, lowerbound=1271778.585384, norm of subgrad 34.582916 stepsize= 1.000000 +dualbound = 3433775.567859, lowerbound=1273547.567859, norm of subgrad 1129.046309 dualbound = 3433775.567859, lowerbound=1273547.567859, norm of subgrad 36.359077 stepsize= 1.000000 +dualbound = 3433814.698692, lowerbound=1271300.698692, norm of subgrad 1128.059705 dualbound = 3433814.698692, lowerbound=1271300.698692, norm of subgrad 35.456041 stepsize= 1.000000 +dualbound = 3433897.491141, lowerbound=1273462.491141, norm of subgrad 1129.001103 dualbound = 3433897.491141, lowerbound=1273462.491141, norm of subgrad 35.549859 stepsize= 1.000000 +dualbound = 3433974.615801, lowerbound=1268537.615801, norm of subgrad 1126.827234 dualbound = 3433974.615801, lowerbound=1268537.615801, norm of subgrad 35.764852 stepsize= 1.000000 +dualbound = 3434066.954319, lowerbound=1271247.954319, norm of subgrad 1128.038543 dualbound = 3434066.954319, lowerbound=1271247.954319, norm of subgrad 36.267596 stepsize= 1.000000 +dualbound = 3434111.766584, lowerbound=1269288.766584, norm of subgrad 1127.174240 dualbound = 3434111.766584, lowerbound=1269288.766584, norm of subgrad 35.746500 stepsize= 1.000000 +dualbound = 3434226.814570, lowerbound=1269834.814570, norm of subgrad 1127.402242 dualbound = 3434226.814570, lowerbound=1269834.814570, norm of subgrad 36.277376 stepsize= 1.000000 +dualbound = 3434283.870283, lowerbound=1268611.870283, norm of subgrad 1126.889023 dualbound = 3434283.870283, lowerbound=1268611.870283, norm of subgrad 36.387576 stepsize= 1.000000 +dualbound = 3434361.036056, lowerbound=1271036.036056, norm of subgrad 1127.948153 dualbound = 3434361.036056, lowerbound=1271036.036056, norm of subgrad 36.168574 stepsize= 1.000000 +dualbound = 3434426.204971, lowerbound=1272559.204971, norm of subgrad 1128.633778 dualbound = 3434426.204971, lowerbound=1272559.204971, norm of subgrad 36.334129 stepsize= 1.000000 +dualbound = 3434538.650381, lowerbound=1268658.650381, norm of subgrad 1126.875614 dualbound = 3434538.650381, lowerbound=1268658.650381, norm of subgrad 36.089409 stepsize= 1.000000 +dualbound = 3434597.138783, lowerbound=1270878.138783, norm of subgrad 1127.860869 dualbound = 3434597.138783, lowerbound=1270878.138783, norm of subgrad 35.362245 stepsize= 1.000000 +dualbound = 3434701.682691, lowerbound=1274232.682691, norm of subgrad 1129.347459 dualbound = 3434701.682691, lowerbound=1274232.682691, norm of subgrad 36.021437 stepsize= 1.000000 +dualbound = 3434751.427945, lowerbound=1270744.427945, norm of subgrad 1127.796714 dualbound = 3434751.427945, lowerbound=1270744.427945, norm of subgrad 35.081979 stepsize= 1.000000 +dualbound = 3434851.067866, lowerbound=1273573.067866, norm of subgrad 1129.054502 dualbound = 3434851.067866, lowerbound=1273573.067866, norm of subgrad 35.925477 stepsize= 1.000000 +dualbound = 3434939.293366, lowerbound=1275346.293366, norm of subgrad 1129.851447 dualbound = 3434939.293366, lowerbound=1275346.293366, norm of subgrad 36.141742 stepsize= 1.000000 +dualbound = 3434998.462154, lowerbound=1270973.462154, norm of subgrad 1127.911992 dualbound = 3434998.462154, lowerbound=1270973.462154, norm of subgrad 35.653454 stepsize= 1.000000 +dualbound = 3435078.240694, lowerbound=1272169.240694, norm of subgrad 1128.437522 dualbound = 3435078.240694, lowerbound=1272169.240694, norm of subgrad 35.801935 stepsize= 1.000000 +dualbound = 3435178.137134, lowerbound=1266992.137134, norm of subgrad 1126.101744 dualbound = 3435178.137134, lowerbound=1266992.137134, norm of subgrad 34.826663 stepsize= 1.000000 +dualbound = 3435248.733468, lowerbound=1271149.733468, norm of subgrad 1128.000768 dualbound = 3435248.733468, lowerbound=1271149.733468, norm of subgrad 36.146872 stepsize= 1.000000 +dualbound = 3435311.935904, lowerbound=1268517.935904, norm of subgrad 1126.824714 dualbound = 3435311.935904, lowerbound=1268517.935904, norm of subgrad 35.765940 stepsize= 1.000000 +dualbound = 3435400.295751, lowerbound=1273393.295751, norm of subgrad 1128.974001 dualbound = 3435400.295751, lowerbound=1273393.295751, norm of subgrad 35.740171 stepsize= 1.000000 +dualbound = 3435506.533693, lowerbound=1270750.533693, norm of subgrad 1127.792771 dualbound = 3435506.533693, lowerbound=1270750.533693, norm of subgrad 35.668445 stepsize= 1.000000 +dualbound = 3435560.462473, lowerbound=1268748.462473, norm of subgrad 1126.901266 dualbound = 3435560.462473, lowerbound=1268748.462473, norm of subgrad 34.812767 stepsize= 1.000000 +dualbound = 3435676.121866, lowerbound=1269605.121866, norm of subgrad 1127.250248 dualbound = 3435676.121866, lowerbound=1269605.121866, norm of subgrad 34.693795 stepsize= 1.000000 +dualbound = 3435753.446678, lowerbound=1270738.446678, norm of subgrad 1127.790515 dualbound = 3435753.446678, lowerbound=1270738.446678, norm of subgrad 35.359932 stepsize= 1.000000 +dualbound = 3435813.163997, lowerbound=1276012.163997, norm of subgrad 1130.140772 dualbound = 3435813.163997, lowerbound=1276012.163997, norm of subgrad 35.576921 stepsize= 1.000000 +dualbound = 3435884.093913, lowerbound=1271318.093913, norm of subgrad 1128.053232 dualbound = 3435884.093913, lowerbound=1271318.093913, norm of subgrad 35.453207 stepsize= 1.000000 +dualbound = 3435964.606854, lowerbound=1276156.606854, norm of subgrad 1130.200693 dualbound = 3435964.606854, lowerbound=1276156.606854, norm of subgrad 35.742313 stepsize= 1.000000 +dualbound = 3436052.295705, lowerbound=1269119.295705, norm of subgrad 1127.095513 dualbound = 3436052.295705, lowerbound=1269119.295705, norm of subgrad 36.231048 stepsize= 1.000000 +dualbound = 3436141.130997, lowerbound=1277562.130997, norm of subgrad 1130.832937 dualbound = 3436141.130997, lowerbound=1277562.130997, norm of subgrad 36.191647 stepsize= 1.000000 +dualbound = 3436206.409428, lowerbound=1268732.409428, norm of subgrad 1126.900355 dualbound = 3436206.409428, lowerbound=1268732.409428, norm of subgrad 35.174969 stepsize= 1.000000 +dualbound = 3436325.666614, lowerbound=1272946.666614, norm of subgrad 1128.764664 dualbound = 3436325.666614, lowerbound=1272946.666614, norm of subgrad 35.808619 stepsize= 1.000000 +dualbound = 3436375.430683, lowerbound=1267805.430683, norm of subgrad 1126.495642 dualbound = 3436375.430683, lowerbound=1267805.430683, norm of subgrad 35.167657 stepsize= 1.000000 +dualbound = 3436448.287719, lowerbound=1277619.287719, norm of subgrad 1130.865725 dualbound = 3436448.287719, lowerbound=1277619.287719, norm of subgrad 36.205760 stepsize= 1.000000 +dualbound = 3436510.713756, lowerbound=1268725.713756, norm of subgrad 1126.932435 dualbound = 3436510.713756, lowerbound=1268725.713756, norm of subgrad 36.241220 stepsize= 1.000000 +dualbound = 3436591.786802, lowerbound=1270952.786802, norm of subgrad 1127.888198 dualbound = 3436591.786802, lowerbound=1270952.786802, norm of subgrad 35.497508 stepsize= 1.000000 +dualbound = 3436701.396206, lowerbound=1266649.396206, norm of subgrad 1125.963319 dualbound = 3436701.396206, lowerbound=1266649.396206, norm of subgrad 35.406347 stepsize= 1.000000 +dualbound = 3436801.814397, lowerbound=1271893.814397, norm of subgrad 1128.294649 dualbound = 3436801.814397, lowerbound=1271893.814397, norm of subgrad 35.431881 stepsize= 1.000000 +dualbound = 3436848.227819, lowerbound=1271276.227819, norm of subgrad 1128.039107 dualbound = 3436848.227819, lowerbound=1271276.227819, norm of subgrad 35.247885 stepsize= 1.000000 +dualbound = 3436945.598436, lowerbound=1273886.598436, norm of subgrad 1129.186698 dualbound = 3436945.598436, lowerbound=1273886.598436, norm of subgrad 35.684319 stepsize= 1.000000 +dualbound = 3436995.712054, lowerbound=1267726.712055, norm of subgrad 1126.463809 dualbound = 3436995.712054, lowerbound=1267726.712055, norm of subgrad 35.271995 stepsize= 1.000000 +dualbound = 3437089.890947, lowerbound=1274590.890947, norm of subgrad 1129.485675 dualbound = 3437089.890947, lowerbound=1274590.890947, norm of subgrad 35.230369 stepsize= 1.000000 +dualbound = 3437173.130411, lowerbound=1272971.130411, norm of subgrad 1128.779930 dualbound = 3437173.130411, lowerbound=1272971.130411, norm of subgrad 35.443469 stepsize= 1.000000 +dualbound = 3437247.426567, lowerbound=1268770.426567, norm of subgrad 1126.924322 dualbound = 3437247.426567, lowerbound=1268770.426567, norm of subgrad 35.528807 stepsize= 1.000000 +dualbound = 3437305.403309, lowerbound=1267827.403309, norm of subgrad 1126.512940 dualbound = 3437305.403309, lowerbound=1267827.403309, norm of subgrad 35.524312 stepsize= 1.000000 +dualbound = 3437404.086732, lowerbound=1268505.086732, norm of subgrad 1126.819456 dualbound = 3437404.086732, lowerbound=1268505.086732, norm of subgrad 36.272351 stepsize= 1.000000 +dualbound = 3437465.456921, lowerbound=1276368.456921, norm of subgrad 1130.297951 dualbound = 3437465.456921, lowerbound=1276368.456921, norm of subgrad 35.586095 stepsize= 1.000000 +dualbound = 3437583.566322, lowerbound=1276382.566322, norm of subgrad 1130.276765 dualbound = 3437583.566322, lowerbound=1276382.566322, norm of subgrad 35.512102 stepsize= 1.000000 +dualbound = 3437619.059871, lowerbound=1273032.059871, norm of subgrad 1128.850770 dualbound = 3437619.059871, lowerbound=1273032.059871, norm of subgrad 36.159280 stepsize= 1.000000 +dualbound = 3437702.758691, lowerbound=1267026.758691, norm of subgrad 1126.165067 dualbound = 3437702.758691, lowerbound=1267026.758691, norm of subgrad 36.120615 stepsize= 1.000000 +dualbound = 3437787.271562, lowerbound=1268591.271562, norm of subgrad 1126.859029 dualbound = 3437787.271562, lowerbound=1268591.271562, norm of subgrad 36.118041 stepsize= 1.000000 +dualbound = 3437848.448980, lowerbound=1270689.448980, norm of subgrad 1127.803817 dualbound = 3437848.448980, lowerbound=1270689.448980, norm of subgrad 36.237790 stepsize= 1.000000 +dualbound = 3437938.384934, lowerbound=1270141.384934, norm of subgrad 1127.540857 dualbound = 3437938.384934, lowerbound=1270141.384934, norm of subgrad 36.012997 stepsize= 1.000000 +dualbound = 3438032.225102, lowerbound=1275567.225102, norm of subgrad 1129.945231 dualbound = 3438032.225102, lowerbound=1275567.225102, norm of subgrad 36.094877 stepsize= 1.000000 +dualbound = 3438094.211771, lowerbound=1271661.211771, norm of subgrad 1128.225692 dualbound = 3438094.211771, lowerbound=1271661.211771, norm of subgrad 35.972026 stepsize= 1.000000 +dualbound = 3438206.834327, lowerbound=1276909.834327, norm of subgrad 1130.540063 dualbound = 3438206.834327, lowerbound=1276909.834327, norm of subgrad 36.381624 stepsize= 1.000000 +dualbound = 3438254.526513, lowerbound=1265372.526513, norm of subgrad 1125.437038 dualbound = 3438254.526513, lowerbound=1265372.526513, norm of subgrad 35.828650 stepsize= 1.000000 +dualbound = 3438360.651295, lowerbound=1276517.651295, norm of subgrad 1130.374120 dualbound = 3438360.651295, lowerbound=1276517.651295, norm of subgrad 36.525673 stepsize= 1.000000 +dualbound = 3438417.612163, lowerbound=1268295.612163, norm of subgrad 1126.714965 dualbound = 3438417.612163, lowerbound=1268295.612163, norm of subgrad 35.326490 stepsize= 1.000000 +dualbound = 3438520.844130, lowerbound=1272555.844130, norm of subgrad 1128.595518 dualbound = 3438520.844130, lowerbound=1272555.844130, norm of subgrad 35.710390 stepsize= 1.000000 +dualbound = 3438580.964080, lowerbound=1269049.964080, norm of subgrad 1127.054996 dualbound = 3438580.964080, lowerbound=1269049.964080, norm of subgrad 35.540399 stepsize= 1.000000 +dualbound = 3438672.660984, lowerbound=1270094.660984, norm of subgrad 1127.515260 dualbound = 3438672.660984, lowerbound=1270094.660984, norm of subgrad 35.884494 stepsize= 1.000000 +dualbound = 3438768.440195, lowerbound=1267428.440195, norm of subgrad 1126.315871 dualbound = 3438768.440195, lowerbound=1267428.440195, norm of subgrad 35.422863 stepsize= 1.000000 +dualbound = 3438844.637936, lowerbound=1274973.637936, norm of subgrad 1129.656425 dualbound = 3438844.637936, lowerbound=1274973.637936, norm of subgrad 35.017106 stepsize= 1.000000 +dualbound = 3438911.800177, lowerbound=1266937.800177, norm of subgrad 1126.122018 dualbound = 3438911.800177, lowerbound=1266937.800177, norm of subgrad 35.779355 stepsize= 1.000000 +dualbound = 3438987.911612, lowerbound=1272165.911612, norm of subgrad 1128.449782 dualbound = 3438987.911612, lowerbound=1272165.911612, norm of subgrad 36.181645 stepsize= 1.000000 +dualbound = 3439055.443735, lowerbound=1267240.443735, norm of subgrad 1126.253721 dualbound = 3439055.443735, lowerbound=1267240.443735, norm of subgrad 35.700590 stepsize= 1.000000 +dualbound = 3439142.552008, lowerbound=1272430.552008, norm of subgrad 1128.564377 dualbound = 3439142.552008, lowerbound=1272430.552008, norm of subgrad 36.250631 stepsize= 1.000000 +dualbound = 3439233.151534, lowerbound=1270858.151534, norm of subgrad 1127.851564 dualbound = 3439233.151534, lowerbound=1270858.151534, norm of subgrad 35.799435 stepsize= 1.000000 +dualbound = 3439320.352401, lowerbound=1270810.352401, norm of subgrad 1127.825054 dualbound = 3439320.352401, lowerbound=1270810.352401, norm of subgrad 35.583716 stepsize= 1.000000 +dualbound = 3439400.484976, lowerbound=1275141.484976, norm of subgrad 1129.754613 dualbound = 3439400.484976, lowerbound=1275141.484976, norm of subgrad 35.834796 stepsize= 1.000000 +dualbound = 3439479.864310, lowerbound=1269834.864310, norm of subgrad 1127.398272 dualbound = 3439479.864310, lowerbound=1269834.864310, norm of subgrad 35.656407 stepsize= 1.000000 +dualbound = 3439552.780616, lowerbound=1271266.780616, norm of subgrad 1128.053093 dualbound = 3439552.780616, lowerbound=1271266.780616, norm of subgrad 36.192766 stepsize= 1.000000 +dualbound = 3439653.760090, lowerbound=1273546.760090, norm of subgrad 1129.038866 dualbound = 3439653.760090, lowerbound=1273546.760090, norm of subgrad 35.818703 stepsize= 1.000000 +dualbound = 3439708.541202, lowerbound=1269360.541202, norm of subgrad 1127.199867 dualbound = 3439708.541202, lowerbound=1269360.541202, norm of subgrad 35.690070 stepsize= 1.000000 +dualbound = 3439790.965581, lowerbound=1272802.965581, norm of subgrad 1128.725815 dualbound = 3439790.965581, lowerbound=1272802.965581, norm of subgrad 36.075260 stepsize= 1.000000 +dualbound = 3439867.476824, lowerbound=1267177.476824, norm of subgrad 1126.215111 dualbound = 3439867.476824, lowerbound=1267177.476824, norm of subgrad 35.489593 stepsize= 1.000000 +dualbound = 3439959.713378, lowerbound=1271202.713378, norm of subgrad 1128.023366 dualbound = 3439959.713378, lowerbound=1271202.713378, norm of subgrad 36.417531 stepsize= 1.000000 +dualbound = 3440021.621784, lowerbound=1274702.621784, norm of subgrad 1129.582499 dualbound = 3440021.621784, lowerbound=1274702.621784, norm of subgrad 36.275452 stepsize= 1.000000 +dualbound = 3440108.412281, lowerbound=1273160.412281, norm of subgrad 1128.884588 dualbound = 3440108.412281, lowerbound=1273160.412281, norm of subgrad 36.149557 stepsize= 1.000000 +dualbound = 3440193.079575, lowerbound=1272982.079575, norm of subgrad 1128.817558 dualbound = 3440193.079575, lowerbound=1272982.079575, norm of subgrad 36.492017 stepsize= 1.000000 +dualbound = 3440255.000294, lowerbound=1275197.000294, norm of subgrad 1129.798655 dualbound = 3440255.000294, lowerbound=1275197.000294, norm of subgrad 36.192827 stepsize= 1.000000 +dualbound = 3440337.433610, lowerbound=1266902.433610, norm of subgrad 1126.125408 dualbound = 3440337.433610, lowerbound=1266902.433610, norm of subgrad 36.584605 stepsize= 1.000000 +dualbound = 3440400.457296, lowerbound=1272724.457296, norm of subgrad 1128.675975 dualbound = 3440400.457296, lowerbound=1272724.457296, norm of subgrad 35.327379 stepsize= 1.000000 +dualbound = 3440503.705895, lowerbound=1270918.705895, norm of subgrad 1127.877079 dualbound = 3440503.705895, lowerbound=1270918.705895, norm of subgrad 35.933948 stepsize= 1.000000 +dualbound = 3440607.544150, lowerbound=1273332.544150, norm of subgrad 1128.968797 dualbound = 3440607.544150, lowerbound=1273332.544150, norm of subgrad 36.631110 stepsize= 1.000000 +dualbound = 3440639.659295, lowerbound=1271958.659295, norm of subgrad 1128.380990 dualbound = 3440639.659295, lowerbound=1271958.659295, norm of subgrad 36.292081 stepsize= 1.000000 +dualbound = 3440737.319507, lowerbound=1269416.319507, norm of subgrad 1127.207753 dualbound = 3440737.319507, lowerbound=1269416.319507, norm of subgrad 35.758359 stepsize= 1.000000 +dualbound = 3440821.909805, lowerbound=1273771.909805, norm of subgrad 1129.156725 dualbound = 3440821.909805, lowerbound=1273771.909805, norm of subgrad 36.160618 stepsize= 1.000000 +dualbound = 3440914.546468, lowerbound=1272563.546468, norm of subgrad 1128.611778 dualbound = 3440914.546468, lowerbound=1272563.546468, norm of subgrad 35.967161 stepsize= 1.000000 +dualbound = 3441005.153127, lowerbound=1274115.153127, norm of subgrad 1129.295423 dualbound = 3441005.153127, lowerbound=1274115.153127, norm of subgrad 35.827457 stepsize= 1.000000 +dualbound = 3441070.195626, lowerbound=1277915.195626, norm of subgrad 1130.967814 dualbound = 3441070.195626, lowerbound=1277915.195626, norm of subgrad 35.185828 stepsize= 1.000000 +dualbound = 3441146.661964, lowerbound=1269698.661964, norm of subgrad 1127.340970 dualbound = 3441146.661964, lowerbound=1269698.661964, norm of subgrad 35.713672 stepsize= 1.000000 +dualbound = 3441213.978439, lowerbound=1274245.978439, norm of subgrad 1129.377695 dualbound = 3441213.978439, lowerbound=1274245.978439, norm of subgrad 36.267292 stepsize= 1.000000 +dualbound = 3441282.929395, lowerbound=1267632.929395, norm of subgrad 1126.429727 dualbound = 3441282.929395, lowerbound=1267632.929395, norm of subgrad 35.776402 stepsize= 1.000000 +dualbound = 3441375.335951, lowerbound=1272031.335951, norm of subgrad 1128.387494 dualbound = 3441375.335951, lowerbound=1272031.335951, norm of subgrad 36.323636 stepsize= 1.000000 +dualbound = 3441452.434009, lowerbound=1271480.434009, norm of subgrad 1128.141584 dualbound = 3441452.434009, lowerbound=1271480.434009, norm of subgrad 36.056873 stepsize= 1.000000 +dualbound = 3441553.630632, lowerbound=1271362.630632, norm of subgrad 1128.072972 dualbound = 3441553.630632, lowerbound=1271362.630632, norm of subgrad 35.877523 stepsize= 1.000000 +dualbound = 3441612.548188, lowerbound=1267878.548188, norm of subgrad 1126.521881 dualbound = 3441612.548188, lowerbound=1267878.548188, norm of subgrad 35.098683 stepsize= 1.000000 +dualbound = 3441702.820863, lowerbound=1273479.820863, norm of subgrad 1128.996378 dualbound = 3441702.820863, lowerbound=1273479.820863, norm of subgrad 35.260072 stepsize= 1.000000 +dualbound = 3441780.823285, lowerbound=1270497.823285, norm of subgrad 1127.700680 dualbound = 3441780.823285, lowerbound=1270497.823285, norm of subgrad 35.902680 stepsize= 1.000000 +dualbound = 3441859.248748, lowerbound=1271028.248748, norm of subgrad 1127.927856 dualbound = 3441859.248748, lowerbound=1271028.248748, norm of subgrad 35.657053 stepsize= 1.000000 +dualbound = 3441928.332975, lowerbound=1266840.332975, norm of subgrad 1126.069417 dualbound = 3441928.332975, lowerbound=1266840.332975, norm of subgrad 35.511748 stepsize= 1.000000 +dualbound = 3442032.669728, lowerbound=1270665.669728, norm of subgrad 1127.788398 dualbound = 3442032.669728, lowerbound=1270665.669728, norm of subgrad 36.678832 stepsize= 1.000000 +dualbound = 3442075.989526, lowerbound=1268332.989526, norm of subgrad 1126.751965 dualbound = 3442075.989526, lowerbound=1268332.989526, norm of subgrad 35.781557 stepsize= 1.000000 +dualbound = 3442187.079663, lowerbound=1278042.079663, norm of subgrad 1131.048664 dualbound = 3442187.079663, lowerbound=1278042.079663, norm of subgrad 36.607242 stepsize= 1.000000 +dualbound = 3442254.112163, lowerbound=1267509.112163, norm of subgrad 1126.357897 dualbound = 3442254.112163, lowerbound=1267509.112163, norm of subgrad 35.214095 stepsize= 1.000000 +dualbound = 3442358.448630, lowerbound=1277261.448630, norm of subgrad 1130.661509 dualbound = 3442358.448630, lowerbound=1277261.448630, norm of subgrad 35.190005 stepsize= 1.000000 +dualbound = 3442441.237997, lowerbound=1262806.237997, norm of subgrad 1124.255415 dualbound = 3442441.237997, lowerbound=1262806.237997, norm of subgrad 35.025553 stepsize= 1.000000 +dualbound = 3442519.716926, lowerbound=1280071.716926, norm of subgrad 1131.946870 dualbound = 3442519.716926, lowerbound=1280071.716926, norm of subgrad 36.200538 stepsize= 1.000000 +dualbound = 3442570.489111, lowerbound=1267815.489111, norm of subgrad 1126.525849 dualbound = 3442570.489111, lowerbound=1267815.489111, norm of subgrad 35.996836 stepsize= 1.000000 +dualbound = 3442672.907033, lowerbound=1272451.907033, norm of subgrad 1128.549470 dualbound = 3442672.907033, lowerbound=1272451.907033, norm of subgrad 35.698990 stepsize= 1.000000 +dualbound = 3442731.455510, lowerbound=1270613.455510, norm of subgrad 1127.723129 dualbound = 3442731.455510, lowerbound=1270613.455510, norm of subgrad 34.706606 stepsize= 1.000000 +dualbound = 3442851.558607, lowerbound=1272654.558607, norm of subgrad 1128.637922 dualbound = 3442851.558607, lowerbound=1272654.558607, norm of subgrad 35.904082 stepsize= 1.000000 +dualbound = 3442909.276658, lowerbound=1268369.276658, norm of subgrad 1126.753423 dualbound = 3442909.276658, lowerbound=1268369.276658, norm of subgrad 35.520671 stepsize= 1.000000 +dualbound = 3442992.367413, lowerbound=1272746.367413, norm of subgrad 1128.731309 dualbound = 3442992.367413, lowerbound=1272746.367413, norm of subgrad 37.028243 stepsize= 1.000000 +dualbound = 3443023.111671, lowerbound=1268317.111671, norm of subgrad 1126.748912 dualbound = 3443023.111671, lowerbound=1268317.111671, norm of subgrad 35.731558 stepsize= 1.000000 +dualbound = 3443131.674523, lowerbound=1274063.674523, norm of subgrad 1129.267760 dualbound = 3443131.674523, lowerbound=1274063.674523, norm of subgrad 35.924405 stepsize= 1.000000 +dualbound = 3443217.848641, lowerbound=1275285.848641, norm of subgrad 1129.814520 dualbound = 3443217.848641, lowerbound=1275285.848641, norm of subgrad 35.793493 stepsize= 1.000000 +dualbound = 3443299.552634, lowerbound=1278520.552634, norm of subgrad 1131.246018 dualbound = 3443299.552634, lowerbound=1278520.552634, norm of subgrad 35.758971 stepsize= 1.000000 +dualbound = 3443381.335895, lowerbound=1264836.335895, norm of subgrad 1125.195688 dualbound = 3443381.335895, lowerbound=1264836.335895, norm of subgrad 36.204741 stepsize= 1.000000 +dualbound = 3443451.916893, lowerbound=1270921.916893, norm of subgrad 1127.867863 dualbound = 3443451.916893, lowerbound=1270921.916893, norm of subgrad 35.136605 stepsize= 1.000000 +dualbound = 3443543.982574, lowerbound=1272778.982574, norm of subgrad 1128.705445 dualbound = 3443543.982574, lowerbound=1272778.982574, norm of subgrad 35.903561 stepsize= 1.000000 +dualbound = 3443618.122106, lowerbound=1276892.122106, norm of subgrad 1130.519404 dualbound = 3443618.122106, lowerbound=1276892.122106, norm of subgrad 35.442059 stepsize= 1.000000 +dualbound = 3443706.073459, lowerbound=1270888.073459, norm of subgrad 1127.863056 dualbound = 3443706.073459, lowerbound=1270888.073459, norm of subgrad 35.706461 stepsize= 1.000000 +dualbound = 3443768.923495, lowerbound=1273577.923495, norm of subgrad 1129.048681 dualbound = 3443768.923495, lowerbound=1273577.923495, norm of subgrad 35.154659 stepsize= 1.000000 +dualbound = 3443849.025287, lowerbound=1268338.025287, norm of subgrad 1126.746655 dualbound = 3443849.025287, lowerbound=1268338.025287, norm of subgrad 36.056924 stepsize= 1.000000 +dualbound = 3443910.266758, lowerbound=1274254.266758, norm of subgrad 1129.363213 dualbound = 3443910.266758, lowerbound=1274254.266758, norm of subgrad 35.612378 stepsize= 1.000000 +dualbound = 3444007.086038, lowerbound=1269255.086038, norm of subgrad 1127.149984 dualbound = 3444007.086038, lowerbound=1269255.086038, norm of subgrad 36.177607 stepsize= 1.000000 +dualbound = 3444066.769176, lowerbound=1271117.769176, norm of subgrad 1127.989703 dualbound = 3444066.769176, lowerbound=1271117.769176, norm of subgrad 36.092702 stepsize= 1.000000 +dualbound = 3444157.632211, lowerbound=1271654.632211, norm of subgrad 1128.220117 dualbound = 3444157.632211, lowerbound=1271654.632211, norm of subgrad 36.288608 stepsize= 1.000000 +dualbound = 3444232.006586, lowerbound=1275802.006586, norm of subgrad 1130.039825 dualbound = 3444232.006586, lowerbound=1275802.006586, norm of subgrad 35.529908 stepsize= 1.000000 +dualbound = 3444337.130829, lowerbound=1267572.130829, norm of subgrad 1126.402739 dualbound = 3444337.130829, lowerbound=1267572.130829, norm of subgrad 36.278427 stepsize= 1.000000 +dualbound = 3444420.630562, lowerbound=1274422.630562, norm of subgrad 1129.438192 dualbound = 3444420.630562, lowerbound=1274422.630562, norm of subgrad 35.937442 stepsize= 1.000000 +dualbound = 3444477.822411, lowerbound=1271595.822411, norm of subgrad 1128.190508 dualbound = 3444477.822411, lowerbound=1271595.822411, norm of subgrad 35.709828 stepsize= 1.000000 +dualbound = 3444538.440101, lowerbound=1274360.440101, norm of subgrad 1129.425713 dualbound = 3444538.440101, lowerbound=1274360.440101, norm of subgrad 36.091795 stepsize= 1.000000 +dualbound = 3444626.127912, lowerbound=1266340.127912, norm of subgrad 1125.845517 dualbound = 3444626.127912, lowerbound=1266340.127912, norm of subgrad 35.716772 stepsize= 1.000000 +dualbound = 3444730.626949, lowerbound=1275545.626949, norm of subgrad 1129.951161 dualbound = 3444730.626949, lowerbound=1275545.626949, norm of subgrad 36.721915 stepsize= 1.000000 +dualbound = 3444787.725329, lowerbound=1270667.725329, norm of subgrad 1127.784875 dualbound = 3444787.725329, lowerbound=1270667.725329, norm of subgrad 35.890087 stepsize= 1.000000 +dualbound = 3444874.709124, lowerbound=1278052.709124, norm of subgrad 1131.079886 dualbound = 3444874.709124, lowerbound=1278052.709124, norm of subgrad 37.094256 stepsize= 1.000000 +dualbound = 3444935.800396, lowerbound=1266498.800396, norm of subgrad 1125.952841 dualbound = 3444935.800396, lowerbound=1266498.800396, norm of subgrad 36.497826 stepsize= 1.000000 +dualbound = 3445041.677890, lowerbound=1273783.677890, norm of subgrad 1129.136253 dualbound = 3445041.677890, lowerbound=1273783.677890, norm of subgrad 35.649369 stepsize= 1.000000 +dualbound = 3445133.910598, lowerbound=1269711.910598, norm of subgrad 1127.331766 dualbound = 3445133.910598, lowerbound=1269711.910598, norm of subgrad 35.457477 stepsize= 1.000000 +dualbound = 3445194.179124, lowerbound=1273573.179124, norm of subgrad 1129.054551 dualbound = 3445194.179124, lowerbound=1273573.179124, norm of subgrad 35.373274 stepsize= 1.000000 +dualbound = 3445275.300250, lowerbound=1272568.300250, norm of subgrad 1128.603695 dualbound = 3445275.300250, lowerbound=1272568.300250, norm of subgrad 35.484097 stepsize= 1.000000 +dualbound = 3445358.767318, lowerbound=1271923.767318, norm of subgrad 1128.313240 dualbound = 3445358.767318, lowerbound=1271923.767318, norm of subgrad 35.361944 stepsize= 1.000000 +dualbound = 3445432.451153, lowerbound=1272488.451153, norm of subgrad 1128.566547 dualbound = 3445432.451153, lowerbound=1272488.451153, norm of subgrad 35.322568 stepsize= 1.000000 +dualbound = 3445504.371639, lowerbound=1275230.371639, norm of subgrad 1129.796164 dualbound = 3445504.371639, lowerbound=1275230.371639, norm of subgrad 35.789950 stepsize= 1.000000 +dualbound = 3445577.600488, lowerbound=1271683.600488, norm of subgrad 1128.205035 dualbound = 3445577.600488, lowerbound=1271683.600488, norm of subgrad 35.160046 stepsize= 1.000000 +dualbound = 3445650.475977, lowerbound=1269615.475977, norm of subgrad 1127.309397 dualbound = 3445650.475977, lowerbound=1269615.475977, norm of subgrad 35.831208 stepsize= 1.000000 +dualbound = 3445745.687781, lowerbound=1269897.687781, norm of subgrad 1127.418151 dualbound = 3445745.687781, lowerbound=1269897.687781, norm of subgrad 35.625999 stepsize= 1.000000 +dualbound = 3445828.016909, lowerbound=1272944.016909, norm of subgrad 1128.788739 dualbound = 3445828.016909, lowerbound=1272944.016909, norm of subgrad 36.087797 stepsize= 1.000000 +dualbound = 3445908.961179, lowerbound=1268172.961179, norm of subgrad 1126.663198 dualbound = 3445908.961179, lowerbound=1268172.961179, norm of subgrad 35.748346 stepsize= 1.000000 +dualbound = 3445963.927798, lowerbound=1276136.927798, norm of subgrad 1130.198623 dualbound = 3445963.927798, lowerbound=1276136.927798, norm of subgrad 35.594475 stepsize= 1.000000 +dualbound = 3446056.519730, lowerbound=1269310.519730, norm of subgrad 1127.204737 dualbound = 3446056.519730, lowerbound=1269310.519730, norm of subgrad 37.048508 stepsize= 1.000000 +dualbound = 3446106.338053, lowerbound=1273750.338053, norm of subgrad 1129.138759 dualbound = 3446106.338053, lowerbound=1273750.338053, norm of subgrad 35.409297 stepsize= 1.000000 +dualbound = 3446248.546454, lowerbound=1268814.546454, norm of subgrad 1126.921713 dualbound = 3446248.546454, lowerbound=1268814.546454, norm of subgrad 35.780000 stepsize= 1.000000 +dualbound = 3446318.969468, lowerbound=1272044.969468, norm of subgrad 1128.375810 dualbound = 3446318.969468, lowerbound=1272044.969468, norm of subgrad 35.460161 stepsize= 1.000000 +dualbound = 3446375.925757, lowerbound=1273280.925757, norm of subgrad 1128.943278 dualbound = 3446375.925757, lowerbound=1273280.925757, norm of subgrad 35.902037 stepsize= 1.000000 +dualbound = 3446446.585687, lowerbound=1272142.585687, norm of subgrad 1128.432801 dualbound = 3446446.585687, lowerbound=1272142.585687, norm of subgrad 35.897910 stepsize= 1.000000 +dualbound = 3446532.222545, lowerbound=1271300.222545, norm of subgrad 1128.060824 dualbound = 3446532.222545, lowerbound=1271300.222545, norm of subgrad 36.147432 stepsize= 1.000000 +dualbound = 3446620.198882, lowerbound=1272479.198882, norm of subgrad 1128.549157 dualbound = 3446620.198882, lowerbound=1272479.198882, norm of subgrad 35.099520 stepsize= 1.000000 +dualbound = 3446714.148558, lowerbound=1270412.148558, norm of subgrad 1127.639193 dualbound = 3446714.148558, lowerbound=1270412.148558, norm of subgrad 35.382901 stepsize= 1.000000 +dualbound = 3446788.325786, lowerbound=1270722.325786, norm of subgrad 1127.786472 dualbound = 3446788.325786, lowerbound=1270722.325786, norm of subgrad 35.414365 stepsize= 1.000000 +dualbound = 3446868.919239, lowerbound=1273233.919239, norm of subgrad 1128.901200 dualbound = 3446868.919239, lowerbound=1273233.919239, norm of subgrad 35.561123 stepsize= 1.000000 +dualbound = 3446947.107684, lowerbound=1274436.107684, norm of subgrad 1129.443273 dualbound = 3446947.107684, lowerbound=1274436.107684, norm of subgrad 35.835575 stepsize= 1.000000 +dualbound = 3447002.509028, lowerbound=1273844.509028, norm of subgrad 1129.172046 dualbound = 3447002.509028, lowerbound=1273844.509028, norm of subgrad 35.219332 stepsize= 1.000000 +dualbound = 3447096.605111, lowerbound=1269814.605111, norm of subgrad 1127.397270 dualbound = 3447096.605111, lowerbound=1269814.605111, norm of subgrad 36.112271 stepsize= 1.000000 +dualbound = 3447164.126095, lowerbound=1274685.126095, norm of subgrad 1129.545982 dualbound = 3447164.126095, lowerbound=1274685.126095, norm of subgrad 35.447440 stepsize= 1.000000 +dualbound = 3447253.267706, lowerbound=1268619.267706, norm of subgrad 1126.867902 dualbound = 3447253.267706, lowerbound=1268619.267706, norm of subgrad 36.071341 stepsize= 1.000000 +dualbound = 3447330.901368, lowerbound=1273260.901368, norm of subgrad 1128.933081 dualbound = 3447330.901368, lowerbound=1273260.901368, norm of subgrad 36.147388 stepsize= 1.000000 +dualbound = 3447401.318775, lowerbound=1270934.318775, norm of subgrad 1127.885331 dualbound = 3447401.318775, lowerbound=1270934.318775, norm of subgrad 35.516439 stepsize= 1.000000 +dualbound = 3447493.016771, lowerbound=1272426.016771, norm of subgrad 1128.542873 dualbound = 3447493.016771, lowerbound=1272426.016771, norm of subgrad 35.702913 stepsize= 1.000000 +dualbound = 3447581.423583, lowerbound=1279517.423583, norm of subgrad 1131.696259 dualbound = 3447581.423583, lowerbound=1279517.423583, norm of subgrad 36.158081 stepsize= 1.000000 +dualbound = 3447641.371666, lowerbound=1267778.371666, norm of subgrad 1126.513813 dualbound = 3447641.371666, lowerbound=1267778.371666, norm of subgrad 36.262213 stepsize= 1.000000 +dualbound = 3447747.348519, lowerbound=1275296.348519, norm of subgrad 1129.807660 dualbound = 3447747.348519, lowerbound=1275296.348519, norm of subgrad 35.706818 stepsize= 1.000000 +dualbound = 3447802.535022, lowerbound=1269036.535022, norm of subgrad 1127.058355 dualbound = 3447802.535022, lowerbound=1269036.535022, norm of subgrad 35.765717 stepsize= 1.000000 +dualbound = 3447881.380263, lowerbound=1270713.380263, norm of subgrad 1127.784722 dualbound = 3447881.380263, lowerbound=1270713.380263, norm of subgrad 35.550601 stepsize= 1.000000 +dualbound = 3447960.961383, lowerbound=1273701.961383, norm of subgrad 1129.110252 dualbound = 3447960.961383, lowerbound=1273701.961383, norm of subgrad 35.603105 stepsize= 1.000000 +dualbound = 3448050.572100, lowerbound=1271635.572100, norm of subgrad 1128.180204 dualbound = 3448050.572100, lowerbound=1271635.572100, norm of subgrad 35.279041 stepsize= 1.000000 +dualbound = 3448134.975542, lowerbound=1271943.975542, norm of subgrad 1128.347010 dualbound = 3448134.975542, lowerbound=1271943.975542, norm of subgrad 36.158034 stepsize= 1.000000 +dualbound = 3448203.689261, lowerbound=1267571.689261, norm of subgrad 1126.415860 dualbound = 3448203.689261, lowerbound=1267571.689261, norm of subgrad 36.189967 stepsize= 1.000000 +dualbound = 3448279.387323, lowerbound=1279867.387323, norm of subgrad 1131.832756 dualbound = 3448279.387323, lowerbound=1279867.387323, norm of subgrad 35.407599 stepsize= 1.000000 +dualbound = 3448376.671434, lowerbound=1268428.671434, norm of subgrad 1126.785104 dualbound = 3448376.671434, lowerbound=1268428.671434, norm of subgrad 36.239262 stepsize= 1.000000 +dualbound = 3448424.909566, lowerbound=1272947.909566, norm of subgrad 1128.809510 dualbound = 3448424.909566, lowerbound=1272947.909566, norm of subgrad 36.211022 stepsize= 1.000000 +dualbound = 3448510.322369, lowerbound=1267598.322369, norm of subgrad 1126.413921 dualbound = 3448510.322369, lowerbound=1267598.322369, norm of subgrad 35.991844 stepsize= 1.000000 +dualbound = 3448588.927594, lowerbound=1276024.927594, norm of subgrad 1130.143322 dualbound = 3448588.927594, lowerbound=1276024.927594, norm of subgrad 35.743604 stepsize= 1.000000 +dualbound = 3448674.439632, lowerbound=1274754.439632, norm of subgrad 1129.581533 dualbound = 3448674.439632, lowerbound=1274754.439632, norm of subgrad 35.854038 stepsize= 1.000000 +dualbound = 3448756.165963, lowerbound=1270670.165963, norm of subgrad 1127.768667 dualbound = 3448756.165963, lowerbound=1270670.165963, norm of subgrad 35.689303 stepsize= 1.000000 +dualbound = 3448840.911734, lowerbound=1266119.911734, norm of subgrad 1125.748601 dualbound = 3448840.911734, lowerbound=1266119.911734, norm of subgrad 35.703582 stepsize= 1.000000 +dualbound = 3448899.896895, lowerbound=1275474.896895, norm of subgrad 1129.908800 dualbound = 3448899.896895, lowerbound=1275474.896895, norm of subgrad 35.748918 stepsize= 1.000000 +dualbound = 3449008.900322, lowerbound=1270798.900322, norm of subgrad 1127.796037 dualbound = 3449008.900322, lowerbound=1270798.900322, norm of subgrad 35.128385 stepsize= 1.000000 +dualbound = 3449064.343732, lowerbound=1274983.343732, norm of subgrad 1129.689933 dualbound = 3449064.343732, lowerbound=1274983.343732, norm of subgrad 35.657305 stepsize= 1.000000 +dualbound = 3449145.312013, lowerbound=1271012.312013, norm of subgrad 1127.925224 dualbound = 3449145.312013, lowerbound=1271012.312013, norm of subgrad 35.832503 stepsize= 1.000000 +dualbound = 3449235.403877, lowerbound=1272160.403877, norm of subgrad 1128.435379 dualbound = 3449235.403877, lowerbound=1272160.403877, norm of subgrad 36.001276 stepsize= 1.000000 +dualbound = 3449307.543291, lowerbound=1270427.543291, norm of subgrad 1127.663755 dualbound = 3449307.543291, lowerbound=1270427.543291, norm of subgrad 35.639015 stepsize= 1.000000 +dualbound = 3449386.623499, lowerbound=1277353.623499, norm of subgrad 1130.734108 dualbound = 3449386.623499, lowerbound=1277353.623499, norm of subgrad 35.848015 stepsize= 1.000000 +dualbound = 3449473.152874, lowerbound=1268260.152874, norm of subgrad 1126.687691 dualbound = 3449473.152874, lowerbound=1268260.152874, norm of subgrad 35.376961 stepsize= 1.000000 +dualbound = 3449543.853508, lowerbound=1276121.853508, norm of subgrad 1130.215844 dualbound = 3449543.853508, lowerbound=1276121.853508, norm of subgrad 36.560917 stepsize= 1.000000 +dualbound = 3449610.892952, lowerbound=1269637.892952, norm of subgrad 1127.312243 dualbound = 3449610.892952, lowerbound=1269637.892952, norm of subgrad 35.525194 stepsize= 1.000000 +dualbound = 3449711.075557, lowerbound=1276306.075557, norm of subgrad 1130.271682 dualbound = 3449711.075557, lowerbound=1276306.075557, norm of subgrad 36.168807 stepsize= 1.000000 +dualbound = 3449770.187354, lowerbound=1269876.187354, norm of subgrad 1127.414381 dualbound = 3449770.187354, lowerbound=1269876.187354, norm of subgrad 35.300309 stepsize= 1.000000 +dualbound = 3449858.241320, lowerbound=1275343.241320, norm of subgrad 1129.818234 dualbound = 3449858.241320, lowerbound=1275343.241320, norm of subgrad 35.129104 stepsize= 1.000000 +dualbound = 3449947.281704, lowerbound=1274637.281704, norm of subgrad 1129.546494 dualbound = 3449947.281704, lowerbound=1274637.281704, norm of subgrad 36.428565 stepsize= 1.000000 +dualbound = 3449986.297124, lowerbound=1274261.297124, norm of subgrad 1129.385805 dualbound = 3449986.297124, lowerbound=1274261.297124, norm of subgrad 35.916785 stepsize= 1.000000 +dualbound = 3450084.753223, lowerbound=1270486.753223, norm of subgrad 1127.717940 dualbound = 3450084.753223, lowerbound=1270486.753223, norm of subgrad 36.870803 stepsize= 1.000000 +dualbound = 3450169.396027, lowerbound=1270844.396027, norm of subgrad 1127.843250 dualbound = 3450169.396027, lowerbound=1270844.396027, norm of subgrad 35.646077 stepsize= 1.000000 +dualbound = 3450282.013206, lowerbound=1266115.013206, norm of subgrad 1125.739318 dualbound = 3450282.013206, lowerbound=1266115.013206, norm of subgrad 35.869446 stepsize= 1.000000 +dualbound = 3450328.475390, lowerbound=1275754.475390, norm of subgrad 1130.044457 dualbound = 3450328.475390, lowerbound=1275754.475390, norm of subgrad 35.950830 stepsize= 1.000000 +dualbound = 3450412.244464, lowerbound=1262126.244464, norm of subgrad 1124.000109 dualbound = 3450412.244464, lowerbound=1262126.244464, norm of subgrad 36.520803 stepsize= 1.000000 +dualbound = 3450474.114326, lowerbound=1275544.114326, norm of subgrad 1129.932349 dualbound = 3450474.114326, lowerbound=1275544.114326, norm of subgrad 35.565009 stepsize= 1.000000 +dualbound = 3450565.464830, lowerbound=1269338.464830, norm of subgrad 1127.200721 dualbound = 3450565.464830, lowerbound=1269338.464830, norm of subgrad 36.528763 stepsize= 1.000000 +dualbound = 3450640.010366, lowerbound=1274116.010366, norm of subgrad 1129.303772 dualbound = 3450640.010366, lowerbound=1274116.010366, norm of subgrad 35.854505 stepsize= 1.000000 +dualbound = 3450727.865263, lowerbound=1269055.865263, norm of subgrad 1127.056283 dualbound = 3450727.865263, lowerbound=1269055.865263, norm of subgrad 35.886695 stepsize= 1.000000 +dualbound = 3450791.891728, lowerbound=1270246.891728, norm of subgrad 1127.588973 dualbound = 3450791.891728, lowerbound=1270246.891728, norm of subgrad 35.693507 stepsize= 1.000000 +dualbound = 3450891.969923, lowerbound=1275842.969923, norm of subgrad 1130.052640 dualbound = 3450891.969923, lowerbound=1275842.969923, norm of subgrad 35.722237 stepsize= 1.000000 +dualbound = 3450975.555312, lowerbound=1274391.555312, norm of subgrad 1129.387690 dualbound = 3450975.555312, lowerbound=1274391.555312, norm of subgrad 34.764715 stepsize= 1.000000 +dualbound = 3451094.487810, lowerbound=1268962.487811, norm of subgrad 1126.966498 dualbound = 3451094.487810, lowerbound=1268962.487811, norm of subgrad 34.784084 stepsize= 1.000000 +dualbound = 3451157.676829, lowerbound=1271179.676829, norm of subgrad 1127.987445 dualbound = 3451157.676829, lowerbound=1271179.676829, norm of subgrad 35.202117 stepsize= 1.000000 +dualbound = 3451214.240047, lowerbound=1272723.240047, norm of subgrad 1128.675879 dualbound = 3451214.240047, lowerbound=1272723.240047, norm of subgrad 35.250010 stepsize= 1.000000 +dualbound = 3451308.001173, lowerbound=1273391.001173, norm of subgrad 1128.971656 dualbound = 3451308.001173, lowerbound=1273391.001173, norm of subgrad 35.773749 stepsize= 1.000000 +dualbound = 3451399.270998, lowerbound=1276576.270998, norm of subgrad 1130.386337 dualbound = 3451399.270998, lowerbound=1276576.270998, norm of subgrad 35.892476 stepsize= 1.000000 +dualbound = 3451436.496900, lowerbound=1268988.496900, norm of subgrad 1127.046360 dualbound = 3451436.496900, lowerbound=1268988.496900, norm of subgrad 35.808182 stepsize= 1.000000 +dualbound = 3451519.009162, lowerbound=1273410.009162, norm of subgrad 1129.043847 dualbound = 3451519.009162, lowerbound=1273410.009162, norm of subgrad 37.583404 stepsize= 1.000000 +dualbound = 3451595.489855, lowerbound=1271205.489855, norm of subgrad 1128.015288 dualbound = 3451595.489855, lowerbound=1271205.489855, norm of subgrad 35.909340 stepsize= 1.000000 +dualbound = 3451699.955743, lowerbound=1270941.955743, norm of subgrad 1127.909551 dualbound = 3451699.955743, lowerbound=1270941.955743, norm of subgrad 36.639676 stepsize= 1.000000 +dualbound = 3451753.983582, lowerbound=1273151.983582, norm of subgrad 1128.866238 dualbound = 3451753.983582, lowerbound=1273151.983582, norm of subgrad 35.228225 stepsize= 1.000000 +dualbound = 3451861.338080, lowerbound=1272633.338080, norm of subgrad 1128.666177 dualbound = 3451861.338080, lowerbound=1272633.338080, norm of subgrad 36.896538 stepsize= 1.000000 +dualbound = 3451907.235842, lowerbound=1272945.235842, norm of subgrad 1128.783077 dualbound = 3451907.235842, lowerbound=1272945.235842, norm of subgrad 35.382167 stepsize= 1.000000 +dualbound = 3452000.890079, lowerbound=1269566.890079, norm of subgrad 1127.313129 dualbound = 3452000.890079, lowerbound=1269566.890079, norm of subgrad 36.900599 stepsize= 1.000000 +dualbound = 3452058.108473, lowerbound=1272632.108473, norm of subgrad 1128.657215 dualbound = 3452058.108473, lowerbound=1272632.108473, norm of subgrad 35.947439 stepsize= 1.000000 +dualbound = 3452152.307269, lowerbound=1271636.307269, norm of subgrad 1128.224848 dualbound = 3452152.307269, lowerbound=1271636.307269, norm of subgrad 36.731442 stepsize= 1.000000 +dualbound = 3452226.670297, lowerbound=1271434.670297, norm of subgrad 1128.107561 dualbound = 3452226.670297, lowerbound=1271434.670297, norm of subgrad 35.585995 stepsize= 1.000000 +dualbound = 3452321.706531, lowerbound=1274996.706531, norm of subgrad 1129.678585 dualbound = 3452321.706531, lowerbound=1274996.706531, norm of subgrad 35.665617 stepsize= 1.000000 +dualbound = 3452380.133618, lowerbound=1267982.133618, norm of subgrad 1126.577620 dualbound = 3452380.133618, lowerbound=1267982.133618, norm of subgrad 35.403772 stepsize= 1.000000 +dualbound = 3452482.889292, lowerbound=1271377.889292, norm of subgrad 1128.101010 dualbound = 3452482.889292, lowerbound=1271377.889292, norm of subgrad 36.561669 stepsize= 1.000000 +dualbound = 3452540.614439, lowerbound=1271841.614439, norm of subgrad 1128.302537 dualbound = 3452540.614439, lowerbound=1271841.614439, norm of subgrad 35.815152 stepsize= 1.000000 +dualbound = 3452636.625197, lowerbound=1270312.625197, norm of subgrad 1127.617677 dualbound = 3452636.625197, lowerbound=1270312.625197, norm of subgrad 36.124933 stepsize= 1.000000 +dualbound = 3452725.196839, lowerbound=1274505.196839, norm of subgrad 1129.470760 dualbound = 3452725.196839, lowerbound=1274505.196839, norm of subgrad 35.882749 stepsize= 1.000000 +dualbound = 3452801.329088, lowerbound=1272231.329088, norm of subgrad 1128.464146 dualbound = 3452801.329088, lowerbound=1272231.329088, norm of subgrad 35.722993 stepsize= 1.000000 +dualbound = 3452880.071410, lowerbound=1272975.071410, norm of subgrad 1128.798065 dualbound = 3452880.071410, lowerbound=1272975.071410, norm of subgrad 35.899057 stepsize= 1.000000 +dualbound = 3452957.370524, lowerbound=1266072.370524, norm of subgrad 1125.727929 dualbound = 3452957.370524, lowerbound=1266072.370524, norm of subgrad 35.613187 stepsize= 1.000000 +dualbound = 3453041.846260, lowerbound=1272662.846260, norm of subgrad 1128.653555 dualbound = 3453041.846260, lowerbound=1272662.846260, norm of subgrad 35.783736 stepsize= 1.000000 +dualbound = 3453121.000833, lowerbound=1273650.000833, norm of subgrad 1129.091671 dualbound = 3453121.000833, lowerbound=1273650.000833, norm of subgrad 35.737299 stepsize= 1.000000 +dualbound = 3453184.019258, lowerbound=1272365.019258, norm of subgrad 1128.493695 dualbound = 3453184.019258, lowerbound=1272365.019258, norm of subgrad 34.583499 stepsize= 1.000000 +dualbound = 3453284.093661, lowerbound=1274181.093661, norm of subgrad 1129.321076 dualbound = 3453284.093661, lowerbound=1274181.093661, norm of subgrad 35.847934 stepsize= 1.000000 +dualbound = 3453362.067471, lowerbound=1272386.067472, norm of subgrad 1128.513211 dualbound = 3453362.067471, lowerbound=1272386.067472, norm of subgrad 35.127963 stepsize= 1.000000 +dualbound = 3453449.317328, lowerbound=1269976.317329, norm of subgrad 1127.451248 dualbound = 3453449.317328, lowerbound=1269976.317329, norm of subgrad 35.457719 stepsize= 1.000000 +dualbound = 3453519.803347, lowerbound=1274075.803347, norm of subgrad 1129.261619 dualbound = 3453519.803347, lowerbound=1274075.803347, norm of subgrad 35.021222 stepsize= 1.000000 +dualbound = 3453619.436902, lowerbound=1271020.436902, norm of subgrad 1127.926610 dualbound = 3453619.436902, lowerbound=1271020.436902, norm of subgrad 36.022681 stepsize= 1.000000 +dualbound = 3453660.881782, lowerbound=1276504.881782, norm of subgrad 1130.363606 dualbound = 3453660.881782, lowerbound=1276504.881782, norm of subgrad 35.474567 stepsize= 1.000000 +dualbound = 3453751.502471, lowerbound=1271546.502471, norm of subgrad 1128.152251 dualbound = 3453751.502471, lowerbound=1271546.502471, norm of subgrad 35.659791 stepsize= 1.000000 +dualbound = 3453813.697007, lowerbound=1271672.697007, norm of subgrad 1128.229895 dualbound = 3453813.697007, lowerbound=1271672.697007, norm of subgrad 35.947107 stepsize= 1.000000 +dualbound = 3453887.155949, lowerbound=1267729.155949, norm of subgrad 1126.480872 dualbound = 3453887.155949, lowerbound=1267729.155949, norm of subgrad 36.103448 stepsize= 1.000000 +dualbound = 3453960.198154, lowerbound=1275659.198154, norm of subgrad 1130.046104 dualbound = 3453960.198154, lowerbound=1275659.198154, norm of subgrad 37.656901 stepsize= 1.000000 +dualbound = 3454010.144798, lowerbound=1269607.144798, norm of subgrad 1127.356263 dualbound = 3454010.144798, lowerbound=1269607.144798, norm of subgrad 37.080273 stepsize= 1.000000 +dualbound = 3454085.497670, lowerbound=1271517.497670, norm of subgrad 1128.191694 dualbound = 3454085.497670, lowerbound=1271517.497670, norm of subgrad 37.072266 stepsize= 1.000000 +dualbound = 3454192.769382, lowerbound=1271516.769382, norm of subgrad 1128.178962 dualbound = 3454192.769382, lowerbound=1271516.769382, norm of subgrad 37.125082 stepsize= 1.000000 +dualbound = 3454286.069192, lowerbound=1276869.069192, norm of subgrad 1130.529553 dualbound = 3454286.069192, lowerbound=1276869.069192, norm of subgrad 36.349688 stepsize= 1.000000 +dualbound = 3454385.655674, lowerbound=1267472.655674, norm of subgrad 1126.314190 dualbound = 3454385.655674, lowerbound=1267472.655674, norm of subgrad 34.793483 stepsize= 1.000000 +dualbound = 3454464.496101, lowerbound=1272393.496101, norm of subgrad 1128.516059 dualbound = 3454464.496101, lowerbound=1272393.496101, norm of subgrad 35.126065 stepsize= 1.000000 +dualbound = 3454549.920983, lowerbound=1266756.920983, norm of subgrad 1126.015951 dualbound = 3454549.920983, lowerbound=1266756.920983, norm of subgrad 35.219666 stepsize= 1.000000 +dualbound = 3454621.758648, lowerbound=1272567.758648, norm of subgrad 1128.614088 dualbound = 3454621.758648, lowerbound=1272567.758648, norm of subgrad 35.690862 stepsize= 1.000000 +dualbound = 3454702.789299, lowerbound=1276598.789299, norm of subgrad 1130.369758 dualbound = 3454702.789299, lowerbound=1276598.789299, norm of subgrad 34.900296 stepsize= 1.000000 +dualbound = 3454798.112187, lowerbound=1274492.112187, norm of subgrad 1129.444603 dualbound = 3454798.112187, lowerbound=1274492.112187, norm of subgrad 35.331613 stepsize= 1.000000 +dualbound = 3454848.660940, lowerbound=1270314.660940, norm of subgrad 1127.609711 dualbound = 3454848.660940, lowerbound=1270314.660940, norm of subgrad 35.207226 stepsize= 1.000000 +dualbound = 3454919.976275, lowerbound=1273828.976275, norm of subgrad 1129.176681 dualbound = 3454919.976275, lowerbound=1273828.976275, norm of subgrad 35.809431 stepsize= 1.000000 +dualbound = 3455013.601374, lowerbound=1271448.601374, norm of subgrad 1128.108417 dualbound = 3455013.601374, lowerbound=1271448.601374, norm of subgrad 35.687884 stepsize= 1.000000 +dualbound = 3455113.535531, lowerbound=1274718.535531, norm of subgrad 1129.530670 dualbound = 3455113.535531, lowerbound=1274718.535531, norm of subgrad 34.941868 stepsize= 1.000000 +dualbound = 3455179.036811, lowerbound=1272699.036811, norm of subgrad 1128.657626 dualbound = 3455179.036811, lowerbound=1272699.036811, norm of subgrad 35.135470 stepsize= 1.000000 +dualbound = 3455244.797514, lowerbound=1274881.797514, norm of subgrad 1129.664020 dualbound = 3455244.797514, lowerbound=1274881.797514, norm of subgrad 36.397262 stepsize= 1.000000 +dualbound = 3455298.782044, lowerbound=1266847.782044, norm of subgrad 1126.103362 dualbound = 3455298.782044, lowerbound=1266847.782044, norm of subgrad 36.262715 stepsize= 1.000000 +dualbound = 3455384.681972, lowerbound=1274611.681972, norm of subgrad 1129.529407 dualbound = 3455384.681972, lowerbound=1274611.681972, norm of subgrad 36.206352 stepsize= 1.000000 +dualbound = 3455478.019492, lowerbound=1261147.019492, norm of subgrad 1123.547960 dualbound = 3455478.019492, lowerbound=1261147.019492, norm of subgrad 36.143292 stepsize= 1.000000 +dualbound = 3455560.859123, lowerbound=1272453.859123, norm of subgrad 1128.550335 dualbound = 3455560.859123, lowerbound=1272453.859123, norm of subgrad 35.423716 stepsize= 1.000000 +dualbound = 3455660.086570, lowerbound=1269285.086570, norm of subgrad 1127.177487 dualbound = 3455660.086570, lowerbound=1269285.086570, norm of subgrad 36.650067 stepsize= 1.000000 +dualbound = 3455694.449489, lowerbound=1274272.449489, norm of subgrad 1129.373919 dualbound = 3455694.449489, lowerbound=1274272.449489, norm of subgrad 35.318025 stepsize= 1.000000 +dualbound = 3455812.724886, lowerbound=1270833.724886, norm of subgrad 1127.838076 dualbound = 3455812.724886, lowerbound=1270833.724886, norm of subgrad 36.100906 stepsize= 1.000000 +dualbound = 3455899.588453, lowerbound=1274610.588453, norm of subgrad 1129.492624 dualbound = 3455899.588453, lowerbound=1274610.588453, norm of subgrad 35.069411 stepsize= 1.000000 +dualbound = 3455958.639174, lowerbound=1273050.639174, norm of subgrad 1128.857670 dualbound = 3455958.639174, lowerbound=1273050.639174, norm of subgrad 36.442430 stepsize= 1.000000 +dualbound = 3456001.518216, lowerbound=1277123.518216, norm of subgrad 1130.664193 dualbound = 3456001.518216, lowerbound=1277123.518216, norm of subgrad 36.343900 stepsize= 1.000000 +dualbound = 3456112.698074, lowerbound=1269912.698074, norm of subgrad 1127.427469 dualbound = 3456112.698074, lowerbound=1269912.698074, norm of subgrad 35.932991 stepsize= 1.000000 +dualbound = 3456197.703603, lowerbound=1276964.703603, norm of subgrad 1130.557696 dualbound = 3456197.703603, lowerbound=1276964.703603, norm of subgrad 35.791138 stepsize= 1.000000 +dualbound = 3456286.929219, lowerbound=1271773.929219, norm of subgrad 1128.248168 dualbound = 3456286.929219, lowerbound=1271773.929219, norm of subgrad 35.485569 stepsize= 1.000000 +dualbound = 3456355.736014, lowerbound=1275351.736014, norm of subgrad 1129.846333 dualbound = 3456355.736014, lowerbound=1275351.736014, norm of subgrad 35.634349 stepsize= 1.000000 +dualbound = 3456434.782034, lowerbound=1270665.782034, norm of subgrad 1127.776034 dualbound = 3456434.782034, lowerbound=1270665.782034, norm of subgrad 35.945042 stepsize= 1.000000 +dualbound = 3456525.246202, lowerbound=1271361.246202, norm of subgrad 1128.036899 dualbound = 3456525.246202, lowerbound=1271361.246202, norm of subgrad 34.589943 stepsize= 1.000000 +dualbound = 3456599.085903, lowerbound=1273533.085903, norm of subgrad 1129.061152 dualbound = 3456599.085903, lowerbound=1273533.085903, norm of subgrad 36.329598 stepsize= 1.000000 +dualbound = 3456679.569999, lowerbound=1268270.569999, norm of subgrad 1126.663468 dualbound = 3456679.569999, lowerbound=1268270.569999, norm of subgrad 34.358174 stepsize= 1.000000 +dualbound = 3456769.746553, lowerbound=1271472.746553, norm of subgrad 1128.104050 dualbound = 3456769.746553, lowerbound=1271472.746553, norm of subgrad 35.159303 stepsize= 1.000000 +dualbound = 3456831.833278, lowerbound=1270877.833278, norm of subgrad 1127.840784 dualbound = 3456831.833278, lowerbound=1270877.833278, norm of subgrad 34.771924 stepsize= 1.000000 +dualbound = 3456916.346833, lowerbound=1274919.346833, norm of subgrad 1129.656738 dualbound = 3456916.346833, lowerbound=1274919.346833, norm of subgrad 35.909797 stepsize= 1.000000 +dualbound = 3456962.781868, lowerbound=1272349.781868, norm of subgrad 1128.529478 dualbound = 3456962.781868, lowerbound=1272349.781868, norm of subgrad 35.713233 stepsize= 1.000000 +dualbound = 3457074.803642, lowerbound=1271678.803642, norm of subgrad 1128.186068 dualbound = 3457074.803642, lowerbound=1271678.803642, norm of subgrad 35.171320 stepsize= 1.000000 +dualbound = 3457155.687251, lowerbound=1268826.687251, norm of subgrad 1126.937748 dualbound = 3457155.687251, lowerbound=1268826.687251, norm of subgrad 35.254554 stepsize= 1.000000 +dualbound = 3457237.079832, lowerbound=1272748.079832, norm of subgrad 1128.675808 dualbound = 3457237.079832, lowerbound=1272748.079832, norm of subgrad 35.247590 stepsize= 1.000000 +dualbound = 3457311.168954, lowerbound=1270063.168954, norm of subgrad 1127.497303 dualbound = 3457311.168954, lowerbound=1270063.168954, norm of subgrad 35.511817 stepsize= 1.000000 +dualbound = 3457390.222390, lowerbound=1271455.222390, norm of subgrad 1128.151241 dualbound = 3457390.222390, lowerbound=1271455.222390, norm of subgrad 36.729463 stepsize= 1.000000 +dualbound = 3457441.631705, lowerbound=1268019.631705, norm of subgrad 1126.636424 dualbound = 3457441.631705, lowerbound=1268019.631705, norm of subgrad 36.625255 stepsize= 1.000000 +dualbound = 3457534.817142, lowerbound=1274034.817142, norm of subgrad 1129.260739 dualbound = 3457534.817142, lowerbound=1274034.817142, norm of subgrad 35.891300 stepsize= 1.000000 +dualbound = 3457623.177236, lowerbound=1272590.177236, norm of subgrad 1128.679395 dualbound = 3457623.177236, lowerbound=1272590.177236, norm of subgrad 37.621272 stepsize= 1.000000 +dualbound = 3457679.839044, lowerbound=1277189.839044, norm of subgrad 1130.691310 dualbound = 3457679.839044, lowerbound=1277189.839044, norm of subgrad 36.464528 stepsize= 1.000000 +dualbound = 3457752.459456, lowerbound=1266764.459456, norm of subgrad 1126.058373 dualbound = 3457752.459456, lowerbound=1266764.459456, norm of subgrad 36.271482 stepsize= 1.000000 +dualbound = 3457849.701900, lowerbound=1274300.701900, norm of subgrad 1129.389969 dualbound = 3457849.701900, lowerbound=1274300.701900, norm of subgrad 36.307609 stepsize= 1.000000 +dualbound = 3457933.125216, lowerbound=1275427.125216, norm of subgrad 1129.891201 dualbound = 3457933.125216, lowerbound=1275427.125216, norm of subgrad 36.199770 stepsize= 1.000000 +dualbound = 3458035.303231, lowerbound=1276572.303231, norm of subgrad 1130.398736 dualbound = 3458035.303231, lowerbound=1276572.303231, norm of subgrad 36.485312 stepsize= 1.000000 +dualbound = 3458093.160417, lowerbound=1275493.160417, norm of subgrad 1129.944317 dualbound = 3458093.160417, lowerbound=1275493.160417, norm of subgrad 36.590397 stepsize= 1.000000 +dualbound = 3458163.031997, lowerbound=1273783.031997, norm of subgrad 1129.162536 dualbound = 3458163.031997, lowerbound=1273783.031997, norm of subgrad 35.984324 stepsize= 1.000000 +dualbound = 3458252.432581, lowerbound=1267659.432581, norm of subgrad 1126.428175 dualbound = 3458252.432581, lowerbound=1267659.432581, norm of subgrad 35.642679 stepsize= 1.000000 +dualbound = 3458345.894556, lowerbound=1276728.894556, norm of subgrad 1130.427306 dualbound = 3458345.894556, lowerbound=1276728.894556, norm of subgrad 35.077941 stepsize= 1.000000 +dualbound = 3458451.213050, lowerbound=1269041.213050, norm of subgrad 1127.047565 dualbound = 3458451.213050, lowerbound=1269041.213050, norm of subgrad 36.059929 stepsize= 1.000000 +dualbound = 3458495.614188, lowerbound=1273318.614188, norm of subgrad 1128.943583 dualbound = 3458495.614188, lowerbound=1273318.614188, norm of subgrad 35.205129 stepsize= 1.000000 +dualbound = 3458601.277023, lowerbound=1271810.277023, norm of subgrad 1128.266492 dualbound = 3458601.277023, lowerbound=1271810.277023, norm of subgrad 35.786350 stepsize= 1.000000 +dualbound = 3458648.428896, lowerbound=1272854.428896, norm of subgrad 1128.716275 dualbound = 3458648.428896, lowerbound=1272854.428896, norm of subgrad 34.542031 stepsize= 1.000000 +dualbound = 3458743.868220, lowerbound=1271853.868220, norm of subgrad 1128.278719 dualbound = 3458743.868220, lowerbound=1271853.868220, norm of subgrad 35.418065 stepsize= 1.000000 +dualbound = 3458836.743856, lowerbound=1264956.743856, norm of subgrad 1125.195869 dualbound = 3458836.743856, lowerbound=1264956.743856, norm of subgrad 34.668078 stepsize= 1.000000 +dualbound = 3458896.309978, lowerbound=1270133.309978, norm of subgrad 1127.512887 dualbound = 3458896.309978, lowerbound=1270133.309978, norm of subgrad 34.807558 stepsize= 1.000000 +dualbound = 3458980.503775, lowerbound=1276691.503775, norm of subgrad 1130.426249 dualbound = 3458980.503775, lowerbound=1276691.503775, norm of subgrad 35.442824 stepsize= 1.000000 +dualbound = 3459039.184191, lowerbound=1275867.184191, norm of subgrad 1130.091228 dualbound = 3459039.184191, lowerbound=1275867.184191, norm of subgrad 36.023332 stepsize= 1.000000 +dualbound = 3459121.261352, lowerbound=1273611.261352, norm of subgrad 1129.090015 dualbound = 3459121.261352, lowerbound=1273611.261352, norm of subgrad 36.263993 stepsize= 1.000000 +dualbound = 3459182.171123, lowerbound=1273887.171123, norm of subgrad 1129.200235 dualbound = 3459182.171123, lowerbound=1273887.171123, norm of subgrad 35.593676 stepsize= 1.000000 +dualbound = 3459285.731606, lowerbound=1269707.731606, norm of subgrad 1127.326364 dualbound = 3459285.731606, lowerbound=1269707.731606, norm of subgrad 35.504373 stepsize= 1.000000 +dualbound = 3459383.822005, lowerbound=1271853.822005, norm of subgrad 1128.308833 dualbound = 3459383.822005, lowerbound=1271853.822005, norm of subgrad 36.401791 stepsize= 1.000000 +dualbound = 3459427.224580, lowerbound=1270006.224580, norm of subgrad 1127.476042 dualbound = 3459427.224580, lowerbound=1270006.224580, norm of subgrad 35.205150 stepsize= 1.000000 +dualbound = 3459514.710570, lowerbound=1270922.710570, norm of subgrad 1127.901906 dualbound = 3459514.710570, lowerbound=1270922.710570, norm of subgrad 36.434681 stepsize= 1.000000 +dualbound = 3459594.017429, lowerbound=1272297.017429, norm of subgrad 1128.479959 dualbound = 3459594.017429, lowerbound=1272297.017429, norm of subgrad 35.345535 stepsize= 1.000000 +dualbound = 3459683.028993, lowerbound=1271631.028993, norm of subgrad 1128.227384 dualbound = 3459683.028993, lowerbound=1271631.028993, norm of subgrad 36.810482 stepsize= 1.000000 +dualbound = 3459769.296638, lowerbound=1276391.296638, norm of subgrad 1130.305400 dualbound = 3459769.296638, lowerbound=1276391.296638, norm of subgrad 35.850630 stepsize= 1.000000 +dualbound = 3459844.885235, lowerbound=1268496.885235, norm of subgrad 1126.831347 dualbound = 3459844.885235, lowerbound=1268496.885235, norm of subgrad 36.436089 stepsize= 1.000000 +dualbound = 3459924.117827, lowerbound=1274155.117827, norm of subgrad 1129.334369 dualbound = 3459924.117827, lowerbound=1274155.117827, norm of subgrad 36.335005 stepsize= 1.000000 +dualbound = 3459982.603994, lowerbound=1272388.603994, norm of subgrad 1128.551994 dualbound = 3459982.603994, lowerbound=1272388.603994, norm of subgrad 36.048386 stepsize= 1.000000 +dualbound = 3460076.133827, lowerbound=1271772.133827, norm of subgrad 1128.231862 dualbound = 3460076.133827, lowerbound=1271772.133827, norm of subgrad 35.050390 stepsize= 1.000000 +dualbound = 3460177.666015, lowerbound=1270840.666015, norm of subgrad 1127.824750 dualbound = 3460177.666015, lowerbound=1270840.666015, norm of subgrad 35.348723 stepsize= 1.000000 +dualbound = 3460239.013055, lowerbound=1276710.013055, norm of subgrad 1130.449474 dualbound = 3460239.013055, lowerbound=1276710.013055, norm of subgrad 35.599818 stepsize= 1.000000 +dualbound = 3460314.762966, lowerbound=1272212.762966, norm of subgrad 1128.441741 dualbound = 3460314.762966, lowerbound=1272212.762966, norm of subgrad 35.266839 stepsize= 1.000000 +dualbound = 3460399.362115, lowerbound=1269736.362115, norm of subgrad 1127.363456 dualbound = 3460399.362115, lowerbound=1269736.362115, norm of subgrad 36.008321 stepsize= 1.000000 +dualbound = 3460432.461096, lowerbound=1270289.461096, norm of subgrad 1127.626029 dualbound = 3460432.461096, lowerbound=1270289.461096, norm of subgrad 35.834327 stepsize= 1.000000 +dualbound = 3460529.963671, lowerbound=1275362.963671, norm of subgrad 1129.851744 dualbound = 3460529.963671, lowerbound=1275362.963671, norm of subgrad 36.048614 stepsize= 1.000000 +dualbound = 3460616.013315, lowerbound=1269924.013315, norm of subgrad 1127.437809 dualbound = 3460616.013315, lowerbound=1269924.013315, norm of subgrad 35.749820 stepsize= 1.000000 +dualbound = 3460695.271040, lowerbound=1266543.271040, norm of subgrad 1125.956159 dualbound = 3460695.271040, lowerbound=1266543.271040, norm of subgrad 36.238898 stepsize= 1.000000 +dualbound = 3460770.096259, lowerbound=1274682.096259, norm of subgrad 1129.567659 dualbound = 3460770.096259, lowerbound=1274682.096259, norm of subgrad 36.274305 stepsize= 1.000000 +dualbound = 3460844.303490, lowerbound=1270197.303490, norm of subgrad 1127.578957 dualbound = 3460844.303490, lowerbound=1270197.303490, norm of subgrad 36.210596 stepsize= 1.000000 +dualbound = 3460931.549717, lowerbound=1275229.549717, norm of subgrad 1129.807306 dualbound = 3460931.549717, lowerbound=1275229.549717, norm of subgrad 36.362704 stepsize= 1.000000 +dualbound = 3461001.471457, lowerbound=1272276.471457, norm of subgrad 1128.480603 dualbound = 3461001.471457, lowerbound=1272276.471457, norm of subgrad 35.523538 stepsize= 1.000000 +dualbound = 3461095.787010, lowerbound=1270399.787010, norm of subgrad 1127.660759 dualbound = 3461095.787010, lowerbound=1270399.787010, norm of subgrad 36.239696 stepsize= 1.000000 +dualbound = 3461164.225379, lowerbound=1273914.225379, norm of subgrad 1129.228155 dualbound = 3461164.225379, lowerbound=1273914.225379, norm of subgrad 36.199977 stepsize= 1.000000 +dualbound = 3461228.024401, lowerbound=1271949.024401, norm of subgrad 1128.379380 dualbound = 3461228.024401, lowerbound=1271949.024401, norm of subgrad 36.807595 stepsize= 1.000000 +dualbound = 3461319.781850, lowerbound=1272653.781850, norm of subgrad 1128.659285 dualbound = 3461319.781850, lowerbound=1272653.781850, norm of subgrad 36.190571 stepsize= 1.000000 +dualbound = 3461421.875695, lowerbound=1275242.875695, norm of subgrad 1129.769390 dualbound = 3461421.875695, lowerbound=1275242.875695, norm of subgrad 35.186558 stepsize= 1.000000 +dualbound = 3461481.844576, lowerbound=1273679.844576, norm of subgrad 1129.148726 dualbound = 3461481.844576, lowerbound=1273679.844576, norm of subgrad 36.837059 stepsize= 1.000000 +dualbound = 3461519.281854, lowerbound=1269060.281854, norm of subgrad 1127.101274 dualbound = 3461519.281854, lowerbound=1269060.281854, norm of subgrad 36.529950 stepsize= 1.000000 +dualbound = 3461612.612287, lowerbound=1273888.612287, norm of subgrad 1129.235853 dualbound = 3461612.612287, lowerbound=1273888.612287, norm of subgrad 37.125873 stepsize= 1.000000 +dualbound = 3461701.712438, lowerbound=1269086.712438, norm of subgrad 1127.083720 dualbound = 3461701.712438, lowerbound=1269086.712438, norm of subgrad 36.333183 stepsize= 1.000000 +dualbound = 3461803.216859, lowerbound=1266820.216859, norm of subgrad 1126.046721 dualbound = 3461803.216859, lowerbound=1266820.216859, norm of subgrad 35.531738 stepsize= 1.000000 +dualbound = 3461883.443820, lowerbound=1280152.443820, norm of subgrad 1131.945424 dualbound = 3461883.443820, lowerbound=1280152.443820, norm of subgrad 35.046069 stepsize= 1.000000 +dualbound = 3461975.041128, lowerbound=1270647.041128, norm of subgrad 1127.741567 dualbound = 3461975.041128, lowerbound=1270647.041128, norm of subgrad 35.293021 stepsize= 1.000000 +dualbound = 3462041.391206, lowerbound=1274161.391206, norm of subgrad 1129.295529 dualbound = 3462041.391206, lowerbound=1274161.391206, norm of subgrad 34.833175 stepsize= 1.000000 +dualbound = 3462105.454827, lowerbound=1265346.454827, norm of subgrad 1125.403241 dualbound = 3462105.454827, lowerbound=1265346.454827, norm of subgrad 35.356239 stepsize= 1.000000 +dualbound = 3462205.223725, lowerbound=1276969.223725, norm of subgrad 1130.534486 dualbound = 3462205.223725, lowerbound=1276969.223725, norm of subgrad 35.196149 stepsize= 1.000000 +dualbound = 3462293.304156, lowerbound=1269723.304156, norm of subgrad 1127.343029 dualbound = 3462293.304156, lowerbound=1269723.304156, norm of subgrad 35.596073 stepsize= 1.000000 +dualbound = 3462340.565403, lowerbound=1275461.565403, norm of subgrad 1129.909096 dualbound = 3462340.565403, lowerbound=1275461.565403, norm of subgrad 35.780738 stepsize= 1.000000 +dualbound = 3462431.801392, lowerbound=1275187.801392, norm of subgrad 1129.799009 dualbound = 3462431.801392, lowerbound=1275187.801392, norm of subgrad 36.731948 stepsize= 1.000000 +dualbound = 3462502.930110, lowerbound=1274411.930110, norm of subgrad 1129.432127 dualbound = 3462502.930110, lowerbound=1274411.930110, norm of subgrad 35.722944 stepsize= 1.000000 +dualbound = 3462592.002826, lowerbound=1274728.002826, norm of subgrad 1129.538845 dualbound = 3462592.002826, lowerbound=1274728.002826, norm of subgrad 34.915222 stepsize= 1.000000 +dualbound = 3462682.532353, lowerbound=1272379.532353, norm of subgrad 1128.516518 dualbound = 3462682.532353, lowerbound=1272379.532353, norm of subgrad 35.503937 stepsize= 1.000000 +dualbound = 3462755.329631, lowerbound=1273716.329631, norm of subgrad 1129.120157 dualbound = 3462755.329631, lowerbound=1273716.329631, norm of subgrad 35.620181 stepsize= 1.000000 +dualbound = 3462809.282312, lowerbound=1274701.282312, norm of subgrad 1129.588988 dualbound = 3462809.282312, lowerbound=1274701.282312, norm of subgrad 36.386161 stepsize= 1.000000 +dualbound = 3462887.183038, lowerbound=1266607.183038, norm of subgrad 1125.997417 dualbound = 3462887.183038, lowerbound=1266607.183038, norm of subgrad 36.618311 stepsize= 1.000000 +dualbound = 3462981.307546, lowerbound=1278600.307546, norm of subgrad 1131.288782 dualbound = 3462981.307546, lowerbound=1278600.307546, norm of subgrad 36.168004 stepsize= 1.000000 +dualbound = 3463069.726007, lowerbound=1268913.726007, norm of subgrad 1127.010970 dualbound = 3463069.726007, lowerbound=1268913.726007, norm of subgrad 36.447475 stepsize= 1.000000 +dualbound = 3463122.268796, lowerbound=1273084.268796, norm of subgrad 1128.865479 dualbound = 3463122.268796, lowerbound=1273084.268796, norm of subgrad 36.132296 stepsize= 1.000000 +dualbound = 3463209.681827, lowerbound=1275451.681827, norm of subgrad 1129.908705 dualbound = 3463209.681827, lowerbound=1275451.681827, norm of subgrad 36.461117 stepsize= 1.000000 +dualbound = 3463280.907191, lowerbound=1270024.907191, norm of subgrad 1127.476344 dualbound = 3463280.907191, lowerbound=1270024.907191, norm of subgrad 35.344382 stepsize= 1.000000 +dualbound = 3463377.304795, lowerbound=1273841.304795, norm of subgrad 1129.172398 dualbound = 3463377.304795, lowerbound=1273841.304795, norm of subgrad 35.852442 stepsize= 1.000000 +dualbound = 3463466.942328, lowerbound=1273934.942328, norm of subgrad 1129.228915 dualbound = 3463466.942328, lowerbound=1273934.942328, norm of subgrad 36.230340 stepsize= 1.000000 +dualbound = 3463519.486797, lowerbound=1268194.486797, norm of subgrad 1126.708253 dualbound = 3463519.486797, lowerbound=1268194.486797, norm of subgrad 36.462919 stepsize= 1.000000 +dualbound = 3463588.503184, lowerbound=1272666.503184, norm of subgrad 1128.679983 dualbound = 3463588.503184, lowerbound=1272666.503184, norm of subgrad 36.345789 stepsize= 1.000000 +dualbound = 3463705.092600, lowerbound=1269159.092600, norm of subgrad 1127.090100 dualbound = 3463705.092600, lowerbound=1269159.092600, norm of subgrad 35.910854 stepsize= 1.000000 +dualbound = 3463770.508764, lowerbound=1273145.508764, norm of subgrad 1128.882859 dualbound = 3463770.508764, lowerbound=1273145.508764, norm of subgrad 36.005780 stepsize= 1.000000 +dualbound = 3463838.248075, lowerbound=1268680.248075, norm of subgrad 1126.919806 dualbound = 3463838.248075, lowerbound=1268680.248075, norm of subgrad 36.547768 stepsize= 1.000000 +dualbound = 3463904.933098, lowerbound=1275343.933098, norm of subgrad 1129.863679 dualbound = 3463904.933098, lowerbound=1275343.933098, norm of subgrad 36.258586 stepsize= 1.000000 +dualbound = 3464000.264765, lowerbound=1272053.264765, norm of subgrad 1128.378600 dualbound = 3464000.264765, lowerbound=1272053.264765, norm of subgrad 35.781723 stepsize= 1.000000 +dualbound = 3464103.504187, lowerbound=1271501.504187, norm of subgrad 1128.129649 dualbound = 3464103.504187, lowerbound=1271501.504187, norm of subgrad 35.752474 stepsize= 1.000000 +dualbound = 3464175.260710, lowerbound=1270192.260710, norm of subgrad 1127.547454 dualbound = 3464175.260710, lowerbound=1270192.260710, norm of subgrad 35.252752 stepsize= 1.000000 +dualbound = 3464244.858067, lowerbound=1273866.858067, norm of subgrad 1129.180614 dualbound = 3464244.858067, lowerbound=1273866.858067, norm of subgrad 35.377922 stepsize= 1.000000 +dualbound = 3464335.227929, lowerbound=1272667.227929, norm of subgrad 1128.635117 dualbound = 3464335.227929, lowerbound=1272667.227929, norm of subgrad 35.218885 stepsize= 1.000000 +dualbound = 3464435.617650, lowerbound=1273009.617650, norm of subgrad 1128.826212 dualbound = 3464435.617650, lowerbound=1273009.617650, norm of subgrad 36.597674 stepsize= 1.000000 +dualbound = 3464459.074818, lowerbound=1273522.074818, norm of subgrad 1129.068676 dualbound = 3464459.074818, lowerbound=1273522.074818, norm of subgrad 36.020233 stepsize= 1.000000 +dualbound = 3464547.879920, lowerbound=1271916.879920, norm of subgrad 1128.337662 dualbound = 3464547.879920, lowerbound=1271916.879920, norm of subgrad 36.301585 stepsize= 1.000000 +dualbound = 3464655.490525, lowerbound=1269853.490525, norm of subgrad 1127.398106 dualbound = 3464655.490525, lowerbound=1269853.490525, norm of subgrad 35.785620 stepsize= 1.000000 +dualbound = 3464734.187121, lowerbound=1272605.187121, norm of subgrad 1128.621809 dualbound = 3464734.187121, lowerbound=1272605.187121, norm of subgrad 35.506290 stepsize= 1.000000 +dualbound = 3464817.657840, lowerbound=1276319.657840, norm of subgrad 1130.246724 dualbound = 3464817.657840, lowerbound=1276319.657840, norm of subgrad 34.949545 stepsize= 1.000000 +dualbound = 3464908.470334, lowerbound=1270833.470334, norm of subgrad 1127.818456 dualbound = 3464908.470334, lowerbound=1270833.470334, norm of subgrad 35.097186 stepsize= 1.000000 +dualbound = 3464973.942105, lowerbound=1273323.942105, norm of subgrad 1128.945500 dualbound = 3464973.942105, lowerbound=1273323.942105, norm of subgrad 35.489037 stepsize= 1.000000 +dualbound = 3465037.076600, lowerbound=1274915.076600, norm of subgrad 1129.632718 dualbound = 3465037.076600, lowerbound=1274915.076600, norm of subgrad 34.901784 stepsize= 1.000000 +dualbound = 3465121.154504, lowerbound=1272305.154504, norm of subgrad 1128.495970 dualbound = 3465121.154504, lowerbound=1272305.154504, norm of subgrad 35.806115 stepsize= 1.000000 +dualbound = 3465176.862506, lowerbound=1277325.862506, norm of subgrad 1130.740847 dualbound = 3465176.862506, lowerbound=1277325.862506, norm of subgrad 36.120742 stepsize= 1.000000 +dualbound = 3465265.297168, lowerbound=1273331.297168, norm of subgrad 1128.937685 dualbound = 3465265.297168, lowerbound=1273331.297168, norm of subgrad 35.460325 stepsize= 1.000000 +dualbound = 3465357.922484, lowerbound=1275809.922484, norm of subgrad 1130.012355 dualbound = 3465357.922484, lowerbound=1275809.922484, norm of subgrad 34.794041 stepsize= 1.000000 +dualbound = 3465453.164616, lowerbound=1272426.164616, norm of subgrad 1128.522115 dualbound = 3465453.164616, lowerbound=1272426.164616, norm of subgrad 35.089060 stepsize= 1.000000 +dualbound = 3465520.579600, lowerbound=1269283.579600, norm of subgrad 1127.129354 dualbound = 3465520.579600, lowerbound=1269283.579600, norm of subgrad 34.704682 stepsize= 1.000000 +dualbound = 3465615.817640, lowerbound=1271689.817640, norm of subgrad 1128.174994 dualbound = 3465615.817640, lowerbound=1271689.817640, norm of subgrad 34.412760 stepsize= 1.000000 +dualbound = 3465677.943201, lowerbound=1270531.943201, norm of subgrad 1127.708270 dualbound = 3465677.943201, lowerbound=1270531.943201, norm of subgrad 35.441862 stepsize= 1.000000 +dualbound = 3465760.636045, lowerbound=1276075.636045, norm of subgrad 1130.168410 dualbound = 3465760.636045, lowerbound=1276075.636045, norm of subgrad 35.884437 stepsize= 1.000000 +dualbound = 3465826.021591, lowerbound=1273410.021591, norm of subgrad 1128.976980 dualbound = 3465826.021591, lowerbound=1273410.021591, norm of subgrad 35.275849 stepsize= 1.000000 +dualbound = 3465916.968042, lowerbound=1278037.968042, norm of subgrad 1131.039331 dualbound = 3465916.968042, lowerbound=1278037.968042, norm of subgrad 36.096350 stepsize= 1.000000 +dualbound = 3465974.676531, lowerbound=1266762.676531, norm of subgrad 1126.068682 dualbound = 3465974.676531, lowerbound=1266762.676531, norm of subgrad 36.410280 stepsize= 1.000000 +dualbound = 3466041.593988, lowerbound=1272683.593988, norm of subgrad 1128.663632 dualbound = 3466041.593988, lowerbound=1272683.593988, norm of subgrad 35.565678 stepsize= 1.000000 +dualbound = 3466154.842153, lowerbound=1267752.842153, norm of subgrad 1126.470524 dualbound = 3466154.842153, lowerbound=1267752.842153, norm of subgrad 36.003447 stepsize= 1.000000 +dualbound = 3466220.019659, lowerbound=1271239.019659, norm of subgrad 1128.034139 dualbound = 3466220.019659, lowerbound=1271239.019659, norm of subgrad 35.877256 stepsize= 1.000000 +dualbound = 3466292.898044, lowerbound=1274580.898044, norm of subgrad 1129.510026 dualbound = 3466292.898044, lowerbound=1274580.898044, norm of subgrad 35.845200 stepsize= 1.000000 +dualbound = 3466372.357351, lowerbound=1276132.357351, norm of subgrad 1130.185984 dualbound = 3466372.357351, lowerbound=1276132.357351, norm of subgrad 35.601395 stepsize= 1.000000 +dualbound = 3466450.752924, lowerbound=1267510.752924, norm of subgrad 1126.355518 dualbound = 3466450.752924, lowerbound=1267510.752924, norm of subgrad 35.275991 stepsize= 1.000000 +dualbound = 3466542.276431, lowerbound=1276981.276431, norm of subgrad 1130.549546 dualbound = 3466542.276431, lowerbound=1276981.276431, norm of subgrad 35.391009 stepsize= 1.000000 +dualbound = 3466606.576325, lowerbound=1272237.576325, norm of subgrad 1128.470016 dualbound = 3466606.576325, lowerbound=1272237.576325, norm of subgrad 35.655293 stepsize= 1.000000 +dualbound = 3466674.226553, lowerbound=1274150.226553, norm of subgrad 1129.331761 dualbound = 3466674.226553, lowerbound=1274150.226553, norm of subgrad 36.161447 stepsize= 1.000000 +dualbound = 3466752.761990, lowerbound=1268243.761990, norm of subgrad 1126.694618 dualbound = 3466752.761990, lowerbound=1268243.761990, norm of subgrad 35.714639 stepsize= 1.000000 +dualbound = 3466859.730296, lowerbound=1275926.730296, norm of subgrad 1130.094567 dualbound = 3466859.730296, lowerbound=1275926.730296, norm of subgrad 35.971771 stepsize= 1.000000 +dualbound = 3466916.679801, lowerbound=1272928.679801, norm of subgrad 1128.781502 dualbound = 3466916.679801, lowerbound=1272928.679801, norm of subgrad 35.720435 stepsize= 1.000000 +dualbound = 3466994.400688, lowerbound=1273006.400688, norm of subgrad 1128.827888 dualbound = 3466994.400688, lowerbound=1273006.400688, norm of subgrad 36.382975 stepsize= 1.000000 +dualbound = 3467066.124920, lowerbound=1278502.124920, norm of subgrad 1131.236105 dualbound = 3467066.124920, lowerbound=1278502.124920, norm of subgrad 35.562962 stepsize= 1.000000 +dualbound = 3467154.386661, lowerbound=1274323.386661, norm of subgrad 1129.412850 dualbound = 3467154.386661, lowerbound=1274323.386661, norm of subgrad 36.582260 stepsize= 1.000000 +dualbound = 3467213.249527, lowerbound=1273053.249527, norm of subgrad 1128.864584 dualbound = 3467213.249527, lowerbound=1273053.249527, norm of subgrad 36.617794 stepsize= 1.000000 +dualbound = 3467293.744309, lowerbound=1272026.744309, norm of subgrad 1128.393435 dualbound = 3467293.744309, lowerbound=1272026.744309, norm of subgrad 36.407345 stepsize= 1.000000 +dualbound = 3467397.850215, lowerbound=1275031.850215, norm of subgrad 1129.710074 dualbound = 3467397.850215, lowerbound=1275031.850215, norm of subgrad 36.291954 stepsize= 1.000000 +dualbound = 3467453.614029, lowerbound=1271147.614029, norm of subgrad 1127.996283 dualbound = 3467453.614029, lowerbound=1271147.614029, norm of subgrad 35.829650 stepsize= 1.000000 +dualbound = 3467547.279979, lowerbound=1271639.279979, norm of subgrad 1128.205336 dualbound = 3467547.279979, lowerbound=1271639.279979, norm of subgrad 36.078608 stepsize= 1.000000 +dualbound = 3467621.075847, lowerbound=1270571.075847, norm of subgrad 1127.746016 dualbound = 3467621.075847, lowerbound=1270571.075847, norm of subgrad 36.246322 stepsize= 1.000000 +dualbound = 3467689.315250, lowerbound=1272460.315250, norm of subgrad 1128.568259 dualbound = 3467689.315250, lowerbound=1272460.315250, norm of subgrad 35.696490 stepsize= 1.000000 +dualbound = 3467784.775879, lowerbound=1272323.775879, norm of subgrad 1128.504221 dualbound = 3467784.775879, lowerbound=1272323.775879, norm of subgrad 35.964714 stepsize= 1.000000 +dualbound = 3467857.514777, lowerbound=1272794.514777, norm of subgrad 1128.706124 dualbound = 3467857.514777, lowerbound=1272794.514777, norm of subgrad 35.436406 stepsize= 1.000000 +dualbound = 3467926.078348, lowerbound=1269447.078348, norm of subgrad 1127.233817 dualbound = 3467926.078348, lowerbound=1269447.078348, norm of subgrad 35.743021 stepsize= 1.000000 +dualbound = 3468005.269324, lowerbound=1275325.269324, norm of subgrad 1129.847011 dualbound = 3468005.269324, lowerbound=1275325.269324, norm of subgrad 36.168923 stepsize= 1.000000 +dualbound = 3468074.474920, lowerbound=1268744.474920, norm of subgrad 1126.942534 dualbound = 3468074.474920, lowerbound=1268744.474920, norm of subgrad 36.389636 stepsize= 1.000000 +dualbound = 3468158.291241, lowerbound=1279263.291241, norm of subgrad 1131.586184 dualbound = 3468158.291241, lowerbound=1279263.291241, norm of subgrad 36.163743 stepsize= 1.000000 +dualbound = 3468219.718815, lowerbound=1272404.718815, norm of subgrad 1128.552931 dualbound = 3468219.718815, lowerbound=1272404.718815, norm of subgrad 35.894673 stepsize= 1.000000 +dualbound = 3468340.405202, lowerbound=1273663.405202, norm of subgrad 1129.098049 dualbound = 3468340.405202, lowerbound=1273663.405202, norm of subgrad 36.327488 stepsize= 1.000000 +dualbound = 3468392.923574, lowerbound=1269652.923574, norm of subgrad 1127.331328 dualbound = 3468392.923574, lowerbound=1269652.923574, norm of subgrad 35.714400 stepsize= 1.000000 +dualbound = 3468499.511308, lowerbound=1276465.511308, norm of subgrad 1130.340883 dualbound = 3468499.511308, lowerbound=1276465.511308, norm of subgrad 36.215849 stepsize= 1.000000 +dualbound = 3468532.837863, lowerbound=1270747.837863, norm of subgrad 1127.827929 dualbound = 3468532.837863, lowerbound=1270747.837863, norm of subgrad 35.795622 stepsize= 1.000000 +dualbound = 3468633.775843, lowerbound=1275394.775843, norm of subgrad 1129.856529 dualbound = 3468633.775843, lowerbound=1275394.775843, norm of subgrad 35.804161 stepsize= 1.000000 +dualbound = 3468732.879225, lowerbound=1274029.879225, norm of subgrad 1129.238628 dualbound = 3468732.879225, lowerbound=1274029.879225, norm of subgrad 35.342657 stepsize= 1.000000 +dualbound = 3468817.786099, lowerbound=1272957.786099, norm of subgrad 1128.774462 dualbound = 3468817.786099, lowerbound=1272957.786099, norm of subgrad 35.481078 stepsize= 1.000000 +dualbound = 3468899.041073, lowerbound=1271507.041073, norm of subgrad 1128.124125 dualbound = 3468899.041073, lowerbound=1271507.041073, norm of subgrad 35.188847 stepsize= 1.000000 +dualbound = 3468973.362713, lowerbound=1274499.362713, norm of subgrad 1129.461979 dualbound = 3468973.362713, lowerbound=1274499.362713, norm of subgrad 35.486922 stepsize= 1.000000 +dualbound = 3469026.851199, lowerbound=1271834.851199, norm of subgrad 1128.298653 dualbound = 3469026.851199, lowerbound=1271834.851199, norm of subgrad 35.727979 stepsize= 1.000000 +dualbound = 3469102.817801, lowerbound=1277995.817801, norm of subgrad 1130.998593 dualbound = 3469102.817801, lowerbound=1277995.817801, norm of subgrad 35.184750 stepsize= 1.000000 +dualbound = 3469220.258607, lowerbound=1273784.258607, norm of subgrad 1129.135182 dualbound = 3469220.258607, lowerbound=1273784.258607, norm of subgrad 35.769272 stepsize= 1.000000 +dualbound = 3469277.888404, lowerbound=1277055.888404, norm of subgrad 1130.594927 dualbound = 3469277.888404, lowerbound=1277055.888404, norm of subgrad 35.307645 stepsize= 1.000000 +dualbound = 3469355.223731, lowerbound=1272626.223731, norm of subgrad 1128.628027 dualbound = 3469355.223731, lowerbound=1272626.223731, norm of subgrad 35.388350 stepsize= 1.000000 +dualbound = 3469417.486867, lowerbound=1272342.486867, norm of subgrad 1128.539094 dualbound = 3469417.486867, lowerbound=1272342.486867, norm of subgrad 36.335425 stepsize= 1.000000 +dualbound = 3469509.908240, lowerbound=1276456.908240, norm of subgrad 1130.333538 dualbound = 3469509.908240, lowerbound=1276456.908240, norm of subgrad 35.908514 stepsize= 1.000000 +dualbound = 3469579.416382, lowerbound=1273152.416382, norm of subgrad 1128.874402 dualbound = 3469579.416382, lowerbound=1273152.416382, norm of subgrad 35.700254 stepsize= 1.000000 +dualbound = 3469677.502038, lowerbound=1273281.502038, norm of subgrad 1128.947077 dualbound = 3469677.502038, lowerbound=1273281.502038, norm of subgrad 36.579853 stepsize= 1.000000 +dualbound = 3469740.937516, lowerbound=1275370.937516, norm of subgrad 1129.837571 dualbound = 3469740.937516, lowerbound=1275370.937516, norm of subgrad 35.006221 stepsize= 1.000000 +dualbound = 3469847.502931, lowerbound=1275970.502931, norm of subgrad 1130.120570 dualbound = 3469847.502931, lowerbound=1275970.502931, norm of subgrad 36.174099 stepsize= 1.000000 +dualbound = 3469879.414268, lowerbound=1272954.414268, norm of subgrad 1128.785814 dualbound = 3469879.414268, lowerbound=1272954.414268, norm of subgrad 35.141305 stepsize= 1.000000 +dualbound = 3469959.644742, lowerbound=1272386.644742, norm of subgrad 1128.541822 dualbound = 3469959.644742, lowerbound=1272386.644742, norm of subgrad 36.058709 stepsize= 1.000000 +dualbound = 3470050.167383, lowerbound=1267611.167383, norm of subgrad 1126.422286 dualbound = 3470050.167383, lowerbound=1267611.167383, norm of subgrad 36.145852 stepsize= 1.000000 +dualbound = 3470114.885215, lowerbound=1275682.885215, norm of subgrad 1129.974728 dualbound = 3470114.885215, lowerbound=1275682.885215, norm of subgrad 34.995969 stepsize= 1.000000 +dualbound = 3470216.961323, lowerbound=1272016.961323, norm of subgrad 1128.352765 dualbound = 3470216.961323, lowerbound=1272016.961323, norm of subgrad 35.567908 stepsize= 1.000000 +dualbound = 3470285.440349, lowerbound=1273353.440349, norm of subgrad 1128.951478 dualbound = 3470285.440349, lowerbound=1273353.440349, norm of subgrad 35.305510 stepsize= 1.000000 +dualbound = 3470358.076074, lowerbound=1277134.076074, norm of subgrad 1130.652942 dualbound = 3470358.076074, lowerbound=1277134.076074, norm of subgrad 36.257906 stepsize= 1.000000 +dualbound = 3470425.018646, lowerbound=1276500.018646, norm of subgrad 1130.388437 dualbound = 3470425.018646, lowerbound=1276500.018646, norm of subgrad 36.673459 stepsize= 1.000000 +dualbound = 3470501.738172, lowerbound=1273591.738172, norm of subgrad 1129.070298 dualbound = 3470501.738172, lowerbound=1273591.738172, norm of subgrad 35.842984 stepsize= 1.000000 +dualbound = 3470577.413627, lowerbound=1275449.413627, norm of subgrad 1129.877167 dualbound = 3470577.413627, lowerbound=1275449.413627, norm of subgrad 35.336602 stepsize= 1.000000 +dualbound = 3470684.882895, lowerbound=1275145.882895, norm of subgrad 1129.733988 dualbound = 3470684.882895, lowerbound=1275145.882895, norm of subgrad 35.503088 stepsize= 1.000000 +dualbound = 3470785.274488, lowerbound=1272274.274488, norm of subgrad 1128.459248 dualbound = 3470785.274488, lowerbound=1272274.274488, norm of subgrad 35.304272 stepsize= 1.000000 +dualbound = 3470832.781291, lowerbound=1276767.781291, norm of subgrad 1130.479890 dualbound = 3470832.781291, lowerbound=1276767.781291, norm of subgrad 35.559904 stepsize= 1.000000 +dualbound = 3470886.100045, lowerbound=1276499.100045, norm of subgrad 1130.396877 dualbound = 3470886.100045, lowerbound=1276499.100045, norm of subgrad 36.760288 stepsize= 1.000000 +dualbound = 3470977.813648, lowerbound=1273524.813648, norm of subgrad 1129.020289 dualbound = 3470977.813648, lowerbound=1273524.813648, norm of subgrad 35.407818 stepsize= 1.000000 +dualbound = 3471074.184597, lowerbound=1269449.184598, norm of subgrad 1127.216565 dualbound = 3471074.184597, lowerbound=1269449.184598, norm of subgrad 35.557994 stepsize= 1.000000 +dualbound = 3471134.272634, lowerbound=1273075.272634, norm of subgrad 1128.816758 dualbound = 3471134.272634, lowerbound=1273075.272634, norm of subgrad 34.815055 stepsize= 1.000000 +dualbound = 3471246.077310, lowerbound=1272340.077310, norm of subgrad 1128.500367 dualbound = 3471246.077310, lowerbound=1272340.077310, norm of subgrad 35.844172 stepsize= 1.000000 +dualbound = 3471264.656808, lowerbound=1274488.656808, norm of subgrad 1129.489113 dualbound = 3471264.656808, lowerbound=1274488.656808, norm of subgrad 35.715256 stepsize= 1.000000 +dualbound = 3471381.326637, lowerbound=1270455.326637, norm of subgrad 1127.674300 dualbound = 3471381.326637, lowerbound=1270455.326637, norm of subgrad 36.203174 stepsize= 1.000000 +dualbound = 3471440.093505, lowerbound=1272994.093505, norm of subgrad 1128.821108 dualbound = 3471440.093505, lowerbound=1272994.093505, norm of subgrad 36.080006 stepsize= 1.000000 +dualbound = 3471508.005375, lowerbound=1277117.005375, norm of subgrad 1130.630800 dualbound = 3471508.005375, lowerbound=1277117.005375, norm of subgrad 35.733904 stepsize= 1.000000 +dualbound = 3471630.561423, lowerbound=1274957.561423, norm of subgrad 1129.643112 dualbound = 3471630.561423, lowerbound=1274957.561423, norm of subgrad 35.476134 stepsize= 1.000000 +dualbound = 3471681.837178, lowerbound=1272468.837178, norm of subgrad 1128.595958 dualbound = 3471681.837178, lowerbound=1272468.837178, norm of subgrad 36.211542 stepsize= 1.000000 +dualbound = 3471739.853733, lowerbound=1270047.853733, norm of subgrad 1127.510024 dualbound = 3471739.853733, lowerbound=1270047.853733, norm of subgrad 35.902877 stepsize= 1.000000 +dualbound = 3471834.475340, lowerbound=1273618.475340, norm of subgrad 1129.125979 dualbound = 3471834.475340, lowerbound=1273618.475340, norm of subgrad 37.438237 stepsize= 1.000000 +dualbound = 3471912.058718, lowerbound=1273102.058718, norm of subgrad 1128.852984 dualbound = 3471912.058718, lowerbound=1273102.058718, norm of subgrad 35.841085 stepsize= 1.000000 +dualbound = 3471999.170862, lowerbound=1275894.170862, norm of subgrad 1130.090337 dualbound = 3471999.170862, lowerbound=1275894.170862, norm of subgrad 36.015443 stepsize= 1.000000 +dualbound = 3472078.041626, lowerbound=1273508.041626, norm of subgrad 1129.021719 dualbound = 3472078.041626, lowerbound=1273508.041626, norm of subgrad 35.508742 stepsize= 1.000000 +dualbound = 3472168.538565, lowerbound=1264443.538565, norm of subgrad 1124.998906 dualbound = 3472168.538565, lowerbound=1264443.538565, norm of subgrad 35.630001 stepsize= 1.000000 +dualbound = 3472226.523883, lowerbound=1271738.523883, norm of subgrad 1128.246216 dualbound = 3472226.523883, lowerbound=1271738.523883, norm of subgrad 35.482183 stepsize= 1.000000 +dualbound = 3472333.839975, lowerbound=1271643.839975, norm of subgrad 1128.194061 dualbound = 3472333.839975, lowerbound=1271643.839975, norm of subgrad 35.851305 stepsize= 1.000000 +dualbound = 3472394.840452, lowerbound=1274903.840452, norm of subgrad 1129.667580 dualbound = 3472394.840452, lowerbound=1274903.840452, norm of subgrad 36.138629 stepsize= 1.000000 +dualbound = 3472468.490829, lowerbound=1274633.490829, norm of subgrad 1129.542602 dualbound = 3472468.490829, lowerbound=1274633.490829, norm of subgrad 36.147619 stepsize= 1.000000 +dualbound = 3472556.495930, lowerbound=1271486.495930, norm of subgrad 1128.135850 dualbound = 3472556.495930, lowerbound=1271486.495930, norm of subgrad 35.944472 stepsize= 1.000000 +dualbound = 3472624.918041, lowerbound=1277927.918041, norm of subgrad 1130.986701 dualbound = 3472624.918041, lowerbound=1277927.918041, norm of subgrad 35.657006 stepsize= 1.000000 +dualbound = 3472713.168804, lowerbound=1273209.168804, norm of subgrad 1128.898653 dualbound = 3472713.168804, lowerbound=1273209.168804, norm of subgrad 35.933978 stepsize= 1.000000 +dualbound = 3472771.364731, lowerbound=1271956.364731, norm of subgrad 1128.369782 dualbound = 3472771.364731, lowerbound=1271956.364731, norm of subgrad 36.334501 stepsize= 1.000000 +dualbound = 3472862.442135, lowerbound=1273858.442135, norm of subgrad 1129.194156 dualbound = 3472862.442135, lowerbound=1273858.442135, norm of subgrad 36.222609 stepsize= 1.000000 +dualbound = 3472931.604627, lowerbound=1269833.604627, norm of subgrad 1127.413236 dualbound = 3472931.604627, lowerbound=1269833.604627, norm of subgrad 36.002257 stepsize= 1.000000 +dualbound = 3473015.129046, lowerbound=1277418.129046, norm of subgrad 1130.771475 dualbound = 3473015.129046, lowerbound=1277418.129046, norm of subgrad 36.187352 stepsize= 1.000000 +dualbound = 3473090.752847, lowerbound=1273289.752847, norm of subgrad 1128.945416 dualbound = 3473090.752847, lowerbound=1273289.752847, norm of subgrad 36.105731 stepsize= 1.000000 +dualbound = 3473183.173890, lowerbound=1278654.173890, norm of subgrad 1131.327616 dualbound = 3473183.173890, lowerbound=1278654.173890, norm of subgrad 36.611761 stepsize= 1.000000 +dualbound = 3473222.954284, lowerbound=1272342.954284, norm of subgrad 1128.539301 dualbound = 3473222.954284, lowerbound=1272342.954284, norm of subgrad 36.024719 stepsize= 1.000000 +dualbound = 3473330.913885, lowerbound=1270275.913885, norm of subgrad 1127.575680 dualbound = 3473330.913885, lowerbound=1270275.913885, norm of subgrad 35.481821 stepsize= 1.000000 +dualbound = 3473427.433826, lowerbound=1274446.433826, norm of subgrad 1129.429251 dualbound = 3473427.433826, lowerbound=1274446.433826, norm of subgrad 35.503802 stepsize= 1.000000 +dualbound = 3473469.726020, lowerbound=1269544.726020, norm of subgrad 1127.292653 dualbound = 3473469.726020, lowerbound=1269544.726020, norm of subgrad 35.864916 stepsize= 1.000000 +dualbound = 3473543.707276, lowerbound=1277653.707276, norm of subgrad 1130.880943 dualbound = 3473543.707276, lowerbound=1277653.707276, norm of subgrad 36.221282 stepsize= 1.000000 +dualbound = 3473617.026080, lowerbound=1274665.026080, norm of subgrad 1129.553020 dualbound = 3473617.026080, lowerbound=1274665.026080, norm of subgrad 36.032191 stepsize= 1.000000 +dualbound = 3473724.740159, lowerbound=1273493.740159, norm of subgrad 1129.016271 dualbound = 3473724.740159, lowerbound=1273493.740159, norm of subgrad 35.940424 stepsize= 1.000000 +dualbound = 3473787.633460, lowerbound=1275370.633460, norm of subgrad 1129.863989 dualbound = 3473787.633460, lowerbound=1275370.633460, norm of subgrad 35.845408 stepsize= 1.000000 +dualbound = 3473879.699917, lowerbound=1270007.699917, norm of subgrad 1127.497539 dualbound = 3473879.699917, lowerbound=1270007.699917, norm of subgrad 36.538561 stepsize= 1.000000 +dualbound = 3473924.882872, lowerbound=1273682.882872, norm of subgrad 1129.141658 dualbound = 3473924.882872, lowerbound=1273682.882872, norm of subgrad 36.375582 stepsize= 1.000000 +dualbound = 3474049.565909, lowerbound=1274314.565909, norm of subgrad 1129.403633 dualbound = 3474049.565909, lowerbound=1274314.565909, norm of subgrad 36.914537 stepsize= 1.000000 +dualbound = 3474093.380087, lowerbound=1272467.380087, norm of subgrad 1128.591769 dualbound = 3474093.380087, lowerbound=1272467.380087, norm of subgrad 35.997419 stepsize= 1.000000 +dualbound = 3474172.088094, lowerbound=1278414.088094, norm of subgrad 1131.226365 dualbound = 3474172.088094, lowerbound=1278414.088094, norm of subgrad 36.574691 stepsize= 1.000000 +dualbound = 3474248.163954, lowerbound=1271301.163954, norm of subgrad 1128.074982 dualbound = 3474248.163954, lowerbound=1271301.163954, norm of subgrad 36.442775 stepsize= 1.000000 +dualbound = 3474335.194232, lowerbound=1270994.194232, norm of subgrad 1127.932708 dualbound = 3474335.194232, lowerbound=1270994.194232, norm of subgrad 36.400965 stepsize= 1.000000 +dualbound = 3474418.628586, lowerbound=1271986.628586, norm of subgrad 1128.327802 dualbound = 3474418.628586, lowerbound=1271986.628586, norm of subgrad 34.934716 stepsize= 1.000000 +dualbound = 3474509.889478, lowerbound=1273683.889478, norm of subgrad 1129.088522 dualbound = 3474509.889478, lowerbound=1273683.889478, norm of subgrad 35.330736 stepsize= 1.000000 +dualbound = 3474577.152725, lowerbound=1272734.152725, norm of subgrad 1128.698433 dualbound = 3474577.152725, lowerbound=1272734.152725, norm of subgrad 35.961969 stepsize= 1.000000 +dualbound = 3474653.738633, lowerbound=1274298.738633, norm of subgrad 1129.375375 dualbound = 3474653.738633, lowerbound=1274298.738633, norm of subgrad 35.589126 stepsize= 1.000000 +dualbound = 3474720.779722, lowerbound=1270531.779722, norm of subgrad 1127.735244 dualbound = 3474720.779722, lowerbound=1270531.779722, norm of subgrad 36.359883 stepsize= 1.000000 +dualbound = 3474803.988832, lowerbound=1279479.988832, norm of subgrad 1131.685464 dualbound = 3474803.988832, lowerbound=1279479.988832, norm of subgrad 36.265812 stepsize= 1.000000 +dualbound = 3474887.585805, lowerbound=1272153.585805, norm of subgrad 1128.441219 dualbound = 3474887.585805, lowerbound=1272153.585805, norm of subgrad 36.188354 stepsize= 1.000000 +dualbound = 3474962.723084, lowerbound=1271959.723084, norm of subgrad 1128.333161 dualbound = 3474962.723084, lowerbound=1271959.723084, norm of subgrad 35.371419 stepsize= 1.000000 +dualbound = 3475063.323706, lowerbound=1270322.323706, norm of subgrad 1127.599363 dualbound = 3475063.323706, lowerbound=1270322.323706, norm of subgrad 35.476762 stepsize= 1.000000 +dualbound = 3475128.004462, lowerbound=1276487.004462, norm of subgrad 1130.367641 dualbound = 3475128.004462, lowerbound=1276487.004462, norm of subgrad 36.175693 stepsize= 1.000000 +dualbound = 3475199.420987, lowerbound=1269416.420987, norm of subgrad 1127.206911 dualbound = 3475199.420987, lowerbound=1269416.420987, norm of subgrad 35.361229 stepsize= 1.000000 +dualbound = 3475268.223325, lowerbound=1275851.223325, norm of subgrad 1130.071778 dualbound = 3475268.223325, lowerbound=1275851.223325, norm of subgrad 35.774325 stepsize= 1.000000 +dualbound = 3475355.415349, lowerbound=1274475.415349, norm of subgrad 1129.460675 dualbound = 3475355.415349, lowerbound=1274475.415349, norm of subgrad 35.960979 stepsize= 1.000000 +dualbound = 3475435.238795, lowerbound=1274556.238795, norm of subgrad 1129.486715 dualbound = 3475435.238795, lowerbound=1274556.238795, norm of subgrad 35.550295 stepsize= 1.000000 +dualbound = 3475521.597505, lowerbound=1272765.597505, norm of subgrad 1128.690656 dualbound = 3475521.597505, lowerbound=1272765.597505, norm of subgrad 35.543758 stepsize= 1.000000 +dualbound = 3475604.727501, lowerbound=1276672.727501, norm of subgrad 1130.455098 dualbound = 3475604.727501, lowerbound=1276672.727501, norm of subgrad 36.594125 stepsize= 1.000000 +dualbound = 3475645.121001, lowerbound=1272797.121001, norm of subgrad 1128.745375 dualbound = 3475645.121001, lowerbound=1272797.121001, norm of subgrad 36.185543 stepsize= 1.000000 +dualbound = 3475740.057311, lowerbound=1279031.057311, norm of subgrad 1131.475611 dualbound = 3475740.057311, lowerbound=1279031.057311, norm of subgrad 36.068495 stepsize= 1.000000 +dualbound = 3475843.118425, lowerbound=1271794.118425, norm of subgrad 1128.246479 dualbound = 3475843.118425, lowerbound=1271794.118425, norm of subgrad 35.342059 stepsize= 1.000000 +dualbound = 3475901.801033, lowerbound=1270767.801033, norm of subgrad 1127.807519 dualbound = 3475901.801033, lowerbound=1270767.801033, norm of subgrad 35.223325 stepsize= 1.000000 +dualbound = 3475976.638119, lowerbound=1273894.638119, norm of subgrad 1129.222139 dualbound = 3475976.638119, lowerbound=1273894.638119, norm of subgrad 36.370827 stepsize= 1.000000 +dualbound = 3476036.671275, lowerbound=1267255.671275, norm of subgrad 1126.233844 dualbound = 3476036.671275, lowerbound=1267255.671275, norm of subgrad 34.742383 stepsize= 1.000000 +dualbound = 3476161.821297, lowerbound=1277842.821297, norm of subgrad 1130.936701 dualbound = 3476161.821297, lowerbound=1277842.821297, norm of subgrad 36.057593 stepsize= 1.000000 +dualbound = 3476208.711809, lowerbound=1269614.711809, norm of subgrad 1127.308171 dualbound = 3476208.711809, lowerbound=1269614.711809, norm of subgrad 35.438546 stepsize= 1.000000 +dualbound = 3476285.921581, lowerbound=1278444.921581, norm of subgrad 1131.233363 dualbound = 3476285.921581, lowerbound=1278444.921581, norm of subgrad 36.348449 stepsize= 1.000000 +dualbound = 3476355.025018, lowerbound=1271553.025018, norm of subgrad 1128.191927 dualbound = 3476355.025018, lowerbound=1271553.025018, norm of subgrad 36.511689 stepsize= 1.000000 +dualbound = 3476447.306219, lowerbound=1276031.306219, norm of subgrad 1130.171361 dualbound = 3476447.306219, lowerbound=1276031.306219, norm of subgrad 36.718949 stepsize= 1.000000 +dualbound = 3476517.887199, lowerbound=1276339.887199, norm of subgrad 1130.302564 dualbound = 3476517.887199, lowerbound=1276339.887199, norm of subgrad 36.257151 stepsize= 1.000000 +dualbound = 3476614.077466, lowerbound=1271483.077466, norm of subgrad 1128.104639 dualbound = 3476614.077466, lowerbound=1271483.077466, norm of subgrad 35.116809 stepsize= 1.000000 +dualbound = 3476694.426274, lowerbound=1271161.426274, norm of subgrad 1128.000632 dualbound = 3476694.426274, lowerbound=1271161.426274, norm of subgrad 36.115770 stepsize= 1.000000 +dualbound = 3476768.219818, lowerbound=1274487.219818, norm of subgrad 1129.451734 dualbound = 3476768.219818, lowerbound=1274487.219818, norm of subgrad 35.324121 stepsize= 1.000000 +dualbound = 3476861.188651, lowerbound=1273645.188651, norm of subgrad 1129.070498 dualbound = 3476861.188651, lowerbound=1273645.188651, norm of subgrad 35.326602 stepsize= 1.000000 +dualbound = 3476938.720189, lowerbound=1281231.720189, norm of subgrad 1132.451641 dualbound = 3476938.720189, lowerbound=1281231.720189, norm of subgrad 35.951795 stepsize= 1.000000 +dualbound = 3476994.440008, lowerbound=1270495.440008, norm of subgrad 1127.688982 dualbound = 3476994.440008, lowerbound=1270495.440008, norm of subgrad 35.252231 stepsize= 1.000000 +dualbound = 3477071.282596, lowerbound=1273372.282596, norm of subgrad 1128.993925 dualbound = 3477071.282596, lowerbound=1273372.282596, norm of subgrad 36.494419 stepsize= 1.000000 +dualbound = 3477157.941943, lowerbound=1271967.941943, norm of subgrad 1128.366493 dualbound = 3477157.941943, lowerbound=1271967.941943, norm of subgrad 36.464494 stepsize= 1.000000 +dualbound = 3477219.086637, lowerbound=1275394.086637, norm of subgrad 1129.869500 dualbound = 3477219.086637, lowerbound=1275394.086637, norm of subgrad 35.667137 stepsize= 1.000000 +dualbound = 3477327.145066, lowerbound=1265916.145066, norm of subgrad 1125.622559 dualbound = 3477327.145066, lowerbound=1265916.145066, norm of subgrad 34.900694 stepsize= 1.000000 +dualbound = 3477416.995435, lowerbound=1280414.995435, norm of subgrad 1132.055650 dualbound = 3477416.995435, lowerbound=1280414.995435, norm of subgrad 34.997862 stepsize= 1.000000 +dualbound = 3477457.057666, lowerbound=1275523.057666, norm of subgrad 1129.904004 dualbound = 3477457.057666, lowerbound=1275523.057666, norm of subgrad 34.641914 stepsize= 1.000000 +dualbound = 3477553.160568, lowerbound=1279496.160568, norm of subgrad 1131.651519 dualbound = 3477553.160568, lowerbound=1279496.160568, norm of subgrad 35.144031 stepsize= 1.000000 +dualbound = 3477625.622706, lowerbound=1266711.622706, norm of subgrad 1126.019370 dualbound = 3477625.622706, lowerbound=1266711.622706, norm of subgrad 35.783546 stepsize= 1.000000 +dualbound = 3477691.617914, lowerbound=1282089.617914, norm of subgrad 1132.814026 dualbound = 3477691.617914, lowerbound=1282089.617914, norm of subgrad 35.270316 stepsize= 1.000000 +dualbound = 3477778.343922, lowerbound=1274038.343922, norm of subgrad 1129.244590 dualbound = 3477778.343922, lowerbound=1274038.343922, norm of subgrad 35.238133 stepsize= 1.000000 +dualbound = 3477854.241037, lowerbound=1274572.241037, norm of subgrad 1129.507079 dualbound = 3477854.241037, lowerbound=1274572.241037, norm of subgrad 35.915138 stepsize= 1.000000 +dualbound = 3477917.224720, lowerbound=1275039.224720, norm of subgrad 1129.736352 dualbound = 3477917.224720, lowerbound=1275039.224720, norm of subgrad 36.441510 stepsize= 1.000000 +dualbound = 3477978.426906, lowerbound=1270945.426906, norm of subgrad 1127.913750 dualbound = 3477978.426906, lowerbound=1270945.426906, norm of subgrad 36.127582 stepsize= 1.000000 +dualbound = 3478062.162433, lowerbound=1282849.162433, norm of subgrad 1133.167314 dualbound = 3478062.162433, lowerbound=1282849.162433, norm of subgrad 36.093428 stepsize= 1.000000 +dualbound = 3478151.746949, lowerbound=1272122.746949, norm of subgrad 1128.422238 dualbound = 3478151.746949, lowerbound=1272122.746949, norm of subgrad 36.105187 stepsize= 1.000000 +dualbound = 3478232.956842, lowerbound=1276473.956842, norm of subgrad 1130.349042 dualbound = 3478232.956842, lowerbound=1276473.956842, norm of subgrad 36.002915 stepsize= 1.000000 +dualbound = 3478318.142519, lowerbound=1275296.142519, norm of subgrad 1129.817747 dualbound = 3478318.142519, lowerbound=1275296.142519, norm of subgrad 35.737735 stepsize= 1.000000 +dualbound = 3478374.406805, lowerbound=1274181.406805, norm of subgrad 1129.381427 dualbound = 3478374.406805, lowerbound=1274181.406805, norm of subgrad 37.111512 stepsize= 1.000000 +dualbound = 3478437.724464, lowerbound=1273199.724464, norm of subgrad 1128.923259 dualbound = 3478437.724464, lowerbound=1273199.724464, norm of subgrad 36.487226 stepsize= 1.000000 +dualbound = 3478539.893472, lowerbound=1268000.893472, norm of subgrad 1126.591272 dualbound = 3478539.893472, lowerbound=1268000.893472, norm of subgrad 36.182441 stepsize= 1.000000 +dualbound = 3478613.143741, lowerbound=1276358.143741, norm of subgrad 1130.296485 dualbound = 3478613.143741, lowerbound=1276358.143741, norm of subgrad 35.850387 stepsize= 1.000000 +dualbound = 3478711.660472, lowerbound=1267660.660472, norm of subgrad 1126.450026 dualbound = 3478711.660472, lowerbound=1267660.660472, norm of subgrad 36.435103 stepsize= 1.000000 +dualbound = 3478789.406367, lowerbound=1276295.406367, norm of subgrad 1130.253691 dualbound = 3478789.406367, lowerbound=1276295.406367, norm of subgrad 35.436505 stepsize= 1.000000 +dualbound = 3478867.936083, lowerbound=1273759.936083, norm of subgrad 1129.122640 dualbound = 3478867.936083, lowerbound=1273759.936083, norm of subgrad 35.164324 stepsize= 1.000000 +dualbound = 3478964.902307, lowerbound=1272106.902307, norm of subgrad 1128.411229 dualbound = 3478964.902307, lowerbound=1272106.902307, norm of subgrad 36.082769 stepsize= 1.000000 +dualbound = 3479004.259103, lowerbound=1278263.259103, norm of subgrad 1131.145994 dualbound = 3479004.259103, lowerbound=1278263.259103, norm of subgrad 35.599955 stepsize= 1.000000 +dualbound = 3479099.623695, lowerbound=1271294.623695, norm of subgrad 1128.046818 dualbound = 3479099.623695, lowerbound=1271294.623695, norm of subgrad 35.921645 stepsize= 1.000000 +dualbound = 3479165.584945, lowerbound=1276497.584945, norm of subgrad 1130.378514 dualbound = 3479165.584945, lowerbound=1276497.584945, norm of subgrad 36.386278 stepsize= 1.000000 +dualbound = 3479235.825246, lowerbound=1269735.825246, norm of subgrad 1127.345034 dualbound = 3479235.825246, lowerbound=1269735.825246, norm of subgrad 35.231240 stepsize= 1.000000 +dualbound = 3479328.927020, lowerbound=1276152.927020, norm of subgrad 1130.177387 dualbound = 3479328.927020, lowerbound=1276152.927020, norm of subgrad 35.229274 stepsize= 1.000000 +dualbound = 3479407.114861, lowerbound=1267915.114861, norm of subgrad 1126.542105 dualbound = 3479407.114861, lowerbound=1267915.114861, norm of subgrad 35.499125 stepsize= 1.000000 +dualbound = 3479474.186000, lowerbound=1277777.186000, norm of subgrad 1130.909451 dualbound = 3479474.186000, lowerbound=1277777.186000, norm of subgrad 35.299733 stepsize= 1.000000 +dualbound = 3479542.530971, lowerbound=1273943.530971, norm of subgrad 1129.223419 dualbound = 3479542.530971, lowerbound=1273943.530971, norm of subgrad 35.641899 stepsize= 1.000000 +dualbound = 3479614.303756, lowerbound=1273459.303756, norm of subgrad 1129.012092 dualbound = 3479614.303756, lowerbound=1273459.303756, norm of subgrad 35.787886 stepsize= 1.000000 +dualbound = 3479695.765753, lowerbound=1272072.765753, norm of subgrad 1128.399648 dualbound = 3479695.765753, lowerbound=1272072.765753, norm of subgrad 35.978633 stepsize= 1.000000 +dualbound = 3479752.721846, lowerbound=1274969.721846, norm of subgrad 1129.667970 dualbound = 3479752.721846, lowerbound=1274969.721846, norm of subgrad 35.170387 stepsize= 1.000000 +dualbound = 3479878.709923, lowerbound=1269397.709923, norm of subgrad 1127.187078 dualbound = 3479878.709923, lowerbound=1269397.709923, norm of subgrad 35.762943 stepsize= 1.000000 +dualbound = 3479944.049592, lowerbound=1275609.049592, norm of subgrad 1129.952676 dualbound = 3479944.049592, lowerbound=1275609.049592, norm of subgrad 35.345999 stepsize= 1.000000 +dualbound = 3480020.497642, lowerbound=1272858.497642, norm of subgrad 1128.736682 dualbound = 3480020.497642, lowerbound=1272858.497642, norm of subgrad 35.559078 stepsize= 1.000000 +dualbound = 3480085.906396, lowerbound=1272591.906396, norm of subgrad 1128.634089 dualbound = 3480085.906396, lowerbound=1272591.906396, norm of subgrad 35.894411 stepsize= 1.000000 +dualbound = 3480157.070093, lowerbound=1279105.070093, norm of subgrad 1131.533062 dualbound = 3480157.070093, lowerbound=1279105.070093, norm of subgrad 36.512514 stepsize= 1.000000 +dualbound = 3480248.736628, lowerbound=1272386.736628, norm of subgrad 1128.523255 dualbound = 3480248.736628, lowerbound=1272386.736628, norm of subgrad 35.632380 stepsize= 1.000000 +dualbound = 3480335.481831, lowerbound=1277963.481831, norm of subgrad 1131.022317 dualbound = 3480335.481831, lowerbound=1277963.481831, norm of subgrad 36.534165 stepsize= 1.000000 +dualbound = 3480401.291295, lowerbound=1275261.291295, norm of subgrad 1129.808520 dualbound = 3480401.291295, lowerbound=1275261.291295, norm of subgrad 35.662438 stepsize= 1.000000 +dualbound = 3480477.821897, lowerbound=1279241.821897, norm of subgrad 1131.583767 dualbound = 3480477.821897, lowerbound=1279241.821897, norm of subgrad 36.284027 stepsize= 1.000000 +dualbound = 3480553.082608, lowerbound=1272070.082608, norm of subgrad 1128.395357 dualbound = 3480553.082608, lowerbound=1272070.082608, norm of subgrad 35.794702 stepsize= 1.000000 +dualbound = 3480643.119489, lowerbound=1271828.119489, norm of subgrad 1128.316055 dualbound = 3480643.119489, lowerbound=1271828.119489, norm of subgrad 36.865117 stepsize= 1.000000 +dualbound = 3480676.205567, lowerbound=1277616.205567, norm of subgrad 1130.859941 dualbound = 3480676.205567, lowerbound=1277616.205567, norm of subgrad 35.511774 stepsize= 1.000000 +dualbound = 3480798.195072, lowerbound=1273917.195072, norm of subgrad 1129.217957 dualbound = 3480798.195072, lowerbound=1273917.195072, norm of subgrad 36.578539 stepsize= 1.000000 +dualbound = 3480864.399232, lowerbound=1277040.399232, norm of subgrad 1130.589403 dualbound = 3480864.399232, lowerbound=1277040.399232, norm of subgrad 35.471174 stepsize= 1.000000 +dualbound = 3480962.707516, lowerbound=1276859.707516, norm of subgrad 1130.501971 dualbound = 3480962.707516, lowerbound=1276859.707516, norm of subgrad 35.683446 stepsize= 1.000000 +dualbound = 3481036.677843, lowerbound=1273828.677843, norm of subgrad 1129.191161 dualbound = 3481036.677843, lowerbound=1273828.677843, norm of subgrad 36.303861 stepsize= 1.000000 +dualbound = 3481077.587636, lowerbound=1270610.587636, norm of subgrad 1127.767967 dualbound = 3481077.587636, lowerbound=1270610.587636, norm of subgrad 35.929233 stepsize= 1.000000 +dualbound = 3481174.515194, lowerbound=1270677.515194, norm of subgrad 1127.741333 dualbound = 3481174.515194, lowerbound=1270677.515194, norm of subgrad 34.927461 stepsize= 1.000000 +dualbound = 3481276.363713, lowerbound=1275857.363713, norm of subgrad 1130.049717 dualbound = 3481276.363713, lowerbound=1275857.363713, norm of subgrad 35.452059 stepsize= 1.000000 +dualbound = 3481340.710240, lowerbound=1276018.710240, norm of subgrad 1130.129068 dualbound = 3481340.710240, lowerbound=1276018.710240, norm of subgrad 35.175937 stepsize= 1.000000 +dualbound = 3481411.116655, lowerbound=1278318.116655, norm of subgrad 1131.171568 dualbound = 3481411.116655, lowerbound=1278318.116655, norm of subgrad 36.075011 stepsize= 1.000000 +dualbound = 3481485.740685, lowerbound=1273257.740685, norm of subgrad 1128.911751 dualbound = 3481485.740685, lowerbound=1273257.740685, norm of subgrad 35.477092 stepsize= 1.000000 +dualbound = 3481577.357673, lowerbound=1271375.357673, norm of subgrad 1128.099888 dualbound = 3481577.357673, lowerbound=1271375.357673, norm of subgrad 36.409023 stepsize= 1.000000 +dualbound = 3481643.697628, lowerbound=1279743.697628, norm of subgrad 1131.814339 dualbound = 3481643.697628, lowerbound=1279743.697628, norm of subgrad 36.418950 stepsize= 1.000000 +dualbound = 3481697.005509, lowerbound=1268630.005509, norm of subgrad 1126.882871 dualbound = 3481697.005509, lowerbound=1268630.005509, norm of subgrad 35.893006 stepsize= 1.000000 +dualbound = 3481825.948055, lowerbound=1277005.948055, norm of subgrad 1130.569303 dualbound = 3481825.948055, lowerbound=1277005.948055, norm of subgrad 36.193128 stepsize= 1.000000 +dualbound = 3481871.057238, lowerbound=1271612.057238, norm of subgrad 1128.193714 dualbound = 3481871.057238, lowerbound=1271612.057238, norm of subgrad 35.413404 stepsize= 1.000000 +dualbound = 3481971.266399, lowerbound=1275628.266399, norm of subgrad 1129.954099 dualbound = 3481971.266399, lowerbound=1275628.266399, norm of subgrad 35.611924 stepsize= 1.000000 +dualbound = 3482055.840031, lowerbound=1272382.840031, norm of subgrad 1128.524187 dualbound = 3482055.840031, lowerbound=1272382.840031, norm of subgrad 35.617041 stepsize= 1.000000 +dualbound = 3482111.916570, lowerbound=1276758.916570, norm of subgrad 1130.483046 dualbound = 3482111.916570, lowerbound=1276758.916570, norm of subgrad 35.903712 stepsize= 1.000000 +dualbound = 3482187.050942, lowerbound=1275179.050942, norm of subgrad 1129.802660 dualbound = 3482187.050942, lowerbound=1275179.050942, norm of subgrad 36.744175 stepsize= 1.000000 +dualbound = 3482249.241947, lowerbound=1270117.241947, norm of subgrad 1127.523943 dualbound = 3482249.241947, lowerbound=1270117.241947, norm of subgrad 35.428675 stepsize= 1.000000 +dualbound = 3482347.791607, lowerbound=1277466.791607, norm of subgrad 1130.806699 dualbound = 3482347.791607, lowerbound=1277466.791607, norm of subgrad 36.817790 stepsize= 1.000000 +dualbound = 3482405.582550, lowerbound=1276493.582550, norm of subgrad 1130.367897 dualbound = 3482405.582550, lowerbound=1276493.582550, norm of subgrad 35.997096 stepsize= 1.000000 +dualbound = 3482504.392863, lowerbound=1279433.392863, norm of subgrad 1131.674597 dualbound = 3482504.392863, lowerbound=1279433.392863, norm of subgrad 36.780570 stepsize= 1.000000 +dualbound = 3482564.433516, lowerbound=1276201.433516, norm of subgrad 1130.232026 dualbound = 3482564.433516, lowerbound=1276201.433516, norm of subgrad 35.819557 stepsize= 1.000000 +dualbound = 3482665.701092, lowerbound=1270315.701092, norm of subgrad 1127.615493 dualbound = 3482665.701092, lowerbound=1270315.701092, norm of subgrad 36.086945 stepsize= 1.000000 +dualbound = 3482756.636314, lowerbound=1277258.636314, norm of subgrad 1130.652748 dualbound = 3482756.636314, lowerbound=1277258.636314, norm of subgrad 34.755362 stepsize= 1.000000 +dualbound = 3482810.006349, lowerbound=1269103.006349, norm of subgrad 1127.089174 dualbound = 3482810.006349, lowerbound=1269103.006349, norm of subgrad 35.782259 stepsize= 1.000000 +dualbound = 3482887.886520, lowerbound=1271378.886520, norm of subgrad 1128.092588 dualbound = 3482887.886520, lowerbound=1271378.886520, norm of subgrad 35.942735 stepsize= 1.000000 +dualbound = 3482946.124967, lowerbound=1273214.124967, norm of subgrad 1128.915907 dualbound = 3482946.124967, lowerbound=1273214.124967, norm of subgrad 35.989421 stepsize= 1.000000 +dualbound = 3483053.125970, lowerbound=1274407.125970, norm of subgrad 1129.424688 dualbound = 3483053.125970, lowerbound=1274407.125970, norm of subgrad 36.055527 stepsize= 1.000000 +dualbound = 3483126.677747, lowerbound=1270973.677747, norm of subgrad 1127.925830 dualbound = 3483126.677747, lowerbound=1270973.677747, norm of subgrad 36.284319 stepsize= 1.000000 +dualbound = 3483185.189099, lowerbound=1273869.189099, norm of subgrad 1129.221054 dualbound = 3483185.189099, lowerbound=1273869.189099, norm of subgrad 36.462465 stepsize= 1.000000 +dualbound = 3483274.415376, lowerbound=1273077.415376, norm of subgrad 1128.846941 dualbound = 3483274.415376, lowerbound=1273077.415376, norm of subgrad 36.155584 stepsize= 1.000000 +dualbound = 3483354.254122, lowerbound=1273659.254122, norm of subgrad 1129.090897 dualbound = 3483354.254122, lowerbound=1273659.254122, norm of subgrad 35.592678 stepsize= 1.000000 +dualbound = 3483423.066345, lowerbound=1273762.066345, norm of subgrad 1129.187348 dualbound = 3483423.066345, lowerbound=1273762.066345, norm of subgrad 37.024481 stepsize= 1.000000 +dualbound = 3483478.681946, lowerbound=1281008.681946, norm of subgrad 1132.351837 dualbound = 3483478.681946, lowerbound=1281008.681946, norm of subgrad 35.603590 stepsize= 1.000000 +dualbound = 3483578.269844, lowerbound=1274381.269844, norm of subgrad 1129.404387 dualbound = 3483578.269844, lowerbound=1274381.269844, norm of subgrad 35.673350 stepsize= 1.000000 +dualbound = 3483665.367373, lowerbound=1276509.367373, norm of subgrad 1130.354089 dualbound = 3483665.367373, lowerbound=1276509.367373, norm of subgrad 35.750490 stepsize= 1.000000 +dualbound = 3483745.767898, lowerbound=1272191.767898, norm of subgrad 1128.459910 dualbound = 3483745.767898, lowerbound=1272191.767898, norm of subgrad 36.199455 stepsize= 1.000000 +dualbound = 3483816.567222, lowerbound=1277631.567222, norm of subgrad 1130.851700 dualbound = 3483816.567222, lowerbound=1277631.567222, norm of subgrad 35.564017 stepsize= 1.000000 +dualbound = 3483888.601176, lowerbound=1272289.601176, norm of subgrad 1128.503257 dualbound = 3483888.601176, lowerbound=1272289.601176, norm of subgrad 36.083708 stepsize= 1.000000 +dualbound = 3483986.561949, lowerbound=1279729.561949, norm of subgrad 1131.769218 dualbound = 3483986.561949, lowerbound=1279729.561949, norm of subgrad 35.636509 stepsize= 1.000000 +dualbound = 3484050.635964, lowerbound=1273457.635964, norm of subgrad 1129.014453 dualbound = 3484050.635964, lowerbound=1273457.635964, norm of subgrad 35.778122 stepsize= 1.000000 +dualbound = 3484117.090475, lowerbound=1280251.090475, norm of subgrad 1132.044209 dualbound = 3484117.090475, lowerbound=1280251.090475, norm of subgrad 36.598559 stepsize= 1.000000 +dualbound = 3484192.788280, lowerbound=1270505.788280, norm of subgrad 1127.709088 dualbound = 3484192.788280, lowerbound=1270505.788280, norm of subgrad 36.023573 stepsize= 1.000000 +dualbound = 3484277.649311, lowerbound=1274816.649311, norm of subgrad 1129.602430 dualbound = 3484277.649311, lowerbound=1274816.649311, norm of subgrad 35.635110 stepsize= 1.000000 +dualbound = 3484355.615874, lowerbound=1269356.615874, norm of subgrad 1127.198570 dualbound = 3484355.615874, lowerbound=1269356.615874, norm of subgrad 36.027303 stepsize= 1.000000 +dualbound = 3484416.209398, lowerbound=1278333.209398, norm of subgrad 1131.163211 dualbound = 3484416.209398, lowerbound=1278333.209398, norm of subgrad 35.462565 stepsize= 1.000000 +dualbound = 3484525.950000, lowerbound=1275559.950000, norm of subgrad 1129.934932 dualbound = 3484525.950000, lowerbound=1275559.950000, norm of subgrad 36.093498 stepsize= 1.000000 +dualbound = 3484567.618994, lowerbound=1278331.618994, norm of subgrad 1131.173116 dualbound = 3484567.618994, lowerbound=1278331.618994, norm of subgrad 35.534054 stepsize= 1.000000 +dualbound = 3484662.035825, lowerbound=1270174.035825, norm of subgrad 1127.554449 dualbound = 3484662.035825, lowerbound=1270174.035825, norm of subgrad 36.047425 stepsize= 1.000000 +dualbound = 3484739.227225, lowerbound=1279560.227225, norm of subgrad 1131.707218 dualbound = 3484739.227225, lowerbound=1279560.227225, norm of subgrad 35.751803 stepsize= 1.000000 +dualbound = 3484826.766255, lowerbound=1273052.766255, norm of subgrad 1128.809446 dualbound = 3484826.766255, lowerbound=1273052.766255, norm of subgrad 35.292195 stepsize= 1.000000 +dualbound = 3484908.720508, lowerbound=1282041.720508, norm of subgrad 1132.808775 dualbound = 3484908.720508, lowerbound=1282041.720508, norm of subgrad 35.999365 stepsize= 1.000000 +dualbound = 3484960.839684, lowerbound=1269688.839684, norm of subgrad 1127.336613 dualbound = 3484960.839684, lowerbound=1269688.839684, norm of subgrad 35.371163 stepsize= 1.000000 +dualbound = 3485041.710486, lowerbound=1275100.710486, norm of subgrad 1129.767990 dualbound = 3485041.710486, lowerbound=1275100.710486, norm of subgrad 36.822151 stepsize= 1.000000 +dualbound = 3485094.483891, lowerbound=1275963.483891, norm of subgrad 1130.127641 dualbound = 3485094.483891, lowerbound=1275963.483891, norm of subgrad 35.745956 stepsize= 1.000000 +dualbound = 3485203.327841, lowerbound=1271638.327841, norm of subgrad 1128.185414 dualbound = 3485203.327841, lowerbound=1271638.327841, norm of subgrad 35.676939 stepsize= 1.000000 +dualbound = 3485291.398477, lowerbound=1276787.398477, norm of subgrad 1130.462913 dualbound = 3485291.398477, lowerbound=1276787.398477, norm of subgrad 35.313887 stepsize= 1.000000 +dualbound = 3485342.733805, lowerbound=1271904.733805, norm of subgrad 1128.310123 dualbound = 3485342.733805, lowerbound=1271904.733805, norm of subgrad 35.076136 stepsize= 1.000000 +dualbound = 3485422.959342, lowerbound=1273354.959342, norm of subgrad 1128.979610 dualbound = 3485422.959342, lowerbound=1273354.959342, norm of subgrad 36.334908 stepsize= 1.000000 +dualbound = 3485470.240891, lowerbound=1276572.240891, norm of subgrad 1130.444267 dualbound = 3485470.240891, lowerbound=1276572.240891, norm of subgrad 37.138680 stepsize= 1.000000 +dualbound = 3485557.690529, lowerbound=1277661.690529, norm of subgrad 1130.862808 dualbound = 3485557.690529, lowerbound=1277661.690529, norm of subgrad 35.727435 stepsize= 1.000000 +dualbound = 3485647.312272, lowerbound=1270280.312272, norm of subgrad 1127.641482 dualbound = 3485647.312272, lowerbound=1270280.312272, norm of subgrad 37.210506 stepsize= 1.000000 +dualbound = 3485731.966598, lowerbound=1280607.966598, norm of subgrad 1132.168259 dualbound = 3485731.966598, lowerbound=1280607.966598, norm of subgrad 35.800200 stepsize= 1.000000 +dualbound = 3485793.818841, lowerbound=1272343.818841, norm of subgrad 1128.548102 dualbound = 3485793.818841, lowerbound=1272343.818841, norm of subgrad 36.590330 stepsize= 1.000000 +dualbound = 3485875.129974, lowerbound=1278714.129974, norm of subgrad 1131.330690 dualbound = 3485875.129974, lowerbound=1278714.129974, norm of subgrad 35.725497 stepsize= 1.000000 +dualbound = 3485985.426507, lowerbound=1272976.426507, norm of subgrad 1128.796450 dualbound = 3485985.426507, lowerbound=1272976.426507, norm of subgrad 36.267017 stepsize= 1.000000 +dualbound = 3486027.819324, lowerbound=1273421.819324, norm of subgrad 1129.026492 dualbound = 3486027.819324, lowerbound=1273421.819324, norm of subgrad 36.350967 stepsize= 1.000000 +dualbound = 3486095.350514, lowerbound=1269623.350514, norm of subgrad 1127.352807 dualbound = 3486095.350514, lowerbound=1269623.350514, norm of subgrad 36.993664 stepsize= 1.000000 +dualbound = 3486174.921767, lowerbound=1279654.921767, norm of subgrad 1131.765400 dualbound = 3486174.921767, lowerbound=1279654.921767, norm of subgrad 36.298364 stepsize= 1.000000 +dualbound = 3486272.077255, lowerbound=1269903.077255, norm of subgrad 1127.453803 dualbound = 3486272.077255, lowerbound=1269903.077255, norm of subgrad 36.689992 stepsize= 1.000000 +dualbound = 3486343.429588, lowerbound=1276539.429588, norm of subgrad 1130.356329 dualbound = 3486343.429588, lowerbound=1276539.429588, norm of subgrad 35.176019 stepsize= 1.000000 +dualbound = 3486433.878134, lowerbound=1268811.878134, norm of subgrad 1126.943157 dualbound = 3486433.878134, lowerbound=1268811.878134, norm of subgrad 35.769380 stepsize= 1.000000 +dualbound = 3486504.425466, lowerbound=1278039.425466, norm of subgrad 1131.038649 dualbound = 3486504.425466, lowerbound=1278039.425466, norm of subgrad 35.770761 stepsize= 1.000000 +dualbound = 3486572.277870, lowerbound=1272933.277870, norm of subgrad 1128.786197 dualbound = 3486572.277870, lowerbound=1272933.277870, norm of subgrad 35.956257 stepsize= 1.000000 +dualbound = 3486649.070947, lowerbound=1276898.070947, norm of subgrad 1130.564050 dualbound = 3486649.070947, lowerbound=1276898.070947, norm of subgrad 36.793927 stepsize= 1.000000 +dualbound = 3486715.671043, lowerbound=1277672.671043, norm of subgrad 1130.887117 dualbound = 3486715.671043, lowerbound=1277672.671043, norm of subgrad 36.049967 stepsize= 1.000000 +dualbound = 3486814.544247, lowerbound=1275560.544247, norm of subgrad 1129.928115 dualbound = 3486814.544247, lowerbound=1275560.544247, norm of subgrad 35.719367 stepsize= 1.000000 +dualbound = 3486905.898785, lowerbound=1274122.898785, norm of subgrad 1129.273173 dualbound = 3486905.898785, lowerbound=1274122.898785, norm of subgrad 35.019345 stepsize= 1.000000 +dualbound = 3486971.698735, lowerbound=1275775.698735, norm of subgrad 1130.031725 dualbound = 3486971.698735, lowerbound=1275775.698735, norm of subgrad 35.521824 stepsize= 1.000000 +dualbound = 3487048.305513, lowerbound=1280010.305513, norm of subgrad 1131.885730 dualbound = 3487048.305513, lowerbound=1280010.305513, norm of subgrad 35.094256 stepsize= 1.000000 +dualbound = 3487124.619468, lowerbound=1272764.619468, norm of subgrad 1128.707057 dualbound = 3487124.619468, lowerbound=1272764.619468, norm of subgrad 35.934857 stepsize= 1.000000 +dualbound = 3487204.792871, lowerbound=1280692.792871, norm of subgrad 1132.212344 dualbound = 3487204.792871, lowerbound=1280692.792871, norm of subgrad 35.946814 stepsize= 1.000000 +dualbound = 3487264.738154, lowerbound=1275207.738154, norm of subgrad 1129.790573 dualbound = 3487264.738154, lowerbound=1275207.738154, norm of subgrad 35.762344 stepsize= 1.000000 +dualbound = 3487350.926141, lowerbound=1278303.926141, norm of subgrad 1131.152035 dualbound = 3487350.926141, lowerbound=1278303.926141, norm of subgrad 35.877402 stepsize= 1.000000 +dualbound = 3487445.805776, lowerbound=1273360.805776, norm of subgrad 1128.936139 dualbound = 3487445.805776, lowerbound=1273360.805776, norm of subgrad 35.083894 stepsize= 1.000000 +dualbound = 3487527.525491, lowerbound=1278300.525491, norm of subgrad 1131.145227 dualbound = 3487527.525491, lowerbound=1278300.525491, norm of subgrad 35.647156 stepsize= 1.000000 +dualbound = 3487573.512242, lowerbound=1272173.512242, norm of subgrad 1128.435870 dualbound = 3487573.512242, lowerbound=1272173.512242, norm of subgrad 35.213446 stepsize= 1.000000 +dualbound = 3487635.446297, lowerbound=1273784.446297, norm of subgrad 1129.160062 dualbound = 3487635.446297, lowerbound=1273784.446297, norm of subgrad 35.776166 stepsize= 1.000000 +dualbound = 3487729.056228, lowerbound=1276207.056228, norm of subgrad 1130.228763 dualbound = 3487729.056228, lowerbound=1276207.056228, norm of subgrad 36.105539 stepsize= 1.000000 +dualbound = 3487806.199722, lowerbound=1278174.199722, norm of subgrad 1131.084966 dualbound = 3487806.199722, lowerbound=1278174.199722, norm of subgrad 35.442115 stepsize= 1.000000 +dualbound = 3487895.321077, lowerbound=1270263.321077, norm of subgrad 1127.585172 dualbound = 3487895.321077, lowerbound=1270263.321077, norm of subgrad 35.694837 stepsize= 1.000000 +dualbound = 3487949.326826, lowerbound=1278272.326826, norm of subgrad 1131.139835 dualbound = 3487949.326826, lowerbound=1278272.326826, norm of subgrad 35.482471 stepsize= 1.000000 +dualbound = 3488031.275798, lowerbound=1269885.275798, norm of subgrad 1127.443691 dualbound = 3488031.275798, lowerbound=1269885.275798, norm of subgrad 36.413582 stepsize= 1.000000 +dualbound = 3488110.579003, lowerbound=1281802.579003, norm of subgrad 1132.683353 dualbound = 3488110.579003, lowerbound=1281802.579003, norm of subgrad 35.331335 stepsize= 1.000000 +dualbound = 3488205.345589, lowerbound=1274088.345589, norm of subgrad 1129.276027 dualbound = 3488205.345589, lowerbound=1274088.345589, norm of subgrad 35.647813 stepsize= 1.000000 +dualbound = 3488274.047889, lowerbound=1280525.047889, norm of subgrad 1132.098957 dualbound = 3488274.047889, lowerbound=1280525.047889, norm of subgrad 34.521041 stepsize= 1.000000 +dualbound = 3488358.409120, lowerbound=1276858.409120, norm of subgrad 1130.518646 dualbound = 3488358.409120, lowerbound=1276858.409120, norm of subgrad 36.032780 stepsize= 1.000000 +dualbound = 3488415.250617, lowerbound=1275092.250617, norm of subgrad 1129.707595 dualbound = 3488415.250617, lowerbound=1275092.250617, norm of subgrad 34.696419 stepsize= 1.000000 +dualbound = 3488501.864821, lowerbound=1273168.864821, norm of subgrad 1128.866186 dualbound = 3488501.864821, lowerbound=1273168.864821, norm of subgrad 35.448755 stepsize= 1.000000 +dualbound = 3488563.024952, lowerbound=1273812.024952, norm of subgrad 1129.204598 dualbound = 3488563.024952, lowerbound=1273812.024952, norm of subgrad 36.771730 stepsize= 1.000000 +dualbound = 3488600.157542, lowerbound=1278180.157542, norm of subgrad 1131.158768 dualbound = 3488600.157542, lowerbound=1278180.157542, norm of subgrad 37.109737 stepsize= 1.000000 +dualbound = 3488690.591220, lowerbound=1279609.591220, norm of subgrad 1131.775416 dualbound = 3488690.591220, lowerbound=1279609.591220, norm of subgrad 37.368886 stepsize= 1.000000 +dualbound = 3488746.957350, lowerbound=1272968.957350, norm of subgrad 1128.822819 dualbound = 3488746.957350, lowerbound=1272968.957350, norm of subgrad 36.446757 stepsize= 1.000000 +dualbound = 3488856.394297, lowerbound=1277792.394297, norm of subgrad 1130.959944 dualbound = 3488856.394297, lowerbound=1277792.394297, norm of subgrad 37.248315 stepsize= 1.000000 +dualbound = 3488924.667486, lowerbound=1275559.667486, norm of subgrad 1129.952949 dualbound = 3488924.667486, lowerbound=1275559.667486, norm of subgrad 36.087022 stepsize= 1.000000 +dualbound = 3488998.601990, lowerbound=1274106.601990, norm of subgrad 1129.283225 dualbound = 3488998.601990, lowerbound=1274106.601990, norm of subgrad 35.326116 stepsize= 1.000000 +dualbound = 3489077.181225, lowerbound=1274129.181225, norm of subgrad 1129.317573 dualbound = 3489077.181225, lowerbound=1274129.181225, norm of subgrad 36.160465 stepsize= 1.000000 +dualbound = 3489133.898718, lowerbound=1274310.898718, norm of subgrad 1129.408207 dualbound = 3489133.898718, lowerbound=1274310.898718, norm of subgrad 36.176201 stepsize= 1.000000 +dualbound = 3489229.377486, lowerbound=1276934.377486, norm of subgrad 1130.557994 dualbound = 3489229.377486, lowerbound=1276934.377486, norm of subgrad 36.365901 stepsize= 1.000000 +dualbound = 3489309.587154, lowerbound=1279031.587154, norm of subgrad 1131.470984 dualbound = 3489309.587154, lowerbound=1279031.587154, norm of subgrad 35.710078 stepsize= 1.000000 +dualbound = 3489387.505937, lowerbound=1280583.505937, norm of subgrad 1132.156573 dualbound = 3489387.505937, lowerbound=1280583.505937, norm of subgrad 35.677987 stepsize= 1.000000 +dualbound = 3489483.794601, lowerbound=1274516.794601, norm of subgrad 1129.471024 dualbound = 3489483.794601, lowerbound=1274516.794601, norm of subgrad 35.836973 stepsize= 1.000000 +dualbound = 3489537.047252, lowerbound=1275018.047252, norm of subgrad 1129.703964 dualbound = 3489537.047252, lowerbound=1275018.047252, norm of subgrad 35.584444 stepsize= 1.000000 +dualbound = 3489607.371760, lowerbound=1272384.371760, norm of subgrad 1128.557651 dualbound = 3489607.371760, lowerbound=1272384.371760, norm of subgrad 36.446186 stepsize= 1.000000 +dualbound = 3489674.267625, lowerbound=1275830.267625, norm of subgrad 1130.070470 dualbound = 3489674.267625, lowerbound=1275830.267625, norm of subgrad 35.998554 stepsize= 1.000000 +dualbound = 3489762.633369, lowerbound=1278394.633369, norm of subgrad 1131.214672 dualbound = 3489762.633369, lowerbound=1278394.633369, norm of subgrad 36.611006 stepsize= 1.000000 +dualbound = 3489835.738151, lowerbound=1273635.738151, norm of subgrad 1129.103068 dualbound = 3489835.738151, lowerbound=1273635.738151, norm of subgrad 36.209181 stepsize= 1.000000 +dualbound = 3489904.904758, lowerbound=1277889.904758, norm of subgrad 1130.987579 dualbound = 3489904.904758, lowerbound=1277889.904758, norm of subgrad 36.223840 stepsize= 1.000000 +dualbound = 3489980.839522, lowerbound=1273361.839522, norm of subgrad 1128.985757 dualbound = 3489980.839522, lowerbound=1273361.839522, norm of subgrad 36.372170 stepsize= 1.000000 +dualbound = 3490062.467857, lowerbound=1276960.467857, norm of subgrad 1130.570417 dualbound = 3490062.467857, lowerbound=1276960.467857, norm of subgrad 36.202601 stepsize= 1.000000 +dualbound = 3490143.257725, lowerbound=1274232.257725, norm of subgrad 1129.351698 dualbound = 3490143.257725, lowerbound=1274232.257725, norm of subgrad 35.830014 stepsize= 1.000000 +dualbound = 3490219.046096, lowerbound=1271398.046096, norm of subgrad 1128.103296 dualbound = 3490219.046096, lowerbound=1271398.046096, norm of subgrad 35.983168 stepsize= 1.000000 +dualbound = 3490291.907769, lowerbound=1280281.907769, norm of subgrad 1132.036619 dualbound = 3490291.907769, lowerbound=1280281.907769, norm of subgrad 36.025847 stepsize= 1.000000 +dualbound = 3490354.049191, lowerbound=1269918.049191, norm of subgrad 1127.418312 dualbound = 3490354.049191, lowerbound=1269918.049191, norm of subgrad 34.873219 stepsize= 1.000000 +dualbound = 3490479.743449, lowerbound=1277596.743449, norm of subgrad 1130.819501 dualbound = 3490479.743449, lowerbound=1277596.743449, norm of subgrad 35.800758 stepsize= 1.000000 +dualbound = 3490516.499000, lowerbound=1276169.499000, norm of subgrad 1130.218341 dualbound = 3490516.499000, lowerbound=1276169.499000, norm of subgrad 35.507120 stepsize= 1.000000 +dualbound = 3490616.566790, lowerbound=1275795.566790, norm of subgrad 1130.017950 dualbound = 3490616.566790, lowerbound=1275795.566790, norm of subgrad 35.285518 stepsize= 1.000000 +dualbound = 3490688.510388, lowerbound=1279810.510388, norm of subgrad 1131.804095 dualbound = 3490688.510388, lowerbound=1279810.510388, norm of subgrad 35.241220 stepsize= 1.000000 +dualbound = 3490769.734882, lowerbound=1277594.734882, norm of subgrad 1130.846910 dualbound = 3490769.734882, lowerbound=1277594.734882, norm of subgrad 36.072489 stepsize= 1.000000 +dualbound = 3490810.198935, lowerbound=1275627.198935, norm of subgrad 1129.999203 dualbound = 3490810.198935, lowerbound=1275627.198935, norm of subgrad 36.214142 stepsize= 1.000000 +dualbound = 3490902.706260, lowerbound=1275163.706260, norm of subgrad 1129.809146 dualbound = 3490902.706260, lowerbound=1275163.706260, norm of subgrad 37.383249 stepsize= 1.000000 +dualbound = 3490973.992018, lowerbound=1274328.992018, norm of subgrad 1129.401165 dualbound = 3490973.992018, lowerbound=1274328.992018, norm of subgrad 35.906626 stepsize= 1.000000 +dualbound = 3491052.095251, lowerbound=1279011.095251, norm of subgrad 1131.504351 dualbound = 3491052.095251, lowerbound=1279011.095251, norm of subgrad 37.001395 stepsize= 1.000000 +dualbound = 3491126.123475, lowerbound=1274393.123475, norm of subgrad 1129.437525 dualbound = 3491126.123475, lowerbound=1274393.123475, norm of subgrad 36.194312 stepsize= 1.000000 +dualbound = 3491209.449758, lowerbound=1278446.449758, norm of subgrad 1131.219895 dualbound = 3491209.449758, lowerbound=1278446.449758, norm of subgrad 35.990642 stepsize= 1.000000 +dualbound = 3491283.133886, lowerbound=1281777.133886, norm of subgrad 1132.687130 dualbound = 3491283.133886, lowerbound=1281777.133886, norm of subgrad 35.730717 stepsize= 1.000000 +dualbound = 3491351.900297, lowerbound=1277650.900297, norm of subgrad 1130.905345 dualbound = 3491351.900297, lowerbound=1277650.900297, norm of subgrad 36.942745 stepsize= 1.000000 +dualbound = 3491419.970843, lowerbound=1272727.970843, norm of subgrad 1128.699238 dualbound = 3491419.970843, lowerbound=1272727.970843, norm of subgrad 36.084215 stepsize= 1.000000 +dualbound = 3491491.709097, lowerbound=1280338.709097, norm of subgrad 1132.087324 dualbound = 3491491.709097, lowerbound=1280338.709097, norm of subgrad 36.806769 stepsize= 1.000000 +dualbound = 3491602.787607, lowerbound=1275481.787607, norm of subgrad 1129.901229 dualbound = 3491602.787607, lowerbound=1275481.787607, norm of subgrad 36.139708 stepsize= 1.000000 +dualbound = 3491658.946894, lowerbound=1275974.946894, norm of subgrad 1130.118997 dualbound = 3491658.946894, lowerbound=1275974.946894, norm of subgrad 35.357592 stepsize= 1.000000 +dualbound = 3491746.353798, lowerbound=1276157.353798, norm of subgrad 1130.234203 dualbound = 3491746.353798, lowerbound=1276157.353798, norm of subgrad 36.870136 stepsize= 1.000000 +dualbound = 3491797.256540, lowerbound=1276310.256540, norm of subgrad 1130.282379 dualbound = 3491797.256540, lowerbound=1276310.256540, norm of subgrad 35.761750 stepsize= 1.000000 +dualbound = 3491891.358887, lowerbound=1281085.358887, norm of subgrad 1132.409537 dualbound = 3491891.358887, lowerbound=1281085.358887, norm of subgrad 36.879565 stepsize= 1.000000 +dualbound = 3491945.691993, lowerbound=1282437.691993, norm of subgrad 1133.003395 dualbound = 3491945.691993, lowerbound=1282437.691993, norm of subgrad 36.239938 stepsize= 1.000000 +dualbound = 3492029.499455, lowerbound=1270651.499455, norm of subgrad 1127.752411 dualbound = 3492029.499455, lowerbound=1270651.499455, norm of subgrad 35.465581 stepsize= 1.000000 +dualbound = 3492105.929105, lowerbound=1272469.929105, norm of subgrad 1128.577835 dualbound = 3492105.929105, lowerbound=1272469.929105, norm of subgrad 35.978183 stepsize= 1.000000 +dualbound = 3492180.380793, lowerbound=1274701.380793, norm of subgrad 1129.540783 dualbound = 3492180.380793, lowerbound=1274701.380793, norm of subgrad 35.148993 stepsize= 1.000000 +dualbound = 3492276.870389, lowerbound=1278135.870389, norm of subgrad 1131.061833 dualbound = 3492276.870389, lowerbound=1278135.870389, norm of subgrad 35.517455 stepsize= 1.000000 +dualbound = 3492359.747374, lowerbound=1274866.747374, norm of subgrad 1129.606457 dualbound = 3492359.747374, lowerbound=1274866.747374, norm of subgrad 35.026804 stepsize= 1.000000 +dualbound = 3492419.717947, lowerbound=1281619.717947, norm of subgrad 1132.618964 dualbound = 3492419.717947, lowerbound=1281619.717947, norm of subgrad 35.580480 stepsize= 1.000000 +dualbound = 3492467.734091, lowerbound=1273443.734091, norm of subgrad 1129.017597 dualbound = 3492467.734091, lowerbound=1273443.734091, norm of subgrad 35.847122 stepsize= 1.000000 +dualbound = 3492554.306596, lowerbound=1274841.306596, norm of subgrad 1129.647426 dualbound = 3492554.306596, lowerbound=1274841.306596, norm of subgrad 36.722915 stepsize= 1.000000 +dualbound = 3492613.542748, lowerbound=1279236.542748, norm of subgrad 1131.563318 dualbound = 3492613.542748, lowerbound=1279236.542748, norm of subgrad 35.471625 stepsize= 1.000000 +dualbound = 3492706.456049, lowerbound=1274090.456049, norm of subgrad 1129.282718 dualbound = 3492706.456049, lowerbound=1274090.456049, norm of subgrad 35.803817 stepsize= 1.000000 +dualbound = 3492792.841619, lowerbound=1280623.841619, norm of subgrad 1132.178803 dualbound = 3492792.841619, lowerbound=1280623.841619, norm of subgrad 35.935854 stepsize= 1.000000 +dualbound = 3492848.750207, lowerbound=1268971.750207, norm of subgrad 1127.003882 dualbound = 3492848.750207, lowerbound=1268971.750207, norm of subgrad 34.955809 stepsize= 1.000000 +dualbound = 3492964.978253, lowerbound=1281776.978253, norm of subgrad 1132.711339 dualbound = 3492964.978253, lowerbound=1281776.978253, norm of subgrad 37.070582 stepsize= 1.000000 +dualbound = 3493000.359053, lowerbound=1276427.359053, norm of subgrad 1130.326660 dualbound = 3493000.359053, lowerbound=1276427.359053, norm of subgrad 35.304119 stepsize= 1.000000 +dualbound = 3493089.600046, lowerbound=1270165.600046, norm of subgrad 1127.553812 dualbound = 3493089.600046, lowerbound=1270165.600046, norm of subgrad 36.072718 stepsize= 1.000000 +dualbound = 3493144.431931, lowerbound=1276822.431931, norm of subgrad 1130.526175 dualbound = 3493144.431931, lowerbound=1276822.431931, norm of subgrad 36.357006 stepsize= 1.000000 +dualbound = 3493215.847001, lowerbound=1275385.847001, norm of subgrad 1129.913646 dualbound = 3493215.847001, lowerbound=1275385.847001, norm of subgrad 37.288270 stepsize= 1.000000 +dualbound = 3493281.852562, lowerbound=1273153.852562, norm of subgrad 1128.881682 dualbound = 3493281.852562, lowerbound=1273153.852562, norm of subgrad 35.860920 stepsize= 1.000000 +dualbound = 3493399.571506, lowerbound=1276332.571506, norm of subgrad 1130.277652 dualbound = 3493399.571506, lowerbound=1276332.571506, norm of subgrad 36.231463 stepsize= 1.000000 +dualbound = 3493464.569587, lowerbound=1279142.569587, norm of subgrad 1131.504118 dualbound = 3493464.569587, lowerbound=1279142.569587, norm of subgrad 34.985684 stepsize= 1.000000 +dualbound = 3493570.115190, lowerbound=1278334.115190, norm of subgrad 1131.134437 dualbound = 3493570.115190, lowerbound=1278334.115190, norm of subgrad 35.164550 stepsize= 1.000000 +dualbound = 3493621.148082, lowerbound=1280278.148082, norm of subgrad 1132.055718 dualbound = 3493621.148082, lowerbound=1280278.148082, norm of subgrad 36.373519 stepsize= 1.000000 +dualbound = 3493652.853331, lowerbound=1275613.853331, norm of subgrad 1129.981351 dualbound = 3493652.853331, lowerbound=1275613.853331, norm of subgrad 35.717016 stepsize= 1.000000 +dualbound = 3493763.788279, lowerbound=1279656.788279, norm of subgrad 1131.760924 dualbound = 3493763.788279, lowerbound=1279656.788279, norm of subgrad 36.564121 stepsize= 1.000000 +dualbound = 3493813.684435, lowerbound=1275754.684435, norm of subgrad 1130.049417 dualbound = 3493813.684435, lowerbound=1275754.684435, norm of subgrad 36.151019 stepsize= 1.000000 +dualbound = 3493893.236726, lowerbound=1277075.236726, norm of subgrad 1130.639747 dualbound = 3493893.236726, lowerbound=1277075.236726, norm of subgrad 36.749861 stepsize= 1.000000 +dualbound = 3493970.721378, lowerbound=1277920.721378, norm of subgrad 1130.981751 dualbound = 3493970.721378, lowerbound=1277920.721378, norm of subgrad 35.727925 stepsize= 1.000000 +dualbound = 3494075.179336, lowerbound=1277054.179336, norm of subgrad 1130.595055 dualbound = 3494075.179336, lowerbound=1277054.179336, norm of subgrad 35.992471 stepsize= 1.000000 +dualbound = 3494124.413636, lowerbound=1275554.413636, norm of subgrad 1129.932039 dualbound = 3494124.413636, lowerbound=1275554.413636, norm of subgrad 35.231155 stepsize= 1.000000 +dualbound = 3494217.993770, lowerbound=1276888.993770, norm of subgrad 1130.505636 dualbound = 3494217.993770, lowerbound=1276888.993770, norm of subgrad 35.321100 stepsize= 1.000000 +dualbound = 3494290.678584, lowerbound=1279389.678584, norm of subgrad 1131.648213 dualbound = 3494290.678584, lowerbound=1279389.678584, norm of subgrad 36.203381 stepsize= 1.000000 +dualbound = 3494373.330643, lowerbound=1275039.330643, norm of subgrad 1129.681075 dualbound = 3494373.330643, lowerbound=1275039.330643, norm of subgrad 34.966442 stepsize= 1.000000 +dualbound = 3494455.355802, lowerbound=1278375.355802, norm of subgrad 1131.188913 dualbound = 3494455.355802, lowerbound=1278375.355802, norm of subgrad 35.986458 stepsize= 1.000000 +dualbound = 3494534.846980, lowerbound=1272319.846980, norm of subgrad 1128.495834 dualbound = 3494534.846980, lowerbound=1272319.846980, norm of subgrad 35.531552 stepsize= 1.000000 +dualbound = 3494587.734631, lowerbound=1283845.734631, norm of subgrad 1133.632540 dualbound = 3494587.734631, lowerbound=1283845.734631, norm of subgrad 36.467625 stepsize= 1.000000 +dualbound = 3494646.467529, lowerbound=1271881.467529, norm of subgrad 1128.332162 dualbound = 3494646.467529, lowerbound=1271881.467529, norm of subgrad 36.204045 stepsize= 1.000000 +dualbound = 3494744.215860, lowerbound=1278072.215860, norm of subgrad 1131.074364 dualbound = 3494744.215860, lowerbound=1278072.215860, norm of subgrad 36.806906 stepsize= 1.000000 +dualbound = 3494803.062593, lowerbound=1272411.062593, norm of subgrad 1128.566375 dualbound = 3494803.062593, lowerbound=1272411.062593, norm of subgrad 36.191805 stepsize= 1.000000 +dualbound = 3494882.252787, lowerbound=1277711.252787, norm of subgrad 1130.920533 dualbound = 3494882.252787, lowerbound=1277711.252787, norm of subgrad 36.731324 stepsize= 1.000000 +dualbound = 3494960.724533, lowerbound=1271880.724533, norm of subgrad 1128.316766 dualbound = 3494960.724533, lowerbound=1271880.724533, norm of subgrad 36.006551 stepsize= 1.000000 +dualbound = 3495039.420963, lowerbound=1281171.420963, norm of subgrad 1132.436939 dualbound = 3495039.420963, lowerbound=1281171.420963, norm of subgrad 36.341387 stepsize= 1.000000 +dualbound = 3495115.175914, lowerbound=1277789.175914, norm of subgrad 1130.929342 dualbound = 3495115.175914, lowerbound=1277789.175914, norm of subgrad 35.885303 stepsize= 1.000000 +dualbound = 3495185.929464, lowerbound=1278184.929464, norm of subgrad 1131.121094 dualbound = 3495185.929464, lowerbound=1278184.929464, norm of subgrad 36.342173 stepsize= 1.000000 +dualbound = 3495266.241073, lowerbound=1276497.241073, norm of subgrad 1130.355803 dualbound = 3495266.241073, lowerbound=1276497.241073, norm of subgrad 35.879125 stepsize= 1.000000 +dualbound = 3495334.920715, lowerbound=1276141.920715, norm of subgrad 1130.231357 dualbound = 3495334.920715, lowerbound=1276141.920715, norm of subgrad 36.737986 stepsize= 1.000000 +dualbound = 3495400.786587, lowerbound=1270858.786587, norm of subgrad 1127.842980 dualbound = 3495400.786587, lowerbound=1270858.786587, norm of subgrad 35.169104 stepsize= 1.000000 +dualbound = 3495515.288637, lowerbound=1283301.288637, norm of subgrad 1133.380469 dualbound = 3495515.288637, lowerbound=1283301.288637, norm of subgrad 36.939167 stepsize= 1.000000 +dualbound = 3495562.634199, lowerbound=1273655.634199, norm of subgrad 1129.090180 dualbound = 3495562.634199, lowerbound=1273655.634199, norm of subgrad 35.161706 stepsize= 1.000000 +dualbound = 3495658.848744, lowerbound=1274585.848744, norm of subgrad 1129.502921 dualbound = 3495658.848744, lowerbound=1274585.848744, norm of subgrad 35.877772 stepsize= 1.000000 +dualbound = 3495739.658177, lowerbound=1273119.658177, norm of subgrad 1128.858121 dualbound = 3495739.658177, lowerbound=1273119.658177, norm of subgrad 35.802366 stepsize= 1.000000 +dualbound = 3495796.866362, lowerbound=1281128.866362, norm of subgrad 1132.411527 dualbound = 3495796.866362, lowerbound=1281128.866362, norm of subgrad 35.835851 stepsize= 1.000000 +dualbound = 3495879.802698, lowerbound=1279614.802698, norm of subgrad 1131.760930 dualbound = 3495879.802698, lowerbound=1279614.802698, norm of subgrad 36.755086 stepsize= 1.000000 +dualbound = 3495937.751862, lowerbound=1278033.751862, norm of subgrad 1131.051171 dualbound = 3495937.751862, lowerbound=1278033.751862, norm of subgrad 36.068673 stepsize= 1.000000 +dualbound = 3496007.506519, lowerbound=1275423.506519, norm of subgrad 1129.904202 dualbound = 3496007.506519, lowerbound=1275423.506519, norm of subgrad 36.465801 stepsize= 1.000000 +dualbound = 3496101.206759, lowerbound=1279707.206759, norm of subgrad 1131.786732 dualbound = 3496101.206759, lowerbound=1279707.206759, norm of subgrad 36.437621 stepsize= 1.000000 +dualbound = 3496198.911445, lowerbound=1277325.911445, norm of subgrad 1130.705493 dualbound = 3496198.911445, lowerbound=1277325.911445, norm of subgrad 35.590795 stepsize= 1.000000 +dualbound = 3496256.066035, lowerbound=1283240.066035, norm of subgrad 1133.351254 dualbound = 3496256.066035, lowerbound=1283240.066035, norm of subgrad 36.085379 stepsize= 1.000000 +dualbound = 3496297.018265, lowerbound=1277665.018265, norm of subgrad 1130.881965 dualbound = 3496297.018265, lowerbound=1277665.018265, norm of subgrad 35.636389 stepsize= 1.000000 +dualbound = 3496406.380311, lowerbound=1279793.380311, norm of subgrad 1131.806689 dualbound = 3496406.380311, lowerbound=1279793.380311, norm of subgrad 36.088254 stepsize= 1.000000 +dualbound = 3496460.351114, lowerbound=1274572.351114, norm of subgrad 1129.493847 dualbound = 3496460.351114, lowerbound=1274572.351114, norm of subgrad 35.184809 stepsize= 1.000000 +dualbound = 3496551.675545, lowerbound=1276047.675545, norm of subgrad 1130.133034 dualbound = 3496551.675545, lowerbound=1276047.675545, norm of subgrad 35.274983 stepsize= 1.000000 +dualbound = 3496645.803457, lowerbound=1278217.803457, norm of subgrad 1131.085233 dualbound = 3496645.803457, lowerbound=1278217.803457, norm of subgrad 35.073179 stepsize= 1.000000 +dualbound = 3496709.698901, lowerbound=1280823.698901, norm of subgrad 1132.241449 dualbound = 3496709.698901, lowerbound=1280823.698901, norm of subgrad 34.797923 stepsize= 1.000000 +dualbound = 3496773.011738, lowerbound=1274728.011738, norm of subgrad 1129.592410 dualbound = 3496773.011738, lowerbound=1274728.011738, norm of subgrad 36.253453 stepsize= 1.000000 +dualbound = 3496803.457915, lowerbound=1275532.457915, norm of subgrad 1129.928519 dualbound = 3496803.457915, lowerbound=1275532.457915, norm of subgrad 35.163137 stepsize= 1.000000 +dualbound = 3496928.970271, lowerbound=1280025.970271, norm of subgrad 1131.901043 dualbound = 3496928.970271, lowerbound=1280025.970271, norm of subgrad 36.048750 stepsize= 1.000000 +dualbound = 3496990.896154, lowerbound=1273797.896154, norm of subgrad 1129.182844 dualbound = 3496990.896154, lowerbound=1273797.896154, norm of subgrad 36.303249 stepsize= 1.000000 +dualbound = 3497053.718802, lowerbound=1275423.718802, norm of subgrad 1129.919342 dualbound = 3497053.718802, lowerbound=1275423.718802, norm of subgrad 36.835074 stepsize= 1.000000 +dualbound = 3497115.584595, lowerbound=1275286.584595, norm of subgrad 1129.834760 dualbound = 3497115.584595, lowerbound=1275286.584595, norm of subgrad 36.081377 stepsize= 1.000000 +dualbound = 3497210.493201, lowerbound=1275975.493201, norm of subgrad 1130.134281 dualbound = 3497210.493201, lowerbound=1275975.493201, norm of subgrad 36.371811 stepsize= 1.000000 +dualbound = 3497294.078573, lowerbound=1277226.078573, norm of subgrad 1130.664883 dualbound = 3497294.078573, lowerbound=1277226.078573, norm of subgrad 35.504723 stepsize= 1.000000 +dualbound = 3497365.250899, lowerbound=1279862.250899, norm of subgrad 1131.838439 dualbound = 3497365.250899, lowerbound=1279862.250899, norm of subgrad 35.597364 stepsize= 1.000000 +dualbound = 3497453.823658, lowerbound=1279131.823658, norm of subgrad 1131.519697 dualbound = 3497453.823658, lowerbound=1279131.823658, norm of subgrad 35.966273 stepsize= 1.000000 +dualbound = 3497522.753702, lowerbound=1279335.753702, norm of subgrad 1131.607155 dualbound = 3497522.753702, lowerbound=1279335.753702, norm of subgrad 35.608005 stepsize= 1.000000 +dualbound = 3497593.805803, lowerbound=1276840.805803, norm of subgrad 1130.499361 dualbound = 3497593.805803, lowerbound=1276840.805803, norm of subgrad 35.483124 stepsize= 1.000000 +dualbound = 3497663.791455, lowerbound=1273667.791455, norm of subgrad 1129.076079 dualbound = 3497663.791455, lowerbound=1273667.791455, norm of subgrad 34.856644 stepsize= 1.000000 +dualbound = 3497755.443124, lowerbound=1277825.443124, norm of subgrad 1130.928576 dualbound = 3497755.443124, lowerbound=1277825.443124, norm of subgrad 35.575999 stepsize= 1.000000 +dualbound = 3497816.326139, lowerbound=1277280.326139, norm of subgrad 1130.697274 dualbound = 3497816.326139, lowerbound=1277280.326139, norm of subgrad 35.452546 stepsize= 1.000000 +dualbound = 3497860.252553, lowerbound=1281135.252553, norm of subgrad 1132.419204 dualbound = 3497860.252553, lowerbound=1281135.252553, norm of subgrad 35.804000 stepsize= 1.000000 +dualbound = 3497961.913163, lowerbound=1275799.913163, norm of subgrad 1130.038456 dualbound = 3497961.913163, lowerbound=1275799.913163, norm of subgrad 35.897919 stepsize= 1.000000 +dualbound = 3498029.547973, lowerbound=1277018.547973, norm of subgrad 1130.592123 dualbound = 3498029.547973, lowerbound=1277018.547973, norm of subgrad 35.883629 stepsize= 1.000000 +dualbound = 3498107.645973, lowerbound=1273852.645973, norm of subgrad 1129.204873 dualbound = 3498107.645973, lowerbound=1273852.645973, norm of subgrad 36.456796 stepsize= 1.000000 +dualbound = 3498178.762351, lowerbound=1277599.762351, norm of subgrad 1130.869472 dualbound = 3498178.762351, lowerbound=1277599.762351, norm of subgrad 36.566602 stepsize= 1.000000 +dualbound = 3498231.694498, lowerbound=1275512.694498, norm of subgrad 1129.948536 dualbound = 3498231.694498, lowerbound=1275512.694498, norm of subgrad 36.385878 stepsize= 1.000000 +dualbound = 3498334.228505, lowerbound=1282746.228505, norm of subgrad 1133.130279 dualbound = 3498334.228505, lowerbound=1282746.228505, norm of subgrad 36.613304 stepsize= 1.000000 +dualbound = 3498402.072843, lowerbound=1276016.072843, norm of subgrad 1130.147368 dualbound = 3498402.072843, lowerbound=1276016.072843, norm of subgrad 35.844725 stepsize= 1.000000 +dualbound = 3498502.450989, lowerbound=1286155.450989, norm of subgrad 1134.623925 dualbound = 3498502.450989, lowerbound=1286155.450989, norm of subgrad 36.281926 stepsize= 1.000000 +dualbound = 3498551.717768, lowerbound=1274657.717768, norm of subgrad 1129.597591 dualbound = 3498551.717768, lowerbound=1274657.717768, norm of subgrad 37.178849 stepsize= 1.000000 +dualbound = 3498610.631544, lowerbound=1275892.631544, norm of subgrad 1130.136554 dualbound = 3498610.631544, lowerbound=1275892.631544, norm of subgrad 37.079830 stepsize= 1.000000 +dualbound = 3498695.172255, lowerbound=1278875.172255, norm of subgrad 1131.445170 dualbound = 3498695.172255, lowerbound=1278875.172255, norm of subgrad 37.115236 stepsize= 1.000000 +dualbound = 3498789.023765, lowerbound=1276287.023765, norm of subgrad 1130.280507 dualbound = 3498789.023765, lowerbound=1276287.023765, norm of subgrad 36.617639 stepsize= 1.000000 +dualbound = 3498850.344669, lowerbound=1276749.344669, norm of subgrad 1130.488542 dualbound = 3498850.344669, lowerbound=1276749.344669, norm of subgrad 36.281137 stepsize= 1.000000 +dualbound = 3498935.170659, lowerbound=1280694.170659, norm of subgrad 1132.198380 dualbound = 3498935.170659, lowerbound=1280694.170659, norm of subgrad 35.550330 stepsize= 1.000000 +dualbound = 3499016.412986, lowerbound=1276396.412986, norm of subgrad 1130.310317 dualbound = 3499016.412986, lowerbound=1276396.412986, norm of subgrad 35.864221 stepsize= 1.000000 +dualbound = 3499094.918897, lowerbound=1276478.918897, norm of subgrad 1130.344159 dualbound = 3499094.918897, lowerbound=1276478.918897, norm of subgrad 35.742215 stepsize= 1.000000 +dualbound = 3499138.719043, lowerbound=1277690.719043, norm of subgrad 1130.867242 dualbound = 3499138.719043, lowerbound=1277690.719043, norm of subgrad 34.839635 stepsize= 1.000000 +dualbound = 3499260.499527, lowerbound=1273757.499527, norm of subgrad 1129.121118 dualbound = 3499260.499527, lowerbound=1273757.499527, norm of subgrad 35.760040 stepsize= 1.000000 +dualbound = 3499298.023895, lowerbound=1280703.023895, norm of subgrad 1132.230111 dualbound = 3499298.023895, lowerbound=1280703.023895, norm of subgrad 35.770440 stepsize= 1.000000 +dualbound = 3499382.791702, lowerbound=1275493.791702, norm of subgrad 1129.919374 dualbound = 3499382.791702, lowerbound=1275493.791702, norm of subgrad 36.176896 stepsize= 1.000000 +dualbound = 3499436.532086, lowerbound=1277390.532086, norm of subgrad 1130.787129 dualbound = 3499436.532086, lowerbound=1277390.532086, norm of subgrad 36.643422 stepsize= 1.000000 +dualbound = 3499542.815740, lowerbound=1284607.815740, norm of subgrad 1133.957149 dualbound = 3499542.815740, lowerbound=1284607.815740, norm of subgrad 36.841331 stepsize= 1.000000 +dualbound = 3499597.031143, lowerbound=1276332.031143, norm of subgrad 1130.280952 dualbound = 3499597.031143, lowerbound=1276332.031143, norm of subgrad 35.457233 stepsize= 1.000000 +dualbound = 3499689.296035, lowerbound=1273851.296035, norm of subgrad 1129.169737 dualbound = 3499689.296035, lowerbound=1273851.296035, norm of subgrad 35.570562 stepsize= 1.000000 +dualbound = 3499769.234920, lowerbound=1279146.234920, norm of subgrad 1131.527832 dualbound = 3499769.234920, lowerbound=1279146.234920, norm of subgrad 35.901795 stepsize= 1.000000 +dualbound = 3499853.617005, lowerbound=1276528.617005, norm of subgrad 1130.377644 dualbound = 3499853.617005, lowerbound=1276528.617005, norm of subgrad 36.185385 stepsize= 1.000000 +dualbound = 3499904.339612, lowerbound=1278243.339612, norm of subgrad 1131.133210 dualbound = 3499904.339612, lowerbound=1278243.339612, norm of subgrad 35.633167 stepsize= 1.000000 +dualbound = 3499994.371913, lowerbound=1276006.371913, norm of subgrad 1130.151482 dualbound = 3499994.371913, lowerbound=1276006.371913, norm of subgrad 36.414726 stepsize= 1.000000 +dualbound = 3500069.089072, lowerbound=1273103.089072, norm of subgrad 1128.841924 dualbound = 3500069.089072, lowerbound=1273103.089072, norm of subgrad 35.436100 stepsize= 1.000000 +dualbound = 3500153.950314, lowerbound=1282920.950314, norm of subgrad 1133.180458 dualbound = 3500153.950314, lowerbound=1282920.950314, norm of subgrad 35.522686 stepsize= 1.000000 +dualbound = 3500232.196358, lowerbound=1278248.196358, norm of subgrad 1131.140220 dualbound = 3500232.196358, lowerbound=1278248.196358, norm of subgrad 36.169684 stepsize= 1.000000 +dualbound = 3500292.700127, lowerbound=1279921.700127, norm of subgrad 1131.868676 dualbound = 3500292.700127, lowerbound=1279921.700127, norm of subgrad 35.573920 stepsize= 1.000000 +dualbound = 3500374.650030, lowerbound=1273340.650030, norm of subgrad 1128.962200 dualbound = 3500374.650030, lowerbound=1273340.650030, norm of subgrad 36.013191 stepsize= 1.000000 +dualbound = 3500426.864244, lowerbound=1278522.864244, norm of subgrad 1131.274442 dualbound = 3500426.864244, lowerbound=1278522.864244, norm of subgrad 36.210692 stepsize= 1.000000 +dualbound = 3500502.778236, lowerbound=1278656.778236, norm of subgrad 1131.305785 dualbound = 3500502.778236, lowerbound=1278656.778236, norm of subgrad 35.663903 stepsize= 1.000000 +dualbound = 3500580.509233, lowerbound=1280017.509233, norm of subgrad 1131.929110 dualbound = 3500580.509233, lowerbound=1280017.509233, norm of subgrad 36.383114 stepsize= 1.000000 +dualbound = 3500653.305901, lowerbound=1276252.305901, norm of subgrad 1130.256301 dualbound = 3500653.305901, lowerbound=1276252.305901, norm of subgrad 36.052693 stepsize= 1.000000 +dualbound = 3500742.458300, lowerbound=1274090.458301, norm of subgrad 1129.297329 dualbound = 3500742.458300, lowerbound=1274090.458301, norm of subgrad 36.209838 stepsize= 1.000000 +dualbound = 3500806.039409, lowerbound=1283265.039409, norm of subgrad 1133.353007 dualbound = 3500806.039409, lowerbound=1283265.039409, norm of subgrad 35.882880 stepsize= 1.000000 +dualbound = 3500897.073714, lowerbound=1276380.073714, norm of subgrad 1130.288049 dualbound = 3500897.073714, lowerbound=1276380.073714, norm of subgrad 35.525122 stepsize= 1.000000 +dualbound = 3500979.428674, lowerbound=1277575.428674, norm of subgrad 1130.821130 dualbound = 3500979.428674, lowerbound=1277575.428674, norm of subgrad 35.543705 stepsize= 1.000000 +dualbound = 3501035.423949, lowerbound=1275447.423949, norm of subgrad 1129.856816 dualbound = 3501035.423949, lowerbound=1275447.423949, norm of subgrad 34.423760 stepsize= 1.000000 +dualbound = 3501154.233239, lowerbound=1282639.233239, norm of subgrad 1133.066297 dualbound = 3501154.233239, lowerbound=1282639.233239, norm of subgrad 36.315414 stepsize= 1.000000 +dualbound = 3501172.432484, lowerbound=1274882.432484, norm of subgrad 1129.642613 dualbound = 3501172.432484, lowerbound=1274882.432484, norm of subgrad 35.045674 stepsize= 1.000000 +dualbound = 3501264.039223, lowerbound=1278101.039223, norm of subgrad 1131.080474 dualbound = 3501264.039223, lowerbound=1278101.039223, norm of subgrad 36.518581 stepsize= 1.000000 +dualbound = 3501339.938609, lowerbound=1273061.938609, norm of subgrad 1128.842300 dualbound = 3501339.938609, lowerbound=1273061.938609, norm of subgrad 36.040247 stepsize= 1.000000 +dualbound = 3501399.318997, lowerbound=1280078.318997, norm of subgrad 1131.955087 dualbound = 3501399.318997, lowerbound=1280078.318997, norm of subgrad 36.102360 stepsize= 1.000000 +dualbound = 3501476.799230, lowerbound=1277216.799230, norm of subgrad 1130.705001 dualbound = 3501476.799230, lowerbound=1277216.799230, norm of subgrad 36.803264 stepsize= 1.000000 +dualbound = 3501541.829542, lowerbound=1282415.829542, norm of subgrad 1132.999042 dualbound = 3501541.829542, lowerbound=1282415.829542, norm of subgrad 36.551748 stepsize= 1.000000 +dualbound = 3501605.069608, lowerbound=1281676.069608, norm of subgrad 1132.664588 dualbound = 3501605.069608, lowerbound=1281676.069608, norm of subgrad 36.280023 stepsize= 1.000000 +dualbound = 3501686.497703, lowerbound=1271213.497703, norm of subgrad 1128.034795 dualbound = 3501686.497703, lowerbound=1271213.497703, norm of subgrad 36.475034 stepsize= 1.000000 +dualbound = 3501762.860594, lowerbound=1280420.860594, norm of subgrad 1132.104616 dualbound = 3501762.860594, lowerbound=1280420.860594, norm of subgrad 36.281716 stepsize= 1.000000 +dualbound = 3501860.486608, lowerbound=1272763.486608, norm of subgrad 1128.695923 dualbound = 3501860.486608, lowerbound=1272763.486608, norm of subgrad 35.897437 stepsize= 1.000000 +dualbound = 3501916.216485, lowerbound=1277069.216485, norm of subgrad 1130.603917 dualbound = 3501916.216485, lowerbound=1277069.216485, norm of subgrad 35.379795 stepsize= 1.000000 +dualbound = 3501994.877221, lowerbound=1277863.877221, norm of subgrad 1130.959715 dualbound = 3501994.877221, lowerbound=1277863.877221, norm of subgrad 35.842164 stepsize= 1.000000 +dualbound = 3502086.331422, lowerbound=1282762.331422, norm of subgrad 1133.110909 dualbound = 3502086.331422, lowerbound=1282762.331422, norm of subgrad 35.629401 stepsize= 1.000000 +dualbound = 3502163.488212, lowerbound=1276596.488212, norm of subgrad 1130.394837 dualbound = 3502163.488212, lowerbound=1276596.488212, norm of subgrad 35.681323 stepsize= 1.000000 +dualbound = 3502229.626196, lowerbound=1281816.626196, norm of subgrad 1132.676311 dualbound = 3502229.626196, lowerbound=1281816.626196, norm of subgrad 34.715097 stepsize= 1.000000 +dualbound = 3502311.433988, lowerbound=1278138.433988, norm of subgrad 1131.089932 dualbound = 3502311.433988, lowerbound=1278138.433988, norm of subgrad 36.163625 stepsize= 1.000000 +dualbound = 3502367.408634, lowerbound=1277270.408634, norm of subgrad 1130.698195 dualbound = 3502367.408634, lowerbound=1277270.408634, norm of subgrad 35.552421 stepsize= 1.000000 +dualbound = 3502436.694334, lowerbound=1275529.694334, norm of subgrad 1129.928624 dualbound = 3502436.694334, lowerbound=1275529.694334, norm of subgrad 35.753122 stepsize= 1.000000 +dualbound = 3502525.361773, lowerbound=1281493.361773, norm of subgrad 1132.531395 dualbound = 3502525.361773, lowerbound=1281493.361773, norm of subgrad 34.966662 stepsize= 1.000000 +dualbound = 3502597.518573, lowerbound=1280197.518573, norm of subgrad 1131.986978 dualbound = 3502597.518573, lowerbound=1280197.518573, norm of subgrad 35.625227 stepsize= 1.000000 +dualbound = 3502672.060161, lowerbound=1278180.060161, norm of subgrad 1131.115847 dualbound = 3502672.060161, lowerbound=1278180.060161, norm of subgrad 36.297956 stepsize= 1.000000 +dualbound = 3502732.501036, lowerbound=1281253.501036, norm of subgrad 1132.454194 dualbound = 3502732.501036, lowerbound=1281253.501036, norm of subgrad 35.488602 stepsize= 1.000000 +dualbound = 3502780.160417, lowerbound=1273433.160417, norm of subgrad 1129.035943 dualbound = 3502780.160417, lowerbound=1273433.160417, norm of subgrad 36.560353 stepsize= 1.000000 +dualbound = 3502870.728037, lowerbound=1275073.728037, norm of subgrad 1129.722855 dualbound = 3502870.728037, lowerbound=1275073.728037, norm of subgrad 35.924471 stepsize= 1.000000 +dualbound = 3502954.339224, lowerbound=1278339.339224, norm of subgrad 1131.207028 dualbound = 3502954.339224, lowerbound=1278339.339224, norm of subgrad 37.062261 stepsize= 1.000000 +dualbound = 3503010.744613, lowerbound=1273325.744613, norm of subgrad 1128.971100 dualbound = 3503010.744613, lowerbound=1273325.744613, norm of subgrad 36.144230 stepsize= 1.000000 +dualbound = 3503081.942885, lowerbound=1277445.942885, norm of subgrad 1130.810304 dualbound = 3503081.942885, lowerbound=1277445.942885, norm of subgrad 36.840172 stepsize= 1.000000 +dualbound = 3503183.023876, lowerbound=1278512.023876, norm of subgrad 1131.246668 dualbound = 3503183.023876, lowerbound=1278512.023876, norm of subgrad 36.167402 stepsize= 1.000000 +dualbound = 3503267.411171, lowerbound=1285601.411171, norm of subgrad 1134.381951 dualbound = 3503267.411171, lowerbound=1285601.411171, norm of subgrad 36.130144 stepsize= 1.000000 +dualbound = 3503345.354861, lowerbound=1270490.354861, norm of subgrad 1127.720867 dualbound = 3503345.354861, lowerbound=1270490.354861, norm of subgrad 36.632550 stepsize= 1.000000 +dualbound = 3503382.810196, lowerbound=1277616.810196, norm of subgrad 1130.906632 dualbound = 3503382.810196, lowerbound=1277616.810196, norm of subgrad 37.019661 stepsize= 1.000000 +dualbound = 3503457.154411, lowerbound=1273269.154411, norm of subgrad 1128.981911 dualbound = 3503457.154411, lowerbound=1273269.154411, norm of subgrad 37.487921 stepsize= 1.000000 +dualbound = 3503541.368256, lowerbound=1282014.368256, norm of subgrad 1132.807295 dualbound = 3503541.368256, lowerbound=1282014.368256, norm of subgrad 36.362259 stepsize= 1.000000 +dualbound = 3503628.092147, lowerbound=1275497.092147, norm of subgrad 1129.906674 dualbound = 3503628.092147, lowerbound=1275497.092147, norm of subgrad 35.759249 stepsize= 1.000000 +dualbound = 3503708.763720, lowerbound=1276852.763720, norm of subgrad 1130.506419 dualbound = 3503708.763720, lowerbound=1276852.763720, norm of subgrad 35.674523 stepsize= 1.000000 +dualbound = 3503789.416970, lowerbound=1277858.416970, norm of subgrad 1130.940501 dualbound = 3503789.416970, lowerbound=1277858.416970, norm of subgrad 35.336288 stepsize= 1.000000 +dualbound = 3503841.422947, lowerbound=1279596.422947, norm of subgrad 1131.744858 dualbound = 3503841.422947, lowerbound=1279596.422947, norm of subgrad 36.083320 stepsize= 1.000000 +dualbound = 3503913.556905, lowerbound=1278546.556906, norm of subgrad 1131.257069 dualbound = 3503913.556905, lowerbound=1278546.556906, norm of subgrad 35.610869 stepsize= 1.000000 +dualbound = 3504009.082246, lowerbound=1278306.082246, norm of subgrad 1131.162271 dualbound = 3504009.082246, lowerbound=1278306.082246, norm of subgrad 36.297732 stepsize= 1.000000 +dualbound = 3504060.276212, lowerbound=1273703.276212, norm of subgrad 1129.097549 dualbound = 3504060.276212, lowerbound=1273703.276212, norm of subgrad 34.773466 stepsize= 1.000000 +dualbound = 3504157.899734, lowerbound=1276664.899734, norm of subgrad 1130.434385 dualbound = 3504157.899734, lowerbound=1276664.899734, norm of subgrad 36.257737 stepsize= 1.000000 +dualbound = 3504209.209971, lowerbound=1277964.209971, norm of subgrad 1131.014682 dualbound = 3504209.209971, lowerbound=1277964.209971, norm of subgrad 35.795394 stepsize= 1.000000 +dualbound = 3504277.643726, lowerbound=1282054.643726, norm of subgrad 1132.825955 dualbound = 3504277.643726, lowerbound=1282054.643726, norm of subgrad 36.172279 stepsize= 1.000000 +dualbound = 3504349.578573, lowerbound=1280625.578573, norm of subgrad 1132.211367 dualbound = 3504349.578573, lowerbound=1280625.578573, norm of subgrad 36.727848 stepsize= 1.000000 +dualbound = 3504422.570187, lowerbound=1277877.570187, norm of subgrad 1130.949411 dualbound = 3504422.570187, lowerbound=1277877.570187, norm of subgrad 35.241901 stepsize= 1.000000 +dualbound = 3504527.054542, lowerbound=1272054.054542, norm of subgrad 1128.379393 dualbound = 3504527.054542, lowerbound=1272054.054542, norm of subgrad 35.923312 stepsize= 1.000000 +dualbound = 3504576.023133, lowerbound=1279933.023133, norm of subgrad 1131.913434 dualbound = 3504576.023133, lowerbound=1279933.023133, norm of subgrad 36.660177 stepsize= 1.000000 +dualbound = 3504673.368317, lowerbound=1279069.368317, norm of subgrad 1131.473980 dualbound = 3504673.368317, lowerbound=1279069.368317, norm of subgrad 35.515422 stepsize= 1.000000 +dualbound = 3504731.522116, lowerbound=1279805.522116, norm of subgrad 1131.818679 dualbound = 3504731.522116, lowerbound=1279805.522116, norm of subgrad 35.583055 stepsize= 1.000000 +dualbound = 3504809.185177, lowerbound=1277490.185177, norm of subgrad 1130.791840 dualbound = 3504809.185177, lowerbound=1277490.185177, norm of subgrad 35.744413 stepsize= 1.000000 +dualbound = 3504889.545438, lowerbound=1279644.545438, norm of subgrad 1131.734309 dualbound = 3504889.545438, lowerbound=1279644.545438, norm of subgrad 35.473374 stepsize= 1.000000 +dualbound = 3504962.429475, lowerbound=1282242.429475, norm of subgrad 1132.890740 dualbound = 3504962.429475, lowerbound=1282242.429475, norm of subgrad 35.663483 stepsize= 1.000000 +dualbound = 3505012.686025, lowerbound=1275437.686025, norm of subgrad 1129.902069 dualbound = 3505012.686025, lowerbound=1275437.686025, norm of subgrad 35.934058 stepsize= 1.000000 +dualbound = 3505111.911995, lowerbound=1275220.911995, norm of subgrad 1129.804369 dualbound = 3505111.911995, lowerbound=1275220.911995, norm of subgrad 36.554425 stepsize= 1.000000 +dualbound = 3505148.507331, lowerbound=1286111.507331, norm of subgrad 1134.623509 dualbound = 3505148.507331, lowerbound=1286111.507331, norm of subgrad 35.994379 stepsize= 1.000000 +dualbound = 3505246.312562, lowerbound=1279604.312562, norm of subgrad 1131.722719 dualbound = 3505246.312562, lowerbound=1279604.312562, norm of subgrad 35.913858 stepsize= 1.000000 +dualbound = 3505343.161121, lowerbound=1284872.161121, norm of subgrad 1134.045044 dualbound = 3505343.161121, lowerbound=1284872.161121, norm of subgrad 35.816875 stepsize= 1.000000 +dualbound = 3505400.640090, lowerbound=1275399.640090, norm of subgrad 1129.879038 dualbound = 3505400.640090, lowerbound=1275399.640090, norm of subgrad 35.839628 stepsize= 1.000000 +dualbound = 3505455.907092, lowerbound=1282442.907092, norm of subgrad 1132.985396 dualbound = 3505455.907092, lowerbound=1282442.907092, norm of subgrad 35.612737 stepsize= 1.000000 +dualbound = 3505545.076693, lowerbound=1275147.076693, norm of subgrad 1129.739827 dualbound = 3505545.076693, lowerbound=1275147.076693, norm of subgrad 35.414257 stepsize= 1.000000 +dualbound = 3505638.571340, lowerbound=1280330.571340, norm of subgrad 1131.996719 dualbound = 3505638.571340, lowerbound=1280330.571340, norm of subgrad 34.343772 stepsize= 1.000000 +dualbound = 3505718.636319, lowerbound=1273642.636319, norm of subgrad 1129.082210 dualbound = 3505718.636319, lowerbound=1273642.636319, norm of subgrad 35.553691 stepsize= 1.000000 +dualbound = 3505756.677246, lowerbound=1280229.677246, norm of subgrad 1132.003391 dualbound = 3505756.677246, lowerbound=1280229.677246, norm of subgrad 35.214215 stepsize= 1.000000 +dualbound = 3505831.352225, lowerbound=1278268.352225, norm of subgrad 1131.169904 dualbound = 3505831.352225, lowerbound=1278268.352225, norm of subgrad 36.765133 stepsize= 1.000000 +dualbound = 3505882.892905, lowerbound=1278772.892905, norm of subgrad 1131.403506 dualbound = 3505882.892905, lowerbound=1278772.892905, norm of subgrad 36.776904 stepsize= 1.000000 +dualbound = 3505972.288669, lowerbound=1279071.288669, norm of subgrad 1131.486318 dualbound = 3505972.288669, lowerbound=1279071.288669, norm of subgrad 35.768642 stepsize= 1.000000 +dualbound = 3506068.824914, lowerbound=1282098.824914, norm of subgrad 1132.816324 dualbound = 3506068.824914, lowerbound=1282098.824914, norm of subgrad 35.644582 stepsize= 1.000000 +dualbound = 3506111.202735, lowerbound=1278213.202735, norm of subgrad 1131.129172 dualbound = 3506111.202735, lowerbound=1278213.202735, norm of subgrad 35.810303 stepsize= 1.000000 +dualbound = 3506187.070957, lowerbound=1282422.070957, norm of subgrad 1132.972670 dualbound = 3506187.070957, lowerbound=1282422.070957, norm of subgrad 35.789219 stepsize= 1.000000 +dualbound = 3506276.779794, lowerbound=1276392.779794, norm of subgrad 1130.313576 dualbound = 3506276.779794, lowerbound=1276392.779794, norm of subgrad 36.134593 stepsize= 1.000000 +dualbound = 3506342.347023, lowerbound=1278645.347023, norm of subgrad 1131.330786 dualbound = 3506342.347023, lowerbound=1278645.347023, norm of subgrad 36.463231 stepsize= 1.000000 +dualbound = 3506396.268407, lowerbound=1277745.268407, norm of subgrad 1130.923635 dualbound = 3506396.268407, lowerbound=1277745.268407, norm of subgrad 36.012795 stepsize= 1.000000 +dualbound = 3506493.285607, lowerbound=1279954.285607, norm of subgrad 1131.912225 dualbound = 3506493.285607, lowerbound=1279954.285607, norm of subgrad 36.986717 stepsize= 1.000000 +dualbound = 3506548.270713, lowerbound=1277624.270713, norm of subgrad 1130.872349 dualbound = 3506548.270713, lowerbound=1277624.270713, norm of subgrad 36.096885 stepsize= 1.000000 +dualbound = 3506627.854293, lowerbound=1281588.854293, norm of subgrad 1132.654340 dualbound = 3506627.854293, lowerbound=1281588.854293, norm of subgrad 37.370892 stepsize= 1.000000 +dualbound = 3506693.014256, lowerbound=1275826.014256, norm of subgrad 1130.045138 dualbound = 3506693.014256, lowerbound=1275826.014256, norm of subgrad 35.230100 stepsize= 1.000000 +dualbound = 3506793.422041, lowerbound=1279551.422041, norm of subgrad 1131.707746 dualbound = 3506793.422041, lowerbound=1279551.422041, norm of subgrad 36.213365 stepsize= 1.000000 +dualbound = 3506853.256735, lowerbound=1277752.256735, norm of subgrad 1130.895334 dualbound = 3506853.256735, lowerbound=1277752.256735, norm of subgrad 35.097503 stepsize= 1.000000 +dualbound = 3506931.503856, lowerbound=1288167.503856, norm of subgrad 1135.524330 dualbound = 3506931.503856, lowerbound=1288167.503856, norm of subgrad 36.417676 stepsize= 1.000000 +dualbound = 3506971.147625, lowerbound=1274623.147625, norm of subgrad 1129.569452 dualbound = 3506971.147625, lowerbound=1274623.147625, norm of subgrad 36.655747 stepsize= 1.000000 +dualbound = 3507053.271624, lowerbound=1287234.271624, norm of subgrad 1135.082936 dualbound = 3507053.271624, lowerbound=1287234.271624, norm of subgrad 35.512308 stepsize= 1.000000 +dualbound = 3507167.779582, lowerbound=1273441.779582, norm of subgrad 1128.985288 dualbound = 3507167.779582, lowerbound=1273441.779582, norm of subgrad 35.784186 stepsize= 1.000000 +dualbound = 3507233.214403, lowerbound=1282765.214403, norm of subgrad 1133.108651 dualbound = 3507233.214403, lowerbound=1282765.214403, norm of subgrad 35.148753 stepsize= 1.000000 +dualbound = 3507283.969444, lowerbound=1277210.969444, norm of subgrad 1130.690041 dualbound = 3507283.969444, lowerbound=1277210.969444, norm of subgrad 36.052116 stepsize= 1.000000 +dualbound = 3507361.835358, lowerbound=1284209.835358, norm of subgrad 1133.762248 dualbound = 3507361.835358, lowerbound=1284209.835358, norm of subgrad 35.845026 stepsize= 1.000000 +dualbound = 3507436.385162, lowerbound=1274774.385162, norm of subgrad 1129.604083 dualbound = 3507436.385162, lowerbound=1274774.385162, norm of subgrad 36.132393 stepsize= 1.000000 +dualbound = 3507513.285976, lowerbound=1280017.285976, norm of subgrad 1131.883513 dualbound = 3507513.285976, lowerbound=1280017.285976, norm of subgrad 34.927079 stepsize= 1.000000 +dualbound = 3507603.386015, lowerbound=1276040.386015, norm of subgrad 1130.143967 dualbound = 3507603.386015, lowerbound=1276040.386015, norm of subgrad 35.708543 stepsize= 1.000000 +dualbound = 3507653.919614, lowerbound=1284005.919614, norm of subgrad 1133.693045 dualbound = 3507653.919614, lowerbound=1284005.919614, norm of subgrad 36.118328 stepsize= 1.000000 +dualbound = 3507719.528513, lowerbound=1274783.528513, norm of subgrad 1129.616098 dualbound = 3507719.528513, lowerbound=1274783.528513, norm of subgrad 36.257536 stepsize= 1.000000 +dualbound = 3507815.790948, lowerbound=1278888.790948, norm of subgrad 1131.389319 dualbound = 3507815.790948, lowerbound=1278888.790948, norm of subgrad 35.344907 stepsize= 1.000000 +dualbound = 3507880.843665, lowerbound=1280878.843665, norm of subgrad 1132.323648 dualbound = 3507880.843665, lowerbound=1280878.843665, norm of subgrad 36.647684 stepsize= 1.000000 +dualbound = 3507944.814811, lowerbound=1281554.814811, norm of subgrad 1132.596051 dualbound = 3507944.814811, lowerbound=1281554.814811, norm of subgrad 35.818587 stepsize= 1.000000 +dualbound = 3508025.392625, lowerbound=1277500.392625, norm of subgrad 1130.803428 dualbound = 3508025.392625, lowerbound=1277500.392625, norm of subgrad 36.008024 stepsize= 1.000000 +dualbound = 3508089.477759, lowerbound=1281716.477759, norm of subgrad 1132.669183 dualbound = 3508089.477759, lowerbound=1281716.477759, norm of subgrad 35.875969 stepsize= 1.000000 +dualbound = 3508154.590697, lowerbound=1278823.590697, norm of subgrad 1131.376414 dualbound = 3508154.590697, lowerbound=1278823.590697, norm of subgrad 35.413457 stepsize= 1.000000 +dualbound = 3508245.762532, lowerbound=1283381.762532, norm of subgrad 1133.378473 dualbound = 3508245.762532, lowerbound=1283381.762532, norm of subgrad 35.442515 stepsize= 1.000000 +dualbound = 3508306.178338, lowerbound=1277261.178338, norm of subgrad 1130.686154 dualbound = 3508306.178338, lowerbound=1277261.178338, norm of subgrad 35.361219 stepsize= 1.000000 +dualbound = 3508380.651618, lowerbound=1277508.651618, norm of subgrad 1130.822997 dualbound = 3508380.651618, lowerbound=1277508.651618, norm of subgrad 36.420781 stepsize= 1.000000 +dualbound = 3508429.283283, lowerbound=1282464.283283, norm of subgrad 1133.012923 dualbound = 3508429.283283, lowerbound=1282464.283283, norm of subgrad 36.091989 stepsize= 1.000000 +dualbound = 3508549.568034, lowerbound=1278541.568034, norm of subgrad 1131.228787 dualbound = 3508549.568034, lowerbound=1278541.568034, norm of subgrad 35.458211 stepsize= 1.000000 +dualbound = 3508597.686715, lowerbound=1288211.686715, norm of subgrad 1135.526172 dualbound = 3508597.686715, lowerbound=1288211.686715, norm of subgrad 35.441765 stepsize= 1.000000 +dualbound = 3508676.873820, lowerbound=1275371.873820, norm of subgrad 1129.855245 dualbound = 3508676.873820, lowerbound=1275371.873820, norm of subgrad 35.779702 stepsize= 1.000000 +dualbound = 3508740.576317, lowerbound=1282108.576317, norm of subgrad 1132.838283 dualbound = 3508740.576317, lowerbound=1282108.576317, norm of subgrad 35.744965 stepsize= 1.000000 +dualbound = 3508835.696467, lowerbound=1277108.696467, norm of subgrad 1130.616954 dualbound = 3508835.696467, lowerbound=1277108.696467, norm of subgrad 35.792739 stepsize= 1.000000 +dualbound = 3508884.916105, lowerbound=1282459.916105, norm of subgrad 1132.988489 dualbound = 3508884.916105, lowerbound=1282459.916105, norm of subgrad 35.386716 stepsize= 1.000000 +dualbound = 3508984.260016, lowerbound=1274606.260016, norm of subgrad 1129.500890 dualbound = 3508984.260016, lowerbound=1274606.260016, norm of subgrad 35.571673 stepsize= 1.000000 +dualbound = 3509030.397864, lowerbound=1277623.397864, norm of subgrad 1130.845435 dualbound = 3509030.397864, lowerbound=1277623.397864, norm of subgrad 35.130298 stepsize= 1.000000 +dualbound = 3509130.604229, lowerbound=1279127.604229, norm of subgrad 1131.532856 dualbound = 3509130.604229, lowerbound=1279127.604229, norm of subgrad 36.595169 stepsize= 1.000000 +dualbound = 3509171.113967, lowerbound=1278903.113967, norm of subgrad 1131.444702 dualbound = 3509171.113967, lowerbound=1278903.113967, norm of subgrad 36.117997 stepsize= 1.000000 +dualbound = 3509264.814192, lowerbound=1279137.814192, norm of subgrad 1131.532949 dualbound = 3509264.814192, lowerbound=1279137.814192, norm of subgrad 36.368946 stepsize= 1.000000 +dualbound = 3509332.624727, lowerbound=1281378.624727, norm of subgrad 1132.508554 dualbound = 3509332.624727, lowerbound=1281378.624727, norm of subgrad 35.564175 stepsize= 1.000000 +dualbound = 3509417.819014, lowerbound=1278992.819014, norm of subgrad 1131.474180 dualbound = 3509417.819014, lowerbound=1278992.819014, norm of subgrad 36.416951 stepsize= 1.000000 +dualbound = 3509451.953285, lowerbound=1276144.953285, norm of subgrad 1130.237565 dualbound = 3509451.953285, lowerbound=1276144.953285, norm of subgrad 36.416127 stepsize= 1.000000 +dualbound = 3509545.214977, lowerbound=1280238.214977, norm of subgrad 1132.025271 dualbound = 3509545.214977, lowerbound=1280238.214977, norm of subgrad 36.554913 stepsize= 1.000000 +dualbound = 3509612.161846, lowerbound=1278000.161846, norm of subgrad 1131.036764 dualbound = 3509612.161846, lowerbound=1278000.161846, norm of subgrad 36.207000 stepsize= 1.000000 +dualbound = 3509686.129691, lowerbound=1283156.129691, norm of subgrad 1133.307165 dualbound = 3509686.129691, lowerbound=1283156.129691, norm of subgrad 36.096646 stepsize= 1.000000 +dualbound = 3509755.512989, lowerbound=1280944.512989, norm of subgrad 1132.325268 dualbound = 3509755.512989, lowerbound=1280944.512989, norm of subgrad 35.852243 stepsize= 1.000000 +dualbound = 3509852.809961, lowerbound=1280608.809961, norm of subgrad 1132.162890 dualbound = 3509852.809961, lowerbound=1280608.809961, norm of subgrad 35.795209 stepsize= 1.000000 +dualbound = 3509893.787028, lowerbound=1280775.787028, norm of subgrad 1132.267984 dualbound = 3509893.787028, lowerbound=1280775.787028, norm of subgrad 35.999681 stepsize= 1.000000 +dualbound = 3510000.616962, lowerbound=1278249.616962, norm of subgrad 1131.131565 dualbound = 3510000.616962, lowerbound=1278249.616962, norm of subgrad 36.274370 stepsize= 1.000000 +dualbound = 3510057.437547, lowerbound=1284924.437547, norm of subgrad 1134.068092 dualbound = 3510057.437547, lowerbound=1284924.437547, norm of subgrad 35.253661 stepsize= 1.000000 +dualbound = 3510141.755217, lowerbound=1276257.755217, norm of subgrad 1130.262693 dualbound = 3510141.755217, lowerbound=1276257.755217, norm of subgrad 36.336176 stepsize= 1.000000 +dualbound = 3510192.538805, lowerbound=1276101.538805, norm of subgrad 1130.189161 dualbound = 3510192.538805, lowerbound=1276101.538805, norm of subgrad 35.732109 stepsize= 1.000000 +dualbound = 3510291.969414, lowerbound=1279048.969414, norm of subgrad 1131.464082 dualbound = 3510291.969414, lowerbound=1279048.969414, norm of subgrad 35.516624 stepsize= 1.000000 +dualbound = 3510372.987513, lowerbound=1276053.987513, norm of subgrad 1130.146445 dualbound = 3510372.987513, lowerbound=1276053.987513, norm of subgrad 35.468551 stepsize= 1.000000 +dualbound = 3510456.798264, lowerbound=1276057.798264, norm of subgrad 1130.161846 dualbound = 3510456.798264, lowerbound=1276057.798264, norm of subgrad 35.941769 stepsize= 1.000000 +dualbound = 3510502.985043, lowerbound=1284344.985043, norm of subgrad 1133.831551 dualbound = 3510502.985043, lowerbound=1284344.985043, norm of subgrad 35.709757 stepsize= 1.000000 +dualbound = 3510582.502700, lowerbound=1276166.502700, norm of subgrad 1130.204186 dualbound = 3510582.502700, lowerbound=1276166.502700, norm of subgrad 35.700387 stepsize= 1.000000 +dualbound = 3510655.034204, lowerbound=1287479.034204, norm of subgrad 1135.203521 dualbound = 3510655.034204, lowerbound=1287479.034204, norm of subgrad 35.784515 stepsize= 1.000000 +dualbound = 3510709.543665, lowerbound=1281915.543665, norm of subgrad 1132.776476 dualbound = 3510709.543665, lowerbound=1281915.543665, norm of subgrad 36.352572 stepsize= 1.000000 +dualbound = 3510778.143999, lowerbound=1281369.143999, norm of subgrad 1132.537480 dualbound = 3510778.143999, lowerbound=1281369.143999, norm of subgrad 36.614209 stepsize= 1.000000 +dualbound = 3510870.824098, lowerbound=1278795.824098, norm of subgrad 1131.364585 dualbound = 3510870.824098, lowerbound=1278795.824098, norm of subgrad 35.814524 stepsize= 1.000000 +dualbound = 3510938.929742, lowerbound=1283996.929742, norm of subgrad 1133.666146 dualbound = 3510938.929742, lowerbound=1283996.929742, norm of subgrad 35.638542 stepsize= 1.000000 +dualbound = 3511030.304005, lowerbound=1277787.304005, norm of subgrad 1130.915693 dualbound = 3511030.304005, lowerbound=1277787.304005, norm of subgrad 35.698379 stepsize= 1.000000 +dualbound = 3511091.403527, lowerbound=1274708.403527, norm of subgrad 1129.566024 dualbound = 3511091.403527, lowerbound=1274708.403527, norm of subgrad 35.666504 stepsize= 1.000000 +dualbound = 3511171.058370, lowerbound=1281157.058370, norm of subgrad 1132.420001 dualbound = 3511171.058370, lowerbound=1281157.058370, norm of subgrad 36.022977 stepsize= 1.000000 +dualbound = 3511217.047353, lowerbound=1286041.047353, norm of subgrad 1134.548830 dualbound = 3511217.047353, lowerbound=1286041.047353, norm of subgrad 34.727352 stepsize= 1.000000 +dualbound = 3511314.078076, lowerbound=1282443.078076, norm of subgrad 1132.967819 dualbound = 3511314.078076, lowerbound=1282443.078076, norm of subgrad 35.637490 stepsize= 1.000000 +dualbound = 3511362.913882, lowerbound=1278138.913882, norm of subgrad 1131.106058 dualbound = 3511362.913882, lowerbound=1278138.913882, norm of subgrad 36.205467 stepsize= 1.000000 +dualbound = 3511433.416258, lowerbound=1281206.416258, norm of subgrad 1132.475349 dualbound = 3511433.416258, lowerbound=1281206.416258, norm of subgrad 36.939171 stepsize= 1.000000 +dualbound = 3511509.704588, lowerbound=1277732.704588, norm of subgrad 1130.927365 dualbound = 3511509.704588, lowerbound=1277732.704588, norm of subgrad 36.609949 stepsize= 1.000000 +dualbound = 3511582.113924, lowerbound=1279233.113924, norm of subgrad 1131.578152 dualbound = 3511582.113924, lowerbound=1279233.113924, norm of subgrad 36.171941 stepsize= 1.000000 +dualbound = 3511655.860723, lowerbound=1281261.860723, norm of subgrad 1132.468040 dualbound = 3511655.860723, lowerbound=1281261.860723, norm of subgrad 35.996483 stepsize= 1.000000 +dualbound = 3511729.349229, lowerbound=1278940.349229, norm of subgrad 1131.441271 dualbound = 3511729.349229, lowerbound=1278940.349229, norm of subgrad 35.951196 stepsize= 1.000000 +dualbound = 3511809.367405, lowerbound=1281075.367405, norm of subgrad 1132.387905 dualbound = 3511809.367405, lowerbound=1281075.367405, norm of subgrad 36.152706 stepsize= 1.000000 +dualbound = 3511870.967289, lowerbound=1279348.967289, norm of subgrad 1131.630667 dualbound = 3511870.967289, lowerbound=1279348.967289, norm of subgrad 36.063831 stepsize= 1.000000 +dualbound = 3511944.342518, lowerbound=1280874.342518, norm of subgrad 1132.312387 dualbound = 3511944.342518, lowerbound=1280874.342518, norm of subgrad 36.474309 stepsize= 1.000000 +dualbound = 3512013.387733, lowerbound=1281205.387733, norm of subgrad 1132.432951 dualbound = 3512013.387733, lowerbound=1281205.387733, norm of subgrad 35.609622 stepsize= 1.000000 +dualbound = 3512113.355867, lowerbound=1277262.355867, norm of subgrad 1130.685348 dualbound = 3512113.355867, lowerbound=1277262.355867, norm of subgrad 35.874338 stepsize= 1.000000 +dualbound = 3512175.913048, lowerbound=1281047.913048, norm of subgrad 1132.354588 dualbound = 3512175.913048, lowerbound=1281047.913048, norm of subgrad 35.235737 stepsize= 1.000000 +dualbound = 3512252.660168, lowerbound=1279575.660168, norm of subgrad 1131.717571 dualbound = 3512252.660168, lowerbound=1279575.660168, norm of subgrad 35.857316 stepsize= 1.000000 +dualbound = 3512310.448199, lowerbound=1282810.448199, norm of subgrad 1133.143172 dualbound = 3512310.448199, lowerbound=1282810.448199, norm of subgrad 35.507577 stepsize= 1.000000 +dualbound = 3512395.023467, lowerbound=1277055.023467, norm of subgrad 1130.600293 dualbound = 3512395.023467, lowerbound=1277055.023467, norm of subgrad 35.868862 stepsize= 1.000000 +dualbound = 3512489.157566, lowerbound=1281274.157566, norm of subgrad 1132.435940 dualbound = 3512489.157566, lowerbound=1281274.157566, norm of subgrad 35.087521 stepsize= 1.000000 +dualbound = 3512534.908224, lowerbound=1279506.908224, norm of subgrad 1131.699124 dualbound = 3512534.908224, lowerbound=1279506.908224, norm of subgrad 35.801545 stepsize= 1.000000 +dualbound = 3512592.535392, lowerbound=1277056.535392, norm of subgrad 1130.603616 dualbound = 3512592.535392, lowerbound=1277056.535392, norm of subgrad 35.575654 stepsize= 1.000000 +dualbound = 3512674.650328, lowerbound=1282766.650328, norm of subgrad 1133.140614 dualbound = 3512674.650328, lowerbound=1282766.650328, norm of subgrad 36.374647 stepsize= 1.000000 +dualbound = 3512739.097945, lowerbound=1283029.097945, norm of subgrad 1133.264355 dualbound = 3512739.097945, lowerbound=1283029.097945, norm of subgrad 36.379220 stepsize= 1.000000 +dualbound = 3512788.463985, lowerbound=1278759.463985, norm of subgrad 1131.351609 dualbound = 3512788.463985, lowerbound=1278759.463985, norm of subgrad 35.303910 stepsize= 1.000000 +dualbound = 3512901.094894, lowerbound=1283524.094894, norm of subgrad 1133.437292 dualbound = 3512901.094894, lowerbound=1283524.094894, norm of subgrad 35.617845 stepsize= 1.000000 +dualbound = 3512966.421617, lowerbound=1280920.421617, norm of subgrad 1132.316838 dualbound = 3512966.421617, lowerbound=1280920.421617, norm of subgrad 35.865397 stepsize= 1.000000 +dualbound = 3513047.560601, lowerbound=1280623.560601, norm of subgrad 1132.185745 dualbound = 3513047.560601, lowerbound=1280623.560601, norm of subgrad 36.085163 stepsize= 1.000000 +dualbound = 3513109.592443, lowerbound=1280728.592443, norm of subgrad 1132.227712 dualbound = 3513109.592443, lowerbound=1280728.592443, norm of subgrad 35.679572 stepsize= 1.000000 +dualbound = 3513191.471453, lowerbound=1279507.471453, norm of subgrad 1131.685677 dualbound = 3513191.471453, lowerbound=1279507.471453, norm of subgrad 35.873096 stepsize= 1.000000 +dualbound = 3513247.889550, lowerbound=1280823.889550, norm of subgrad 1132.297615 dualbound = 3513247.889550, lowerbound=1280823.889550, norm of subgrad 36.474897 stepsize= 1.000000 +dualbound = 3513321.631736, lowerbound=1282016.631736, norm of subgrad 1132.801232 dualbound = 3513321.631736, lowerbound=1282016.631736, norm of subgrad 35.996419 stepsize= 1.000000 +dualbound = 3513385.767654, lowerbound=1274076.767654, norm of subgrad 1129.289054 dualbound = 3513385.767654, lowerbound=1274076.767654, norm of subgrad 35.792959 stepsize= 1.000000 +dualbound = 3513436.251599, lowerbound=1279230.251599, norm of subgrad 1131.604282 dualbound = 3513436.251599, lowerbound=1279230.251599, norm of subgrad 36.721709 stepsize= 1.000000 +dualbound = 3513536.494848, lowerbound=1276060.494848, norm of subgrad 1130.169233 dualbound = 3513536.494848, lowerbound=1276060.494848, norm of subgrad 36.362663 stepsize= 1.000000 +dualbound = 3513606.484676, lowerbound=1283368.484676, norm of subgrad 1133.378791 dualbound = 3513606.484676, lowerbound=1283368.484676, norm of subgrad 35.341050 stepsize= 1.000000 +dualbound = 3513701.893395, lowerbound=1278923.893395, norm of subgrad 1131.421183 dualbound = 3513701.893395, lowerbound=1278923.893395, norm of subgrad 35.852597 stepsize= 1.000000 +dualbound = 3513734.351035, lowerbound=1281897.351035, norm of subgrad 1132.768445 dualbound = 3513734.351035, lowerbound=1281897.351035, norm of subgrad 36.047991 stepsize= 1.000000 +dualbound = 3513823.750969, lowerbound=1287239.750969, norm of subgrad 1135.092838 dualbound = 3513823.750969, lowerbound=1287239.750969, norm of subgrad 35.852475 stepsize= 1.000000 +dualbound = 3513896.018580, lowerbound=1278431.018580, norm of subgrad 1131.243572 dualbound = 3513896.018580, lowerbound=1278431.018580, norm of subgrad 36.786786 stepsize= 1.000000 +dualbound = 3513950.830618, lowerbound=1282600.830618, norm of subgrad 1133.068767 dualbound = 3513950.830618, lowerbound=1282600.830618, norm of subgrad 36.039035 stepsize= 1.000000 +dualbound = 3514049.092311, lowerbound=1278683.092311, norm of subgrad 1131.319624 dualbound = 3514049.092311, lowerbound=1278683.092311, norm of subgrad 36.045273 stepsize= 1.000000 +dualbound = 3514132.955020, lowerbound=1277192.955020, norm of subgrad 1130.669251 dualbound = 3514132.955020, lowerbound=1277192.955020, norm of subgrad 36.109039 stepsize= 1.000000 +dualbound = 3514207.293876, lowerbound=1283762.293876, norm of subgrad 1133.569713 dualbound = 3514207.293876, lowerbound=1283762.293876, norm of subgrad 35.949115 stepsize= 1.000000 +dualbound = 3514257.102907, lowerbound=1280578.102907, norm of subgrad 1132.165669 dualbound = 3514257.102907, lowerbound=1280578.102907, norm of subgrad 35.648409 stepsize= 1.000000 +dualbound = 3514365.732479, lowerbound=1282455.732479, norm of subgrad 1132.991056 dualbound = 3514365.732479, lowerbound=1282455.732479, norm of subgrad 36.354224 stepsize= 1.000000 +dualbound = 3514408.464418, lowerbound=1281849.464418, norm of subgrad 1132.711113 dualbound = 3514408.464418, lowerbound=1281849.464418, norm of subgrad 35.039006 stepsize= 1.000000 +dualbound = 3514506.230588, lowerbound=1275619.230588, norm of subgrad 1129.958066 dualbound = 3514506.230588, lowerbound=1275619.230588, norm of subgrad 35.829683 stepsize= 1.000000 +dualbound = 3514576.336147, lowerbound=1278468.336147, norm of subgrad 1131.231336 dualbound = 3514576.336147, lowerbound=1278468.336147, norm of subgrad 35.862314 stepsize= 1.000000 +dualbound = 3514652.522938, lowerbound=1285989.522938, norm of subgrad 1134.533174 dualbound = 3514652.522938, lowerbound=1285989.522938, norm of subgrad 35.386251 stepsize= 1.000000 +dualbound = 3514721.115177, lowerbound=1281801.115177, norm of subgrad 1132.688887 dualbound = 3514721.115177, lowerbound=1281801.115177, norm of subgrad 35.377850 stepsize= 1.000000 +dualbound = 3514794.747217, lowerbound=1280289.747217, norm of subgrad 1132.014906 dualbound = 3514794.747217, lowerbound=1280289.747217, norm of subgrad 35.236800 stepsize= 1.000000 +dualbound = 3514859.573332, lowerbound=1279210.573332, norm of subgrad 1131.586750 dualbound = 3514859.573332, lowerbound=1279210.573332, norm of subgrad 36.644592 stepsize= 1.000000 +dualbound = 3514911.182301, lowerbound=1280342.182301, norm of subgrad 1132.069425 dualbound = 3514911.182301, lowerbound=1280342.182301, norm of subgrad 35.925047 stepsize= 1.000000 +dualbound = 3514995.298813, lowerbound=1279733.298813, norm of subgrad 1131.782797 dualbound = 3514995.298813, lowerbound=1279733.298813, norm of subgrad 35.820616 stepsize= 1.000000 +dualbound = 3515072.350195, lowerbound=1277087.350195, norm of subgrad 1130.618570 dualbound = 3515072.350195, lowerbound=1277087.350195, norm of subgrad 35.889433 stepsize= 1.000000 +dualbound = 3515147.196491, lowerbound=1286375.196491, norm of subgrad 1134.725604 dualbound = 3515147.196491, lowerbound=1286375.196491, norm of subgrad 36.081107 stepsize= 1.000000 +dualbound = 3515204.962696, lowerbound=1280470.962696, norm of subgrad 1132.111285 dualbound = 3515204.962696, lowerbound=1280470.962696, norm of subgrad 35.535422 stepsize= 1.000000 +dualbound = 3515298.286319, lowerbound=1282741.286319, norm of subgrad 1133.109565 dualbound = 3515298.286319, lowerbound=1282741.286319, norm of subgrad 35.907153 stepsize= 1.000000 +dualbound = 3515380.030319, lowerbound=1274961.030319, norm of subgrad 1129.670762 dualbound = 3515380.030319, lowerbound=1274961.030319, norm of subgrad 35.731555 stepsize= 1.000000 +dualbound = 3515439.448580, lowerbound=1285063.448580, norm of subgrad 1134.127175 dualbound = 3515439.448580, lowerbound=1285063.448580, norm of subgrad 35.219572 stepsize= 1.000000 +dualbound = 3515536.903260, lowerbound=1285624.903260, norm of subgrad 1134.364537 dualbound = 3515536.903260, lowerbound=1285624.903260, norm of subgrad 35.432396 stepsize= 1.000000 +dualbound = 3515578.322909, lowerbound=1281923.322909, norm of subgrad 1132.745922 dualbound = 3515578.322909, lowerbound=1281923.322909, norm of subgrad 35.091589 stepsize= 1.000000 +dualbound = 3515667.987464, lowerbound=1275356.987464, norm of subgrad 1129.842904 dualbound = 3515667.987464, lowerbound=1275356.987464, norm of subgrad 35.744434 stepsize= 1.000000 +dualbound = 3515715.087574, lowerbound=1284467.087574, norm of subgrad 1133.849676 dualbound = 3515715.087574, lowerbound=1284467.087574, norm of subgrad 34.570220 stepsize= 1.000000 +dualbound = 3515812.014074, lowerbound=1279029.014074, norm of subgrad 1131.453938 dualbound = 3515812.014074, lowerbound=1279029.014074, norm of subgrad 35.439053 stepsize= 1.000000 +dualbound = 3515861.941710, lowerbound=1285152.941710, norm of subgrad 1134.178973 dualbound = 3515861.941710, lowerbound=1285152.941710, norm of subgrad 35.481370 stepsize= 1.000000 +dualbound = 3515939.201968, lowerbound=1283883.201968, norm of subgrad 1133.604076 dualbound = 3515939.201968, lowerbound=1283883.201968, norm of subgrad 35.387289 stepsize= 1.000000 +dualbound = 3515990.688038, lowerbound=1281261.688038, norm of subgrad 1132.447654 dualbound = 3515990.688038, lowerbound=1281261.688038, norm of subgrad 35.035497 stepsize= 1.000000 +dualbound = 3516076.815118, lowerbound=1276241.815118, norm of subgrad 1130.231310 dualbound = 3516076.815118, lowerbound=1276241.815118, norm of subgrad 35.596729 stepsize= 1.000000 +dualbound = 3516165.333097, lowerbound=1283935.333097, norm of subgrad 1133.630157 dualbound = 3516165.333097, lowerbound=1283935.333097, norm of subgrad 35.644326 stepsize= 1.000000 +dualbound = 3516226.715494, lowerbound=1278935.715494, norm of subgrad 1131.441433 dualbound = 3516226.715494, lowerbound=1278935.715494, norm of subgrad 35.852230 stepsize= 1.000000 +dualbound = 3516260.369983, lowerbound=1286286.369983, norm of subgrad 1134.684701 dualbound = 3516260.369983, lowerbound=1286286.369983, norm of subgrad 35.449323 stepsize= 1.000000 +dualbound = 3516365.837102, lowerbound=1279167.837102, norm of subgrad 1131.532517 dualbound = 3516365.837102, lowerbound=1279167.837102, norm of subgrad 36.103561 stepsize= 1.000000 +dualbound = 3516426.851315, lowerbound=1284008.851315, norm of subgrad 1133.688604 dualbound = 3516426.851315, lowerbound=1284008.851315, norm of subgrad 36.083434 stepsize= 1.000000 +dualbound = 3516508.087396, lowerbound=1280362.087396, norm of subgrad 1132.080424 dualbound = 3516508.087396, lowerbound=1280362.087396, norm of subgrad 36.403792 stepsize= 1.000000 +dualbound = 3516566.046141, lowerbound=1282981.046141, norm of subgrad 1133.224182 dualbound = 3516566.046141, lowerbound=1282981.046141, norm of subgrad 35.692559 stepsize= 1.000000 +dualbound = 3516653.851421, lowerbound=1276114.851421, norm of subgrad 1130.199917 dualbound = 3516653.851421, lowerbound=1276114.851421, norm of subgrad 36.397875 stepsize= 1.000000 +dualbound = 3516722.849329, lowerbound=1284157.849329, norm of subgrad 1133.740204 dualbound = 3516722.849329, lowerbound=1284157.849329, norm of subgrad 35.749097 stepsize= 1.000000 +dualbound = 3516798.819984, lowerbound=1279321.819984, norm of subgrad 1131.576696 dualbound = 3516798.819984, lowerbound=1279321.819984, norm of subgrad 34.928078 stepsize= 1.000000 +dualbound = 3516884.352546, lowerbound=1286479.352546, norm of subgrad 1134.743739 dualbound = 3516884.352546, lowerbound=1286479.352546, norm of subgrad 35.348728 stepsize= 1.000000 +dualbound = 3516939.409106, lowerbound=1278551.409106, norm of subgrad 1131.267612 dualbound = 3516939.409106, lowerbound=1278551.409106, norm of subgrad 35.637853 stepsize= 1.000000 +dualbound = 3517004.796580, lowerbound=1287705.796580, norm of subgrad 1135.291943 dualbound = 3517004.796580, lowerbound=1287705.796580, norm of subgrad 35.318373 stepsize= 1.000000 +dualbound = 3517086.470896, lowerbound=1275141.470896, norm of subgrad 1129.726281 dualbound = 3517086.470896, lowerbound=1275141.470896, norm of subgrad 34.952458 stepsize= 1.000000 +dualbound = 3517171.492691, lowerbound=1280162.492691, norm of subgrad 1131.979016 dualbound = 3517171.492691, lowerbound=1280162.492691, norm of subgrad 36.041945 stepsize= 1.000000 +dualbound = 3517202.694029, lowerbound=1280569.694029, norm of subgrad 1132.161072 dualbound = 3517202.694029, lowerbound=1280569.694029, norm of subgrad 35.358186 stepsize= 1.000000 +dualbound = 3517310.809192, lowerbound=1281834.809192, norm of subgrad 1132.698905 dualbound = 3517310.809192, lowerbound=1281834.809192, norm of subgrad 35.778697 stepsize= 1.000000 +dualbound = 3517387.157041, lowerbound=1280435.157041, norm of subgrad 1132.089730 dualbound = 3517387.157041, lowerbound=1280435.157041, norm of subgrad 35.613872 stepsize= 1.000000 +dualbound = 3517438.633404, lowerbound=1281810.633404, norm of subgrad 1132.700593 dualbound = 3517438.633404, lowerbound=1281810.633404, norm of subgrad 35.376212 stepsize= 1.000000 +dualbound = 3517513.242703, lowerbound=1281063.242703, norm of subgrad 1132.371513 dualbound = 3517513.242703, lowerbound=1281063.242703, norm of subgrad 35.729670 stepsize= 1.000000 +dualbound = 3517582.620420, lowerbound=1282300.620420, norm of subgrad 1132.908920 dualbound = 3517582.620420, lowerbound=1282300.620420, norm of subgrad 35.374818 stepsize= 1.000000 +dualbound = 3517660.882967, lowerbound=1282300.882967, norm of subgrad 1132.938164 dualbound = 3517660.882967, lowerbound=1282300.882967, norm of subgrad 36.417888 stepsize= 1.000000 +dualbound = 3517741.211302, lowerbound=1279135.211302, norm of subgrad 1131.511472 dualbound = 3517741.211302, lowerbound=1279135.211302, norm of subgrad 35.543330 stepsize= 1.000000 +dualbound = 3517813.935409, lowerbound=1283566.935409, norm of subgrad 1133.463689 dualbound = 3517813.935409, lowerbound=1283566.935409, norm of subgrad 35.294817 stepsize= 1.000000 +dualbound = 3517862.696486, lowerbound=1276040.696486, norm of subgrad 1130.156934 dualbound = 3517862.696486, lowerbound=1276040.696486, norm of subgrad 35.535350 stepsize= 1.000000 +dualbound = 3517927.453682, lowerbound=1280088.453682, norm of subgrad 1131.959564 dualbound = 3517927.453682, lowerbound=1280088.453682, norm of subgrad 36.176749 stepsize= 1.000000 +dualbound = 3518010.716024, lowerbound=1279233.716024, norm of subgrad 1131.579302 dualbound = 3518010.716024, lowerbound=1279233.716024, norm of subgrad 36.349173 stepsize= 1.000000 +dualbound = 3518065.631796, lowerbound=1278683.631796, norm of subgrad 1131.306162 dualbound = 3518065.631796, lowerbound=1278683.631796, norm of subgrad 34.998797 stepsize= 1.000000 +dualbound = 3518178.992008, lowerbound=1276263.992008, norm of subgrad 1130.257932 dualbound = 3518178.992008, lowerbound=1276263.992008, norm of subgrad 36.501510 stepsize= 1.000000 +dualbound = 3518205.092797, lowerbound=1284236.092797, norm of subgrad 1133.802493 dualbound = 3518205.092797, lowerbound=1284236.092797, norm of subgrad 36.029166 stepsize= 1.000000 +dualbound = 3518301.924363, lowerbound=1284231.924363, norm of subgrad 1133.793599 dualbound = 3518301.924363, lowerbound=1284231.924363, norm of subgrad 36.780859 stepsize= 1.000000 +dualbound = 3518370.127043, lowerbound=1284642.127043, norm of subgrad 1133.944499 dualbound = 3518370.127043, lowerbound=1284642.127043, norm of subgrad 35.442950 stepsize= 1.000000 +dualbound = 3518459.189984, lowerbound=1278539.189984, norm of subgrad 1131.273703 dualbound = 3518459.189984, lowerbound=1278539.189984, norm of subgrad 36.470028 stepsize= 1.000000 +dualbound = 3518500.764761, lowerbound=1284380.764761, norm of subgrad 1133.817783 dualbound = 3518500.764761, lowerbound=1284380.764761, norm of subgrad 34.692575 stepsize= 1.000000 +dualbound = 3518590.692015, lowerbound=1286179.692015, norm of subgrad 1134.614336 dualbound = 3518590.692015, lowerbound=1286179.692015, norm of subgrad 35.495454 stepsize= 1.000000 +dualbound = 3518662.932878, lowerbound=1280613.932878, norm of subgrad 1132.184584 dualbound = 3518662.932878, lowerbound=1280613.932878, norm of subgrad 36.058853 stepsize= 1.000000 +dualbound = 3518727.867690, lowerbound=1280624.867690, norm of subgrad 1132.181906 dualbound = 3518727.867690, lowerbound=1280624.867690, norm of subgrad 35.720230 stepsize= 1.000000 +dualbound = 3518823.228331, lowerbound=1283671.228331, norm of subgrad 1133.500873 dualbound = 3518823.228331, lowerbound=1283671.228331, norm of subgrad 35.332147 stepsize= 1.000000 +dualbound = 3518885.693365, lowerbound=1281691.693365, norm of subgrad 1132.660008 dualbound = 3518885.693365, lowerbound=1281691.693365, norm of subgrad 35.909122 stepsize= 1.000000 +dualbound = 3518968.548288, lowerbound=1284387.548288, norm of subgrad 1133.830476 dualbound = 3518968.548288, lowerbound=1284387.548288, norm of subgrad 35.592906 stepsize= 1.000000 +dualbound = 3519007.429202, lowerbound=1280671.429202, norm of subgrad 1132.209534 dualbound = 3519007.429202, lowerbound=1280671.429202, norm of subgrad 35.579220 stepsize= 1.000000 +dualbound = 3519108.062268, lowerbound=1281691.062268, norm of subgrad 1132.638540 dualbound = 3519108.062268, lowerbound=1281691.062268, norm of subgrad 35.771959 stepsize= 1.000000 +dualbound = 3519158.467682, lowerbound=1279345.467682, norm of subgrad 1131.596424 dualbound = 3519158.467682, lowerbound=1279345.467682, norm of subgrad 34.862665 stepsize= 1.000000 +dualbound = 3519255.447016, lowerbound=1281794.447016, norm of subgrad 1132.680205 dualbound = 3519255.447016, lowerbound=1281794.447016, norm of subgrad 35.594653 stepsize= 1.000000 +dualbound = 3519312.040265, lowerbound=1280718.040265, norm of subgrad 1132.244249 dualbound = 3519312.040265, lowerbound=1280718.040265, norm of subgrad 36.271108 stepsize= 1.000000 +dualbound = 3519388.035993, lowerbound=1282345.035993, norm of subgrad 1132.917047 dualbound = 3519388.035993, lowerbound=1282345.035993, norm of subgrad 35.099797 stepsize= 1.000000 +dualbound = 3519450.903770, lowerbound=1280495.903770, norm of subgrad 1132.109934 dualbound = 3519450.903770, lowerbound=1280495.903770, norm of subgrad 35.211756 stepsize= 1.000000 +dualbound = 3519541.123768, lowerbound=1276149.123768, norm of subgrad 1130.204019 dualbound = 3519541.123768, lowerbound=1276149.123768, norm of subgrad 36.086285 stepsize= 1.000000 +dualbound = 3519588.320473, lowerbound=1279390.320473, norm of subgrad 1131.648497 dualbound = 3519588.320473, lowerbound=1279390.320473, norm of subgrad 35.849640 stepsize= 1.000000 +dualbound = 3519656.713075, lowerbound=1285357.713075, norm of subgrad 1134.278940 dualbound = 3519656.713075, lowerbound=1285357.713075, norm of subgrad 36.047089 stepsize= 1.000000 +dualbound = 3519731.337697, lowerbound=1283621.337697, norm of subgrad 1133.501803 dualbound = 3519731.337697, lowerbound=1283621.337697, norm of subgrad 35.771841 stepsize= 1.000000 +dualbound = 3519822.578393, lowerbound=1284727.578393, norm of subgrad 1133.977327 dualbound = 3519822.578393, lowerbound=1284727.578393, norm of subgrad 35.612367 stepsize= 1.000000 +dualbound = 3519895.948975, lowerbound=1277729.948975, norm of subgrad 1130.930126 dualbound = 3519895.948975, lowerbound=1277729.948975, norm of subgrad 36.692923 stepsize= 1.000000 +dualbound = 3519924.241508, lowerbound=1286914.241508, norm of subgrad 1134.974996 dualbound = 3519924.241508, lowerbound=1286914.241508, norm of subgrad 35.809112 stepsize= 1.000000 +dualbound = 3520014.657445, lowerbound=1282494.657445, norm of subgrad 1132.981314 dualbound = 3520014.657445, lowerbound=1282494.657445, norm of subgrad 35.247921 stepsize= 1.000000 +dualbound = 3520100.775588, lowerbound=1284393.775588, norm of subgrad 1133.827930 dualbound = 3520100.775588, lowerbound=1284393.775588, norm of subgrad 35.469961 stepsize= 1.000000 +dualbound = 3520180.395221, lowerbound=1276155.395221, norm of subgrad 1130.211659 dualbound = 3520180.395221, lowerbound=1276155.395221, norm of subgrad 36.091822 stepsize= 1.000000 +dualbound = 3520235.252234, lowerbound=1288290.252234, norm of subgrad 1135.562086 dualbound = 3520235.252234, lowerbound=1288290.252234, norm of subgrad 35.578884 stepsize= 1.000000 +dualbound = 3520312.376458, lowerbound=1280374.376458, norm of subgrad 1132.058910 dualbound = 3520312.376458, lowerbound=1280374.376458, norm of subgrad 35.498228 stepsize= 1.000000 +dualbound = 3520398.998893, lowerbound=1287212.998893, norm of subgrad 1135.083256 dualbound = 3520398.998893, lowerbound=1287212.998893, norm of subgrad 35.883456 stepsize= 1.000000 +dualbound = 3520435.447559, lowerbound=1280325.447559, norm of subgrad 1132.050550 dualbound = 3520435.447559, lowerbound=1280325.447559, norm of subgrad 35.347541 stepsize= 1.000000 +dualbound = 3520529.945509, lowerbound=1283981.945509, norm of subgrad 1133.681589 dualbound = 3520529.945509, lowerbound=1283981.945509, norm of subgrad 36.694658 stepsize= 1.000000 +dualbound = 3520581.210714, lowerbound=1281519.210714, norm of subgrad 1132.573711 dualbound = 3520581.210714, lowerbound=1281519.210714, norm of subgrad 35.429722 stepsize= 1.000000 +dualbound = 3520686.723243, lowerbound=1280171.723243, norm of subgrad 1131.964983 dualbound = 3520686.723243, lowerbound=1280171.723243, norm of subgrad 35.756294 stepsize= 1.000000 +dualbound = 3520763.017825, lowerbound=1275607.017825, norm of subgrad 1129.955759 dualbound = 3520763.017825, lowerbound=1275607.017825, norm of subgrad 35.627161 stepsize= 1.000000 +dualbound = 3520815.599037, lowerbound=1280452.599037, norm of subgrad 1132.108475 dualbound = 3520815.599037, lowerbound=1280452.599037, norm of subgrad 35.631183 stepsize= 1.000000 +dualbound = 3520897.465003, lowerbound=1281113.465003, norm of subgrad 1132.382650 dualbound = 3520897.465003, lowerbound=1281113.465003, norm of subgrad 35.480501 stepsize= 1.000000 +dualbound = 3520976.885772, lowerbound=1282478.885772, norm of subgrad 1132.996419 dualbound = 3520976.885772, lowerbound=1282478.885772, norm of subgrad 35.796938 stepsize= 1.000000 +dualbound = 3521033.145299, lowerbound=1282115.145299, norm of subgrad 1132.861044 dualbound = 3521033.145299, lowerbound=1282115.145299, norm of subgrad 36.266507 stepsize= 1.000000 +dualbound = 3521094.104180, lowerbound=1283790.104180, norm of subgrad 1133.582421 dualbound = 3521094.104180, lowerbound=1283790.104180, norm of subgrad 35.776513 stepsize= 1.000000 +dualbound = 3521182.738368, lowerbound=1280090.738368, norm of subgrad 1131.939812 dualbound = 3521182.738368, lowerbound=1280090.738368, norm of subgrad 35.855741 stepsize= 1.000000 +dualbound = 3521246.317744, lowerbound=1283454.317744, norm of subgrad 1133.433861 dualbound = 3521246.317744, lowerbound=1283454.317744, norm of subgrad 35.799153 stepsize= 1.000000 +dualbound = 3521337.742188, lowerbound=1282952.742188, norm of subgrad 1133.220077 dualbound = 3521337.742188, lowerbound=1282952.742188, norm of subgrad 36.420110 stepsize= 1.000000 +dualbound = 3521377.670465, lowerbound=1288864.670465, norm of subgrad 1135.803535 dualbound = 3521377.670465, lowerbound=1288864.670465, norm of subgrad 34.998975 stepsize= 1.000000 +dualbound = 3521492.320485, lowerbound=1278723.320485, norm of subgrad 1131.306024 dualbound = 3521492.320485, lowerbound=1278723.320485, norm of subgrad 35.279598 stepsize= 1.000000 +dualbound = 3521528.655673, lowerbound=1287696.655673, norm of subgrad 1135.314342 dualbound = 3521528.655673, lowerbound=1287696.655673, norm of subgrad 35.753814 stepsize= 1.000000 +dualbound = 3521600.372581, lowerbound=1279429.372581, norm of subgrad 1131.656915 dualbound = 3521600.372581, lowerbound=1279429.372581, norm of subgrad 35.912629 stepsize= 1.000000 +dualbound = 3521649.618258, lowerbound=1280997.618258, norm of subgrad 1132.365497 dualbound = 3521649.618258, lowerbound=1280997.618258, norm of subgrad 36.100494 stepsize= 1.000000 +dualbound = 3521747.277938, lowerbound=1277370.277938, norm of subgrad 1130.747221 dualbound = 3521747.277938, lowerbound=1277370.277938, norm of subgrad 36.285805 stepsize= 1.000000 +dualbound = 3521812.821265, lowerbound=1288191.821265, norm of subgrad 1135.505976 dualbound = 3521812.821265, lowerbound=1288191.821265, norm of subgrad 35.320579 stepsize= 1.000000 +dualbound = 3521906.581611, lowerbound=1275850.581611, norm of subgrad 1130.065742 dualbound = 3521906.581611, lowerbound=1275850.581611, norm of subgrad 35.941068 stepsize= 1.000000 +dualbound = 3521963.928169, lowerbound=1285618.928169, norm of subgrad 1134.379534 dualbound = 3521963.928169, lowerbound=1285618.928169, norm of subgrad 35.430870 stepsize= 1.000000 +dualbound = 3522041.714687, lowerbound=1280377.714687, norm of subgrad 1132.062151 dualbound = 3522041.714687, lowerbound=1280377.714687, norm of subgrad 35.563837 stepsize= 1.000000 +dualbound = 3522105.059904, lowerbound=1283255.059904, norm of subgrad 1133.320811 dualbound = 3522105.059904, lowerbound=1283255.059904, norm of subgrad 34.990645 stepsize= 1.000000 +dualbound = 3522197.093370, lowerbound=1277610.093370, norm of subgrad 1130.847953 dualbound = 3522197.093370, lowerbound=1277610.093370, norm of subgrad 36.042107 stepsize= 1.000000 +dualbound = 3522261.248729, lowerbound=1276304.248729, norm of subgrad 1130.260699 dualbound = 3522261.248729, lowerbound=1276304.248729, norm of subgrad 35.343392 stepsize= 1.000000 +dualbound = 3522333.590582, lowerbound=1278868.590582, norm of subgrad 1131.409559 dualbound = 3522333.590582, lowerbound=1278868.590582, norm of subgrad 35.935245 stepsize= 1.000000 +dualbound = 3522384.042761, lowerbound=1283735.042761, norm of subgrad 1133.571808 dualbound = 3522384.042761, lowerbound=1283735.042761, norm of subgrad 36.061783 stepsize= 1.000000 +dualbound = 3522477.211326, lowerbound=1279455.211326, norm of subgrad 1131.673191 dualbound = 3522477.211326, lowerbound=1279455.211326, norm of subgrad 36.361636 stepsize= 1.000000 +dualbound = 3522549.584776, lowerbound=1288722.584776, norm of subgrad 1135.750670 dualbound = 3522549.584776, lowerbound=1288722.584776, norm of subgrad 35.768330 stepsize= 1.000000 +dualbound = 3522610.566641, lowerbound=1274249.566641, norm of subgrad 1129.393008 dualbound = 3522610.566641, lowerbound=1274249.566641, norm of subgrad 36.605763 stepsize= 1.000000 +dualbound = 3522674.278656, lowerbound=1281910.278656, norm of subgrad 1132.740605 dualbound = 3522674.278656, lowerbound=1281910.278656, norm of subgrad 35.421914 stepsize= 1.000000 +dualbound = 3522768.781926, lowerbound=1283207.781926, norm of subgrad 1133.294658 dualbound = 3522768.781926, lowerbound=1283207.781926, norm of subgrad 35.263342 stepsize= 1.000000 +dualbound = 3522842.386683, lowerbound=1285613.386683, norm of subgrad 1134.352409 dualbound = 3522842.386683, lowerbound=1285613.386683, norm of subgrad 34.865524 stepsize= 1.000000 +dualbound = 3522898.526185, lowerbound=1281724.526185, norm of subgrad 1132.640069 dualbound = 3522898.526185, lowerbound=1281724.526185, norm of subgrad 34.715119 stepsize= 1.000000 +dualbound = 3522962.235701, lowerbound=1289654.235701, norm of subgrad 1136.173946 dualbound = 3522962.235701, lowerbound=1289654.235701, norm of subgrad 36.065351 stepsize= 1.000000 +dualbound = 3523042.589409, lowerbound=1281167.589409, norm of subgrad 1132.401249 dualbound = 3523042.589409, lowerbound=1281167.589409, norm of subgrad 35.289569 stepsize= 1.000000 +dualbound = 3523120.086568, lowerbound=1286854.086568, norm of subgrad 1134.893866 dualbound = 3523120.086568, lowerbound=1286854.086568, norm of subgrad 34.749060 stepsize= 1.000000 +dualbound = 3523194.345768, lowerbound=1276381.345768, norm of subgrad 1130.280649 dualbound = 3523194.345768, lowerbound=1276381.345768, norm of subgrad 35.032259 stepsize= 1.000000 +dualbound = 3523252.850471, lowerbound=1288487.850471, norm of subgrad 1135.662736 dualbound = 3523252.850471, lowerbound=1288487.850471, norm of subgrad 36.062511 stepsize= 1.000000 +dualbound = 3523282.835825, lowerbound=1278901.835825, norm of subgrad 1131.432647 dualbound = 3523282.835825, lowerbound=1278901.835825, norm of subgrad 35.608782 stepsize= 1.000000 +dualbound = 3523388.786212, lowerbound=1287020.786212, norm of subgrad 1135.006954 dualbound = 3523388.786212, lowerbound=1287020.786212, norm of subgrad 36.413602 stepsize= 1.000000 +dualbound = 3523458.021026, lowerbound=1281770.021026, norm of subgrad 1132.681783 dualbound = 3523458.021026, lowerbound=1281770.021026, norm of subgrad 35.598242 stepsize= 1.000000 +dualbound = 3523537.320030, lowerbound=1288663.320030, norm of subgrad 1135.726781 dualbound = 3523537.320030, lowerbound=1288663.320030, norm of subgrad 35.934649 stepsize= 1.000000 +dualbound = 3523603.305060, lowerbound=1278985.305060, norm of subgrad 1131.465556 dualbound = 3523603.305060, lowerbound=1278985.305060, norm of subgrad 35.985900 stepsize= 1.000000 +dualbound = 3523670.539128, lowerbound=1285120.539128, norm of subgrad 1134.144849 dualbound = 3523670.539128, lowerbound=1285120.539128, norm of subgrad 35.088945 stepsize= 1.000000 +dualbound = 3523744.656608, lowerbound=1279853.656608, norm of subgrad 1131.843035 dualbound = 3523744.656608, lowerbound=1279853.656608, norm of subgrad 35.904282 stepsize= 1.000000 +dualbound = 3523815.808740, lowerbound=1286285.808740, norm of subgrad 1134.681809 dualbound = 3523815.808740, lowerbound=1286285.808740, norm of subgrad 35.890836 stepsize= 1.000000 +dualbound = 3523878.806198, lowerbound=1279255.806198, norm of subgrad 1131.587737 dualbound = 3523878.806198, lowerbound=1279255.806198, norm of subgrad 36.027732 stepsize= 1.000000 +dualbound = 3523966.755583, lowerbound=1279961.755583, norm of subgrad 1131.882395 dualbound = 3523966.755583, lowerbound=1279961.755583, norm of subgrad 35.832239 stepsize= 1.000000 +dualbound = 3524022.282861, lowerbound=1277578.282861, norm of subgrad 1130.856880 dualbound = 3524022.282861, lowerbound=1277578.282861, norm of subgrad 36.256410 stepsize= 1.000000 +dualbound = 3524089.419909, lowerbound=1281083.419909, norm of subgrad 1132.381305 dualbound = 3524089.419909, lowerbound=1281083.419909, norm of subgrad 35.653009 stepsize= 1.000000 +dualbound = 3524184.245930, lowerbound=1285808.245930, norm of subgrad 1134.449314 dualbound = 3524184.245930, lowerbound=1285808.245930, norm of subgrad 35.522191 stepsize= 1.000000 +dualbound = 3524256.020711, lowerbound=1282044.020711, norm of subgrad 1132.826121 dualbound = 3524256.020711, lowerbound=1282044.020711, norm of subgrad 36.369971 stepsize= 1.000000 +dualbound = 3524288.861409, lowerbound=1287370.861409, norm of subgrad 1135.178339 dualbound = 3524288.861409, lowerbound=1287370.861409, norm of subgrad 35.942185 stepsize= 1.000000 +dualbound = 3524386.784421, lowerbound=1284390.784421, norm of subgrad 1133.811177 dualbound = 3524386.784421, lowerbound=1284390.784421, norm of subgrad 35.141471 stepsize= 1.000000 +dualbound = 3524472.615126, lowerbound=1279643.615126, norm of subgrad 1131.725062 dualbound = 3524472.615126, lowerbound=1279643.615126, norm of subgrad 35.267984 stepsize= 1.000000 +dualbound = 3524541.022004, lowerbound=1286625.022004, norm of subgrad 1134.821582 dualbound = 3524541.022004, lowerbound=1286625.022004, norm of subgrad 35.544435 stepsize= 1.000000 +dualbound = 3524599.381557, lowerbound=1283725.381557, norm of subgrad 1133.547697 dualbound = 3524599.381557, lowerbound=1283725.381557, norm of subgrad 35.543770 stepsize= 1.000000 +dualbound = 3524661.829694, lowerbound=1281892.829694, norm of subgrad 1132.754532 dualbound = 3524661.829694, lowerbound=1281892.829694, norm of subgrad 36.089446 stepsize= 1.000000 +dualbound = 3524720.358719, lowerbound=1284737.358719, norm of subgrad 1134.012504 dualbound = 3524720.358719, lowerbound=1284737.358719, norm of subgrad 36.132105 stepsize= 1.000000 +dualbound = 3524793.311717, lowerbound=1281345.311717, norm of subgrad 1132.530049 dualbound = 3524793.311717, lowerbound=1281345.311717, norm of subgrad 36.768913 stepsize= 1.000000 +dualbound = 3524850.532443, lowerbound=1281988.532443, norm of subgrad 1132.815313 dualbound = 3524850.532443, lowerbound=1281988.532443, norm of subgrad 36.595365 stepsize= 1.000000 +dualbound = 3524953.849771, lowerbound=1280561.849771, norm of subgrad 1132.132876 dualbound = 3524953.849771, lowerbound=1280561.849771, norm of subgrad 35.585353 stepsize= 1.000000 +dualbound = 3525024.269422, lowerbound=1283830.269422, norm of subgrad 1133.586022 dualbound = 3525024.269422, lowerbound=1283830.269422, norm of subgrad 35.460114 stepsize= 1.000000 +dualbound = 3525119.367094, lowerbound=1283731.367094, norm of subgrad 1133.538869 dualbound = 3525119.367094, lowerbound=1283731.367094, norm of subgrad 35.694505 stepsize= 1.000000 +dualbound = 3525167.749544, lowerbound=1279800.749544, norm of subgrad 1131.832474 dualbound = 3525167.749544, lowerbound=1279800.749544, norm of subgrad 35.949721 stepsize= 1.000000 +dualbound = 3525245.748251, lowerbound=1285550.748251, norm of subgrad 1134.362265 dualbound = 3525245.748251, lowerbound=1285550.748251, norm of subgrad 36.124766 stepsize= 1.000000 +dualbound = 3525306.866521, lowerbound=1279335.866521, norm of subgrad 1131.608089 dualbound = 3525306.866521, lowerbound=1279335.866521, norm of subgrad 35.526304 stepsize= 1.000000 +dualbound = 3525412.362889, lowerbound=1284527.362889, norm of subgrad 1133.888162 dualbound = 3525412.362889, lowerbound=1284527.362889, norm of subgrad 35.784024 stepsize= 1.000000 +dualbound = 3525461.017627, lowerbound=1284175.017627, norm of subgrad 1133.733222 dualbound = 3525461.017627, lowerbound=1284175.017627, norm of subgrad 34.995067 stepsize= 1.000000 +dualbound = 3525537.445858, lowerbound=1282007.445858, norm of subgrad 1132.790557 dualbound = 3525537.445858, lowerbound=1282007.445858, norm of subgrad 35.824967 stepsize= 1.000000 +dualbound = 3525605.682067, lowerbound=1283766.682067, norm of subgrad 1133.562386 dualbound = 3525605.682067, lowerbound=1283766.682067, norm of subgrad 35.570159 stepsize= 1.000000 +dualbound = 3525659.671474, lowerbound=1278136.671474, norm of subgrad 1131.094015 dualbound = 3525659.671474, lowerbound=1278136.671474, norm of subgrad 35.930341 stepsize= 1.000000 +dualbound = 3525731.586077, lowerbound=1285489.586077, norm of subgrad 1134.329135 dualbound = 3525731.586077, lowerbound=1285489.586077, norm of subgrad 35.845706 stepsize= 1.000000 +dualbound = 3525819.706676, lowerbound=1282420.706676, norm of subgrad 1132.956180 dualbound = 3525819.706676, lowerbound=1282420.706676, norm of subgrad 35.455897 stepsize= 1.000000 +dualbound = 3525868.575964, lowerbound=1283381.575964, norm of subgrad 1133.398242 dualbound = 3525868.575964, lowerbound=1283381.575964, norm of subgrad 35.480548 stepsize= 1.000000 +dualbound = 3525958.159878, lowerbound=1280313.159878, norm of subgrad 1132.058373 dualbound = 3525958.159878, lowerbound=1280313.159878, norm of subgrad 36.504574 stepsize= 1.000000 +dualbound = 3526005.656163, lowerbound=1284138.656163, norm of subgrad 1133.736590 dualbound = 3526005.656163, lowerbound=1284138.656163, norm of subgrad 35.601914 stepsize= 1.000000 +dualbound = 3526090.061627, lowerbound=1284009.061627, norm of subgrad 1133.672819 dualbound = 3526090.061627, lowerbound=1284009.061627, norm of subgrad 35.908292 stepsize= 1.000000 +dualbound = 3526160.176346, lowerbound=1278961.176346, norm of subgrad 1131.437217 dualbound = 3526160.176346, lowerbound=1278961.176346, norm of subgrad 35.484007 stepsize= 1.000000 +dualbound = 3526250.601754, lowerbound=1281690.601754, norm of subgrad 1132.644517 dualbound = 3526250.601754, lowerbound=1281690.601754, norm of subgrad 35.824927 stepsize= 1.000000 +dualbound = 3526305.613864, lowerbound=1285536.613864, norm of subgrad 1134.318568 dualbound = 3526305.613864, lowerbound=1285536.613864, norm of subgrad 34.597863 stepsize= 1.000000 +dualbound = 3526399.932348, lowerbound=1283378.932348, norm of subgrad 1133.384724 dualbound = 3526399.932348, lowerbound=1283378.932348, norm of subgrad 35.725600 stepsize= 1.000000 +dualbound = 3526435.242865, lowerbound=1281302.242865, norm of subgrad 1132.491167 dualbound = 3526435.242865, lowerbound=1281302.242865, norm of subgrad 35.627384 stepsize= 1.000000 +dualbound = 3526505.853518, lowerbound=1285040.853518, norm of subgrad 1134.141902 dualbound = 3526505.853518, lowerbound=1285040.853518, norm of subgrad 36.160900 stepsize= 1.000000 +dualbound = 3526576.168380, lowerbound=1282585.168380, norm of subgrad 1133.057443 dualbound = 3526576.168380, lowerbound=1282585.168380, norm of subgrad 36.115300 stepsize= 1.000000 +dualbound = 3526646.814209, lowerbound=1282810.814209, norm of subgrad 1133.138921 dualbound = 3526646.814209, lowerbound=1282810.814209, norm of subgrad 35.547796 stepsize= 1.000000 +dualbound = 3526747.621761, lowerbound=1283475.621761, norm of subgrad 1133.413703 dualbound = 3526747.621761, lowerbound=1283475.621761, norm of subgrad 35.380892 stepsize= 1.000000 +dualbound = 3526809.998493, lowerbound=1284568.998493, norm of subgrad 1133.924159 dualbound = 3526809.998493, lowerbound=1284568.998493, norm of subgrad 35.740408 stepsize= 1.000000 +dualbound = 3526876.251967, lowerbound=1280872.251967, norm of subgrad 1132.291593 dualbound = 3526876.251967, lowerbound=1280872.251967, norm of subgrad 35.752671 stepsize= 1.000000 +dualbound = 3526939.802231, lowerbound=1282638.802231, norm of subgrad 1133.033010 dualbound = 3526939.802231, lowerbound=1282638.802231, norm of subgrad 34.475357 stepsize= 1.000000 +dualbound = 3527023.309837, lowerbound=1280577.309837, norm of subgrad 1132.132638 dualbound = 3527023.309837, lowerbound=1280577.309837, norm of subgrad 35.078592 stepsize= 1.000000 +dualbound = 3527109.297641, lowerbound=1286740.297641, norm of subgrad 1134.827431 dualbound = 3527109.297641, lowerbound=1286740.297641, norm of subgrad 34.336392 stepsize= 1.000000 +dualbound = 3527161.790520, lowerbound=1278244.790520, norm of subgrad 1131.113076 dualbound = 3527161.790520, lowerbound=1278244.790520, norm of subgrad 34.992755 stepsize= 1.000000 +dualbound = 3527216.172574, lowerbound=1286046.172574, norm of subgrad 1134.581497 dualbound = 3527216.172574, lowerbound=1286046.172574, norm of subgrad 35.824322 stepsize= 1.000000 +dualbound = 3527279.553259, lowerbound=1278875.553259, norm of subgrad 1131.428545 dualbound = 3527279.553259, lowerbound=1278875.553259, norm of subgrad 36.309512 stepsize= 1.000000 +dualbound = 3527356.681790, lowerbound=1287939.681790, norm of subgrad 1135.384817 dualbound = 3527356.681790, lowerbound=1287939.681790, norm of subgrad 35.158620 stepsize= 1.000000 +dualbound = 3527434.932007, lowerbound=1279194.932007, norm of subgrad 1131.542722 dualbound = 3527434.932007, lowerbound=1279194.932007, norm of subgrad 35.668617 stepsize= 1.000000 +dualbound = 3527515.275781, lowerbound=1284907.275781, norm of subgrad 1134.067139 dualbound = 3527515.275781, lowerbound=1284907.275781, norm of subgrad 35.795863 stepsize= 1.000000 +dualbound = 3527575.965750, lowerbound=1287022.965750, norm of subgrad 1135.013201 dualbound = 3527575.965750, lowerbound=1287022.965750, norm of subgrad 35.953998 stepsize= 1.000000 +dualbound = 3527621.878243, lowerbound=1286775.878243, norm of subgrad 1134.892893 dualbound = 3527621.878243, lowerbound=1286775.878243, norm of subgrad 35.382375 stepsize= 1.000000 +dualbound = 3527725.710013, lowerbound=1284850.710013, norm of subgrad 1134.032940 dualbound = 3527725.710013, lowerbound=1284850.710013, norm of subgrad 35.830598 stepsize= 1.000000 +dualbound = 3527799.906608, lowerbound=1282792.906608, norm of subgrad 1133.123077 dualbound = 3527799.906608, lowerbound=1282792.906608, norm of subgrad 35.343975 stepsize= 1.000000 +dualbound = 3527858.081693, lowerbound=1284306.081693, norm of subgrad 1133.786171 dualbound = 3527858.081693, lowerbound=1284306.081693, norm of subgrad 34.973920 stepsize= 1.000000 +dualbound = 3527950.699471, lowerbound=1280195.699471, norm of subgrad 1131.971157 dualbound = 3527950.699471, lowerbound=1280195.699471, norm of subgrad 35.434697 stepsize= 1.000000 +dualbound = 3528006.950174, lowerbound=1285166.950174, norm of subgrad 1134.178976 dualbound = 3528006.950174, lowerbound=1285166.950174, norm of subgrad 35.373022 stepsize= 1.000000 +dualbound = 3528074.658075, lowerbound=1286433.658075, norm of subgrad 1134.733298 dualbound = 3528074.658075, lowerbound=1286433.658075, norm of subgrad 35.407738 stepsize= 1.000000 +dualbound = 3528140.203572, lowerbound=1281694.203572, norm of subgrad 1132.661116 dualbound = 3528140.203572, lowerbound=1281694.203572, norm of subgrad 35.951989 stepsize= 1.000000 +dualbound = 3528221.223495, lowerbound=1288016.223495, norm of subgrad 1135.462119 dualbound = 3528221.223495, lowerbound=1288016.223495, norm of subgrad 36.592621 stepsize= 1.000000 +dualbound = 3528278.303406, lowerbound=1277898.303406, norm of subgrad 1130.984661 dualbound = 3528278.303406, lowerbound=1277898.303406, norm of subgrad 35.848011 stepsize= 1.000000 +dualbound = 3528360.691695, lowerbound=1288476.691695, norm of subgrad 1135.615556 dualbound = 3528360.691695, lowerbound=1288476.691695, norm of subgrad 35.048371 stepsize= 1.000000 +dualbound = 3528429.138580, lowerbound=1280133.138580, norm of subgrad 1131.925854 dualbound = 3528429.138580, lowerbound=1280133.138580, norm of subgrad 34.517342 stepsize= 1.000000 +dualbound = 3528531.537810, lowerbound=1282098.537810, norm of subgrad 1132.814874 dualbound = 3528531.537810, lowerbound=1282098.537810, norm of subgrad 35.684720 stepsize= 1.000000 +dualbound = 3528562.865881, lowerbound=1280950.865881, norm of subgrad 1132.312618 dualbound = 3528562.865881, lowerbound=1280950.865881, norm of subgrad 34.818502 stepsize= 1.000000 +dualbound = 3528650.661942, lowerbound=1285442.661942, norm of subgrad 1134.286852 dualbound = 3528650.661942, lowerbound=1285442.661942, norm of subgrad 35.380730 stepsize= 1.000000 +dualbound = 3528704.036002, lowerbound=1277990.036002, norm of subgrad 1130.994269 dualbound = 3528704.036002, lowerbound=1277990.036002, norm of subgrad 34.804799 stepsize= 1.000000 +dualbound = 3528792.261442, lowerbound=1287047.261442, norm of subgrad 1135.002318 dualbound = 3528792.261442, lowerbound=1287047.261442, norm of subgrad 35.654249 stepsize= 1.000000 +dualbound = 3528835.320023, lowerbound=1283979.320023, norm of subgrad 1133.691016 dualbound = 3528835.320023, lowerbound=1283979.320023, norm of subgrad 36.318846 stepsize= 1.000000 +dualbound = 3528888.169502, lowerbound=1286435.169502, norm of subgrad 1134.752030 dualbound = 3528888.169502, lowerbound=1286435.169502, norm of subgrad 35.774984 stepsize= 1.000000 +dualbound = 3528987.070366, lowerbound=1279602.070366, norm of subgrad 1131.734982 dualbound = 3528987.070366, lowerbound=1279602.070366, norm of subgrad 36.344200 stepsize= 1.000000 +dualbound = 3529038.613335, lowerbound=1284551.613335, norm of subgrad 1133.946477 dualbound = 3529038.613335, lowerbound=1284551.613335, norm of subgrad 36.531397 stepsize= 1.000000 +dualbound = 3529090.603633, lowerbound=1281279.603633, norm of subgrad 1132.471900 dualbound = 3529090.603633, lowerbound=1281279.603633, norm of subgrad 35.566702 stepsize= 1.000000 +dualbound = 3529184.646869, lowerbound=1287164.646869, norm of subgrad 1135.097197 dualbound = 3529184.646869, lowerbound=1287164.646869, norm of subgrad 37.081575 stepsize= 1.000000 +dualbound = 3529261.310557, lowerbound=1287872.310557, norm of subgrad 1135.378047 dualbound = 3529261.310557, lowerbound=1287872.310557, norm of subgrad 35.884031 stepsize= 1.000000 +dualbound = 3529321.622765, lowerbound=1284442.622765, norm of subgrad 1133.852999 dualbound = 3529321.622765, lowerbound=1284442.622765, norm of subgrad 35.218066 stepsize= 1.000000 +dualbound = 3529405.624050, lowerbound=1280741.624050, norm of subgrad 1132.197255 dualbound = 3529405.624050, lowerbound=1280741.624050, norm of subgrad 34.828168 stepsize= 1.000000 +dualbound = 3529481.431012, lowerbound=1287828.431012, norm of subgrad 1135.331859 dualbound = 3529481.431012, lowerbound=1287828.431012, norm of subgrad 35.011526 stepsize= 1.000000 +dualbound = 3529543.493376, lowerbound=1282939.493376, norm of subgrad 1133.193493 dualbound = 3529543.493376, lowerbound=1282939.493376, norm of subgrad 35.356221 stepsize= 1.000000 +dualbound = 3529604.989329, lowerbound=1292554.989329, norm of subgrad 1137.454610 dualbound = 3529604.989329, lowerbound=1292554.989329, norm of subgrad 36.186958 stepsize= 1.000000 +dualbound = 3529669.403660, lowerbound=1282368.403660, norm of subgrad 1132.951633 dualbound = 3529669.403660, lowerbound=1282368.403660, norm of subgrad 35.712943 stepsize= 1.000000 +dualbound = 3529744.475219, lowerbound=1282671.475219, norm of subgrad 1133.082731 dualbound = 3529744.475219, lowerbound=1282671.475219, norm of subgrad 35.778088 stepsize= 1.000000 +dualbound = 3529806.732052, lowerbound=1281469.732052, norm of subgrad 1132.540830 dualbound = 3529806.732052, lowerbound=1281469.732052, norm of subgrad 35.231475 stepsize= 1.000000 +dualbound = 3529892.273158, lowerbound=1281961.273158, norm of subgrad 1132.750755 dualbound = 3529892.273158, lowerbound=1281961.273158, norm of subgrad 35.334701 stepsize= 1.000000 +dualbound = 3529950.458092, lowerbound=1283665.458092, norm of subgrad 1133.518618 dualbound = 3529950.458092, lowerbound=1283665.458092, norm of subgrad 35.456804 stepsize= 1.000000 +dualbound = 3530017.833604, lowerbound=1285149.833604, norm of subgrad 1134.181129 dualbound = 3530017.833604, lowerbound=1285149.833604, norm of subgrad 35.838185 stepsize= 1.000000 +dualbound = 3530091.836327, lowerbound=1283093.836327, norm of subgrad 1133.280123 dualbound = 3530091.836327, lowerbound=1283093.836327, norm of subgrad 36.110978 stepsize= 1.000000 +dualbound = 3530149.200673, lowerbound=1282933.200673, norm of subgrad 1133.207484 dualbound = 3530149.200673, lowerbound=1282933.200673, norm of subgrad 35.824075 stepsize= 1.000000 +dualbound = 3530244.041522, lowerbound=1282390.041522, norm of subgrad 1132.931172 dualbound = 3530244.041522, lowerbound=1282390.041522, norm of subgrad 35.182962 stepsize= 1.000000 +dualbound = 3530306.928370, lowerbound=1285711.928370, norm of subgrad 1134.425374 dualbound = 3530306.928370, lowerbound=1285711.928370, norm of subgrad 35.663523 stepsize= 1.000000 +dualbound = 3530362.065202, lowerbound=1285739.065202, norm of subgrad 1134.459812 dualbound = 3530362.065202, lowerbound=1285739.065202, norm of subgrad 36.264815 stepsize= 1.000000 +dualbound = 3530439.522308, lowerbound=1283943.522308, norm of subgrad 1133.644354 dualbound = 3530439.522308, lowerbound=1283943.522308, norm of subgrad 35.825370 stepsize= 1.000000 +dualbound = 3530529.703599, lowerbound=1286035.703599, norm of subgrad 1134.567628 dualbound = 3530529.703599, lowerbound=1286035.703599, norm of subgrad 36.030283 stepsize= 1.000000 +dualbound = 3530585.830537, lowerbound=1281518.830537, norm of subgrad 1132.566480 dualbound = 3530585.830537, lowerbound=1281518.830537, norm of subgrad 35.272184 stepsize= 1.000000 +dualbound = 3530659.983949, lowerbound=1284679.983949, norm of subgrad 1133.951491 dualbound = 3530659.983949, lowerbound=1284679.983949, norm of subgrad 35.215812 stepsize= 1.000000 +dualbound = 3530741.649999, lowerbound=1277356.649999, norm of subgrad 1130.741195 dualbound = 3530741.649999, lowerbound=1277356.649999, norm of subgrad 36.064748 stepsize= 1.000000 +dualbound = 3530776.109062, lowerbound=1288490.109062, norm of subgrad 1135.663290 dualbound = 3530776.109062, lowerbound=1288490.109062, norm of subgrad 35.713570 stepsize= 1.000000 +dualbound = 3530878.880101, lowerbound=1281079.880101, norm of subgrad 1132.369145 dualbound = 3530878.880101, lowerbound=1281079.880101, norm of subgrad 35.815793 stepsize= 1.000000 +dualbound = 3530963.164294, lowerbound=1279894.164294, norm of subgrad 1131.840609 dualbound = 3530963.164294, lowerbound=1279894.164294, norm of subgrad 35.401754 stepsize= 1.000000 +dualbound = 3531019.165215, lowerbound=1281412.165215, norm of subgrad 1132.555590 dualbound = 3531019.165215, lowerbound=1281412.165215, norm of subgrad 36.414296 stepsize= 1.000000 +dualbound = 3531076.917962, lowerbound=1286466.917962, norm of subgrad 1134.758528 dualbound = 3531076.917962, lowerbound=1286466.917962, norm of subgrad 35.605516 stepsize= 1.000000 +dualbound = 3531146.939700, lowerbound=1286302.939700, norm of subgrad 1134.704781 dualbound = 3531146.939700, lowerbound=1286302.939700, norm of subgrad 36.359617 stepsize= 1.000000 +dualbound = 3531213.997307, lowerbound=1282218.997307, norm of subgrad 1132.887901 dualbound = 3531213.997307, lowerbound=1282218.997307, norm of subgrad 35.819794 stepsize= 1.000000 +dualbound = 3531304.934176, lowerbound=1287986.934176, norm of subgrad 1135.408268 dualbound = 3531304.934176, lowerbound=1287986.934176, norm of subgrad 35.439200 stepsize= 1.000000 +dualbound = 3531379.538323, lowerbound=1283345.538323, norm of subgrad 1133.377492 dualbound = 3531379.538323, lowerbound=1283345.538323, norm of subgrad 35.687591 stepsize= 1.000000 +dualbound = 3531442.527850, lowerbound=1284036.527850, norm of subgrad 1133.692872 dualbound = 3531442.527850, lowerbound=1284036.527850, norm of subgrad 35.860696 stepsize= 1.000000 +dualbound = 3531522.713530, lowerbound=1281225.713530, norm of subgrad 1132.426030 dualbound = 3531522.713530, lowerbound=1281225.713530, norm of subgrad 35.258838 stepsize= 1.000000 +dualbound = 3531584.365785, lowerbound=1282629.365785, norm of subgrad 1133.038554 dualbound = 3531584.365785, lowerbound=1282629.365785, norm of subgrad 34.765676 stepsize= 1.000000 +dualbound = 3531676.877014, lowerbound=1283155.877014, norm of subgrad 1133.251904 dualbound = 3531676.877014, lowerbound=1283155.877014, norm of subgrad 34.590623 stepsize= 1.000000 +dualbound = 3531747.092962, lowerbound=1288568.092962, norm of subgrad 1135.677812 dualbound = 3531747.092962, lowerbound=1288568.092962, norm of subgrad 35.583928 stepsize= 1.000000 +dualbound = 3531784.177222, lowerbound=1287420.177222, norm of subgrad 1135.161741 dualbound = 3531784.177222, lowerbound=1287420.177222, norm of subgrad 34.771889 stepsize= 1.000000 +dualbound = 3531878.308949, lowerbound=1284001.308949, norm of subgrad 1133.681308 dualbound = 3531878.308949, lowerbound=1284001.308949, norm of subgrad 36.416092 stepsize= 1.000000 +dualbound = 3531907.040758, lowerbound=1280455.040758, norm of subgrad 1132.124128 dualbound = 3531907.040758, lowerbound=1280455.040758, norm of subgrad 35.759360 stepsize= 1.000000 +dualbound = 3531998.724581, lowerbound=1285218.724581, norm of subgrad 1134.197833 dualbound = 3531998.724581, lowerbound=1285218.724581, norm of subgrad 35.744703 stepsize= 1.000000 +dualbound = 3532079.023738, lowerbound=1281836.023738, norm of subgrad 1132.707387 dualbound = 3532079.023738, lowerbound=1281836.023738, norm of subgrad 35.641256 stepsize= 1.000000 +dualbound = 3532136.784523, lowerbound=1288121.784523, norm of subgrad 1135.494071 dualbound = 3532136.784523, lowerbound=1288121.784523, norm of subgrad 35.815650 stepsize= 1.000000 +dualbound = 3532223.258471, lowerbound=1281500.258471, norm of subgrad 1132.555632 dualbound = 3532223.258471, lowerbound=1281500.258471, norm of subgrad 35.615642 stepsize= 1.000000 +dualbound = 3532278.777397, lowerbound=1285763.777397, norm of subgrad 1134.443378 dualbound = 3532278.777397, lowerbound=1285763.777397, norm of subgrad 35.405069 stepsize= 1.000000 +dualbound = 3532357.072735, lowerbound=1285167.072735, norm of subgrad 1134.171095 dualbound = 3532357.072735, lowerbound=1285167.072735, norm of subgrad 35.430147 stepsize= 1.000000 +dualbound = 3532427.157277, lowerbound=1280021.157277, norm of subgrad 1131.885664 dualbound = 3532427.157277, lowerbound=1280021.157277, norm of subgrad 34.843716 stepsize= 1.000000 +dualbound = 3532522.689243, lowerbound=1283189.689243, norm of subgrad 1133.297264 dualbound = 3532522.689243, lowerbound=1283189.689243, norm of subgrad 35.616456 stepsize= 1.000000 +dualbound = 3532591.221210, lowerbound=1285010.221210, norm of subgrad 1134.110321 dualbound = 3532591.221210, lowerbound=1285010.221210, norm of subgrad 35.560258 stepsize= 1.000000 +dualbound = 3532638.862290, lowerbound=1279241.862290, norm of subgrad 1131.586878 dualbound = 3532638.862290, lowerbound=1279241.862290, norm of subgrad 35.981121 stepsize= 1.000000 +dualbound = 3532712.386624, lowerbound=1286710.386624, norm of subgrad 1134.855668 dualbound = 3532712.386624, lowerbound=1286710.386624, norm of subgrad 35.503864 stepsize= 1.000000 +dualbound = 3532796.896738, lowerbound=1283487.896738, norm of subgrad 1133.422206 dualbound = 3532796.896738, lowerbound=1283487.896738, norm of subgrad 35.249257 stepsize= 1.000000 +dualbound = 3532852.427777, lowerbound=1287889.427777, norm of subgrad 1135.367530 dualbound = 3532852.427777, lowerbound=1287889.427777, norm of subgrad 35.007585 stepsize= 1.000000 +dualbound = 3532936.704832, lowerbound=1281420.704832, norm of subgrad 1132.531105 dualbound = 3532936.704832, lowerbound=1281420.704832, norm of subgrad 35.920427 stepsize= 1.000000 +dualbound = 3532989.450277, lowerbound=1285720.450277, norm of subgrad 1134.423400 dualbound = 3532989.450277, lowerbound=1285720.450277, norm of subgrad 35.337593 stepsize= 1.000000 +dualbound = 3533063.359305, lowerbound=1287764.359305, norm of subgrad 1135.330507 dualbound = 3533063.359305, lowerbound=1287764.359305, norm of subgrad 35.845628 stepsize= 1.000000 +dualbound = 3533115.394189, lowerbound=1283626.394189, norm of subgrad 1133.533588 dualbound = 3533115.394189, lowerbound=1283626.394189, norm of subgrad 36.387290 stepsize= 1.000000 +dualbound = 3533170.470577, lowerbound=1286478.470577, norm of subgrad 1134.764500 dualbound = 3533170.470577, lowerbound=1286478.470577, norm of subgrad 35.596016 stepsize= 1.000000 +dualbound = 3533261.627859, lowerbound=1280491.627859, norm of subgrad 1132.116879 dualbound = 3533261.627859, lowerbound=1280491.627859, norm of subgrad 35.890908 stepsize= 1.000000 +dualbound = 3533359.551727, lowerbound=1285307.551727, norm of subgrad 1134.226852 dualbound = 3533359.551727, lowerbound=1285307.551727, norm of subgrad 35.509490 stepsize= 1.000000 +dualbound = 3533413.880954, lowerbound=1288530.880954, norm of subgrad 1135.665832 dualbound = 3533413.880954, lowerbound=1288530.880954, norm of subgrad 35.501116 stepsize= 1.000000 +dualbound = 3533467.092883, lowerbound=1283983.092883, norm of subgrad 1133.673274 dualbound = 3533467.092883, lowerbound=1283983.092883, norm of subgrad 35.849853 stepsize= 1.000000 +dualbound = 3533556.982959, lowerbound=1281672.982959, norm of subgrad 1132.635856 dualbound = 3533556.982959, lowerbound=1281672.982959, norm of subgrad 35.789525 stepsize= 1.000000 +dualbound = 3533624.869139, lowerbound=1285789.869139, norm of subgrad 1134.445622 dualbound = 3533624.869139, lowerbound=1285789.869139, norm of subgrad 35.282945 stepsize= 1.000000 +dualbound = 3533685.291092, lowerbound=1280514.291092, norm of subgrad 1132.144996 dualbound = 3533685.291092, lowerbound=1280514.291092, norm of subgrad 36.033623 stepsize= 1.000000 +dualbound = 3533751.233856, lowerbound=1279764.233856, norm of subgrad 1131.769514 dualbound = 3533751.233856, lowerbound=1279764.233856, norm of subgrad 34.697878 stepsize= 1.000000 +dualbound = 3533848.480857, lowerbound=1288629.480857, norm of subgrad 1135.681945 dualbound = 3533848.480857, lowerbound=1288629.480857, norm of subgrad 35.231336 stepsize= 1.000000 +dualbound = 3533899.597706, lowerbound=1280602.597706, norm of subgrad 1132.134532 dualbound = 3533899.597706, lowerbound=1280602.597706, norm of subgrad 34.309137 stepsize= 1.000000 +dualbound = 3533971.721415, lowerbound=1285826.721415, norm of subgrad 1134.467594 dualbound = 3533971.721415, lowerbound=1285826.721415, norm of subgrad 35.526380 stepsize= 1.000000 +dualbound = 3534036.996077, lowerbound=1282033.996077, norm of subgrad 1132.808455 dualbound = 3534036.996077, lowerbound=1282033.996077, norm of subgrad 35.864671 stepsize= 1.000000 +dualbound = 3534101.943563, lowerbound=1285453.943563, norm of subgrad 1134.294029 dualbound = 3534101.943563, lowerbound=1285453.943563, norm of subgrad 35.127589 stepsize= 1.000000 +dualbound = 3534187.490453, lowerbound=1283197.490453, norm of subgrad 1133.293206 dualbound = 3534187.490453, lowerbound=1283197.490453, norm of subgrad 35.235591 stepsize= 1.000000 +dualbound = 3534234.251951, lowerbound=1285597.251951, norm of subgrad 1134.375269 dualbound = 3534234.251951, lowerbound=1285597.251951, norm of subgrad 35.450832 stepsize= 1.000000 +dualbound = 3534328.369546, lowerbound=1286845.369546, norm of subgrad 1134.912935 dualbound = 3534328.369546, lowerbound=1286845.369546, norm of subgrad 35.722788 stepsize= 1.000000 +dualbound = 3534387.431035, lowerbound=1284882.431035, norm of subgrad 1134.042517 dualbound = 3534387.431035, lowerbound=1284882.431035, norm of subgrad 35.057973 stepsize= 1.000000 +dualbound = 3534472.257243, lowerbound=1282845.257243, norm of subgrad 1133.144411 dualbound = 3534472.257243, lowerbound=1282845.257243, norm of subgrad 35.437638 stepsize= 1.000000 +dualbound = 3534525.547393, lowerbound=1283542.547393, norm of subgrad 1133.458225 dualbound = 3534525.547393, lowerbound=1283542.547393, norm of subgrad 35.189347 stepsize= 1.000000 +dualbound = 3534576.031005, lowerbound=1288756.031005, norm of subgrad 1135.787406 dualbound = 3534576.031005, lowerbound=1288756.031005, norm of subgrad 36.159143 stepsize= 1.000000 +dualbound = 3534668.682185, lowerbound=1281858.682185, norm of subgrad 1132.753143 dualbound = 3534668.682185, lowerbound=1281858.682185, norm of subgrad 36.927648 stepsize= 1.000000 +dualbound = 3534718.218721, lowerbound=1282614.218721, norm of subgrad 1133.060113 dualbound = 3534718.218721, lowerbound=1282614.218721, norm of subgrad 35.504035 stepsize= 1.000000 +dualbound = 3534832.191446, lowerbound=1283372.191446, norm of subgrad 1133.368956 dualbound = 3534832.191446, lowerbound=1283372.191446, norm of subgrad 35.594560 stepsize= 1.000000 +dualbound = 3534872.596802, lowerbound=1284462.596802, norm of subgrad 1133.899289 dualbound = 3534872.596802, lowerbound=1284462.596802, norm of subgrad 36.130394 stepsize= 1.000000 +dualbound = 3534929.871243, lowerbound=1284422.871243, norm of subgrad 1133.861928 dualbound = 3534929.871243, lowerbound=1284422.871243, norm of subgrad 35.738976 stepsize= 1.000000 +dualbound = 3535006.593126, lowerbound=1286803.593126, norm of subgrad 1134.938586 dualbound = 3535006.593126, lowerbound=1286803.593126, norm of subgrad 36.860845 stepsize= 1.000000 +dualbound = 3535081.865630, lowerbound=1284491.865630, norm of subgrad 1133.922778 dualbound = 3535081.865630, lowerbound=1284491.865630, norm of subgrad 36.936060 stepsize= 1.000000 +dualbound = 3535143.537263, lowerbound=1290664.537263, norm of subgrad 1136.630343 dualbound = 3535143.537263, lowerbound=1290664.537263, norm of subgrad 36.409774 stepsize= 1.000000 +dualbound = 3535226.518555, lowerbound=1281765.518555, norm of subgrad 1132.689065 dualbound = 3535226.518555, lowerbound=1281765.518555, norm of subgrad 36.082978 stepsize= 1.000000 +dualbound = 3535300.763176, lowerbound=1281943.763176, norm of subgrad 1132.758475 dualbound = 3535300.763176, lowerbound=1281943.763176, norm of subgrad 35.668538 stepsize= 1.000000 +dualbound = 3535363.781961, lowerbound=1278555.781961, norm of subgrad 1131.224903 dualbound = 3535363.781961, lowerbound=1278555.781961, norm of subgrad 34.307707 stepsize= 1.000000 +dualbound = 3535450.522658, lowerbound=1285614.522658, norm of subgrad 1134.354672 dualbound = 3535450.522658, lowerbound=1285614.522658, norm of subgrad 35.110407 stepsize= 1.000000 +dualbound = 3535535.144501, lowerbound=1283672.144501, norm of subgrad 1133.488926 dualbound = 3535535.144501, lowerbound=1283672.144501, norm of subgrad 34.779618 stepsize= 1.000000 +dualbound = 3535590.621074, lowerbound=1289260.621074, norm of subgrad 1135.978266 dualbound = 3535590.621074, lowerbound=1289260.621074, norm of subgrad 35.234593 stepsize= 1.000000 +dualbound = 3535641.098838, lowerbound=1286059.098838, norm of subgrad 1134.563836 dualbound = 3535641.098838, lowerbound=1286059.098838, norm of subgrad 35.021105 stepsize= 1.000000 +dualbound = 3535693.832427, lowerbound=1278384.832427, norm of subgrad 1131.208572 dualbound = 3535693.832427, lowerbound=1278384.832427, norm of subgrad 36.065684 stepsize= 1.000000 +dualbound = 3535770.527694, lowerbound=1282025.527694, norm of subgrad 1132.803393 dualbound = 3535770.527694, lowerbound=1282025.527694, norm of subgrad 35.981874 stepsize= 1.000000 +dualbound = 3535845.316062, lowerbound=1286783.316062, norm of subgrad 1134.911590 dualbound = 3535845.316062, lowerbound=1286783.316062, norm of subgrad 36.273797 stepsize= 1.000000 +dualbound = 3535930.463397, lowerbound=1286649.463397, norm of subgrad 1134.833672 dualbound = 3535930.463397, lowerbound=1286649.463397, norm of subgrad 35.821046 stepsize= 1.000000 +dualbound = 3536010.413608, lowerbound=1287131.413608, norm of subgrad 1135.062736 dualbound = 3536010.413608, lowerbound=1287131.413608, norm of subgrad 36.276028 stepsize= 1.000000 +dualbound = 3536075.249265, lowerbound=1284105.249265, norm of subgrad 1133.698041 dualbound = 3536075.249265, lowerbound=1284105.249265, norm of subgrad 35.083267 stepsize= 1.000000 +dualbound = 3536157.416367, lowerbound=1285181.416367, norm of subgrad 1134.157139 dualbound = 3536157.416367, lowerbound=1285181.416367, norm of subgrad 34.830548 stepsize= 1.000000 +dualbound = 3536212.429286, lowerbound=1281978.429286, norm of subgrad 1132.768480 dualbound = 3536212.429286, lowerbound=1281978.429286, norm of subgrad 35.228013 stepsize= 1.000000 +dualbound = 3536302.573812, lowerbound=1288092.573812, norm of subgrad 1135.431889 dualbound = 3536302.573812, lowerbound=1288092.573812, norm of subgrad 34.686374 stepsize= 1.000000 +dualbound = 3536377.448086, lowerbound=1283796.448086, norm of subgrad 1133.561400 dualbound = 3536377.448086, lowerbound=1283796.448086, norm of subgrad 35.211848 stepsize= 1.000000 +dualbound = 3536437.523208, lowerbound=1286622.523208, norm of subgrad 1134.835901 dualbound = 3536437.523208, lowerbound=1286622.523208, norm of subgrad 35.917616 stepsize= 1.000000 +dualbound = 3536489.962655, lowerbound=1284350.962655, norm of subgrad 1133.845652 dualbound = 3536489.962655, lowerbound=1284350.962655, norm of subgrad 36.158532 stepsize= 1.000000 +dualbound = 3536552.028748, lowerbound=1287691.028748, norm of subgrad 1135.306139 dualbound = 3536552.028748, lowerbound=1287691.028748, norm of subgrad 35.931408 stepsize= 1.000000 +dualbound = 3536626.477921, lowerbound=1278753.477921, norm of subgrad 1131.375039 dualbound = 3536626.477921, lowerbound=1278753.477921, norm of subgrad 36.475323 stepsize= 1.000000 +dualbound = 3536685.143287, lowerbound=1291837.143287, norm of subgrad 1137.124507 dualbound = 3536685.143287, lowerbound=1291837.143287, norm of subgrad 35.688449 stepsize= 1.000000 +dualbound = 3536762.767276, lowerbound=1281211.767276, norm of subgrad 1132.440183 dualbound = 3536762.767276, lowerbound=1281211.767276, norm of subgrad 35.869541 stepsize= 1.000000 +dualbound = 3536842.340857, lowerbound=1288453.340857, norm of subgrad 1135.610559 dualbound = 3536842.340857, lowerbound=1288453.340857, norm of subgrad 35.179164 stepsize= 1.000000 +dualbound = 3536880.341624, lowerbound=1278797.341624, norm of subgrad 1131.387795 dualbound = 3536880.341624, lowerbound=1278797.341624, norm of subgrad 35.763120 stepsize= 1.000000 +dualbound = 3536965.497953, lowerbound=1289941.497953, norm of subgrad 1136.255912 dualbound = 3536965.497953, lowerbound=1289941.497953, norm of subgrad 34.945047 stepsize= 1.000000 +dualbound = 3537046.665630, lowerbound=1279628.665630, norm of subgrad 1131.725968 dualbound = 3537046.665630, lowerbound=1279628.665630, norm of subgrad 35.442456 stepsize= 1.000000 +dualbound = 3537112.650419, lowerbound=1293522.650419, norm of subgrad 1137.860558 dualbound = 3537112.650419, lowerbound=1293522.650419, norm of subgrad 35.636846 stepsize= 1.000000 +dualbound = 3537180.110300, lowerbound=1283766.110300, norm of subgrad 1133.553312 dualbound = 3537180.110300, lowerbound=1283766.110300, norm of subgrad 35.276903 stepsize= 1.000000 +dualbound = 3537223.712312, lowerbound=1284419.712312, norm of subgrad 1133.864944 dualbound = 3537223.712312, lowerbound=1284419.712312, norm of subgrad 35.687561 stepsize= 1.000000 +dualbound = 3537324.591835, lowerbound=1282455.591835, norm of subgrad 1132.984815 dualbound = 3537324.591835, lowerbound=1282455.591835, norm of subgrad 36.053842 stepsize= 1.000000 +dualbound = 3537384.852830, lowerbound=1287246.852830, norm of subgrad 1135.095966 dualbound = 3537384.852830, lowerbound=1287246.852830, norm of subgrad 35.443772 stepsize= 1.000000 +dualbound = 3537456.300637, lowerbound=1286160.300637, norm of subgrad 1134.639723 dualbound = 3537456.300637, lowerbound=1286160.300637, norm of subgrad 36.310437 stepsize= 1.000000 +dualbound = 3537497.664416, lowerbound=1289187.664416, norm of subgrad 1135.977405 dualbound = 3537497.664416, lowerbound=1289187.664416, norm of subgrad 36.032815 stepsize= 1.000000 +dualbound = 3537603.197975, lowerbound=1283779.197975, norm of subgrad 1133.563936 dualbound = 3537603.197975, lowerbound=1283779.197975, norm of subgrad 35.965728 stepsize= 1.000000 +dualbound = 3537660.943599, lowerbound=1286040.943599, norm of subgrad 1134.532478 dualbound = 3537660.943599, lowerbound=1286040.943599, norm of subgrad 34.361979 stepsize= 1.000000 +dualbound = 3537762.851220, lowerbound=1278131.851220, norm of subgrad 1131.058730 dualbound = 3537762.851220, lowerbound=1278131.851220, norm of subgrad 35.551478 stepsize= 1.000000 +dualbound = 3537790.403047, lowerbound=1282757.403047, norm of subgrad 1133.094613 dualbound = 3537790.403047, lowerbound=1282757.403047, norm of subgrad 34.257143 stepsize= 1.000000 +dualbound = 3537904.784783, lowerbound=1283261.784783, norm of subgrad 1133.314072 dualbound = 3537904.784783, lowerbound=1283261.784783, norm of subgrad 35.403132 stepsize= 1.000000 +dualbound = 3537951.365480, lowerbound=1284640.365480, norm of subgrad 1133.960037 dualbound = 3537951.365480, lowerbound=1284640.365480, norm of subgrad 35.659230 stepsize= 1.000000 +dualbound = 3538033.854756, lowerbound=1283632.854756, norm of subgrad 1133.518793 dualbound = 3538033.854756, lowerbound=1283632.854756, norm of subgrad 36.255886 stepsize= 1.000000 +dualbound = 3538088.428366, lowerbound=1284191.428366, norm of subgrad 1133.744428 dualbound = 3538088.428366, lowerbound=1284191.428366, norm of subgrad 35.207579 stepsize= 1.000000 +dualbound = 3538204.124820, lowerbound=1283321.124820, norm of subgrad 1133.363633 dualbound = 3538204.124820, lowerbound=1283321.124820, norm of subgrad 36.162086 stepsize= 1.000000 +dualbound = 3538238.759532, lowerbound=1290046.759532, norm of subgrad 1136.360752 dualbound = 3538238.759532, lowerbound=1290046.759532, norm of subgrad 36.105882 stepsize= 1.000000 +dualbound = 3538298.748530, lowerbound=1284674.748530, norm of subgrad 1133.954915 dualbound = 3538298.748530, lowerbound=1284674.748530, norm of subgrad 35.199276 stepsize= 1.000000 +dualbound = 3538402.563701, lowerbound=1287525.563701, norm of subgrad 1135.186577 dualbound = 3538402.563701, lowerbound=1287525.563701, norm of subgrad 35.025921 stepsize= 1.000000 +dualbound = 3538431.316753, lowerbound=1286564.316753, norm of subgrad 1134.825677 dualbound = 3538431.316753, lowerbound=1286564.316753, norm of subgrad 35.968779 stepsize= 1.000000 +dualbound = 3538519.004173, lowerbound=1287414.004173, norm of subgrad 1135.155057 dualbound = 3538519.004173, lowerbound=1287414.004173, norm of subgrad 35.365059 stepsize= 1.000000 +dualbound = 3538598.598561, lowerbound=1277448.598561, norm of subgrad 1130.770798 dualbound = 3538598.598561, lowerbound=1277448.598561, norm of subgrad 35.687454 stepsize= 1.000000 +dualbound = 3538656.471131, lowerbound=1288000.471131, norm of subgrad 1135.428761 dualbound = 3538656.471131, lowerbound=1288000.471131, norm of subgrad 35.438292 stepsize= 1.000000 +dualbound = 3538715.604003, lowerbound=1282077.604003, norm of subgrad 1132.843592 dualbound = 3538715.604003, lowerbound=1282077.604003, norm of subgrad 36.278546 stepsize= 1.000000 +dualbound = 3538778.449405, lowerbound=1287847.449405, norm of subgrad 1135.368420 dualbound = 3538778.449405, lowerbound=1287847.449405, norm of subgrad 35.732974 stepsize= 1.000000 +dualbound = 3538867.335881, lowerbound=1282424.335881, norm of subgrad 1132.947632 dualbound = 3538867.335881, lowerbound=1282424.335881, norm of subgrad 35.140952 stepsize= 1.000000 +dualbound = 3538948.883746, lowerbound=1288183.883746, norm of subgrad 1135.517012 dualbound = 3538948.883746, lowerbound=1288183.883746, norm of subgrad 36.007608 stepsize= 1.000000 +dualbound = 3538983.666339, lowerbound=1287339.666339, norm of subgrad 1135.159754 dualbound = 3538983.666339, lowerbound=1287339.666339, norm of subgrad 35.815954 stepsize= 1.000000 +dualbound = 3539086.312911, lowerbound=1284272.312911, norm of subgrad 1133.781422 dualbound = 3539086.312911, lowerbound=1284272.312911, norm of subgrad 35.925570 stepsize= 1.000000 +dualbound = 3539147.462759, lowerbound=1282118.462759, norm of subgrad 1132.849709 dualbound = 3539147.462759, lowerbound=1282118.462759, norm of subgrad 35.932574 stepsize= 1.000000 +dualbound = 3539208.633788, lowerbound=1285951.633789, norm of subgrad 1134.526612 dualbound = 3539208.633788, lowerbound=1285951.633789, norm of subgrad 35.498888 stepsize= 1.000000 +dualbound = 3539281.059331, lowerbound=1287311.059331, norm of subgrad 1135.133058 dualbound = 3539281.059331, lowerbound=1287311.059331, norm of subgrad 35.894645 stepsize= 1.000000 +dualbound = 3539366.725358, lowerbound=1286989.725358, norm of subgrad 1134.980936 dualbound = 3539366.725358, lowerbound=1286989.725358, norm of subgrad 35.744455 stepsize= 1.000000 +dualbound = 3539442.364866, lowerbound=1285587.364866, norm of subgrad 1134.354162 dualbound = 3539442.364866, lowerbound=1285587.364866, norm of subgrad 35.321941 stepsize= 1.000000 +dualbound = 3539520.878675, lowerbound=1286967.878675, norm of subgrad 1134.980563 dualbound = 3539520.878675, lowerbound=1286967.878675, norm of subgrad 35.937638 stepsize= 1.000000 +dualbound = 3539547.973872, lowerbound=1279419.973872, norm of subgrad 1131.652320 dualbound = 3539547.973872, lowerbound=1279419.973872, norm of subgrad 35.271734 stepsize= 1.000000 +dualbound = 3539625.597740, lowerbound=1287591.597740, norm of subgrad 1135.258824 dualbound = 3539625.597740, lowerbound=1287591.597740, norm of subgrad 36.036424 stepsize= 1.000000 +dualbound = 3539706.051039, lowerbound=1283106.051039, norm of subgrad 1133.281982 dualbound = 3539706.051039, lowerbound=1283106.051039, norm of subgrad 36.089518 stepsize= 1.000000 +dualbound = 3539793.272129, lowerbound=1282723.272129, norm of subgrad 1133.083965 dualbound = 3539793.272129, lowerbound=1282723.272129, norm of subgrad 35.259340 stepsize= 1.000000 +dualbound = 3539859.135732, lowerbound=1282700.135732, norm of subgrad 1133.082140 dualbound = 3539859.135732, lowerbound=1282700.135732, norm of subgrad 35.225894 stepsize= 1.000000 +dualbound = 3539883.888675, lowerbound=1279387.888675, norm of subgrad 1131.653166 dualbound = 3539883.888675, lowerbound=1279387.888675, norm of subgrad 35.717684 stepsize= 1.000000 +dualbound = 3540001.417448, lowerbound=1284686.417448, norm of subgrad 1133.961383 dualbound = 3540001.417448, lowerbound=1284686.417448, norm of subgrad 36.048977 stepsize= 1.000000 +dualbound = 3540059.484904, lowerbound=1288655.484904, norm of subgrad 1135.706161 dualbound = 3540059.484904, lowerbound=1288655.484904, norm of subgrad 35.086571 stepsize= 1.000000 +dualbound = 3540114.929886, lowerbound=1282479.929886, norm of subgrad 1133.003941 dualbound = 3540114.929886, lowerbound=1282479.929886, norm of subgrad 35.685361 stepsize= 1.000000 +dualbound = 3540214.415658, lowerbound=1283484.415658, norm of subgrad 1133.429052 dualbound = 3540214.415658, lowerbound=1283484.415658, norm of subgrad 35.727941 stepsize= 1.000000 +dualbound = 3540278.419102, lowerbound=1283840.419102, norm of subgrad 1133.571973 dualbound = 3540278.419102, lowerbound=1283840.419102, norm of subgrad 34.770727 stepsize= 1.000000 +dualbound = 3540356.153525, lowerbound=1286897.153525, norm of subgrad 1134.913280 dualbound = 3540356.153525, lowerbound=1286897.153525, norm of subgrad 34.766858 stepsize= 1.000000 +dualbound = 3540401.795322, lowerbound=1284835.795322, norm of subgrad 1134.007405 dualbound = 3540401.795322, lowerbound=1284835.795322, norm of subgrad 34.389559 stepsize= 1.000000 +dualbound = 3540493.979353, lowerbound=1282577.979353, norm of subgrad 1133.014113 dualbound = 3540493.979353, lowerbound=1282577.979353, norm of subgrad 35.145185 stepsize= 1.000000 +dualbound = 3540548.872795, lowerbound=1285975.872795, norm of subgrad 1134.533328 dualbound = 3540548.872795, lowerbound=1285975.872795, norm of subgrad 35.283048 stepsize= 1.000000 +dualbound = 3540613.020996, lowerbound=1285720.020996, norm of subgrad 1134.435111 dualbound = 3540613.020996, lowerbound=1285720.020996, norm of subgrad 35.876848 stepsize= 1.000000 +dualbound = 3540666.432629, lowerbound=1280596.432629, norm of subgrad 1132.157424 dualbound = 3540666.432629, lowerbound=1280596.432629, norm of subgrad 35.176862 stepsize= 1.000000 +dualbound = 3540787.272204, lowerbound=1286463.272204, norm of subgrad 1134.749872 dualbound = 3540787.272204, lowerbound=1286463.272204, norm of subgrad 36.260717 stepsize= 1.000000 +dualbound = 3540825.275668, lowerbound=1285712.275668, norm of subgrad 1134.408337 dualbound = 3540825.275668, lowerbound=1285712.275668, norm of subgrad 34.756344 stepsize= 1.000000 +dualbound = 3540935.525591, lowerbound=1289411.525591, norm of subgrad 1136.036762 dualbound = 3540935.525591, lowerbound=1289411.525591, norm of subgrad 35.752621 stepsize= 1.000000 +dualbound = 3540990.221295, lowerbound=1282099.221295, norm of subgrad 1132.809879 dualbound = 3540990.221295, lowerbound=1282099.221295, norm of subgrad 34.838136 stepsize= 1.000000 +dualbound = 3541035.431653, lowerbound=1283594.431653, norm of subgrad 1133.509785 dualbound = 3541035.431653, lowerbound=1283594.431653, norm of subgrad 35.989031 stepsize= 1.000000 +dualbound = 3541105.725755, lowerbound=1286469.725755, norm of subgrad 1134.748309 dualbound = 3541105.725755, lowerbound=1286469.725755, norm of subgrad 35.416015 stepsize= 1.000000 +dualbound = 3541175.953365, lowerbound=1279381.953365, norm of subgrad 1131.632870 dualbound = 3541175.953365, lowerbound=1279381.953365, norm of subgrad 35.794240 stepsize= 1.000000 +dualbound = 3541261.702414, lowerbound=1289520.702414, norm of subgrad 1136.098896 dualbound = 3541261.702414, lowerbound=1289520.702414, norm of subgrad 35.857343 stepsize= 1.000000 +dualbound = 3541307.151368, lowerbound=1285727.151368, norm of subgrad 1134.448391 dualbound = 3541307.151368, lowerbound=1285727.151368, norm of subgrad 35.936735 stepsize= 1.000000 +dualbound = 3541386.669702, lowerbound=1284951.669702, norm of subgrad 1134.087153 dualbound = 3541386.669702, lowerbound=1284951.669702, norm of subgrad 35.798301 stepsize= 1.000000 +dualbound = 3541471.730963, lowerbound=1280535.730963, norm of subgrad 1132.166388 dualbound = 3541471.730963, lowerbound=1280535.730963, norm of subgrad 36.743180 stepsize= 1.000000 +dualbound = 3541510.758775, lowerbound=1285774.758775, norm of subgrad 1134.474662 dualbound = 3541510.758775, lowerbound=1285774.758775, norm of subgrad 36.014272 stepsize= 1.000000 +dualbound = 3541580.124558, lowerbound=1290572.124558, norm of subgrad 1136.598049 dualbound = 3541580.124558, lowerbound=1290572.124558, norm of subgrad 36.774526 stepsize= 1.000000 +dualbound = 3541647.606216, lowerbound=1279601.606216, norm of subgrad 1131.742288 dualbound = 3541647.606216, lowerbound=1279601.606216, norm of subgrad 36.145285 stepsize= 1.000000 +dualbound = 3541752.567625, lowerbound=1286588.567625, norm of subgrad 1134.795386 dualbound = 3541752.567625, lowerbound=1286588.567625, norm of subgrad 35.734597 stepsize= 1.000000 +dualbound = 3541815.906886, lowerbound=1282480.906886, norm of subgrad 1133.000400 dualbound = 3541815.906886, lowerbound=1282480.906886, norm of subgrad 35.669865 stepsize= 1.000000 +dualbound = 3541866.210644, lowerbound=1282905.210644, norm of subgrad 1133.169542 dualbound = 3541866.210644, lowerbound=1282905.210644, norm of subgrad 34.904208 stepsize= 1.000000 +dualbound = 3541980.271610, lowerbound=1282648.271610, norm of subgrad 1133.054841 dualbound = 3541980.271610, lowerbound=1282648.271610, norm of subgrad 35.763962 stepsize= 1.000000 +dualbound = 3542031.988933, lowerbound=1290543.988933, norm of subgrad 1136.520562 dualbound = 3542031.988933, lowerbound=1290543.988933, norm of subgrad 34.448764 stepsize= 1.000000 +dualbound = 3542102.783992, lowerbound=1282785.783992, norm of subgrad 1133.106255 dualbound = 3542102.783992, lowerbound=1282785.783992, norm of subgrad 34.853910 stepsize= 1.000000 +dualbound = 3542171.877324, lowerbound=1283491.877324, norm of subgrad 1133.423962 dualbound = 3542171.877324, lowerbound=1283491.877324, norm of subgrad 35.029892 stepsize= 1.000000 +dualbound = 3542229.029655, lowerbound=1286225.029655, norm of subgrad 1134.636519 dualbound = 3542229.029655, lowerbound=1286225.029655, norm of subgrad 35.102027 stepsize= 1.000000 +dualbound = 3542291.863674, lowerbound=1282419.863674, norm of subgrad 1132.973020 dualbound = 3542291.863674, lowerbound=1282419.863674, norm of subgrad 35.648759 stepsize= 1.000000 +dualbound = 3542371.153335, lowerbound=1284730.153335, norm of subgrad 1133.955975 dualbound = 3542371.153335, lowerbound=1284730.153335, norm of subgrad 34.717282 stepsize= 1.000000 +dualbound = 3542447.696106, lowerbound=1291338.696106, norm of subgrad 1136.878488 dualbound = 3542447.696106, lowerbound=1291338.696106, norm of subgrad 35.079093 stepsize= 1.000000 +dualbound = 3542523.517982, lowerbound=1286415.517982, norm of subgrad 1134.702832 dualbound = 3542523.517982, lowerbound=1286415.517982, norm of subgrad 34.796866 stepsize= 1.000000 +dualbound = 3542578.042220, lowerbound=1285150.042220, norm of subgrad 1134.192683 dualbound = 3542578.042220, lowerbound=1285150.042220, norm of subgrad 36.021164 stepsize= 1.000000 +dualbound = 3542640.832183, lowerbound=1283802.832183, norm of subgrad 1133.577008 dualbound = 3542640.832183, lowerbound=1283802.832183, norm of subgrad 35.451234 stepsize= 1.000000 +dualbound = 3542711.580452, lowerbound=1291285.580452, norm of subgrad 1136.882395 dualbound = 3542711.580452, lowerbound=1291285.580452, norm of subgrad 35.871274 stepsize= 1.000000 +dualbound = 3542787.315331, lowerbound=1286405.315331, norm of subgrad 1134.714200 dualbound = 3542787.315331, lowerbound=1286405.315331, norm of subgrad 35.309133 stepsize= 1.000000 +dualbound = 3542884.469657, lowerbound=1283564.469657, norm of subgrad 1133.450250 dualbound = 3542884.469657, lowerbound=1283564.469657, norm of subgrad 35.244210 stepsize= 1.000000 +dualbound = 3542933.799903, lowerbound=1284884.799903, norm of subgrad 1134.056789 dualbound = 3542933.799903, lowerbound=1284884.799903, norm of subgrad 35.345866 stepsize= 1.000000 +dualbound = 3542997.313656, lowerbound=1282661.313656, norm of subgrad 1133.064126 dualbound = 3542997.313656, lowerbound=1282661.313656, norm of subgrad 35.164098 stepsize= 1.000000 +dualbound = 3543083.748979, lowerbound=1282861.748979, norm of subgrad 1133.141540 dualbound = 3543083.748979, lowerbound=1282861.748979, norm of subgrad 35.134532 stepsize= 1.000000 +dualbound = 3543146.033836, lowerbound=1280747.033836, norm of subgrad 1132.189045 dualbound = 3543146.033836, lowerbound=1280747.033836, norm of subgrad 34.165551 stepsize= 1.000000 +dualbound = 3543245.761553, lowerbound=1290273.761553, norm of subgrad 1136.410472 dualbound = 3543245.761553, lowerbound=1290273.761553, norm of subgrad 35.422136 stepsize= 1.000000 +dualbound = 3543272.596384, lowerbound=1292192.596384, norm of subgrad 1137.267161 dualbound = 3543272.596384, lowerbound=1292192.596384, norm of subgrad 34.797052 stepsize= 1.000000 +dualbound = 3543375.666306, lowerbound=1282132.666306, norm of subgrad 1132.798599 dualbound = 3543375.666306, lowerbound=1282132.666306, norm of subgrad 34.685298 stepsize= 1.000000 +dualbound = 3543425.876406, lowerbound=1285997.876406, norm of subgrad 1134.525397 dualbound = 3543425.876406, lowerbound=1285997.876406, norm of subgrad 34.644049 stepsize= 1.000000 +dualbound = 3543488.248985, lowerbound=1283076.248985, norm of subgrad 1133.241479 dualbound = 3543488.248985, lowerbound=1283076.248985, norm of subgrad 34.962445 stepsize= 1.000000 +dualbound = 3543556.198665, lowerbound=1285852.198665, norm of subgrad 1134.516725 dualbound = 3543556.198665, lowerbound=1285852.198665, norm of subgrad 36.659919 stepsize= 1.000000 +dualbound = 3543620.196689, lowerbound=1280659.196689, norm of subgrad 1132.216056 dualbound = 3543620.196689, lowerbound=1280659.196689, norm of subgrad 36.304243 stepsize= 1.000000 +dualbound = 3543672.031299, lowerbound=1283072.031299, norm of subgrad 1133.264767 dualbound = 3543672.031299, lowerbound=1283072.031299, norm of subgrad 35.620705 stepsize= 1.000000 +dualbound = 3543776.549780, lowerbound=1285516.549780, norm of subgrad 1134.330000 dualbound = 3543776.549780, lowerbound=1285516.549780, norm of subgrad 35.951613 stepsize= 1.000000 +dualbound = 3543835.351765, lowerbound=1288745.351765, norm of subgrad 1135.761573 dualbound = 3543835.351765, lowerbound=1288745.351765, norm of subgrad 35.606207 stepsize= 1.000000 +dualbound = 3543900.635549, lowerbound=1284891.635549, norm of subgrad 1134.059362 dualbound = 3543900.635549, lowerbound=1284891.635549, norm of subgrad 35.556768 stepsize= 1.000000 +dualbound = 3543963.491564, lowerbound=1286279.491564, norm of subgrad 1134.671975 dualbound = 3543963.491564, lowerbound=1286279.491564, norm of subgrad 35.550753 stepsize= 1.000000 +dualbound = 3544059.903331, lowerbound=1282689.903331, norm of subgrad 1133.091745 dualbound = 3544059.903331, lowerbound=1282689.903331, norm of subgrad 36.102794 stepsize= 1.000000 +dualbound = 3544110.373855, lowerbound=1282231.373855, norm of subgrad 1132.864235 dualbound = 3544110.373855, lowerbound=1282231.373855, norm of subgrad 34.647807 stepsize= 1.000000 +dualbound = 3544213.952513, lowerbound=1281402.952513, norm of subgrad 1132.527683 dualbound = 3544213.952513, lowerbound=1281402.952513, norm of subgrad 36.326005 stepsize= 1.000000 +dualbound = 3544242.014829, lowerbound=1287693.014829, norm of subgrad 1135.278827 dualbound = 3544242.014829, lowerbound=1287693.014829, norm of subgrad 34.540734 stepsize= 1.000000 +dualbound = 3544342.273680, lowerbound=1282978.273680, norm of subgrad 1133.230018 dualbound = 3544342.273680, lowerbound=1282978.273680, norm of subgrad 36.500121 stepsize= 1.000000 +dualbound = 3544377.824307, lowerbound=1293628.824307, norm of subgrad 1137.912925 dualbound = 3544377.824307, lowerbound=1293628.824307, norm of subgrad 35.391392 stepsize= 1.000000 +dualbound = 3544453.747509, lowerbound=1284558.747509, norm of subgrad 1133.942127 dualbound = 3544453.747509, lowerbound=1284558.747509, norm of subgrad 36.632270 stepsize= 1.000000 +dualbound = 3544517.128333, lowerbound=1283143.128333, norm of subgrad 1133.268780 dualbound = 3544517.128333, lowerbound=1283143.128333, norm of subgrad 34.905312 stepsize= 1.000000 +dualbound = 3544607.948501, lowerbound=1282861.948501, norm of subgrad 1133.169426 dualbound = 3544607.948501, lowerbound=1282861.948501, norm of subgrad 36.080745 stepsize= 1.000000 +dualbound = 3544673.427721, lowerbound=1279890.427721, norm of subgrad 1131.853095 dualbound = 3544673.427721, lowerbound=1279890.427721, norm of subgrad 35.587627 stepsize= 1.000000 +dualbound = 3544759.961338, lowerbound=1283736.961338, norm of subgrad 1133.554569 dualbound = 3544759.961338, lowerbound=1283736.961338, norm of subgrad 35.993522 stepsize= 1.000000 +dualbound = 3544818.535583, lowerbound=1286607.535583, norm of subgrad 1134.831942 dualbound = 3544818.535583, lowerbound=1286607.535583, norm of subgrad 35.980192 stepsize= 1.000000 +dualbound = 3544902.851472, lowerbound=1284500.851472, norm of subgrad 1133.892346 dualbound = 3544902.851472, lowerbound=1284500.851472, norm of subgrad 35.990497 stepsize= 1.000000 +dualbound = 3544937.123112, lowerbound=1286395.123112, norm of subgrad 1134.760822 dualbound = 3544937.123112, lowerbound=1286395.123112, norm of subgrad 36.349300 stepsize= 1.000000 +dualbound = 3545005.344542, lowerbound=1284189.344542, norm of subgrad 1133.781436 dualbound = 3545005.344542, lowerbound=1284189.344542, norm of subgrad 36.595374 stepsize= 1.000000 +dualbound = 3545088.022632, lowerbound=1288747.022632, norm of subgrad 1135.734574 dualbound = 3545088.022632, lowerbound=1288747.022632, norm of subgrad 35.052505 stepsize= 1.000000 +dualbound = 3545195.610590, lowerbound=1284651.610590, norm of subgrad 1133.930161 dualbound = 3545195.610590, lowerbound=1284651.610590, norm of subgrad 35.406044 stepsize= 1.000000 +dualbound = 3545261.995378, lowerbound=1288006.995378, norm of subgrad 1135.403450 dualbound = 3545261.995378, lowerbound=1288006.995378, norm of subgrad 34.646570 stepsize= 1.000000 +dualbound = 3545329.376835, lowerbound=1281462.376835, norm of subgrad 1132.530078 dualbound = 3545329.376835, lowerbound=1281462.376835, norm of subgrad 35.062536 stepsize= 1.000000 +dualbound = 3545386.961168, lowerbound=1291719.961168, norm of subgrad 1137.060667 dualbound = 3545386.961168, lowerbound=1291719.961168, norm of subgrad 35.278667 stepsize= 1.000000 +dualbound = 3545452.362540, lowerbound=1277905.362540, norm of subgrad 1130.986898 dualbound = 3545452.362540, lowerbound=1277905.362540, norm of subgrad 35.936073 stepsize= 1.000000 +dualbound = 3545522.851751, lowerbound=1291534.851751, norm of subgrad 1136.963435 dualbound = 3545522.851751, lowerbound=1291534.851751, norm of subgrad 34.949810 stepsize= 1.000000 +dualbound = 3545601.439789, lowerbound=1277146.439789, norm of subgrad 1130.636299 dualbound = 3545601.439789, lowerbound=1277146.439789, norm of subgrad 35.645309 stepsize= 1.000000 +dualbound = 3545633.032460, lowerbound=1287569.032460, norm of subgrad 1135.262539 dualbound = 3545633.032460, lowerbound=1287569.032460, norm of subgrad 35.827262 stepsize= 1.000000 +dualbound = 3545721.553672, lowerbound=1286118.553672, norm of subgrad 1134.593123 dualbound = 3545721.553672, lowerbound=1286118.553672, norm of subgrad 35.658396 stepsize= 1.000000 +dualbound = 3545793.804415, lowerbound=1282589.804415, norm of subgrad 1133.044926 dualbound = 3545793.804415, lowerbound=1282589.804415, norm of subgrad 35.682639 stepsize= 1.000000 +dualbound = 3545855.914336, lowerbound=1288662.914336, norm of subgrad 1135.734967 dualbound = 3545855.914336, lowerbound=1288662.914336, norm of subgrad 35.959838 stepsize= 1.000000 +dualbound = 3545920.129906, lowerbound=1287665.129906, norm of subgrad 1135.292090 dualbound = 3545920.129906, lowerbound=1287665.129906, norm of subgrad 35.877787 stepsize= 1.000000 +dualbound = 3545999.239881, lowerbound=1280315.239881, norm of subgrad 1132.043833 dualbound = 3545999.239881, lowerbound=1280315.239881, norm of subgrad 35.876315 stepsize= 1.000000 +dualbound = 3546057.319780, lowerbound=1285454.319780, norm of subgrad 1134.291550 dualbound = 3546057.319780, lowerbound=1285454.319780, norm of subgrad 34.943954 stepsize= 1.000000 +dualbound = 3546154.343763, lowerbound=1285064.343763, norm of subgrad 1134.127569 dualbound = 3546154.343763, lowerbound=1285064.343763, norm of subgrad 35.749461 stepsize= 1.000000 +dualbound = 3546185.977379, lowerbound=1285089.977379, norm of subgrad 1134.185601 dualbound = 3546185.977379, lowerbound=1285089.977379, norm of subgrad 36.312995 stepsize= 1.000000 +dualbound = 3546287.508399, lowerbound=1289498.508399, norm of subgrad 1136.098371 dualbound = 3546287.508399, lowerbound=1289498.508399, norm of subgrad 36.366620 stepsize= 1.000000 +dualbound = 3546332.437281, lowerbound=1289548.437281, norm of subgrad 1136.141029 dualbound = 3546332.437281, lowerbound=1289548.437281, norm of subgrad 36.234361 stepsize= 1.000000 +dualbound = 3546424.073232, lowerbound=1282699.073232, norm of subgrad 1133.108588 dualbound = 3546424.073232, lowerbound=1282699.073232, norm of subgrad 36.436739 stepsize= 1.000000 +dualbound = 3546483.183654, lowerbound=1287242.183654, norm of subgrad 1135.105803 dualbound = 3546483.183654, lowerbound=1287242.183654, norm of subgrad 35.806570 stepsize= 1.000000 +dualbound = 3546578.167706, lowerbound=1282238.167706, norm of subgrad 1132.875619 dualbound = 3546578.167706, lowerbound=1282238.167706, norm of subgrad 35.552553 stepsize= 1.000000 +dualbound = 3546646.193133, lowerbound=1283476.193133, norm of subgrad 1133.420572 dualbound = 3546646.193133, lowerbound=1283476.193133, norm of subgrad 35.128698 stepsize= 1.000000 +dualbound = 3546717.913124, lowerbound=1285454.913124, norm of subgrad 1134.297101 dualbound = 3546717.913124, lowerbound=1285454.913124, norm of subgrad 35.308922 stepsize= 1.000000 +dualbound = 3546790.171980, lowerbound=1283223.171980, norm of subgrad 1133.312919 dualbound = 3546790.171980, lowerbound=1283223.171980, norm of subgrad 35.316552 stepsize= 1.000000 +dualbound = 3546852.146118, lowerbound=1285315.146118, norm of subgrad 1134.246951 dualbound = 3546852.146118, lowerbound=1285315.146118, norm of subgrad 35.538347 stepsize= 1.000000 +dualbound = 3546917.046300, lowerbound=1286837.046300, norm of subgrad 1134.909708 dualbound = 3546917.046300, lowerbound=1286837.046300, norm of subgrad 35.325631 stepsize= 1.000000 +dualbound = 3547007.001024, lowerbound=1282964.001024, norm of subgrad 1133.178274 dualbound = 3547007.001024, lowerbound=1282964.001024, norm of subgrad 34.913532 stepsize= 1.000000 +dualbound = 3547056.473767, lowerbound=1287732.473767, norm of subgrad 1135.299288 dualbound = 3547056.473767, lowerbound=1287732.473767, norm of subgrad 34.949574 stepsize= 1.000000 +dualbound = 3547127.287049, lowerbound=1284606.287049, norm of subgrad 1133.916349 dualbound = 3547127.287049, lowerbound=1284606.287049, norm of subgrad 35.082949 stepsize= 1.000000 +dualbound = 3547197.338107, lowerbound=1289410.338107, norm of subgrad 1136.021716 dualbound = 3547197.338107, lowerbound=1289410.338107, norm of subgrad 34.713845 stepsize= 1.000000 +dualbound = 3547278.977482, lowerbound=1287018.977482, norm of subgrad 1134.994263 dualbound = 3547278.977482, lowerbound=1287018.977482, norm of subgrad 35.702092 stepsize= 1.000000 +dualbound = 3547339.988857, lowerbound=1287489.988857, norm of subgrad 1135.188085 dualbound = 3547339.988857, lowerbound=1287489.988857, norm of subgrad 34.971580 stepsize= 1.000000 +dualbound = 3547424.093757, lowerbound=1287195.093757, norm of subgrad 1135.059071 dualbound = 3547424.093757, lowerbound=1287195.093757, norm of subgrad 35.328528 stepsize= 1.000000 +dualbound = 3547474.749573, lowerbound=1284726.749573, norm of subgrad 1133.980930 dualbound = 3547474.749573, lowerbound=1284726.749573, norm of subgrad 35.166117 stepsize= 1.000000 +dualbound = 3547533.506508, lowerbound=1281809.506508, norm of subgrad 1132.704951 dualbound = 3547533.506508, lowerbound=1281809.506508, norm of subgrad 35.633649 stepsize= 1.000000 +dualbound = 3547616.848499, lowerbound=1283954.848499, norm of subgrad 1133.651555 dualbound = 3547616.848499, lowerbound=1283954.848499, norm of subgrad 35.976965 stepsize= 1.000000 +dualbound = 3547669.810854, lowerbound=1285195.810854, norm of subgrad 1134.201839 dualbound = 3547669.810854, lowerbound=1285195.810854, norm of subgrad 35.650559 stepsize= 1.000000 +dualbound = 3547772.052197, lowerbound=1285392.052197, norm of subgrad 1134.275563 dualbound = 3547772.052197, lowerbound=1285392.052197, norm of subgrad 35.933847 stepsize= 1.000000 +dualbound = 3547830.864914, lowerbound=1287652.864914, norm of subgrad 1135.283605 dualbound = 3547830.864914, lowerbound=1287652.864914, norm of subgrad 35.704520 stepsize= 1.000000 +dualbound = 3547878.992529, lowerbound=1282126.992529, norm of subgrad 1132.880838 dualbound = 3547878.992529, lowerbound=1282126.992529, norm of subgrad 36.607753 stepsize= 1.000000 +dualbound = 3547961.532987, lowerbound=1286520.532987, norm of subgrad 1134.790964 dualbound = 3547961.532987, lowerbound=1286520.532987, norm of subgrad 36.229000 stepsize= 1.000000 +dualbound = 3548024.898301, lowerbound=1283443.898301, norm of subgrad 1133.428383 dualbound = 3548024.898301, lowerbound=1283443.898301, norm of subgrad 35.768217 stepsize= 1.000000 +dualbound = 3548085.834978, lowerbound=1288484.834978, norm of subgrad 1135.659207 dualbound = 3548085.834978, lowerbound=1288484.834978, norm of subgrad 36.026888 stepsize= 1.000000 +dualbound = 3548156.848799, lowerbound=1284732.848799, norm of subgrad 1134.012279 dualbound = 3548156.848799, lowerbound=1284732.848799, norm of subgrad 36.359508 stepsize= 1.000000 +dualbound = 3548250.829442, lowerbound=1285643.829442, norm of subgrad 1134.379491 dualbound = 3548250.829442, lowerbound=1285643.829442, norm of subgrad 35.594672 stepsize= 1.000000 +dualbound = 3548288.641796, lowerbound=1281861.641796, norm of subgrad 1132.763718 dualbound = 3548288.641796, lowerbound=1281861.641796, norm of subgrad 36.466592 stepsize= 1.000000 +dualbound = 3548366.866783, lowerbound=1283135.866783, norm of subgrad 1133.286754 dualbound = 3548366.866783, lowerbound=1283135.866783, norm of subgrad 35.794203 stepsize= 1.000000 +dualbound = 3548450.373058, lowerbound=1286991.373058, norm of subgrad 1134.968446 dualbound = 3548450.373058, lowerbound=1286991.373058, norm of subgrad 35.291731 stepsize= 1.000000 +dualbound = 3548546.686546, lowerbound=1285079.686546, norm of subgrad 1134.102591 dualbound = 3548546.686546, lowerbound=1285079.686546, norm of subgrad 34.717625 stepsize= 1.000000 +dualbound = 3548601.909414, lowerbound=1283078.909414, norm of subgrad 1133.270007 dualbound = 3548601.909414, lowerbound=1283078.909414, norm of subgrad 35.738255 stepsize= 1.000000 +dualbound = 3548631.552583, lowerbound=1286061.552583, norm of subgrad 1134.598851 dualbound = 3548631.552583, lowerbound=1286061.552583, norm of subgrad 35.814008 stepsize= 1.000000 +dualbound = 3548723.036057, lowerbound=1286452.036057, norm of subgrad 1134.748887 dualbound = 3548723.036057, lowerbound=1286452.036057, norm of subgrad 35.978931 stepsize= 1.000000 +dualbound = 3548816.125105, lowerbound=1286800.125105, norm of subgrad 1134.889477 dualbound = 3548816.125105, lowerbound=1286800.125105, norm of subgrad 35.596194 stepsize= 1.000000 +dualbound = 3548875.542502, lowerbound=1287907.542502, norm of subgrad 1135.389599 dualbound = 3548875.542502, lowerbound=1287907.542502, norm of subgrad 35.516438 stepsize= 1.000000 +dualbound = 3548946.622799, lowerbound=1286673.622799, norm of subgrad 1134.816559 dualbound = 3548946.622799, lowerbound=1286673.622799, norm of subgrad 34.728667 stepsize= 1.000000 +dualbound = 3549030.873078, lowerbound=1283835.873078, norm of subgrad 1133.569968 dualbound = 3549030.873078, lowerbound=1283835.873078, norm of subgrad 35.060666 stepsize= 1.000000 +dualbound = 3549074.232769, lowerbound=1284408.232769, norm of subgrad 1133.838275 dualbound = 3549074.232769, lowerbound=1284408.232769, norm of subgrad 34.990852 stepsize= 1.000000 +dualbound = 3549157.613482, lowerbound=1282381.613482, norm of subgrad 1132.963200 dualbound = 3549157.613482, lowerbound=1282381.613482, norm of subgrad 36.157720 stepsize= 1.000000 +dualbound = 3549201.035081, lowerbound=1289124.035081, norm of subgrad 1135.926510 dualbound = 3549201.035081, lowerbound=1289124.035081, norm of subgrad 35.333010 stepsize= 1.000000 +dualbound = 3549281.637976, lowerbound=1281862.637976, norm of subgrad 1132.727080 dualbound = 3549281.637976, lowerbound=1281862.637976, norm of subgrad 35.897115 stepsize= 1.000000 +dualbound = 3549334.467059, lowerbound=1282727.467059, norm of subgrad 1133.110969 dualbound = 3549334.467059, lowerbound=1282727.467059, norm of subgrad 35.578492 stepsize= 1.000000 +dualbound = 3549425.276861, lowerbound=1283284.276861, norm of subgrad 1133.335465 dualbound = 3549425.276861, lowerbound=1283284.276861, norm of subgrad 35.437407 stepsize= 1.000000 +dualbound = 3549506.108904, lowerbound=1287744.108904, norm of subgrad 1135.332158 dualbound = 3549506.108904, lowerbound=1287744.108904, norm of subgrad 36.274399 stepsize= 1.000000 +dualbound = 3549545.203886, lowerbound=1286091.203886, norm of subgrad 1134.603545 dualbound = 3549545.203886, lowerbound=1286091.203886, norm of subgrad 35.680457 stepsize= 1.000000 +dualbound = 3549645.852593, lowerbound=1289743.852593, norm of subgrad 1136.180819 dualbound = 3549645.852593, lowerbound=1289743.852593, norm of subgrad 35.547837 stepsize= 1.000000 +dualbound = 3549715.292898, lowerbound=1281212.292898, norm of subgrad 1132.430701 dualbound = 3549715.292898, lowerbound=1281212.292898, norm of subgrad 35.446302 stepsize= 1.000000 +dualbound = 3549767.522843, lowerbound=1286666.522843, norm of subgrad 1134.845154 dualbound = 3549767.522843, lowerbound=1286666.522843, norm of subgrad 35.485630 stepsize= 1.000000 +dualbound = 3549842.604008, lowerbound=1283128.604008, norm of subgrad 1133.272961 dualbound = 3549842.604008, lowerbound=1283128.604008, norm of subgrad 35.413008 stepsize= 1.000000 +dualbound = 3549923.712642, lowerbound=1285269.712642, norm of subgrad 1134.238384 dualbound = 3549923.712642, lowerbound=1285269.712642, norm of subgrad 36.167784 stepsize= 1.000000 +dualbound = 3549976.628883, lowerbound=1285303.628883, norm of subgrad 1134.254658 dualbound = 3549976.628883, lowerbound=1285303.628883, norm of subgrad 35.817820 stepsize= 1.000000 +dualbound = 3550043.177932, lowerbound=1285303.177932, norm of subgrad 1134.247847 dualbound = 3550043.177932, lowerbound=1285303.177932, norm of subgrad 35.798730 stepsize= 1.000000 +dualbound = 3550106.282560, lowerbound=1282782.282560, norm of subgrad 1133.125449 dualbound = 3550106.282560, lowerbound=1282782.282560, norm of subgrad 35.413340 stepsize= 1.000000 +dualbound = 3550208.516114, lowerbound=1288182.516114, norm of subgrad 1135.499677 dualbound = 3550208.516114, lowerbound=1288182.516114, norm of subgrad 35.766375 stepsize= 1.000000 +dualbound = 3550259.537936, lowerbound=1281483.537936, norm of subgrad 1132.535888 dualbound = 3550259.537936, lowerbound=1281483.537936, norm of subgrad 34.713424 stepsize= 1.000000 +dualbound = 3550358.866703, lowerbound=1284756.866703, norm of subgrad 1133.973927 dualbound = 3550358.866703, lowerbound=1284756.866703, norm of subgrad 35.204102 stepsize= 1.000000 +dualbound = 3550407.091678, lowerbound=1286015.091678, norm of subgrad 1134.551494 dualbound = 3550407.091678, lowerbound=1286015.091678, norm of subgrad 35.216828 stepsize= 1.000000 +dualbound = 3550476.899384, lowerbound=1280948.899384, norm of subgrad 1132.317491 dualbound = 3550476.899384, lowerbound=1280948.899384, norm of subgrad 35.550073 stepsize= 1.000000 +dualbound = 3550522.755276, lowerbound=1287334.755276, norm of subgrad 1135.126757 dualbound = 3550522.755276, lowerbound=1287334.755276, norm of subgrad 34.983652 stepsize= 1.000000 +dualbound = 3550651.561369, lowerbound=1286718.561369, norm of subgrad 1134.831512 dualbound = 3550651.561369, lowerbound=1286718.561369, norm of subgrad 35.395001 stepsize= 1.000000 +dualbound = 3550707.691400, lowerbound=1283103.691400, norm of subgrad 1133.239468 dualbound = 3550707.691400, lowerbound=1283103.691400, norm of subgrad 34.411190 stepsize= 1.000000 +dualbound = 3550776.267640, lowerbound=1285269.267640, norm of subgrad 1134.211738 dualbound = 3550776.267640, lowerbound=1285269.267640, norm of subgrad 35.150764 stepsize= 1.000000 +dualbound = 3550810.914124, lowerbound=1286035.914124, norm of subgrad 1134.564636 dualbound = 3550810.914124, lowerbound=1286035.914124, norm of subgrad 35.151764 stepsize= 1.000000 +dualbound = 3550900.361129, lowerbound=1289248.361129, norm of subgrad 1135.974190 dualbound = 3550900.361129, lowerbound=1289248.361129, norm of subgrad 35.755377 stepsize= 1.000000 +dualbound = 3550977.384560, lowerbound=1287017.384560, norm of subgrad 1134.983870 dualbound = 3550977.384560, lowerbound=1287017.384560, norm of subgrad 35.327375 stepsize= 1.000000 +dualbound = 3551005.772943, lowerbound=1285207.772943, norm of subgrad 1134.204908 dualbound = 3551005.772943, lowerbound=1285207.772943, norm of subgrad 35.233342 stepsize= 1.000000 +dualbound = 3551093.809147, lowerbound=1287563.809147, norm of subgrad 1135.241740 dualbound = 3551093.809147, lowerbound=1287563.809147, norm of subgrad 36.028270 stepsize= 1.000000 +dualbound = 3551166.618385, lowerbound=1287019.618385, norm of subgrad 1135.007321 dualbound = 3551166.618385, lowerbound=1287019.618385, norm of subgrad 35.983458 stepsize= 1.000000 +dualbound = 3551231.196319, lowerbound=1284188.196319, norm of subgrad 1133.744767 dualbound = 3551231.196319, lowerbound=1284188.196319, norm of subgrad 35.405903 stepsize= 1.000000 +dualbound = 3551313.150951, lowerbound=1285692.150951, norm of subgrad 1134.418860 dualbound = 3551313.150951, lowerbound=1285692.150951, norm of subgrad 35.999370 stepsize= 1.000000 +dualbound = 3551362.274340, lowerbound=1282403.274340, norm of subgrad 1133.026158 dualbound = 3551362.274340, lowerbound=1282403.274340, norm of subgrad 37.337962 stepsize= 1.000000 +dualbound = 3551404.647801, lowerbound=1290933.647801, norm of subgrad 1136.761474 dualbound = 3551404.647801, lowerbound=1290933.647801, norm of subgrad 36.542762 stepsize= 1.000000 +dualbound = 3551505.505538, lowerbound=1287878.505538, norm of subgrad 1135.408960 dualbound = 3551505.505538, lowerbound=1287878.505538, norm of subgrad 37.092556 stepsize= 1.000000 +dualbound = 3551577.802968, lowerbound=1290465.802968, norm of subgrad 1136.524000 dualbound = 3551577.802968, lowerbound=1290465.802968, norm of subgrad 35.962445 stepsize= 1.000000 +dualbound = 3551665.050733, lowerbound=1285162.050733, norm of subgrad 1134.153451 dualbound = 3551665.050733, lowerbound=1285162.050733, norm of subgrad 35.060630 stepsize= 1.000000 +dualbound = 3551749.731383, lowerbound=1286419.731383, norm of subgrad 1134.706452 dualbound = 3551749.731383, lowerbound=1286419.731383, norm of subgrad 34.981147 stepsize= 1.000000 +dualbound = 3551795.940419, lowerbound=1280935.940419, norm of subgrad 1132.305586 dualbound = 3551795.940419, lowerbound=1280935.940419, norm of subgrad 35.017268 stepsize= 1.000000 +dualbound = 3551888.484309, lowerbound=1284279.484309, norm of subgrad 1133.749745 dualbound = 3551888.484309, lowerbound=1284279.484309, norm of subgrad 34.663293 stepsize= 1.000000 +dualbound = 3551956.106033, lowerbound=1285834.106033, norm of subgrad 1134.478341 dualbound = 3551956.106033, lowerbound=1285834.106033, norm of subgrad 35.701845 stepsize= 1.000000 +dualbound = 3552029.109250, lowerbound=1284458.109250, norm of subgrad 1133.852331 dualbound = 3552029.109250, lowerbound=1284458.109250, norm of subgrad 35.156837 stepsize= 1.000000 +dualbound = 3552090.920631, lowerbound=1282182.920631, norm of subgrad 1132.832256 dualbound = 3552090.920631, lowerbound=1282182.920631, norm of subgrad 34.464640 stepsize= 1.000000 +dualbound = 3552165.378527, lowerbound=1286967.378527, norm of subgrad 1134.971091 dualbound = 3552165.378527, lowerbound=1286967.378527, norm of subgrad 35.587328 stepsize= 1.000000 +dualbound = 3552229.441014, lowerbound=1283839.441014, norm of subgrad 1133.605064 dualbound = 3552229.441014, lowerbound=1283839.441014, norm of subgrad 35.847768 stepsize= 1.000000 +dualbound = 3552299.053261, lowerbound=1280844.053261, norm of subgrad 1132.273842 dualbound = 3552299.053261, lowerbound=1280844.053261, norm of subgrad 35.631619 stepsize= 1.000000 +dualbound = 3552376.348200, lowerbound=1288300.348200, norm of subgrad 1135.534829 dualbound = 3552376.348200, lowerbound=1288300.348200, norm of subgrad 34.875420 stepsize= 1.000000 +dualbound = 3552453.493826, lowerbound=1280829.493826, norm of subgrad 1132.271829 dualbound = 3552453.493826, lowerbound=1280829.493826, norm of subgrad 35.876812 stepsize= 1.000000 +dualbound = 3552509.978297, lowerbound=1285928.978297, norm of subgrad 1134.517068 dualbound = 3552509.978297, lowerbound=1285928.978297, norm of subgrad 35.446925 stepsize= 1.000000 +dualbound = 3552578.832397, lowerbound=1280925.832397, norm of subgrad 1132.322760 dualbound = 3552578.832397, lowerbound=1280925.832397, norm of subgrad 36.025742 stepsize= 1.000000 +dualbound = 3552642.551187, lowerbound=1291827.551187, norm of subgrad 1137.129083 dualbound = 3552642.551187, lowerbound=1291827.551187, norm of subgrad 36.037741 stepsize= 1.000000 +dualbound = 3552719.764775, lowerbound=1283280.764775, norm of subgrad 1133.333475 dualbound = 3552719.764775, lowerbound=1283280.764775, norm of subgrad 35.230861 stepsize= 1.000000 +dualbound = 3552808.708628, lowerbound=1291867.708628, norm of subgrad 1137.106287 dualbound = 3552808.708628, lowerbound=1291867.708628, norm of subgrad 35.099058 stepsize= 1.000000 +dualbound = 3552863.358319, lowerbound=1281429.358319, norm of subgrad 1132.553468 dualbound = 3552863.358319, lowerbound=1281429.358319, norm of subgrad 36.092239 stepsize= 1.000000 +dualbound = 3552908.087004, lowerbound=1291159.087004, norm of subgrad 1136.810489 dualbound = 3552908.087004, lowerbound=1291159.087004, norm of subgrad 34.981834 stepsize= 1.000000 +dualbound = 3552999.365170, lowerbound=1288192.365170, norm of subgrad 1135.523829 dualbound = 3552999.365170, lowerbound=1288192.365170, norm of subgrad 36.239180 stepsize= 1.000000 +dualbound = 3553061.760265, lowerbound=1288417.760265, norm of subgrad 1135.619109 dualbound = 3553061.760265, lowerbound=1288417.760265, norm of subgrad 35.712674 stepsize= 1.000000 +dualbound = 3553140.647906, lowerbound=1286510.647906, norm of subgrad 1134.767222 dualbound = 3553140.647906, lowerbound=1286510.647906, norm of subgrad 35.565259 stepsize= 1.000000 +dualbound = 3553215.903434, lowerbound=1282415.903434, norm of subgrad 1132.989807 dualbound = 3553215.903434, lowerbound=1282415.903434, norm of subgrad 36.404059 stepsize= 1.000000 +dualbound = 3553265.953122, lowerbound=1286333.953122, norm of subgrad 1134.706549 dualbound = 3553265.953122, lowerbound=1286333.953122, norm of subgrad 35.707838 stepsize= 1.000000 +dualbound = 3553352.023551, lowerbound=1287598.023551, norm of subgrad 1135.241394 dualbound = 3553352.023551, lowerbound=1287598.023551, norm of subgrad 35.511553 stepsize= 1.000000 +dualbound = 3553414.003898, lowerbound=1283928.003898, norm of subgrad 1133.643685 dualbound = 3553414.003898, lowerbound=1283928.003898, norm of subgrad 35.804753 stepsize= 1.000000 +dualbound = 3553479.599407, lowerbound=1281362.599407, norm of subgrad 1132.499271 dualbound = 3553479.599407, lowerbound=1281362.599407, norm of subgrad 35.462593 stepsize= 1.000000 +dualbound = 3553545.931372, lowerbound=1283557.931372, norm of subgrad 1133.470305 dualbound = 3553545.931372, lowerbound=1283557.931372, norm of subgrad 35.543381 stepsize= 1.000000 +dualbound = 3553656.361845, lowerbound=1290067.361845, norm of subgrad 1136.328017 dualbound = 3553656.361845, lowerbound=1290067.361845, norm of subgrad 35.838952 stepsize= 1.000000 +dualbound = 3553712.871452, lowerbound=1282511.871452, norm of subgrad 1133.009211 dualbound = 3553712.871452, lowerbound=1282511.871452, norm of subgrad 35.419057 stepsize= 1.000000 +dualbound = 3553765.219763, lowerbound=1286750.219763, norm of subgrad 1134.901855 dualbound = 3553765.219763, lowerbound=1286750.219763, norm of subgrad 36.115763 stepsize= 1.000000 +dualbound = 3553853.068607, lowerbound=1283235.068607, norm of subgrad 1133.302726 dualbound = 3553853.068607, lowerbound=1283235.068607, norm of subgrad 35.040674 stepsize= 1.000000 +dualbound = 3553897.289940, lowerbound=1283654.289940, norm of subgrad 1133.527366 dualbound = 3553897.289940, lowerbound=1283654.289940, norm of subgrad 35.696237 stepsize= 1.000000 +dualbound = 3553993.165508, lowerbound=1280772.165508, norm of subgrad 1132.220458 dualbound = 3553993.165508, lowerbound=1280772.165508, norm of subgrad 35.311125 stepsize= 1.000000 +dualbound = 3554053.949829, lowerbound=1288855.949829, norm of subgrad 1135.812903 dualbound = 3554053.949829, lowerbound=1288855.949829, norm of subgrad 35.718123 stepsize= 1.000000 +dualbound = 3554091.903468, lowerbound=1281694.903468, norm of subgrad 1132.675109 dualbound = 3554091.903468, lowerbound=1281694.903468, norm of subgrad 35.999356 stepsize= 1.000000 +dualbound = 3554196.542027, lowerbound=1285714.542027, norm of subgrad 1134.415066 dualbound = 3554196.542027, lowerbound=1285714.542027, norm of subgrad 35.883681 stepsize= 1.000000 +dualbound = 3554242.913672, lowerbound=1284589.913672, norm of subgrad 1133.943523 dualbound = 3554242.913672, lowerbound=1284589.913672, norm of subgrad 35.838131 stepsize= 1.000000 +dualbound = 3554307.092499, lowerbound=1284776.092499, norm of subgrad 1134.015914 dualbound = 3554307.092499, lowerbound=1284776.092499, norm of subgrad 35.779587 stepsize= 1.000000 +dualbound = 3554393.690607, lowerbound=1284347.690607, norm of subgrad 1133.816868 dualbound = 3554393.690607, lowerbound=1284347.690607, norm of subgrad 35.771471 stepsize= 1.000000 +dualbound = 3554482.269790, lowerbound=1289307.269790, norm of subgrad 1136.012883 dualbound = 3554482.269790, lowerbound=1289307.269790, norm of subgrad 36.146634 stepsize= 1.000000 +dualbound = 3554519.421211, lowerbound=1284483.421211, norm of subgrad 1133.876722 dualbound = 3554519.421211, lowerbound=1284483.421211, norm of subgrad 35.073515 stepsize= 1.000000 +dualbound = 3554624.958183, lowerbound=1284297.958183, norm of subgrad 1133.778179 dualbound = 3554624.958183, lowerbound=1284297.958183, norm of subgrad 35.504042 stepsize= 1.000000 +dualbound = 3554691.145365, lowerbound=1281858.145365, norm of subgrad 1132.690666 dualbound = 3554691.145365, lowerbound=1281858.145365, norm of subgrad 34.585939 stepsize= 1.000000 +dualbound = 3554750.067287, lowerbound=1287864.067287, norm of subgrad 1135.397317 dualbound = 3554750.067287, lowerbound=1287864.067287, norm of subgrad 36.358244 stepsize= 1.000000 +dualbound = 3554799.914852, lowerbound=1288182.914852, norm of subgrad 1135.508659 dualbound = 3554799.914852, lowerbound=1288182.914852, norm of subgrad 35.310729 stepsize= 1.000000 +dualbound = 3554903.240787, lowerbound=1280382.240787, norm of subgrad 1132.061500 dualbound = 3554903.240787, lowerbound=1280382.240787, norm of subgrad 35.837493 stepsize= 1.000000 +dualbound = 3554954.788279, lowerbound=1284668.788279, norm of subgrad 1133.981388 dualbound = 3554954.788279, lowerbound=1284668.788279, norm of subgrad 36.007603 stepsize= 1.000000 +dualbound = 3555029.185414, lowerbound=1289953.185414, norm of subgrad 1136.265456 dualbound = 3555029.185414, lowerbound=1289953.185414, norm of subgrad 34.934183 stepsize= 1.000000 +dualbound = 3555122.321797, lowerbound=1286106.321797, norm of subgrad 1134.582003 dualbound = 3555122.321797, lowerbound=1286106.321797, norm of subgrad 35.540630 stepsize= 1.000000 +dualbound = 3555176.709979, lowerbound=1290431.709979, norm of subgrad 1136.502402 dualbound = 3555176.709979, lowerbound=1290431.709979, norm of subgrad 35.501946 stepsize= 1.000000 +dualbound = 3555262.135517, lowerbound=1282962.135517, norm of subgrad 1133.184070 dualbound = 3555262.135517, lowerbound=1282962.135517, norm of subgrad 35.063165 stepsize= 1.000000 +dualbound = 3555308.737652, lowerbound=1286500.737652, norm of subgrad 1134.767261 dualbound = 3555308.737652, lowerbound=1286500.737652, norm of subgrad 35.250562 stepsize= 1.000000 +dualbound = 3555402.656422, lowerbound=1280556.656422, norm of subgrad 1132.154873 dualbound = 3555402.656422, lowerbound=1280556.656422, norm of subgrad 36.220419 stepsize= 1.000000 +dualbound = 3555440.717672, lowerbound=1290572.717673, norm of subgrad 1136.563116 dualbound = 3555440.717672, lowerbound=1290572.717673, norm of subgrad 35.228699 stepsize= 1.000000 +dualbound = 3555541.590412, lowerbound=1282520.590412, norm of subgrad 1133.023650 dualbound = 3555541.590412, lowerbound=1282520.590412, norm of subgrad 36.371318 stepsize= 1.000000 +dualbound = 3555573.225447, lowerbound=1289508.225447, norm of subgrad 1136.117611 dualbound = 3555573.225447, lowerbound=1289508.225447, norm of subgrad 35.869695 stepsize= 1.000000 +dualbound = 3555670.891991, lowerbound=1282943.891991, norm of subgrad 1133.186610 dualbound = 3555670.891991, lowerbound=1282943.891991, norm of subgrad 35.576208 stepsize= 1.000000 +dualbound = 3555731.083077, lowerbound=1286452.083077, norm of subgrad 1134.744942 dualbound = 3555731.083077, lowerbound=1286452.083077, norm of subgrad 35.414560 stepsize= 1.000000 +dualbound = 3555801.095102, lowerbound=1288481.095102, norm of subgrad 1135.644793 dualbound = 3555801.095102, lowerbound=1288481.095102, norm of subgrad 35.749294 stepsize= 1.000000 +dualbound = 3555875.151897, lowerbound=1282121.151897, norm of subgrad 1132.838096 dualbound = 3555875.151897, lowerbound=1282121.151897, norm of subgrad 35.707937 stepsize= 1.000000 +dualbound = 3555933.830247, lowerbound=1286189.830247, norm of subgrad 1134.640397 dualbound = 3555933.830247, lowerbound=1286189.830247, norm of subgrad 35.744627 stepsize= 1.000000 +dualbound = 3556012.065267, lowerbound=1288958.065267, norm of subgrad 1135.834524 dualbound = 3556012.065267, lowerbound=1288958.065267, norm of subgrad 35.216971 stepsize= 1.000000 +dualbound = 3556085.292884, lowerbound=1283879.292884, norm of subgrad 1133.586473 dualbound = 3556085.292884, lowerbound=1283879.292884, norm of subgrad 34.817059 stepsize= 1.000000 +dualbound = 3556167.522678, lowerbound=1287914.522678, norm of subgrad 1135.366691 dualbound = 3556167.522678, lowerbound=1287914.522678, norm of subgrad 35.003283 stepsize= 1.000000 +dualbound = 3556218.626445, lowerbound=1283985.626445, norm of subgrad 1133.640872 dualbound = 3556218.626445, lowerbound=1283985.626445, norm of subgrad 34.743399 stepsize= 1.000000 +dualbound = 3556274.391138, lowerbound=1285682.391138, norm of subgrad 1134.411033 dualbound = 3556274.391138, lowerbound=1285682.391138, norm of subgrad 35.521327 stepsize= 1.000000 +dualbound = 3556352.984991, lowerbound=1283131.984991, norm of subgrad 1133.287689 dualbound = 3556352.984991, lowerbound=1283131.984991, norm of subgrad 35.883058 stepsize= 1.000000 +dualbound = 3556404.811992, lowerbound=1287666.811992, norm of subgrad 1135.314411 dualbound = 3556404.811992, lowerbound=1287666.811992, norm of subgrad 36.384434 stepsize= 1.000000 +dualbound = 3556479.680705, lowerbound=1284471.680705, norm of subgrad 1133.887861 dualbound = 3556479.680705, lowerbound=1284471.680705, norm of subgrad 36.122967 stepsize= 1.000000 +dualbound = 3556549.775312, lowerbound=1287587.775312, norm of subgrad 1135.239083 dualbound = 3556549.775312, lowerbound=1287587.775312, norm of subgrad 35.356677 stepsize= 1.000000 +dualbound = 3556627.640790, lowerbound=1281032.640790, norm of subgrad 1132.367714 dualbound = 3556627.640790, lowerbound=1281032.640790, norm of subgrad 36.081373 stepsize= 1.000000 +dualbound = 3556674.234606, lowerbound=1287149.234606, norm of subgrad 1135.059133 dualbound = 3556674.234606, lowerbound=1287149.234606, norm of subgrad 35.448467 stepsize= 1.000000 +dualbound = 3556772.969017, lowerbound=1282178.969017, norm of subgrad 1132.852139 dualbound = 3556772.969017, lowerbound=1282178.969017, norm of subgrad 35.689416 stepsize= 1.000000 +dualbound = 3556831.730653, lowerbound=1290997.730653, norm of subgrad 1136.778224 dualbound = 3556831.730653, lowerbound=1290997.730653, norm of subgrad 36.411010 stepsize= 1.000000 +dualbound = 3556891.769263, lowerbound=1284289.769263, norm of subgrad 1133.790002 dualbound = 3556891.769263, lowerbound=1284289.769263, norm of subgrad 35.355885 stepsize= 1.000000 +dualbound = 3556971.022364, lowerbound=1285952.022364, norm of subgrad 1134.524139 dualbound = 3556971.022364, lowerbound=1285952.022364, norm of subgrad 35.668657 stepsize= 1.000000 +dualbound = 3557052.123046, lowerbound=1291369.123046, norm of subgrad 1136.893189 dualbound = 3557052.123046, lowerbound=1291369.123046, norm of subgrad 35.186655 stepsize= 1.000000 +dualbound = 3557137.433649, lowerbound=1287061.433649, norm of subgrad 1135.001953 dualbound = 3557137.433649, lowerbound=1287061.433649, norm of subgrad 35.402127 stepsize= 1.000000 +dualbound = 3557190.538371, lowerbound=1279138.538371, norm of subgrad 1131.504988 dualbound = 3557190.538371, lowerbound=1279138.538371, norm of subgrad 34.901357 stepsize= 1.000000 +dualbound = 3557258.970994, lowerbound=1289292.970994, norm of subgrad 1135.970938 dualbound = 3557258.970994, lowerbound=1289292.970994, norm of subgrad 34.719341 stepsize= 1.000000 +dualbound = 3557331.126920, lowerbound=1285757.126920, norm of subgrad 1134.429428 dualbound = 3557331.126920, lowerbound=1285757.126920, norm of subgrad 35.286767 stepsize= 1.000000 +dualbound = 3557394.956152, lowerbound=1286218.956152, norm of subgrad 1134.650588 dualbound = 3557394.956152, lowerbound=1286218.956152, norm of subgrad 35.732747 stepsize= 1.000000 +dualbound = 3557464.352452, lowerbound=1283615.352452, norm of subgrad 1133.509308 dualbound = 3557464.352452, lowerbound=1283615.352452, norm of subgrad 36.019388 stepsize= 1.000000 +dualbound = 3557528.993694, lowerbound=1289861.993694, norm of subgrad 1136.269772 dualbound = 3557528.993694, lowerbound=1289861.993694, norm of subgrad 36.216588 stepsize= 1.000000 +dualbound = 3557603.539389, lowerbound=1283709.539389, norm of subgrad 1133.510714 dualbound = 3557603.539389, lowerbound=1283709.539389, norm of subgrad 34.807265 stepsize= 1.000000 +dualbound = 3557718.246591, lowerbound=1284864.246591, norm of subgrad 1134.013336 dualbound = 3557718.246591, lowerbound=1284864.246591, norm of subgrad 35.166848 stepsize= 1.000000 +dualbound = 3557742.297338, lowerbound=1281510.297338, norm of subgrad 1132.564478 dualbound = 3557742.297338, lowerbound=1281510.297338, norm of subgrad 34.871919 stepsize= 1.000000 +dualbound = 3557824.181334, lowerbound=1288437.181334, norm of subgrad 1135.608727 dualbound = 3557824.181334, lowerbound=1288437.181334, norm of subgrad 35.381973 stepsize= 1.000000 +dualbound = 3557896.343190, lowerbound=1284296.343190, norm of subgrad 1133.777907 dualbound = 3557896.343190, lowerbound=1284296.343190, norm of subgrad 35.045140 stepsize= 1.000000 +dualbound = 3557953.382561, lowerbound=1283497.382561, norm of subgrad 1133.456388 dualbound = 3557953.382561, lowerbound=1283497.382561, norm of subgrad 35.819539 stepsize= 1.000000 +dualbound = 3558014.340608, lowerbound=1285535.340608, norm of subgrad 1134.336079 dualbound = 3558014.340608, lowerbound=1285535.340608, norm of subgrad 35.269789 stepsize= 1.000000 +dualbound = 3558103.952307, lowerbound=1289242.952307, norm of subgrad 1135.958165 dualbound = 3558103.952307, lowerbound=1289242.952307, norm of subgrad 35.321547 stepsize= 1.000000 +dualbound = 3558171.509396, lowerbound=1284459.509396, norm of subgrad 1133.871470 dualbound = 3558171.509396, lowerbound=1284459.509396, norm of subgrad 35.672918 stepsize= 1.000000 +dualbound = 3558219.767014, lowerbound=1286068.767014, norm of subgrad 1134.599827 dualbound = 3558219.767014, lowerbound=1286068.767014, norm of subgrad 36.003578 stepsize= 1.000000 +dualbound = 3558293.259791, lowerbound=1287525.259791, norm of subgrad 1135.246784 dualbound = 3558293.259791, lowerbound=1287525.259791, norm of subgrad 36.517020 stepsize= 1.000000 +dualbound = 3558348.696525, lowerbound=1288697.696525, norm of subgrad 1135.773611 dualbound = 3558348.696525, lowerbound=1288697.696525, norm of subgrad 36.598316 stepsize= 1.000000 +dualbound = 3558429.000819, lowerbound=1288095.000819, norm of subgrad 1135.509578 dualbound = 3558429.000819, lowerbound=1288095.000819, norm of subgrad 36.977078 stepsize= 1.000000 +dualbound = 3558490.000858, lowerbound=1285343.000858, norm of subgrad 1134.281271 dualbound = 3558490.000858, lowerbound=1285343.000858, norm of subgrad 36.221541 stepsize= 1.000000 +dualbound = 3558581.982965, lowerbound=1283676.982965, norm of subgrad 1133.524143 dualbound = 3558581.982965, lowerbound=1283676.982965, norm of subgrad 35.944153 stepsize= 1.000000 +dualbound = 3558647.132806, lowerbound=1290157.132806, norm of subgrad 1136.356517 dualbound = 3558647.132806, lowerbound=1290157.132806, norm of subgrad 34.844653 stepsize= 1.000000 +dualbound = 3558718.137812, lowerbound=1282842.137812, norm of subgrad 1133.158037 dualbound = 3558718.137812, lowerbound=1282842.137812, norm of subgrad 35.721212 stepsize= 1.000000 +dualbound = 3558800.802605, lowerbound=1285552.802605, norm of subgrad 1134.342013 dualbound = 3558800.802605, lowerbound=1285552.802605, norm of subgrad 35.519921 stepsize= 1.000000 +dualbound = 3558867.126168, lowerbound=1281057.126168, norm of subgrad 1132.347617 dualbound = 3558867.126168, lowerbound=1281057.126168, norm of subgrad 34.933130 stepsize= 1.000000 +dualbound = 3558943.286500, lowerbound=1284106.286500, norm of subgrad 1133.694971 dualbound = 3558943.286500, lowerbound=1284106.286500, norm of subgrad 35.130618 stepsize= 1.000000 +dualbound = 3559020.907987, lowerbound=1283300.907987, norm of subgrad 1133.332214 dualbound = 3559020.907987, lowerbound=1283300.907987, norm of subgrad 34.908759 stepsize= 1.000000 +dualbound = 3559096.650655, lowerbound=1280824.650655, norm of subgrad 1132.267040 dualbound = 3559096.650655, lowerbound=1280824.650655, norm of subgrad 35.773491 stepsize= 1.000000 +dualbound = 3559159.538941, lowerbound=1288637.538941, norm of subgrad 1135.709267 dualbound = 3559159.538941, lowerbound=1288637.538941, norm of subgrad 35.508989 stepsize= 1.000000 +dualbound = 3559228.364076, lowerbound=1281732.364076, norm of subgrad 1132.659421 dualbound = 3559228.364076, lowerbound=1281732.364076, norm of subgrad 35.409393 stepsize= 1.000000 +dualbound = 3559320.658200, lowerbound=1286807.658200, norm of subgrad 1134.877816 dualbound = 3559320.658200, lowerbound=1286807.658200, norm of subgrad 35.104047 stepsize= 1.000000 +dualbound = 3559350.183665, lowerbound=1285316.183665, norm of subgrad 1134.256666 dualbound = 3559350.183665, lowerbound=1285316.183665, norm of subgrad 35.376906 stepsize= 1.000000 +dualbound = 3559430.498666, lowerbound=1286280.498666, norm of subgrad 1134.685198 dualbound = 3559430.498666, lowerbound=1286280.498666, norm of subgrad 36.198273 stepsize= 1.000000 +dualbound = 3559496.802409, lowerbound=1289737.802409, norm of subgrad 1136.201480 dualbound = 3559496.802409, lowerbound=1289737.802409, norm of subgrad 35.809269 stepsize= 1.000000 +dualbound = 3559585.833984, lowerbound=1285668.833984, norm of subgrad 1134.416958 dualbound = 3559585.833984, lowerbound=1285668.833984, norm of subgrad 36.359752 stepsize= 1.000000 +dualbound = 3559596.263121, lowerbound=1286450.263121, norm of subgrad 1134.776746 dualbound = 3559596.263121, lowerbound=1286450.263121, norm of subgrad 35.755127 stepsize= 1.000000 +dualbound = 3559711.532579, lowerbound=1288216.532579, norm of subgrad 1135.536231 dualbound = 3559711.532579, lowerbound=1288216.532579, norm of subgrad 36.623346 stepsize= 1.000000 +dualbound = 3559754.008192, lowerbound=1288717.008192, norm of subgrad 1135.760102 dualbound = 3559754.008192, lowerbound=1288717.008192, norm of subgrad 35.727799 stepsize= 1.000000 +dualbound = 3559866.073735, lowerbound=1286545.073735, norm of subgrad 1134.803540 dualbound = 3559866.073735, lowerbound=1286545.073735, norm of subgrad 36.688766 stepsize= 1.000000 +dualbound = 3559903.678139, lowerbound=1287115.678139, norm of subgrad 1135.073424 dualbound = 3559903.678139, lowerbound=1287115.678139, norm of subgrad 36.243681 stepsize= 1.000000 +dualbound = 3559961.393237, lowerbound=1286903.393237, norm of subgrad 1134.949952 dualbound = 3559961.393237, lowerbound=1286903.393237, norm of subgrad 35.576890 stepsize= 1.000000 +dualbound = 3560044.413181, lowerbound=1286528.413181, norm of subgrad 1134.787387 dualbound = 3560044.413181, lowerbound=1286528.413181, norm of subgrad 36.014163 stepsize= 1.000000 +dualbound = 3560110.362735, lowerbound=1287330.362735, norm of subgrad 1135.145084 dualbound = 3560110.362735, lowerbound=1287330.362735, norm of subgrad 35.915868 stepsize= 1.000000 +dualbound = 3560188.911899, lowerbound=1281298.911899, norm of subgrad 1132.486164 dualbound = 3560188.911899, lowerbound=1281298.911899, norm of subgrad 36.118543 stepsize= 1.000000 +dualbound = 3560258.075261, lowerbound=1286377.075261, norm of subgrad 1134.688096 dualbound = 3560258.075261, lowerbound=1286377.075261, norm of subgrad 34.773026 stepsize= 1.000000 +dualbound = 3560371.810276, lowerbound=1286118.810276, norm of subgrad 1134.553573 dualbound = 3560371.810276, lowerbound=1286118.810276, norm of subgrad 34.738092 stepsize= 1.000000 +dualbound = 3560422.239177, lowerbound=1280611.239177, norm of subgrad 1132.166613 dualbound = 3560422.239177, lowerbound=1280611.239177, norm of subgrad 35.219723 stepsize= 1.000000 +dualbound = 3560461.350505, lowerbound=1284755.350505, norm of subgrad 1134.010737 dualbound = 3560461.350505, lowerbound=1284755.350505, norm of subgrad 35.554343 stepsize= 1.000000 +dualbound = 3560521.918424, lowerbound=1289528.918424, norm of subgrad 1136.121436 dualbound = 3560521.918424, lowerbound=1289528.918424, norm of subgrad 36.104957 stepsize= 1.000000 +dualbound = 3560610.422937, lowerbound=1280632.422937, norm of subgrad 1132.166252 dualbound = 3560610.422937, lowerbound=1280632.422937, norm of subgrad 35.447207 stepsize= 1.000000 +dualbound = 3560702.350581, lowerbound=1288533.350581, norm of subgrad 1135.639182 dualbound = 3560702.350581, lowerbound=1288533.350581, norm of subgrad 35.141537 stepsize= 1.000000 +dualbound = 3560748.965356, lowerbound=1286750.965356, norm of subgrad 1134.887204 dualbound = 3560748.965356, lowerbound=1286750.965356, norm of subgrad 35.561423 stepsize= 1.000000 +dualbound = 3560821.317300, lowerbound=1283078.317300, norm of subgrad 1133.264452 dualbound = 3560821.317300, lowerbound=1283078.317300, norm of subgrad 35.809942 stepsize= 1.000000 +dualbound = 3560887.862619, lowerbound=1290885.862619, norm of subgrad 1136.721981 dualbound = 3560887.862619, lowerbound=1290885.862619, norm of subgrad 36.298007 stepsize= 1.000000 +dualbound = 3560956.062065, lowerbound=1288820.062065, norm of subgrad 1135.780376 dualbound = 3560956.062065, lowerbound=1288820.062065, norm of subgrad 35.287384 stepsize= 1.000000 +dualbound = 3561026.476335, lowerbound=1290475.476335, norm of subgrad 1136.509778 dualbound = 3561026.476335, lowerbound=1290475.476335, norm of subgrad 35.347055 stepsize= 1.000000 +dualbound = 3561123.447063, lowerbound=1282454.447063, norm of subgrad 1132.976808 dualbound = 3561123.447063, lowerbound=1282454.447063, norm of subgrad 35.762700 stepsize= 1.000000 +dualbound = 3561173.190185, lowerbound=1287823.190185, norm of subgrad 1135.351571 dualbound = 3561173.190185, lowerbound=1287823.190185, norm of subgrad 35.351706 stepsize= 1.000000 +dualbound = 3561228.350999, lowerbound=1281931.350999, norm of subgrad 1132.751672 dualbound = 3561228.350999, lowerbound=1281931.350999, norm of subgrad 35.357613 stepsize= 1.000000 +dualbound = 3561310.796693, lowerbound=1287987.796693, norm of subgrad 1135.403363 dualbound = 3561310.796693, lowerbound=1287987.796693, norm of subgrad 35.148907 stepsize= 1.000000 +dualbound = 3561399.774681, lowerbound=1288333.774681, norm of subgrad 1135.572884 dualbound = 3561399.774681, lowerbound=1288333.774681, norm of subgrad 35.790753 stepsize= 1.000000 +dualbound = 3561439.528500, lowerbound=1282783.528500, norm of subgrad 1133.151591 dualbound = 3561439.528500, lowerbound=1282783.528500, norm of subgrad 35.899218 stepsize= 1.000000 +dualbound = 3561506.835336, lowerbound=1287384.835336, norm of subgrad 1135.160709 dualbound = 3561506.835336, lowerbound=1287384.835336, norm of subgrad 35.669410 stepsize= 1.000000 +dualbound = 3561586.765655, lowerbound=1284596.765655, norm of subgrad 1133.930230 dualbound = 3561586.765655, lowerbound=1284596.765655, norm of subgrad 35.790087 stepsize= 1.000000 +dualbound = 3561671.529428, lowerbound=1288500.529428, norm of subgrad 1135.661274 dualbound = 3561671.529428, lowerbound=1288500.529428, norm of subgrad 36.204472 stepsize= 1.000000 +dualbound = 3561744.358317, lowerbound=1282726.358317, norm of subgrad 1133.117981 dualbound = 3561744.358317, lowerbound=1282726.358317, norm of subgrad 36.094721 stepsize= 1.000000 +dualbound = 3561759.962397, lowerbound=1291154.962397, norm of subgrad 1136.857494 dualbound = 3561759.962397, lowerbound=1291154.962397, norm of subgrad 36.133144 stepsize= 1.000000 +dualbound = 3561855.138423, lowerbound=1282670.138423, norm of subgrad 1133.101998 dualbound = 3561855.138423, lowerbound=1282670.138423, norm of subgrad 36.676641 stepsize= 1.000000 +dualbound = 3561916.839411, lowerbound=1288414.839411, norm of subgrad 1135.622666 dualbound = 3561916.839411, lowerbound=1288414.839411, norm of subgrad 35.856673 stepsize= 1.000000 +dualbound = 3562007.303011, lowerbound=1284420.303011, norm of subgrad 1133.836542 dualbound = 3562007.303011, lowerbound=1284420.303011, norm of subgrad 35.432522 stepsize= 1.000000 +dualbound = 3562077.460542, lowerbound=1287724.460542, norm of subgrad 1135.319101 dualbound = 3562077.460542, lowerbound=1287724.460542, norm of subgrad 35.988297 stepsize= 1.000000 +dualbound = 3562138.842580, lowerbound=1283108.842580, norm of subgrad 1133.306156 dualbound = 3562138.842580, lowerbound=1283108.842580, norm of subgrad 36.542879 stepsize= 1.000000 +dualbound = 3562199.771422, lowerbound=1287078.771422, norm of subgrad 1135.050559 dualbound = 3562199.771422, lowerbound=1287078.771422, norm of subgrad 36.358339 stepsize= 1.000000 +dualbound = 3562285.141516, lowerbound=1284139.141516, norm of subgrad 1133.744743 dualbound = 3562285.141516, lowerbound=1284139.141516, norm of subgrad 36.378154 stepsize= 1.000000 +dualbound = 3562347.395811, lowerbound=1288197.395811, norm of subgrad 1135.525163 dualbound = 3562347.395811, lowerbound=1288197.395811, norm of subgrad 35.808579 stepsize= 1.000000 +dualbound = 3562418.247883, lowerbound=1285885.247883, norm of subgrad 1134.503966 dualbound = 3562418.247883, lowerbound=1285885.247883, norm of subgrad 35.844833 stepsize= 1.000000 +dualbound = 3562501.724725, lowerbound=1286039.724725, norm of subgrad 1134.550891 dualbound = 3562501.724725, lowerbound=1286039.724725, norm of subgrad 35.347940 stepsize= 1.000000 +dualbound = 3562580.657416, lowerbound=1288508.657416, norm of subgrad 1135.638876 dualbound = 3562580.657416, lowerbound=1288508.657416, norm of subgrad 35.297772 stepsize= 1.000000 +dualbound = 3562652.697820, lowerbound=1286490.697820, norm of subgrad 1134.780462 dualbound = 3562652.697820, lowerbound=1286490.697820, norm of subgrad 36.166841 stepsize= 1.000000 +dualbound = 3562702.225216, lowerbound=1285502.225216, norm of subgrad 1134.323686 dualbound = 3562702.225216, lowerbound=1285502.225216, norm of subgrad 35.178508 stepsize= 1.000000 +dualbound = 3562801.784092, lowerbound=1292409.784092, norm of subgrad 1137.388141 dualbound = 3562801.784092, lowerbound=1292409.784092, norm of subgrad 36.627297 stepsize= 1.000000 +dualbound = 3562839.766160, lowerbound=1286115.766160, norm of subgrad 1134.598064 dualbound = 3562839.766160, lowerbound=1286115.766160, norm of subgrad 35.142312 stepsize= 1.000000 +dualbound = 3562908.497161, lowerbound=1285762.497161, norm of subgrad 1134.440610 dualbound = 3562908.497161, lowerbound=1285762.497161, norm of subgrad 35.520853 stepsize= 1.000000 +dualbound = 3562995.100584, lowerbound=1284917.100584, norm of subgrad 1134.044135 dualbound = 3562995.100584, lowerbound=1284917.100584, norm of subgrad 35.008619 stepsize= 1.000000 +dualbound = 3563086.562104, lowerbound=1287035.562104, norm of subgrad 1135.012582 dualbound = 3563086.562104, lowerbound=1287035.562104, norm of subgrad 36.186483 stepsize= 1.000000 +dualbound = 3563116.740872, lowerbound=1286162.740872, norm of subgrad 1134.624493 dualbound = 3563116.740872, lowerbound=1286162.740872, norm of subgrad 35.216172 stepsize= 1.000000 +dualbound = 3563206.471443, lowerbound=1288387.471443, norm of subgrad 1135.593885 dualbound = 3563206.471443, lowerbound=1288387.471443, norm of subgrad 35.717371 stepsize= 1.000000 +dualbound = 3563275.085177, lowerbound=1286015.085177, norm of subgrad 1134.535625 dualbound = 3563275.085177, lowerbound=1286015.085177, norm of subgrad 34.994481 stepsize= 1.000000 +dualbound = 3563363.091217, lowerbound=1286807.091217, norm of subgrad 1134.878007 dualbound = 3563363.091217, lowerbound=1286807.091217, norm of subgrad 35.057182 stepsize= 1.000000 +dualbound = 3563411.622449, lowerbound=1283712.622449, norm of subgrad 1133.518691 dualbound = 3563411.622449, lowerbound=1283712.622449, norm of subgrad 34.648683 stepsize= 1.000000 +dualbound = 3563475.386472, lowerbound=1285087.386472, norm of subgrad 1134.155363 dualbound = 3563475.386472, lowerbound=1285087.386472, norm of subgrad 35.843605 stepsize= 1.000000 +dualbound = 3563534.468619, lowerbound=1284115.468619, norm of subgrad 1133.711810 dualbound = 3563534.468619, lowerbound=1284115.468619, norm of subgrad 35.299889 stepsize= 1.000000 +dualbound = 3563595.756170, lowerbound=1284358.756170, norm of subgrad 1133.834537 dualbound = 3563595.756170, lowerbound=1284358.756170, norm of subgrad 35.823003 stepsize= 1.000000 +dualbound = 3563664.507387, lowerbound=1282859.507387, norm of subgrad 1133.152023 dualbound = 3563664.507387, lowerbound=1282859.507387, norm of subgrad 35.252677 stepsize= 1.000000 +dualbound = 3563746.381475, lowerbound=1288724.381475, norm of subgrad 1135.738694 dualbound = 3563746.381475, lowerbound=1288724.381475, norm of subgrad 35.494705 stepsize= 1.000000 +dualbound = 3563792.356086, lowerbound=1283160.356086, norm of subgrad 1133.284764 dualbound = 3563792.356086, lowerbound=1283160.356086, norm of subgrad 34.928135 stepsize= 1.000000 +dualbound = 3563899.617584, lowerbound=1289196.617584, norm of subgrad 1135.961539 dualbound = 3563899.617584, lowerbound=1289196.617584, norm of subgrad 36.321640 stepsize= 1.000000 +dualbound = 3563946.683914, lowerbound=1285398.683914, norm of subgrad 1134.305816 dualbound = 3563946.683914, lowerbound=1285398.683914, norm of subgrad 36.028688 stepsize= 1.000000 +dualbound = 3564013.034368, lowerbound=1287307.034368, norm of subgrad 1135.156392 dualbound = 3564013.034368, lowerbound=1287307.034368, norm of subgrad 36.597137 stepsize= 1.000000 +dualbound = 3564080.442121, lowerbound=1286921.442121, norm of subgrad 1134.979049 dualbound = 3564080.442121, lowerbound=1286921.442121, norm of subgrad 36.378672 stepsize= 1.000000 +dualbound = 3564174.280662, lowerbound=1287115.280662, norm of subgrad 1135.039330 dualbound = 3564174.280662, lowerbound=1287115.280662, norm of subgrad 35.956064 stepsize= 1.000000 +dualbound = 3564234.501905, lowerbound=1284251.501905, norm of subgrad 1133.785915 dualbound = 3564234.501905, lowerbound=1284251.501905, norm of subgrad 35.766203 stepsize= 1.000000 +dualbound = 3564295.329005, lowerbound=1280286.329005, norm of subgrad 1132.066398 dualbound = 3564295.329005, lowerbound=1280286.329005, norm of subgrad 36.726382 stepsize= 1.000000 +dualbound = 3564363.051347, lowerbound=1288319.051347, norm of subgrad 1135.581372 dualbound = 3564363.051347, lowerbound=1288319.051347, norm of subgrad 35.968352 stepsize= 1.000000 +dualbound = 3564442.581715, lowerbound=1287929.581715, norm of subgrad 1135.392259 dualbound = 3564442.581715, lowerbound=1287929.581715, norm of subgrad 35.574294 stepsize= 1.000000 +dualbound = 3564517.434653, lowerbound=1289228.434653, norm of subgrad 1135.973783 dualbound = 3564517.434653, lowerbound=1289228.434653, norm of subgrad 35.816936 stepsize= 1.000000 +dualbound = 3564609.355202, lowerbound=1290092.355202, norm of subgrad 1136.331974 dualbound = 3564609.355202, lowerbound=1290092.355202, norm of subgrad 35.354215 stepsize= 1.000000 +dualbound = 3564662.423144, lowerbound=1284701.423144, norm of subgrad 1133.963590 dualbound = 3564662.423144, lowerbound=1284701.423144, norm of subgrad 35.000971 stepsize= 1.000000 +dualbound = 3564740.125232, lowerbound=1283677.125232, norm of subgrad 1133.547584 dualbound = 3564740.125232, lowerbound=1283677.125232, norm of subgrad 36.478790 stepsize= 1.000000 +dualbound = 3564783.912630, lowerbound=1289408.912630, norm of subgrad 1136.077864 dualbound = 3564783.912630, lowerbound=1289408.912630, norm of subgrad 36.163343 stepsize= 1.000000 +dualbound = 3564857.051651, lowerbound=1286416.051651, norm of subgrad 1134.734794 dualbound = 3564857.051651, lowerbound=1286416.051651, norm of subgrad 35.779030 stepsize= 1.000000 +dualbound = 3564934.856601, lowerbound=1288546.856601, norm of subgrad 1135.627957 dualbound = 3564934.856601, lowerbound=1288546.856601, norm of subgrad 34.377390 stepsize= 1.000000 +dualbound = 3565043.088605, lowerbound=1283987.088605, norm of subgrad 1133.654307 dualbound = 3565043.088605, lowerbound=1283987.088605, norm of subgrad 35.961535 stepsize= 1.000000 +dualbound = 3565067.315621, lowerbound=1285509.315621, norm of subgrad 1134.307858 dualbound = 3565067.315621, lowerbound=1285509.315621, norm of subgrad 34.193962 stepsize= 1.000000 +dualbound = 3565162.320552, lowerbound=1284219.320552, norm of subgrad 1133.770400 dualbound = 3565162.320552, lowerbound=1284219.320552, norm of subgrad 36.207802 stepsize= 1.000000 +dualbound = 3565215.898840, lowerbound=1290474.898840, norm of subgrad 1136.500725 dualbound = 3565215.898840, lowerbound=1290474.898840, norm of subgrad 34.822095 stepsize= 1.000000 +dualbound = 3565299.899066, lowerbound=1286987.899066, norm of subgrad 1134.997753 dualbound = 3565299.899066, lowerbound=1286987.899066, norm of subgrad 36.276717 stepsize= 1.000000 +dualbound = 3565350.652768, lowerbound=1289072.652768, norm of subgrad 1135.900371 dualbound = 3565350.652768, lowerbound=1289072.652768, norm of subgrad 35.323557 stepsize= 1.000000 +dualbound = 3565457.885274, lowerbound=1290370.885274, norm of subgrad 1136.452764 dualbound = 3565457.885274, lowerbound=1290370.885274, norm of subgrad 35.513835 stepsize= 1.000000 +dualbound = 3565497.963825, lowerbound=1282821.963825, norm of subgrad 1133.136339 dualbound = 3565497.963825, lowerbound=1282821.963825, norm of subgrad 34.872318 stepsize= 1.000000 +dualbound = 3565584.879978, lowerbound=1285397.879978, norm of subgrad 1134.272842 dualbound = 3565584.879978, lowerbound=1285397.879978, norm of subgrad 35.551598 stepsize= 1.000000 +dualbound = 3565639.071980, lowerbound=1288239.071980, norm of subgrad 1135.524580 dualbound = 3565639.071980, lowerbound=1288239.071980, norm of subgrad 35.088346 stepsize= 1.000000 +dualbound = 3565731.029646, lowerbound=1284892.029646, norm of subgrad 1134.041018 dualbound = 3565731.029646, lowerbound=1284892.029646, norm of subgrad 35.340595 stepsize= 1.000000 +dualbound = 3565770.316874, lowerbound=1282970.316874, norm of subgrad 1133.209741 dualbound = 3565770.316874, lowerbound=1282970.316874, norm of subgrad 35.118189 stepsize= 1.000000 +dualbound = 3565861.772398, lowerbound=1285081.772398, norm of subgrad 1134.123791 dualbound = 3565861.772398, lowerbound=1285081.772398, norm of subgrad 35.305177 stepsize= 1.000000 +dualbound = 3565905.385927, lowerbound=1285577.385927, norm of subgrad 1134.390755 dualbound = 3565905.385927, lowerbound=1285577.385927, norm of subgrad 36.174764 stepsize= 1.000000 +dualbound = 3565958.524656, lowerbound=1286405.524656, norm of subgrad 1134.757474 dualbound = 3565958.524656, lowerbound=1286405.524656, norm of subgrad 36.361226 stepsize= 1.000000 +dualbound = 3566043.075370, lowerbound=1286087.075370, norm of subgrad 1134.604370 dualbound = 3566043.075370, lowerbound=1286087.075370, norm of subgrad 36.394378 stepsize= 1.000000 +dualbound = 3566129.273171, lowerbound=1288587.273171, norm of subgrad 1135.689338 dualbound = 3566129.273171, lowerbound=1288587.273171, norm of subgrad 35.905401 stepsize= 1.000000 +dualbound = 3566200.167152, lowerbound=1285708.167152, norm of subgrad 1134.425920 dualbound = 3566200.167152, lowerbound=1285708.167152, norm of subgrad 35.845418 stepsize= 1.000000 +dualbound = 3566249.924254, lowerbound=1285826.924254, norm of subgrad 1134.483550 dualbound = 3566249.924254, lowerbound=1285826.924254, norm of subgrad 35.717742 stepsize= 1.000000 +dualbound = 3566355.818510, lowerbound=1286150.818510, norm of subgrad 1134.589273 dualbound = 3566355.818510, lowerbound=1286150.818510, norm of subgrad 35.325547 stepsize= 1.000000 +dualbound = 3566415.403723, lowerbound=1288526.403723, norm of subgrad 1135.652854 dualbound = 3566415.403723, lowerbound=1288526.403723, norm of subgrad 35.221942 stepsize= 1.000000 +dualbound = 3566467.384219, lowerbound=1288279.384219, norm of subgrad 1135.563025 dualbound = 3566467.384219, lowerbound=1288279.384219, norm of subgrad 35.720869 stepsize= 1.000000 +dualbound = 3566534.095046, lowerbound=1287732.095046, norm of subgrad 1135.308370 dualbound = 3566534.095046, lowerbound=1287732.095046, norm of subgrad 35.492405 stepsize= 1.000000 +dualbound = 3566596.136533, lowerbound=1289728.136533, norm of subgrad 1136.180063 dualbound = 3566596.136533, lowerbound=1289728.136533, norm of subgrad 35.200021 stepsize= 1.000000 +dualbound = 3566676.849884, lowerbound=1288713.849884, norm of subgrad 1135.761793 dualbound = 3566676.849884, lowerbound=1288713.849884, norm of subgrad 36.355376 stepsize= 1.000000 +dualbound = 3566724.509000, lowerbound=1292202.509000, norm of subgrad 1137.282950 dualbound = 3566724.509000, lowerbound=1292202.509000, norm of subgrad 35.463490 stepsize= 1.000000 +dualbound = 3566824.401727, lowerbound=1280676.401727, norm of subgrad 1132.207314 dualbound = 3566824.401727, lowerbound=1280676.401727, norm of subgrad 36.289017 stepsize= 1.000000 +dualbound = 3566860.401847, lowerbound=1290459.401847, norm of subgrad 1136.511945 dualbound = 3566860.401847, lowerbound=1290459.401847, norm of subgrad 35.156793 stepsize= 1.000000 +dualbound = 3566976.976374, lowerbound=1288884.976374, norm of subgrad 1135.812474 dualbound = 3566976.976374, lowerbound=1288884.976374, norm of subgrad 36.077341 stepsize= 1.000000 +dualbound = 3567020.417059, lowerbound=1290492.417059, norm of subgrad 1136.501833 dualbound = 3567020.417059, lowerbound=1290492.417059, norm of subgrad 34.459261 stepsize= 1.000000 +dualbound = 3567106.696160, lowerbound=1283219.696160, norm of subgrad 1133.321974 dualbound = 3567106.696160, lowerbound=1283219.696160, norm of subgrad 35.850789 stepsize= 1.000000 +dualbound = 3567141.107845, lowerbound=1283634.107845, norm of subgrad 1133.526845 dualbound = 3567141.107845, lowerbound=1283634.107845, norm of subgrad 35.824736 stepsize= 1.000000 +dualbound = 3567239.440664, lowerbound=1288090.440664, norm of subgrad 1135.461774 dualbound = 3567239.440664, lowerbound=1288090.440664, norm of subgrad 35.795709 stepsize= 1.000000 +dualbound = 3567298.585943, lowerbound=1286064.585943, norm of subgrad 1134.598425 dualbound = 3567298.585943, lowerbound=1286064.585943, norm of subgrad 36.168291 stepsize= 1.000000 +dualbound = 3567357.055842, lowerbound=1283161.055842, norm of subgrad 1133.289043 dualbound = 3567357.055842, lowerbound=1283161.055842, norm of subgrad 35.234499 stepsize= 1.000000 +dualbound = 3567443.121698, lowerbound=1285745.121698, norm of subgrad 1134.454989 dualbound = 3567443.121698, lowerbound=1285745.121698, norm of subgrad 36.456355 stepsize= 1.000000 +dualbound = 3567484.325281, lowerbound=1287088.325281, norm of subgrad 1135.040231 dualbound = 3567484.325281, lowerbound=1287088.325281, norm of subgrad 35.625884 stepsize= 1.000000 +dualbound = 3567557.068282, lowerbound=1285712.068282, norm of subgrad 1134.434250 dualbound = 3567557.068282, lowerbound=1285712.068282, norm of subgrad 36.079676 stepsize= 1.000000 +dualbound = 3567635.138263, lowerbound=1286675.138263, norm of subgrad 1134.870538 dualbound = 3567635.138263, lowerbound=1286675.138263, norm of subgrad 36.524923 stepsize= 1.000000 +dualbound = 3567690.379914, lowerbound=1288066.379914, norm of subgrad 1135.451179 dualbound = 3567690.379914, lowerbound=1288066.379914, norm of subgrad 35.188658 stepsize= 1.000000 +dualbound = 3567784.559968, lowerbound=1283810.559968, norm of subgrad 1133.562773 dualbound = 3567784.559968, lowerbound=1283810.559968, norm of subgrad 35.329592 stepsize= 1.000000 +dualbound = 3567864.929071, lowerbound=1282280.929071, norm of subgrad 1132.921855 dualbound = 3567864.929071, lowerbound=1282280.929071, norm of subgrad 36.212831 stepsize= 1.000000 +dualbound = 3567912.045761, lowerbound=1285662.045761, norm of subgrad 1134.383994 dualbound = 3567912.045761, lowerbound=1285662.045761, norm of subgrad 34.815466 stepsize= 1.000000 +dualbound = 3567990.535471, lowerbound=1290416.535471, norm of subgrad 1136.495726 dualbound = 3567990.535471, lowerbound=1290416.535471, norm of subgrad 35.839778 stepsize= 1.000000 +dualbound = 3568065.111682, lowerbound=1284634.111682, norm of subgrad 1133.979326 dualbound = 3568065.111682, lowerbound=1284634.111682, norm of subgrad 36.736579 stepsize= 1.000000 +dualbound = 3568110.893029, lowerbound=1286684.893029, norm of subgrad 1134.858094 dualbound = 3568110.893029, lowerbound=1286684.893029, norm of subgrad 35.549702 stepsize= 1.000000 +dualbound = 3568185.678048, lowerbound=1284451.678048, norm of subgrad 1133.890505 dualbound = 3568185.678048, lowerbound=1284451.678048, norm of subgrad 36.479926 stepsize= 1.000000 +dualbound = 3568279.074497, lowerbound=1285673.074497, norm of subgrad 1134.417945 dualbound = 3568279.074497, lowerbound=1285673.074497, norm of subgrad 36.392258 stepsize= 1.000000 +dualbound = 3568336.095915, lowerbound=1290854.095915, norm of subgrad 1136.724723 dualbound = 3568336.095915, lowerbound=1290854.095915, norm of subgrad 36.688165 stepsize= 1.000000 +dualbound = 3568408.674938, lowerbound=1288700.674938, norm of subgrad 1135.743666 dualbound = 3568408.674938, lowerbound=1288700.674938, norm of subgrad 35.854972 stepsize= 1.000000 +dualbound = 3568502.607050, lowerbound=1283319.607050, norm of subgrad 1133.352375 dualbound = 3568502.607050, lowerbound=1283319.607050, norm of subgrad 35.523684 stepsize= 1.000000 +dualbound = 3568558.702816, lowerbound=1288191.702816, norm of subgrad 1135.510327 dualbound = 3568558.702816, lowerbound=1288191.702816, norm of subgrad 35.328399 stepsize= 1.000000 +dualbound = 3568654.256926, lowerbound=1287808.256926, norm of subgrad 1135.326058 dualbound = 3568654.256926, lowerbound=1287808.256926, norm of subgrad 35.391441 stepsize= 1.000000 +dualbound = 3568702.934454, lowerbound=1286054.934454, norm of subgrad 1134.572137 dualbound = 3568702.934454, lowerbound=1286054.934454, norm of subgrad 35.322479 stepsize= 1.000000 +dualbound = 3568773.607124, lowerbound=1289653.607124, norm of subgrad 1136.163988 dualbound = 3568773.607124, lowerbound=1289653.607124, norm of subgrad 35.856278 stepsize= 1.000000 +dualbound = 3568817.059977, lowerbound=1285127.059977, norm of subgrad 1134.190487 dualbound = 3568817.059977, lowerbound=1285127.059977, norm of subgrad 36.117210 stepsize= 1.000000 +dualbound = 3568904.299952, lowerbound=1286720.299952, norm of subgrad 1134.849902 dualbound = 3568904.299952, lowerbound=1286720.299952, norm of subgrad 35.372871 stepsize= 1.000000 +dualbound = 3568977.775729, lowerbound=1286854.775729, norm of subgrad 1134.914435 dualbound = 3568977.775729, lowerbound=1286854.775729, norm of subgrad 35.347925 stepsize= 1.000000 +dualbound = 3569045.874793, lowerbound=1286805.874793, norm of subgrad 1134.887164 dualbound = 3569045.874793, lowerbound=1286805.874793, norm of subgrad 35.087021 stepsize= 1.000000 +dualbound = 3569102.962778, lowerbound=1283697.962778, norm of subgrad 1133.559422 dualbound = 3569102.962778, lowerbound=1283697.962778, norm of subgrad 36.277927 stepsize= 1.000000 +dualbound = 3569184.730982, lowerbound=1283831.730982, norm of subgrad 1133.589313 dualbound = 3569184.730982, lowerbound=1283831.730982, norm of subgrad 35.703896 stepsize= 1.000000 +dualbound = 3569249.603998, lowerbound=1289798.603998, norm of subgrad 1136.233516 dualbound = 3569249.603998, lowerbound=1289798.603998, norm of subgrad 35.956543 stepsize= 1.000000 +dualbound = 3569318.246358, lowerbound=1286370.246358, norm of subgrad 1134.749861 dualbound = 3569318.246358, lowerbound=1286370.246358, norm of subgrad 36.819049 stepsize= 1.000000 +dualbound = 3569366.105099, lowerbound=1293003.105099, norm of subgrad 1137.644103 dualbound = 3569366.105099, lowerbound=1293003.105099, norm of subgrad 35.761135 stepsize= 1.000000 +dualbound = 3569453.134911, lowerbound=1284523.134911, norm of subgrad 1133.891589 dualbound = 3569453.134911, lowerbound=1284523.134911, norm of subgrad 35.693554 stepsize= 1.000000 +dualbound = 3569531.395144, lowerbound=1287694.395144, norm of subgrad 1135.293969 dualbound = 3569531.395144, lowerbound=1287694.395144, norm of subgrad 35.724785 stepsize= 1.000000 +dualbound = 3569594.121700, lowerbound=1284544.121700, norm of subgrad 1133.904371 dualbound = 3569594.121700, lowerbound=1284544.121700, norm of subgrad 35.464441 stepsize= 1.000000 +dualbound = 3569657.350840, lowerbound=1289221.350840, norm of subgrad 1135.982989 dualbound = 3569657.350840, lowerbound=1289221.350840, norm of subgrad 36.044821 stepsize= 1.000000 +dualbound = 3569744.230649, lowerbound=1283566.230649, norm of subgrad 1133.484994 dualbound = 3569744.230649, lowerbound=1283566.230649, norm of subgrad 36.178444 stepsize= 1.000000 +dualbound = 3569775.249619, lowerbound=1285753.249619, norm of subgrad 1134.459012 dualbound = 3569775.249619, lowerbound=1285753.249619, norm of subgrad 35.707408 stepsize= 1.000000 +dualbound = 3569869.698319, lowerbound=1283107.698319, norm of subgrad 1133.265943 dualbound = 3569869.698319, lowerbound=1283107.698319, norm of subgrad 35.755401 stepsize= 1.000000 +dualbound = 3569971.715480, lowerbound=1289329.715480, norm of subgrad 1136.017480 dualbound = 3569971.715480, lowerbound=1289329.715480, norm of subgrad 36.166520 stepsize= 1.000000 +dualbound = 3570029.470548, lowerbound=1285448.470548, norm of subgrad 1134.315419 dualbound = 3570029.470548, lowerbound=1285448.470548, norm of subgrad 35.787638 stepsize= 1.000000 +dualbound = 3570076.607002, lowerbound=1284960.607002, norm of subgrad 1134.086684 dualbound = 3570076.607002, lowerbound=1284960.607002, norm of subgrad 35.201370 stepsize= 1.000000 +dualbound = 3570176.921584, lowerbound=1285242.921584, norm of subgrad 1134.231864 dualbound = 3570176.921584, lowerbound=1285242.921584, norm of subgrad 36.596647 stepsize= 1.000000 +dualbound = 3570227.589854, lowerbound=1284263.589854, norm of subgrad 1133.783308 dualbound = 3570227.589854, lowerbound=1284263.589854, norm of subgrad 35.378924 stepsize= 1.000000 +dualbound = 3570316.919886, lowerbound=1286090.919886, norm of subgrad 1134.618403 dualbound = 3570316.919886, lowerbound=1286090.919886, norm of subgrad 36.841960 stepsize= 1.000000 +dualbound = 3570355.205266, lowerbound=1285674.205266, norm of subgrad 1134.410069 dualbound = 3570355.205266, lowerbound=1285674.205266, norm of subgrad 35.359375 stepsize= 1.000000 +dualbound = 3570461.337403, lowerbound=1287434.337403, norm of subgrad 1135.182072 dualbound = 3570461.337403, lowerbound=1287434.337403, norm of subgrad 36.195748 stepsize= 1.000000 +dualbound = 3570513.985479, lowerbound=1285595.985479, norm of subgrad 1134.359725 dualbound = 3570513.985479, lowerbound=1285595.985479, norm of subgrad 35.052077 stepsize= 1.000000 +dualbound = 3570599.141061, lowerbound=1285534.141061, norm of subgrad 1134.339518 dualbound = 3570599.141061, lowerbound=1285534.141061, norm of subgrad 35.737314 stepsize= 1.000000 +dualbound = 3570670.415974, lowerbound=1281804.415974, norm of subgrad 1132.662534 dualbound = 3570670.415974, lowerbound=1281804.415974, norm of subgrad 34.514851 stepsize= 1.000000 +dualbound = 3570744.511123, lowerbound=1291574.511123, norm of subgrad 1136.995387 dualbound = 3570744.511123, lowerbound=1291574.511123, norm of subgrad 35.469637 stepsize= 1.000000 +dualbound = 3570761.292006, lowerbound=1286676.292006, norm of subgrad 1134.840205 dualbound = 3570761.292006, lowerbound=1286676.292006, norm of subgrad 34.681132 stepsize= 1.000000 +dualbound = 3570878.338468, lowerbound=1284308.338468, norm of subgrad 1133.796868 dualbound = 3570878.338468, lowerbound=1284308.338468, norm of subgrad 36.111583 stepsize= 1.000000 +dualbound = 3570940.324937, lowerbound=1284507.324937, norm of subgrad 1133.888586 dualbound = 3570940.324937, lowerbound=1284507.324937, norm of subgrad 35.468105 stepsize= 1.000000 +dualbound = 3570996.531295, lowerbound=1288172.531295, norm of subgrad 1135.518177 dualbound = 3570996.531295, lowerbound=1288172.531295, norm of subgrad 35.849775 stepsize= 1.000000 +dualbound = 3571047.591063, lowerbound=1290511.591063, norm of subgrad 1136.563501 dualbound = 3571047.591063, lowerbound=1290511.591063, norm of subgrad 36.277538 stepsize= 1.000000 +dualbound = 3571131.732650, lowerbound=1285293.732650, norm of subgrad 1134.245446 dualbound = 3571131.732650, lowerbound=1285293.732650, norm of subgrad 36.099052 stepsize= 1.000000 +dualbound = 3571209.857894, lowerbound=1286510.857894, norm of subgrad 1134.782295 dualbound = 3571209.857894, lowerbound=1286510.857894, norm of subgrad 36.029505 stepsize= 1.000000 +dualbound = 3571271.686824, lowerbound=1285801.686824, norm of subgrad 1134.468019 dualbound = 3571271.686824, lowerbound=1285801.686824, norm of subgrad 35.746733 stepsize= 1.000000 +dualbound = 3571362.377079, lowerbound=1289245.377079, norm of subgrad 1136.000166 dualbound = 3571362.377079, lowerbound=1289245.377079, norm of subgrad 36.629090 stepsize= 1.000000 +dualbound = 3571396.354566, lowerbound=1291055.354566, norm of subgrad 1136.791694 dualbound = 3571396.354566, lowerbound=1291055.354566, norm of subgrad 35.692821 stepsize= 1.000000 +dualbound = 3571485.429901, lowerbound=1284341.429901, norm of subgrad 1133.818958 dualbound = 3571485.429901, lowerbound=1284341.429901, norm of subgrad 35.959357 stepsize= 1.000000 +dualbound = 3571563.881141, lowerbound=1284753.881141, norm of subgrad 1134.008325 dualbound = 3571563.881141, lowerbound=1284753.881141, norm of subgrad 36.047902 stepsize= 1.000000 +dualbound = 3571611.370586, lowerbound=1287978.370586, norm of subgrad 1135.411542 dualbound = 3571611.370586, lowerbound=1287978.370586, norm of subgrad 35.049814 stepsize= 1.000000 +dualbound = 3571708.611247, lowerbound=1290099.611247, norm of subgrad 1136.362447 dualbound = 3571708.611247, lowerbound=1290099.611247, norm of subgrad 36.293810 stepsize= 1.000000 +dualbound = 3571749.189829, lowerbound=1289114.189829, norm of subgrad 1135.914693 dualbound = 3571749.189829, lowerbound=1289114.189829, norm of subgrad 35.051085 stepsize= 1.000000 +dualbound = 3571832.856222, lowerbound=1282930.856222, norm of subgrad 1133.209979 dualbound = 3571832.856222, lowerbound=1282930.856222, norm of subgrad 36.299675 stepsize= 1.000000 +dualbound = 3571900.018600, lowerbound=1289022.018600, norm of subgrad 1135.873681 dualbound = 3571900.018600, lowerbound=1289022.018600, norm of subgrad 35.414155 stepsize= 1.000000 +dualbound = 3571983.610026, lowerbound=1285360.610026, norm of subgrad 1134.265670 dualbound = 3571983.610026, lowerbound=1285360.610026, norm of subgrad 35.799322 stepsize= 1.000000 +dualbound = 3572023.886919, lowerbound=1287554.886919, norm of subgrad 1135.274807 dualbound = 3572023.886919, lowerbound=1287554.886919, norm of subgrad 36.527755 stepsize= 1.000000 +dualbound = 3572086.630971, lowerbound=1286459.630971, norm of subgrad 1134.755318 dualbound = 3572086.630971, lowerbound=1286459.630971, norm of subgrad 35.675539 stepsize= 1.000000 +dualbound = 3572190.116781, lowerbound=1286594.116781, norm of subgrad 1134.809287 dualbound = 3572190.116781, lowerbound=1286594.116781, norm of subgrad 36.076111 stepsize= 1.000000 +dualbound = 3572250.605814, lowerbound=1281584.605814, norm of subgrad 1132.604347 dualbound = 3572250.605814, lowerbound=1281584.605814, norm of subgrad 35.615854 stepsize= 1.000000 +dualbound = 3572319.034513, lowerbound=1291187.034513, norm of subgrad 1136.826739 dualbound = 3572319.034513, lowerbound=1291187.034513, norm of subgrad 35.446138 stepsize= 1.000000 +dualbound = 3572403.864790, lowerbound=1288641.864790, norm of subgrad 1135.728781 dualbound = 3572403.864790, lowerbound=1288641.864790, norm of subgrad 36.370734 stepsize= 1.000000 +dualbound = 3572451.493448, lowerbound=1288302.493448, norm of subgrad 1135.549864 dualbound = 3572451.493448, lowerbound=1288302.493448, norm of subgrad 34.908862 stepsize= 1.000000 +dualbound = 3572532.297610, lowerbound=1283587.297610, norm of subgrad 1133.500903 dualbound = 3572532.297610, lowerbound=1283587.297610, norm of subgrad 36.301572 stepsize= 1.000000 +dualbound = 3572597.346839, lowerbound=1291460.346839, norm of subgrad 1136.951339 dualbound = 3572597.346839, lowerbound=1291460.346839, norm of subgrad 35.539404 stepsize= 1.000000 +dualbound = 3572680.194584, lowerbound=1282721.194584, norm of subgrad 1133.108642 dualbound = 3572680.194584, lowerbound=1282721.194584, norm of subgrad 36.011772 stepsize= 1.000000 +dualbound = 3572721.859968, lowerbound=1290228.859968, norm of subgrad 1136.428555 dualbound = 3572721.859968, lowerbound=1290228.859968, norm of subgrad 35.814318 stepsize= 1.000000 +dualbound = 3572805.853875, lowerbound=1287334.853875, norm of subgrad 1135.130765 dualbound = 3572805.853875, lowerbound=1287334.853875, norm of subgrad 35.651001 stepsize= 1.000000 +dualbound = 3572873.632107, lowerbound=1285361.632107, norm of subgrad 1134.275378 dualbound = 3572873.632107, lowerbound=1285361.632107, norm of subgrad 35.871691 stepsize= 1.000000 +dualbound = 3572944.897246, lowerbound=1282980.897246, norm of subgrad 1133.234705 dualbound = 3572944.897246, lowerbound=1282980.897246, norm of subgrad 36.211395 stepsize= 1.000000 +dualbound = 3573002.717780, lowerbound=1292613.717780, norm of subgrad 1137.467238 dualbound = 3573002.717780, lowerbound=1292613.717780, norm of subgrad 35.718630 stepsize= 1.000000 +dualbound = 3573087.127602, lowerbound=1285592.127602, norm of subgrad 1134.378300 dualbound = 3573087.127602, lowerbound=1285592.127602, norm of subgrad 36.144292 stepsize= 1.000000 +dualbound = 3573142.194383, lowerbound=1285905.194383, norm of subgrad 1134.535673 dualbound = 3573142.194383, lowerbound=1285905.194383, norm of subgrad 36.346482 stepsize= 1.000000 +dualbound = 3573229.706042, lowerbound=1284616.706042, norm of subgrad 1133.950928 dualbound = 3573229.706042, lowerbound=1284616.706042, norm of subgrad 36.269983 stepsize= 1.000000 +dualbound = 3573263.668505, lowerbound=1287764.668505, norm of subgrad 1135.337249 dualbound = 3573263.668505, lowerbound=1287764.668505, norm of subgrad 35.495950 stepsize= 1.000000 +dualbound = 3573364.724654, lowerbound=1282953.724654, norm of subgrad 1133.207273 dualbound = 3573364.724654, lowerbound=1282953.724654, norm of subgrad 36.139399 stepsize= 1.000000 +dualbound = 3573425.920197, lowerbound=1290181.920197, norm of subgrad 1136.408342 dualbound = 3573425.920197, lowerbound=1290181.920197, norm of subgrad 36.099800 stepsize= 1.000000 +dualbound = 3573491.398363, lowerbound=1286647.398363, norm of subgrad 1134.874618 dualbound = 3573491.398363, lowerbound=1286647.398363, norm of subgrad 36.857539 stepsize= 1.000000 +dualbound = 3573542.965137, lowerbound=1286774.965137, norm of subgrad 1134.915400 dualbound = 3573542.965137, lowerbound=1286774.965137, norm of subgrad 36.187937 stepsize= 1.000000 +dualbound = 3573664.892036, lowerbound=1286748.892036, norm of subgrad 1134.903032 dualbound = 3573664.892036, lowerbound=1286748.892036, norm of subgrad 37.120438 stepsize= 1.000000 +dualbound = 3573701.686369, lowerbound=1287960.686369, norm of subgrad 1135.425773 dualbound = 3573701.686369, lowerbound=1287960.686369, norm of subgrad 35.606100 stepsize= 1.000000 +dualbound = 3573788.024334, lowerbound=1280503.024334, norm of subgrad 1132.117937 dualbound = 3573788.024334, lowerbound=1280503.024334, norm of subgrad 35.697871 stepsize= 1.000000 +dualbound = 3573857.358846, lowerbound=1290898.358846, norm of subgrad 1136.713402 dualbound = 3573857.358846, lowerbound=1290898.358846, norm of subgrad 35.893377 stepsize= 1.000000 +dualbound = 3573920.530478, lowerbound=1284215.530478, norm of subgrad 1133.753734 dualbound = 3573920.530478, lowerbound=1284215.530478, norm of subgrad 35.286990 stepsize= 1.000000 +dualbound = 3573980.304396, lowerbound=1283704.304396, norm of subgrad 1133.560455 dualbound = 3573980.304396, lowerbound=1283704.304396, norm of subgrad 36.259811 stepsize= 1.000000 +dualbound = 3574038.993514, lowerbound=1283827.993514, norm of subgrad 1133.601338 dualbound = 3574038.993514, lowerbound=1283827.993514, norm of subgrad 35.814649 stepsize= 1.000000 +dualbound = 3574148.155816, lowerbound=1289904.155816, norm of subgrad 1136.234199 dualbound = 3574148.155816, lowerbound=1289904.155816, norm of subgrad 35.116411 stepsize= 1.000000 +dualbound = 3574219.920670, lowerbound=1287546.920670, norm of subgrad 1135.238706 dualbound = 3574219.920670, lowerbound=1287546.920670, norm of subgrad 35.941130 stepsize= 1.000000 +dualbound = 3574272.515242, lowerbound=1288227.515242, norm of subgrad 1135.541948 dualbound = 3574272.515242, lowerbound=1288227.515242, norm of subgrad 35.785396 stepsize= 1.000000 +dualbound = 3574346.801249, lowerbound=1285997.801249, norm of subgrad 1134.557976 dualbound = 3574346.801249, lowerbound=1285997.801249, norm of subgrad 36.031736 stepsize= 1.000000 +dualbound = 3574399.785442, lowerbound=1284282.785442, norm of subgrad 1133.811618 dualbound = 3574399.785442, lowerbound=1284282.785442, norm of subgrad 36.041423 stepsize= 1.000000 +dualbound = 3574485.121845, lowerbound=1287407.121845, norm of subgrad 1135.148062 dualbound = 3574485.121845, lowerbound=1287407.121845, norm of subgrad 35.204210 stepsize= 1.000000 +dualbound = 3574578.176563, lowerbound=1285822.176563, norm of subgrad 1134.465150 dualbound = 3574578.176563, lowerbound=1285822.176563, norm of subgrad 35.805792 stepsize= 1.000000 +dualbound = 3574642.518862, lowerbound=1289580.518862, norm of subgrad 1136.126982 dualbound = 3574642.518862, lowerbound=1289580.518862, norm of subgrad 35.613794 stepsize= 1.000000 +dualbound = 3574694.390527, lowerbound=1290086.390527, norm of subgrad 1136.332430 dualbound = 3574694.390527, lowerbound=1290086.390527, norm of subgrad 34.883688 stepsize= 1.000000 +dualbound = 3574778.704081, lowerbound=1285875.704081, norm of subgrad 1134.516507 dualbound = 3574778.704081, lowerbound=1285875.704081, norm of subgrad 36.555623 stepsize= 1.000000 +dualbound = 3574814.877980, lowerbound=1286988.877980, norm of subgrad 1134.999946 dualbound = 3574814.877980, lowerbound=1286988.877980, norm of subgrad 35.667547 stepsize= 1.000000 +dualbound = 3574910.056402, lowerbound=1284787.056402, norm of subgrad 1134.027802 dualbound = 3574910.056402, lowerbound=1284787.056402, norm of subgrad 36.430460 stepsize= 1.000000 +dualbound = 3574936.358850, lowerbound=1285690.358850, norm of subgrad 1134.433938 dualbound = 3574936.358850, lowerbound=1285690.358850, norm of subgrad 35.725375 stepsize= 1.000000 +dualbound = 3575054.088888, lowerbound=1289719.088888, norm of subgrad 1136.187524 dualbound = 3575054.088888, lowerbound=1289719.088888, norm of subgrad 36.341850 stepsize= 1.000000 +dualbound = 3575101.904245, lowerbound=1283999.904245, norm of subgrad 1133.690833 dualbound = 3575101.904245, lowerbound=1283999.904245, norm of subgrad 36.094534 stepsize= 1.000000 +dualbound = 3575176.665858, lowerbound=1291850.665858, norm of subgrad 1137.101871 dualbound = 3575176.665858, lowerbound=1291850.665858, norm of subgrad 34.996594 stepsize= 1.000000 +dualbound = 3575276.910435, lowerbound=1286432.910435, norm of subgrad 1134.739578 dualbound = 3575276.910435, lowerbound=1286432.910435, norm of subgrad 36.072768 stepsize= 1.000000 +dualbound = 3575324.782873, lowerbound=1281226.782873, norm of subgrad 1132.434891 dualbound = 3575324.782873, lowerbound=1281226.782873, norm of subgrad 35.069537 stepsize= 1.000000 +dualbound = 3575409.042843, lowerbound=1286936.042843, norm of subgrad 1134.933497 dualbound = 3575409.042843, lowerbound=1286936.042843, norm of subgrad 34.960835 stepsize= 1.000000 +dualbound = 3575491.468319, lowerbound=1288452.468319, norm of subgrad 1135.592122 dualbound = 3575491.468319, lowerbound=1288452.468319, norm of subgrad 34.632723 stepsize= 1.000000 +dualbound = 3575560.537967, lowerbound=1284545.537967, norm of subgrad 1133.900145 dualbound = 3575560.537967, lowerbound=1284545.537967, norm of subgrad 35.398724 stepsize= 1.000000 +dualbound = 3575611.580581, lowerbound=1284186.580581, norm of subgrad 1133.768751 dualbound = 3575611.580581, lowerbound=1284186.580581, norm of subgrad 36.000592 stepsize= 1.000000 +dualbound = 3575669.351803, lowerbound=1288427.351803, norm of subgrad 1135.647988 dualbound = 3575669.351803, lowerbound=1288427.351803, norm of subgrad 36.424871 stepsize= 1.000000 +dualbound = 3575736.390702, lowerbound=1288110.390702, norm of subgrad 1135.471880 dualbound = 3575736.390702, lowerbound=1288110.390702, norm of subgrad 35.398289 stepsize= 1.000000 +dualbound = 3575824.661741, lowerbound=1280534.661741, norm of subgrad 1132.131027 dualbound = 3575824.661741, lowerbound=1280534.661741, norm of subgrad 35.696933 stepsize= 1.000000 +dualbound = 3575898.962646, lowerbound=1288746.962646, norm of subgrad 1135.737189 dualbound = 3575898.962646, lowerbound=1288746.962646, norm of subgrad 35.018579 stepsize= 1.000000 +dualbound = 3575938.781896, lowerbound=1286427.781896, norm of subgrad 1134.772568 dualbound = 3575938.781896, lowerbound=1286427.781896, norm of subgrad 36.343077 stepsize= 1.000000 +dualbound = 3576024.988747, lowerbound=1289777.988747, norm of subgrad 1136.202882 dualbound = 3576024.988747, lowerbound=1289777.988747, norm of subgrad 35.569746 stepsize= 1.000000 +dualbound = 3576087.427536, lowerbound=1286043.427536, norm of subgrad 1134.588219 dualbound = 3576087.427536, lowerbound=1286043.427536, norm of subgrad 36.186168 stepsize= 1.000000 +dualbound = 3576173.048111, lowerbound=1288078.048111, norm of subgrad 1135.436061 dualbound = 3576173.048111, lowerbound=1288078.048111, norm of subgrad 34.965992 stepsize= 1.000000 +dualbound = 3576234.425289, lowerbound=1285173.425289, norm of subgrad 1134.198583 dualbound = 3576234.425289, lowerbound=1285173.425289, norm of subgrad 35.977454 stepsize= 1.000000 +dualbound = 3576304.200792, lowerbound=1291587.200792, norm of subgrad 1137.038346 dualbound = 3576304.200792, lowerbound=1291587.200792, norm of subgrad 36.589281 stepsize= 1.000000 +dualbound = 3576357.241407, lowerbound=1282109.241407, norm of subgrad 1132.835046 dualbound = 3576357.241407, lowerbound=1282109.241407, norm of subgrad 35.482962 stepsize= 1.000000 +dualbound = 3576468.906984, lowerbound=1291353.906984, norm of subgrad 1136.888256 dualbound = 3576468.906984, lowerbound=1291353.906984, norm of subgrad 35.674439 stepsize= 1.000000 +dualbound = 3576512.956123, lowerbound=1287412.956123, norm of subgrad 1135.189833 dualbound = 3576512.956123, lowerbound=1287412.956123, norm of subgrad 35.875467 stepsize= 1.000000 +dualbound = 3576570.570807, lowerbound=1290691.570807, norm of subgrad 1136.624639 dualbound = 3576570.570807, lowerbound=1290691.570807, norm of subgrad 35.799646 stepsize= 1.000000 +dualbound = 3576626.754203, lowerbound=1284413.754203, norm of subgrad 1133.841591 dualbound = 3576626.754203, lowerbound=1284413.754203, norm of subgrad 35.202037 stepsize= 1.000000 +dualbound = 3576739.640503, lowerbound=1291975.640503, norm of subgrad 1137.149348 dualbound = 3576739.640503, lowerbound=1291975.640503, norm of subgrad 35.297115 stepsize= 1.000000 +dualbound = 3576815.028127, lowerbound=1283664.028127, norm of subgrad 1133.484904 dualbound = 3576815.028127, lowerbound=1283664.028127, norm of subgrad 34.632176 stepsize= 1.000000 +dualbound = 3576862.294814, lowerbound=1288598.294814, norm of subgrad 1135.718845 dualbound = 3576862.294814, lowerbound=1288598.294814, norm of subgrad 36.142312 stepsize= 1.000000 +dualbound = 3576892.647629, lowerbound=1287765.647629, norm of subgrad 1135.351773 dualbound = 3576892.647629, lowerbound=1287765.647629, norm of subgrad 35.893632 stepsize= 1.000000 +dualbound = 3576993.260091, lowerbound=1290095.260091, norm of subgrad 1136.370653 dualbound = 3576993.260091, lowerbound=1290095.260091, norm of subgrad 36.655320 stepsize= 1.000000 +dualbound = 3577040.519157, lowerbound=1289267.519157, norm of subgrad 1135.989225 dualbound = 3577040.519157, lowerbound=1289267.519157, norm of subgrad 35.373140 stepsize= 1.000000 +dualbound = 3577148.039726, lowerbound=1290157.039726, norm of subgrad 1136.367476 dualbound = 3577148.039726, lowerbound=1290157.039726, norm of subgrad 35.798332 stepsize= 1.000000 +dualbound = 3577205.068566, lowerbound=1284567.068566, norm of subgrad 1133.908757 dualbound = 3577205.068566, lowerbound=1284567.068566, norm of subgrad 35.199841 stepsize= 1.000000 +dualbound = 3577274.702070, lowerbound=1291582.702070, norm of subgrad 1137.052638 dualbound = 3577274.702070, lowerbound=1291582.702070, norm of subgrad 37.089534 stepsize= 1.000000 +dualbound = 3577295.377301, lowerbound=1291676.377301, norm of subgrad 1137.065248 dualbound = 3577295.377301, lowerbound=1291676.377301, norm of subgrad 35.520068 stepsize= 1.000000 +dualbound = 3577408.707560, lowerbound=1287126.707560, norm of subgrad 1135.044364 dualbound = 3577408.707560, lowerbound=1287126.707560, norm of subgrad 36.226099 stepsize= 1.000000 +dualbound = 3577473.170077, lowerbound=1290106.170077, norm of subgrad 1136.367973 dualbound = 3577473.170077, lowerbound=1290106.170077, norm of subgrad 35.923008 stepsize= 1.000000 +dualbound = 3577536.914820, lowerbound=1283093.914820, norm of subgrad 1133.281481 dualbound = 3577536.914820, lowerbound=1283093.914820, norm of subgrad 36.010342 stepsize= 1.000000 +dualbound = 3577568.392000, lowerbound=1285376.392000, norm of subgrad 1134.318029 dualbound = 3577568.392000, lowerbound=1285376.392000, norm of subgrad 36.503112 stepsize= 1.000000 +dualbound = 3577690.189340, lowerbound=1285661.189340, norm of subgrad 1134.392873 dualbound = 3577690.189340, lowerbound=1285661.189340, norm of subgrad 36.163481 stepsize= 1.000000 +dualbound = 3577767.311429, lowerbound=1285523.311429, norm of subgrad 1134.319757 dualbound = 3577767.311429, lowerbound=1285523.311429, norm of subgrad 35.144304 stepsize= 1.000000 +dualbound = 3577841.058448, lowerbound=1283019.058448, norm of subgrad 1133.212715 dualbound = 3577841.058448, lowerbound=1283019.058448, norm of subgrad 35.010670 stepsize= 1.000000 +dualbound = 3577909.549779, lowerbound=1285159.549779, norm of subgrad 1134.203487 dualbound = 3577909.549779, lowerbound=1285159.549779, norm of subgrad 36.421029 stepsize= 1.000000 +dualbound = 3577952.547519, lowerbound=1289978.547519, norm of subgrad 1136.340859 dualbound = 3577952.547519, lowerbound=1289978.547519, norm of subgrad 36.537621 stepsize= 1.000000 +dualbound = 3578014.672304, lowerbound=1286847.672304, norm of subgrad 1134.925844 dualbound = 3578014.672304, lowerbound=1286847.672304, norm of subgrad 35.652837 stepsize= 1.000000 +dualbound = 3578112.776693, lowerbound=1290868.776693, norm of subgrad 1136.687634 dualbound = 3578112.776693, lowerbound=1290868.776693, norm of subgrad 35.890171 stepsize= 1.000000 +dualbound = 3578162.369375, lowerbound=1285335.369375, norm of subgrad 1134.247490 dualbound = 3578162.369375, lowerbound=1285335.369375, norm of subgrad 35.094055 stepsize= 1.000000 +dualbound = 3578267.294943, lowerbound=1283703.294943, norm of subgrad 1133.540601 dualbound = 3578267.294943, lowerbound=1283703.294943, norm of subgrad 36.275688 stepsize= 1.000000 +dualbound = 3578299.810017, lowerbound=1286859.810017, norm of subgrad 1134.919737 dualbound = 3578299.810017, lowerbound=1286859.810017, norm of subgrad 34.864238 stepsize= 1.000000 +dualbound = 3578381.465604, lowerbound=1287872.465604, norm of subgrad 1135.378996 dualbound = 3578381.465604, lowerbound=1287872.465604, norm of subgrad 35.981323 stepsize= 1.000000 +dualbound = 3578460.547345, lowerbound=1284617.547345, norm of subgrad 1133.936307 dualbound = 3578460.547345, lowerbound=1284617.547345, norm of subgrad 35.680271 stepsize= 1.000000 +dualbound = 3578528.227080, lowerbound=1288944.227080, norm of subgrad 1135.847801 dualbound = 3578528.227080, lowerbound=1288944.227080, norm of subgrad 35.688650 stepsize= 1.000000 +dualbound = 3578577.173241, lowerbound=1291978.173241, norm of subgrad 1137.194431 dualbound = 3578577.173241, lowerbound=1291978.173241, norm of subgrad 35.804276 stepsize= 1.000000 +dualbound = 3578654.005517, lowerbound=1286575.005517, norm of subgrad 1134.825099 dualbound = 3578654.005517, lowerbound=1286575.005517, norm of subgrad 36.466865 stepsize= 1.000000 +dualbound = 3578720.936611, lowerbound=1287050.936611, norm of subgrad 1135.051513 dualbound = 3578720.936611, lowerbound=1287050.936611, norm of subgrad 36.850117 stepsize= 1.000000 +dualbound = 3578793.601272, lowerbound=1287442.601272, norm of subgrad 1135.202890 dualbound = 3578793.601272, lowerbound=1287442.601272, norm of subgrad 36.272092 stepsize= 1.000000 +dualbound = 3578866.573500, lowerbound=1284471.573500, norm of subgrad 1133.891782 dualbound = 3578866.573500, lowerbound=1284471.573500, norm of subgrad 36.221157 stepsize= 1.000000 +dualbound = 3578926.835747, lowerbound=1287016.835747, norm of subgrad 1135.003452 dualbound = 3578926.835747, lowerbound=1287016.835747, norm of subgrad 35.724813 stepsize= 1.000000 +dualbound = 3579027.461982, lowerbound=1288705.461982, norm of subgrad 1135.714076 dualbound = 3579027.461982, lowerbound=1288705.461982, norm of subgrad 35.236717 stepsize= 1.000000 +dualbound = 3579097.244622, lowerbound=1281304.244622, norm of subgrad 1132.478805 dualbound = 3579097.244622, lowerbound=1281304.244622, norm of subgrad 35.690092 stepsize= 1.000000 +dualbound = 3579154.696009, lowerbound=1292787.696009, norm of subgrad 1137.541074 dualbound = 3579154.696009, lowerbound=1292787.696009, norm of subgrad 35.629361 stepsize= 1.000000 +dualbound = 3579226.168456, lowerbound=1285275.168456, norm of subgrad 1134.238145 dualbound = 3579226.168456, lowerbound=1285275.168456, norm of subgrad 35.950973 stepsize= 1.000000 +dualbound = 3579286.843352, lowerbound=1290906.843352, norm of subgrad 1136.685024 dualbound = 3579286.843352, lowerbound=1290906.843352, norm of subgrad 34.737226 stepsize= 1.000000 +dualbound = 3579383.892888, lowerbound=1278878.892888, norm of subgrad 1131.433115 dualbound = 3579383.892888, lowerbound=1278878.892888, norm of subgrad 36.865289 stepsize= 1.000000 +dualbound = 3579381.421664, lowerbound=1291080.421664, norm of subgrad 1136.849780 dualbound = 3579381.421664, lowerbound=1291080.421664, norm of subgrad 36.667817 stepsize= 1.000000 +dualbound = 3579464.978454, lowerbound=1281807.978454, norm of subgrad 1132.716636 dualbound = 3579464.978454, lowerbound=1281807.978454, norm of subgrad 36.366974 stepsize= 1.000000 +dualbound = 3579562.563369, lowerbound=1292412.563369, norm of subgrad 1137.371339 dualbound = 3579562.563369, lowerbound=1292412.563369, norm of subgrad 36.035884 stepsize= 1.000000 +dualbound = 3579629.638696, lowerbound=1282262.638696, norm of subgrad 1132.920403 dualbound = 3579629.638696, lowerbound=1282262.638696, norm of subgrad 36.236381 stepsize= 1.000000 +dualbound = 3579685.150170, lowerbound=1289248.150170, norm of subgrad 1136.017672 dualbound = 3579685.150170, lowerbound=1289248.150170, norm of subgrad 36.653942 stepsize= 1.000000 +dualbound = 3579750.039507, lowerbound=1278539.039507, norm of subgrad 1131.270984 dualbound = 3579750.039507, lowerbound=1278539.039507, norm of subgrad 36.053978 stepsize= 1.000000 +dualbound = 3579835.734836, lowerbound=1288219.734836, norm of subgrad 1135.548649 dualbound = 3579835.734836, lowerbound=1288219.734836, norm of subgrad 36.560844 stepsize= 1.000000 +dualbound = 3579913.706510, lowerbound=1282398.706510, norm of subgrad 1132.966772 dualbound = 3579913.706510, lowerbound=1282398.706510, norm of subgrad 35.957915 stepsize= 1.000000 +dualbound = 3580012.018138, lowerbound=1289942.018138, norm of subgrad 1136.286944 dualbound = 3580012.018138, lowerbound=1289942.018138, norm of subgrad 36.115255 stepsize= 1.000000 +dualbound = 3580072.153821, lowerbound=1283579.153821, norm of subgrad 1133.477020 dualbound = 3580072.153821, lowerbound=1283579.153821, norm of subgrad 35.371396 stepsize= 1.000000 +dualbound = 3580149.065795, lowerbound=1287142.065795, norm of subgrad 1135.007958 dualbound = 3580149.065795, lowerbound=1287142.065795, norm of subgrad 34.320722 stepsize= 1.000000 +dualbound = 3580232.795372, lowerbound=1284985.795372, norm of subgrad 1134.080154 dualbound = 3580232.795372, lowerbound=1284985.795372, norm of subgrad 35.152945 stepsize= 1.000000 +dualbound = 3580278.806186, lowerbound=1284741.806186, norm of subgrad 1134.002560 dualbound = 3580278.806186, lowerbound=1284741.806186, norm of subgrad 35.581046 stepsize= 1.000000 +dualbound = 3580341.761881, lowerbound=1286242.761881, norm of subgrad 1134.659756 dualbound = 3580341.761881, lowerbound=1286242.761881, norm of subgrad 35.678505 stepsize= 1.000000 +dualbound = 3580426.137683, lowerbound=1286346.137683, norm of subgrad 1134.685480 dualbound = 3580426.137683, lowerbound=1286346.137683, norm of subgrad 35.346510 stepsize= 1.000000 +dualbound = 3580491.213546, lowerbound=1288799.213546, norm of subgrad 1135.792769 dualbound = 3580491.213546, lowerbound=1288799.213546, norm of subgrad 35.931544 stepsize= 1.000000 +dualbound = 3580543.781696, lowerbound=1287942.781696, norm of subgrad 1135.429778 dualbound = 3580543.781696, lowerbound=1287942.781696, norm of subgrad 36.201770 stepsize= 1.000000 +dualbound = 3580618.771965, lowerbound=1287325.771965, norm of subgrad 1135.107383 dualbound = 3580618.771965, lowerbound=1287325.771965, norm of subgrad 34.899717 stepsize= 1.000000 +dualbound = 3580706.910581, lowerbound=1289859.910581, norm of subgrad 1136.231451 dualbound = 3580706.910581, lowerbound=1289859.910581, norm of subgrad 35.357299 stepsize= 1.000000 +dualbound = 3580760.214479, lowerbound=1285693.214479, norm of subgrad 1134.417566 dualbound = 3580760.214479, lowerbound=1285693.214479, norm of subgrad 35.542987 stepsize= 1.000000 +dualbound = 3580825.463008, lowerbound=1288597.463008, norm of subgrad 1135.697347 dualbound = 3580825.463008, lowerbound=1288597.463008, norm of subgrad 35.724621 stepsize= 1.000000 +dualbound = 3580885.480047, lowerbound=1292604.480047, norm of subgrad 1137.456584 dualbound = 3580885.480047, lowerbound=1292604.480047, norm of subgrad 35.538951 stepsize= 1.000000 +dualbound = 3580981.993510, lowerbound=1288309.993510, norm of subgrad 1135.563293 dualbound = 3580981.993510, lowerbound=1288309.993510, norm of subgrad 35.923717 stepsize= 1.000000 +dualbound = 3581021.724152, lowerbound=1285102.724152, norm of subgrad 1134.168296 dualbound = 3581021.724152, lowerbound=1285102.724152, norm of subgrad 35.703370 stepsize= 1.000000 +dualbound = 3581109.318606, lowerbound=1291003.318606, norm of subgrad 1136.760009 dualbound = 3581109.318606, lowerbound=1291003.318606, norm of subgrad 36.160676 stepsize= 1.000000 +dualbound = 3581153.114261, lowerbound=1290110.114261, norm of subgrad 1136.379388 dualbound = 3581153.114261, lowerbound=1290110.114261, norm of subgrad 35.941559 stepsize= 1.000000 +dualbound = 3581240.958730, lowerbound=1282405.958730, norm of subgrad 1132.976592 dualbound = 3581240.958730, lowerbound=1282405.958730, norm of subgrad 36.302128 stepsize= 1.000000 +dualbound = 3581299.672800, lowerbound=1286029.672800, norm of subgrad 1134.615209 dualbound = 3581299.672800, lowerbound=1286029.672800, norm of subgrad 37.157961 stepsize= 1.000000 +dualbound = 3581349.467849, lowerbound=1284448.467849, norm of subgrad 1133.893058 dualbound = 3581349.467849, lowerbound=1284448.467849, norm of subgrad 36.260103 stepsize= 1.000000 +dualbound = 3581464.348649, lowerbound=1289938.348649, norm of subgrad 1136.276968 dualbound = 3581464.348649, lowerbound=1289938.348649, norm of subgrad 36.081585 stepsize= 1.000000 +dualbound = 3581539.211490, lowerbound=1283691.211490, norm of subgrad 1133.534389 dualbound = 3581539.211490, lowerbound=1283691.211490, norm of subgrad 35.831032 stepsize= 1.000000 +dualbound = 3581591.138180, lowerbound=1288601.138180, norm of subgrad 1135.713053 dualbound = 3581591.138180, lowerbound=1288601.138180, norm of subgrad 35.985090 stepsize= 1.000000 +dualbound = 3581654.562114, lowerbound=1285577.562114, norm of subgrad 1134.351163 dualbound = 3581654.562114, lowerbound=1285577.562114, norm of subgrad 35.191248 stepsize= 1.000000 +dualbound = 3581754.166873, lowerbound=1287289.166873, norm of subgrad 1135.109760 dualbound = 3581754.166873, lowerbound=1287289.166873, norm of subgrad 35.841383 stepsize= 1.000000 +dualbound = 3581801.361883, lowerbound=1285467.361883, norm of subgrad 1134.286719 dualbound = 3581801.361883, lowerbound=1285467.361883, norm of subgrad 34.441182 stepsize= 1.000000 +dualbound = 3581892.141776, lowerbound=1289692.141776, norm of subgrad 1136.147500 dualbound = 3581892.141776, lowerbound=1289692.141776, norm of subgrad 35.068218 stepsize= 1.000000 +dualbound = 3581969.339384, lowerbound=1285152.339384, norm of subgrad 1134.164600 dualbound = 3581969.339384, lowerbound=1285152.339384, norm of subgrad 35.414652 stepsize= 1.000000 +dualbound = 3582007.886984, lowerbound=1288471.886984, norm of subgrad 1135.618724 dualbound = 3582007.886984, lowerbound=1288471.886984, norm of subgrad 34.591149 stepsize= 1.000000 +dualbound = 3582091.816209, lowerbound=1289468.816209, norm of subgrad 1136.072100 dualbound = 3582091.816209, lowerbound=1289468.816209, norm of subgrad 35.706151 stepsize= 1.000000 +dualbound = 3582127.521482, lowerbound=1290051.521482, norm of subgrad 1136.353608 dualbound = 3582127.521482, lowerbound=1290051.521482, norm of subgrad 35.828833 stepsize= 1.000000 +dualbound = 3582214.320948, lowerbound=1285049.320948, norm of subgrad 1134.124914 dualbound = 3582214.320948, lowerbound=1285049.320948, norm of subgrad 35.732331 stepsize= 1.000000 +dualbound = 3582279.734401, lowerbound=1286485.734401, norm of subgrad 1134.776513 dualbound = 3582279.734401, lowerbound=1286485.734401, norm of subgrad 36.019626 stepsize= 1.000000 +dualbound = 3582359.451182, lowerbound=1288113.451182, norm of subgrad 1135.497887 dualbound = 3582359.451182, lowerbound=1288113.451182, norm of subgrad 36.355423 stepsize= 1.000000 +dualbound = 3582411.235155, lowerbound=1288929.235155, norm of subgrad 1135.876857 dualbound = 3582411.235155, lowerbound=1288929.235155, norm of subgrad 36.589397 stepsize= 1.000000 +dualbound = 3582488.495987, lowerbound=1284784.495987, norm of subgrad 1134.027555 dualbound = 3582488.495987, lowerbound=1284784.495987, norm of subgrad 36.211336 stepsize= 1.000000 +dualbound = 3582525.423493, lowerbound=1291004.423493, norm of subgrad 1136.784247 dualbound = 3582525.423493, lowerbound=1291004.423493, norm of subgrad 36.206733 stepsize= 1.000000 +dualbound = 3582625.341468, lowerbound=1281666.341468, norm of subgrad 1132.651465 dualbound = 3582625.341468, lowerbound=1281666.341468, norm of subgrad 36.509149 stepsize= 1.000000 +dualbound = 3582700.314840, lowerbound=1290550.314840, norm of subgrad 1136.589334 dualbound = 3582700.314840, lowerbound=1290550.314840, norm of subgrad 36.877817 stepsize= 1.000000 +dualbound = 3582751.221981, lowerbound=1285254.221981, norm of subgrad 1134.242136 dualbound = 3582751.221981, lowerbound=1285254.221981, norm of subgrad 36.081950 stepsize= 1.000000 +dualbound = 3582844.632584, lowerbound=1285671.632584, norm of subgrad 1134.397916 dualbound = 3582844.632584, lowerbound=1285671.632584, norm of subgrad 35.782826 stepsize= 1.000000 +dualbound = 3582914.170031, lowerbound=1285946.170031, norm of subgrad 1134.521560 dualbound = 3582914.170031, lowerbound=1285946.170031, norm of subgrad 35.532203 stepsize= 1.000000 +dualbound = 3582984.310510, lowerbound=1293618.310510, norm of subgrad 1137.896441 dualbound = 3582984.310510, lowerbound=1293618.310510, norm of subgrad 35.498457 stepsize= 1.000000 +dualbound = 3583060.928379, lowerbound=1285990.928379, norm of subgrad 1134.544370 dualbound = 3583060.928379, lowerbound=1285990.928379, norm of subgrad 35.729790 stepsize= 1.000000 +dualbound = 3583133.078743, lowerbound=1289653.078743, norm of subgrad 1136.144392 dualbound = 3583133.078743, lowerbound=1289653.078743, norm of subgrad 35.258338 stepsize= 1.000000 +dualbound = 3583193.962789, lowerbound=1286875.962789, norm of subgrad 1134.941832 dualbound = 3583193.962789, lowerbound=1286875.962789, norm of subgrad 35.747504 stepsize= 1.000000 +dualbound = 3583244.853949, lowerbound=1289581.853949, norm of subgrad 1136.133731 dualbound = 3583244.853949, lowerbound=1289581.853949, norm of subgrad 35.621499 stepsize= 1.000000 +dualbound = 3583324.464821, lowerbound=1289876.464821, norm of subgrad 1136.282740 dualbound = 3583324.464821, lowerbound=1289876.464821, norm of subgrad 36.628007 stepsize= 1.000000 +dualbound = 3583385.546711, lowerbound=1291475.546711, norm of subgrad 1136.987487 dualbound = 3583385.546711, lowerbound=1291475.546711, norm of subgrad 36.415407 stepsize= 1.000000 +dualbound = 3583461.074450, lowerbound=1288295.074450, norm of subgrad 1135.607800 dualbound = 3583461.074450, lowerbound=1288295.074450, norm of subgrad 37.222678 stepsize= 1.000000 +dualbound = 3583504.130180, lowerbound=1290746.130180, norm of subgrad 1136.664916 dualbound = 3583504.130180, lowerbound=1290746.130180, norm of subgrad 36.111712 stepsize= 1.000000 +dualbound = 3583613.790822, lowerbound=1284125.790822, norm of subgrad 1133.703132 dualbound = 3583613.790822, lowerbound=1284125.790822, norm of subgrad 35.590176 stepsize= 1.000000 +dualbound = 3583698.076542, lowerbound=1289282.076542, norm of subgrad 1136.017199 dualbound = 3583698.076542, lowerbound=1289282.076542, norm of subgrad 36.568917 stepsize= 1.000000 +dualbound = 3583734.594466, lowerbound=1287519.594466, norm of subgrad 1135.233718 dualbound = 3583734.594466, lowerbound=1287519.594466, norm of subgrad 35.672369 stepsize= 1.000000 +dualbound = 3583807.444786, lowerbound=1285034.444786, norm of subgrad 1134.133345 dualbound = 3583807.444786, lowerbound=1285034.444786, norm of subgrad 36.011808 stepsize= 1.000000 +dualbound = 3583888.409586, lowerbound=1285115.409586, norm of subgrad 1134.153609 dualbound = 3583888.409586, lowerbound=1285115.409586, norm of subgrad 35.636565 stepsize= 1.000000 +dualbound = 3583965.204831, lowerbound=1291602.204831, norm of subgrad 1137.007566 dualbound = 3583965.204831, lowerbound=1291602.204831, norm of subgrad 35.507679 stepsize= 1.000000 +dualbound = 3584029.620181, lowerbound=1289069.620181, norm of subgrad 1135.888032 dualbound = 3584029.620181, lowerbound=1289069.620181, norm of subgrad 35.162698 stepsize= 1.000000 +dualbound = 3584104.698282, lowerbound=1286694.698282, norm of subgrad 1134.846112 dualbound = 3584104.698282, lowerbound=1286694.698282, norm of subgrad 35.441192 stepsize= 1.000000 +dualbound = 3584165.389054, lowerbound=1285371.389054, norm of subgrad 1134.277034 dualbound = 3584165.389054, lowerbound=1285371.389054, norm of subgrad 35.688805 stepsize= 1.000000 +dualbound = 3584236.224135, lowerbound=1286983.224135, norm of subgrad 1134.966618 dualbound = 3584236.224135, lowerbound=1286983.224135, norm of subgrad 35.168666 stepsize= 1.000000 +dualbound = 3584307.566179, lowerbound=1284467.566179, norm of subgrad 1133.856061 dualbound = 3584307.566179, lowerbound=1284467.566179, norm of subgrad 35.118970 stepsize= 1.000000 +dualbound = 3584394.364692, lowerbound=1286712.364692, norm of subgrad 1134.875044 dualbound = 3584394.364692, lowerbound=1286712.364692, norm of subgrad 36.273937 stepsize= 1.000000 +dualbound = 3584424.068804, lowerbound=1284988.068804, norm of subgrad 1134.121717 dualbound = 3584424.068804, lowerbound=1284988.068804, norm of subgrad 35.688991 stepsize= 1.000000 +dualbound = 3584510.053631, lowerbound=1284933.053631, norm of subgrad 1134.074095 dualbound = 3584510.053631, lowerbound=1284933.053631, norm of subgrad 35.734924 stepsize= 1.000000 +dualbound = 3584582.746001, lowerbound=1287556.746001, norm of subgrad 1135.251843 dualbound = 3584582.746001, lowerbound=1287556.746001, norm of subgrad 36.231097 stepsize= 1.000000 +dualbound = 3584628.471187, lowerbound=1287601.471187, norm of subgrad 1135.263173 dualbound = 3584628.471187, lowerbound=1287601.471187, norm of subgrad 35.591083 stepsize= 1.000000 +dualbound = 3584725.784261, lowerbound=1290604.784261, norm of subgrad 1136.569305 dualbound = 3584725.784261, lowerbound=1290604.784261, norm of subgrad 35.809399 stepsize= 1.000000 +dualbound = 3584790.727067, lowerbound=1285759.727067, norm of subgrad 1134.435863 dualbound = 3584790.727067, lowerbound=1285759.727067, norm of subgrad 35.354530 stepsize= 1.000000 +dualbound = 3584830.267603, lowerbound=1290783.267603, norm of subgrad 1136.695767 dualbound = 3584830.267603, lowerbound=1290783.267603, norm of subgrad 36.517674 stepsize= 1.000000 +dualbound = 3584915.466534, lowerbound=1291991.466534, norm of subgrad 1137.220500 dualbound = 3584915.466534, lowerbound=1291991.466534, norm of subgrad 36.935064 stepsize= 1.000000 +dualbound = 3585006.863936, lowerbound=1285108.863936, norm of subgrad 1134.146315 dualbound = 3585006.863936, lowerbound=1285108.863936, norm of subgrad 35.642635 stepsize= 1.000000 +dualbound = 3585065.753919, lowerbound=1291622.753919, norm of subgrad 1137.025397 dualbound = 3585065.753919, lowerbound=1291622.753919, norm of subgrad 35.537163 stepsize= 1.000000 +dualbound = 3585159.607152, lowerbound=1282664.607152, norm of subgrad 1133.070433 dualbound = 3585159.607152, lowerbound=1282664.607152, norm of subgrad 35.747073 stepsize= 1.000000 +dualbound = 3585201.990911, lowerbound=1289430.990911, norm of subgrad 1136.067336 dualbound = 3585201.990911, lowerbound=1289430.990911, norm of subgrad 35.501884 stepsize= 1.000000 +dualbound = 3585271.793765, lowerbound=1284699.793765, norm of subgrad 1133.982713 dualbound = 3585271.793765, lowerbound=1284699.793765, norm of subgrad 35.872034 stepsize= 1.000000 +dualbound = 3585341.850356, lowerbound=1290379.850356, norm of subgrad 1136.490585 dualbound = 3585341.850356, lowerbound=1290379.850356, norm of subgrad 36.070162 stepsize= 1.000000 +dualbound = 3585407.596355, lowerbound=1281436.596355, norm of subgrad 1132.550041 dualbound = 3585407.596355, lowerbound=1281436.596355, norm of subgrad 36.038119 stepsize= 1.000000 +dualbound = 3585444.344225, lowerbound=1287815.344225, norm of subgrad 1135.382466 dualbound = 3585444.344225, lowerbound=1287815.344225, norm of subgrad 36.259452 stepsize= 1.000000 +dualbound = 3585557.818341, lowerbound=1282581.818341, norm of subgrad 1133.052434 dualbound = 3585557.818341, lowerbound=1282581.818341, norm of subgrad 36.598827 stepsize= 1.000000 +dualbound = 3585609.483758, lowerbound=1295011.483758, norm of subgrad 1138.518987 dualbound = 3585609.483758, lowerbound=1295011.483758, norm of subgrad 35.576192 stepsize= 1.000000 +dualbound = 3585677.072646, lowerbound=1285730.072646, norm of subgrad 1134.461578 dualbound = 3585677.072646, lowerbound=1285730.072646, norm of subgrad 36.614053 stepsize= 1.000000 +dualbound = 3585730.140067, lowerbound=1291165.140067, norm of subgrad 1136.802595 dualbound = 3585730.140067, lowerbound=1291165.140067, norm of subgrad 34.757264 stepsize= 1.000000 +dualbound = 3585871.894337, lowerbound=1289459.894337, norm of subgrad 1136.027242 dualbound = 3585871.894337, lowerbound=1289459.894337, norm of subgrad 35.210144 stepsize= 1.000000 +dualbound = 3585913.756253, lowerbound=1288079.756253, norm of subgrad 1135.476004 dualbound = 3585913.756253, lowerbound=1288079.756253, norm of subgrad 35.607049 stepsize= 1.000000 +dualbound = 3585966.882429, lowerbound=1286727.882429, norm of subgrad 1134.879678 dualbound = 3585966.882429, lowerbound=1286727.882429, norm of subgrad 35.736902 stepsize= 1.000000 +dualbound = 3586034.444912, lowerbound=1287654.444912, norm of subgrad 1135.307203 dualbound = 3586034.444912, lowerbound=1287654.444912, norm of subgrad 36.545348 stepsize= 1.000000 +dualbound = 3586088.987364, lowerbound=1283698.987364, norm of subgrad 1133.548846 dualbound = 3586088.987364, lowerbound=1283698.987364, norm of subgrad 35.896274 stepsize= 1.000000 +dualbound = 3586154.910848, lowerbound=1291266.910848, norm of subgrad 1136.871545 dualbound = 3586154.910848, lowerbound=1291266.910848, norm of subgrad 35.720071 stepsize= 1.000000 +dualbound = 3586245.267999, lowerbound=1283816.267999, norm of subgrad 1133.598813 dualbound = 3586245.267999, lowerbound=1283816.267999, norm of subgrad 36.336719 stepsize= 1.000000 +dualbound = 3586297.928561, lowerbound=1290294.928561, norm of subgrad 1136.454103 dualbound = 3586297.928561, lowerbound=1290294.928561, norm of subgrad 35.856109 stepsize= 1.000000 +dualbound = 3586391.154920, lowerbound=1286433.154920, norm of subgrad 1134.722942 dualbound = 3586391.154920, lowerbound=1286433.154920, norm of subgrad 35.443284 stepsize= 1.000000 +dualbound = 3586473.999549, lowerbound=1293087.999549, norm of subgrad 1137.652407 dualbound = 3586473.999549, lowerbound=1293087.999549, norm of subgrad 35.324844 stepsize= 1.000000 +dualbound = 3586520.875097, lowerbound=1281267.875097, norm of subgrad 1132.479084 dualbound = 3586520.875097, lowerbound=1281267.875097, norm of subgrad 35.886983 stepsize= 1.000000 +dualbound = 3586581.040850, lowerbound=1288618.040850, norm of subgrad 1135.666782 dualbound = 3586581.040850, lowerbound=1288618.040850, norm of subgrad 34.368092 stepsize= 1.000000 +dualbound = 3586684.583015, lowerbound=1286677.583015, norm of subgrad 1134.830200 dualbound = 3586684.583015, lowerbound=1286677.583015, norm of subgrad 35.574459 stepsize= 1.000000 +dualbound = 3586717.478664, lowerbound=1286148.478664, norm of subgrad 1134.610276 dualbound = 3586717.478664, lowerbound=1286148.478664, norm of subgrad 34.998509 stepsize= 1.000000 +dualbound = 3586802.799526, lowerbound=1290721.799526, norm of subgrad 1136.632658 dualbound = 3586802.799526, lowerbound=1290721.799526, norm of subgrad 36.018341 stepsize= 1.000000 +dualbound = 3586857.412309, lowerbound=1292028.412309, norm of subgrad 1137.200252 dualbound = 3586857.412309, lowerbound=1292028.412309, norm of subgrad 35.364004 stepsize= 1.000000 +dualbound = 3586934.900539, lowerbound=1283548.900539, norm of subgrad 1133.488377 dualbound = 3586934.900539, lowerbound=1283548.900539, norm of subgrad 36.393519 stepsize= 1.000000 +dualbound = 3586992.018051, lowerbound=1289811.018051, norm of subgrad 1136.220057 dualbound = 3586992.018051, lowerbound=1289811.018051, norm of subgrad 35.243688 stepsize= 1.000000 +dualbound = 3587084.038782, lowerbound=1287973.038782, norm of subgrad 1135.405671 dualbound = 3587084.038782, lowerbound=1287973.038782, norm of subgrad 35.567130 stepsize= 1.000000 +dualbound = 3587128.252602, lowerbound=1287455.252602, norm of subgrad 1135.211986 dualbound = 3587128.252602, lowerbound=1287455.252602, norm of subgrad 35.989079 stepsize= 1.000000 +dualbound = 3587191.357393, lowerbound=1284266.357393, norm of subgrad 1133.798641 dualbound = 3587191.357393, lowerbound=1284266.357393, norm of subgrad 36.001455 stepsize= 1.000000 +dualbound = 3587261.068107, lowerbound=1287900.068107, norm of subgrad 1135.395996 dualbound = 3587261.068107, lowerbound=1287900.068107, norm of subgrad 35.968190 stepsize= 1.000000 +dualbound = 3587330.333593, lowerbound=1286943.333593, norm of subgrad 1134.970191 dualbound = 3587330.333593, lowerbound=1286943.333593, norm of subgrad 35.822695 stepsize= 1.000000 +dualbound = 3587422.779916, lowerbound=1289368.779916, norm of subgrad 1136.040395 dualbound = 3587422.779916, lowerbound=1289368.779916, norm of subgrad 36.213897 stepsize= 1.000000 +dualbound = 3587467.614680, lowerbound=1287705.614680, norm of subgrad 1135.310361 dualbound = 3587467.614680, lowerbound=1287705.614680, norm of subgrad 35.620707 stepsize= 1.000000 +dualbound = 3587541.176349, lowerbound=1290457.176349, norm of subgrad 1136.572117 dualbound = 3587541.176349, lowerbound=1290457.176349, norm of subgrad 37.584061 stepsize= 1.000000 +dualbound = 3587589.224912, lowerbound=1286927.224912, norm of subgrad 1134.960010 dualbound = 3587589.224912, lowerbound=1286927.224912, norm of subgrad 35.426665 stepsize= 1.000000 +dualbound = 3587685.436905, lowerbound=1290389.436905, norm of subgrad 1136.482484 dualbound = 3587685.436905, lowerbound=1290389.436905, norm of subgrad 36.044583 stepsize= 1.000000 +dualbound = 3587768.806444, lowerbound=1289783.806444, norm of subgrad 1136.208962 dualbound = 3587768.806444, lowerbound=1289783.806444, norm of subgrad 35.642244 stepsize= 1.000000 +dualbound = 3587841.504446, lowerbound=1289390.504446, norm of subgrad 1136.036753 dualbound = 3587841.504446, lowerbound=1289390.504446, norm of subgrad 35.520389 stepsize= 1.000000 +dualbound = 3587883.794391, lowerbound=1288065.794391, norm of subgrad 1135.483947 dualbound = 3587883.794391, lowerbound=1288065.794391, norm of subgrad 36.059533 stepsize= 1.000000 +dualbound = 3587942.808837, lowerbound=1287351.808837, norm of subgrad 1135.160257 dualbound = 3587942.808837, lowerbound=1287351.808837, norm of subgrad 36.000201 stepsize= 1.000000 +dualbound = 3588050.525399, lowerbound=1288337.525399, norm of subgrad 1135.585103 dualbound = 3588050.525399, lowerbound=1288337.525399, norm of subgrad 36.382916 stepsize= 1.000000 +dualbound = 3588110.596846, lowerbound=1285020.596846, norm of subgrad 1134.091529 dualbound = 3588110.596846, lowerbound=1285020.596846, norm of subgrad 34.685320 stepsize= 1.000000 +dualbound = 3588192.170794, lowerbound=1287899.170794, norm of subgrad 1135.385032 dualbound = 3588192.170794, lowerbound=1287899.170794, norm of subgrad 35.799077 stepsize= 1.000000 +dualbound = 3588252.416847, lowerbound=1291309.416847, norm of subgrad 1136.917946 dualbound = 3588252.416847, lowerbound=1291309.416847, norm of subgrad 36.513642 stepsize= 1.000000 +dualbound = 3588282.483057, lowerbound=1284612.483057, norm of subgrad 1133.977285 dualbound = 3588282.483057, lowerbound=1284612.483057, norm of subgrad 36.360228 stepsize= 1.000000 +dualbound = 3588383.232832, lowerbound=1290977.232832, norm of subgrad 1136.730501 dualbound = 3588383.232832, lowerbound=1290977.232832, norm of subgrad 35.773590 stepsize= 1.000000 +dualbound = 3588486.097992, lowerbound=1286783.097992, norm of subgrad 1134.859065 dualbound = 3588486.097992, lowerbound=1286783.097992, norm of subgrad 34.998074 stepsize= 1.000000 +dualbound = 3588533.091099, lowerbound=1286746.091099, norm of subgrad 1134.906644 dualbound = 3588533.091099, lowerbound=1286746.091099, norm of subgrad 36.249043 stepsize= 1.000000 +dualbound = 3588604.663364, lowerbound=1286139.663364, norm of subgrad 1134.605951 dualbound = 3588604.663364, lowerbound=1286139.663364, norm of subgrad 35.532693 stepsize= 1.000000 +dualbound = 3588674.670497, lowerbound=1287311.670497, norm of subgrad 1135.108660 dualbound = 3588674.670497, lowerbound=1287311.670497, norm of subgrad 35.071458 stepsize= 1.000000 +dualbound = 3588760.192475, lowerbound=1289579.192475, norm of subgrad 1136.094711 dualbound = 3588760.192475, lowerbound=1289579.192475, norm of subgrad 34.893008 stepsize= 1.000000 +dualbound = 3588780.211402, lowerbound=1286506.211402, norm of subgrad 1134.785095 dualbound = 3588780.211402, lowerbound=1286506.211402, norm of subgrad 35.369746 stepsize= 1.000000 +dualbound = 3588873.144126, lowerbound=1290526.144126, norm of subgrad 1136.550106 dualbound = 3588873.144126, lowerbound=1290526.144126, norm of subgrad 36.234414 stepsize= 1.000000 +dualbound = 3588945.268393, lowerbound=1286104.268393, norm of subgrad 1134.599607 dualbound = 3588945.268393, lowerbound=1286104.268393, norm of subgrad 35.834680 stepsize= 1.000000 +dualbound = 3589003.709358, lowerbound=1288518.709358, norm of subgrad 1135.675882 dualbound = 3589003.709358, lowerbound=1288518.709358, norm of subgrad 36.047759 stepsize= 1.000000 +dualbound = 3589082.307248, lowerbound=1287673.307248, norm of subgrad 1135.273671 dualbound = 3589082.307248, lowerbound=1287673.307248, norm of subgrad 35.377929 stepsize= 1.000000 +dualbound = 3589147.289469, lowerbound=1289418.289469, norm of subgrad 1136.072308 dualbound = 3589147.289469, lowerbound=1289418.289469, norm of subgrad 36.152209 stepsize= 1.000000 +dualbound = 3589210.233796, lowerbound=1284669.233796, norm of subgrad 1133.970561 dualbound = 3589210.233796, lowerbound=1284669.233796, norm of subgrad 35.818212 stepsize= 1.000000 +dualbound = 3589296.732858, lowerbound=1289434.732858, norm of subgrad 1136.057539 dualbound = 3589296.732858, lowerbound=1289434.732858, norm of subgrad 35.756105 stepsize= 1.000000 +dualbound = 3589344.232058, lowerbound=1290893.232058, norm of subgrad 1136.711587 dualbound = 3589344.232058, lowerbound=1290893.232058, norm of subgrad 35.601955 stepsize= 1.000000 +dualbound = 3589416.311491, lowerbound=1293151.311491, norm of subgrad 1137.723302 dualbound = 3589416.311491, lowerbound=1293151.311491, norm of subgrad 36.538739 stepsize= 1.000000 +dualbound = 3589469.359826, lowerbound=1286445.359826, norm of subgrad 1134.784279 dualbound = 3589469.359826, lowerbound=1286445.359826, norm of subgrad 36.647624 stepsize= 1.000000 +dualbound = 3589559.576218, lowerbound=1292788.576218, norm of subgrad 1137.567394 dualbound = 3589559.576218, lowerbound=1292788.576218, norm of subgrad 36.894666 stepsize= 1.000000 +dualbound = 3589609.415925, lowerbound=1286997.415925, norm of subgrad 1135.026174 dualbound = 3589609.415925, lowerbound=1286997.415925, norm of subgrad 36.562819 stepsize= 1.000000 +dualbound = 3589692.542118, lowerbound=1286402.542118, norm of subgrad 1134.742060 dualbound = 3589692.542118, lowerbound=1286402.542118, norm of subgrad 36.333541 stepsize= 1.000000 +dualbound = 3589765.315563, lowerbound=1293864.315563, norm of subgrad 1138.006290 dualbound = 3589765.315563, lowerbound=1293864.315563, norm of subgrad 35.591761 stepsize= 1.000000 +dualbound = 3589844.648258, lowerbound=1287942.648258, norm of subgrad 1135.394050 dualbound = 3589844.648258, lowerbound=1287942.648258, norm of subgrad 35.444784 stepsize= 1.000000 +dualbound = 3589917.476741, lowerbound=1285017.476741, norm of subgrad 1134.119252 dualbound = 3589917.476741, lowerbound=1285017.476741, norm of subgrad 35.802632 stepsize= 1.000000 +dualbound = 3589971.144346, lowerbound=1285090.144346, norm of subgrad 1134.123073 dualbound = 3589971.144346, lowerbound=1285090.144346, norm of subgrad 34.621779 stepsize= 1.000000 +dualbound = 3590075.320739, lowerbound=1288290.320739, norm of subgrad 1135.525130 dualbound = 3590075.320739, lowerbound=1288290.320739, norm of subgrad 35.088123 stepsize= 1.000000 +dualbound = 3590120.857260, lowerbound=1281714.857260, norm of subgrad 1132.664936 dualbound = 3590120.857260, lowerbound=1281714.857260, norm of subgrad 35.504035 stepsize= 1.000000 +dualbound = 3590197.747834, lowerbound=1287976.747834, norm of subgrad 1135.404663 dualbound = 3590197.747834, lowerbound=1287976.747834, norm of subgrad 35.268833 stepsize= 1.000000 +dualbound = 3590271.885176, lowerbound=1290405.885176, norm of subgrad 1136.486641 dualbound = 3590271.885176, lowerbound=1290405.885176, norm of subgrad 35.638986 stepsize= 1.000000 +dualbound = 3590335.141737, lowerbound=1287952.141737, norm of subgrad 1135.425533 dualbound = 3590335.141737, lowerbound=1287952.141737, norm of subgrad 36.086792 stepsize= 1.000000 +dualbound = 3590373.290023, lowerbound=1287370.290023, norm of subgrad 1135.193063 dualbound = 3590373.290023, lowerbound=1287370.290023, norm of subgrad 36.484905 stepsize= 1.000000 +dualbound = 3590445.976428, lowerbound=1285158.976428, norm of subgrad 1134.225276 dualbound = 3590445.976428, lowerbound=1285158.976428, norm of subgrad 37.157589 stepsize= 1.000000 +dualbound = 3590533.393937, lowerbound=1292222.393937, norm of subgrad 1137.300925 dualbound = 3590533.393937, lowerbound=1292222.393937, norm of subgrad 36.310019 stepsize= 1.000000 +dualbound = 3590580.738530, lowerbound=1288351.738530, norm of subgrad 1135.605010 dualbound = 3590580.738530, lowerbound=1288351.738530, norm of subgrad 35.977001 stepsize= 1.000000 +dualbound = 3590647.383868, lowerbound=1290957.383868, norm of subgrad 1136.763557 dualbound = 3590647.383868, lowerbound=1290957.383868, norm of subgrad 36.614824 stepsize= 1.000000 +dualbound = 3590732.597237, lowerbound=1284371.597237, norm of subgrad 1133.833143 dualbound = 3590732.597237, lowerbound=1284371.597237, norm of subgrad 35.933458 stepsize= 1.000000 +dualbound = 3590786.930937, lowerbound=1289140.930937, norm of subgrad 1135.942750 dualbound = 3590786.930937, lowerbound=1289140.930937, norm of subgrad 35.767775 stepsize= 1.000000 +dualbound = 3590867.772569, lowerbound=1283949.772569, norm of subgrad 1133.647993 dualbound = 3590867.772569, lowerbound=1283949.772569, norm of subgrad 35.900441 stepsize= 1.000000 +dualbound = 3590940.324861, lowerbound=1287791.324861, norm of subgrad 1135.330932 dualbound = 3590940.324861, lowerbound=1287791.324861, norm of subgrad 35.461984 stepsize= 1.000000 +dualbound = 3590998.892080, lowerbound=1287361.892080, norm of subgrad 1135.139591 dualbound = 3590998.892080, lowerbound=1287361.892080, norm of subgrad 35.193284 stepsize= 1.000000 +dualbound = 3591091.645075, lowerbound=1287680.645075, norm of subgrad 1135.274260 dualbound = 3591091.645075, lowerbound=1287680.645075, norm of subgrad 35.492999 stepsize= 1.000000 +dualbound = 3591145.337729, lowerbound=1285803.337729, norm of subgrad 1134.502242 dualbound = 3591145.337729, lowerbound=1285803.337729, norm of subgrad 36.683684 stepsize= 1.000000 +dualbound = 3591186.970383, lowerbound=1293350.970383, norm of subgrad 1137.816317 dualbound = 3591186.970383, lowerbound=1293350.970383, norm of subgrad 36.285433 stepsize= 1.000000 +dualbound = 3591266.352359, lowerbound=1282751.352359, norm of subgrad 1133.116654 dualbound = 3591266.352359, lowerbound=1282751.352359, norm of subgrad 35.796396 stepsize= 1.000000 +dualbound = 3591358.948969, lowerbound=1287008.948969, norm of subgrad 1135.001299 dualbound = 3591358.948969, lowerbound=1287008.948969, norm of subgrad 36.215972 stepsize= 1.000000 +dualbound = 3591424.911322, lowerbound=1288051.911322, norm of subgrad 1135.435560 dualbound = 3591424.911322, lowerbound=1288051.911322, norm of subgrad 35.042294 stepsize= 1.000000 +dualbound = 3591491.178445, lowerbound=1290932.178445, norm of subgrad 1136.730917 dualbound = 3591491.178445, lowerbound=1290932.178445, norm of subgrad 35.934205 stepsize= 1.000000 +dualbound = 3591559.707272, lowerbound=1286927.707272, norm of subgrad 1134.961544 dualbound = 3591559.707272, lowerbound=1286927.707272, norm of subgrad 35.756521 stepsize= 1.000000 +dualbound = 3591641.912810, lowerbound=1292698.912810, norm of subgrad 1137.489302 dualbound = 3591641.912810, lowerbound=1292698.912810, norm of subgrad 35.569728 stepsize= 1.000000 +dualbound = 3591701.837559, lowerbound=1285490.837559, norm of subgrad 1134.333213 dualbound = 3591701.837559, lowerbound=1285490.837559, norm of subgrad 35.790009 stepsize= 1.000000 +dualbound = 3591775.021379, lowerbound=1290338.021379, norm of subgrad 1136.482301 dualbound = 3591775.021379, lowerbound=1290338.021379, norm of subgrad 36.430534 stepsize= 1.000000 +dualbound = 3591826.302010, lowerbound=1292705.302010, norm of subgrad 1137.536945 dualbound = 3591826.302010, lowerbound=1292705.302010, norm of subgrad 36.555172 stepsize= 1.000000 +dualbound = 3591878.518220, lowerbound=1286302.518220, norm of subgrad 1134.720458 dualbound = 3591878.518220, lowerbound=1286302.518220, norm of subgrad 36.608964 stepsize= 1.000000 +dualbound = 3591970.480320, lowerbound=1287128.480320, norm of subgrad 1135.074658 dualbound = 3591970.480320, lowerbound=1287128.480320, norm of subgrad 36.850537 stepsize= 1.000000 +dualbound = 3592016.811631, lowerbound=1293075.811631, norm of subgrad 1137.690561 dualbound = 3592016.811631, lowerbound=1293075.811631, norm of subgrad 36.198499 stepsize= 1.000000 +dualbound = 3592093.798463, lowerbound=1292641.798463, norm of subgrad 1137.493208 dualbound = 3592093.798463, lowerbound=1292641.798463, norm of subgrad 36.414102 stepsize= 1.000000 +dualbound = 3592155.111743, lowerbound=1289192.111743, norm of subgrad 1135.987725 dualbound = 3592155.111743, lowerbound=1289192.111743, norm of subgrad 36.569294 stepsize= 1.000000 +dualbound = 3592232.801527, lowerbound=1284191.801527, norm of subgrad 1133.770171 dualbound = 3592232.801527, lowerbound=1284191.801527, norm of subgrad 36.341296 stepsize= 1.000000 +dualbound = 3592308.958290, lowerbound=1284588.958290, norm of subgrad 1133.943984 dualbound = 3592308.958290, lowerbound=1284588.958290, norm of subgrad 36.278875 stepsize= 1.000000 +dualbound = 3592377.582034, lowerbound=1289342.582034, norm of subgrad 1135.988812 dualbound = 3592377.582034, lowerbound=1289342.582034, norm of subgrad 34.592250 stepsize= 1.000000 +dualbound = 3592468.614331, lowerbound=1287658.614331, norm of subgrad 1135.264997 dualbound = 3592468.614331, lowerbound=1287658.614331, norm of subgrad 35.482845 stepsize= 1.000000 +dualbound = 3592535.238244, lowerbound=1288544.238244, norm of subgrad 1135.646177 dualbound = 3592535.238244, lowerbound=1288544.238244, norm of subgrad 34.851455 stepsize= 1.000000 +dualbound = 3592596.307025, lowerbound=1290484.307025, norm of subgrad 1136.536540 dualbound = 3592596.307025, lowerbound=1290484.307025, norm of subgrad 35.945358 stepsize= 1.000000 +dualbound = 3592640.229456, lowerbound=1288743.229456, norm of subgrad 1135.746552 dualbound = 3592640.229456, lowerbound=1288743.229456, norm of subgrad 34.941700 stepsize= 1.000000 +dualbound = 3592731.379049, lowerbound=1284955.379049, norm of subgrad 1134.081293 dualbound = 3592731.379049, lowerbound=1284955.379049, norm of subgrad 35.723236 stepsize= 1.000000 +dualbound = 3592785.697043, lowerbound=1289895.697043, norm of subgrad 1136.272281 dualbound = 3592785.697043, lowerbound=1289895.697043, norm of subgrad 35.683582 stepsize= 1.000000 +dualbound = 3592867.524163, lowerbound=1287637.524163, norm of subgrad 1135.263196 dualbound = 3592867.524163, lowerbound=1287637.524163, norm of subgrad 35.592515 stepsize= 1.000000 +dualbound = 3592957.268041, lowerbound=1290954.268041, norm of subgrad 1136.714242 dualbound = 3592957.268041, lowerbound=1290954.268041, norm of subgrad 35.422364 stepsize= 1.000000 +dualbound = 3593003.505150, lowerbound=1287123.505150, norm of subgrad 1135.054847 dualbound = 3593003.505150, lowerbound=1287123.505150, norm of subgrad 35.668433 stepsize= 1.000000 +dualbound = 3593060.990903, lowerbound=1290355.990903, norm of subgrad 1136.477448 dualbound = 3593060.990903, lowerbound=1290355.990903, norm of subgrad 35.811810 stepsize= 1.000000 +dualbound = 3593133.268599, lowerbound=1285470.268599, norm of subgrad 1134.324587 dualbound = 3593133.268599, lowerbound=1285470.268599, norm of subgrad 35.976071 stepsize= 1.000000 +dualbound = 3593216.403469, lowerbound=1292078.403469, norm of subgrad 1137.236301 dualbound = 3593216.403469, lowerbound=1292078.403469, norm of subgrad 36.209596 stepsize= 1.000000 +dualbound = 3593254.316513, lowerbound=1284669.316513, norm of subgrad 1133.984266 dualbound = 3593254.316513, lowerbound=1284669.316513, norm of subgrad 35.901435 stepsize= 1.000000 +dualbound = 3593344.260969, lowerbound=1286970.260969, norm of subgrad 1135.018617 dualbound = 3593344.260969, lowerbound=1286970.260969, norm of subgrad 37.241703 stepsize= 1.000000 +dualbound = 3593401.693360, lowerbound=1284059.693360, norm of subgrad 1133.724258 dualbound = 3593401.693360, lowerbound=1284059.693360, norm of subgrad 36.447666 stepsize= 1.000000 +dualbound = 3593477.210268, lowerbound=1293472.210268, norm of subgrad 1137.853334 dualbound = 3593477.210268, lowerbound=1293472.210268, norm of subgrad 36.242474 stepsize= 1.000000 +dualbound = 3593543.926824, lowerbound=1287292.926824, norm of subgrad 1135.145333 dualbound = 3593543.926824, lowerbound=1287292.926824, norm of subgrad 36.451565 stepsize= 1.000000 +dualbound = 3593614.444117, lowerbound=1286906.444117, norm of subgrad 1134.980812 dualbound = 3593614.444117, lowerbound=1286906.444117, norm of subgrad 36.681294 stepsize= 1.000000 +dualbound = 3593686.785222, lowerbound=1291427.785222, norm of subgrad 1136.938338 dualbound = 3593686.785222, lowerbound=1291427.785222, norm of subgrad 35.683905 stepsize= 1.000000 +dualbound = 3593767.675074, lowerbound=1292013.675074, norm of subgrad 1137.210480 dualbound = 3593767.675074, lowerbound=1292013.675074, norm of subgrad 36.261410 stepsize= 1.000000 +dualbound = 3593845.463499, lowerbound=1285217.463499, norm of subgrad 1134.183611 dualbound = 3593845.463499, lowerbound=1285217.463499, norm of subgrad 35.111087 stepsize= 1.000000 +dualbound = 3593916.513307, lowerbound=1290352.513307, norm of subgrad 1136.481638 dualbound = 3593916.513307, lowerbound=1290352.513307, norm of subgrad 36.180793 stepsize= 1.000000 +dualbound = 3593957.498336, lowerbound=1291731.498336, norm of subgrad 1137.093003 dualbound = 3593957.498336, lowerbound=1291731.498336, norm of subgrad 35.916362 stepsize= 1.000000 +dualbound = 3594042.036736, lowerbound=1286554.036736, norm of subgrad 1134.807489 dualbound = 3594042.036736, lowerbound=1286554.036736, norm of subgrad 36.311684 stepsize= 1.000000 +dualbound = 3594116.263100, lowerbound=1291169.263100, norm of subgrad 1136.826840 dualbound = 3594116.263100, lowerbound=1291169.263100, norm of subgrad 35.780251 stepsize= 1.000000 +dualbound = 3594201.972822, lowerbound=1284874.972822, norm of subgrad 1134.047165 dualbound = 3594201.972822, lowerbound=1284874.972822, norm of subgrad 35.689070 stepsize= 1.000000 +dualbound = 3594243.928875, lowerbound=1287320.928875, norm of subgrad 1135.144453 dualbound = 3594243.928875, lowerbound=1287320.928875, norm of subgrad 35.692521 stepsize= 1.000000 +dualbound = 3594326.531793, lowerbound=1290357.531793, norm of subgrad 1136.480326 dualbound = 3594326.531793, lowerbound=1290357.531793, norm of subgrad 36.229862 stepsize= 1.000000 +dualbound = 3594376.682719, lowerbound=1285414.682719, norm of subgrad 1134.333145 dualbound = 3594376.682719, lowerbound=1285414.682719, norm of subgrad 36.703555 stepsize= 1.000000 +dualbound = 3594442.697895, lowerbound=1292994.697895, norm of subgrad 1137.655351 dualbound = 3594442.697895, lowerbound=1292994.697895, norm of subgrad 36.483081 stepsize= 1.000000 +dualbound = 3594521.058272, lowerbound=1288186.058272, norm of subgrad 1135.519290 dualbound = 3594521.058272, lowerbound=1288186.058272, norm of subgrad 36.005005 stepsize= 1.000000 +dualbound = 3594610.254671, lowerbound=1286827.254671, norm of subgrad 1134.900108 dualbound = 3594610.254671, lowerbound=1286827.254671, norm of subgrad 35.499245 stepsize= 1.000000 +dualbound = 3594674.616923, lowerbound=1287229.616923, norm of subgrad 1135.102470 dualbound = 3594674.616923, lowerbound=1287229.616923, norm of subgrad 35.949440 stepsize= 1.000000 +dualbound = 3594736.131882, lowerbound=1288388.131882, norm of subgrad 1135.621914 dualbound = 3594736.131882, lowerbound=1288388.131882, norm of subgrad 36.201035 stepsize= 1.000000 +dualbound = 3594795.255101, lowerbound=1285837.255101, norm of subgrad 1134.498680 dualbound = 3594795.255101, lowerbound=1285837.255101, norm of subgrad 36.181808 stepsize= 1.000000 +dualbound = 3594885.948244, lowerbound=1289794.948244, norm of subgrad 1136.231908 dualbound = 3594885.948244, lowerbound=1289794.948244, norm of subgrad 36.313815 stepsize= 1.000000 +dualbound = 3594926.049595, lowerbound=1284015.049595, norm of subgrad 1133.723092 dualbound = 3594926.049595, lowerbound=1284015.049595, norm of subgrad 36.784526 stepsize= 1.000000 +dualbound = 3595008.869052, lowerbound=1289984.869052, norm of subgrad 1136.325600 dualbound = 3595008.869052, lowerbound=1289984.869052, norm of subgrad 36.521493 stepsize= 1.000000 +dualbound = 3595078.276764, lowerbound=1291075.276764, norm of subgrad 1136.779344 dualbound = 3595078.276764, lowerbound=1291075.276764, norm of subgrad 35.516302 stepsize= 1.000000 +dualbound = 3595169.587773, lowerbound=1290373.587773, norm of subgrad 1136.457913 dualbound = 3595169.587773, lowerbound=1290373.587773, norm of subgrad 35.416253 stepsize= 1.000000 +dualbound = 3595199.032751, lowerbound=1286361.032751, norm of subgrad 1134.747123 dualbound = 3595199.032751, lowerbound=1286361.032751, norm of subgrad 36.324165 stepsize= 1.000000 +dualbound = 3595276.896457, lowerbound=1290766.896457, norm of subgrad 1136.687247 dualbound = 3595276.896457, lowerbound=1290766.896457, norm of subgrad 36.998158 stepsize= 1.000000 +dualbound = 3595332.850755, lowerbound=1288223.850755, norm of subgrad 1135.533729 dualbound = 3595332.850755, lowerbound=1288223.850755, norm of subgrad 35.622385 stepsize= 1.000000 +dualbound = 3595424.445001, lowerbound=1290401.445001, norm of subgrad 1136.486447 dualbound = 3595424.445001, lowerbound=1290401.445001, norm of subgrad 35.938757 stepsize= 1.000000 +dualbound = 3595499.624379, lowerbound=1286654.624379, norm of subgrad 1134.828456 dualbound = 3595499.624379, lowerbound=1286654.624379, norm of subgrad 35.442621 stepsize= 1.000000 +dualbound = 3595561.452124, lowerbound=1286520.452124, norm of subgrad 1134.779032 dualbound = 3595561.452124, lowerbound=1286520.452124, norm of subgrad 35.564417 stepsize= 1.000000 +dualbound = 3595622.429934, lowerbound=1285415.429934, norm of subgrad 1134.305704 dualbound = 3595622.429934, lowerbound=1285415.429934, norm of subgrad 35.985800 stepsize= 1.000000 +dualbound = 3595714.291056, lowerbound=1287895.291056, norm of subgrad 1135.387727 dualbound = 3595714.291056, lowerbound=1287895.291056, norm of subgrad 36.081313 stepsize= 1.000000 +dualbound = 3595775.505150, lowerbound=1285598.505150, norm of subgrad 1134.363921 dualbound = 3595775.505150, lowerbound=1285598.505150, norm of subgrad 35.273419 stepsize= 1.000000 +dualbound = 3595841.046040, lowerbound=1287341.046040, norm of subgrad 1135.144945 dualbound = 3595841.046040, lowerbound=1287341.046040, norm of subgrad 35.756690 stepsize= 1.000000 +dualbound = 3595911.024506, lowerbound=1286916.024506, norm of subgrad 1134.985473 dualbound = 3595911.024506, lowerbound=1286916.024506, norm of subgrad 36.687579 stepsize= 1.000000 +dualbound = 3595971.093262, lowerbound=1293937.093262, norm of subgrad 1138.045734 dualbound = 3595971.093262, lowerbound=1293937.093262, norm of subgrad 35.652051 stepsize= 1.000000 +dualbound = 3596052.845275, lowerbound=1290189.845275, norm of subgrad 1136.380590 dualbound = 3596052.845275, lowerbound=1290189.845275, norm of subgrad 35.394237 stepsize= 1.000000 +dualbound = 3596110.014877, lowerbound=1292461.014877, norm of subgrad 1137.414179 dualbound = 3596110.014877, lowerbound=1292461.014877, norm of subgrad 36.154801 stepsize= 1.000000 +dualbound = 3596182.535643, lowerbound=1290591.535643, norm of subgrad 1136.606588 dualbound = 3596182.535643, lowerbound=1290591.535643, norm of subgrad 36.817398 stepsize= 1.000000 +dualbound = 3596231.624228, lowerbound=1286159.624228, norm of subgrad 1134.642069 dualbound = 3596231.624228, lowerbound=1286159.624228, norm of subgrad 36.084465 stepsize= 1.000000 +dualbound = 3596309.841602, lowerbound=1288496.841602, norm of subgrad 1135.719966 dualbound = 3596309.841602, lowerbound=1288496.841602, norm of subgrad 37.963369 stepsize= 1.000000 +dualbound = 3596365.555536, lowerbound=1290838.555536, norm of subgrad 1136.685777 dualbound = 3596365.555536, lowerbound=1290838.555536, norm of subgrad 35.661098 stepsize= 1.000000 +dualbound = 3596467.165640, lowerbound=1288406.165640, norm of subgrad 1135.619728 dualbound = 3596467.165640, lowerbound=1288406.165640, norm of subgrad 36.436384 stepsize= 1.000000 +dualbound = 3596528.582065, lowerbound=1288997.582065, norm of subgrad 1135.887134 dualbound = 3596528.582065, lowerbound=1288997.582065, norm of subgrad 36.102859 stepsize= 1.000000 +dualbound = 3596600.369158, lowerbound=1288720.369158, norm of subgrad 1135.769065 dualbound = 3596600.369158, lowerbound=1288720.369158, norm of subgrad 36.370140 stepsize= 1.000000 +dualbound = 3596661.669502, lowerbound=1289818.669502, norm of subgrad 1136.258188 dualbound = 3596661.669502, lowerbound=1289818.669502, norm of subgrad 36.404675 stepsize= 1.000000 +dualbound = 3596735.538595, lowerbound=1288008.538595, norm of subgrad 1135.447726 dualbound = 3596735.538595, lowerbound=1288008.538595, norm of subgrad 36.150644 stepsize= 1.000000 +dualbound = 3596815.030294, lowerbound=1285301.030294, norm of subgrad 1134.240729 dualbound = 3596815.030294, lowerbound=1285301.030294, norm of subgrad 35.783959 stepsize= 1.000000 +dualbound = 3596877.985870, lowerbound=1287456.985870, norm of subgrad 1135.206142 dualbound = 3596877.985870, lowerbound=1287456.985870, norm of subgrad 36.041026 stepsize= 1.000000 +dualbound = 3596956.821552, lowerbound=1286531.821552, norm of subgrad 1134.789329 dualbound = 3596956.821552, lowerbound=1286531.821552, norm of subgrad 35.969927 stepsize= 1.000000 +dualbound = 3597030.511266, lowerbound=1288382.511266, norm of subgrad 1135.595223 dualbound = 3597030.511266, lowerbound=1288382.511266, norm of subgrad 35.604631 stepsize= 1.000000 +dualbound = 3597082.616488, lowerbound=1285719.616488, norm of subgrad 1134.430084 dualbound = 3597082.616488, lowerbound=1285719.616488, norm of subgrad 35.554257 stepsize= 1.000000 +dualbound = 3597163.267397, lowerbound=1290746.267397, norm of subgrad 1136.635063 dualbound = 3597163.267397, lowerbound=1290746.267397, norm of subgrad 35.688246 stepsize= 1.000000 +dualbound = 3597224.890332, lowerbound=1288090.890332, norm of subgrad 1135.511290 dualbound = 3597224.890332, lowerbound=1288090.890332, norm of subgrad 36.832363 stepsize= 1.000000 +dualbound = 3597279.649719, lowerbound=1292300.649719, norm of subgrad 1137.327855 dualbound = 3597279.649719, lowerbound=1292300.649719, norm of subgrad 35.619649 stepsize= 1.000000 +dualbound = 3597361.250613, lowerbound=1282574.250613, norm of subgrad 1133.048212 dualbound = 3597361.250613, lowerbound=1282574.250613, norm of subgrad 36.133100 stepsize= 1.000000 +dualbound = 3597433.997496, lowerbound=1291927.997496, norm of subgrad 1137.173688 dualbound = 3597433.997496, lowerbound=1291927.997496, norm of subgrad 36.176607 stepsize= 1.000000 +dualbound = 3597515.347461, lowerbound=1283258.347461, norm of subgrad 1133.324908 dualbound = 3597515.347461, lowerbound=1283258.347461, norm of subgrad 35.331996 stepsize= 1.000000 +dualbound = 3597580.866640, lowerbound=1287092.866640, norm of subgrad 1135.026813 dualbound = 3597580.866640, lowerbound=1287092.866640, norm of subgrad 35.475614 stepsize= 1.000000 +dualbound = 3597640.961723, lowerbound=1293110.961723, norm of subgrad 1137.704690 dualbound = 3597640.961723, lowerbound=1293110.961723, norm of subgrad 36.346872 stepsize= 1.000000 +dualbound = 3597692.965040, lowerbound=1286737.965040, norm of subgrad 1134.892491 dualbound = 3597692.965040, lowerbound=1286737.965040, norm of subgrad 35.986155 stepsize= 1.000000 +dualbound = 3597776.899430, lowerbound=1290750.899430, norm of subgrad 1136.637101 dualbound = 3597776.899430, lowerbound=1290750.899430, norm of subgrad 35.734219 stepsize= 1.000000 +dualbound = 3597867.673308, lowerbound=1292786.673308, norm of subgrad 1137.516010 dualbound = 3597867.673308, lowerbound=1292786.673308, norm of subgrad 35.309685 stepsize= 1.000000 +dualbound = 3597910.609794, lowerbound=1289690.609794, norm of subgrad 1136.180712 dualbound = 3597910.609794, lowerbound=1289690.609794, norm of subgrad 35.481495 stepsize= 1.000000 +dualbound = 3597967.895006, lowerbound=1285808.895006, norm of subgrad 1134.498521 dualbound = 3597967.895006, lowerbound=1285808.895006, norm of subgrad 36.541555 stepsize= 1.000000 +dualbound = 3598023.566429, lowerbound=1286393.566429, norm of subgrad 1134.739867 dualbound = 3598023.566429, lowerbound=1286393.566429, norm of subgrad 36.009324 stepsize= 1.000000 +dualbound = 3598113.823662, lowerbound=1292548.823662, norm of subgrad 1137.452779 dualbound = 3598113.823662, lowerbound=1292548.823662, norm of subgrad 36.609524 stepsize= 1.000000 +dualbound = 3598174.066453, lowerbound=1285308.066453, norm of subgrad 1134.223993 dualbound = 3598174.066453, lowerbound=1285308.066453, norm of subgrad 34.874673 stepsize= 1.000000 +dualbound = 3598273.790393, lowerbound=1287754.790393, norm of subgrad 1135.321448 dualbound = 3598273.790393, lowerbound=1287754.790393, norm of subgrad 36.051684 stepsize= 1.000000 +dualbound = 3598320.047903, lowerbound=1287056.047903, norm of subgrad 1135.019845 dualbound = 3598320.047903, lowerbound=1287056.047903, norm of subgrad 35.500106 stepsize= 1.000000 +dualbound = 3598417.313084, lowerbound=1293213.313084, norm of subgrad 1137.729455 dualbound = 3598417.313084, lowerbound=1293213.313084, norm of subgrad 36.225201 stepsize= 1.000000 +dualbound = 3598440.489292, lowerbound=1291370.489292, norm of subgrad 1136.962396 dualbound = 3598440.489292, lowerbound=1291370.489292, norm of subgrad 36.553744 stepsize= 1.000000 +dualbound = 3598521.399595, lowerbound=1287669.399595, norm of subgrad 1135.301458 dualbound = 3598521.399595, lowerbound=1287669.399595, norm of subgrad 36.344330 stepsize= 1.000000 +dualbound = 3598575.936459, lowerbound=1286459.936459, norm of subgrad 1134.767349 dualbound = 3598575.936459, lowerbound=1286459.936459, norm of subgrad 35.937959 stepsize= 1.000000 +dualbound = 3598693.285721, lowerbound=1284802.285721, norm of subgrad 1134.001890 dualbound = 3598693.285721, lowerbound=1284802.285721, norm of subgrad 35.712032 stepsize= 1.000000 +dualbound = 3598748.123787, lowerbound=1285073.123787, norm of subgrad 1134.145107 dualbound = 3598748.123787, lowerbound=1285073.123787, norm of subgrad 35.592669 stepsize= 1.000000 +dualbound = 3598827.294057, lowerbound=1286705.294057, norm of subgrad 1134.877656 dualbound = 3598827.294057, lowerbound=1286705.294057, norm of subgrad 36.347906 stepsize= 1.000000 +dualbound = 3598862.050131, lowerbound=1291376.050131, norm of subgrad 1136.919544 dualbound = 3598862.050131, lowerbound=1291376.050131, norm of subgrad 35.281101 stepsize= 1.000000 +dualbound = 3598950.912281, lowerbound=1287021.912281, norm of subgrad 1135.013177 dualbound = 3598950.912281, lowerbound=1287021.912281, norm of subgrad 36.357422 stepsize= 1.000000 +dualbound = 3599009.512891, lowerbound=1285993.512891, norm of subgrad 1134.545069 dualbound = 3599009.512891, lowerbound=1285993.512891, norm of subgrad 35.462665 stepsize= 1.000000 +dualbound = 3599107.924882, lowerbound=1288964.924882, norm of subgrad 1135.840185 dualbound = 3599107.924882, lowerbound=1288964.924882, norm of subgrad 35.586683 stepsize= 1.000000 +dualbound = 3599168.141551, lowerbound=1290539.141551, norm of subgrad 1136.521949 dualbound = 3599168.141551, lowerbound=1290539.141551, norm of subgrad 34.687414 stepsize= 1.000000 +dualbound = 3599256.227697, lowerbound=1284222.227697, norm of subgrad 1133.761098 dualbound = 3599256.227697, lowerbound=1284222.227697, norm of subgrad 35.778292 stepsize= 1.000000 +dualbound = 3599297.137605, lowerbound=1286830.137605, norm of subgrad 1134.936623 dualbound = 3599297.137605, lowerbound=1286830.137605, norm of subgrad 35.943148 stepsize= 1.000000 +dualbound = 3599361.545578, lowerbound=1286440.545578, norm of subgrad 1134.753518 dualbound = 3599361.545578, lowerbound=1286440.545578, norm of subgrad 35.908327 stepsize= 1.000000 +dualbound = 3599429.913663, lowerbound=1284458.913663, norm of subgrad 1133.886641 dualbound = 3599429.913663, lowerbound=1284458.913663, norm of subgrad 36.171371 stepsize= 1.000000 +dualbound = 3599494.176027, lowerbound=1292465.176027, norm of subgrad 1137.408535 dualbound = 3599494.176027, lowerbound=1292465.176027, norm of subgrad 36.017529 stepsize= 1.000000 +dualbound = 3599552.313926, lowerbound=1286492.313926, norm of subgrad 1134.804967 dualbound = 3599552.313926, lowerbound=1286492.313926, norm of subgrad 36.716997 stepsize= 1.000000 +dualbound = 3599642.293756, lowerbound=1295331.293756, norm of subgrad 1138.652403 dualbound = 3599642.293756, lowerbound=1295331.293756, norm of subgrad 35.888436 stepsize= 1.000000 +dualbound = 3599710.535849, lowerbound=1286833.535849, norm of subgrad 1134.909924 dualbound = 3599710.535849, lowerbound=1286833.535849, norm of subgrad 35.429396 stepsize= 1.000000 +dualbound = 3599769.952771, lowerbound=1294131.952771, norm of subgrad 1138.129146 dualbound = 3599769.952771, lowerbound=1294131.952771, norm of subgrad 35.572699 stepsize= 1.000000 +dualbound = 3599845.718956, lowerbound=1291186.718956, norm of subgrad 1136.838035 dualbound = 3599845.718956, lowerbound=1291186.718956, norm of subgrad 35.913315 stepsize= 1.000000 +dualbound = 3599938.240776, lowerbound=1287696.240776, norm of subgrad 1135.268356 dualbound = 3599938.240776, lowerbound=1287696.240776, norm of subgrad 35.078794 stepsize= 1.000000 +dualbound = 3600006.213404, lowerbound=1286622.213404, norm of subgrad 1134.820785 dualbound = 3600006.213404, lowerbound=1286622.213404, norm of subgrad 35.552393 stepsize= 1.000000 +dualbound = 3600049.846312, lowerbound=1290148.846312, norm of subgrad 1136.392910 dualbound = 3600049.846312, lowerbound=1290148.846312, norm of subgrad 35.827823 stepsize= 1.000000 +dualbound = 3600107.790219, lowerbound=1284934.790219, norm of subgrad 1134.118508 dualbound = 3600107.790219, lowerbound=1284934.790219, norm of subgrad 36.714356 stepsize= 1.000000 +dualbound = 3600177.906217, lowerbound=1290151.906217, norm of subgrad 1136.370057 dualbound = 3600177.906217, lowerbound=1290151.906217, norm of subgrad 35.427616 stepsize= 1.000000 +dualbound = 3600287.383434, lowerbound=1285362.383434, norm of subgrad 1134.261603 dualbound = 3600287.383434, lowerbound=1285362.383434, norm of subgrad 36.006627 stepsize= 1.000000 +dualbound = 3600347.088422, lowerbound=1293140.088422, norm of subgrad 1137.698153 dualbound = 3600347.088422, lowerbound=1293140.088422, norm of subgrad 35.731009 stepsize= 1.000000 +dualbound = 3600412.522796, lowerbound=1286077.522796, norm of subgrad 1134.575481 dualbound = 3600412.522796, lowerbound=1286077.522796, norm of subgrad 35.347339 stepsize= 1.000000 +dualbound = 3600483.784177, lowerbound=1290658.784177, norm of subgrad 1136.591300 dualbound = 3600483.784177, lowerbound=1290658.784177, norm of subgrad 35.387305 stepsize= 1.000000 +dualbound = 3600556.787096, lowerbound=1289471.787096, norm of subgrad 1136.076048 dualbound = 3600556.787096, lowerbound=1289471.787096, norm of subgrad 35.637100 stepsize= 1.000000 +dualbound = 3600638.806111, lowerbound=1286116.806111, norm of subgrad 1134.590590 dualbound = 3600638.806111, lowerbound=1286116.806111, norm of subgrad 35.510830 stepsize= 1.000000 +dualbound = 3600688.665631, lowerbound=1290685.665631, norm of subgrad 1136.602686 dualbound = 3600688.665631, lowerbound=1290685.665631, norm of subgrad 35.069353 stepsize= 1.000000 +dualbound = 3600769.017433, lowerbound=1289429.017433, norm of subgrad 1136.062946 dualbound = 3600769.017433, lowerbound=1289429.017433, norm of subgrad 35.921467 stepsize= 1.000000 +dualbound = 3600818.075165, lowerbound=1290336.075165, norm of subgrad 1136.458127 dualbound = 3600818.075165, lowerbound=1290336.075165, norm of subgrad 35.356156 stepsize= 1.000000 +dualbound = 3600889.561421, lowerbound=1292183.561421, norm of subgrad 1137.268465 dualbound = 3600889.561421, lowerbound=1292183.561421, norm of subgrad 35.601773 stepsize= 1.000000 +dualbound = 3600972.648721, lowerbound=1288223.648721, norm of subgrad 1135.532760 dualbound = 3600972.648721, lowerbound=1288223.648721, norm of subgrad 35.973425 stepsize= 1.000000 +dualbound = 3601027.771743, lowerbound=1287508.771743, norm of subgrad 1135.225428 dualbound = 3601027.771743, lowerbound=1287508.771743, norm of subgrad 35.820707 stepsize= 1.000000 +dualbound = 3601099.347003, lowerbound=1290629.347003, norm of subgrad 1136.593748 dualbound = 3601099.347003, lowerbound=1290629.347003, norm of subgrad 35.882799 stepsize= 1.000000 +dualbound = 3601180.597536, lowerbound=1287122.597536, norm of subgrad 1135.063257 dualbound = 3601180.597536, lowerbound=1287122.597536, norm of subgrad 36.431450 stepsize= 1.000000 +dualbound = 3601207.210613, lowerbound=1286002.210613, norm of subgrad 1134.558157 dualbound = 3601207.210613, lowerbound=1286002.210613, norm of subgrad 35.307408 stepsize= 1.000000 +dualbound = 3601311.574849, lowerbound=1288654.574849, norm of subgrad 1135.688591 dualbound = 3601311.574849, lowerbound=1288654.574849, norm of subgrad 35.190400 stepsize= 1.000000 +dualbound = 3601405.950640, lowerbound=1287332.950640, norm of subgrad 1135.121558 dualbound = 3601405.950640, lowerbound=1287332.950640, norm of subgrad 35.529928 stepsize= 1.000000 +dualbound = 3601458.849198, lowerbound=1287990.849198, norm of subgrad 1135.431570 dualbound = 3601458.849198, lowerbound=1287990.849198, norm of subgrad 35.593518 stepsize= 1.000000 +dualbound = 3601520.969912, lowerbound=1282872.969912, norm of subgrad 1133.198557 dualbound = 3601520.969912, lowerbound=1282872.969912, norm of subgrad 36.443391 stepsize= 1.000000 +dualbound = 3601569.842994, lowerbound=1290600.842994, norm of subgrad 1136.603204 dualbound = 3601569.842994, lowerbound=1290600.842994, norm of subgrad 36.261179 stepsize= 1.000000 +dualbound = 3601643.776466, lowerbound=1287751.776466, norm of subgrad 1135.350949 dualbound = 3601643.776466, lowerbound=1287751.776466, norm of subgrad 36.659698 stepsize= 1.000000 +dualbound = 3601735.333591, lowerbound=1290268.333591, norm of subgrad 1136.444162 dualbound = 3601735.333591, lowerbound=1290268.333591, norm of subgrad 36.449378 stepsize= 1.000000 +dualbound = 3601769.889157, lowerbound=1287906.889157, norm of subgrad 1135.415734 dualbound = 3601769.889157, lowerbound=1287906.889157, norm of subgrad 36.007715 stepsize= 1.000000 +dualbound = 3601874.039770, lowerbound=1290726.039770, norm of subgrad 1136.630564 dualbound = 3601874.039770, lowerbound=1290726.039770, norm of subgrad 36.154538 stepsize= 1.000000 +dualbound = 3601939.216277, lowerbound=1288406.216277, norm of subgrad 1135.632518 dualbound = 3601939.216277, lowerbound=1288406.216277, norm of subgrad 36.334233 stepsize= 1.000000 +dualbound = 3601999.387059, lowerbound=1291114.387059, norm of subgrad 1136.804463 dualbound = 3601999.387059, lowerbound=1291114.387059, norm of subgrad 35.639455 stepsize= 1.000000 +dualbound = 3602069.359052, lowerbound=1287697.359052, norm of subgrad 1135.308046 dualbound = 3602069.359052, lowerbound=1287697.359052, norm of subgrad 36.013497 stepsize= 1.000000 +dualbound = 3602134.852365, lowerbound=1290414.852365, norm of subgrad 1136.494546 dualbound = 3602134.852365, lowerbound=1290414.852365, norm of subgrad 35.643980 stepsize= 1.000000 +dualbound = 3602216.056948, lowerbound=1290710.056948, norm of subgrad 1136.591420 dualbound = 3602216.056948, lowerbound=1290710.056948, norm of subgrad 34.802365 stepsize= 1.000000 +dualbound = 3602311.253657, lowerbound=1287107.253657, norm of subgrad 1135.007601 dualbound = 3602311.253657, lowerbound=1287107.253657, norm of subgrad 35.074160 stepsize= 1.000000 +dualbound = 3602365.242460, lowerbound=1292426.242460, norm of subgrad 1137.366362 dualbound = 3602365.242460, lowerbound=1292426.242460, norm of subgrad 35.071196 stepsize= 1.000000 +dualbound = 3602429.948810, lowerbound=1290490.948810, norm of subgrad 1136.537702 dualbound = 3602429.948810, lowerbound=1290490.948810, norm of subgrad 35.940316 stepsize= 1.000000 +dualbound = 3602495.307057, lowerbound=1288443.307057, norm of subgrad 1135.614506 dualbound = 3602495.307057, lowerbound=1288443.307057, norm of subgrad 35.247103 stepsize= 1.000000 +dualbound = 3602581.775826, lowerbound=1288071.775826, norm of subgrad 1135.462362 dualbound = 3602581.775826, lowerbound=1288071.775826, norm of subgrad 35.909174 stepsize= 1.000000 +dualbound = 3602630.960196, lowerbound=1294056.960196, norm of subgrad 1138.101472 dualbound = 3602630.960196, lowerbound=1294056.960196, norm of subgrad 35.597533 stepsize= 1.000000 +dualbound = 3602691.392028, lowerbound=1287790.392028, norm of subgrad 1135.369716 dualbound = 3602691.392028, lowerbound=1287790.392028, norm of subgrad 36.529876 stepsize= 1.000000 +dualbound = 3602751.078862, lowerbound=1292471.078862, norm of subgrad 1137.451133 dualbound = 3602751.078862, lowerbound=1292471.078862, norm of subgrad 37.197941 stepsize= 1.000000 +dualbound = 3602825.048821, lowerbound=1288440.048821, norm of subgrad 1135.636847 dualbound = 3602825.048821, lowerbound=1288440.048821, norm of subgrad 36.124368 stepsize= 1.000000 +dualbound = 3602902.478167, lowerbound=1288852.478167, norm of subgrad 1135.825021 dualbound = 3602902.478167, lowerbound=1288852.478167, norm of subgrad 36.378968 stepsize= 1.000000 +dualbound = 3602958.653409, lowerbound=1288847.653409, norm of subgrad 1135.825978 dualbound = 3602958.653409, lowerbound=1288847.653409, norm of subgrad 36.182527 stepsize= 1.000000 +dualbound = 3603040.746509, lowerbound=1286556.746509, norm of subgrad 1134.794143 dualbound = 3603040.746509, lowerbound=1286556.746509, norm of subgrad 35.820289 stepsize= 1.000000 +dualbound = 3603100.763857, lowerbound=1290401.763857, norm of subgrad 1136.507265 dualbound = 3603100.763857, lowerbound=1290401.763857, norm of subgrad 36.152695 stepsize= 1.000000 +dualbound = 3603159.268569, lowerbound=1284839.268569, norm of subgrad 1134.069781 dualbound = 3603159.268569, lowerbound=1284839.268569, norm of subgrad 36.517184 stepsize= 1.000000 +dualbound = 3603230.126193, lowerbound=1290110.126194, norm of subgrad 1136.360034 dualbound = 3603230.126193, lowerbound=1290110.126194, norm of subgrad 35.705148 stepsize= 1.000000 +dualbound = 3603300.116463, lowerbound=1285497.116463, norm of subgrad 1134.350085 dualbound = 3603300.116463, lowerbound=1285497.116463, norm of subgrad 36.372933 stepsize= 1.000000 +dualbound = 3603363.034766, lowerbound=1286599.034766, norm of subgrad 1134.812335 dualbound = 3603363.034766, lowerbound=1286599.034766, norm of subgrad 35.537562 stepsize= 1.000000 +dualbound = 3603453.164750, lowerbound=1289558.164750, norm of subgrad 1136.109222 dualbound = 3603453.164750, lowerbound=1289558.164750, norm of subgrad 35.722962 stepsize= 1.000000 +dualbound = 3603525.671617, lowerbound=1289204.671617, norm of subgrad 1135.957601 dualbound = 3603525.671617, lowerbound=1289204.671617, norm of subgrad 35.602063 stepsize= 1.000000 +dualbound = 3603598.512203, lowerbound=1290893.512203, norm of subgrad 1136.703353 dualbound = 3603598.512203, lowerbound=1290893.512203, norm of subgrad 35.690903 stepsize= 1.000000 +dualbound = 3603669.015486, lowerbound=1286993.015486, norm of subgrad 1135.000447 dualbound = 3603669.015486, lowerbound=1286993.015486, norm of subgrad 36.104062 stepsize= 1.000000 +dualbound = 3603708.489774, lowerbound=1293566.489774, norm of subgrad 1137.909702 dualbound = 3603708.489774, lowerbound=1293566.489774, norm of subgrad 36.214283 stepsize= 1.000000 +dualbound = 3603780.444673, lowerbound=1285968.444673, norm of subgrad 1134.551649 dualbound = 3603780.444673, lowerbound=1285968.444673, norm of subgrad 36.207111 stepsize= 1.000000 +dualbound = 3603881.620468, lowerbound=1291567.620468, norm of subgrad 1136.998074 dualbound = 3603881.620468, lowerbound=1291567.620468, norm of subgrad 36.030207 stepsize= 1.000000 +dualbound = 3603932.153103, lowerbound=1284958.153103, norm of subgrad 1134.128808 dualbound = 3603932.153103, lowerbound=1284958.153103, norm of subgrad 36.613285 stepsize= 1.000000 +dualbound = 3603999.092138, lowerbound=1293926.092138, norm of subgrad 1138.063308 dualbound = 3603999.092138, lowerbound=1293926.092138, norm of subgrad 36.454616 stepsize= 1.000000 +dualbound = 3604077.266475, lowerbound=1289009.266475, norm of subgrad 1135.901962 dualbound = 3604077.266475, lowerbound=1289009.266475, norm of subgrad 36.635698 stepsize= 1.000000 +dualbound = 3604128.180228, lowerbound=1288508.180228, norm of subgrad 1135.675649 dualbound = 3604128.180228, lowerbound=1288508.180228, norm of subgrad 36.082042 stepsize= 1.000000 +dualbound = 3604218.421573, lowerbound=1287609.421573, norm of subgrad 1135.271959 dualbound = 3604218.421573, lowerbound=1287609.421573, norm of subgrad 36.376384 stepsize= 1.000000 +dualbound = 3604275.138037, lowerbound=1290626.138037, norm of subgrad 1136.596735 dualbound = 3604275.138037, lowerbound=1290626.138037, norm of subgrad 35.815031 stepsize= 1.000000 +dualbound = 3604358.264818, lowerbound=1285894.264818, norm of subgrad 1134.508821 dualbound = 3604358.264818, lowerbound=1285894.264818, norm of subgrad 36.043401 stepsize= 1.000000 +dualbound = 3604412.931574, lowerbound=1290581.931574, norm of subgrad 1136.599284 dualbound = 3604412.931574, lowerbound=1290581.931574, norm of subgrad 36.478305 stepsize= 1.000000 +dualbound = 3604469.248709, lowerbound=1283509.248709, norm of subgrad 1133.448388 dualbound = 3604469.248709, lowerbound=1283509.248709, norm of subgrad 35.388093 stepsize= 1.000000 +dualbound = 3604584.989357, lowerbound=1287530.989357, norm of subgrad 1135.221560 dualbound = 3604584.989357, lowerbound=1287530.989357, norm of subgrad 36.231763 stepsize= 1.000000 +dualbound = 3604630.750385, lowerbound=1285628.750385, norm of subgrad 1134.397087 dualbound = 3604630.750385, lowerbound=1285628.750385, norm of subgrad 35.689789 stepsize= 1.000000 +dualbound = 3604701.883403, lowerbound=1296266.883403, norm of subgrad 1139.052186 dualbound = 3604701.883403, lowerbound=1296266.883403, norm of subgrad 35.272270 stepsize= 1.000000 +dualbound = 3604768.712279, lowerbound=1286139.712279, norm of subgrad 1134.640786 dualbound = 3604768.712279, lowerbound=1286139.712279, norm of subgrad 36.562671 stepsize= 1.000000 +dualbound = 3604806.166427, lowerbound=1291121.166427, norm of subgrad 1136.831635 dualbound = 3604806.166427, lowerbound=1291121.166427, norm of subgrad 36.089530 stepsize= 1.000000 +dualbound = 3604879.999493, lowerbound=1285306.999493, norm of subgrad 1134.276862 dualbound = 3604879.999493, lowerbound=1285306.999493, norm of subgrad 36.753681 stepsize= 1.000000 +dualbound = 3604944.761584, lowerbound=1292904.761584, norm of subgrad 1137.591210 dualbound = 3604944.761584, lowerbound=1292904.761584, norm of subgrad 35.689804 stepsize= 1.000000 +dualbound = 3605063.293122, lowerbound=1286920.293122, norm of subgrad 1134.956957 dualbound = 3605063.293122, lowerbound=1286920.293122, norm of subgrad 36.407850 stepsize= 1.000000 +dualbound = 3605104.113972, lowerbound=1292393.113972, norm of subgrad 1137.375538 dualbound = 3605104.113972, lowerbound=1292393.113972, norm of subgrad 35.648574 stepsize= 1.000000 +dualbound = 3605178.022016, lowerbound=1285647.022016, norm of subgrad 1134.373405 dualbound = 3605178.022016, lowerbound=1285647.022016, norm of subgrad 35.070045 stepsize= 1.000000 +dualbound = 3605261.106225, lowerbound=1289609.106225, norm of subgrad 1136.165088 dualbound = 3605261.106225, lowerbound=1289609.106225, norm of subgrad 36.675390 stepsize= 1.000000 +dualbound = 3605276.064525, lowerbound=1287313.064525, norm of subgrad 1135.163893 dualbound = 3605276.064525, lowerbound=1287313.064525, norm of subgrad 36.041064 stepsize= 1.000000 +dualbound = 3605360.396139, lowerbound=1294059.396139, norm of subgrad 1138.116600 dualbound = 3605360.396139, lowerbound=1294059.396139, norm of subgrad 36.528504 stepsize= 1.000000 +dualbound = 3605460.920368, lowerbound=1284767.920368, norm of subgrad 1134.002610 dualbound = 3605460.920368, lowerbound=1284767.920368, norm of subgrad 35.979497 stepsize= 1.000000 +dualbound = 3605524.122100, lowerbound=1291816.122100, norm of subgrad 1137.128015 dualbound = 3605524.122100, lowerbound=1291816.122100, norm of subgrad 36.155245 stepsize= 1.000000 +dualbound = 3605572.797513, lowerbound=1285665.797513, norm of subgrad 1134.438098 dualbound = 3605572.797513, lowerbound=1285665.797513, norm of subgrad 36.505827 stepsize= 1.000000 +dualbound = 3605652.988370, lowerbound=1291281.988370, norm of subgrad 1136.914679 dualbound = 3605652.988370, lowerbound=1291281.988370, norm of subgrad 37.056590 stepsize= 1.000000 +dualbound = 3605710.337665, lowerbound=1291279.337665, norm of subgrad 1136.870414 dualbound = 3605710.337665, lowerbound=1291279.337665, norm of subgrad 35.388547 stepsize= 1.000000 +dualbound = 3605816.443436, lowerbound=1289101.443436, norm of subgrad 1135.905561 dualbound = 3605816.443436, lowerbound=1289101.443436, norm of subgrad 35.862317 stepsize= 1.000000 +dualbound = 3605861.923376, lowerbound=1287329.923376, norm of subgrad 1135.144010 dualbound = 3605861.923376, lowerbound=1287329.923376, norm of subgrad 35.601685 stepsize= 1.000000 +dualbound = 3605945.435187, lowerbound=1284519.435187, norm of subgrad 1133.886430 dualbound = 3605945.435187, lowerbound=1284519.435187, norm of subgrad 35.531842 stepsize= 1.000000 +dualbound = 3606008.984299, lowerbound=1290241.984299, norm of subgrad 1136.416730 dualbound = 3606008.984299, lowerbound=1290241.984299, norm of subgrad 35.560499 stepsize= 1.000000 +dualbound = 3606094.672662, lowerbound=1289610.672662, norm of subgrad 1136.129250 dualbound = 3606094.672662, lowerbound=1289610.672662, norm of subgrad 35.562457 stepsize= 1.000000 +dualbound = 3606144.774001, lowerbound=1290909.774001, norm of subgrad 1136.697310 dualbound = 3606144.774001, lowerbound=1290909.774001, norm of subgrad 34.944260 stepsize= 1.000000 +dualbound = 3606223.241566, lowerbound=1289152.241566, norm of subgrad 1135.940686 dualbound = 3606223.241566, lowerbound=1289152.241566, norm of subgrad 35.881298 stepsize= 1.000000 +dualbound = 3606268.779216, lowerbound=1289423.779216, norm of subgrad 1136.069883 dualbound = 3606268.779216, lowerbound=1289423.779216, norm of subgrad 35.728667 stepsize= 1.000000 +dualbound = 3606334.878781, lowerbound=1289262.878781, norm of subgrad 1135.970897 dualbound = 3606334.878781, lowerbound=1289262.878781, norm of subgrad 35.115517 stepsize= 1.000000 +dualbound = 3606434.794259, lowerbound=1286311.794259, norm of subgrad 1134.672549 dualbound = 3606434.794259, lowerbound=1286311.794259, norm of subgrad 35.635873 stepsize= 1.000000 +dualbound = 3606493.985320, lowerbound=1293437.985320, norm of subgrad 1137.823354 dualbound = 3606493.985320, lowerbound=1293437.985320, norm of subgrad 35.541399 stepsize= 1.000000 +dualbound = 3606539.912790, lowerbound=1285370.912790, norm of subgrad 1134.289607 dualbound = 3606539.912790, lowerbound=1285370.912790, norm of subgrad 35.887706 stepsize= 1.000000 +dualbound = 3606616.482076, lowerbound=1290224.482076, norm of subgrad 1136.409909 dualbound = 3606616.482076, lowerbound=1290224.482076, norm of subgrad 35.771068 stepsize= 1.000000 +dualbound = 3606698.251362, lowerbound=1284452.251362, norm of subgrad 1133.888994 dualbound = 3606698.251362, lowerbound=1284452.251362, norm of subgrad 36.520806 stepsize= 1.000000 +dualbound = 3606723.566772, lowerbound=1292961.566772, norm of subgrad 1137.631121 dualbound = 3606723.566772, lowerbound=1292961.566772, norm of subgrad 35.613416 stepsize= 1.000000 +dualbound = 3606818.113131, lowerbound=1287695.113131, norm of subgrad 1135.321590 dualbound = 3606818.113131, lowerbound=1287695.113131, norm of subgrad 36.804162 stepsize= 1.000000 +dualbound = 3606884.210061, lowerbound=1292931.210061, norm of subgrad 1137.650302 dualbound = 3606884.210061, lowerbound=1292931.210061, norm of subgrad 37.190011 stepsize= 1.000000 +dualbound = 3606916.252958, lowerbound=1287063.252958, norm of subgrad 1135.079844 dualbound = 3606916.252958, lowerbound=1287063.252958, norm of subgrad 37.081571 stepsize= 1.000000 +dualbound = 3607014.750994, lowerbound=1288987.750994, norm of subgrad 1135.892491 dualbound = 3607014.750994, lowerbound=1288987.750994, norm of subgrad 36.912031 stepsize= 1.000000 +dualbound = 3607098.887559, lowerbound=1292093.887559, norm of subgrad 1137.228600 dualbound = 3607098.887559, lowerbound=1292093.887559, norm of subgrad 35.765019 stepsize= 1.000000 +dualbound = 3607182.372973, lowerbound=1290298.372973, norm of subgrad 1136.438020 dualbound = 3607182.372973, lowerbound=1290298.372973, norm of subgrad 35.727936 stepsize= 1.000000 +dualbound = 3607235.628206, lowerbound=1289103.628206, norm of subgrad 1135.930292 dualbound = 3607235.628206, lowerbound=1289103.628206, norm of subgrad 35.878339 stepsize= 1.000000 +dualbound = 3607315.792043, lowerbound=1291854.792043, norm of subgrad 1137.125671 dualbound = 3607315.792043, lowerbound=1291854.792043, norm of subgrad 35.779377 stepsize= 1.000000 +dualbound = 3607365.771808, lowerbound=1285187.771808, norm of subgrad 1134.201381 dualbound = 3607365.771808, lowerbound=1285187.771808, norm of subgrad 35.706859 stepsize= 1.000000 +dualbound = 3607448.534782, lowerbound=1291344.534782, norm of subgrad 1136.889412 dualbound = 3607448.534782, lowerbound=1291344.534782, norm of subgrad 35.436746 stepsize= 1.000000 +dualbound = 3607512.002957, lowerbound=1284641.002957, norm of subgrad 1133.939153 dualbound = 3607512.002957, lowerbound=1284641.002957, norm of subgrad 35.220281 stepsize= 1.000000 +dualbound = 3607588.393256, lowerbound=1294257.393256, norm of subgrad 1138.194357 dualbound = 3607588.393256, lowerbound=1294257.393256, norm of subgrad 36.130185 stepsize= 1.000000 +dualbound = 3607627.658509, lowerbound=1282410.658509, norm of subgrad 1132.997201 dualbound = 3607627.658509, lowerbound=1282410.658509, norm of subgrad 36.211397 stepsize= 1.000000 +dualbound = 3607719.557485, lowerbound=1291742.557485, norm of subgrad 1137.065767 dualbound = 3607719.557485, lowerbound=1291742.557485, norm of subgrad 35.607569 stepsize= 1.000000 +dualbound = 3607804.596915, lowerbound=1288177.596916, norm of subgrad 1135.493988 dualbound = 3607804.596915, lowerbound=1288177.596916, norm of subgrad 35.412419 stepsize= 1.000000 +dualbound = 3607853.230531, lowerbound=1291512.230531, norm of subgrad 1137.007137 dualbound = 3607853.230531, lowerbound=1291512.230531, norm of subgrad 36.354279 stepsize= 1.000000 +dualbound = 3607915.794045, lowerbound=1285125.794045, norm of subgrad 1134.185961 dualbound = 3607915.794045, lowerbound=1285125.794045, norm of subgrad 36.256910 stepsize= 1.000000 +dualbound = 3607989.016483, lowerbound=1292542.016483, norm of subgrad 1137.434841 dualbound = 3607989.016483, lowerbound=1292542.016483, norm of subgrad 35.905744 stepsize= 1.000000 +dualbound = 3608055.909502, lowerbound=1286448.909502, norm of subgrad 1134.775268 dualbound = 3608055.909502, lowerbound=1286448.909502, norm of subgrad 36.508807 stepsize= 1.000000 +dualbound = 3608141.775860, lowerbound=1290161.775860, norm of subgrad 1136.374840 dualbound = 3608141.775860, lowerbound=1290161.775860, norm of subgrad 35.663235 stepsize= 1.000000 +dualbound = 3608206.723006, lowerbound=1289803.723006, norm of subgrad 1136.234009 dualbound = 3608206.723006, lowerbound=1289803.723006, norm of subgrad 35.901910 stepsize= 1.000000 +dualbound = 3608259.922059, lowerbound=1292032.922059, norm of subgrad 1137.242244 dualbound = 3608259.922059, lowerbound=1292032.922059, norm of subgrad 36.608729 stepsize= 1.000000 +dualbound = 3608311.048856, lowerbound=1288331.048856, norm of subgrad 1135.631564 dualbound = 3608311.048856, lowerbound=1288331.048856, norm of subgrad 37.136596 stepsize= 1.000000 +dualbound = 3608390.208837, lowerbound=1291478.208837, norm of subgrad 1136.979423 dualbound = 3608390.208837, lowerbound=1291478.208837, norm of subgrad 36.375266 stepsize= 1.000000 +dualbound = 3608438.407848, lowerbound=1292124.407848, norm of subgrad 1137.263122 dualbound = 3608438.407848, lowerbound=1292124.407848, norm of subgrad 35.933258 stepsize= 1.000000 +dualbound = 3608536.244565, lowerbound=1295048.244565, norm of subgrad 1138.543036 dualbound = 3608536.244565, lowerbound=1295048.244565, norm of subgrad 36.466926 stepsize= 1.000000 +dualbound = 3608611.783574, lowerbound=1287698.783574, norm of subgrad 1135.314399 dualbound = 3608611.783574, lowerbound=1287698.783574, norm of subgrad 36.270360 stepsize= 1.000000 +dualbound = 3608665.463607, lowerbound=1290567.463607, norm of subgrad 1136.589400 dualbound = 3608665.463607, lowerbound=1290567.463607, norm of subgrad 36.354918 stepsize= 1.000000 +dualbound = 3608726.228822, lowerbound=1286898.228822, norm of subgrad 1134.944152 dualbound = 3608726.228822, lowerbound=1286898.228822, norm of subgrad 35.507256 stepsize= 1.000000 +dualbound = 3608823.311067, lowerbound=1292958.311067, norm of subgrad 1137.606395 dualbound = 3608823.311067, lowerbound=1292958.311067, norm of subgrad 35.875928 stepsize= 1.000000 +dualbound = 3608885.453231, lowerbound=1284703.453231, norm of subgrad 1133.989618 dualbound = 3608885.453231, lowerbound=1284703.453231, norm of subgrad 35.932467 stepsize= 1.000000 +dualbound = 3608938.105858, lowerbound=1294772.105858, norm of subgrad 1138.430545 dualbound = 3608938.105858, lowerbound=1294772.105858, norm of subgrad 36.119975 stepsize= 1.000000 +dualbound = 3609006.784737, lowerbound=1287762.784737, norm of subgrad 1135.340383 dualbound = 3609006.784737, lowerbound=1287762.784737, norm of subgrad 36.106494 stepsize= 1.000000 +dualbound = 3609091.582728, lowerbound=1296648.582728, norm of subgrad 1139.238159 dualbound = 3609091.582728, lowerbound=1296648.582728, norm of subgrad 36.052711 stepsize= 1.000000 +dualbound = 3609141.988800, lowerbound=1284681.988800, norm of subgrad 1133.989413 dualbound = 3609141.988800, lowerbound=1284681.988800, norm of subgrad 36.061144 stepsize= 1.000000 +dualbound = 3609220.799668, lowerbound=1292408.799668, norm of subgrad 1137.367926 dualbound = 3609220.799668, lowerbound=1292408.799668, norm of subgrad 35.718495 stepsize= 1.000000 +dualbound = 3609279.541866, lowerbound=1286707.541866, norm of subgrad 1134.878206 dualbound = 3609279.541866, lowerbound=1286707.541866, norm of subgrad 36.051938 stepsize= 1.000000 +dualbound = 3609351.707281, lowerbound=1286581.707281, norm of subgrad 1134.836864 dualbound = 3609351.707281, lowerbound=1286581.707281, norm of subgrad 36.676497 stepsize= 1.000000 +dualbound = 3609401.818834, lowerbound=1284834.818834, norm of subgrad 1134.047979 dualbound = 3609401.818834, lowerbound=1284834.818834, norm of subgrad 35.778647 stepsize= 1.000000 +dualbound = 3609500.534932, lowerbound=1291387.534932, norm of subgrad 1136.914480 dualbound = 3609500.534932, lowerbound=1291387.534932, norm of subgrad 35.856884 stepsize= 1.000000 +dualbound = 3609568.704372, lowerbound=1288286.704372, norm of subgrad 1135.579898 dualbound = 3609568.704372, lowerbound=1288286.704372, norm of subgrad 36.375396 stepsize= 1.000000 +dualbound = 3609602.723820, lowerbound=1290290.723820, norm of subgrad 1136.467652 dualbound = 3609602.723820, lowerbound=1290290.723820, norm of subgrad 36.083507 stepsize= 1.000000 +dualbound = 3609701.961275, lowerbound=1289098.961275, norm of subgrad 1135.898306 dualbound = 3609701.961275, lowerbound=1289098.961275, norm of subgrad 35.570176 stepsize= 1.000000 +dualbound = 3609782.912009, lowerbound=1288950.912009, norm of subgrad 1135.867911 dualbound = 3609782.912009, lowerbound=1288950.912009, norm of subgrad 36.413606 stepsize= 1.000000 +dualbound = 3609821.337357, lowerbound=1288096.337357, norm of subgrad 1135.489911 dualbound = 3609821.337357, lowerbound=1288096.337357, norm of subgrad 35.769056 stepsize= 1.000000 +dualbound = 3609893.919216, lowerbound=1288543.919216, norm of subgrad 1135.691824 dualbound = 3609893.919216, lowerbound=1288543.919216, norm of subgrad 36.394805 stepsize= 1.000000 +dualbound = 3609963.773602, lowerbound=1285955.773602, norm of subgrad 1134.544743 dualbound = 3609963.773602, lowerbound=1285955.773602, norm of subgrad 36.136607 stepsize= 1.000000 +dualbound = 3610066.925383, lowerbound=1291075.925383, norm of subgrad 1136.795463 dualbound = 3610066.925383, lowerbound=1291075.925383, norm of subgrad 36.484953 stepsize= 1.000000 +dualbound = 3610100.904603, lowerbound=1288133.904603, norm of subgrad 1135.534193 dualbound = 3610100.904603, lowerbound=1288133.904603, norm of subgrad 36.578398 stepsize= 1.000000 +dualbound = 3610181.277263, lowerbound=1291446.277263, norm of subgrad 1136.978134 dualbound = 3610181.277263, lowerbound=1291446.277263, norm of subgrad 36.788214 stepsize= 1.000000 +dualbound = 3610234.258696, lowerbound=1296010.258696, norm of subgrad 1138.968067 dualbound = 3610234.258696, lowerbound=1296010.258696, norm of subgrad 35.930230 stepsize= 1.000000 +dualbound = 3610327.702382, lowerbound=1289206.702382, norm of subgrad 1135.977422 dualbound = 3610327.702382, lowerbound=1289206.702382, norm of subgrad 36.488953 stepsize= 1.000000 +dualbound = 3610386.364014, lowerbound=1287017.364014, norm of subgrad 1135.032318 dualbound = 3610386.364014, lowerbound=1287017.364014, norm of subgrad 36.601388 stepsize= 1.000000 +dualbound = 3610446.296347, lowerbound=1293271.296347, norm of subgrad 1137.789654 dualbound = 3610446.296347, lowerbound=1293271.296347, norm of subgrad 36.795820 stepsize= 1.000000 +dualbound = 3610497.690121, lowerbound=1286725.690121, norm of subgrad 1134.885320 dualbound = 3610497.690121, lowerbound=1286725.690121, norm of subgrad 35.922051 stepsize= 1.000000 +dualbound = 3610599.550846, lowerbound=1291453.550846, norm of subgrad 1136.951429 dualbound = 3610599.550846, lowerbound=1291453.550846, norm of subgrad 36.150529 stepsize= 1.000000 +dualbound = 3610651.633222, lowerbound=1291598.633222, norm of subgrad 1137.049970 dualbound = 3610651.633222, lowerbound=1291598.633222, norm of subgrad 36.552461 stepsize= 1.000000 +dualbound = 3610713.229751, lowerbound=1291971.229751, norm of subgrad 1137.161479 dualbound = 3610713.229751, lowerbound=1291971.229751, norm of subgrad 35.022800 stepsize= 1.000000 +dualbound = 3610803.704621, lowerbound=1291745.704621, norm of subgrad 1137.069349 dualbound = 3610803.704621, lowerbound=1291745.704621, norm of subgrad 35.657746 stepsize= 1.000000 +dualbound = 3610851.442862, lowerbound=1287522.442862, norm of subgrad 1135.230128 dualbound = 3610851.442862, lowerbound=1287522.442862, norm of subgrad 35.675457 stepsize= 1.000000 +dualbound = 3610928.430585, lowerbound=1290416.430585, norm of subgrad 1136.491720 dualbound = 3610928.430585, lowerbound=1290416.430585, norm of subgrad 35.692965 stepsize= 1.000000 +dualbound = 3611020.590959, lowerbound=1288099.590959, norm of subgrad 1135.449511 dualbound = 3611020.590959, lowerbound=1288099.590959, norm of subgrad 35.187503 stepsize= 1.000000 +dualbound = 3611084.993239, lowerbound=1286116.993239, norm of subgrad 1134.609181 dualbound = 3611084.993239, lowerbound=1286116.993239, norm of subgrad 35.852507 stepsize= 1.000000 +dualbound = 3611135.409264, lowerbound=1292886.409264, norm of subgrad 1137.568200 dualbound = 3611135.409264, lowerbound=1292886.409264, norm of subgrad 35.005943 stepsize= 1.000000 +dualbound = 3611211.383352, lowerbound=1286175.383352, norm of subgrad 1134.669724 dualbound = 3611211.383352, lowerbound=1286175.383352, norm of subgrad 37.094125 stepsize= 1.000000 +dualbound = 3611255.161291, lowerbound=1289883.161291, norm of subgrad 1136.293607 dualbound = 3611255.161291, lowerbound=1289883.161291, norm of subgrad 36.383759 stepsize= 1.000000 +dualbound = 3611320.766285, lowerbound=1289953.766285, norm of subgrad 1136.302234 dualbound = 3611320.766285, lowerbound=1289953.766285, norm of subgrad 35.980620 stepsize= 1.000000 +dualbound = 3611444.719832, lowerbound=1287400.719832, norm of subgrad 1135.196776 dualbound = 3611444.719832, lowerbound=1287400.719832, norm of subgrad 37.349077 stepsize= 1.000000 +dualbound = 3611449.198134, lowerbound=1288479.198134, norm of subgrad 1135.666411 dualbound = 3611449.198134, lowerbound=1288479.198134, norm of subgrad 35.545440 stepsize= 1.000000 +dualbound = 3611563.727337, lowerbound=1290844.727337, norm of subgrad 1136.684973 dualbound = 3611563.727337, lowerbound=1290844.727337, norm of subgrad 36.366595 stepsize= 1.000000 +dualbound = 3611638.439345, lowerbound=1286465.439345, norm of subgrad 1134.780349 dualbound = 3611638.439345, lowerbound=1286465.439345, norm of subgrad 36.547394 stepsize= 1.000000 +dualbound = 3611684.803722, lowerbound=1289256.803722, norm of subgrad 1135.980107 dualbound = 3611684.803722, lowerbound=1289256.803722, norm of subgrad 35.218807 stepsize= 1.000000 +dualbound = 3611771.297238, lowerbound=1287348.297239, norm of subgrad 1135.162234 dualbound = 3611771.297238, lowerbound=1287348.297239, norm of subgrad 36.489636 stepsize= 1.000000 +dualbound = 3611832.384775, lowerbound=1290938.384775, norm of subgrad 1136.732328 dualbound = 3611832.384775, lowerbound=1290938.384775, norm of subgrad 35.820211 stepsize= 1.000000 +dualbound = 3611895.258453, lowerbound=1288886.258453, norm of subgrad 1135.839891 dualbound = 3611895.258453, lowerbound=1288886.258453, norm of subgrad 36.178359 stepsize= 1.000000 +dualbound = 3611973.875467, lowerbound=1288038.875467, norm of subgrad 1135.436425 dualbound = 3611973.875467, lowerbound=1288038.875467, norm of subgrad 35.434687 stepsize= 1.000000 +dualbound = 3612044.429201, lowerbound=1291282.429201, norm of subgrad 1136.887166 dualbound = 3612044.429201, lowerbound=1291282.429201, norm of subgrad 36.063191 stepsize= 1.000000 +dualbound = 3612101.473170, lowerbound=1289850.473170, norm of subgrad 1136.252381 dualbound = 3612101.473170, lowerbound=1289850.473170, norm of subgrad 35.721758 stepsize= 1.000000 +dualbound = 3612181.944503, lowerbound=1284671.944504, norm of subgrad 1133.984543 dualbound = 3612181.944503, lowerbound=1284671.944504, norm of subgrad 36.461916 stepsize= 1.000000 +dualbound = 3612239.238950, lowerbound=1293940.238950, norm of subgrad 1138.068644 dualbound = 3612239.238950, lowerbound=1293940.238950, norm of subgrad 36.294551 stepsize= 1.000000 +dualbound = 3612308.274703, lowerbound=1286545.274703, norm of subgrad 1134.797460 dualbound = 3612308.274703, lowerbound=1286545.274703, norm of subgrad 35.903144 stepsize= 1.000000 +dualbound = 3612391.162250, lowerbound=1295148.162250, norm of subgrad 1138.566275 dualbound = 3612391.162250, lowerbound=1295148.162250, norm of subgrad 35.607409 stepsize= 1.000000 +dualbound = 3612471.255154, lowerbound=1286738.255154, norm of subgrad 1134.855169 dualbound = 3612471.255154, lowerbound=1286738.255154, norm of subgrad 35.186544 stepsize= 1.000000 +dualbound = 3612538.939460, lowerbound=1291193.939460, norm of subgrad 1136.839012 dualbound = 3612538.939460, lowerbound=1291193.939460, norm of subgrad 35.730719 stepsize= 1.000000 +dualbound = 3612579.723376, lowerbound=1288656.723376, norm of subgrad 1135.745448 dualbound = 3612579.723376, lowerbound=1288656.723376, norm of subgrad 36.080243 stepsize= 1.000000 +dualbound = 3612625.074924, lowerbound=1294231.074924, norm of subgrad 1138.182356 dualbound = 3612625.074924, lowerbound=1294231.074924, norm of subgrad 35.684052 stepsize= 1.000000 +dualbound = 3612728.636240, lowerbound=1287561.636240, norm of subgrad 1135.276458 dualbound = 3612728.636240, lowerbound=1287561.636240, norm of subgrad 37.343826 stepsize= 1.000000 +dualbound = 3612769.386276, lowerbound=1294503.386276, norm of subgrad 1138.335797 dualbound = 3612769.386276, lowerbound=1294503.386276, norm of subgrad 36.684466 stepsize= 1.000000 +dualbound = 3612838.716764, lowerbound=1288948.716764, norm of subgrad 1135.879711 dualbound = 3612838.716764, lowerbound=1288948.716764, norm of subgrad 36.651473 stepsize= 1.000000 +dualbound = 3612887.339689, lowerbound=1291297.339689, norm of subgrad 1136.905598 dualbound = 3612887.339689, lowerbound=1291297.339689, norm of subgrad 36.133405 stepsize= 1.000000 +dualbound = 3612994.942858, lowerbound=1282396.942858, norm of subgrad 1132.951430 dualbound = 3612994.942858, lowerbound=1282396.942858, norm of subgrad 35.911045 stepsize= 1.000000 +dualbound = 3613065.805764, lowerbound=1292071.805764, norm of subgrad 1137.246150 dualbound = 3613065.805764, lowerbound=1292071.805764, norm of subgrad 36.439853 stepsize= 1.000000 +dualbound = 3613101.745622, lowerbound=1285705.745622, norm of subgrad 1134.443805 dualbound = 3613101.745622, lowerbound=1285705.745622, norm of subgrad 35.957473 stepsize= 1.000000 +dualbound = 3613206.862761, lowerbound=1292078.862761, norm of subgrad 1137.225951 dualbound = 3613206.862761, lowerbound=1292078.862761, norm of subgrad 36.181724 stepsize= 1.000000 +dualbound = 3613245.891561, lowerbound=1289337.891561, norm of subgrad 1136.042205 dualbound = 3613245.891561, lowerbound=1289337.891561, norm of subgrad 35.958710 stepsize= 1.000000 +dualbound = 3613328.093197, lowerbound=1295218.093197, norm of subgrad 1138.603572 dualbound = 3613328.093197, lowerbound=1295218.093197, norm of subgrad 35.807843 stepsize= 1.000000 +dualbound = 3613400.805915, lowerbound=1290232.805915, norm of subgrad 1136.396852 dualbound = 3613400.805915, lowerbound=1290232.805915, norm of subgrad 35.181141 stepsize= 1.000000 +dualbound = 3613505.222816, lowerbound=1286729.222816, norm of subgrad 1134.882471 dualbound = 3613505.222816, lowerbound=1286729.222816, norm of subgrad 36.515981 stepsize= 1.000000 +dualbound = 3613512.995381, lowerbound=1289178.995381, norm of subgrad 1135.957744 dualbound = 3613512.995381, lowerbound=1289178.995381, norm of subgrad 35.053852 stepsize= 1.000000 +dualbound = 3613610.691438, lowerbound=1291864.691438, norm of subgrad 1137.181468 dualbound = 3613610.691438, lowerbound=1291864.691438, norm of subgrad 37.612446 stepsize= 1.000000 +dualbound = 3613652.033307, lowerbound=1289919.033307, norm of subgrad 1136.284750 dualbound = 3613652.033307, lowerbound=1289919.033307, norm of subgrad 35.571644 stepsize= 1.000000 +dualbound = 3613723.500972, lowerbound=1292561.500972, norm of subgrad 1137.473297 dualbound = 3613723.500972, lowerbound=1292561.500972, norm of subgrad 36.816676 stepsize= 1.000000 +dualbound = 3613798.848599, lowerbound=1289482.848599, norm of subgrad 1136.109523 dualbound = 3613798.848599, lowerbound=1289482.848599, norm of subgrad 36.569764 stepsize= 1.000000 +dualbound = 3613856.892748, lowerbound=1285624.892748, norm of subgrad 1134.408609 dualbound = 3613856.892748, lowerbound=1285624.892748, norm of subgrad 36.277323 stepsize= 1.000000 +dualbound = 3613909.836005, lowerbound=1291474.836005, norm of subgrad 1136.986735 dualbound = 3613909.836005, lowerbound=1291474.836005, norm of subgrad 36.289713 stepsize= 1.000000 +dualbound = 3614010.954210, lowerbound=1294131.954210, norm of subgrad 1138.136176 dualbound = 3614010.954210, lowerbound=1294131.954210, norm of subgrad 36.374692 stepsize= 1.000000 +dualbound = 3614085.052883, lowerbound=1287059.052883, norm of subgrad 1134.996499 dualbound = 3614085.052883, lowerbound=1287059.052883, norm of subgrad 35.101263 stepsize= 1.000000 +dualbound = 3614164.867581, lowerbound=1294312.867581, norm of subgrad 1138.198519 dualbound = 3614164.867581, lowerbound=1294312.867581, norm of subgrad 35.536104 stepsize= 1.000000 +dualbound = 3614213.235931, lowerbound=1289058.235931, norm of subgrad 1135.904149 dualbound = 3614213.235931, lowerbound=1289058.235931, norm of subgrad 35.614159 stepsize= 1.000000 +dualbound = 3614269.326296, lowerbound=1289202.326296, norm of subgrad 1135.996182 dualbound = 3614269.326296, lowerbound=1289202.326296, norm of subgrad 36.620901 stepsize= 1.000000 +dualbound = 3614307.942268, lowerbound=1288200.942268, norm of subgrad 1135.553144 dualbound = 3614307.942268, lowerbound=1288200.942268, norm of subgrad 36.312752 stepsize= 1.000000 +dualbound = 3614410.048211, lowerbound=1289192.048211, norm of subgrad 1135.979334 dualbound = 3614410.048211, lowerbound=1289192.048211, norm of subgrad 36.866054 stepsize= 1.000000 +dualbound = 3614464.107982, lowerbound=1291786.107982, norm of subgrad 1137.124931 dualbound = 3614464.107982, lowerbound=1291786.107982, norm of subgrad 36.346386 stepsize= 1.000000 +dualbound = 3614536.902244, lowerbound=1289126.902244, norm of subgrad 1135.930853 dualbound = 3614536.902244, lowerbound=1289126.902244, norm of subgrad 35.844027 stepsize= 1.000000 +dualbound = 3614595.970429, lowerbound=1294317.970429, norm of subgrad 1138.217014 dualbound = 3614595.970429, lowerbound=1294317.970429, norm of subgrad 35.764063 stepsize= 1.000000 +dualbound = 3614686.988750, lowerbound=1287576.988750, norm of subgrad 1135.251509 dualbound = 3614686.988750, lowerbound=1287576.988750, norm of subgrad 36.194175 stepsize= 1.000000 +dualbound = 3614750.726991, lowerbound=1289052.726991, norm of subgrad 1135.911408 dualbound = 3614750.726991, lowerbound=1289052.726991, norm of subgrad 36.135000 stepsize= 1.000000 +dualbound = 3614790.374570, lowerbound=1290711.374570, norm of subgrad 1136.643469 dualbound = 3614790.374570, lowerbound=1290711.374570, norm of subgrad 35.869870 stepsize= 1.000000 +dualbound = 3614881.244744, lowerbound=1290909.244744, norm of subgrad 1136.717311 dualbound = 3614881.244744, lowerbound=1290909.244744, norm of subgrad 36.164488 stepsize= 1.000000 +dualbound = 3614954.009351, lowerbound=1295649.009351, norm of subgrad 1138.801128 dualbound = 3614954.009351, lowerbound=1295649.009351, norm of subgrad 35.941127 stepsize= 1.000000 +dualbound = 3615000.345564, lowerbound=1291623.345564, norm of subgrad 1137.038410 dualbound = 3615000.345564, lowerbound=1291623.345564, norm of subgrad 35.767810 stepsize= 1.000000 +dualbound = 3615089.224468, lowerbound=1285897.224468, norm of subgrad 1134.503515 dualbound = 3615089.224468, lowerbound=1285897.224468, norm of subgrad 35.914884 stepsize= 1.000000 +dualbound = 3615135.461273, lowerbound=1293918.461273, norm of subgrad 1138.050289 dualbound = 3615135.461273, lowerbound=1293918.461273, norm of subgrad 35.864144 stepsize= 1.000000 +dualbound = 3615211.174136, lowerbound=1296369.174136, norm of subgrad 1139.136153 dualbound = 3615211.174136, lowerbound=1296369.174136, norm of subgrad 36.574757 stepsize= 1.000000 +dualbound = 3615269.942411, lowerbound=1288493.942411, norm of subgrad 1135.677306 dualbound = 3615269.942411, lowerbound=1288493.942411, norm of subgrad 36.438555 stepsize= 1.000000 +dualbound = 3615332.410340, lowerbound=1291576.410340, norm of subgrad 1137.038878 dualbound = 3615332.410340, lowerbound=1291576.410340, norm of subgrad 36.653348 stepsize= 1.000000 +dualbound = 3615389.462823, lowerbound=1296529.462823, norm of subgrad 1139.211334 dualbound = 3615389.462823, lowerbound=1296529.462823, norm of subgrad 36.469885 stepsize= 1.000000 +dualbound = 3615482.389711, lowerbound=1285916.389711, norm of subgrad 1134.513283 dualbound = 3615482.389711, lowerbound=1285916.389711, norm of subgrad 36.012871 stepsize= 1.000000 +dualbound = 3615548.047166, lowerbound=1294752.047166, norm of subgrad 1138.420857 dualbound = 3615548.047166, lowerbound=1294752.047166, norm of subgrad 36.271993 stepsize= 1.000000 +dualbound = 3615624.936528, lowerbound=1286977.936528, norm of subgrad 1134.985875 dualbound = 3615624.936528, lowerbound=1286977.936528, norm of subgrad 35.942862 stepsize= 1.000000 +dualbound = 3615691.853152, lowerbound=1289494.853152, norm of subgrad 1136.133290 dualbound = 3615691.853152, lowerbound=1289494.853152, norm of subgrad 37.025891 stepsize= 1.000000 +dualbound = 3615738.612348, lowerbound=1287982.612348, norm of subgrad 1135.419575 dualbound = 3615738.612348, lowerbound=1287982.612348, norm of subgrad 35.238604 stepsize= 1.000000 +dualbound = 3615861.175353, lowerbound=1297517.175353, norm of subgrad 1139.560519 dualbound = 3615861.175353, lowerbound=1297517.175353, norm of subgrad 34.692406 stepsize= 1.000000 +dualbound = 3615939.035771, lowerbound=1285952.035771, norm of subgrad 1134.499906 dualbound = 3615939.035771, lowerbound=1285952.035771, norm of subgrad 34.869190 stepsize= 1.000000 +dualbound = 3615966.454209, lowerbound=1293737.454209, norm of subgrad 1137.987458 dualbound = 3615966.454209, lowerbound=1293737.454209, norm of subgrad 36.130575 stepsize= 1.000000 +dualbound = 3616025.809157, lowerbound=1292366.809157, norm of subgrad 1137.347708 dualbound = 3616025.809157, lowerbound=1292366.809157, norm of subgrad 35.388627 stepsize= 1.000000 +dualbound = 3616091.749285, lowerbound=1292684.749285, norm of subgrad 1137.501099 dualbound = 3616091.749285, lowerbound=1292684.749285, norm of subgrad 35.915736 stepsize= 1.000000 +dualbound = 3616173.149417, lowerbound=1285843.149417, norm of subgrad 1134.481886 dualbound = 3616173.149417, lowerbound=1285843.149417, norm of subgrad 35.880359 stepsize= 1.000000 +dualbound = 3616244.602429, lowerbound=1296890.602429, norm of subgrad 1139.361489 dualbound = 3616244.602429, lowerbound=1296890.602429, norm of subgrad 36.406772 stepsize= 1.000000 +dualbound = 3616283.362272, lowerbound=1284557.362272, norm of subgrad 1133.919910 dualbound = 3616283.362272, lowerbound=1284557.362272, norm of subgrad 35.436702 stepsize= 1.000000 +dualbound = 3616355.640444, lowerbound=1295186.640444, norm of subgrad 1138.606008 dualbound = 3616355.640444, lowerbound=1295186.640444, norm of subgrad 36.183949 stepsize= 1.000000 +dualbound = 3616427.673746, lowerbound=1292851.673746, norm of subgrad 1137.565679 dualbound = 3616427.673746, lowerbound=1292851.673746, norm of subgrad 35.721608 stepsize= 1.000000 +dualbound = 3616500.213011, lowerbound=1291297.213011, norm of subgrad 1136.890150 dualbound = 3616500.213011, lowerbound=1291297.213011, norm of subgrad 35.979706 stepsize= 1.000000 +dualbound = 3616554.191906, lowerbound=1287881.191906, norm of subgrad 1135.424675 dualbound = 3616554.191906, lowerbound=1287881.191906, norm of subgrad 36.904998 stepsize= 1.000000 +dualbound = 3616601.242455, lowerbound=1292942.242455, norm of subgrad 1137.616035 dualbound = 3616601.242455, lowerbound=1292942.242455, norm of subgrad 35.707850 stepsize= 1.000000 +dualbound = 3616712.256039, lowerbound=1284007.256039, norm of subgrad 1133.698486 dualbound = 3616712.256039, lowerbound=1284007.256039, norm of subgrad 37.094657 stepsize= 1.000000 +dualbound = 3616736.278461, lowerbound=1287594.278461, norm of subgrad 1135.322984 dualbound = 3616736.278461, lowerbound=1287594.278461, norm of subgrad 37.256173 stepsize= 1.000000 +dualbound = 3616815.761067, lowerbound=1294230.761067, norm of subgrad 1138.189686 dualbound = 3616815.761067, lowerbound=1294230.761067, norm of subgrad 36.393442 stepsize= 1.000000 +dualbound = 3616915.252253, lowerbound=1293267.252253, norm of subgrad 1137.731186 dualbound = 3616915.252253, lowerbound=1293267.252253, norm of subgrad 35.559685 stepsize= 1.000000 +dualbound = 3616983.852136, lowerbound=1290232.852136, norm of subgrad 1136.430751 dualbound = 3616983.852136, lowerbound=1290232.852136, norm of subgrad 36.202208 stepsize= 1.000000 +dualbound = 3617038.679851, lowerbound=1294824.679851, norm of subgrad 1138.429480 dualbound = 3617038.679851, lowerbound=1294824.679851, norm of subgrad 35.381177 stepsize= 1.000000 +dualbound = 3617126.491778, lowerbound=1287387.491778, norm of subgrad 1135.167605 dualbound = 3617126.491778, lowerbound=1287387.491778, norm of subgrad 36.136020 stepsize= 1.000000 +dualbound = 3617163.650933, lowerbound=1294214.650933, norm of subgrad 1138.170308 dualbound = 3617163.650933, lowerbound=1294214.650933, norm of subgrad 35.414110 stepsize= 1.000000 +dualbound = 3617258.278705, lowerbound=1289738.278705, norm of subgrad 1136.194208 dualbound = 3617258.278705, lowerbound=1289738.278705, norm of subgrad 35.967037 stepsize= 1.000000 +dualbound = 3617313.460211, lowerbound=1289518.460211, norm of subgrad 1136.090868 dualbound = 3617313.460211, lowerbound=1289518.460211, norm of subgrad 35.202010 stepsize= 1.000000 +dualbound = 3617378.712747, lowerbound=1289513.712747, norm of subgrad 1136.112544 dualbound = 3617378.712747, lowerbound=1289513.712747, norm of subgrad 36.100589 stepsize= 1.000000 +dualbound = 3617443.472252, lowerbound=1288639.472252, norm of subgrad 1135.685023 dualbound = 3617443.472252, lowerbound=1288639.472252, norm of subgrad 34.724048 stepsize= 1.000000 +dualbound = 3617523.909736, lowerbound=1290739.909736, norm of subgrad 1136.638865 dualbound = 3617523.909736, lowerbound=1290739.909736, norm of subgrad 35.894811 stepsize= 1.000000 +dualbound = 3617558.089463, lowerbound=1290002.089463, norm of subgrad 1136.316017 dualbound = 3617558.089463, lowerbound=1290002.089463, norm of subgrad 35.301271 stepsize= 1.000000 +dualbound = 3617658.552377, lowerbound=1285741.552377, norm of subgrad 1134.408900 dualbound = 3617658.552377, lowerbound=1285741.552377, norm of subgrad 35.248587 stepsize= 1.000000 +dualbound = 3617728.709110, lowerbound=1290892.709110, norm of subgrad 1136.736869 dualbound = 3617728.709110, lowerbound=1290892.709110, norm of subgrad 36.717254 stepsize= 1.000000 +dualbound = 3617728.095813, lowerbound=1289593.095813, norm of subgrad 1136.153641 dualbound = 3617728.095813, lowerbound=1289593.095813, norm of subgrad 35.374945 stepsize= 1.000000 +dualbound = 3617838.697185, lowerbound=1291065.697185, norm of subgrad 1136.798442 dualbound = 3617838.697185, lowerbound=1291065.697185, norm of subgrad 36.818492 stepsize= 1.000000 +dualbound = 3617916.650149, lowerbound=1295688.650149, norm of subgrad 1138.820728 dualbound = 3617916.650149, lowerbound=1295688.650149, norm of subgrad 36.082585 stepsize= 1.000000 +dualbound = 3617950.419798, lowerbound=1293130.419798, norm of subgrad 1137.736973 dualbound = 3617950.419798, lowerbound=1293130.419798, norm of subgrad 36.725599 stepsize= 1.000000 +dualbound = 3618006.104136, lowerbound=1290909.104136, norm of subgrad 1136.741881 dualbound = 3618006.104136, lowerbound=1290909.104136, norm of subgrad 36.451123 stepsize= 1.000000 +dualbound = 3618092.278411, lowerbound=1291220.278411, norm of subgrad 1136.885341 dualbound = 3618092.278411, lowerbound=1291220.278411, norm of subgrad 37.069857 stepsize= 1.000000 +dualbound = 3618162.972838, lowerbound=1290914.972838, norm of subgrad 1136.741823 dualbound = 3618162.972838, lowerbound=1290914.972838, norm of subgrad 36.574505 stepsize= 1.000000 +dualbound = 3618235.315259, lowerbound=1293150.315259, norm of subgrad 1137.709680 dualbound = 3618235.315259, lowerbound=1293150.315259, norm of subgrad 36.129523 stepsize= 1.000000 +dualbound = 3618297.560960, lowerbound=1292725.560960, norm of subgrad 1137.527829 dualbound = 3618297.560960, lowerbound=1292725.560960, norm of subgrad 36.142021 stepsize= 1.000000 +dualbound = 3618363.133664, lowerbound=1295429.133664, norm of subgrad 1138.732248 dualbound = 3618363.133664, lowerbound=1295429.133664, norm of subgrad 36.709300 stepsize= 1.000000 +dualbound = 3618425.082621, lowerbound=1292086.082621, norm of subgrad 1137.256824 dualbound = 3618425.082621, lowerbound=1292086.082621, norm of subgrad 36.454752 stepsize= 1.000000 +dualbound = 3618491.389556, lowerbound=1291036.389556, norm of subgrad 1136.750804 dualbound = 3618491.389556, lowerbound=1291036.389556, norm of subgrad 35.104230 stepsize= 1.000000 +dualbound = 3618586.868290, lowerbound=1293536.868290, norm of subgrad 1137.867685 dualbound = 3618586.868290, lowerbound=1293536.868290, norm of subgrad 36.076013 stepsize= 1.000000 +dualbound = 3618653.055952, lowerbound=1293076.055952, norm of subgrad 1137.660782 dualbound = 3618653.055952, lowerbound=1293076.055952, norm of subgrad 35.527281 stepsize= 1.000000 +dualbound = 3618734.587450, lowerbound=1290978.587450, norm of subgrad 1136.735496 dualbound = 3618734.587450, lowerbound=1290978.587450, norm of subgrad 35.644516 stepsize= 1.000000 +dualbound = 3618788.049604, lowerbound=1288489.049604, norm of subgrad 1135.631124 dualbound = 3618788.049604, lowerbound=1288489.049604, norm of subgrad 34.963726 stepsize= 1.000000 +dualbound = 3618865.989290, lowerbound=1296664.989290, norm of subgrad 1139.232632 dualbound = 3618865.989290, lowerbound=1296664.989290, norm of subgrad 35.551929 stepsize= 1.000000 +dualbound = 3618928.774561, lowerbound=1287769.774561, norm of subgrad 1135.322322 dualbound = 3618928.774561, lowerbound=1287769.774561, norm of subgrad 35.352302 stepsize= 1.000000 +dualbound = 3618997.506428, lowerbound=1297320.506428, norm of subgrad 1139.570755 dualbound = 3618997.506428, lowerbound=1297320.506428, norm of subgrad 37.009889 stepsize= 1.000000 +dualbound = 3619042.096514, lowerbound=1286278.096514, norm of subgrad 1134.693834 dualbound = 3619042.096514, lowerbound=1286278.096514, norm of subgrad 36.008195 stepsize= 1.000000 +dualbound = 3619141.801312, lowerbound=1294652.801312, norm of subgrad 1138.331587 dualbound = 3619141.801312, lowerbound=1294652.801312, norm of subgrad 35.294543 stepsize= 1.000000 +dualbound = 3619204.200750, lowerbound=1287379.200750, norm of subgrad 1135.168798 dualbound = 3619204.200750, lowerbound=1287379.200750, norm of subgrad 35.936046 stepsize= 1.000000 +dualbound = 3619252.019284, lowerbound=1290075.019284, norm of subgrad 1136.370107 dualbound = 3619252.019284, lowerbound=1290075.019284, norm of subgrad 36.191415 stepsize= 1.000000 +dualbound = 3619325.982609, lowerbound=1288340.982609, norm of subgrad 1135.587946 dualbound = 3619325.982609, lowerbound=1288340.982609, norm of subgrad 35.957799 stepsize= 1.000000 +dualbound = 3619391.825900, lowerbound=1291489.825900, norm of subgrad 1136.966502 dualbound = 3619391.825900, lowerbound=1291489.825900, norm of subgrad 35.620827 stepsize= 1.000000 +dualbound = 3619461.085425, lowerbound=1287229.085425, norm of subgrad 1135.070080 dualbound = 3619461.085425, lowerbound=1287229.085425, norm of subgrad 34.989420 stepsize= 1.000000 +dualbound = 3619538.336253, lowerbound=1295600.336253, norm of subgrad 1138.789856 dualbound = 3619538.336253, lowerbound=1295600.336253, norm of subgrad 36.321493 stepsize= 1.000000 +dualbound = 3619574.965845, lowerbound=1289737.965845, norm of subgrad 1136.218714 dualbound = 3619574.965845, lowerbound=1289737.965845, norm of subgrad 35.939249 stepsize= 1.000000 +dualbound = 3619636.919455, lowerbound=1290965.919455, norm of subgrad 1136.762473 dualbound = 3619636.919455, lowerbound=1290965.919455, norm of subgrad 36.399912 stepsize= 1.000000 +dualbound = 3619726.775463, lowerbound=1288867.775463, norm of subgrad 1135.804462 dualbound = 3619726.775463, lowerbound=1288867.775463, norm of subgrad 35.691119 stepsize= 1.000000 +dualbound = 3619761.303267, lowerbound=1295198.303267, norm of subgrad 1138.626499 dualbound = 3619761.303267, lowerbound=1295198.303267, norm of subgrad 36.145924 stepsize= 1.000000 +dualbound = 3619823.443761, lowerbound=1288194.443761, norm of subgrad 1135.541036 dualbound = 3619823.443761, lowerbound=1288194.443761, norm of subgrad 36.347496 stepsize= 1.000000 +dualbound = 3619923.339546, lowerbound=1293377.339546, norm of subgrad 1137.803735 dualbound = 3619923.339546, lowerbound=1293377.339546, norm of subgrad 36.330370 stepsize= 1.000000 +dualbound = 3619990.878188, lowerbound=1294087.878188, norm of subgrad 1138.115934 dualbound = 3619990.878188, lowerbound=1294087.878188, norm of subgrad 35.882289 stepsize= 1.000000 +dualbound = 3620074.005087, lowerbound=1286312.005087, norm of subgrad 1134.700403 dualbound = 3620074.005087, lowerbound=1286312.005087, norm of subgrad 36.278463 stepsize= 1.000000 +dualbound = 3620098.935334, lowerbound=1288840.935334, norm of subgrad 1135.808494 dualbound = 3620098.935334, lowerbound=1288840.935334, norm of subgrad 35.283569 stepsize= 1.000000 +dualbound = 3620203.051362, lowerbound=1296303.051362, norm of subgrad 1139.065429 dualbound = 3620203.051362, lowerbound=1296303.051362, norm of subgrad 35.652714 stepsize= 1.000000 +dualbound = 3620280.435380, lowerbound=1297149.435380, norm of subgrad 1139.443037 dualbound = 3620280.435380, lowerbound=1297149.435380, norm of subgrad 35.473709 stepsize= 1.000000 +dualbound = 3620346.023906, lowerbound=1290743.023906, norm of subgrad 1136.643314 dualbound = 3620346.023906, lowerbound=1290743.023906, norm of subgrad 35.785312 stepsize= 1.000000 +dualbound = 3620390.388291, lowerbound=1291509.388291, norm of subgrad 1136.968508 dualbound = 3620390.388291, lowerbound=1291509.388291, norm of subgrad 35.105048 stepsize= 1.000000 +dualbound = 3620492.461079, lowerbound=1294184.461079, norm of subgrad 1138.171543 dualbound = 3620492.461079, lowerbound=1294184.461079, norm of subgrad 36.770542 stepsize= 1.000000 +dualbound = 3620524.477460, lowerbound=1293231.477460, norm of subgrad 1137.744909 dualbound = 3620524.477460, lowerbound=1293231.477460, norm of subgrad 35.553008 stepsize= 1.000000 +dualbound = 3620600.715142, lowerbound=1295713.715142, norm of subgrad 1138.834806 dualbound = 3620600.715142, lowerbound=1295713.715142, norm of subgrad 36.155742 stepsize= 1.000000 +dualbound = 3620666.168647, lowerbound=1289115.168647, norm of subgrad 1135.938453 dualbound = 3620666.168647, lowerbound=1289115.168647, norm of subgrad 36.144896 stepsize= 1.000000 +dualbound = 3620732.083620, lowerbound=1289738.083620, norm of subgrad 1136.201603 dualbound = 3620732.083620, lowerbound=1289738.083620, norm of subgrad 35.803840 stepsize= 1.000000 +dualbound = 3620793.880080, lowerbound=1294986.880080, norm of subgrad 1138.545950 dualbound = 3620793.880080, lowerbound=1294986.880080, norm of subgrad 36.902526 stepsize= 1.000000 +dualbound = 3620839.090311, lowerbound=1297838.090311, norm of subgrad 1139.776333 dualbound = 3620839.090311, lowerbound=1297838.090311, norm of subgrad 36.016805 stepsize= 1.000000 +dualbound = 3620934.080184, lowerbound=1287747.080184, norm of subgrad 1135.329503 dualbound = 3620934.080184, lowerbound=1287747.080184, norm of subgrad 36.345424 stepsize= 1.000000 +dualbound = 3620988.653962, lowerbound=1290662.653962, norm of subgrad 1136.617638 dualbound = 3620988.653962, lowerbound=1290662.653962, norm of subgrad 35.938472 stepsize= 1.000000 +dualbound = 3621058.860908, lowerbound=1294184.860908, norm of subgrad 1138.167765 dualbound = 3621058.860908, lowerbound=1294184.860908, norm of subgrad 36.210592 stepsize= 1.000000 +dualbound = 3621127.685003, lowerbound=1292929.685003, norm of subgrad 1137.603483 dualbound = 3621127.685003, lowerbound=1292929.685003, norm of subgrad 35.788603 stepsize= 1.000000 +dualbound = 3621219.444882, lowerbound=1291068.444882, norm of subgrad 1136.770621 dualbound = 3621219.444882, lowerbound=1291068.444882, norm of subgrad 35.647719 stepsize= 1.000000 +dualbound = 3621253.593478, lowerbound=1293565.593478, norm of subgrad 1137.893490 dualbound = 3621253.593478, lowerbound=1293565.593478, norm of subgrad 35.639144 stepsize= 1.000000 +dualbound = 3621327.083106, lowerbound=1288637.083106, norm of subgrad 1135.729318 dualbound = 3621327.083106, lowerbound=1288637.083106, norm of subgrad 36.297240 stepsize= 1.000000 +dualbound = 3621388.858467, lowerbound=1294557.858467, norm of subgrad 1138.331612 dualbound = 3621388.858467, lowerbound=1294557.858467, norm of subgrad 36.093980 stepsize= 1.000000 +dualbound = 3621460.212883, lowerbound=1287710.212883, norm of subgrad 1135.308862 dualbound = 3621460.212883, lowerbound=1287710.212883, norm of subgrad 35.879722 stepsize= 1.000000 +dualbound = 3621539.861389, lowerbound=1294057.861389, norm of subgrad 1138.089567 dualbound = 3621539.861389, lowerbound=1294057.861389, norm of subgrad 35.632127 stepsize= 1.000000 +dualbound = 3621603.232404, lowerbound=1287130.232404, norm of subgrad 1135.041071 dualbound = 3621603.232404, lowerbound=1287130.232404, norm of subgrad 35.374723 stepsize= 1.000000 +dualbound = 3621664.306451, lowerbound=1293046.306451, norm of subgrad 1137.674077 dualbound = 3621664.306451, lowerbound=1293046.306451, norm of subgrad 36.291515 stepsize= 1.000000 +dualbound = 3621726.394215, lowerbound=1291103.394215, norm of subgrad 1136.838332 dualbound = 3621726.394215, lowerbound=1291103.394215, norm of subgrad 36.879368 stepsize= 1.000000 +dualbound = 3621800.744665, lowerbound=1288563.744665, norm of subgrad 1135.703194 dualbound = 3621800.744665, lowerbound=1288563.744665, norm of subgrad 36.501376 stepsize= 1.000000 +dualbound = 3621882.767447, lowerbound=1294912.767447, norm of subgrad 1138.476512 dualbound = 3621882.767447, lowerbound=1294912.767447, norm of subgrad 36.028083 stepsize= 1.000000 +dualbound = 3621937.072658, lowerbound=1290513.072658, norm of subgrad 1136.552714 dualbound = 3621937.072658, lowerbound=1290513.072658, norm of subgrad 35.962553 stepsize= 1.000000 +dualbound = 3621997.404618, lowerbound=1289193.404618, norm of subgrad 1135.982572 dualbound = 3621997.404618, lowerbound=1289193.404618, norm of subgrad 36.377630 stepsize= 1.000000 +dualbound = 3622062.317757, lowerbound=1290371.317757, norm of subgrad 1136.483752 dualbound = 3622062.317757, lowerbound=1290371.317757, norm of subgrad 35.901436 stepsize= 1.000000 +dualbound = 3622161.727742, lowerbound=1288486.727742, norm of subgrad 1135.639788 dualbound = 3622161.727742, lowerbound=1288486.727742, norm of subgrad 35.922277 stepsize= 1.000000 +dualbound = 3622218.695709, lowerbound=1291443.695709, norm of subgrad 1136.943137 dualbound = 3622218.695709, lowerbound=1291443.695709, norm of subgrad 35.397288 stepsize= 1.000000 +dualbound = 3622287.547418, lowerbound=1290656.547418, norm of subgrad 1136.613192 dualbound = 3622287.547418, lowerbound=1290656.547418, norm of subgrad 36.081182 stepsize= 1.000000 +dualbound = 3622341.627783, lowerbound=1296470.627783, norm of subgrad 1139.170149 dualbound = 3622341.627783, lowerbound=1296470.627783, norm of subgrad 35.945519 stepsize= 1.000000 +dualbound = 3622418.252577, lowerbound=1292123.252577, norm of subgrad 1137.256019 dualbound = 3622418.252577, lowerbound=1292123.252577, norm of subgrad 36.119590 stepsize= 1.000000 +dualbound = 3622471.151950, lowerbound=1293316.151950, norm of subgrad 1137.789590 dualbound = 3622471.151950, lowerbound=1293316.151950, norm of subgrad 36.081843 stepsize= 1.000000 +dualbound = 3622559.217595, lowerbound=1287613.217595, norm of subgrad 1135.255133 dualbound = 3622559.217595, lowerbound=1287613.217595, norm of subgrad 35.764027 stepsize= 1.000000 +dualbound = 3622611.378322, lowerbound=1295434.378322, norm of subgrad 1138.734990 dualbound = 3622611.378322, lowerbound=1295434.378322, norm of subgrad 36.539851 stepsize= 1.000000 +dualbound = 3622675.151675, lowerbound=1284764.151675, norm of subgrad 1134.044158 dualbound = 3622675.151675, lowerbound=1284764.151675, norm of subgrad 36.820828 stepsize= 1.000000 +dualbound = 3622741.793902, lowerbound=1293303.793902, norm of subgrad 1137.770097 dualbound = 3622741.793902, lowerbound=1293303.793902, norm of subgrad 35.827953 stepsize= 1.000000 +dualbound = 3622827.164820, lowerbound=1292571.164820, norm of subgrad 1137.440181 dualbound = 3622827.164820, lowerbound=1292571.164820, norm of subgrad 35.838121 stepsize= 1.000000 +dualbound = 3622898.177723, lowerbound=1288765.177723, norm of subgrad 1135.773383 dualbound = 3622898.177723, lowerbound=1288765.177723, norm of subgrad 35.874962 stepsize= 1.000000 +dualbound = 3622964.762290, lowerbound=1294136.762290, norm of subgrad 1138.130819 dualbound = 3622964.762290, lowerbound=1294136.762290, norm of subgrad 35.659284 stepsize= 1.000000 +dualbound = 3623022.768377, lowerbound=1287255.768377, norm of subgrad 1135.085798 dualbound = 3623022.768377, lowerbound=1287255.768377, norm of subgrad 34.957204 stepsize= 1.000000 +dualbound = 3623099.355555, lowerbound=1296682.355555, norm of subgrad 1139.241131 dualbound = 3623099.355555, lowerbound=1296682.355555, norm of subgrad 35.561035 stepsize= 1.000000 +dualbound = 3623165.504219, lowerbound=1291188.504219, norm of subgrad 1136.826066 dualbound = 3623165.504219, lowerbound=1291188.504219, norm of subgrad 35.371580 stepsize= 1.000000 +dualbound = 3623249.276350, lowerbound=1291938.276350, norm of subgrad 1137.137316 dualbound = 3623249.276350, lowerbound=1291938.276350, norm of subgrad 35.025307 stepsize= 1.000000 +dualbound = 3623311.969014, lowerbound=1292679.969014, norm of subgrad 1137.513503 dualbound = 3623311.969014, lowerbound=1292679.969014, norm of subgrad 36.327574 stepsize= 1.000000 +dualbound = 3623368.662484, lowerbound=1295020.662484, norm of subgrad 1138.510282 dualbound = 3623368.662484, lowerbound=1295020.662484, norm of subgrad 35.237671 stepsize= 1.000000 +dualbound = 3623417.621759, lowerbound=1289531.621759, norm of subgrad 1136.123066 dualbound = 3623417.621759, lowerbound=1289531.621759, norm of subgrad 35.957743 stepsize= 1.000000 +dualbound = 3623472.298388, lowerbound=1291365.298388, norm of subgrad 1136.922292 dualbound = 3623472.298388, lowerbound=1291365.298388, norm of subgrad 35.800512 stepsize= 1.000000 +dualbound = 3623562.244179, lowerbound=1299007.244179, norm of subgrad 1140.258850 dualbound = 3623562.244179, lowerbound=1299007.244179, norm of subgrad 35.678366 stepsize= 1.000000 +dualbound = 3623639.218486, lowerbound=1292959.218486, norm of subgrad 1137.641516 dualbound = 3623639.218486, lowerbound=1292959.218486, norm of subgrad 36.687522 stepsize= 1.000000 +dualbound = 3623682.160358, lowerbound=1296585.160358, norm of subgrad 1139.206373 dualbound = 3623682.160358, lowerbound=1296585.160358, norm of subgrad 35.340372 stepsize= 1.000000 +dualbound = 3623763.222705, lowerbound=1289692.222705, norm of subgrad 1136.163379 dualbound = 3623763.222705, lowerbound=1289692.222705, norm of subgrad 35.440970 stepsize= 1.000000 +dualbound = 3623826.003076, lowerbound=1288644.003076, norm of subgrad 1135.721358 dualbound = 3623826.003076, lowerbound=1288644.003076, norm of subgrad 35.801960 stepsize= 1.000000 +dualbound = 3623880.836279, lowerbound=1289146.836279, norm of subgrad 1135.951511 dualbound = 3623880.836279, lowerbound=1289146.836279, norm of subgrad 35.969893 stepsize= 1.000000 +dualbound = 3623940.088715, lowerbound=1297317.088715, norm of subgrad 1139.562674 dualbound = 3623940.088715, lowerbound=1297317.088715, norm of subgrad 36.677683 stepsize= 1.000000 +dualbound = 3624009.987350, lowerbound=1288007.987350, norm of subgrad 1135.439557 dualbound = 3624009.987350, lowerbound=1288007.987350, norm of subgrad 35.845483 stepsize= 1.000000 +dualbound = 3624097.866318, lowerbound=1290355.866318, norm of subgrad 1136.502911 dualbound = 3624097.866318, lowerbound=1290355.866318, norm of subgrad 37.025383 stepsize= 1.000000 +dualbound = 3624149.914877, lowerbound=1291676.914877, norm of subgrad 1137.071200 dualbound = 3624149.914877, lowerbound=1291676.914877, norm of subgrad 36.139294 stepsize= 1.000000 +dualbound = 3624243.608362, lowerbound=1289288.608362, norm of subgrad 1135.997627 dualbound = 3624243.608362, lowerbound=1289288.608362, norm of subgrad 35.995743 stepsize= 1.000000 +dualbound = 3624307.067629, lowerbound=1287328.067629, norm of subgrad 1135.140990 dualbound = 3624307.067629, lowerbound=1287328.067629, norm of subgrad 35.783506 stepsize= 1.000000 +dualbound = 3624368.940277, lowerbound=1294867.940277, norm of subgrad 1138.468243 dualbound = 3624368.940277, lowerbound=1294867.940277, norm of subgrad 36.109177 stepsize= 1.000000 +dualbound = 3624415.627188, lowerbound=1287342.627188, norm of subgrad 1135.165903 dualbound = 3624415.627188, lowerbound=1287342.627188, norm of subgrad 36.134290 stepsize= 1.000000 +dualbound = 3624494.768200, lowerbound=1298029.768200, norm of subgrad 1139.850327 dualbound = 3624494.768200, lowerbound=1298029.768200, norm of subgrad 36.168232 stepsize= 1.000000 +dualbound = 3624580.941271, lowerbound=1285169.941271, norm of subgrad 1134.165306 dualbound = 3624580.941271, lowerbound=1285169.941271, norm of subgrad 35.315338 stepsize= 1.000000 +dualbound = 3624647.071679, lowerbound=1299570.071679, norm of subgrad 1140.493784 dualbound = 3624647.071679, lowerbound=1299570.071679, norm of subgrad 34.958982 stepsize= 1.000000 +dualbound = 3624738.813197, lowerbound=1287578.813197, norm of subgrad 1135.206507 dualbound = 3624738.813197, lowerbound=1287578.813197, norm of subgrad 34.738185 stepsize= 1.000000 +dualbound = 3624776.065769, lowerbound=1303179.065769, norm of subgrad 1142.098098 dualbound = 3624776.065769, lowerbound=1303179.065769, norm of subgrad 35.302303 stepsize= 1.000000 +dualbound = 3624818.934385, lowerbound=1288943.934385, norm of subgrad 1135.868361 dualbound = 3624818.934385, lowerbound=1288943.934385, norm of subgrad 35.998175 stepsize= 1.000000 +dualbound = 3624897.833360, lowerbound=1290946.833360, norm of subgrad 1136.714051 dualbound = 3624897.833360, lowerbound=1290946.833360, norm of subgrad 35.368050 stepsize= 1.000000 +dualbound = 3624999.546948, lowerbound=1287093.546948, norm of subgrad 1135.028434 dualbound = 3624999.546948, lowerbound=1287093.546948, norm of subgrad 36.023792 stepsize= 1.000000 +dualbound = 3625033.469391, lowerbound=1289992.469391, norm of subgrad 1136.309143 dualbound = 3625033.469391, lowerbound=1289992.469391, norm of subgrad 35.212532 stepsize= 1.000000 +dualbound = 3625118.224433, lowerbound=1291889.224433, norm of subgrad 1137.137733 dualbound = 3625118.224433, lowerbound=1291889.224433, norm of subgrad 35.745700 stepsize= 1.000000 +dualbound = 3625177.286834, lowerbound=1290398.286834, norm of subgrad 1136.487258 dualbound = 3625177.286834, lowerbound=1290398.286834, norm of subgrad 35.553655 stepsize= 1.000000 +dualbound = 3625228.173954, lowerbound=1294364.173955, norm of subgrad 1138.268498 dualbound = 3625228.173954, lowerbound=1294364.173955, norm of subgrad 36.631777 stepsize= 1.000000 +dualbound = 3625293.169834, lowerbound=1294698.169834, norm of subgrad 1138.406856 dualbound = 3625293.169834, lowerbound=1294698.169834, norm of subgrad 36.564954 stepsize= 1.000000 +dualbound = 3625344.906112, lowerbound=1287119.906112, norm of subgrad 1135.084096 dualbound = 3625344.906112, lowerbound=1287119.906112, norm of subgrad 36.711528 stepsize= 1.000000 +dualbound = 3625434.182540, lowerbound=1290850.182540, norm of subgrad 1136.707167 dualbound = 3625434.182540, lowerbound=1290850.182540, norm of subgrad 36.637091 stepsize= 1.000000 +dualbound = 3625485.676649, lowerbound=1292650.676649, norm of subgrad 1137.488759 dualbound = 3625485.676649, lowerbound=1292650.676649, norm of subgrad 35.797962 stepsize= 1.000000 +dualbound = 3625579.733806, lowerbound=1294964.733806, norm of subgrad 1138.508557 dualbound = 3625579.733806, lowerbound=1294964.733806, norm of subgrad 36.483656 stepsize= 1.000000 +dualbound = 3625608.453470, lowerbound=1290227.453470, norm of subgrad 1136.417816 dualbound = 3625608.453470, lowerbound=1290227.453470, norm of subgrad 35.308918 stepsize= 1.000000 +dualbound = 3625726.456471, lowerbound=1293730.456471, norm of subgrad 1137.938687 dualbound = 3625726.456471, lowerbound=1293730.456471, norm of subgrad 35.944443 stepsize= 1.000000 +dualbound = 3625760.173022, lowerbound=1290938.173022, norm of subgrad 1136.761265 dualbound = 3625760.173022, lowerbound=1290938.173022, norm of subgrad 36.355420 stepsize= 1.000000 +dualbound = 3625809.185513, lowerbound=1291035.185513, norm of subgrad 1136.829884 dualbound = 3625809.185513, lowerbound=1291035.185513, norm of subgrad 37.363251 stepsize= 1.000000 +dualbound = 3625879.090835, lowerbound=1293673.090835, norm of subgrad 1137.952148 dualbound = 3625879.090835, lowerbound=1293673.090835, norm of subgrad 36.495278 stepsize= 1.000000 +dualbound = 3625991.681232, lowerbound=1293907.681232, norm of subgrad 1138.020071 dualbound = 3625991.681232, lowerbound=1293907.681232, norm of subgrad 35.980417 stepsize= 1.000000 +dualbound = 3626027.750950, lowerbound=1295035.750950, norm of subgrad 1138.530962 dualbound = 3626027.750950, lowerbound=1295035.750950, norm of subgrad 35.398725 stepsize= 1.000000 +dualbound = 3626150.726845, lowerbound=1290218.726845, norm of subgrad 1136.395498 dualbound = 3626150.726845, lowerbound=1290218.726845, norm of subgrad 36.041308 stepsize= 1.000000 +dualbound = 3626170.016879, lowerbound=1291360.016879, norm of subgrad 1136.935802 dualbound = 3626170.016879, lowerbound=1291360.016879, norm of subgrad 35.809078 stepsize= 1.000000 +dualbound = 3626226.091446, lowerbound=1285292.091446, norm of subgrad 1134.285719 dualbound = 3626226.091446, lowerbound=1285292.091446, norm of subgrad 36.987492 stepsize= 1.000000 +dualbound = 3626291.782692, lowerbound=1293774.782692, norm of subgrad 1137.992875 dualbound = 3626291.782692, lowerbound=1293774.782692, norm of subgrad 36.313789 stepsize= 1.000000 +dualbound = 3626397.054483, lowerbound=1298335.054483, norm of subgrad 1139.966251 dualbound = 3626397.054483, lowerbound=1298335.054483, norm of subgrad 35.962088 stepsize= 1.000000 +dualbound = 3626463.286235, lowerbound=1289349.286235, norm of subgrad 1136.020372 dualbound = 3626463.286235, lowerbound=1289349.286235, norm of subgrad 35.485656 stepsize= 1.000000 +dualbound = 3626519.630548, lowerbound=1297121.630548, norm of subgrad 1139.443562 dualbound = 3626519.630548, lowerbound=1297121.630548, norm of subgrad 35.585732 stepsize= 1.000000 +dualbound = 3626599.718120, lowerbound=1288011.718120, norm of subgrad 1135.422705 dualbound = 3626599.718120, lowerbound=1288011.718120, norm of subgrad 35.398977 stepsize= 1.000000 +dualbound = 3626656.940075, lowerbound=1295338.940075, norm of subgrad 1138.671129 dualbound = 3626656.940075, lowerbound=1295338.940075, norm of subgrad 35.919660 stepsize= 1.000000 +dualbound = 3626723.467532, lowerbound=1292465.467532, norm of subgrad 1137.415697 dualbound = 3626723.467532, lowerbound=1292465.467532, norm of subgrad 36.270201 stepsize= 1.000000 +dualbound = 3626785.991830, lowerbound=1293586.991830, norm of subgrad 1137.883119 dualbound = 3626785.991830, lowerbound=1293586.991830, norm of subgrad 35.405145 stepsize= 1.000000 +dualbound = 3626867.138724, lowerbound=1287266.138724, norm of subgrad 1135.096092 dualbound = 3626867.138724, lowerbound=1287266.138724, norm of subgrad 35.470366 stepsize= 1.000000 +dualbound = 3626937.064182, lowerbound=1293976.064182, norm of subgrad 1138.063295 dualbound = 3626937.064182, lowerbound=1293976.064182, norm of subgrad 35.803987 stepsize= 1.000000 +dualbound = 3627009.351975, lowerbound=1291086.351975, norm of subgrad 1136.782456 dualbound = 3627009.351975, lowerbound=1291086.351975, norm of subgrad 35.500532 stepsize= 1.000000 +dualbound = 3627059.162747, lowerbound=1292916.162747, norm of subgrad 1137.593145 dualbound = 3627059.162747, lowerbound=1292916.162747, norm of subgrad 35.380938 stepsize= 1.000000 +dualbound = 3627118.690527, lowerbound=1295437.690527, norm of subgrad 1138.719759 dualbound = 3627118.690527, lowerbound=1295437.690527, norm of subgrad 36.118247 stepsize= 1.000000 +dualbound = 3627187.514084, lowerbound=1286789.514084, norm of subgrad 1134.894495 dualbound = 3627187.514084, lowerbound=1286789.514084, norm of subgrad 35.564358 stepsize= 1.000000 +dualbound = 3627257.890876, lowerbound=1296230.890876, norm of subgrad 1139.085111 dualbound = 3627257.890876, lowerbound=1296230.890876, norm of subgrad 36.801859 stepsize= 1.000000 +dualbound = 3627312.976573, lowerbound=1292020.976573, norm of subgrad 1137.225561 dualbound = 3627312.976573, lowerbound=1292020.976573, norm of subgrad 36.277895 stepsize= 1.000000 +dualbound = 3627402.684909, lowerbound=1292320.684909, norm of subgrad 1137.337103 dualbound = 3627402.684909, lowerbound=1292320.684909, norm of subgrad 36.120747 stepsize= 1.000000 +dualbound = 3627451.499731, lowerbound=1290534.499731, norm of subgrad 1136.595134 dualbound = 3627451.499731, lowerbound=1290534.499731, norm of subgrad 36.916322 stepsize= 1.000000 +dualbound = 3627515.366481, lowerbound=1292209.366481, norm of subgrad 1137.288163 dualbound = 3627515.366481, lowerbound=1292209.366481, norm of subgrad 35.761246 stepsize= 1.000000 +dualbound = 3627583.262475, lowerbound=1293266.262475, norm of subgrad 1137.756240 dualbound = 3627583.262475, lowerbound=1293266.262475, norm of subgrad 35.929041 stepsize= 1.000000 +dualbound = 3627672.870918, lowerbound=1295058.870918, norm of subgrad 1138.570099 dualbound = 3627672.870918, lowerbound=1295058.870918, norm of subgrad 37.048731 stepsize= 1.000000 +dualbound = 3627692.774967, lowerbound=1294898.774967, norm of subgrad 1138.506379 dualbound = 3627692.774967, lowerbound=1294898.774967, norm of subgrad 36.302948 stepsize= 1.000000 +dualbound = 3627775.481410, lowerbound=1294098.481410, norm of subgrad 1138.135089 dualbound = 3627775.481410, lowerbound=1294098.481410, norm of subgrad 36.547318 stepsize= 1.000000 +dualbound = 3627859.730746, lowerbound=1292361.730746, norm of subgrad 1137.374050 dualbound = 3627859.730746, lowerbound=1292361.730746, norm of subgrad 36.636721 stepsize= 1.000000 +dualbound = 3627904.353224, lowerbound=1293136.353224, norm of subgrad 1137.715849 dualbound = 3627904.353224, lowerbound=1293136.353224, norm of subgrad 36.133398 stepsize= 1.000000 +dualbound = 3627996.639021, lowerbound=1291833.639021, norm of subgrad 1137.134838 dualbound = 3627996.639021, lowerbound=1291833.639021, norm of subgrad 36.527877 stepsize= 1.000000 +dualbound = 3628063.827775, lowerbound=1296595.827775, norm of subgrad 1139.212811 dualbound = 3628063.827775, lowerbound=1296595.827775, norm of subgrad 35.737778 stepsize= 1.000000 +dualbound = 3628105.537230, lowerbound=1292093.537230, norm of subgrad 1137.256584 dualbound = 3628105.537230, lowerbound=1292093.537230, norm of subgrad 36.065350 stepsize= 1.000000 +dualbound = 3628186.467808, lowerbound=1289116.467808, norm of subgrad 1135.914375 dualbound = 3628186.467808, lowerbound=1289116.467808, norm of subgrad 35.579918 stepsize= 1.000000 +dualbound = 3628260.944674, lowerbound=1288529.944674, norm of subgrad 1135.679948 dualbound = 3628260.944674, lowerbound=1288529.944674, norm of subgrad 36.241921 stepsize= 1.000000 +dualbound = 3628342.591647, lowerbound=1294166.591647, norm of subgrad 1138.126351 dualbound = 3628342.591647, lowerbound=1294166.591647, norm of subgrad 35.307888 stepsize= 1.000000 +dualbound = 3628409.886783, lowerbound=1284311.886783, norm of subgrad 1133.786967 dualbound = 3628409.886783, lowerbound=1284311.886783, norm of subgrad 35.047042 stepsize= 1.000000 +dualbound = 3628490.166468, lowerbound=1293944.166468, norm of subgrad 1138.058507 dualbound = 3628490.166468, lowerbound=1293944.166468, norm of subgrad 36.239201 stepsize= 1.000000 +dualbound = 3628518.902110, lowerbound=1292452.902110, norm of subgrad 1137.391710 dualbound = 3628518.902110, lowerbound=1292452.902110, norm of subgrad 35.153032 stepsize= 1.000000 +dualbound = 3628621.613142, lowerbound=1295312.613142, norm of subgrad 1138.624878 dualbound = 3628621.613142, lowerbound=1295312.613142, norm of subgrad 35.450120 stepsize= 1.000000 +dualbound = 3628687.246563, lowerbound=1291200.246563, norm of subgrad 1136.863777 dualbound = 3628687.246563, lowerbound=1291200.246563, norm of subgrad 36.395514 stepsize= 1.000000 +dualbound = 3628712.025550, lowerbound=1297650.025550, norm of subgrad 1139.711378 dualbound = 3628712.025550, lowerbound=1297650.025550, norm of subgrad 36.287449 stepsize= 1.000000 +dualbound = 3628795.929553, lowerbound=1289404.929553, norm of subgrad 1136.063348 dualbound = 3628795.929553, lowerbound=1289404.929553, norm of subgrad 36.316718 stepsize= 1.000000 +dualbound = 3628851.325639, lowerbound=1293833.325639, norm of subgrad 1137.995310 dualbound = 3628851.325639, lowerbound=1293833.325639, norm of subgrad 35.431569 stepsize= 1.000000 +dualbound = 3628946.875365, lowerbound=1288114.875365, norm of subgrad 1135.451838 dualbound = 3628946.875365, lowerbound=1288114.875365, norm of subgrad 35.093443 stepsize= 1.000000 +dualbound = 3629012.545271, lowerbound=1298227.545271, norm of subgrad 1139.948484 dualbound = 3629012.545271, lowerbound=1298227.545271, norm of subgrad 36.341022 stepsize= 1.000000 +dualbound = 3629030.401776, lowerbound=1290504.401776, norm of subgrad 1136.580574 dualbound = 3629030.401776, lowerbound=1290504.401776, norm of subgrad 36.453484 stepsize= 1.000000 +dualbound = 3629115.725050, lowerbound=1290513.725050, norm of subgrad 1136.542443 dualbound = 3629115.725050, lowerbound=1290513.725050, norm of subgrad 36.059995 stepsize= 1.000000 +dualbound = 3629169.768635, lowerbound=1291958.768635, norm of subgrad 1137.197331 dualbound = 3629169.768635, lowerbound=1291958.768635, norm of subgrad 36.235943 stepsize= 1.000000 +dualbound = 3629265.459653, lowerbound=1291631.459653, norm of subgrad 1137.062645 dualbound = 3629265.459653, lowerbound=1291631.459653, norm of subgrad 37.090309 stepsize= 1.000000 +dualbound = 3629332.423018, lowerbound=1293439.423018, norm of subgrad 1137.848594 dualbound = 3629332.423018, lowerbound=1293439.423018, norm of subgrad 36.427508 stepsize= 1.000000 +dualbound = 3629391.496489, lowerbound=1291543.496489, norm of subgrad 1136.992742 dualbound = 3629391.496489, lowerbound=1291543.496489, norm of subgrad 35.610019 stepsize= 1.000000 +dualbound = 3629463.190333, lowerbound=1291060.190333, norm of subgrad 1136.788542 dualbound = 3629463.190333, lowerbound=1291060.190333, norm of subgrad 36.051267 stepsize= 1.000000 +dualbound = 3629521.109377, lowerbound=1293781.109377, norm of subgrad 1137.999169 dualbound = 3629521.109377, lowerbound=1293781.109377, norm of subgrad 36.316925 stepsize= 1.000000 +dualbound = 3629577.379684, lowerbound=1287277.379684, norm of subgrad 1135.122187 dualbound = 3629577.379684, lowerbound=1287277.379684, norm of subgrad 35.794836 stepsize= 1.000000 +dualbound = 3629663.626499, lowerbound=1297078.626499, norm of subgrad 1139.427763 dualbound = 3629663.626499, lowerbound=1297078.626499, norm of subgrad 36.100510 stepsize= 1.000000 +dualbound = 3629722.325182, lowerbound=1292162.325182, norm of subgrad 1137.288145 dualbound = 3629722.325182, lowerbound=1292162.325182, norm of subgrad 36.341418 stepsize= 1.000000 +dualbound = 3629786.903585, lowerbound=1290605.903585, norm of subgrad 1136.600151 dualbound = 3629786.903585, lowerbound=1290605.903585, norm of subgrad 36.312235 stepsize= 1.000000 +dualbound = 3629846.769511, lowerbound=1290750.769511, norm of subgrad 1136.659918 dualbound = 3629846.769511, lowerbound=1290750.769511, norm of subgrad 36.122928 stepsize= 1.000000 +dualbound = 3629925.245184, lowerbound=1289709.245184, norm of subgrad 1136.169990 dualbound = 3629925.245184, lowerbound=1289709.245184, norm of subgrad 35.376202 stepsize= 1.000000 +dualbound = 3630009.708034, lowerbound=1289380.708034, norm of subgrad 1136.025399 dualbound = 3630009.708034, lowerbound=1289380.708034, norm of subgrad 35.460723 stepsize= 1.000000 +dualbound = 3630072.327862, lowerbound=1293682.327862, norm of subgrad 1137.944343 dualbound = 3630072.327862, lowerbound=1293682.327862, norm of subgrad 36.022491 stepsize= 1.000000 +dualbound = 3630138.655861, lowerbound=1292902.655861, norm of subgrad 1137.585450 dualbound = 3630138.655861, lowerbound=1292902.655861, norm of subgrad 35.557390 stepsize= 1.000000 +dualbound = 3630201.348555, lowerbound=1293042.348555, norm of subgrad 1137.667943 dualbound = 3630201.348555, lowerbound=1293042.348555, norm of subgrad 36.175858 stepsize= 1.000000 +dualbound = 3630277.654728, lowerbound=1290914.654728, norm of subgrad 1136.713532 dualbound = 3630277.654728, lowerbound=1290914.654728, norm of subgrad 35.767390 stepsize= 1.000000 +dualbound = 3630356.435396, lowerbound=1294703.435396, norm of subgrad 1138.392039 dualbound = 3630356.435396, lowerbound=1294703.435396, norm of subgrad 36.218513 stepsize= 1.000000 +dualbound = 3630394.237902, lowerbound=1293679.237902, norm of subgrad 1137.939910 dualbound = 3630394.237902, lowerbound=1293679.237902, norm of subgrad 35.578118 stepsize= 1.000000 +dualbound = 3630504.198168, lowerbound=1293625.198168, norm of subgrad 1137.903862 dualbound = 3630504.198168, lowerbound=1293625.198168, norm of subgrad 36.193373 stepsize= 1.000000 +dualbound = 3630557.980030, lowerbound=1288605.980030, norm of subgrad 1135.705939 dualbound = 3630557.980030, lowerbound=1288605.980030, norm of subgrad 35.718089 stepsize= 1.000000 +dualbound = 3630605.357496, lowerbound=1294928.357496, norm of subgrad 1138.472379 dualbound = 3630605.357496, lowerbound=1294928.357496, norm of subgrad 35.190588 stepsize= 1.000000 +dualbound = 3630688.545638, lowerbound=1287548.545638, norm of subgrad 1135.249993 dualbound = 3630688.545638, lowerbound=1287548.545638, norm of subgrad 36.430593 stepsize= 1.000000 +dualbound = 3630747.496423, lowerbound=1297905.496423, norm of subgrad 1139.789672 dualbound = 3630747.496423, lowerbound=1297905.496423, norm of subgrad 35.692447 stepsize= 1.000000 +dualbound = 3630828.345595, lowerbound=1288479.345595, norm of subgrad 1135.655470 dualbound = 3630828.345595, lowerbound=1288479.345595, norm of subgrad 36.260849 stepsize= 1.000000 +dualbound = 3630879.305750, lowerbound=1294712.305750, norm of subgrad 1138.371778 dualbound = 3630879.305750, lowerbound=1294712.305750, norm of subgrad 35.056528 stepsize= 1.000000 +dualbound = 3630955.144610, lowerbound=1290719.144610, norm of subgrad 1136.635889 dualbound = 3630955.144610, lowerbound=1290719.144610, norm of subgrad 36.025531 stepsize= 1.000000 +dualbound = 3631018.616958, lowerbound=1290346.616958, norm of subgrad 1136.472444 dualbound = 3631018.616958, lowerbound=1290346.616958, norm of subgrad 35.867427 stepsize= 1.000000 +dualbound = 3631090.821572, lowerbound=1294273.821572, norm of subgrad 1138.199816 dualbound = 3631090.821572, lowerbound=1294273.821572, norm of subgrad 36.016727 stepsize= 1.000000 +dualbound = 3631157.708224, lowerbound=1295543.708224, norm of subgrad 1138.757089 dualbound = 3631157.708224, lowerbound=1295543.708224, norm of subgrad 35.928911 stepsize= 1.000000 +dualbound = 3631224.708798, lowerbound=1287308.708798, norm of subgrad 1135.151403 dualbound = 3631224.708798, lowerbound=1287308.708798, norm of subgrad 36.428019 stepsize= 1.000000 +dualbound = 3631262.249217, lowerbound=1296950.249217, norm of subgrad 1139.379765 dualbound = 3631262.249217, lowerbound=1296950.249217, norm of subgrad 35.686698 stepsize= 1.000000 +dualbound = 3631354.553798, lowerbound=1294512.553798, norm of subgrad 1138.303366 dualbound = 3631354.553798, lowerbound=1294512.553798, norm of subgrad 36.253339 stepsize= 1.000000 +dualbound = 3631416.813472, lowerbound=1291977.813472, norm of subgrad 1137.156899 dualbound = 3631416.813472, lowerbound=1291977.813472, norm of subgrad 34.788787 stepsize= 1.000000 +dualbound = 3631503.869049, lowerbound=1295267.869049, norm of subgrad 1138.616208 dualbound = 3631503.869049, lowerbound=1295267.869049, norm of subgrad 35.581675 stepsize= 1.000000 +dualbound = 3631559.804427, lowerbound=1292012.804427, norm of subgrad 1137.210976 dualbound = 3631559.804427, lowerbound=1292012.804427, norm of subgrad 35.943503 stepsize= 1.000000 +dualbound = 3631624.442245, lowerbound=1295061.442245, norm of subgrad 1138.563763 dualbound = 3631624.442245, lowerbound=1295061.442245, norm of subgrad 36.477909 stepsize= 1.000000 +dualbound = 3631656.533489, lowerbound=1293848.533489, norm of subgrad 1138.023081 dualbound = 3631656.533489, lowerbound=1293848.533489, norm of subgrad 35.778363 stepsize= 1.000000 +dualbound = 3631762.213317, lowerbound=1290655.213317, norm of subgrad 1136.602927 dualbound = 3631762.213317, lowerbound=1290655.213317, norm of subgrad 36.286083 stepsize= 1.000000 +dualbound = 3631832.643607, lowerbound=1290348.643607, norm of subgrad 1136.464537 dualbound = 3631832.643607, lowerbound=1290348.643607, norm of subgrad 35.685155 stepsize= 1.000000 +dualbound = 3631897.221535, lowerbound=1293371.221535, norm of subgrad 1137.802365 dualbound = 3631897.221535, lowerbound=1293371.221535, norm of subgrad 35.882836 stepsize= 1.000000 +dualbound = 3631946.237709, lowerbound=1288634.237709, norm of subgrad 1135.728946 dualbound = 3631946.237709, lowerbound=1288634.237709, norm of subgrad 35.986333 stepsize= 1.000000 +dualbound = 3632036.072407, lowerbound=1295202.072407, norm of subgrad 1138.578092 dualbound = 3632036.072407, lowerbound=1295202.072407, norm of subgrad 35.324704 stepsize= 1.000000 +dualbound = 3632108.636916, lowerbound=1291735.636916, norm of subgrad 1137.069759 dualbound = 3632108.636916, lowerbound=1291735.636916, norm of subgrad 35.560716 stepsize= 1.000000 +dualbound = 3632166.322410, lowerbound=1294919.322410, norm of subgrad 1138.474559 dualbound = 3632166.322410, lowerbound=1294919.322410, norm of subgrad 35.534286 stepsize= 1.000000 +dualbound = 3632248.654733, lowerbound=1290041.654733, norm of subgrad 1136.349266 dualbound = 3632248.654733, lowerbound=1290041.654733, norm of subgrad 36.473721 stepsize= 1.000000 +dualbound = 3632284.561939, lowerbound=1297562.561939, norm of subgrad 1139.673007 dualbound = 3632284.561939, lowerbound=1297562.561939, norm of subgrad 36.440461 stepsize= 1.000000 +dualbound = 3632360.695390, lowerbound=1290006.695390, norm of subgrad 1136.309243 dualbound = 3632360.695390, lowerbound=1290006.695390, norm of subgrad 35.610861 stepsize= 1.000000 +dualbound = 3632432.012843, lowerbound=1296026.012843, norm of subgrad 1138.992104 dualbound = 3632432.012843, lowerbound=1296026.012843, norm of subgrad 36.719442 stepsize= 1.000000 +dualbound = 3632504.101501, lowerbound=1289403.101501, norm of subgrad 1136.081028 dualbound = 3632504.101501, lowerbound=1289403.101501, norm of subgrad 36.729942 stepsize= 1.000000 +dualbound = 3632542.022537, lowerbound=1296935.022537, norm of subgrad 1139.386687 dualbound = 3632542.022537, lowerbound=1296935.022537, norm of subgrad 36.123691 stepsize= 1.000000 +dualbound = 3632630.870311, lowerbound=1294923.870311, norm of subgrad 1138.458111 dualbound = 3632630.870311, lowerbound=1294923.870311, norm of subgrad 35.381461 stepsize= 1.000000 +dualbound = 3632711.266303, lowerbound=1291672.266303, norm of subgrad 1137.035737 dualbound = 3632711.266303, lowerbound=1291672.266303, norm of subgrad 35.473878 stepsize= 1.000000 +dualbound = 3632798.496260, lowerbound=1295286.496261, norm of subgrad 1138.616483 dualbound = 3632798.496260, lowerbound=1295286.496261, norm of subgrad 35.330298 stepsize= 1.000000 +dualbound = 3632873.019030, lowerbound=1294590.019030, norm of subgrad 1138.293468 dualbound = 3632873.019030, lowerbound=1294590.019030, norm of subgrad 34.590790 stepsize= 1.000000 +dualbound = 3632929.363731, lowerbound=1289211.363731, norm of subgrad 1135.973751 dualbound = 3632929.363731, lowerbound=1289211.363731, norm of subgrad 35.795875 stepsize= 1.000000 +dualbound = 3632962.428251, lowerbound=1291859.428251, norm of subgrad 1137.146177 dualbound = 3632962.428251, lowerbound=1291859.428251, norm of subgrad 35.708046 stepsize= 1.000000 +dualbound = 3633039.143445, lowerbound=1296923.143445, norm of subgrad 1139.370064 dualbound = 3633039.143445, lowerbound=1296923.143445, norm of subgrad 36.300347 stepsize= 1.000000 +dualbound = 3633098.749917, lowerbound=1293662.749917, norm of subgrad 1137.932226 dualbound = 3633098.749917, lowerbound=1293662.749917, norm of subgrad 35.869297 stepsize= 1.000000 +dualbound = 3633159.107430, lowerbound=1290260.107430, norm of subgrad 1136.446702 dualbound = 3633159.107430, lowerbound=1290260.107430, norm of subgrad 36.212671 stepsize= 1.000000 +dualbound = 3633221.329622, lowerbound=1296795.329622, norm of subgrad 1139.329772 dualbound = 3633221.329622, lowerbound=1296795.329622, norm of subgrad 36.595385 stepsize= 1.000000 +dualbound = 3633278.577490, lowerbound=1297982.577490, norm of subgrad 1139.820415 dualbound = 3633278.577490, lowerbound=1297982.577490, norm of subgrad 35.570323 stepsize= 1.000000 +dualbound = 3633374.522591, lowerbound=1291709.522591, norm of subgrad 1137.054758 dualbound = 3633374.522591, lowerbound=1291709.522591, norm of subgrad 35.776320 stepsize= 1.000000 +dualbound = 3633424.522397, lowerbound=1291864.522397, norm of subgrad 1137.146219 dualbound = 3633424.522397, lowerbound=1291864.522397, norm of subgrad 35.874780 stepsize= 1.000000 +dualbound = 3633491.644886, lowerbound=1293102.644886, norm of subgrad 1137.661920 dualbound = 3633491.644886, lowerbound=1293102.644886, norm of subgrad 35.201172 stepsize= 1.000000 +dualbound = 3633575.537523, lowerbound=1288576.537523, norm of subgrad 1135.652912 dualbound = 3633575.537523, lowerbound=1288576.537523, norm of subgrad 34.855310 stepsize= 1.000000 +dualbound = 3633647.554067, lowerbound=1289692.554067, norm of subgrad 1136.184208 dualbound = 3633647.554067, lowerbound=1289692.554067, norm of subgrad 35.972441 stepsize= 1.000000 +dualbound = 3633675.675580, lowerbound=1293228.675580, norm of subgrad 1137.759059 dualbound = 3633675.675580, lowerbound=1293228.675580, norm of subgrad 35.987797 stepsize= 1.000000 +dualbound = 3633759.469288, lowerbound=1292202.469288, norm of subgrad 1137.307553 dualbound = 3633759.469288, lowerbound=1292202.469288, norm of subgrad 36.739539 stepsize= 1.000000 +dualbound = 3633821.371939, lowerbound=1291940.371939, norm of subgrad 1137.162861 dualbound = 3633821.371939, lowerbound=1291940.371939, norm of subgrad 35.509191 stepsize= 1.000000 +dualbound = 3633906.366335, lowerbound=1296123.366335, norm of subgrad 1138.986552 dualbound = 3633906.366335, lowerbound=1296123.366335, norm of subgrad 35.383533 stepsize= 1.000000 +dualbound = 3633969.537782, lowerbound=1292650.537782, norm of subgrad 1137.505401 dualbound = 3633969.537782, lowerbound=1292650.537782, norm of subgrad 36.485222 stepsize= 1.000000 +dualbound = 3634021.674042, lowerbound=1294167.674042, norm of subgrad 1138.162850 dualbound = 3634021.674042, lowerbound=1294167.674042, norm of subgrad 36.043533 stepsize= 1.000000 +dualbound = 3634086.051455, lowerbound=1294504.051455, norm of subgrad 1138.306660 dualbound = 3634086.051455, lowerbound=1294504.051455, norm of subgrad 36.088466 stepsize= 1.000000 +dualbound = 3634167.277387, lowerbound=1290535.277387, norm of subgrad 1136.566882 dualbound = 3634167.277387, lowerbound=1290535.277387, norm of subgrad 36.472263 stepsize= 1.000000 +dualbound = 3634228.903672, lowerbound=1297136.903672, norm of subgrad 1139.455529 dualbound = 3634228.903672, lowerbound=1297136.903672, norm of subgrad 35.827731 stepsize= 1.000000 +dualbound = 3634311.716230, lowerbound=1292162.716230, norm of subgrad 1137.272490 dualbound = 3634311.716230, lowerbound=1292162.716230, norm of subgrad 36.177515 stepsize= 1.000000 +dualbound = 3634376.333717, lowerbound=1295088.333717, norm of subgrad 1138.562398 dualbound = 3634376.333717, lowerbound=1295088.333717, norm of subgrad 36.064075 stepsize= 1.000000 +dualbound = 3634427.667060, lowerbound=1285865.667060, norm of subgrad 1134.517813 dualbound = 3634427.667060, lowerbound=1285865.667060, norm of subgrad 36.281308 stepsize= 1.000000 +dualbound = 3634477.543597, lowerbound=1299045.543597, norm of subgrad 1140.307653 dualbound = 3634477.543597, lowerbound=1299045.543597, norm of subgrad 36.136914 stepsize= 1.000000 +dualbound = 3634566.800158, lowerbound=1288568.800158, norm of subgrad 1135.667557 dualbound = 3634566.800158, lowerbound=1288568.800158, norm of subgrad 35.514174 stepsize= 1.000000 +dualbound = 3634664.728109, lowerbound=1292448.728109, norm of subgrad 1137.378885 dualbound = 3634664.728109, lowerbound=1292448.728109, norm of subgrad 35.776081 stepsize= 1.000000 +dualbound = 3634716.054584, lowerbound=1292173.054584, norm of subgrad 1137.266923 dualbound = 3634716.054584, lowerbound=1292173.054584, norm of subgrad 35.416472 stepsize= 1.000000 +dualbound = 3634777.170685, lowerbound=1291027.170685, norm of subgrad 1136.770940 dualbound = 3634777.170685, lowerbound=1291027.170685, norm of subgrad 35.806649 stepsize= 1.000000 +dualbound = 3634851.982863, lowerbound=1294002.982863, norm of subgrad 1138.068092 dualbound = 3634851.982863, lowerbound=1294002.982863, norm of subgrad 35.648453 stepsize= 1.000000 +dualbound = 3634911.822634, lowerbound=1293675.822634, norm of subgrad 1137.922591 dualbound = 3634911.822634, lowerbound=1293675.822634, norm of subgrad 35.381348 stepsize= 1.000000 +dualbound = 3634961.214941, lowerbound=1298267.214941, norm of subgrad 1139.947023 dualbound = 3634961.214941, lowerbound=1298267.214941, norm of subgrad 35.516085 stepsize= 1.000000 +dualbound = 3635039.537375, lowerbound=1293796.537375, norm of subgrad 1137.972116 dualbound = 3635039.537375, lowerbound=1293796.537375, norm of subgrad 35.529177 stepsize= 1.000000 +dualbound = 3635108.134927, lowerbound=1289745.134927, norm of subgrad 1136.214388 dualbound = 3635108.134927, lowerbound=1289745.134927, norm of subgrad 36.146889 stepsize= 1.000000 +dualbound = 3635167.342270, lowerbound=1297842.342270, norm of subgrad 1139.754071 dualbound = 3635167.342270, lowerbound=1297842.342270, norm of subgrad 35.443015 stepsize= 1.000000 +dualbound = 3635244.845089, lowerbound=1284456.845089, norm of subgrad 1133.872499 dualbound = 3635244.845089, lowerbound=1284456.845089, norm of subgrad 35.881790 stepsize= 1.000000 +dualbound = 3635297.511884, lowerbound=1295658.511884, norm of subgrad 1138.799593 dualbound = 3635297.511884, lowerbound=1295658.511884, norm of subgrad 35.477694 stepsize= 1.000000 +dualbound = 3635377.007139, lowerbound=1294380.007139, norm of subgrad 1138.231965 dualbound = 3635377.007139, lowerbound=1294380.007139, norm of subgrad 35.658032 stepsize= 1.000000 +dualbound = 3635436.494574, lowerbound=1298558.494574, norm of subgrad 1140.088371 dualbound = 3635436.494574, lowerbound=1298558.494574, norm of subgrad 36.089991 stepsize= 1.000000 +dualbound = 3635497.747421, lowerbound=1294635.747421, norm of subgrad 1138.358796 dualbound = 3635497.747421, lowerbound=1294635.747421, norm of subgrad 35.864367 stepsize= 1.000000 +dualbound = 3635541.300450, lowerbound=1298547.300450, norm of subgrad 1140.084339 dualbound = 3635541.300450, lowerbound=1298547.300450, norm of subgrad 35.896421 stepsize= 1.000000 +dualbound = 3635643.774025, lowerbound=1291330.774025, norm of subgrad 1136.898313 dualbound = 3635643.774025, lowerbound=1291330.774025, norm of subgrad 36.186649 stepsize= 1.000000 +dualbound = 3635686.156560, lowerbound=1297985.156560, norm of subgrad 1139.832074 dualbound = 3635686.156560, lowerbound=1297985.156560, norm of subgrad 35.698495 stepsize= 1.000000 +dualbound = 3635769.624807, lowerbound=1292793.624807, norm of subgrad 1137.550274 dualbound = 3635769.624807, lowerbound=1292793.624807, norm of subgrad 36.200390 stepsize= 1.000000 +dualbound = 3635805.506960, lowerbound=1295749.506960, norm of subgrad 1138.855349 dualbound = 3635805.506960, lowerbound=1295749.506960, norm of subgrad 35.747478 stepsize= 1.000000 +dualbound = 3635901.070020, lowerbound=1286701.070020, norm of subgrad 1134.885928 dualbound = 3635901.070020, lowerbound=1286701.070020, norm of subgrad 36.885811 stepsize= 1.000000 +dualbound = 3635952.710165, lowerbound=1293782.710165, norm of subgrad 1138.006024 dualbound = 3635952.710165, lowerbound=1293782.710165, norm of subgrad 36.423072 stepsize= 1.000000 +dualbound = 3636047.370339, lowerbound=1295216.370339, norm of subgrad 1138.632237 dualbound = 3636047.370339, lowerbound=1295216.370339, norm of subgrad 36.900680 stepsize= 1.000000 +dualbound = 3636095.377114, lowerbound=1296610.377114, norm of subgrad 1139.260452 dualbound = 3636095.377114, lowerbound=1296610.377114, norm of subgrad 36.769645 stepsize= 1.000000 +dualbound = 3636151.258715, lowerbound=1292699.258715, norm of subgrad 1137.537805 dualbound = 3636151.258715, lowerbound=1292699.258715, norm of subgrad 36.727124 stepsize= 1.000000 +dualbound = 3636235.828870, lowerbound=1294507.828870, norm of subgrad 1138.288992 dualbound = 3636235.828870, lowerbound=1294507.828870, norm of subgrad 35.757099 stepsize= 1.000000 +dualbound = 3636302.662564, lowerbound=1292121.662564, norm of subgrad 1137.246966 dualbound = 3636302.662564, lowerbound=1292121.662564, norm of subgrad 35.718814 stepsize= 1.000000 +dualbound = 3636385.138503, lowerbound=1295132.138503, norm of subgrad 1138.566704 dualbound = 3636385.138503, lowerbound=1295132.138503, norm of subgrad 35.839586 stepsize= 1.000000 +dualbound = 3636427.670900, lowerbound=1290219.670900, norm of subgrad 1136.390193 dualbound = 3636427.670900, lowerbound=1290219.670900, norm of subgrad 34.720778 stepsize= 1.000000 +dualbound = 3636530.373783, lowerbound=1296777.373783, norm of subgrad 1139.288538 dualbound = 3636530.373783, lowerbound=1296777.373783, norm of subgrad 36.106826 stepsize= 1.000000 +dualbound = 3636571.843491, lowerbound=1286401.843491, norm of subgrad 1134.743074 dualbound = 3636571.843491, lowerbound=1286401.843491, norm of subgrad 35.797622 stepsize= 1.000000 +dualbound = 3636618.506393, lowerbound=1294406.506393, norm of subgrad 1138.269962 dualbound = 3636618.506393, lowerbound=1294406.506393, norm of subgrad 36.036966 stepsize= 1.000000 +dualbound = 3636703.670780, lowerbound=1292193.670780, norm of subgrad 1137.262358 dualbound = 3636703.670780, lowerbound=1292193.670780, norm of subgrad 35.456514 stepsize= 1.000000 +dualbound = 3636789.521429, lowerbound=1291010.521429, norm of subgrad 1136.753941 dualbound = 3636789.521429, lowerbound=1291010.521429, norm of subgrad 35.844813 stepsize= 1.000000 +dualbound = 3636846.482517, lowerbound=1293571.482517, norm of subgrad 1137.870591 dualbound = 3636846.482517, lowerbound=1293571.482517, norm of subgrad 35.142013 stepsize= 1.000000 +dualbound = 3636925.022043, lowerbound=1289649.022043, norm of subgrad 1136.167251 dualbound = 3636925.022043, lowerbound=1289649.022043, norm of subgrad 36.132250 stepsize= 1.000000 +dualbound = 3636940.884581, lowerbound=1292269.884581, norm of subgrad 1137.348181 dualbound = 3636940.884581, lowerbound=1292269.884581, norm of subgrad 36.150554 stepsize= 1.000000 +dualbound = 3637038.355972, lowerbound=1295961.355972, norm of subgrad 1138.954940 dualbound = 3637038.355972, lowerbound=1295961.355972, norm of subgrad 36.803144 stepsize= 1.000000 +dualbound = 3637099.726350, lowerbound=1284358.726350, norm of subgrad 1133.834082 dualbound = 3637099.726350, lowerbound=1284358.726350, norm of subgrad 35.810199 stepsize= 1.000000 +dualbound = 3637172.663260, lowerbound=1293006.663260, norm of subgrad 1137.661928 dualbound = 3637172.663260, lowerbound=1293006.663260, norm of subgrad 36.618805 stepsize= 1.000000 +dualbound = 3637233.657336, lowerbound=1290462.657336, norm of subgrad 1136.515577 dualbound = 3637233.657336, lowerbound=1290462.657336, norm of subgrad 35.580811 stepsize= 1.000000 +dualbound = 3637309.769050, lowerbound=1297541.769051, norm of subgrad 1139.652477 dualbound = 3637309.769050, lowerbound=1297541.769051, norm of subgrad 36.634843 stepsize= 1.000000 +dualbound = 3637341.113328, lowerbound=1294533.113328, norm of subgrad 1138.340509 dualbound = 3637341.113328, lowerbound=1294533.113328, norm of subgrad 36.295238 stepsize= 1.000000 +dualbound = 3637442.688946, lowerbound=1298227.688946, norm of subgrad 1139.945915 dualbound = 3637442.688946, lowerbound=1298227.688946, norm of subgrad 36.750178 stepsize= 1.000000 +dualbound = 3637502.754682, lowerbound=1293557.754682, norm of subgrad 1137.904106 dualbound = 3637502.754682, lowerbound=1293557.754682, norm of subgrad 36.442636 stepsize= 1.000000 +dualbound = 3637559.556063, lowerbound=1294658.556063, norm of subgrad 1138.389896 dualbound = 3637559.556063, lowerbound=1294658.556063, norm of subgrad 36.466442 stepsize= 1.000000 +dualbound = 3637644.824363, lowerbound=1292517.824363, norm of subgrad 1137.426844 dualbound = 3637644.824363, lowerbound=1292517.824363, norm of subgrad 36.156165 stepsize= 1.000000 +dualbound = 3637703.697958, lowerbound=1290296.697958, norm of subgrad 1136.456202 dualbound = 3637703.697958, lowerbound=1290296.697958, norm of subgrad 35.984352 stepsize= 1.000000 +dualbound = 3637763.141284, lowerbound=1295165.141284, norm of subgrad 1138.607106 dualbound = 3637763.141284, lowerbound=1295165.141284, norm of subgrad 36.337905 stepsize= 1.000000 +dualbound = 3637814.199236, lowerbound=1295926.199236, norm of subgrad 1138.923702 dualbound = 3637814.199236, lowerbound=1295926.199236, norm of subgrad 35.665921 stepsize= 1.000000 +dualbound = 3637925.555859, lowerbound=1285519.555859, norm of subgrad 1134.347634 dualbound = 3637925.555859, lowerbound=1285519.555859, norm of subgrad 36.556212 stepsize= 1.000000 +dualbound = 3637969.743023, lowerbound=1294597.743023, norm of subgrad 1138.349570 dualbound = 3637969.743023, lowerbound=1294597.743023, norm of subgrad 35.863452 stepsize= 1.000000 +dualbound = 3638033.661768, lowerbound=1290684.661768, norm of subgrad 1136.653272 dualbound = 3638033.661768, lowerbound=1290684.661768, norm of subgrad 36.877076 stepsize= 1.000000 +dualbound = 3638081.339843, lowerbound=1291924.339843, norm of subgrad 1137.203297 dualbound = 3638081.339843, lowerbound=1291924.339843, norm of subgrad 36.805952 stepsize= 1.000000 +dualbound = 3638163.167797, lowerbound=1294388.167797, norm of subgrad 1138.256635 dualbound = 3638163.167797, lowerbound=1294388.167797, norm of subgrad 36.356952 stepsize= 1.000000 +dualbound = 3638256.801001, lowerbound=1295303.801001, norm of subgrad 1138.660968 dualbound = 3638256.801001, lowerbound=1295303.801001, norm of subgrad 36.587337 stepsize= 1.000000 +dualbound = 3638314.862828, lowerbound=1293865.862828, norm of subgrad 1138.016196 dualbound = 3638314.862828, lowerbound=1293865.862828, norm of subgrad 35.679992 stepsize= 1.000000 +dualbound = 3638387.108117, lowerbound=1291078.108117, norm of subgrad 1136.781909 dualbound = 3638387.108117, lowerbound=1291078.108117, norm of subgrad 35.598389 stepsize= 1.000000 +dualbound = 3638453.885273, lowerbound=1292709.885273, norm of subgrad 1137.475224 dualbound = 3638453.885273, lowerbound=1292709.885273, norm of subgrad 34.738698 stepsize= 1.000000 +dualbound = 3638542.152540, lowerbound=1296768.152540, norm of subgrad 1139.283175 dualbound = 3638542.152540, lowerbound=1296768.152540, norm of subgrad 35.864568 stepsize= 1.000000 +dualbound = 3638576.474383, lowerbound=1294067.474383, norm of subgrad 1138.135086 dualbound = 3638576.474383, lowerbound=1294067.474383, norm of subgrad 36.308702 stepsize= 1.000000 +dualbound = 3638635.048830, lowerbound=1293703.048830, norm of subgrad 1137.945099 dualbound = 3638635.048830, lowerbound=1293703.048830, norm of subgrad 35.701183 stepsize= 1.000000 +dualbound = 3638751.997161, lowerbound=1295038.997161, norm of subgrad 1138.522726 dualbound = 3638751.997161, lowerbound=1295038.997161, norm of subgrad 36.220827 stepsize= 1.000000 +dualbound = 3638792.002500, lowerbound=1290235.002500, norm of subgrad 1136.414978 dualbound = 3638792.002500, lowerbound=1290235.002500, norm of subgrad 35.270460 stepsize= 1.000000 +dualbound = 3638881.517955, lowerbound=1295970.517955, norm of subgrad 1138.908038 dualbound = 3638881.517955, lowerbound=1295970.517955, norm of subgrad 35.078704 stepsize= 1.000000 +dualbound = 3638959.307087, lowerbound=1290658.307087, norm of subgrad 1136.591530 dualbound = 3638959.307087, lowerbound=1290658.307087, norm of subgrad 35.493508 stepsize= 1.000000 +dualbound = 3638991.805350, lowerbound=1296973.805350, norm of subgrad 1139.396246 dualbound = 3638991.805350, lowerbound=1296973.805350, norm of subgrad 35.811985 stepsize= 1.000000 +dualbound = 3639056.152849, lowerbound=1292181.152849, norm of subgrad 1137.274880 dualbound = 3639056.152849, lowerbound=1292181.152849, norm of subgrad 35.739999 stepsize= 1.000000 +dualbound = 3639118.751076, lowerbound=1296843.751076, norm of subgrad 1139.314158 dualbound = 3639118.751076, lowerbound=1296843.751076, norm of subgrad 35.434421 stepsize= 1.000000 +dualbound = 3639191.989415, lowerbound=1295475.989415, norm of subgrad 1138.731746 dualbound = 3639191.989415, lowerbound=1295475.989415, norm of subgrad 36.155751 stepsize= 1.000000 +dualbound = 3639234.262437, lowerbound=1294488.262437, norm of subgrad 1138.314220 dualbound = 3639234.262437, lowerbound=1294488.262437, norm of subgrad 36.239109 stepsize= 1.000000 +dualbound = 3639322.021910, lowerbound=1288291.021910, norm of subgrad 1135.574754 dualbound = 3639322.021910, lowerbound=1288291.021910, norm of subgrad 36.424710 stepsize= 1.000000 +dualbound = 3639387.921953, lowerbound=1294630.921953, norm of subgrad 1138.329004 dualbound = 3639387.921953, lowerbound=1294630.921953, norm of subgrad 35.041405 stepsize= 1.000000 +dualbound = 3639451.625916, lowerbound=1283469.625916, norm of subgrad 1133.458701 dualbound = 3639451.625916, lowerbound=1283469.625916, norm of subgrad 36.368997 stepsize= 1.000000 +dualbound = 3639510.189619, lowerbound=1293553.189619, norm of subgrad 1137.902979 dualbound = 3639510.189619, lowerbound=1293553.189619, norm of subgrad 36.449468 stepsize= 1.000000 +dualbound = 3639578.054058, lowerbound=1295624.054058, norm of subgrad 1138.787976 dualbound = 3639578.054058, lowerbound=1295624.054058, norm of subgrad 35.803134 stepsize= 1.000000 +dualbound = 3639657.089031, lowerbound=1296101.089031, norm of subgrad 1138.993015 dualbound = 3639657.089031, lowerbound=1296101.089031, norm of subgrad 35.819478 stepsize= 1.000000 +dualbound = 3639699.545620, lowerbound=1287998.545620, norm of subgrad 1135.476352 dualbound = 3639699.545620, lowerbound=1287998.545620, norm of subgrad 36.748559 stepsize= 1.000000 +dualbound = 3639766.527005, lowerbound=1296345.527005, norm of subgrad 1139.094170 dualbound = 3639766.527005, lowerbound=1296345.527005, norm of subgrad 35.453933 stepsize= 1.000000 +dualbound = 3639858.359916, lowerbound=1294827.359916, norm of subgrad 1138.432413 dualbound = 3639858.359916, lowerbound=1294827.359916, norm of subgrad 35.955986 stepsize= 1.000000 +dualbound = 3639931.613532, lowerbound=1291771.613532, norm of subgrad 1137.094813 dualbound = 3639931.613532, lowerbound=1291771.613532, norm of subgrad 35.864378 stepsize= 1.000000 +dualbound = 3639946.714067, lowerbound=1293277.714067, norm of subgrad 1137.793792 dualbound = 3639946.714067, lowerbound=1293277.714067, norm of subgrad 36.222928 stepsize= 1.000000 +dualbound = 3640050.273231, lowerbound=1292165.273231, norm of subgrad 1137.298674 dualbound = 3640050.273231, lowerbound=1292165.273231, norm of subgrad 37.236530 stepsize= 1.000000 +dualbound = 3640087.313137, lowerbound=1291680.313137, norm of subgrad 1137.088525 dualbound = 3640087.313137, lowerbound=1291680.313137, norm of subgrad 36.428559 stepsize= 1.000000 +dualbound = 3640182.022423, lowerbound=1296651.022423, norm of subgrad 1139.238791 dualbound = 3640182.022423, lowerbound=1296651.022423, norm of subgrad 36.176087 stepsize= 1.000000 +dualbound = 3640258.716358, lowerbound=1294937.716358, norm of subgrad 1138.456726 dualbound = 3640258.716358, lowerbound=1294937.716358, norm of subgrad 34.967041 stepsize= 1.000000 +dualbound = 3640342.584409, lowerbound=1289399.584409, norm of subgrad 1136.016542 dualbound = 3640342.584409, lowerbound=1289399.584409, norm of subgrad 34.897966 stepsize= 1.000000 +dualbound = 3640409.446351, lowerbound=1294273.446351, norm of subgrad 1138.192623 dualbound = 3640409.446351, lowerbound=1294273.446351, norm of subgrad 35.719210 stepsize= 1.000000 +dualbound = 3640455.904565, lowerbound=1292353.904565, norm of subgrad 1137.352586 dualbound = 3640455.904565, lowerbound=1292353.904565, norm of subgrad 35.545157 stepsize= 1.000000 +dualbound = 3640526.002082, lowerbound=1295910.002082, norm of subgrad 1138.905616 dualbound = 3640526.002082, lowerbound=1295910.002082, norm of subgrad 35.582264 stepsize= 1.000000 +dualbound = 3640577.263651, lowerbound=1297416.263651, norm of subgrad 1139.596535 dualbound = 3640577.263651, lowerbound=1297416.263651, norm of subgrad 36.266535 stepsize= 1.000000 +dualbound = 3640638.339287, lowerbound=1293077.339287, norm of subgrad 1137.698703 dualbound = 3640638.339287, lowerbound=1293077.339287, norm of subgrad 36.634350 stepsize= 1.000000 +dualbound = 3640704.966510, lowerbound=1290986.966510, norm of subgrad 1136.772170 dualbound = 3640704.966510, lowerbound=1290986.966510, norm of subgrad 36.477763 stepsize= 1.000000 +dualbound = 3640777.066368, lowerbound=1297606.066368, norm of subgrad 1139.681125 dualbound = 3640777.066368, lowerbound=1297606.066368, norm of subgrad 36.593713 stepsize= 1.000000 +dualbound = 3640842.854746, lowerbound=1291031.854747, norm of subgrad 1136.786196 dualbound = 3640842.854746, lowerbound=1291031.854747, norm of subgrad 36.287579 stepsize= 1.000000 +dualbound = 3640904.431489, lowerbound=1295458.431489, norm of subgrad 1138.753016 dualbound = 3640904.431489, lowerbound=1295458.431489, norm of subgrad 36.899549 stepsize= 1.000000 +dualbound = 3640977.457059, lowerbound=1295676.457059, norm of subgrad 1138.818887 dualbound = 3640977.457059, lowerbound=1295676.457059, norm of subgrad 36.125138 stepsize= 1.000000 +dualbound = 3641040.937319, lowerbound=1293382.937319, norm of subgrad 1137.806195 dualbound = 3641040.937319, lowerbound=1293382.937319, norm of subgrad 35.825693 stepsize= 1.000000 +dualbound = 3641107.131628, lowerbound=1291080.131628, norm of subgrad 1136.788957 dualbound = 3641107.131628, lowerbound=1291080.131628, norm of subgrad 35.709863 stepsize= 1.000000 +dualbound = 3641179.813870, lowerbound=1291290.813870, norm of subgrad 1136.881618 dualbound = 3641179.813870, lowerbound=1291290.813870, norm of subgrad 35.800590 stepsize= 1.000000 +dualbound = 3641263.273873, lowerbound=1293905.273873, norm of subgrad 1138.025603 dualbound = 3641263.273873, lowerbound=1293905.273873, norm of subgrad 35.783516 stepsize= 1.000000 +dualbound = 3641308.314976, lowerbound=1295378.314976, norm of subgrad 1138.689297 dualbound = 3641308.314976, lowerbound=1295378.314976, norm of subgrad 35.777662 stepsize= 1.000000 +dualbound = 3641379.689498, lowerbound=1294536.689498, norm of subgrad 1138.319678 dualbound = 3641379.689498, lowerbound=1294536.689498, norm of subgrad 36.143803 stepsize= 1.000000 +dualbound = 3641464.520786, lowerbound=1292683.520786, norm of subgrad 1137.487372 dualbound = 3641464.520786, lowerbound=1292683.520786, norm of subgrad 35.760751 stepsize= 1.000000 +dualbound = 3641520.694336, lowerbound=1290679.694336, norm of subgrad 1136.623814 dualbound = 3641520.694336, lowerbound=1290679.694336, norm of subgrad 35.918986 stepsize= 1.000000 +dualbound = 3641599.520334, lowerbound=1299413.520334, norm of subgrad 1140.446632 dualbound = 3641599.520334, lowerbound=1299413.520334, norm of subgrad 35.830518 stepsize= 1.000000 +dualbound = 3641657.245761, lowerbound=1290294.245761, norm of subgrad 1136.424765 dualbound = 3641657.245761, lowerbound=1290294.245761, norm of subgrad 34.996077 stepsize= 1.000000 +dualbound = 3641735.814233, lowerbound=1292983.814233, norm of subgrad 1137.647491 dualbound = 3641735.814233, lowerbound=1292983.814233, norm of subgrad 36.559109 stepsize= 1.000000 +dualbound = 3641772.073858, lowerbound=1293243.073858, norm of subgrad 1137.746929 dualbound = 3641772.073858, lowerbound=1293243.073858, norm of subgrad 35.514217 stepsize= 1.000000 +dualbound = 3641857.166009, lowerbound=1291657.166009, norm of subgrad 1137.055041 dualbound = 3641857.166009, lowerbound=1291657.166009, norm of subgrad 36.360585 stepsize= 1.000000 +dualbound = 3641931.636652, lowerbound=1285986.636652, norm of subgrad 1134.550412 dualbound = 3641931.636652, lowerbound=1285986.636652, norm of subgrad 35.950948 stepsize= 1.000000 +dualbound = 3641984.591210, lowerbound=1295230.591210, norm of subgrad 1138.619599 dualbound = 3641984.591210, lowerbound=1295230.591210, norm of subgrad 35.734501 stepsize= 1.000000 +dualbound = 3642045.144392, lowerbound=1296852.144392, norm of subgrad 1139.330130 dualbound = 3642045.144392, lowerbound=1296852.144392, norm of subgrad 35.798787 stepsize= 1.000000 +dualbound = 3642147.690807, lowerbound=1287924.690807, norm of subgrad 1135.399793 dualbound = 3642147.690807, lowerbound=1287924.690807, norm of subgrad 36.201470 stepsize= 1.000000 +dualbound = 3642165.622404, lowerbound=1295820.622404, norm of subgrad 1138.878230 dualbound = 3642165.622404, lowerbound=1295820.622404, norm of subgrad 35.226859 stepsize= 1.000000 +dualbound = 3642296.625685, lowerbound=1295827.625685, norm of subgrad 1138.844865 dualbound = 3642296.625685, lowerbound=1295827.625685, norm of subgrad 35.651133 stepsize= 1.000000 +dualbound = 3642338.680975, lowerbound=1297138.680975, norm of subgrad 1139.439635 dualbound = 3642338.680975, lowerbound=1297138.680975, norm of subgrad 35.015072 stepsize= 1.000000 +dualbound = 3642397.236574, lowerbound=1291970.236574, norm of subgrad 1137.175992 dualbound = 3642397.236574, lowerbound=1291970.236574, norm of subgrad 35.462030 stepsize= 1.000000 +dualbound = 3642466.818077, lowerbound=1293399.818077, norm of subgrad 1137.830751 dualbound = 3642466.818077, lowerbound=1293399.818077, norm of subgrad 36.449712 stepsize= 1.000000 +dualbound = 3642511.335010, lowerbound=1295265.335010, norm of subgrad 1138.679645 dualbound = 3642511.335010, lowerbound=1295265.335010, norm of subgrad 37.020493 stepsize= 1.000000 +dualbound = 3642548.401165, lowerbound=1296316.401165, norm of subgrad 1139.147225 dualbound = 3642548.401165, lowerbound=1296316.401165, norm of subgrad 37.108842 stepsize= 1.000000 +dualbound = 3642661.039578, lowerbound=1294881.039578, norm of subgrad 1138.496394 dualbound = 3642661.039578, lowerbound=1294881.039578, norm of subgrad 37.491845 stepsize= 1.000000 +dualbound = 3642697.197238, lowerbound=1291217.197238, norm of subgrad 1136.882227 dualbound = 3642697.197238, lowerbound=1291217.197238, norm of subgrad 36.333974 stepsize= 1.000000 +dualbound = 3642777.171620, lowerbound=1293987.171620, norm of subgrad 1138.094096 dualbound = 3642777.171620, lowerbound=1293987.171620, norm of subgrad 36.755603 stepsize= 1.000000 +dualbound = 3642862.090367, lowerbound=1294817.090367, norm of subgrad 1138.439761 dualbound = 3642862.090367, lowerbound=1294817.090367, norm of subgrad 36.234221 stepsize= 1.000000 +dualbound = 3642926.922118, lowerbound=1293710.922118, norm of subgrad 1137.926150 dualbound = 3642926.922118, lowerbound=1293710.922118, norm of subgrad 35.068957 stepsize= 1.000000 +dualbound = 3643003.779207, lowerbound=1290013.779207, norm of subgrad 1136.319840 dualbound = 3643003.779207, lowerbound=1290013.779207, norm of subgrad 35.858850 stepsize= 1.000000 +dualbound = 3643066.475558, lowerbound=1294821.475558, norm of subgrad 1138.427194 dualbound = 3643066.475558, lowerbound=1294821.475558, norm of subgrad 35.464015 stepsize= 1.000000 +dualbound = 3643111.161776, lowerbound=1292333.161776, norm of subgrad 1137.344786 dualbound = 3643111.161776, lowerbound=1292333.161776, norm of subgrad 35.562427 stepsize= 1.000000 +dualbound = 3643194.500147, lowerbound=1287148.500147, norm of subgrad 1135.031057 dualbound = 3643194.500147, lowerbound=1287148.500147, norm of subgrad 35.076180 stepsize= 1.000000 +dualbound = 3643280.561626, lowerbound=1292262.561626, norm of subgrad 1137.306714 dualbound = 3643280.561626, lowerbound=1292262.561626, norm of subgrad 35.917426 stepsize= 1.000000 +dualbound = 3643305.454495, lowerbound=1290618.454495, norm of subgrad 1136.599954 dualbound = 3643305.454495, lowerbound=1290618.454495, norm of subgrad 35.579388 stepsize= 1.000000 +dualbound = 3643388.542541, lowerbound=1288953.542541, norm of subgrad 1135.852342 dualbound = 3643388.542541, lowerbound=1288953.542541, norm of subgrad 35.917796 stepsize= 1.000000 +dualbound = 3643457.800523, lowerbound=1295355.800523, norm of subgrad 1138.708830 dualbound = 3643457.800523, lowerbound=1295355.800523, norm of subgrad 37.030501 stepsize= 1.000000 +dualbound = 3643501.672472, lowerbound=1291026.672472, norm of subgrad 1136.797111 dualbound = 3643501.672472, lowerbound=1291026.672472, norm of subgrad 36.398790 stepsize= 1.000000 +dualbound = 3643579.776041, lowerbound=1294513.776041, norm of subgrad 1138.322352 dualbound = 3643579.776041, lowerbound=1294513.776041, norm of subgrad 36.634732 stepsize= 1.000000 +dualbound = 3643645.452840, lowerbound=1292644.452840, norm of subgrad 1137.485584 dualbound = 3643645.452840, lowerbound=1292644.452840, norm of subgrad 35.981618 stepsize= 1.000000 +dualbound = 3643725.822837, lowerbound=1292248.822837, norm of subgrad 1137.321337 dualbound = 3643725.822837, lowerbound=1292248.822837, norm of subgrad 36.487943 stepsize= 1.000000 +dualbound = 3643791.118788, lowerbound=1298006.118788, norm of subgrad 1139.840830 dualbound = 3643791.118788, lowerbound=1298006.118788, norm of subgrad 36.004110 stepsize= 1.000000 +dualbound = 3643874.938272, lowerbound=1297141.938272, norm of subgrad 1139.442819 dualbound = 3643874.938272, lowerbound=1297141.938272, norm of subgrad 35.662578 stepsize= 1.000000 +dualbound = 3643921.582050, lowerbound=1294224.582050, norm of subgrad 1138.198832 dualbound = 3643921.582050, lowerbound=1294224.582050, norm of subgrad 36.313135 stepsize= 1.000000 +dualbound = 3643987.337283, lowerbound=1295655.337283, norm of subgrad 1138.828054 dualbound = 3643987.337283, lowerbound=1295655.337283, norm of subgrad 36.602667 stepsize= 1.000000 +dualbound = 3644070.629669, lowerbound=1295546.629669, norm of subgrad 1138.754859 dualbound = 3644070.629669, lowerbound=1295546.629669, norm of subgrad 36.045699 stepsize= 1.000000 +dualbound = 3644121.441918, lowerbound=1293995.441918, norm of subgrad 1138.099047 dualbound = 3644121.441918, lowerbound=1293995.441918, norm of subgrad 36.397970 stepsize= 1.000000 +dualbound = 3644193.915570, lowerbound=1290200.915570, norm of subgrad 1136.406580 dualbound = 3644193.915570, lowerbound=1290200.915570, norm of subgrad 35.937079 stepsize= 1.000000 +dualbound = 3644256.530810, lowerbound=1292131.530810, norm of subgrad 1137.267572 dualbound = 3644256.530810, lowerbound=1292131.530810, norm of subgrad 36.174787 stepsize= 1.000000 +dualbound = 3644340.797069, lowerbound=1296959.797069, norm of subgrad 1139.408968 dualbound = 3644340.797069, lowerbound=1296959.797069, norm of subgrad 37.111538 stepsize= 1.000000 +dualbound = 3644388.460048, lowerbound=1293626.460048, norm of subgrad 1137.889037 dualbound = 3644388.460048, lowerbound=1293626.460048, norm of subgrad 34.823311 stepsize= 1.000000 +dualbound = 3644488.280143, lowerbound=1293810.280143, norm of subgrad 1137.978594 dualbound = 3644488.280143, lowerbound=1293810.280143, norm of subgrad 35.844387 stepsize= 1.000000 +dualbound = 3644547.487788, lowerbound=1291960.487788, norm of subgrad 1137.187534 dualbound = 3644547.487788, lowerbound=1291960.487788, norm of subgrad 35.975098 stepsize= 1.000000 +dualbound = 3644598.278778, lowerbound=1299471.278778, norm of subgrad 1140.482915 dualbound = 3644598.278778, lowerbound=1299471.278778, norm of subgrad 35.788140 stepsize= 1.000000 +dualbound = 3644666.932948, lowerbound=1292685.932948, norm of subgrad 1137.491069 dualbound = 3644666.932948, lowerbound=1292685.932948, norm of subgrad 35.618172 stepsize= 1.000000 +dualbound = 3644748.879619, lowerbound=1296626.879619, norm of subgrad 1139.223806 dualbound = 3644748.879619, lowerbound=1296626.879619, norm of subgrad 35.860099 stepsize= 1.000000 +dualbound = 3644808.068708, lowerbound=1288766.068708, norm of subgrad 1135.768933 dualbound = 3644808.068708, lowerbound=1288766.068708, norm of subgrad 35.555437 stepsize= 1.000000 +dualbound = 3644872.793784, lowerbound=1298566.793784, norm of subgrad 1140.066136 dualbound = 3644872.793784, lowerbound=1298566.793784, norm of subgrad 35.337304 stepsize= 1.000000 +dualbound = 3644926.735047, lowerbound=1284187.735047, norm of subgrad 1133.783813 dualbound = 3644926.735047, lowerbound=1284187.735047, norm of subgrad 36.495770 stepsize= 1.000000 +dualbound = 3644989.876203, lowerbound=1295469.876203, norm of subgrad 1138.735209 dualbound = 3644989.876203, lowerbound=1295469.876203, norm of subgrad 36.209683 stepsize= 1.000000 +dualbound = 3645039.910785, lowerbound=1288942.910785, norm of subgrad 1135.879356 dualbound = 3645039.910785, lowerbound=1288942.910785, norm of subgrad 36.455927 stepsize= 1.000000 +dualbound = 3645130.489950, lowerbound=1295115.489950, norm of subgrad 1138.562466 dualbound = 3645130.489950, lowerbound=1295115.489950, norm of subgrad 36.049676 stepsize= 1.000000 +dualbound = 3645207.877138, lowerbound=1289879.877138, norm of subgrad 1136.282481 dualbound = 3645207.877138, lowerbound=1289879.877138, norm of subgrad 36.542950 stepsize= 1.000000 +dualbound = 3645237.221629, lowerbound=1298496.221629, norm of subgrad 1140.085620 dualbound = 3645237.221629, lowerbound=1298496.221629, norm of subgrad 36.446461 stepsize= 1.000000 +dualbound = 3645325.640779, lowerbound=1295335.640779, norm of subgrad 1138.671437 dualbound = 3645325.640779, lowerbound=1295335.640779, norm of subgrad 36.406306 stepsize= 1.000000 +dualbound = 3645414.895927, lowerbound=1296689.895927, norm of subgrad 1139.256291 dualbound = 3645414.895927, lowerbound=1296689.895927, norm of subgrad 36.114473 stepsize= 1.000000 +dualbound = 3645460.174354, lowerbound=1290684.174354, norm of subgrad 1136.607309 dualbound = 3645460.174354, lowerbound=1290684.174354, norm of subgrad 35.174969 stepsize= 1.000000 +dualbound = 3645532.925258, lowerbound=1292807.925258, norm of subgrad 1137.564031 dualbound = 3645532.925258, lowerbound=1292807.925258, norm of subgrad 36.287062 stepsize= 1.000000 +dualbound = 3645598.895539, lowerbound=1291984.895539, norm of subgrad 1137.171445 dualbound = 3645598.895539, lowerbound=1291984.895539, norm of subgrad 35.213212 stepsize= 1.000000 +dualbound = 3645698.479644, lowerbound=1297552.479644, norm of subgrad 1139.592681 dualbound = 3645698.479644, lowerbound=1297552.479644, norm of subgrad 34.908224 stepsize= 1.000000 +dualbound = 3645763.789289, lowerbound=1293444.789289, norm of subgrad 1137.817995 dualbound = 3645763.789289, lowerbound=1293444.789289, norm of subgrad 35.359718 stepsize= 1.000000 +dualbound = 3645810.749213, lowerbound=1295089.749213, norm of subgrad 1138.558628 dualbound = 3645810.749213, lowerbound=1295089.749213, norm of subgrad 35.678564 stepsize= 1.000000 +dualbound = 3645860.176269, lowerbound=1286725.176269, norm of subgrad 1134.907122 dualbound = 3645860.176269, lowerbound=1286725.176269, norm of subgrad 36.584519 stepsize= 1.000000 +dualbound = 3645931.160445, lowerbound=1296703.160445, norm of subgrad 1139.281423 dualbound = 3645931.160445, lowerbound=1296703.160445, norm of subgrad 36.468948 stepsize= 1.000000 +dualbound = 3646010.124565, lowerbound=1293515.124565, norm of subgrad 1137.880101 dualbound = 3646010.124565, lowerbound=1293515.124565, norm of subgrad 36.537161 stepsize= 1.000000 +dualbound = 3646066.193123, lowerbound=1297481.193123, norm of subgrad 1139.606596 dualbound = 3646066.193123, lowerbound=1297481.193123, norm of subgrad 35.750085 stepsize= 1.000000 +dualbound = 3646137.549585, lowerbound=1291230.549585, norm of subgrad 1136.898214 dualbound = 3646137.549585, lowerbound=1291230.549585, norm of subgrad 37.126223 stepsize= 1.000000 +dualbound = 3646191.110716, lowerbound=1297409.110716, norm of subgrad 1139.591642 dualbound = 3646191.110716, lowerbound=1297409.110716, norm of subgrad 36.243084 stepsize= 1.000000 +dualbound = 3646267.751362, lowerbound=1291637.751362, norm of subgrad 1137.053979 dualbound = 3646267.751362, lowerbound=1291637.751362, norm of subgrad 36.477947 stepsize= 1.000000 +dualbound = 3646333.632039, lowerbound=1296722.632039, norm of subgrad 1139.307962 dualbound = 3646333.632039, lowerbound=1296722.632039, norm of subgrad 36.957823 stepsize= 1.000000 +dualbound = 3646380.394177, lowerbound=1292513.394177, norm of subgrad 1137.430611 dualbound = 3646380.394177, lowerbound=1292513.394177, norm of subgrad 35.801706 stepsize= 1.000000 +dualbound = 3646473.971531, lowerbound=1292995.971531, norm of subgrad 1137.663382 dualbound = 3646473.971531, lowerbound=1292995.971531, norm of subgrad 37.088777 stepsize= 1.000000 +dualbound = 3646517.603692, lowerbound=1295993.603692, norm of subgrad 1138.964268 dualbound = 3646517.603692, lowerbound=1295993.603692, norm of subgrad 35.911449 stepsize= 1.000000 +dualbound = 3646604.013642, lowerbound=1285261.013642, norm of subgrad 1134.208981 dualbound = 3646604.013642, lowerbound=1285261.013642, norm of subgrad 35.431765 stepsize= 1.000000 +dualbound = 3646675.223296, lowerbound=1302310.223296, norm of subgrad 1141.736057 dualbound = 3646675.223296, lowerbound=1302310.223296, norm of subgrad 36.362201 stepsize= 1.000000 +dualbound = 3646728.629923, lowerbound=1293804.629923, norm of subgrad 1138.004670 dualbound = 3646728.629923, lowerbound=1293804.629923, norm of subgrad 36.102723 stepsize= 1.000000 +dualbound = 3646778.881341, lowerbound=1288595.881341, norm of subgrad 1135.718223 dualbound = 3646778.881341, lowerbound=1288595.881341, norm of subgrad 36.197395 stepsize= 1.000000 +dualbound = 3646873.922044, lowerbound=1292830.922044, norm of subgrad 1137.536778 dualbound = 3646873.922044, lowerbound=1292830.922044, norm of subgrad 35.412437 stepsize= 1.000000 +dualbound = 3646937.850016, lowerbound=1294138.850016, norm of subgrad 1138.157217 dualbound = 3646937.850016, lowerbound=1294138.850016, norm of subgrad 36.427023 stepsize= 1.000000 +dualbound = 3646994.536215, lowerbound=1293711.536215, norm of subgrad 1137.967283 dualbound = 3646994.536215, lowerbound=1293711.536215, norm of subgrad 36.258602 stepsize= 1.000000 +dualbound = 3647066.600392, lowerbound=1291379.600392, norm of subgrad 1136.908792 dualbound = 3647066.600392, lowerbound=1291379.600392, norm of subgrad 35.412769 stepsize= 1.000000 +dualbound = 3647146.970355, lowerbound=1298359.970355, norm of subgrad 1139.983759 dualbound = 3647146.970355, lowerbound=1298359.970355, norm of subgrad 35.824153 stepsize= 1.000000 +dualbound = 3647201.340347, lowerbound=1291148.340347, norm of subgrad 1136.808841 dualbound = 3647201.340347, lowerbound=1291148.340347, norm of subgrad 35.218887 stepsize= 1.000000 +dualbound = 3647280.827156, lowerbound=1292035.827156, norm of subgrad 1137.210107 dualbound = 3647280.827156, lowerbound=1292035.827156, norm of subgrad 35.923346 stepsize= 1.000000 +dualbound = 3647322.063349, lowerbound=1299489.063349, norm of subgrad 1140.488081 dualbound = 3647322.063349, lowerbound=1299489.063349, norm of subgrad 35.570159 stepsize= 1.000000 +dualbound = 3647405.714603, lowerbound=1293539.714603, norm of subgrad 1137.896179 dualbound = 3647405.714603, lowerbound=1293539.714603, norm of subgrad 36.764810 stepsize= 1.000000 +dualbound = 3647451.105503, lowerbound=1295561.105503, norm of subgrad 1138.779656 dualbound = 3647451.105503, lowerbound=1295561.105503, norm of subgrad 36.102505 stepsize= 1.000000 +dualbound = 3647525.808073, lowerbound=1293169.808073, norm of subgrad 1137.730991 dualbound = 3647525.808073, lowerbound=1293169.808073, norm of subgrad 36.560943 stepsize= 1.000000 +dualbound = 3647610.071168, lowerbound=1291887.071168, norm of subgrad 1137.141183 dualbound = 3647610.071168, lowerbound=1291887.071168, norm of subgrad 35.878449 stepsize= 1.000000 +dualbound = 3647689.685155, lowerbound=1292388.685155, norm of subgrad 1137.363040 dualbound = 3647689.685155, lowerbound=1292388.685155, norm of subgrad 35.855460 stepsize= 1.000000 +dualbound = 3647724.096033, lowerbound=1296627.096033, norm of subgrad 1139.232240 dualbound = 3647724.096033, lowerbound=1296627.096033, norm of subgrad 35.459990 stepsize= 1.000000 +dualbound = 3647821.729272, lowerbound=1291424.729272, norm of subgrad 1136.911487 dualbound = 3647821.729272, lowerbound=1291424.729272, norm of subgrad 35.222624 stepsize= 1.000000 +dualbound = 3647872.606052, lowerbound=1294708.606052, norm of subgrad 1138.402656 dualbound = 3647872.606052, lowerbound=1294708.606052, norm of subgrad 36.095384 stepsize= 1.000000 +dualbound = 3647925.544951, lowerbound=1291409.544951, norm of subgrad 1136.961541 dualbound = 3647925.544951, lowerbound=1291409.544951, norm of subgrad 36.399710 stepsize= 1.000000 +dualbound = 3647971.105888, lowerbound=1297158.105888, norm of subgrad 1139.474926 dualbound = 3647971.105888, lowerbound=1297158.105888, norm of subgrad 35.924378 stepsize= 1.000000 +dualbound = 3648064.911767, lowerbound=1296194.911767, norm of subgrad 1139.039908 dualbound = 3648064.911767, lowerbound=1296194.911767, norm of subgrad 36.205053 stepsize= 1.000000 +dualbound = 3648118.640018, lowerbound=1298506.640018, norm of subgrad 1140.063437 dualbound = 3648118.640018, lowerbound=1298506.640018, norm of subgrad 35.940621 stepsize= 1.000000 +dualbound = 3648198.924197, lowerbound=1293229.924197, norm of subgrad 1137.749500 dualbound = 3648198.924197, lowerbound=1293229.924197, norm of subgrad 36.390716 stepsize= 1.000000 +dualbound = 3648237.157624, lowerbound=1294819.157624, norm of subgrad 1138.467021 dualbound = 3648237.157624, lowerbound=1294819.157624, norm of subgrad 36.417488 stepsize= 1.000000 +dualbound = 3648302.014088, lowerbound=1292766.014088, norm of subgrad 1137.542533 dualbound = 3648302.014088, lowerbound=1292766.014088, norm of subgrad 36.081248 stepsize= 1.000000 +dualbound = 3648391.050849, lowerbound=1293599.050849, norm of subgrad 1137.909070 dualbound = 3648391.050849, lowerbound=1293599.050849, norm of subgrad 36.428516 stepsize= 1.000000 +dualbound = 3648480.228249, lowerbound=1293513.228249, norm of subgrad 1137.870040 dualbound = 3648480.228249, lowerbound=1293513.228249, norm of subgrad 36.389248 stepsize= 1.000000 +dualbound = 3648517.980329, lowerbound=1293715.980329, norm of subgrad 1137.972311 dualbound = 3648517.980329, lowerbound=1293715.980329, norm of subgrad 36.093657 stepsize= 1.000000 +dualbound = 3648606.176450, lowerbound=1289509.176450, norm of subgrad 1136.075339 dualbound = 3648606.176450, lowerbound=1289509.176450, norm of subgrad 35.301503 stepsize= 1.000000 +dualbound = 3648692.338391, lowerbound=1290840.338391, norm of subgrad 1136.680843 dualbound = 3648692.338391, lowerbound=1290840.338391, norm of subgrad 35.904901 stepsize= 1.000000 +dualbound = 3648733.715862, lowerbound=1295203.715862, norm of subgrad 1138.597258 dualbound = 3648733.715862, lowerbound=1295203.715862, norm of subgrad 35.233187 stepsize= 1.000000 +dualbound = 3648822.964096, lowerbound=1293803.964096, norm of subgrad 1137.963956 dualbound = 3648822.964096, lowerbound=1293803.964096, norm of subgrad 35.316402 stepsize= 1.000000 +dualbound = 3648887.991940, lowerbound=1299423.991940, norm of subgrad 1140.447716 dualbound = 3648887.991940, lowerbound=1299423.991940, norm of subgrad 35.525031 stepsize= 1.000000 +dualbound = 3648935.190157, lowerbound=1289213.190157, norm of subgrad 1135.959150 dualbound = 3648935.190157, lowerbound=1289213.190157, norm of subgrad 35.173829 stepsize= 1.000000 +dualbound = 3648996.277341, lowerbound=1297771.277341, norm of subgrad 1139.727282 dualbound = 3648996.277341, lowerbound=1297771.277341, norm of subgrad 35.610212 stepsize= 1.000000 +dualbound = 3649061.605833, lowerbound=1291767.605833, norm of subgrad 1137.096568 dualbound = 3649061.605833, lowerbound=1291767.605833, norm of subgrad 35.865422 stepsize= 1.000000 +dualbound = 3649129.608894, lowerbound=1295680.608894, norm of subgrad 1138.840906 dualbound = 3649129.608894, lowerbound=1295680.608894, norm of subgrad 36.687914 stepsize= 1.000000 +dualbound = 3649191.984780, lowerbound=1299589.984780, norm of subgrad 1140.551176 dualbound = 3649191.984780, lowerbound=1299589.984780, norm of subgrad 36.460607 stepsize= 1.000000 +dualbound = 3649242.776743, lowerbound=1287844.776743, norm of subgrad 1135.380895 dualbound = 3649242.776743, lowerbound=1287844.776743, norm of subgrad 35.997110 stepsize= 1.000000 +dualbound = 3649322.475320, lowerbound=1295828.475320, norm of subgrad 1138.889141 dualbound = 3649322.475320, lowerbound=1295828.475320, norm of subgrad 36.327656 stepsize= 1.000000 +dualbound = 3649395.185128, lowerbound=1293850.185128, norm of subgrad 1138.018535 dualbound = 3649395.185128, lowerbound=1293850.185128, norm of subgrad 36.176094 stepsize= 1.000000 +dualbound = 3649452.687725, lowerbound=1295868.687725, norm of subgrad 1138.919087 dualbound = 3649452.687725, lowerbound=1295868.687725, norm of subgrad 36.407452 stepsize= 1.000000 +dualbound = 3649509.395040, lowerbound=1293692.395040, norm of subgrad 1137.965024 dualbound = 3649509.395040, lowerbound=1293692.395040, norm of subgrad 36.451438 stepsize= 1.000000 +dualbound = 3649587.922219, lowerbound=1299563.922219, norm of subgrad 1140.504240 dualbound = 3649587.922219, lowerbound=1299563.922219, norm of subgrad 35.560191 stepsize= 1.000000 +dualbound = 3649675.508019, lowerbound=1292090.508019, norm of subgrad 1137.230631 dualbound = 3649675.508019, lowerbound=1292090.508019, norm of subgrad 35.924724 stepsize= 1.000000 +dualbound = 3649726.453411, lowerbound=1297931.453411, norm of subgrad 1139.798865 dualbound = 3649726.453411, lowerbound=1297931.453411, norm of subgrad 35.509793 stepsize= 1.000000 +dualbound = 3649794.663723, lowerbound=1297294.663723, norm of subgrad 1139.505886 dualbound = 3649794.663723, lowerbound=1297294.663723, norm of subgrad 35.315865 stepsize= 1.000000 +dualbound = 3649856.713439, lowerbound=1291193.713439, norm of subgrad 1136.864422 dualbound = 3649856.713439, lowerbound=1291193.713439, norm of subgrad 36.456134 stepsize= 1.000000 +dualbound = 3649954.048219, lowerbound=1292228.048219, norm of subgrad 1137.296816 dualbound = 3649954.048219, lowerbound=1292228.048219, norm of subgrad 36.239961 stepsize= 1.000000 +dualbound = 3649979.955993, lowerbound=1298208.955993, norm of subgrad 1139.905240 dualbound = 3649979.955993, lowerbound=1298208.955993, norm of subgrad 34.654116 stepsize= 1.000000 +dualbound = 3650084.878699, lowerbound=1291849.878699, norm of subgrad 1137.145056 dualbound = 3650084.878699, lowerbound=1291849.878699, norm of subgrad 36.795689 stepsize= 1.000000 +dualbound = 3650113.296478, lowerbound=1298586.296478, norm of subgrad 1140.104950 dualbound = 3650113.296478, lowerbound=1298586.296478, norm of subgrad 35.796896 stepsize= 1.000000 +dualbound = 3650178.786518, lowerbound=1291257.786518, norm of subgrad 1136.897879 dualbound = 3650178.786518, lowerbound=1291257.786518, norm of subgrad 36.667288 stepsize= 1.000000 +dualbound = 3650253.767808, lowerbound=1294833.767808, norm of subgrad 1138.438741 dualbound = 3650253.767808, lowerbound=1294833.767808, norm of subgrad 35.832685 stepsize= 1.000000 +dualbound = 3650347.880154, lowerbound=1292483.880154, norm of subgrad 1137.415439 dualbound = 3650347.880154, lowerbound=1292483.880154, norm of subgrad 36.388355 stepsize= 1.000000 +dualbound = 3650393.669154, lowerbound=1295205.669154, norm of subgrad 1138.585381 dualbound = 3650393.669154, lowerbound=1295205.669154, norm of subgrad 34.882503 stepsize= 1.000000 +dualbound = 3650484.689322, lowerbound=1296942.689322, norm of subgrad 1139.357139 dualbound = 3650484.689322, lowerbound=1296942.689322, norm of subgrad 35.819271 stepsize= 1.000000 +dualbound = 3650527.634432, lowerbound=1294567.634432, norm of subgrad 1138.317458 dualbound = 3650527.634432, lowerbound=1294567.634432, norm of subgrad 35.241242 stepsize= 1.000000 +dualbound = 3650592.019743, lowerbound=1295786.019743, norm of subgrad 1138.883673 dualbound = 3650592.019743, lowerbound=1295786.019743, norm of subgrad 36.529239 stepsize= 1.000000 +dualbound = 3650657.395082, lowerbound=1293450.395082, norm of subgrad 1137.834960 dualbound = 3650657.395082, lowerbound=1293450.395082, norm of subgrad 35.824228 stepsize= 1.000000 +dualbound = 3650735.796530, lowerbound=1291460.796530, norm of subgrad 1136.966049 dualbound = 3650735.796530, lowerbound=1291460.796530, norm of subgrad 36.185653 stepsize= 1.000000 +dualbound = 3650781.099719, lowerbound=1291620.099719, norm of subgrad 1137.052813 dualbound = 3650781.099719, lowerbound=1291620.099719, norm of subgrad 36.253320 stepsize= 1.000000 +dualbound = 3650850.111978, lowerbound=1293871.111978, norm of subgrad 1138.014548 dualbound = 3650850.111978, lowerbound=1293871.111978, norm of subgrad 35.707314 stepsize= 1.000000 +dualbound = 3650912.694139, lowerbound=1293954.694139, norm of subgrad 1138.073677 dualbound = 3650912.694139, lowerbound=1293954.694139, norm of subgrad 36.326053 stepsize= 1.000000 +dualbound = 3650975.601043, lowerbound=1294658.601043, norm of subgrad 1138.387281 dualbound = 3650975.601043, lowerbound=1294658.601043, norm of subgrad 36.467889 stepsize= 1.000000 +dualbound = 3651058.354204, lowerbound=1294216.354204, norm of subgrad 1138.161392 dualbound = 3651058.354204, lowerbound=1294216.354204, norm of subgrad 35.745673 stepsize= 1.000000 +dualbound = 3651146.498090, lowerbound=1296890.498090, norm of subgrad 1139.361443 dualbound = 3651146.498090, lowerbound=1296890.498090, norm of subgrad 36.635282 stepsize= 1.000000 +dualbound = 3651180.351859, lowerbound=1287760.351859, norm of subgrad 1135.367056 dualbound = 3651180.351859, lowerbound=1287760.351859, norm of subgrad 36.494572 stepsize= 1.000000 +dualbound = 3651249.727369, lowerbound=1298501.727369, norm of subgrad 1140.053388 dualbound = 3651249.727369, lowerbound=1298501.727369, norm of subgrad 35.907875 stepsize= 1.000000 +dualbound = 3651334.805191, lowerbound=1292665.805191, norm of subgrad 1137.501123 dualbound = 3651334.805191, lowerbound=1292665.805191, norm of subgrad 36.442802 stepsize= 1.000000 +dualbound = 3651370.815407, lowerbound=1296253.815407, norm of subgrad 1139.092101 dualbound = 3651370.815407, lowerbound=1296253.815407, norm of subgrad 36.235483 stepsize= 1.000000 +dualbound = 3651473.527881, lowerbound=1297250.527881, norm of subgrad 1139.491785 dualbound = 3651473.527881, lowerbound=1297250.527881, norm of subgrad 35.968215 stepsize= 1.000000 +dualbound = 3651514.940323, lowerbound=1291277.940323, norm of subgrad 1136.904983 dualbound = 3651514.940323, lowerbound=1291277.940323, norm of subgrad 36.282399 stepsize= 1.000000 +dualbound = 3651587.314268, lowerbound=1295594.314268, norm of subgrad 1138.776235 dualbound = 3651587.314268, lowerbound=1295594.314268, norm of subgrad 35.907854 stepsize= 1.000000 +dualbound = 3651673.383356, lowerbound=1292316.383356, norm of subgrad 1137.315428 dualbound = 3651673.383356, lowerbound=1292316.383356, norm of subgrad 35.441065 stepsize= 1.000000 +dualbound = 3651744.710106, lowerbound=1294186.710106, norm of subgrad 1138.150126 dualbound = 3651744.710106, lowerbound=1294186.710106, norm of subgrad 35.641643 stepsize= 1.000000 +dualbound = 3651784.386263, lowerbound=1292985.386263, norm of subgrad 1137.602033 dualbound = 3651784.386263, lowerbound=1292985.386263, norm of subgrad 34.535144 stepsize= 1.000000 +dualbound = 3651902.070449, lowerbound=1298313.070449, norm of subgrad 1139.920204 dualbound = 3651902.070449, lowerbound=1298313.070449, norm of subgrad 34.966901 stepsize= 1.000000 +dualbound = 3651949.590398, lowerbound=1291533.590398, norm of subgrad 1136.969916 dualbound = 3651949.590398, lowerbound=1291533.590398, norm of subgrad 34.849963 stepsize= 1.000000 +dualbound = 3652022.614989, lowerbound=1299652.614989, norm of subgrad 1140.537862 dualbound = 3652022.614989, lowerbound=1299652.614989, norm of subgrad 35.313235 stepsize= 1.000000 +dualbound = 3652062.795415, lowerbound=1293885.795415, norm of subgrad 1138.012212 dualbound = 3652062.795415, lowerbound=1293885.795415, norm of subgrad 35.016859 stepsize= 1.000000 +dualbound = 3652146.468821, lowerbound=1293378.468821, norm of subgrad 1137.802474 dualbound = 3652146.468821, lowerbound=1293378.468821, norm of subgrad 36.050983 stepsize= 1.000000 +dualbound = 3652159.500801, lowerbound=1296344.500801, norm of subgrad 1139.127956 dualbound = 3652159.500801, lowerbound=1296344.500801, norm of subgrad 35.791507 stepsize= 1.000000 +dualbound = 3652279.550978, lowerbound=1296805.550978, norm of subgrad 1139.308365 dualbound = 3652279.550978, lowerbound=1296805.550978, norm of subgrad 36.579368 stepsize= 1.000000 +dualbound = 3652317.136735, lowerbound=1296495.136735, norm of subgrad 1139.198023 dualbound = 3652317.136735, lowerbound=1296495.136735, norm of subgrad 36.257217 stepsize= 1.000000 +dualbound = 3652370.990042, lowerbound=1294531.990042, norm of subgrad 1138.316735 dualbound = 3652370.990042, lowerbound=1294531.990042, norm of subgrad 35.872738 stepsize= 1.000000 +dualbound = 3652459.619000, lowerbound=1297897.619000, norm of subgrad 1139.808589 dualbound = 3652459.619000, lowerbound=1297897.619000, norm of subgrad 36.805284 stepsize= 1.000000 +dualbound = 3652501.970061, lowerbound=1297721.970061, norm of subgrad 1139.753030 dualbound = 3652501.970061, lowerbound=1297721.970061, norm of subgrad 36.842246 stepsize= 1.000000 +dualbound = 3652572.858361, lowerbound=1296394.858361, norm of subgrad 1139.135136 dualbound = 3652572.858361, lowerbound=1296394.858361, norm of subgrad 36.123238 stepsize= 1.000000 +dualbound = 3652663.274927, lowerbound=1295359.274927, norm of subgrad 1138.676106 dualbound = 3652663.274927, lowerbound=1295359.274927, norm of subgrad 36.254883 stepsize= 1.000000 +dualbound = 3652703.581520, lowerbound=1293078.581520, norm of subgrad 1137.680351 dualbound = 3652703.581520, lowerbound=1293078.581520, norm of subgrad 35.753414 stepsize= 1.000000 +dualbound = 3652798.503386, lowerbound=1289968.503386, norm of subgrad 1136.265155 dualbound = 3652798.503386, lowerbound=1289968.503386, norm of subgrad 34.998884 stepsize= 1.000000 +dualbound = 3652858.369496, lowerbound=1292239.369496, norm of subgrad 1137.293880 dualbound = 3652858.369496, lowerbound=1292239.369496, norm of subgrad 35.466408 stepsize= 1.000000 +dualbound = 3652924.619730, lowerbound=1295423.619730, norm of subgrad 1138.702165 dualbound = 3652924.619730, lowerbound=1295423.619730, norm of subgrad 35.850387 stepsize= 1.000000 +dualbound = 3652961.670531, lowerbound=1291850.670531, norm of subgrad 1137.149362 dualbound = 3652961.670531, lowerbound=1291850.670531, norm of subgrad 35.986814 stepsize= 1.000000 +dualbound = 3653051.925407, lowerbound=1298757.925407, norm of subgrad 1140.163114 dualbound = 3653051.925407, lowerbound=1298757.925407, norm of subgrad 36.114469 stepsize= 1.000000 +dualbound = 3653095.163610, lowerbound=1294650.163610, norm of subgrad 1138.387967 dualbound = 3653095.163610, lowerbound=1294650.163610, norm of subgrad 36.335082 stepsize= 1.000000 +dualbound = 3653169.812311, lowerbound=1292036.812311, norm of subgrad 1137.239558 dualbound = 3653169.812311, lowerbound=1292036.812311, norm of subgrad 36.764775 stepsize= 1.000000 +dualbound = 3653250.655706, lowerbound=1295239.655706, norm of subgrad 1138.606893 dualbound = 3653250.655706, lowerbound=1295239.655706, norm of subgrad 35.592744 stepsize= 1.000000 +dualbound = 3653324.476361, lowerbound=1291806.476361, norm of subgrad 1137.107944 dualbound = 3653324.476361, lowerbound=1291806.476361, norm of subgrad 35.802523 stepsize= 1.000000 +dualbound = 3653379.984507, lowerbound=1293948.984507, norm of subgrad 1138.067654 dualbound = 3653379.984507, lowerbound=1293948.984507, norm of subgrad 36.117975 stepsize= 1.000000 +dualbound = 3653449.093873, lowerbound=1292646.093873, norm of subgrad 1137.497294 dualbound = 3653449.093873, lowerbound=1292646.093873, norm of subgrad 36.374570 stepsize= 1.000000 +dualbound = 3653496.747180, lowerbound=1295250.747180, norm of subgrad 1138.658749 dualbound = 3653496.747180, lowerbound=1295250.747180, norm of subgrad 36.614933 stepsize= 1.000000 +dualbound = 3653558.865409, lowerbound=1298709.865409, norm of subgrad 1140.158702 dualbound = 3653558.865409, lowerbound=1298709.865409, norm of subgrad 36.250769 stepsize= 1.000000 +dualbound = 3653644.836444, lowerbound=1291579.836444, norm of subgrad 1137.037307 dualbound = 3653644.836444, lowerbound=1291579.836444, norm of subgrad 36.877785 stepsize= 1.000000 +dualbound = 3653708.313977, lowerbound=1297088.313977, norm of subgrad 1139.431136 dualbound = 3653708.313977, lowerbound=1297088.313977, norm of subgrad 35.755804 stepsize= 1.000000 +dualbound = 3653782.663290, lowerbound=1294257.663290, norm of subgrad 1138.160210 dualbound = 3653782.663290, lowerbound=1294257.663290, norm of subgrad 35.004990 stepsize= 1.000000 +dualbound = 3653866.720672, lowerbound=1293304.720672, norm of subgrad 1137.752487 dualbound = 3653866.720672, lowerbound=1293304.720672, norm of subgrad 35.497287 stepsize= 1.000000 +dualbound = 3653917.207832, lowerbound=1292005.207832, norm of subgrad 1137.219507 dualbound = 3653917.207832, lowerbound=1292005.207832, norm of subgrad 36.242063 stepsize= 1.000000 +dualbound = 3653949.363414, lowerbound=1293659.363414, norm of subgrad 1137.955343 dualbound = 3653949.363414, lowerbound=1293659.363414, norm of subgrad 36.265074 stepsize= 1.000000 +dualbound = 3654013.859215, lowerbound=1293482.859215, norm of subgrad 1137.868999 dualbound = 3654013.859215, lowerbound=1293482.859215, norm of subgrad 36.434816 stepsize= 1.000000 +dualbound = 3654105.671554, lowerbound=1296471.671554, norm of subgrad 1139.187286 dualbound = 3654105.671554, lowerbound=1296471.671554, norm of subgrad 36.983947 stepsize= 1.000000 +dualbound = 3654169.853259, lowerbound=1296287.853259, norm of subgrad 1139.088167 dualbound = 3654169.853259, lowerbound=1296287.853259, norm of subgrad 36.030289 stepsize= 1.000000 +dualbound = 3654243.200157, lowerbound=1290525.200157, norm of subgrad 1136.550131 dualbound = 3654243.200157, lowerbound=1290525.200157, norm of subgrad 35.977033 stepsize= 1.000000 +dualbound = 3654336.413998, lowerbound=1296080.413998, norm of subgrad 1138.981305 dualbound = 3654336.413998, lowerbound=1296080.413998, norm of subgrad 35.933464 stepsize= 1.000000 +dualbound = 3654378.373110, lowerbound=1290858.373110, norm of subgrad 1136.708570 dualbound = 3654378.373110, lowerbound=1290858.373110, norm of subgrad 35.916001 stepsize= 1.000000 +dualbound = 3654424.039187, lowerbound=1295405.039187, norm of subgrad 1138.729572 dualbound = 3654424.039187, lowerbound=1295405.039187, norm of subgrad 36.683322 stepsize= 1.000000 +dualbound = 3654477.640536, lowerbound=1293618.640536, norm of subgrad 1137.941405 dualbound = 3654477.640536, lowerbound=1293618.640536, norm of subgrad 36.682439 stepsize= 1.000000 +dualbound = 3654556.425873, lowerbound=1295453.425873, norm of subgrad 1138.720960 dualbound = 3654556.425873, lowerbound=1295453.425873, norm of subgrad 36.204770 stepsize= 1.000000 +dualbound = 3654635.029290, lowerbound=1293484.029290, norm of subgrad 1137.860725 dualbound = 3654635.029290, lowerbound=1293484.029290, norm of subgrad 36.353864 stepsize= 1.000000 +dualbound = 3654711.490133, lowerbound=1291759.490133, norm of subgrad 1137.104872 dualbound = 3654711.490133, lowerbound=1291759.490133, norm of subgrad 36.393143 stepsize= 1.000000 +dualbound = 3654762.104237, lowerbound=1297119.104237, norm of subgrad 1139.450791 dualbound = 3654762.104237, lowerbound=1297119.104237, norm of subgrad 35.771694 stepsize= 1.000000 +dualbound = 3654842.628135, lowerbound=1300068.628135, norm of subgrad 1140.760110 dualbound = 3654842.628135, lowerbound=1300068.628135, norm of subgrad 36.681384 stepsize= 1.000000 +dualbound = 3654884.413276, lowerbound=1290885.413276, norm of subgrad 1136.708148 dualbound = 3654884.413276, lowerbound=1290885.413276, norm of subgrad 35.521615 stepsize= 1.000000 +dualbound = 3654979.785548, lowerbound=1296852.785548, norm of subgrad 1139.331289 dualbound = 3654979.785548, lowerbound=1296852.785548, norm of subgrad 36.309396 stepsize= 1.000000 +dualbound = 3655034.789923, lowerbound=1296762.789923, norm of subgrad 1139.284771 dualbound = 3655034.789923, lowerbound=1296762.789923, norm of subgrad 35.524701 stepsize= 1.000000 +dualbound = 3655115.655194, lowerbound=1289319.655194, norm of subgrad 1136.013052 dualbound = 3655115.655194, lowerbound=1289319.655194, norm of subgrad 35.872904 stepsize= 1.000000 +dualbound = 3655188.876308, lowerbound=1290809.876308, norm of subgrad 1136.632252 dualbound = 3655188.876308, lowerbound=1290809.876308, norm of subgrad 34.586430 stepsize= 1.000000 +dualbound = 3655264.412849, lowerbound=1298191.412849, norm of subgrad 1139.890088 dualbound = 3655264.412849, lowerbound=1298191.412849, norm of subgrad 35.121739 stepsize= 1.000000 +dualbound = 3655322.772201, lowerbound=1289707.772201, norm of subgrad 1136.183424 dualbound = 3655322.772201, lowerbound=1289707.772201, norm of subgrad 35.543767 stepsize= 1.000000 +dualbound = 3655373.003985, lowerbound=1297039.003985, norm of subgrad 1139.443287 dualbound = 3655373.003985, lowerbound=1297039.003985, norm of subgrad 36.636482 stepsize= 1.000000 +dualbound = 3655426.839409, lowerbound=1296246.839409, norm of subgrad 1139.050411 dualbound = 3655426.839409, lowerbound=1296246.839409, norm of subgrad 35.253871 stepsize= 1.000000 +dualbound = 3655520.625347, lowerbound=1291237.625347, norm of subgrad 1136.845471 dualbound = 3655520.625347, lowerbound=1291237.625347, norm of subgrad 35.690138 stepsize= 1.000000 +dualbound = 3655580.981427, lowerbound=1296021.981427, norm of subgrad 1138.958727 dualbound = 3655580.981427, lowerbound=1296021.981427, norm of subgrad 35.571844 stepsize= 1.000000 +dualbound = 3655634.756788, lowerbound=1295101.756788, norm of subgrad 1138.577954 dualbound = 3655634.756788, lowerbound=1295101.756788, norm of subgrad 36.218440 stepsize= 1.000000 +dualbound = 3655706.144645, lowerbound=1290528.144645, norm of subgrad 1136.536469 dualbound = 3655706.144645, lowerbound=1290528.144645, norm of subgrad 35.473763 stepsize= 1.000000 +dualbound = 3655796.573691, lowerbound=1293959.573691, norm of subgrad 1138.050339 dualbound = 3655796.573691, lowerbound=1293959.573691, norm of subgrad 35.908621 stepsize= 1.000000 +dualbound = 3655847.160699, lowerbound=1298103.160699, norm of subgrad 1139.900505 dualbound = 3655847.160699, lowerbound=1298103.160699, norm of subgrad 36.339882 stepsize= 1.000000 +dualbound = 3655889.412098, lowerbound=1291005.412098, norm of subgrad 1136.814590 dualbound = 3655889.412098, lowerbound=1291005.412098, norm of subgrad 37.205529 stepsize= 1.000000 +dualbound = 3655951.211747, lowerbound=1296815.211747, norm of subgrad 1139.313483 dualbound = 3655951.211747, lowerbound=1296815.211747, norm of subgrad 35.802230 stepsize= 1.000000 +dualbound = 3656063.240515, lowerbound=1293689.240515, norm of subgrad 1137.947820 dualbound = 3656063.240515, lowerbound=1293689.240515, norm of subgrad 36.715511 stepsize= 1.000000 +dualbound = 3656096.428089, lowerbound=1296451.428089, norm of subgrad 1139.177084 dualbound = 3656096.428089, lowerbound=1296451.428089, norm of subgrad 36.141217 stepsize= 1.000000 +dualbound = 3656164.297453, lowerbound=1299393.297453, norm of subgrad 1140.458810 dualbound = 3656164.297453, lowerbound=1299393.297453, norm of subgrad 36.343767 stepsize= 1.000000 +dualbound = 3656240.650162, lowerbound=1294502.650162, norm of subgrad 1138.288913 dualbound = 3656240.650162, lowerbound=1294502.650162, norm of subgrad 35.712081 stepsize= 1.000000 +dualbound = 3656304.039420, lowerbound=1292693.039420, norm of subgrad 1137.499028 dualbound = 3656304.039420, lowerbound=1292693.039420, norm of subgrad 35.698589 stepsize= 1.000000 +dualbound = 3656379.985339, lowerbound=1292883.985339, norm of subgrad 1137.576804 dualbound = 3656379.985339, lowerbound=1292883.985339, norm of subgrad 35.678368 stepsize= 1.000000 +dualbound = 3656437.705676, lowerbound=1296708.705676, norm of subgrad 1139.287806 dualbound = 3656437.705676, lowerbound=1296708.705676, norm of subgrad 36.410443 stepsize= 1.000000 +dualbound = 3656488.280510, lowerbound=1292931.280510, norm of subgrad 1137.624402 dualbound = 3656488.280510, lowerbound=1292931.280510, norm of subgrad 36.174229 stepsize= 1.000000 +dualbound = 3656568.644193, lowerbound=1298189.644193, norm of subgrad 1139.924841 dualbound = 3656568.644193, lowerbound=1298189.644193, norm of subgrad 36.323046 stepsize= 1.000000 +dualbound = 3656625.274273, lowerbound=1287424.274273, norm of subgrad 1135.193056 dualbound = 3656625.274273, lowerbound=1287424.274273, norm of subgrad 35.994862 stepsize= 1.000000 +dualbound = 3656682.592458, lowerbound=1296171.592458, norm of subgrad 1139.043279 dualbound = 3656682.592458, lowerbound=1296171.592458, norm of subgrad 36.129187 stepsize= 1.000000 +dualbound = 3656774.380123, lowerbound=1291409.380123, norm of subgrad 1136.938160 dualbound = 3656774.380123, lowerbound=1291409.380123, norm of subgrad 36.204802 stepsize= 1.000000 +dualbound = 3656830.605296, lowerbound=1301619.605296, norm of subgrad 1141.419995 dualbound = 3656830.605296, lowerbound=1301619.605296, norm of subgrad 35.724294 stepsize= 1.000000 +dualbound = 3656903.546463, lowerbound=1288892.546463, norm of subgrad 1135.832535 dualbound = 3656903.546463, lowerbound=1288892.546463, norm of subgrad 35.999183 stepsize= 1.000000 +dualbound = 3656952.768397, lowerbound=1298551.768397, norm of subgrad 1140.099017 dualbound = 3656952.768397, lowerbound=1298551.768397, norm of subgrad 36.376118 stepsize= 1.000000 +dualbound = 3657018.263822, lowerbound=1293540.263822, norm of subgrad 1137.877086 dualbound = 3657018.263822, lowerbound=1293540.263822, norm of subgrad 35.909545 stepsize= 1.000000 +dualbound = 3657079.208956, lowerbound=1295987.208956, norm of subgrad 1138.967168 dualbound = 3657079.208956, lowerbound=1295987.208956, norm of subgrad 36.331049 stepsize= 1.000000 +dualbound = 3657136.992780, lowerbound=1294687.992780, norm of subgrad 1138.387014 dualbound = 3657136.992780, lowerbound=1294687.992780, norm of subgrad 35.983105 stepsize= 1.000000 +dualbound = 3657225.092504, lowerbound=1296969.092504, norm of subgrad 1139.389351 dualbound = 3657225.092504, lowerbound=1296969.092504, norm of subgrad 36.429380 stepsize= 1.000000 +dualbound = 3657292.673391, lowerbound=1296687.673391, norm of subgrad 1139.237321 dualbound = 3657292.673391, lowerbound=1296687.673391, norm of subgrad 35.236074 stepsize= 1.000000 +dualbound = 3657361.680027, lowerbound=1298334.680027, norm of subgrad 1139.983631 dualbound = 3657361.680027, lowerbound=1298334.680027, norm of subgrad 36.013978 stepsize= 1.000000 +dualbound = 3657403.905631, lowerbound=1292156.905631, norm of subgrad 1137.254547 dualbound = 3657403.905631, lowerbound=1292156.905631, norm of subgrad 35.117312 stepsize= 1.000000 +dualbound = 3657496.438584, lowerbound=1292579.438584, norm of subgrad 1137.451291 dualbound = 3657496.438584, lowerbound=1292579.438584, norm of subgrad 36.173650 stepsize= 1.000000 +dualbound = 3657532.297940, lowerbound=1300327.297940, norm of subgrad 1140.876986 dualbound = 3657532.297940, lowerbound=1300327.297940, norm of subgrad 36.178161 stepsize= 1.000000 +dualbound = 3657602.149964, lowerbound=1290630.149964, norm of subgrad 1136.618296 dualbound = 3657602.149964, lowerbound=1290630.149964, norm of subgrad 36.617646 stepsize= 1.000000 +dualbound = 3657678.538420, lowerbound=1289748.538420, norm of subgrad 1136.217646 dualbound = 3657678.538420, lowerbound=1289748.538420, norm of subgrad 36.309619 stepsize= 1.000000 +dualbound = 3657741.183056, lowerbound=1301356.183056, norm of subgrad 1141.308102 dualbound = 3657741.183056, lowerbound=1301356.183056, norm of subgrad 35.925543 stepsize= 1.000000 +dualbound = 3657821.017811, lowerbound=1292808.017811, norm of subgrad 1137.574621 dualbound = 3657821.017811, lowerbound=1292808.017811, norm of subgrad 36.712869 stepsize= 1.000000 +dualbound = 3657872.348377, lowerbound=1296329.348377, norm of subgrad 1139.106820 dualbound = 3657872.348377, lowerbound=1296329.348377, norm of subgrad 35.865451 stepsize= 1.000000 +dualbound = 3657971.367050, lowerbound=1296122.367050, norm of subgrad 1138.994454 dualbound = 3657971.367050, lowerbound=1296122.367050, norm of subgrad 35.847157 stepsize= 1.000000 +dualbound = 3658016.752677, lowerbound=1295081.752677, norm of subgrad 1138.563021 dualbound = 3658016.752677, lowerbound=1295081.752677, norm of subgrad 35.908016 stepsize= 1.000000 +dualbound = 3658063.766146, lowerbound=1293281.766146, norm of subgrad 1137.807438 dualbound = 3658063.766146, lowerbound=1293281.766146, norm of subgrad 37.027199 stepsize= 1.000000 +dualbound = 3658133.152923, lowerbound=1291673.152923, norm of subgrad 1137.077022 dualbound = 3658133.152923, lowerbound=1291673.152923, norm of subgrad 36.611293 stepsize= 1.000000 +dualbound = 3658196.649573, lowerbound=1298395.649573, norm of subgrad 1140.015636 dualbound = 3658196.649573, lowerbound=1298395.649573, norm of subgrad 36.103970 stepsize= 1.000000 +dualbound = 3658275.069864, lowerbound=1292077.069864, norm of subgrad 1137.236154 dualbound = 3658275.069864, lowerbound=1292077.069864, norm of subgrad 36.158267 stepsize= 1.000000 +dualbound = 3658342.983823, lowerbound=1298335.983823, norm of subgrad 1139.993414 dualbound = 3658342.983823, lowerbound=1298335.983823, norm of subgrad 36.289309 stepsize= 1.000000 +dualbound = 3658408.115036, lowerbound=1293038.115036, norm of subgrad 1137.679267 dualbound = 3658408.115036, lowerbound=1293038.115036, norm of subgrad 36.621458 stepsize= 1.000000 +dualbound = 3658462.002636, lowerbound=1297605.002636, norm of subgrad 1139.656967 dualbound = 3658462.002636, lowerbound=1297605.002636, norm of subgrad 35.593365 stepsize= 1.000000 +dualbound = 3658556.138449, lowerbound=1295838.138449, norm of subgrad 1138.859578 dualbound = 3658556.138449, lowerbound=1295838.138449, norm of subgrad 35.456111 stepsize= 1.000000 +dualbound = 3658602.104511, lowerbound=1296719.104511, norm of subgrad 1139.265160 dualbound = 3658602.104511, lowerbound=1296719.104511, norm of subgrad 35.383132 stepsize= 1.000000 +dualbound = 3658656.321201, lowerbound=1298011.321201, norm of subgrad 1139.860659 dualbound = 3658656.321201, lowerbound=1298011.321201, norm of subgrad 36.403526 stepsize= 1.000000 +dualbound = 3658732.759916, lowerbound=1290327.759916, norm of subgrad 1136.462388 dualbound = 3658732.759916, lowerbound=1290327.759916, norm of subgrad 35.992204 stepsize= 1.000000 +dualbound = 3658788.305010, lowerbound=1296443.305010, norm of subgrad 1139.134454 dualbound = 3658788.305010, lowerbound=1296443.305010, norm of subgrad 35.207174 stepsize= 1.000000 +dualbound = 3658872.609400, lowerbound=1293672.609400, norm of subgrad 1137.899648 dualbound = 3658872.609400, lowerbound=1293672.609400, norm of subgrad 35.032904 stepsize= 1.000000 +dualbound = 3658938.617022, lowerbound=1304041.617022, norm of subgrad 1142.480904 dualbound = 3658938.617022, lowerbound=1304041.617022, norm of subgrad 35.874888 stepsize= 1.000000 +dualbound = 3659010.067320, lowerbound=1290179.067320, norm of subgrad 1136.399167 dualbound = 3659010.067320, lowerbound=1290179.067320, norm of subgrad 35.992364 stepsize= 1.000000 +dualbound = 3659052.898020, lowerbound=1299834.898020, norm of subgrad 1140.644072 dualbound = 3659052.898020, lowerbound=1299834.898020, norm of subgrad 35.732768 stepsize= 1.000000 +dualbound = 3659133.850234, lowerbound=1292480.850234, norm of subgrad 1137.418503 dualbound = 3659133.850234, lowerbound=1292480.850234, norm of subgrad 36.344906 stepsize= 1.000000 +dualbound = 3659200.867495, lowerbound=1299704.867495, norm of subgrad 1140.625209 dualbound = 3659200.867495, lowerbound=1299704.867495, norm of subgrad 37.256104 stepsize= 1.000000 +dualbound = 3659237.169038, lowerbound=1291990.169038, norm of subgrad 1137.236198 dualbound = 3659237.169038, lowerbound=1291990.169038, norm of subgrad 36.773653 stepsize= 1.000000 +dualbound = 3659344.556735, lowerbound=1297905.556735, norm of subgrad 1139.806807 dualbound = 3659344.556735, lowerbound=1297905.556735, norm of subgrad 36.896988 stepsize= 1.000000 +dualbound = 3659398.428367, lowerbound=1294789.428367, norm of subgrad 1138.433761 dualbound = 3659398.428367, lowerbound=1294789.428367, norm of subgrad 35.998217 stepsize= 1.000000 +dualbound = 3659455.627692, lowerbound=1295623.627692, norm of subgrad 1138.822913 dualbound = 3659455.627692, lowerbound=1295623.627692, norm of subgrad 36.758663 stepsize= 1.000000 +dualbound = 3659510.001107, lowerbound=1292473.001107, norm of subgrad 1137.440109 dualbound = 3659510.001107, lowerbound=1292473.001107, norm of subgrad 36.761031 stepsize= 1.000000 +dualbound = 3659592.939141, lowerbound=1301853.939141, norm of subgrad 1141.543227 dualbound = 3659592.939141, lowerbound=1301853.939141, norm of subgrad 36.741503 stepsize= 1.000000 +dualbound = 3659649.763274, lowerbound=1287274.763274, norm of subgrad 1135.140856 dualbound = 3659649.763274, lowerbound=1287274.763274, norm of subgrad 36.425597 stepsize= 1.000000 +dualbound = 3659700.058751, lowerbound=1296976.058751, norm of subgrad 1139.402062 dualbound = 3659700.058751, lowerbound=1296976.058751, norm of subgrad 36.211814 stepsize= 1.000000 +dualbound = 3659798.958019, lowerbound=1292389.958019, norm of subgrad 1137.403604 dualbound = 3659798.958019, lowerbound=1292389.958019, norm of subgrad 37.361735 stepsize= 1.000000 +dualbound = 3659849.573321, lowerbound=1298940.573321, norm of subgrad 1140.243208 dualbound = 3659849.573321, lowerbound=1298940.573321, norm of subgrad 35.561430 stepsize= 1.000000 +dualbound = 3659933.664348, lowerbound=1291361.664348, norm of subgrad 1136.916296 dualbound = 3659933.664348, lowerbound=1291361.664348, norm of subgrad 36.070639 stepsize= 1.000000 +dualbound = 3659983.372176, lowerbound=1296204.372176, norm of subgrad 1139.044500 dualbound = 3659983.372176, lowerbound=1296204.372176, norm of subgrad 35.604885 stepsize= 1.000000 +dualbound = 3660077.084821, lowerbound=1295092.084821, norm of subgrad 1138.552627 dualbound = 3660077.084821, lowerbound=1295092.084821, norm of subgrad 36.106961 stepsize= 1.000000 +dualbound = 3660126.007017, lowerbound=1299159.007017, norm of subgrad 1140.356088 dualbound = 3660126.007017, lowerbound=1299159.007017, norm of subgrad 36.082159 stepsize= 1.000000 +dualbound = 3660191.168894, lowerbound=1291230.168894, norm of subgrad 1136.850548 dualbound = 3660191.168894, lowerbound=1291230.168894, norm of subgrad 35.555054 stepsize= 1.000000 +dualbound = 3660259.590424, lowerbound=1298370.590424, norm of subgrad 1139.964732 dualbound = 3660259.590424, lowerbound=1298370.590424, norm of subgrad 34.891568 stepsize= 1.000000 +dualbound = 3660345.328835, lowerbound=1289440.328835, norm of subgrad 1136.043278 dualbound = 3660345.328835, lowerbound=1289440.328835, norm of subgrad 35.209919 stepsize= 1.000000 +dualbound = 3660406.096175, lowerbound=1295232.096175, norm of subgrad 1138.602695 dualbound = 3660406.096175, lowerbound=1295232.096175, norm of subgrad 35.281260 stepsize= 1.000000 +dualbound = 3660451.525523, lowerbound=1293953.525523, norm of subgrad 1138.051636 dualbound = 3660451.525523, lowerbound=1293953.525523, norm of subgrad 35.403804 stepsize= 1.000000 +dualbound = 3660521.574481, lowerbound=1294821.574481, norm of subgrad 1138.432068 dualbound = 3660521.574481, lowerbound=1294821.574481, norm of subgrad 35.721827 stepsize= 1.000000 +dualbound = 3660590.503574, lowerbound=1297956.503574, norm of subgrad 1139.838367 dualbound = 3660590.503574, lowerbound=1297956.503574, norm of subgrad 36.659638 stepsize= 1.000000 +dualbound = 3660628.644613, lowerbound=1291574.644613, norm of subgrad 1137.027988 dualbound = 3660628.644613, lowerbound=1291574.644613, norm of subgrad 36.001959 stepsize= 1.000000 +dualbound = 3660702.726608, lowerbound=1298499.726608, norm of subgrad 1140.078386 dualbound = 3660702.726608, lowerbound=1298499.726608, norm of subgrad 36.784263 stepsize= 1.000000 +dualbound = 3660779.142226, lowerbound=1295828.142226, norm of subgrad 1138.863531 dualbound = 3660779.142226, lowerbound=1295828.142226, norm of subgrad 35.474154 stepsize= 1.000000 +dualbound = 3660863.916685, lowerbound=1294510.916685, norm of subgrad 1138.271021 dualbound = 3660863.916685, lowerbound=1294510.916685, norm of subgrad 35.139358 stepsize= 1.000000 +dualbound = 3660914.711947, lowerbound=1296901.711947, norm of subgrad 1139.364609 dualbound = 3660914.711947, lowerbound=1296901.711947, norm of subgrad 36.066539 stepsize= 1.000000 +dualbound = 3660980.994877, lowerbound=1291304.994877, norm of subgrad 1136.874661 dualbound = 3660980.994877, lowerbound=1291304.994877, norm of subgrad 35.288567 stepsize= 1.000000 +dualbound = 3661049.501769, lowerbound=1299229.501769, norm of subgrad 1140.386558 dualbound = 3661049.501769, lowerbound=1299229.501769, norm of subgrad 36.338779 stepsize= 1.000000 +dualbound = 3661118.712124, lowerbound=1288481.712124, norm of subgrad 1135.665757 dualbound = 3661118.712124, lowerbound=1288481.712124, norm of subgrad 36.389701 stepsize= 1.000000 +dualbound = 3661162.324118, lowerbound=1298687.324118, norm of subgrad 1140.140046 dualbound = 3661162.324118, lowerbound=1298687.324118, norm of subgrad 35.715711 stepsize= 1.000000 +dualbound = 3661249.530772, lowerbound=1292465.530772, norm of subgrad 1137.419681 dualbound = 3661249.530772, lowerbound=1292465.530772, norm of subgrad 36.677059 stepsize= 1.000000 +dualbound = 3661287.764506, lowerbound=1299867.764506, norm of subgrad 1140.683464 dualbound = 3661287.764506, lowerbound=1299867.764506, norm of subgrad 36.458658 stepsize= 1.000000 +dualbound = 3661351.451806, lowerbound=1289181.451806, norm of subgrad 1135.994917 dualbound = 3661351.451806, lowerbound=1289181.451806, norm of subgrad 36.968734 stepsize= 1.000000 +dualbound = 3661435.682476, lowerbound=1298460.682476, norm of subgrad 1140.039334 dualbound = 3661435.682476, lowerbound=1298460.682476, norm of subgrad 36.238525 stepsize= 1.000000 +dualbound = 3661515.296594, lowerbound=1293552.296594, norm of subgrad 1137.871828 dualbound = 3661515.296594, lowerbound=1293552.296594, norm of subgrad 35.771694 stepsize= 1.000000 +dualbound = 3661581.788210, lowerbound=1300515.788210, norm of subgrad 1140.904811 dualbound = 3661581.788210, lowerbound=1300515.788210, norm of subgrad 34.849557 stepsize= 1.000000 +dualbound = 3661656.323831, lowerbound=1289737.323831, norm of subgrad 1136.224592 dualbound = 3661656.323831, lowerbound=1289737.323831, norm of subgrad 36.654272 stepsize= 1.000000 +dualbound = 3661684.192975, lowerbound=1293494.192975, norm of subgrad 1137.881449 dualbound = 3661684.192975, lowerbound=1293494.192975, norm of subgrad 36.164474 stepsize= 1.000000 +dualbound = 3661752.078820, lowerbound=1294239.078820, norm of subgrad 1138.188947 dualbound = 3661752.078820, lowerbound=1294239.078820, norm of subgrad 36.095510 stepsize= 1.000000 +dualbound = 3661843.801427, lowerbound=1291972.801427, norm of subgrad 1137.177999 dualbound = 3661843.801427, lowerbound=1291972.801427, norm of subgrad 35.954452 stepsize= 1.000000 +dualbound = 3661912.640634, lowerbound=1299289.640634, norm of subgrad 1140.377850 dualbound = 3661912.640634, lowerbound=1299289.640634, norm of subgrad 35.225548 stepsize= 1.000000 +dualbound = 3661984.497682, lowerbound=1296636.497682, norm of subgrad 1139.261821 dualbound = 3661984.497682, lowerbound=1296636.497682, norm of subgrad 36.781205 stepsize= 1.000000 +dualbound = 3662000.693431, lowerbound=1289921.693431, norm of subgrad 1136.301762 dualbound = 3662000.693431, lowerbound=1289921.693431, norm of subgrad 35.723882 stepsize= 1.000000 +dualbound = 3662079.472806, lowerbound=1304176.472806, norm of subgrad 1142.560490 dualbound = 3662079.472806, lowerbound=1304176.472806, norm of subgrad 36.698493 stepsize= 1.000000 +dualbound = 3662154.232209, lowerbound=1291618.232209, norm of subgrad 1137.037481 dualbound = 3662154.232209, lowerbound=1291618.232209, norm of subgrad 36.204411 stepsize= 1.000000 +dualbound = 3662206.328547, lowerbound=1299494.328547, norm of subgrad 1140.529846 dualbound = 3662206.328547, lowerbound=1299494.328547, norm of subgrad 36.960740 stepsize= 1.000000 +dualbound = 3662278.934245, lowerbound=1296022.934245, norm of subgrad 1138.986802 dualbound = 3662278.934245, lowerbound=1296022.934245, norm of subgrad 36.614283 stepsize= 1.000000 +dualbound = 3662340.497544, lowerbound=1297322.497544, norm of subgrad 1139.534772 dualbound = 3662340.497544, lowerbound=1297322.497544, norm of subgrad 35.757003 stepsize= 1.000000 +dualbound = 3662441.905115, lowerbound=1297273.905115, norm of subgrad 1139.521788 dualbound = 3662441.905115, lowerbound=1297273.905115, norm of subgrad 36.570583 stepsize= 1.000000 +dualbound = 3662489.867616, lowerbound=1300393.867616, norm of subgrad 1140.871539 dualbound = 3662489.867616, lowerbound=1300393.867616, norm of subgrad 35.241488 stepsize= 1.000000 +dualbound = 3662582.119844, lowerbound=1296428.119844, norm of subgrad 1139.120766 dualbound = 3662582.119844, lowerbound=1296428.119844, norm of subgrad 35.500031 stepsize= 1.000000 +dualbound = 3662619.548632, lowerbound=1298346.548632, norm of subgrad 1139.986644 dualbound = 3662619.548632, lowerbound=1298346.548632, norm of subgrad 35.502518 stepsize= 1.000000 +dualbound = 3662691.328714, lowerbound=1295344.328714, norm of subgrad 1138.684034 dualbound = 3662691.328714, lowerbound=1295344.328714, norm of subgrad 36.452436 stepsize= 1.000000 +dualbound = 3662730.247413, lowerbound=1298173.247413, norm of subgrad 1139.933001 dualbound = 3662730.247413, lowerbound=1298173.247413, norm of subgrad 36.234220 stepsize= 1.000000 +dualbound = 3662819.909008, lowerbound=1290928.909008, norm of subgrad 1136.740036 dualbound = 3662819.909008, lowerbound=1290928.909008, norm of subgrad 36.587725 stepsize= 1.000000 +dualbound = 3662861.437315, lowerbound=1302487.437315, norm of subgrad 1141.793956 dualbound = 3662861.437315, lowerbound=1302487.437315, norm of subgrad 35.320367 stepsize= 1.000000 +dualbound = 3662963.543545, lowerbound=1294688.543545, norm of subgrad 1138.363977 dualbound = 3662963.543545, lowerbound=1294688.543545, norm of subgrad 35.862323 stepsize= 1.000000 +dualbound = 3662992.172939, lowerbound=1293999.172939, norm of subgrad 1138.098051 dualbound = 3662992.172939, lowerbound=1293999.172939, norm of subgrad 36.008741 stepsize= 1.000000 +dualbound = 3663045.259566, lowerbound=1300573.259566, norm of subgrad 1140.967247 dualbound = 3663045.259566, lowerbound=1300573.259566, norm of subgrad 35.862050 stepsize= 1.000000 +dualbound = 3663147.444497, lowerbound=1297245.444497, norm of subgrad 1139.503157 dualbound = 3663147.444497, lowerbound=1297245.444497, norm of subgrad 36.389352 stepsize= 1.000000 +dualbound = 3663183.953209, lowerbound=1290986.953209, norm of subgrad 1136.760728 dualbound = 3663183.953209, lowerbound=1290986.953209, norm of subgrad 35.700262 stepsize= 1.000000 +dualbound = 3663264.313061, lowerbound=1304199.313061, norm of subgrad 1142.556481 dualbound = 3663264.313061, lowerbound=1304199.313061, norm of subgrad 36.281674 stepsize= 1.000000 +dualbound = 3663314.248904, lowerbound=1291147.248904, norm of subgrad 1136.819356 dualbound = 3663314.248904, lowerbound=1291147.248904, norm of subgrad 35.509658 stepsize= 1.000000 +dualbound = 3663401.574974, lowerbound=1296715.574974, norm of subgrad 1139.272388 dualbound = 3663401.574974, lowerbound=1296715.574974, norm of subgrad 36.239841 stepsize= 1.000000 +dualbound = 3663469.923350, lowerbound=1293934.923350, norm of subgrad 1138.024131 dualbound = 3663469.923350, lowerbound=1293934.923350, norm of subgrad 35.104820 stepsize= 1.000000 +dualbound = 3663536.401079, lowerbound=1294966.401079, norm of subgrad 1138.476790 dualbound = 3663536.401079, lowerbound=1294966.401079, norm of subgrad 35.063909 stepsize= 1.000000 +dualbound = 3663615.808367, lowerbound=1287164.808367, norm of subgrad 1135.062909 dualbound = 3663615.808367, lowerbound=1287164.808367, norm of subgrad 35.810715 stepsize= 1.000000 +dualbound = 3663668.555105, lowerbound=1301735.555105, norm of subgrad 1141.449760 dualbound = 3663668.555105, lowerbound=1301735.555105, norm of subgrad 34.996382 stepsize= 1.000000 +dualbound = 3663743.051854, lowerbound=1292726.051854, norm of subgrad 1137.506067 dualbound = 3663743.051854, lowerbound=1292726.051854, norm of subgrad 35.615962 stepsize= 1.000000 +dualbound = 3663795.626432, lowerbound=1299866.626432, norm of subgrad 1140.656665 dualbound = 3663795.626432, lowerbound=1299866.626432, norm of subgrad 35.827009 stepsize= 1.000000 +dualbound = 3663854.454592, lowerbound=1299019.454592, norm of subgrad 1140.297529 dualbound = 3663854.454592, lowerbound=1299019.454592, norm of subgrad 36.301903 stepsize= 1.000000 +dualbound = 3663902.411174, lowerbound=1294309.411174, norm of subgrad 1138.211936 dualbound = 3663902.411174, lowerbound=1294309.411174, norm of subgrad 35.566228 stepsize= 1.000000 +dualbound = 3663997.250929, lowerbound=1294048.250929, norm of subgrad 1138.105993 dualbound = 3663997.250929, lowerbound=1294048.250929, norm of subgrad 36.494380 stepsize= 1.000000 +dualbound = 3664042.100513, lowerbound=1299579.100513, norm of subgrad 1140.557364 dualbound = 3664042.100513, lowerbound=1299579.100513, norm of subgrad 36.562954 stepsize= 1.000000 +dualbound = 3664117.876564, lowerbound=1292493.876564, norm of subgrad 1137.429944 dualbound = 3664117.876564, lowerbound=1292493.876564, norm of subgrad 36.452381 stepsize= 1.000000 +dualbound = 3664176.727110, lowerbound=1300482.727110, norm of subgrad 1140.950800 dualbound = 3664176.727110, lowerbound=1300482.727110, norm of subgrad 36.672204 stepsize= 1.000000 +dualbound = 3664237.451551, lowerbound=1290095.451551, norm of subgrad 1136.378657 dualbound = 3664237.451551, lowerbound=1290095.451551, norm of subgrad 36.355528 stepsize= 1.000000 +dualbound = 3664313.777874, lowerbound=1298085.777874, norm of subgrad 1139.891564 dualbound = 3664313.777874, lowerbound=1298085.777874, norm of subgrad 36.651416 stepsize= 1.000000 +dualbound = 3664365.600842, lowerbound=1296778.600842, norm of subgrad 1139.308387 dualbound = 3664365.600842, lowerbound=1296778.600842, norm of subgrad 36.011428 stepsize= 1.000000 +dualbound = 3664437.341048, lowerbound=1296414.341049, norm of subgrad 1139.127886 dualbound = 3664437.341048, lowerbound=1296414.341049, norm of subgrad 35.633414 stepsize= 1.000000 +dualbound = 3664520.713845, lowerbound=1289486.713845, norm of subgrad 1136.129268 dualbound = 3664520.713845, lowerbound=1289486.713845, norm of subgrad 37.234027 stepsize= 1.000000 +dualbound = 3664554.091180, lowerbound=1297044.091180, norm of subgrad 1139.433671 dualbound = 3664554.091180, lowerbound=1297044.091180, norm of subgrad 36.033003 stepsize= 1.000000 +dualbound = 3664620.941779, lowerbound=1295287.941779, norm of subgrad 1138.636879 dualbound = 3664620.941779, lowerbound=1295287.941779, norm of subgrad 35.677032 stepsize= 1.000000 +dualbound = 3664717.630178, lowerbound=1297780.630178, norm of subgrad 1139.698921 dualbound = 3664717.630178, lowerbound=1297780.630178, norm of subgrad 35.066913 stepsize= 1.000000 +dualbound = 3664777.062442, lowerbound=1291927.062442, norm of subgrad 1137.162285 dualbound = 3664777.062442, lowerbound=1291927.062442, norm of subgrad 35.643124 stepsize= 1.000000 +dualbound = 3664833.464029, lowerbound=1297473.464029, norm of subgrad 1139.601888 dualbound = 3664833.464029, lowerbound=1297473.464029, norm of subgrad 35.712765 stepsize= 1.000000 +dualbound = 3664885.773613, lowerbound=1295318.773613, norm of subgrad 1138.668860 dualbound = 3664885.773613, lowerbound=1295318.773613, norm of subgrad 36.059806 stepsize= 1.000000 +dualbound = 3664949.731937, lowerbound=1297646.731937, norm of subgrad 1139.696772 dualbound = 3664949.731937, lowerbound=1297646.731937, norm of subgrad 36.413711 stepsize= 1.000000 +dualbound = 3665030.840910, lowerbound=1288859.840910, norm of subgrad 1135.831784 dualbound = 3665030.840910, lowerbound=1288859.840910, norm of subgrad 36.539143 stepsize= 1.000000 +dualbound = 3665079.834346, lowerbound=1295903.834346, norm of subgrad 1138.943297 dualbound = 3665079.834346, lowerbound=1295903.834346, norm of subgrad 36.564921 stepsize= 1.000000 +dualbound = 3665142.491538, lowerbound=1292594.491538, norm of subgrad 1137.459226 dualbound = 3665142.491538, lowerbound=1292594.491538, norm of subgrad 35.800240 stepsize= 1.000000 +dualbound = 3665223.256006, lowerbound=1296889.256006, norm of subgrad 1139.338517 dualbound = 3665223.256006, lowerbound=1296889.256006, norm of subgrad 35.829659 stepsize= 1.000000 +dualbound = 3665292.589008, lowerbound=1291116.589008, norm of subgrad 1136.834900 dualbound = 3665292.589008, lowerbound=1291116.589008, norm of subgrad 36.692411 stepsize= 1.000000 +dualbound = 3665338.208018, lowerbound=1298161.208018, norm of subgrad 1139.926405 dualbound = 3665338.208018, lowerbound=1298161.208018, norm of subgrad 36.285245 stepsize= 1.000000 +dualbound = 3665397.483331, lowerbound=1294442.483331, norm of subgrad 1138.284008 dualbound = 3665397.483331, lowerbound=1294442.483331, norm of subgrad 36.156262 stepsize= 1.000000 +dualbound = 3665487.284906, lowerbound=1296501.284906, norm of subgrad 1139.194577 dualbound = 3665487.284906, lowerbound=1296501.284906, norm of subgrad 36.780451 stepsize= 1.000000 +dualbound = 3665526.115525, lowerbound=1295811.115525, norm of subgrad 1138.898202 dualbound = 3665526.115525, lowerbound=1295811.115525, norm of subgrad 36.288161 stepsize= 1.000000 +dualbound = 3665592.825986, lowerbound=1292762.825986, norm of subgrad 1137.547725 dualbound = 3665592.825986, lowerbound=1292762.825986, norm of subgrad 36.314053 stepsize= 1.000000 +dualbound = 3665654.485956, lowerbound=1292684.485956, norm of subgrad 1137.536147 dualbound = 3665654.485956, lowerbound=1292684.485956, norm of subgrad 36.954837 stepsize= 1.000000 +dualbound = 3665726.767161, lowerbound=1298297.767161, norm of subgrad 1139.999021 dualbound = 3665726.767161, lowerbound=1298297.767161, norm of subgrad 37.044314 stepsize= 1.000000 +dualbound = 3665776.201730, lowerbound=1298143.201730, norm of subgrad 1139.945263 dualbound = 3665776.201730, lowerbound=1298143.201730, norm of subgrad 37.167655 stepsize= 1.000000 +dualbound = 3665834.378992, lowerbound=1296769.378992, norm of subgrad 1139.323211 dualbound = 3665834.378992, lowerbound=1296769.378992, norm of subgrad 36.690288 stepsize= 1.000000 +dualbound = 3665919.460970, lowerbound=1293906.460970, norm of subgrad 1138.026125 dualbound = 3665919.460970, lowerbound=1293906.460970, norm of subgrad 35.806172 stepsize= 1.000000 +dualbound = 3666017.572310, lowerbound=1296955.572310, norm of subgrad 1139.399216 dualbound = 3666017.572310, lowerbound=1296955.572310, norm of subgrad 37.055517 stepsize= 1.000000 +dualbound = 3666038.170344, lowerbound=1293601.170344, norm of subgrad 1137.928456 dualbound = 3666038.170344, lowerbound=1293601.170344, norm of subgrad 36.063805 stepsize= 1.000000 +dualbound = 3666113.827079, lowerbound=1296000.827079, norm of subgrad 1138.934514 dualbound = 3666113.827079, lowerbound=1296000.827079, norm of subgrad 35.308026 stepsize= 1.000000 +dualbound = 3666197.894189, lowerbound=1296075.894189, norm of subgrad 1138.974492 dualbound = 3666197.894189, lowerbound=1296075.894189, norm of subgrad 35.652028 stepsize= 1.000000 +dualbound = 3666276.075705, lowerbound=1298019.075705, norm of subgrad 1139.829406 dualbound = 3666276.075705, lowerbound=1298019.075705, norm of subgrad 35.639606 stepsize= 1.000000 +dualbound = 3666325.246182, lowerbound=1293324.246182, norm of subgrad 1137.771614 dualbound = 3666325.246182, lowerbound=1293324.246182, norm of subgrad 35.343606 stepsize= 1.000000 +dualbound = 3666383.890082, lowerbound=1302164.890082, norm of subgrad 1141.682920 dualbound = 3666383.890082, lowerbound=1302164.890082, norm of subgrad 36.519090 stepsize= 1.000000 +dualbound = 3666416.370157, lowerbound=1291454.370157, norm of subgrad 1136.992247 dualbound = 3666416.370157, lowerbound=1291454.370157, norm of subgrad 36.462036 stepsize= 1.000000 +dualbound = 3666503.713278, lowerbound=1301665.713278, norm of subgrad 1141.434498 dualbound = 3666503.713278, lowerbound=1301665.713278, norm of subgrad 35.976980 stepsize= 1.000000 +dualbound = 3666598.870453, lowerbound=1298871.870453, norm of subgrad 1140.209573 dualbound = 3666598.870453, lowerbound=1298871.870453, norm of subgrad 36.071556 stepsize= 1.000000 +dualbound = 3666656.427998, lowerbound=1299315.427998, norm of subgrad 1140.447907 dualbound = 3666656.427998, lowerbound=1299315.427998, norm of subgrad 36.926380 stepsize= 1.000000 +dualbound = 3666692.337372, lowerbound=1297448.337372, norm of subgrad 1139.595690 dualbound = 3666692.337372, lowerbound=1297448.337372, norm of subgrad 35.579620 stepsize= 1.000000 +dualbound = 3666766.856741, lowerbound=1294388.856741, norm of subgrad 1138.239806 dualbound = 3666766.856741, lowerbound=1294388.856741, norm of subgrad 35.714414 stepsize= 1.000000 +dualbound = 3666847.786402, lowerbound=1295828.786402, norm of subgrad 1138.898936 dualbound = 3666847.786402, lowerbound=1295828.786402, norm of subgrad 36.646005 stepsize= 1.000000 +dualbound = 3666912.657287, lowerbound=1298078.657287, norm of subgrad 1139.871772 dualbound = 3666912.657287, lowerbound=1298078.657287, norm of subgrad 35.970417 stepsize= 1.000000 +dualbound = 3666954.566448, lowerbound=1290213.566448, norm of subgrad 1136.437665 dualbound = 3666954.566448, lowerbound=1290213.566448, norm of subgrad 36.316789 stepsize= 1.000000 +dualbound = 3667031.485377, lowerbound=1304293.485377, norm of subgrad 1142.604256 dualbound = 3667031.485377, lowerbound=1304293.485377, norm of subgrad 36.440622 stepsize= 1.000000 +dualbound = 3667090.589390, lowerbound=1297370.589390, norm of subgrad 1139.563333 dualbound = 3667090.589390, lowerbound=1297370.589390, norm of subgrad 35.959755 stepsize= 1.000000 +dualbound = 3667188.605840, lowerbound=1295691.605840, norm of subgrad 1138.807976 dualbound = 3667188.605840, lowerbound=1295691.605840, norm of subgrad 35.916799 stepsize= 1.000000 +dualbound = 3667212.562893, lowerbound=1297747.562893, norm of subgrad 1139.761187 dualbound = 3667212.562893, lowerbound=1297747.562893, norm of subgrad 36.495987 stepsize= 1.000000 +dualbound = 3667311.943647, lowerbound=1298186.943647, norm of subgrad 1139.928043 dualbound = 3667311.943647, lowerbound=1298186.943647, norm of subgrad 36.720304 stepsize= 1.000000 +dualbound = 3667325.484282, lowerbound=1299323.484282, norm of subgrad 1140.426887 dualbound = 3667325.484282, lowerbound=1299323.484282, norm of subgrad 35.546317 stepsize= 1.000000 +dualbound = 3667435.277414, lowerbound=1297304.277414, norm of subgrad 1139.529411 dualbound = 3667435.277414, lowerbound=1297304.277414, norm of subgrad 36.507439 stepsize= 1.000000 +dualbound = 3667489.496533, lowerbound=1290363.496533, norm of subgrad 1136.477231 dualbound = 3667489.496533, lowerbound=1290363.496533, norm of subgrad 35.654160 stepsize= 1.000000 +dualbound = 3667572.732747, lowerbound=1298850.732747, norm of subgrad 1140.202058 dualbound = 3667572.732747, lowerbound=1298850.732747, norm of subgrad 35.961594 stepsize= 1.000000 +dualbound = 3667619.018133, lowerbound=1297899.018133, norm of subgrad 1139.792094 dualbound = 3667619.018133, lowerbound=1297899.018133, norm of subgrad 35.683125 stepsize= 1.000000 +dualbound = 3667689.921517, lowerbound=1299140.921517, norm of subgrad 1140.321850 dualbound = 3667689.921517, lowerbound=1299140.921517, norm of subgrad 35.551419 stepsize= 1.000000 +dualbound = 3667782.949510, lowerbound=1294035.949510, norm of subgrad 1138.089166 dualbound = 3667782.949510, lowerbound=1294035.949510, norm of subgrad 36.111328 stepsize= 1.000000 +dualbound = 3667816.949100, lowerbound=1299875.949100, norm of subgrad 1140.694941 dualbound = 3667816.949100, lowerbound=1299875.949100, norm of subgrad 36.646959 stepsize= 1.000000 +dualbound = 3667853.906984, lowerbound=1296725.906984, norm of subgrad 1139.280873 dualbound = 3667853.906984, lowerbound=1296725.906984, norm of subgrad 35.664519 stepsize= 1.000000 +dualbound = 3667965.660837, lowerbound=1294335.660837, norm of subgrad 1138.243234 dualbound = 3667965.660837, lowerbound=1294335.660837, norm of subgrad 37.064186 stepsize= 1.000000 +dualbound = 3668006.686422, lowerbound=1299493.686422, norm of subgrad 1140.501945 dualbound = 3668006.686422, lowerbound=1299493.686422, norm of subgrad 35.944757 stepsize= 1.000000 +dualbound = 3668068.728423, lowerbound=1290095.728423, norm of subgrad 1136.359859 dualbound = 3668068.728423, lowerbound=1290095.728423, norm of subgrad 35.777675 stepsize= 1.000000 +dualbound = 3668159.044127, lowerbound=1293021.044127, norm of subgrad 1137.639242 dualbound = 3668159.044127, lowerbound=1293021.044127, norm of subgrad 35.948793 stepsize= 1.000000 +dualbound = 3668231.038117, lowerbound=1300201.038117, norm of subgrad 1140.807187 dualbound = 3668231.038117, lowerbound=1300201.038117, norm of subgrad 36.221458 stepsize= 1.000000 +dualbound = 3668274.011696, lowerbound=1294973.011696, norm of subgrad 1138.505605 dualbound = 3668274.011696, lowerbound=1294973.011696, norm of subgrad 35.566467 stepsize= 1.000000 +dualbound = 3668339.327950, lowerbound=1293698.327950, norm of subgrad 1137.918858 dualbound = 3668339.327950, lowerbound=1293698.327950, norm of subgrad 35.018799 stepsize= 1.000000 +dualbound = 3668424.504114, lowerbound=1292893.504114, norm of subgrad 1137.583625 dualbound = 3668424.504114, lowerbound=1292893.504114, norm of subgrad 35.891171 stepsize= 1.000000 +dualbound = 3668481.597832, lowerbound=1298999.597832, norm of subgrad 1140.291453 dualbound = 3668481.597832, lowerbound=1298999.597832, norm of subgrad 36.360607 stepsize= 1.000000 +dualbound = 3668514.761295, lowerbound=1295811.761295, norm of subgrad 1138.898486 dualbound = 3668514.761295, lowerbound=1295811.761295, norm of subgrad 36.209991 stepsize= 1.000000 +dualbound = 3668603.039531, lowerbound=1296305.039531, norm of subgrad 1139.107124 dualbound = 3668603.039531, lowerbound=1296305.039531, norm of subgrad 36.718908 stepsize= 1.000000 +dualbound = 3668656.659070, lowerbound=1295923.659070, norm of subgrad 1138.940147 dualbound = 3668656.659070, lowerbound=1295923.659070, norm of subgrad 36.257682 stepsize= 1.000000 +dualbound = 3668728.384392, lowerbound=1298808.384392, norm of subgrad 1140.215938 dualbound = 3668728.384392, lowerbound=1298808.384392, norm of subgrad 36.820175 stepsize= 1.000000 +dualbound = 3668777.023790, lowerbound=1294944.023790, norm of subgrad 1138.512197 dualbound = 3668777.023790, lowerbound=1294944.023790, norm of subgrad 36.257956 stepsize= 1.000000 +dualbound = 3668849.148326, lowerbound=1299397.148326, norm of subgrad 1140.467513 dualbound = 3668849.148326, lowerbound=1299397.148326, norm of subgrad 36.621367 stepsize= 1.000000 +dualbound = 3668929.983599, lowerbound=1295089.983599, norm of subgrad 1138.550826 dualbound = 3668929.983599, lowerbound=1295089.983599, norm of subgrad 35.900352 stepsize= 1.000000 +dualbound = 3668995.061880, lowerbound=1301343.061880, norm of subgrad 1141.278258 dualbound = 3668995.061880, lowerbound=1301343.061880, norm of subgrad 35.186337 stepsize= 1.000000 +dualbound = 3669058.423980, lowerbound=1296537.423980, norm of subgrad 1139.189371 dualbound = 3669058.423980, lowerbound=1296537.423980, norm of subgrad 35.754190 stepsize= 1.000000 +dualbound = 3669122.229842, lowerbound=1295720.229842, norm of subgrad 1138.838983 dualbound = 3669122.229842, lowerbound=1295720.229842, norm of subgrad 36.025073 stepsize= 1.000000 +dualbound = 3669168.157269, lowerbound=1296368.157269, norm of subgrad 1139.122538 dualbound = 3669168.157269, lowerbound=1296368.157269, norm of subgrad 35.748111 stepsize= 1.000000 +dualbound = 3669237.157510, lowerbound=1294182.157510, norm of subgrad 1138.161306 dualbound = 3669237.157510, lowerbound=1294182.157510, norm of subgrad 36.027770 stepsize= 1.000000 +dualbound = 3669319.609515, lowerbound=1296708.609515, norm of subgrad 1139.267137 dualbound = 3669319.609515, lowerbound=1296708.609515, norm of subgrad 36.103352 stepsize= 1.000000 +dualbound = 3669376.345221, lowerbound=1298456.345221, norm of subgrad 1140.048396 dualbound = 3669376.345221, lowerbound=1298456.345221, norm of subgrad 36.204084 stepsize= 1.000000 +dualbound = 3669433.881814, lowerbound=1294646.881814, norm of subgrad 1138.386086 dualbound = 3669433.881814, lowerbound=1294646.881814, norm of subgrad 36.517620 stepsize= 1.000000 +dualbound = 3669500.688315, lowerbound=1296896.688315, norm of subgrad 1139.357138 dualbound = 3669500.688315, lowerbound=1296896.688315, norm of subgrad 36.122105 stepsize= 1.000000 +dualbound = 3669566.899278, lowerbound=1292119.899278, norm of subgrad 1137.246191 dualbound = 3669566.899278, lowerbound=1292119.899278, norm of subgrad 35.710096 stepsize= 1.000000 +dualbound = 3669643.404920, lowerbound=1295934.404920, norm of subgrad 1138.925109 dualbound = 3669643.404920, lowerbound=1295934.404920, norm of subgrad 35.951434 stepsize= 1.000000 +dualbound = 3669717.849455, lowerbound=1295007.849455, norm of subgrad 1138.517830 dualbound = 3669717.849455, lowerbound=1295007.849455, norm of subgrad 35.908836 stepsize= 1.000000 +dualbound = 3669757.202120, lowerbound=1296255.202120, norm of subgrad 1139.079542 dualbound = 3669757.202120, lowerbound=1296255.202120, norm of subgrad 35.865759 stepsize= 1.000000 +dualbound = 3669824.169094, lowerbound=1293614.169094, norm of subgrad 1137.920546 dualbound = 3669824.169094, lowerbound=1293614.169094, norm of subgrad 36.276259 stepsize= 1.000000 +dualbound = 3669897.354810, lowerbound=1295665.354810, norm of subgrad 1138.811378 dualbound = 3669897.354810, lowerbound=1295665.354810, norm of subgrad 36.044219 stepsize= 1.000000 +dualbound = 3669940.737407, lowerbound=1294142.737407, norm of subgrad 1138.142231 dualbound = 3669940.737407, lowerbound=1294142.737407, norm of subgrad 35.614359 stepsize= 1.000000 +dualbound = 3670019.940325, lowerbound=1300795.940325, norm of subgrad 1141.086737 dualbound = 3670019.940325, lowerbound=1300795.940325, norm of subgrad 36.908033 stepsize= 1.000000 +dualbound = 3670066.735755, lowerbound=1295388.735755, norm of subgrad 1138.700898 dualbound = 3670066.735755, lowerbound=1295388.735755, norm of subgrad 36.024928 stepsize= 1.000000 +dualbound = 3670147.887721, lowerbound=1299229.887721, norm of subgrad 1140.381904 dualbound = 3670147.887721, lowerbound=1299229.887721, norm of subgrad 36.361408 stepsize= 1.000000 +dualbound = 3670222.868383, lowerbound=1293399.868383, norm of subgrad 1137.824621 dualbound = 3670222.868383, lowerbound=1293399.868383, norm of subgrad 36.331538 stepsize= 1.000000 +dualbound = 3670299.722331, lowerbound=1301466.722331, norm of subgrad 1141.381497 dualbound = 3670299.722331, lowerbound=1301466.722331, norm of subgrad 36.903305 stepsize= 1.000000 +dualbound = 3670333.266305, lowerbound=1296861.266305, norm of subgrad 1139.362658 dualbound = 3670333.266305, lowerbound=1296861.266305, norm of subgrad 36.325528 stepsize= 1.000000 +dualbound = 3670396.081640, lowerbound=1300705.081640, norm of subgrad 1141.055249 dualbound = 3670396.081640, lowerbound=1300705.081640, norm of subgrad 36.943407 stepsize= 1.000000 +dualbound = 3670463.172136, lowerbound=1298065.172136, norm of subgrad 1139.889982 dualbound = 3670463.172136, lowerbound=1298065.172136, norm of subgrad 36.757183 stepsize= 1.000000 +dualbound = 3670532.931136, lowerbound=1301988.931136, norm of subgrad 1141.589213 dualbound = 3670532.931136, lowerbound=1301988.931136, norm of subgrad 36.149122 stepsize= 1.000000 +dualbound = 3670597.572090, lowerbound=1291049.572090, norm of subgrad 1136.792669 dualbound = 3670597.572090, lowerbound=1291049.572090, norm of subgrad 36.230387 stepsize= 1.000000 +dualbound = 3670656.461279, lowerbound=1299436.461279, norm of subgrad 1140.474226 dualbound = 3670656.461279, lowerbound=1299436.461279, norm of subgrad 36.109406 stepsize= 1.000000 +dualbound = 3670719.315268, lowerbound=1294500.315268, norm of subgrad 1138.319074 dualbound = 3670719.315268, lowerbound=1294500.315268, norm of subgrad 36.508273 stepsize= 1.000000 +dualbound = 3670800.188342, lowerbound=1298866.188342, norm of subgrad 1140.204889 dualbound = 3670800.188342, lowerbound=1298866.188342, norm of subgrad 35.803255 stepsize= 1.000000 +dualbound = 3670848.935413, lowerbound=1293701.935413, norm of subgrad 1137.949004 dualbound = 3670848.935413, lowerbound=1293701.935413, norm of subgrad 35.703600 stepsize= 1.000000 +dualbound = 3670940.590136, lowerbound=1298395.590136, norm of subgrad 1140.011224 dualbound = 3670940.590136, lowerbound=1298395.590136, norm of subgrad 36.354569 stepsize= 1.000000 +dualbound = 3670994.683711, lowerbound=1293178.683711, norm of subgrad 1137.730497 dualbound = 3670994.683711, lowerbound=1293178.683711, norm of subgrad 36.139917 stepsize= 1.000000 +dualbound = 3671065.445427, lowerbound=1294712.445427, norm of subgrad 1138.401267 dualbound = 3671065.445427, lowerbound=1294712.445427, norm of subgrad 36.273430 stepsize= 1.000000 +dualbound = 3671114.242219, lowerbound=1293054.242219, norm of subgrad 1137.700418 dualbound = 3671114.242219, lowerbound=1293054.242219, norm of subgrad 36.834723 stepsize= 1.000000 +dualbound = 3671182.379206, lowerbound=1301980.379206, norm of subgrad 1141.583715 dualbound = 3671182.379206, lowerbound=1301980.379206, norm of subgrad 36.071276 stepsize= 1.000000 +dualbound = 3671248.640916, lowerbound=1297058.640916, norm of subgrad 1139.445322 dualbound = 3671248.640916, lowerbound=1297058.640916, norm of subgrad 36.650535 stepsize= 1.000000 +dualbound = 3671327.107087, lowerbound=1297186.107087, norm of subgrad 1139.483263 dualbound = 3671327.107087, lowerbound=1297186.107087, norm of subgrad 36.255567 stepsize= 1.000000 +dualbound = 3671379.234514, lowerbound=1300945.234514, norm of subgrad 1141.135940 dualbound = 3671379.234514, lowerbound=1300945.234514, norm of subgrad 36.029535 stepsize= 1.000000 +dualbound = 3671459.513382, lowerbound=1294936.513382, norm of subgrad 1138.482549 dualbound = 3671459.513382, lowerbound=1294936.513382, norm of subgrad 35.864730 stepsize= 1.000000 +dualbound = 3671517.934118, lowerbound=1297497.934118, norm of subgrad 1139.573576 dualbound = 3671517.934118, lowerbound=1297497.934118, norm of subgrad 34.473479 stepsize= 1.000000 +dualbound = 3671609.412790, lowerbound=1295422.412790, norm of subgrad 1138.712612 dualbound = 3671609.412790, lowerbound=1295422.412790, norm of subgrad 36.544202 stepsize= 1.000000 +dualbound = 3671639.657668, lowerbound=1298221.657668, norm of subgrad 1139.969148 dualbound = 3671639.657668, lowerbound=1298221.657668, norm of subgrad 36.582029 stepsize= 1.000000 +dualbound = 3671702.222442, lowerbound=1296710.222442, norm of subgrad 1139.271795 dualbound = 3671702.222442, lowerbound=1296710.222442, norm of subgrad 35.952257 stepsize= 1.000000 +dualbound = 3671761.805975, lowerbound=1297146.805975, norm of subgrad 1139.459875 dualbound = 3671761.805975, lowerbound=1297146.805975, norm of subgrad 35.799211 stepsize= 1.000000 +dualbound = 3671837.827540, lowerbound=1299645.827540, norm of subgrad 1140.554176 dualbound = 3671837.827540, lowerbound=1299645.827540, norm of subgrad 35.972511 stepsize= 1.000000 +dualbound = 3671900.039983, lowerbound=1292953.039983, norm of subgrad 1137.615506 dualbound = 3671900.039983, lowerbound=1292953.039983, norm of subgrad 35.752097 stepsize= 1.000000 +dualbound = 3671983.938390, lowerbound=1295756.938390, norm of subgrad 1138.844124 dualbound = 3671983.938390, lowerbound=1295756.938390, norm of subgrad 35.956897 stepsize= 1.000000 +dualbound = 3672024.060726, lowerbound=1298224.060726, norm of subgrad 1139.938621 dualbound = 3672024.060726, lowerbound=1298224.060726, norm of subgrad 35.722855 stepsize= 1.000000 +dualbound = 3672095.033372, lowerbound=1299803.033372, norm of subgrad 1140.632295 dualbound = 3672095.033372, lowerbound=1299803.033372, norm of subgrad 36.193544 stepsize= 1.000000 +dualbound = 3672133.129906, lowerbound=1300305.129906, norm of subgrad 1140.870339 dualbound = 3672133.129906, lowerbound=1300305.129906, norm of subgrad 36.305599 stepsize= 1.000000 +dualbound = 3672223.291510, lowerbound=1299406.291510, norm of subgrad 1140.455739 dualbound = 3672223.291510, lowerbound=1299406.291510, norm of subgrad 36.375288 stepsize= 1.000000 +dualbound = 3672277.631036, lowerbound=1298051.631036, norm of subgrad 1139.843687 dualbound = 3672277.631036, lowerbound=1298051.631036, norm of subgrad 35.303534 stepsize= 1.000000 +dualbound = 3672367.840727, lowerbound=1293519.840727, norm of subgrad 1137.857127 dualbound = 3672367.840727, lowerbound=1293519.840727, norm of subgrad 35.905566 stepsize= 1.000000 +dualbound = 3672405.908261, lowerbound=1296910.908261, norm of subgrad 1139.379616 dualbound = 3672405.908261, lowerbound=1296910.908261, norm of subgrad 36.236274 stepsize= 1.000000 +dualbound = 3672473.524163, lowerbound=1297842.524163, norm of subgrad 1139.763802 dualbound = 3672473.524163, lowerbound=1297842.524163, norm of subgrad 35.869429 stepsize= 1.000000 +dualbound = 3672535.413875, lowerbound=1297027.413875, norm of subgrad 1139.419771 dualbound = 3672535.413875, lowerbound=1297027.413875, norm of subgrad 36.220018 stepsize= 1.000000 +dualbound = 3672593.425690, lowerbound=1290397.425690, norm of subgrad 1136.526914 dualbound = 3672593.425690, lowerbound=1290397.425690, norm of subgrad 36.796900 stepsize= 1.000000 +dualbound = 3672652.699482, lowerbound=1300287.699482, norm of subgrad 1140.856126 dualbound = 3672652.699482, lowerbound=1300287.699482, norm of subgrad 36.390573 stepsize= 1.000000 +dualbound = 3672744.122456, lowerbound=1292996.122456, norm of subgrad 1137.622575 dualbound = 3672744.122456, lowerbound=1292996.122456, norm of subgrad 35.782998 stepsize= 1.000000 +dualbound = 3672807.583442, lowerbound=1297239.583442, norm of subgrad 1139.526035 dualbound = 3672807.583442, lowerbound=1297239.583442, norm of subgrad 36.653253 stepsize= 1.000000 +dualbound = 3672858.331694, lowerbound=1298085.331694, norm of subgrad 1139.883473 dualbound = 3672858.331694, lowerbound=1298085.331694, norm of subgrad 36.052021 stepsize= 1.000000 +dualbound = 3672914.262260, lowerbound=1291452.262260, norm of subgrad 1136.972850 dualbound = 3672914.262260, lowerbound=1291452.262260, norm of subgrad 36.206775 stepsize= 1.000000 +dualbound = 3672990.408799, lowerbound=1304956.408799, norm of subgrad 1142.896062 dualbound = 3672990.408799, lowerbound=1304956.408799, norm of subgrad 36.484881 stepsize= 1.000000 +dualbound = 3673042.367485, lowerbound=1292864.367485, norm of subgrad 1137.587521 dualbound = 3673042.367485, lowerbound=1292864.367485, norm of subgrad 35.957735 stepsize= 1.000000 +dualbound = 3673100.509725, lowerbound=1300143.509725, norm of subgrad 1140.793369 dualbound = 3673100.509725, lowerbound=1300143.509725, norm of subgrad 36.388765 stepsize= 1.000000 +dualbound = 3673169.745497, lowerbound=1289446.745497, norm of subgrad 1136.073829 dualbound = 3673169.745497, lowerbound=1289446.745497, norm of subgrad 35.864129 stepsize= 1.000000 +dualbound = 3673254.418834, lowerbound=1301734.418834, norm of subgrad 1141.465908 dualbound = 3673254.418834, lowerbound=1301734.418834, norm of subgrad 35.981569 stepsize= 1.000000 +dualbound = 3673318.970322, lowerbound=1294098.970322, norm of subgrad 1138.149362 dualbound = 3673318.970322, lowerbound=1294098.970322, norm of subgrad 36.736242 stepsize= 1.000000 +dualbound = 3673375.539590, lowerbound=1297604.539590, norm of subgrad 1139.651938 dualbound = 3673375.539590, lowerbound=1297604.539590, norm of subgrad 35.476320 stepsize= 1.000000 +dualbound = 3673450.973310, lowerbound=1294457.973310, norm of subgrad 1138.291252 dualbound = 3673450.973310, lowerbound=1294457.973310, norm of subgrad 36.392770 stepsize= 1.000000 +dualbound = 3673514.811993, lowerbound=1297742.811993, norm of subgrad 1139.707775 dualbound = 3673514.811993, lowerbound=1297742.811993, norm of subgrad 35.423702 stepsize= 1.000000 +dualbound = 3673566.511726, lowerbound=1300398.511726, norm of subgrad 1140.874012 dualbound = 3673566.511726, lowerbound=1300398.511726, norm of subgrad 35.308635 stepsize= 1.000000 +dualbound = 3673655.968187, lowerbound=1295125.968187, norm of subgrad 1138.586390 dualbound = 3673655.968187, lowerbound=1295125.968187, norm of subgrad 36.639548 stepsize= 1.000000 +dualbound = 3673668.619503, lowerbound=1298689.619503, norm of subgrad 1140.156401 dualbound = 3673668.619503, lowerbound=1298689.619503, norm of subgrad 35.772214 stepsize= 1.000000 +dualbound = 3673755.633237, lowerbound=1295166.633237, norm of subgrad 1138.636304 dualbound = 3673755.633237, lowerbound=1295166.633237, norm of subgrad 37.590075 stepsize= 1.000000 +dualbound = 3673798.318284, lowerbound=1299458.318284, norm of subgrad 1140.472410 dualbound = 3673798.318284, lowerbound=1299458.318284, norm of subgrad 35.520206 stepsize= 1.000000 +dualbound = 3673916.377382, lowerbound=1296047.377382, norm of subgrad 1138.965486 dualbound = 3673916.377382, lowerbound=1296047.377382, norm of subgrad 36.236157 stepsize= 1.000000 +dualbound = 3673985.147131, lowerbound=1300598.147131, norm of subgrad 1140.952298 dualbound = 3673985.147131, lowerbound=1300598.147131, norm of subgrad 35.252940 stepsize= 1.000000 +dualbound = 3674046.397987, lowerbound=1297254.397987, norm of subgrad 1139.521565 dualbound = 3674046.397987, lowerbound=1297254.397987, norm of subgrad 36.280172 stepsize= 1.000000 +dualbound = 3674066.463986, lowerbound=1296860.463986, norm of subgrad 1139.357040 dualbound = 3674066.463986, lowerbound=1296860.463986, norm of subgrad 35.973129 stepsize= 1.000000 +dualbound = 3674170.010685, lowerbound=1298920.010685, norm of subgrad 1140.255239 dualbound = 3674170.010685, lowerbound=1298920.010685, norm of subgrad 36.953304 stepsize= 1.000000 +dualbound = 3674207.697038, lowerbound=1300638.697038, norm of subgrad 1140.998991 dualbound = 3674207.697038, lowerbound=1300638.697038, norm of subgrad 35.744739 stepsize= 1.000000 +dualbound = 3674295.555536, lowerbound=1300995.555536, norm of subgrad 1141.165876 dualbound = 3674295.555536, lowerbound=1300995.555536, norm of subgrad 36.767628 stepsize= 1.000000 +dualbound = 3674349.771643, lowerbound=1297331.771643, norm of subgrad 1139.527433 dualbound = 3674349.771643, lowerbound=1297331.771643, norm of subgrad 35.287620 stepsize= 1.000000 +dualbound = 3674413.646429, lowerbound=1298681.646429, norm of subgrad 1140.162114 dualbound = 3674413.646429, lowerbound=1298681.646429, norm of subgrad 36.767850 stepsize= 1.000000 +dualbound = 3674474.606561, lowerbound=1289188.606561, norm of subgrad 1135.938646 dualbound = 3674474.606561, lowerbound=1289188.606561, norm of subgrad 35.056528 stepsize= 1.000000 +dualbound = 3674569.975124, lowerbound=1299753.975124, norm of subgrad 1140.577036 dualbound = 3674569.975124, lowerbound=1299753.975124, norm of subgrad 35.459393 stepsize= 1.000000 +dualbound = 3674614.450750, lowerbound=1293239.450750, norm of subgrad 1137.762915 dualbound = 3674614.450750, lowerbound=1293239.450750, norm of subgrad 36.186677 stepsize= 1.000000 +dualbound = 3674669.627301, lowerbound=1296891.627301, norm of subgrad 1139.353162 dualbound = 3674669.627301, lowerbound=1296891.627301, norm of subgrad 35.905105 stepsize= 1.000000 +dualbound = 3674735.105916, lowerbound=1296338.105916, norm of subgrad 1139.099252 dualbound = 3674735.105916, lowerbound=1296338.105916, norm of subgrad 35.699841 stepsize= 1.000000 +dualbound = 3674816.332189, lowerbound=1302453.332189, norm of subgrad 1141.778583 dualbound = 3674816.332189, lowerbound=1302453.332189, norm of subgrad 35.863997 stepsize= 1.000000 +dualbound = 3674889.617333, lowerbound=1293003.617333, norm of subgrad 1137.630264 dualbound = 3674889.617333, lowerbound=1293003.617333, norm of subgrad 35.669106 stepsize= 1.000000 +dualbound = 3674945.488435, lowerbound=1293556.488435, norm of subgrad 1137.894322 dualbound = 3674945.488435, lowerbound=1293556.488435, norm of subgrad 36.095306 stepsize= 1.000000 +dualbound = 3674994.109943, lowerbound=1294259.109943, norm of subgrad 1138.188082 dualbound = 3674994.109943, lowerbound=1294259.109943, norm of subgrad 35.519312 stepsize= 1.000000 +dualbound = 3675064.250178, lowerbound=1297536.250178, norm of subgrad 1139.639965 dualbound = 3675064.250178, lowerbound=1297536.250178, norm of subgrad 36.237277 stepsize= 1.000000 +dualbound = 3675111.382563, lowerbound=1296878.382563, norm of subgrad 1139.349982 dualbound = 3675111.382563, lowerbound=1296878.382563, norm of subgrad 35.876627 stepsize= 1.000000 +dualbound = 3675208.587866, lowerbound=1298965.587866, norm of subgrad 1140.248476 dualbound = 3675208.587866, lowerbound=1298965.587866, norm of subgrad 36.030616 stepsize= 1.000000 +dualbound = 3675272.919272, lowerbound=1294242.919272, norm of subgrad 1138.197663 dualbound = 3675272.919272, lowerbound=1294242.919272, norm of subgrad 36.267498 stepsize= 1.000000 +dualbound = 3675316.502929, lowerbound=1297842.502929, norm of subgrad 1139.780024 dualbound = 3675316.502929, lowerbound=1297842.502929, norm of subgrad 36.049739 stepsize= 1.000000 +dualbound = 3675393.842388, lowerbound=1295642.842388, norm of subgrad 1138.788761 dualbound = 3675393.842388, lowerbound=1295642.842388, norm of subgrad 35.697892 stepsize= 1.000000 +dualbound = 3675468.310937, lowerbound=1291844.310937, norm of subgrad 1137.127658 dualbound = 3675468.310937, lowerbound=1291844.310937, norm of subgrad 35.909171 stepsize= 1.000000 +dualbound = 3675516.413539, lowerbound=1300017.413539, norm of subgrad 1140.751688 dualbound = 3675516.413539, lowerbound=1300017.413539, norm of subgrad 36.675640 stepsize= 1.000000 +dualbound = 3675587.208880, lowerbound=1294177.208880, norm of subgrad 1138.145952 dualbound = 3675587.208880, lowerbound=1294177.208880, norm of subgrad 35.634188 stepsize= 1.000000 +dualbound = 3675668.584624, lowerbound=1297814.584624, norm of subgrad 1139.780498 dualbound = 3675668.584624, lowerbound=1297814.584624, norm of subgrad 36.964520 stepsize= 1.000000 +dualbound = 3675728.353058, lowerbound=1298416.353058, norm of subgrad 1140.029102 dualbound = 3675728.353058, lowerbound=1298416.353058, norm of subgrad 36.190723 stepsize= 1.000000 +dualbound = 3675801.213307, lowerbound=1296303.213307, norm of subgrad 1139.089642 dualbound = 3675801.213307, lowerbound=1296303.213307, norm of subgrad 35.984167 stepsize= 1.000000 +dualbound = 3675855.230108, lowerbound=1292983.230108, norm of subgrad 1137.640202 dualbound = 3675855.230108, lowerbound=1292983.230108, norm of subgrad 36.000233 stepsize= 1.000000 +dualbound = 3675908.497417, lowerbound=1301834.497417, norm of subgrad 1141.522885 dualbound = 3675908.497417, lowerbound=1301834.497417, norm of subgrad 35.962026 stepsize= 1.000000 +dualbound = 3675977.033730, lowerbound=1294708.033730, norm of subgrad 1138.403722 dualbound = 3675977.033730, lowerbound=1294708.033730, norm of subgrad 36.380439 stepsize= 1.000000 +dualbound = 3676055.398738, lowerbound=1306201.398738, norm of subgrad 1143.413923 dualbound = 3676055.398738, lowerbound=1306201.398738, norm of subgrad 35.670226 stepsize= 1.000000 +dualbound = 3676137.001160, lowerbound=1290093.001160, norm of subgrad 1136.371859 dualbound = 3676137.001160, lowerbound=1290093.001160, norm of subgrad 36.463714 stepsize= 1.000000 +dualbound = 3676172.286376, lowerbound=1300001.286376, norm of subgrad 1140.703856 dualbound = 3676172.286376, lowerbound=1300001.286376, norm of subgrad 35.203483 stepsize= 1.000000 +dualbound = 3676283.492659, lowerbound=1290002.492659, norm of subgrad 1136.297273 dualbound = 3676283.492659, lowerbound=1290002.492659, norm of subgrad 35.779970 stepsize= 1.000000 +dualbound = 3676313.551584, lowerbound=1295787.551584, norm of subgrad 1138.853174 dualbound = 3676313.551584, lowerbound=1295787.551584, norm of subgrad 35.057937 stepsize= 1.000000 +dualbound = 3676373.334154, lowerbound=1296656.334154, norm of subgrad 1139.268772 dualbound = 3676373.334154, lowerbound=1296656.334154, norm of subgrad 36.562037 stepsize= 1.000000 +dualbound = 3676419.675813, lowerbound=1300772.675813, norm of subgrad 1141.033600 dualbound = 3676419.675813, lowerbound=1300772.675813, norm of subgrad 35.090478 stepsize= 1.000000 +dualbound = 3676537.437016, lowerbound=1295550.437016, norm of subgrad 1138.725356 dualbound = 3676537.437016, lowerbound=1295550.437016, norm of subgrad 35.535351 stepsize= 1.000000 +dualbound = 3676582.334717, lowerbound=1298995.334717, norm of subgrad 1140.261082 dualbound = 3676582.334717, lowerbound=1298995.334717, norm of subgrad 35.283108 stepsize= 1.000000 +dualbound = 3676627.858377, lowerbound=1298549.858377, norm of subgrad 1140.108266 dualbound = 3676627.858377, lowerbound=1298549.858377, norm of subgrad 36.640465 stepsize= 1.000000 +dualbound = 3676686.447156, lowerbound=1295037.447156, norm of subgrad 1138.539612 dualbound = 3676686.447156, lowerbound=1295037.447156, norm of subgrad 35.966495 stepsize= 1.000000 +dualbound = 3676752.850823, lowerbound=1299482.850823, norm of subgrad 1140.518238 dualbound = 3676752.850823, lowerbound=1299482.850823, norm of subgrad 36.951369 stepsize= 1.000000 +dualbound = 3676792.650743, lowerbound=1297217.650743, norm of subgrad 1139.511146 dualbound = 3676792.650743, lowerbound=1297217.650743, norm of subgrad 36.163516 stepsize= 1.000000 +dualbound = 3676879.977458, lowerbound=1298867.977458, norm of subgrad 1140.239439 dualbound = 3676879.977458, lowerbound=1298867.977458, norm of subgrad 36.950328 stepsize= 1.000000 +dualbound = 3676949.286814, lowerbound=1297120.286814, norm of subgrad 1139.473250 dualbound = 3676949.286814, lowerbound=1297120.286814, norm of subgrad 36.719332 stepsize= 1.000000 +dualbound = 3677005.876938, lowerbound=1299469.876938, norm of subgrad 1140.516496 dualbound = 3677005.876938, lowerbound=1299469.876938, norm of subgrad 36.940359 stepsize= 1.000000 +dualbound = 3677071.434171, lowerbound=1298584.434171, norm of subgrad 1140.090538 dualbound = 3677071.434171, lowerbound=1298584.434171, norm of subgrad 35.882548 stepsize= 1.000000 +dualbound = 3677154.673730, lowerbound=1298102.673730, norm of subgrad 1139.884939 dualbound = 3677154.673730, lowerbound=1298102.673730, norm of subgrad 36.307569 stepsize= 1.000000 +dualbound = 3677194.221338, lowerbound=1294856.221338, norm of subgrad 1138.486812 dualbound = 3677194.221338, lowerbound=1294856.221338, norm of subgrad 36.545145 stepsize= 1.000000 +dualbound = 3677270.726519, lowerbound=1300269.726519, norm of subgrad 1140.860520 dualbound = 3677270.726519, lowerbound=1300269.726519, norm of subgrad 37.006826 stepsize= 1.000000 +dualbound = 3677341.858344, lowerbound=1298223.858344, norm of subgrad 1139.919233 dualbound = 3677341.858344, lowerbound=1298223.858344, norm of subgrad 35.540566 stepsize= 1.000000 +dualbound = 3677416.442265, lowerbound=1303521.442265, norm of subgrad 1142.252793 dualbound = 3677416.442265, lowerbound=1303521.442265, norm of subgrad 35.980327 stepsize= 1.000000 +dualbound = 3677450.471300, lowerbound=1294120.471300, norm of subgrad 1138.152657 dualbound = 3677450.471300, lowerbound=1294120.471300, norm of subgrad 36.125186 stepsize= 1.000000 +dualbound = 3677545.131842, lowerbound=1298748.131842, norm of subgrad 1140.158380 dualbound = 3677545.131842, lowerbound=1298748.131842, norm of subgrad 36.161589 stepsize= 1.000000 +dualbound = 3677589.346016, lowerbound=1294817.346016, norm of subgrad 1138.447779 dualbound = 3677589.346016, lowerbound=1294817.346016, norm of subgrad 35.919551 stepsize= 1.000000 +dualbound = 3677665.459132, lowerbound=1300526.459132, norm of subgrad 1140.950682 dualbound = 3677665.459132, lowerbound=1300526.459132, norm of subgrad 36.305828 stepsize= 1.000000 +dualbound = 3677706.079922, lowerbound=1295342.079922, norm of subgrad 1138.692267 dualbound = 3677706.079922, lowerbound=1295342.079922, norm of subgrad 36.312819 stepsize= 1.000000 +dualbound = 3677768.967550, lowerbound=1299708.967550, norm of subgrad 1140.580540 dualbound = 3677768.967550, lowerbound=1299708.967550, norm of subgrad 35.747554 stepsize= 1.000000 +dualbound = 3677830.276934, lowerbound=1291272.276934, norm of subgrad 1136.886660 dualbound = 3677830.276934, lowerbound=1291272.276934, norm of subgrad 36.059803 stepsize= 1.000000 +dualbound = 3677928.495757, lowerbound=1302029.495757, norm of subgrad 1141.587270 dualbound = 3677928.495757, lowerbound=1302029.495757, norm of subgrad 35.919616 stepsize= 1.000000 +dualbound = 3677977.989765, lowerbound=1287773.989765, norm of subgrad 1135.343556 dualbound = 3677977.989765, lowerbound=1287773.989765, norm of subgrad 35.783991 stepsize= 1.000000 +dualbound = 3678035.475127, lowerbound=1300342.475127, norm of subgrad 1140.865231 dualbound = 3678035.475127, lowerbound=1300342.475127, norm of subgrad 35.895478 stepsize= 1.000000 +dualbound = 3678117.934696, lowerbound=1292836.934696, norm of subgrad 1137.592605 dualbound = 3678117.934696, lowerbound=1292836.934696, norm of subgrad 36.911510 stepsize= 1.000000 +dualbound = 3678138.402465, lowerbound=1302355.402465, norm of subgrad 1141.784306 dualbound = 3678138.402465, lowerbound=1302355.402465, norm of subgrad 36.557732 stepsize= 1.000000 +dualbound = 3678224.761229, lowerbound=1299078.761229, norm of subgrad 1140.291525 dualbound = 3678224.761229, lowerbound=1299078.761229, norm of subgrad 35.670138 stepsize= 1.000000 +dualbound = 3678309.715263, lowerbound=1301786.715263, norm of subgrad 1141.501518 dualbound = 3678309.715263, lowerbound=1301786.715263, norm of subgrad 36.386179 stepsize= 1.000000 +dualbound = 3678349.179175, lowerbound=1294589.179175, norm of subgrad 1138.355032 dualbound = 3678349.179175, lowerbound=1294589.179175, norm of subgrad 36.089665 stepsize= 1.000000 +dualbound = 3678430.125560, lowerbound=1301812.125560, norm of subgrad 1141.493813 dualbound = 3678430.125560, lowerbound=1301812.125560, norm of subgrad 35.734387 stepsize= 1.000000 +dualbound = 3678483.008759, lowerbound=1294434.008759, norm of subgrad 1138.275015 dualbound = 3678483.008759, lowerbound=1294434.008759, norm of subgrad 35.901019 stepsize= 1.000000 +dualbound = 3678534.557524, lowerbound=1298833.557524, norm of subgrad 1140.225661 dualbound = 3678534.557524, lowerbound=1298833.557524, norm of subgrad 36.504092 stepsize= 1.000000 +dualbound = 3678612.302461, lowerbound=1292817.302461, norm of subgrad 1137.550571 dualbound = 3678612.302461, lowerbound=1292817.302461, norm of subgrad 35.801466 stepsize= 1.000000 +dualbound = 3678703.861695, lowerbound=1300554.861695, norm of subgrad 1140.961376 dualbound = 3678703.861695, lowerbound=1300554.861695, norm of subgrad 36.463122 stepsize= 1.000000 +dualbound = 3678754.521113, lowerbound=1293871.521113, norm of subgrad 1138.047680 dualbound = 3678754.521113, lowerbound=1293871.521113, norm of subgrad 36.491909 stepsize= 1.000000 +dualbound = 3678818.412928, lowerbound=1307842.412928, norm of subgrad 1144.146587 dualbound = 3678818.412928, lowerbound=1307842.412928, norm of subgrad 35.956805 stepsize= 1.000000 +dualbound = 3678890.035014, lowerbound=1296659.035014, norm of subgrad 1139.259863 dualbound = 3678890.035014, lowerbound=1296659.035014, norm of subgrad 36.409093 stepsize= 1.000000 +dualbound = 3678946.013735, lowerbound=1296623.013735, norm of subgrad 1139.249759 dualbound = 3678946.013735, lowerbound=1296623.013735, norm of subgrad 36.372774 stepsize= 1.000000 +dualbound = 3678978.768928, lowerbound=1294105.768928, norm of subgrad 1138.161135 dualbound = 3678978.768928, lowerbound=1294105.768928, norm of subgrad 36.575336 stepsize= 1.000000 +dualbound = 3679070.290581, lowerbound=1294659.290581, norm of subgrad 1138.349810 dualbound = 3679070.290581, lowerbound=1294659.290581, norm of subgrad 35.672421 stepsize= 1.000000 +dualbound = 3679136.459948, lowerbound=1297439.459948, norm of subgrad 1139.596622 dualbound = 3679136.459948, lowerbound=1297439.459948, norm of subgrad 36.154797 stepsize= 1.000000 +dualbound = 3679185.664234, lowerbound=1295496.664234, norm of subgrad 1138.759704 dualbound = 3679185.664234, lowerbound=1295496.664234, norm of subgrad 36.417088 stepsize= 1.000000 +dualbound = 3679222.776745, lowerbound=1300191.776745, norm of subgrad 1140.829863 dualbound = 3679222.776745, lowerbound=1300191.776745, norm of subgrad 36.580220 stepsize= 1.000000 +dualbound = 3679316.360746, lowerbound=1296160.360746, norm of subgrad 1139.016840 dualbound = 3679316.360746, lowerbound=1296160.360746, norm of subgrad 35.952524 stepsize= 1.000000 +dualbound = 3679403.224583, lowerbound=1291689.224583, norm of subgrad 1137.041875 dualbound = 3679403.224583, lowerbound=1291689.224583, norm of subgrad 35.522723 stepsize= 1.000000 +dualbound = 3679453.734633, lowerbound=1299325.734633, norm of subgrad 1140.441465 dualbound = 3679453.734633, lowerbound=1299325.734633, norm of subgrad 36.489862 stepsize= 1.000000 +dualbound = 3679496.228299, lowerbound=1297950.228299, norm of subgrad 1139.824648 dualbound = 3679496.228299, lowerbound=1297950.228299, norm of subgrad 35.951268 stepsize= 1.000000 +dualbound = 3679605.540939, lowerbound=1302658.540939, norm of subgrad 1141.854869 dualbound = 3679605.540939, lowerbound=1302658.540939, norm of subgrad 35.823353 stepsize= 1.000000 +dualbound = 3679666.477014, lowerbound=1300590.477014, norm of subgrad 1140.953319 dualbound = 3679666.477014, lowerbound=1300590.477014, norm of subgrad 35.283652 stepsize= 1.000000 +dualbound = 3679724.903391, lowerbound=1291920.903391, norm of subgrad 1137.178044 dualbound = 3679724.903391, lowerbound=1291920.903391, norm of subgrad 36.213621 stepsize= 1.000000 +dualbound = 3679790.631252, lowerbound=1296619.631252, norm of subgrad 1139.210969 dualbound = 3679790.631252, lowerbound=1296619.631252, norm of subgrad 35.323192 stepsize= 1.000000 +dualbound = 3679857.394019, lowerbound=1294357.394019, norm of subgrad 1138.246631 dualbound = 3679857.394019, lowerbound=1294357.394019, norm of subgrad 36.259658 stepsize= 1.000000 +dualbound = 3679888.843468, lowerbound=1299376.843468, norm of subgrad 1140.457734 dualbound = 3679888.843468, lowerbound=1299376.843468, norm of subgrad 36.034004 stepsize= 1.000000 +dualbound = 3679990.352438, lowerbound=1294904.352438, norm of subgrad 1138.474133 dualbound = 3679990.352438, lowerbound=1294904.352438, norm of subgrad 36.338808 stepsize= 1.000000 +dualbound = 3680020.036384, lowerbound=1300698.036384, norm of subgrad 1141.010971 dualbound = 3680020.036384, lowerbound=1300698.036384, norm of subgrad 35.180733 stepsize= 1.000000 +dualbound = 3680115.836989, lowerbound=1292693.836989, norm of subgrad 1137.503774 dualbound = 3680115.836989, lowerbound=1292693.836989, norm of subgrad 36.287747 stepsize= 1.000000 +dualbound = 3680166.410768, lowerbound=1298781.410768, norm of subgrad 1140.185253 dualbound = 3680166.410768, lowerbound=1298781.410768, norm of subgrad 35.938472 stepsize= 1.000000 +dualbound = 3680254.214078, lowerbound=1296262.214078, norm of subgrad 1139.077352 dualbound = 3680254.214078, lowerbound=1296262.214078, norm of subgrad 36.370363 stepsize= 1.000000 +dualbound = 3680262.600127, lowerbound=1299263.600127, norm of subgrad 1140.429130 dualbound = 3680262.600127, lowerbound=1299263.600127, norm of subgrad 36.378373 stepsize= 1.000000 +dualbound = 3680359.857320, lowerbound=1300653.857320, norm of subgrad 1141.028421 dualbound = 3680359.857320, lowerbound=1300653.857320, norm of subgrad 37.272741 stepsize= 1.000000 +dualbound = 3680408.330645, lowerbound=1302592.330645, norm of subgrad 1141.855214 dualbound = 3680408.330645, lowerbound=1302592.330645, norm of subgrad 35.909237 stepsize= 1.000000 +dualbound = 3680491.222515, lowerbound=1297150.222515, norm of subgrad 1139.441189 dualbound = 3680491.222515, lowerbound=1297150.222515, norm of subgrad 35.480866 stepsize= 1.000000 +dualbound = 3680559.328241, lowerbound=1302417.328241, norm of subgrad 1141.769823 dualbound = 3680559.328241, lowerbound=1302417.328241, norm of subgrad 35.904119 stepsize= 1.000000 +dualbound = 3680622.298950, lowerbound=1295521.298950, norm of subgrad 1138.743737 dualbound = 3680622.298950, lowerbound=1295521.298950, norm of subgrad 35.762700 stepsize= 1.000000 +dualbound = 3680671.713914, lowerbound=1298165.713914, norm of subgrad 1139.915222 dualbound = 3680671.713914, lowerbound=1298165.713914, norm of subgrad 35.922346 stepsize= 1.000000 +dualbound = 3680765.916322, lowerbound=1293449.916322, norm of subgrad 1137.848811 dualbound = 3680765.916322, lowerbound=1293449.916322, norm of subgrad 36.663366 stepsize= 1.000000 +dualbound = 3680795.885077, lowerbound=1296946.885077, norm of subgrad 1139.364685 dualbound = 3680795.885077, lowerbound=1296946.885077, norm of subgrad 35.142122 stepsize= 1.000000 +dualbound = 3680880.786902, lowerbound=1294608.786902, norm of subgrad 1138.346514 dualbound = 3680880.786902, lowerbound=1294608.786902, norm of subgrad 36.178748 stepsize= 1.000000 +dualbound = 3680931.652860, lowerbound=1301327.652860, norm of subgrad 1141.291660 dualbound = 3680931.652860, lowerbound=1301327.652860, norm of subgrad 35.635179 stepsize= 1.000000 +dualbound = 3681028.557177, lowerbound=1296330.557177, norm of subgrad 1139.087599 dualbound = 3681028.557177, lowerbound=1296330.557177, norm of subgrad 35.873449 stepsize= 1.000000 +dualbound = 3681067.159671, lowerbound=1300949.159671, norm of subgrad 1141.123639 dualbound = 3681067.159671, lowerbound=1300949.159671, norm of subgrad 35.392125 stepsize= 1.000000 +dualbound = 3681145.282709, lowerbound=1296000.282709, norm of subgrad 1138.952274 dualbound = 3681145.282709, lowerbound=1296000.282709, norm of subgrad 35.918283 stepsize= 1.000000 +dualbound = 3681176.467790, lowerbound=1302235.467790, norm of subgrad 1141.658648 dualbound = 3681176.467790, lowerbound=1302235.467790, norm of subgrad 34.353822 stepsize= 1.000000 +dualbound = 3681295.061727, lowerbound=1291882.061727, norm of subgrad 1137.130627 dualbound = 3681295.061727, lowerbound=1291882.061727, norm of subgrad 36.091466 stepsize= 1.000000 +dualbound = 3681312.016194, lowerbound=1301486.016194, norm of subgrad 1141.378998 dualbound = 3681312.016194, lowerbound=1301486.016194, norm of subgrad 35.734500 stepsize= 1.000000 +dualbound = 3681384.702135, lowerbound=1297681.702135, norm of subgrad 1139.713430 dualbound = 3681384.702135, lowerbound=1297681.702135, norm of subgrad 36.574389 stepsize= 1.000000 +dualbound = 3681451.000452, lowerbound=1299201.000452, norm of subgrad 1140.391600 dualbound = 3681451.000452, lowerbound=1299201.000452, norm of subgrad 36.855099 stepsize= 1.000000 +dualbound = 3681500.335212, lowerbound=1301927.335212, norm of subgrad 1141.560483 dualbound = 3681500.335212, lowerbound=1301927.335212, norm of subgrad 35.809702 stepsize= 1.000000 +dualbound = 3681574.834216, lowerbound=1297674.834216, norm of subgrad 1139.685849 dualbound = 3681574.834216, lowerbound=1297674.834216, norm of subgrad 35.825954 stepsize= 1.000000 +dualbound = 3681669.934909, lowerbound=1295927.934909, norm of subgrad 1138.913050 dualbound = 3681669.934909, lowerbound=1295927.934909, norm of subgrad 35.917972 stepsize= 1.000000 +dualbound = 3681710.090981, lowerbound=1301040.090981, norm of subgrad 1141.176626 dualbound = 3681710.090981, lowerbound=1301040.090981, norm of subgrad 35.835123 stepsize= 1.000000 +dualbound = 3681754.845977, lowerbound=1301956.845977, norm of subgrad 1141.617206 dualbound = 3681754.845977, lowerbound=1301956.845977, norm of subgrad 37.118122 stepsize= 1.000000 +dualbound = 3681819.658405, lowerbound=1296202.658405, norm of subgrad 1139.045503 dualbound = 3681819.658405, lowerbound=1296202.658405, norm of subgrad 35.872168 stepsize= 1.000000 +dualbound = 3681899.466758, lowerbound=1296198.466758, norm of subgrad 1139.052881 dualbound = 3681899.466758, lowerbound=1296198.466758, norm of subgrad 36.370432 stepsize= 1.000000 +dualbound = 3681956.153288, lowerbound=1300425.153288, norm of subgrad 1140.934333 dualbound = 3681956.153288, lowerbound=1300425.153288, norm of subgrad 36.914584 stepsize= 1.000000 +dualbound = 3682009.610664, lowerbound=1293307.610664, norm of subgrad 1137.805612 dualbound = 3682009.610664, lowerbound=1293307.610664, norm of subgrad 36.707729 stepsize= 1.000000 +dualbound = 3682083.688678, lowerbound=1303395.688678, norm of subgrad 1142.185050 dualbound = 3682083.688678, lowerbound=1303395.688678, norm of subgrad 35.567935 stepsize= 1.000000 +dualbound = 3682187.550349, lowerbound=1294117.550349, norm of subgrad 1138.144345 dualbound = 3682187.550349, lowerbound=1294117.550349, norm of subgrad 36.862741 stepsize= 1.000000 +dualbound = 3682208.170785, lowerbound=1303657.170785, norm of subgrad 1142.304325 dualbound = 3682208.170785, lowerbound=1303657.170785, norm of subgrad 34.965990 stepsize= 1.000000 +dualbound = 3682318.859549, lowerbound=1293214.859549, norm of subgrad 1137.690582 dualbound = 3682318.859549, lowerbound=1293214.859549, norm of subgrad 35.152365 stepsize= 1.000000 +dualbound = 3682364.324907, lowerbound=1291809.324907, norm of subgrad 1137.096445 dualbound = 3682364.324907, lowerbound=1291809.324907, norm of subgrad 34.992361 stepsize= 1.000000 +dualbound = 3682444.049135, lowerbound=1299404.049135, norm of subgrad 1140.423627 dualbound = 3682444.049135, lowerbound=1299404.049135, norm of subgrad 35.238108 stepsize= 1.000000 +dualbound = 3682499.363057, lowerbound=1294218.363057, norm of subgrad 1138.171939 dualbound = 3682499.363057, lowerbound=1294218.363057, norm of subgrad 35.669510 stepsize= 1.000000 +dualbound = 3682539.635101, lowerbound=1295723.635101, norm of subgrad 1138.851015 dualbound = 3682539.635101, lowerbound=1295723.635101, norm of subgrad 36.031542 stepsize= 1.000000 +dualbound = 3682612.571589, lowerbound=1300850.571589, norm of subgrad 1141.068171 dualbound = 3682612.571589, lowerbound=1300850.571589, norm of subgrad 35.481495 stepsize= 1.000000 +dualbound = 3682685.398462, lowerbound=1299259.398462, norm of subgrad 1140.390897 dualbound = 3682685.398462, lowerbound=1299259.398462, norm of subgrad 36.122387 stepsize= 1.000000 +dualbound = 3682716.984880, lowerbound=1300116.984880, norm of subgrad 1140.762458 dualbound = 3682716.984880, lowerbound=1300116.984880, norm of subgrad 35.406022 stepsize= 1.000000 +dualbound = 3682810.296968, lowerbound=1297037.296968, norm of subgrad 1139.424546 dualbound = 3682810.296968, lowerbound=1297037.296968, norm of subgrad 36.664862 stepsize= 1.000000 +dualbound = 3682838.537952, lowerbound=1301144.537952, norm of subgrad 1141.255685 dualbound = 3682838.537952, lowerbound=1301144.537952, norm of subgrad 36.718401 stepsize= 1.000000 +dualbound = 3682918.590806, lowerbound=1294578.590806, norm of subgrad 1138.338961 dualbound = 3682918.590806, lowerbound=1294578.590806, norm of subgrad 36.291223 stepsize= 1.000000 +dualbound = 3682976.478923, lowerbound=1300088.478923, norm of subgrad 1140.757415 dualbound = 3682976.478923, lowerbound=1300088.478923, norm of subgrad 36.012333 stepsize= 1.000000 +dualbound = 3683082.144418, lowerbound=1295194.144418, norm of subgrad 1138.600081 dualbound = 3683082.144418, lowerbound=1295194.144418, norm of subgrad 36.354718 stepsize= 1.000000 +dualbound = 3683093.713059, lowerbound=1301013.713059, norm of subgrad 1141.181280 dualbound = 3683093.713059, lowerbound=1301013.713059, norm of subgrad 35.952311 stepsize= 1.000000 +dualbound = 3683182.114269, lowerbound=1302426.114269, norm of subgrad 1141.796442 dualbound = 3683182.114269, lowerbound=1302426.114269, norm of subgrad 36.897171 stepsize= 1.000000 +dualbound = 3683224.330052, lowerbound=1301703.330052, norm of subgrad 1141.473316 dualbound = 3683224.330052, lowerbound=1301703.330052, norm of subgrad 36.058505 stepsize= 1.000000 +dualbound = 3683324.462508, lowerbound=1298258.462508, norm of subgrad 1139.925200 dualbound = 3683324.462508, lowerbound=1298258.462508, norm of subgrad 35.652945 stepsize= 1.000000 +dualbound = 3683382.990907, lowerbound=1299487.990907, norm of subgrad 1140.509093 dualbound = 3683382.990907, lowerbound=1299487.990907, norm of subgrad 36.490114 stepsize= 1.000000 +dualbound = 3683446.944963, lowerbound=1298179.944963, norm of subgrad 1139.930676 dualbound = 3683446.944963, lowerbound=1298179.944963, norm of subgrad 36.413652 stepsize= 1.000000 +dualbound = 3683480.337426, lowerbound=1293191.337426, norm of subgrad 1137.734739 dualbound = 3683480.337426, lowerbound=1293191.337426, norm of subgrad 35.810508 stepsize= 1.000000 +dualbound = 3683574.566016, lowerbound=1299773.566016, norm of subgrad 1140.615433 dualbound = 3683574.566016, lowerbound=1299773.566016, norm of subgrad 36.389952 stepsize= 1.000000 +dualbound = 3683635.164646, lowerbound=1296322.164646, norm of subgrad 1139.086987 dualbound = 3683635.164646, lowerbound=1296322.164646, norm of subgrad 35.462637 stepsize= 1.000000 +dualbound = 3683692.848715, lowerbound=1300988.848715, norm of subgrad 1141.165566 dualbound = 3683692.848715, lowerbound=1300988.848715, norm of subgrad 36.437399 stepsize= 1.000000 +dualbound = 3683744.419212, lowerbound=1298591.419212, norm of subgrad 1140.098864 dualbound = 3683744.419212, lowerbound=1298591.419212, norm of subgrad 35.854853 stepsize= 1.000000 +dualbound = 3683827.296332, lowerbound=1298133.296332, norm of subgrad 1139.918109 dualbound = 3683827.296332, lowerbound=1298133.296332, norm of subgrad 36.917166 stepsize= 1.000000 +dualbound = 3683834.679179, lowerbound=1299491.679179, norm of subgrad 1140.504134 dualbound = 3683834.679179, lowerbound=1299491.679179, norm of subgrad 35.572220 stepsize= 1.000000 +dualbound = 3683964.348978, lowerbound=1294822.348978, norm of subgrad 1138.412205 dualbound = 3683964.348978, lowerbound=1294822.348978, norm of subgrad 35.911973 stepsize= 1.000000 +dualbound = 3684019.398559, lowerbound=1299650.398559, norm of subgrad 1140.539521 dualbound = 3684019.398559, lowerbound=1299650.398559, norm of subgrad 35.143272 stepsize= 1.000000 +dualbound = 3684109.412370, lowerbound=1298165.412370, norm of subgrad 1139.884386 dualbound = 3684109.412370, lowerbound=1298165.412370, norm of subgrad 35.510756 stepsize= 1.000000 +dualbound = 3684142.911193, lowerbound=1293404.911193, norm of subgrad 1137.819367 dualbound = 3684142.911193, lowerbound=1293404.911193, norm of subgrad 35.517585 stepsize= 1.000000 +dualbound = 3684196.047691, lowerbound=1295304.047691, norm of subgrad 1138.658881 dualbound = 3684196.047691, lowerbound=1295304.047691, norm of subgrad 35.960207 stepsize= 1.000000 +dualbound = 3684248.798622, lowerbound=1293648.798622, norm of subgrad 1137.951141 dualbound = 3684248.798622, lowerbound=1293648.798622, norm of subgrad 36.561605 stepsize= 1.000000 +dualbound = 3684330.779049, lowerbound=1297493.779049, norm of subgrad 1139.631861 dualbound = 3684330.779049, lowerbound=1297493.779049, norm of subgrad 36.728469 stepsize= 1.000000 +dualbound = 3684382.423118, lowerbound=1300549.423118, norm of subgrad 1140.963375 dualbound = 3684382.423118, lowerbound=1300549.423118, norm of subgrad 36.050577 stepsize= 1.000000 +dualbound = 3684467.191986, lowerbound=1299311.191986, norm of subgrad 1140.422374 dualbound = 3684467.191986, lowerbound=1299311.191986, norm of subgrad 36.561850 stepsize= 1.000000 +dualbound = 3684526.446703, lowerbound=1297041.446703, norm of subgrad 1139.432511 dualbound = 3684526.446703, lowerbound=1297041.446703, norm of subgrad 36.390311 stepsize= 1.000000 +dualbound = 3684552.272653, lowerbound=1301144.272653, norm of subgrad 1141.252064 dualbound = 3684552.272653, lowerbound=1301144.272653, norm of subgrad 36.576303 stepsize= 1.000000 +dualbound = 3684634.517249, lowerbound=1296636.517249, norm of subgrad 1139.270169 dualbound = 3684634.517249, lowerbound=1296636.517249, norm of subgrad 37.178550 stepsize= 1.000000 +dualbound = 3684699.868674, lowerbound=1295901.868674, norm of subgrad 1138.930581 dualbound = 3684699.868674, lowerbound=1295901.868674, norm of subgrad 36.419108 stepsize= 1.000000 +dualbound = 3684769.768528, lowerbound=1300014.768528, norm of subgrad 1140.749214 dualbound = 3684769.768528, lowerbound=1300014.768528, norm of subgrad 36.931015 stepsize= 1.000000 +dualbound = 3684826.869210, lowerbound=1295492.869210, norm of subgrad 1138.739597 dualbound = 3684826.869210, lowerbound=1295492.869210, norm of subgrad 35.945802 stepsize= 1.000000 +dualbound = 3684898.830157, lowerbound=1304183.830157, norm of subgrad 1142.553207 dualbound = 3684898.830157, lowerbound=1304183.830157, norm of subgrad 36.276176 stepsize= 1.000000 +dualbound = 3684981.584583, lowerbound=1293009.584583, norm of subgrad 1137.633326 dualbound = 3684981.584583, lowerbound=1293009.584583, norm of subgrad 35.815561 stepsize= 1.000000 +dualbound = 3685045.641077, lowerbound=1303087.641077, norm of subgrad 1142.055446 dualbound = 3685045.641077, lowerbound=1303087.641077, norm of subgrad 35.595737 stepsize= 1.000000 +dualbound = 3685112.835789, lowerbound=1298535.835789, norm of subgrad 1140.070101 dualbound = 3685112.835789, lowerbound=1298535.835789, norm of subgrad 35.933198 stepsize= 1.000000 +dualbound = 3685171.952281, lowerbound=1297582.952281, norm of subgrad 1139.642467 dualbound = 3685171.952281, lowerbound=1297582.952281, norm of subgrad 35.512202 stepsize= 1.000000 +dualbound = 3685241.535636, lowerbound=1302650.535636, norm of subgrad 1141.852677 dualbound = 3685241.535636, lowerbound=1302650.535636, norm of subgrad 35.306987 stepsize= 1.000000 +dualbound = 3685320.645686, lowerbound=1292965.645686, norm of subgrad 1137.587204 dualbound = 3685320.645686, lowerbound=1292965.645686, norm of subgrad 34.901433 stepsize= 1.000000 +dualbound = 3685392.993442, lowerbound=1297094.993442, norm of subgrad 1139.404666 dualbound = 3685392.993442, lowerbound=1297094.993442, norm of subgrad 34.933476 stepsize= 1.000000 +dualbound = 3685446.117437, lowerbound=1298235.117437, norm of subgrad 1139.945226 dualbound = 3685446.117437, lowerbound=1298235.117437, norm of subgrad 35.960033 stepsize= 1.000000 +dualbound = 3685492.050158, lowerbound=1299180.050158, norm of subgrad 1140.363561 dualbound = 3685492.050158, lowerbound=1299180.050158, norm of subgrad 35.985174 stepsize= 1.000000 +dualbound = 3685551.678662, lowerbound=1297362.678662, norm of subgrad 1139.559862 dualbound = 3685551.678662, lowerbound=1297362.678662, norm of subgrad 35.967047 stepsize= 1.000000 +dualbound = 3685619.876062, lowerbound=1294535.876062, norm of subgrad 1138.297358 dualbound = 3685619.876062, lowerbound=1294535.876062, norm of subgrad 35.400528 stepsize= 1.000000 +dualbound = 3685685.717851, lowerbound=1297742.717851, norm of subgrad 1139.695450 dualbound = 3685685.717851, lowerbound=1297742.717851, norm of subgrad 35.054840 stepsize= 1.000000 +dualbound = 3685746.321013, lowerbound=1299914.321013, norm of subgrad 1140.670996 dualbound = 3685746.321013, lowerbound=1299914.321013, norm of subgrad 35.729584 stepsize= 1.000000 +dualbound = 3685806.594238, lowerbound=1295202.594238, norm of subgrad 1138.608622 dualbound = 3685806.594238, lowerbound=1295202.594238, norm of subgrad 35.878590 stepsize= 1.000000 +dualbound = 3685860.401339, lowerbound=1299706.401339, norm of subgrad 1140.616676 dualbound = 3685860.401339, lowerbound=1299706.401339, norm of subgrad 36.794118 stepsize= 1.000000 +dualbound = 3685921.760354, lowerbound=1297505.760354, norm of subgrad 1139.616058 dualbound = 3685921.760354, lowerbound=1297505.760354, norm of subgrad 35.782105 stepsize= 1.000000 +dualbound = 3685995.891238, lowerbound=1299629.891238, norm of subgrad 1140.536668 dualbound = 3685995.891238, lowerbound=1299629.891238, norm of subgrad 35.610825 stepsize= 1.000000 +dualbound = 3686073.959076, lowerbound=1294204.959076, norm of subgrad 1138.186698 dualbound = 3686073.959076, lowerbound=1294204.959076, norm of subgrad 36.634244 stepsize= 1.000000 +dualbound = 3686112.325954, lowerbound=1297291.325954, norm of subgrad 1139.516707 dualbound = 3686112.325954, lowerbound=1297291.325954, norm of subgrad 35.289756 stepsize= 1.000000 +dualbound = 3686189.383772, lowerbound=1296773.383772, norm of subgrad 1139.301709 dualbound = 3686189.383772, lowerbound=1296773.383772, norm of subgrad 36.222339 stepsize= 1.000000 +dualbound = 3686259.891713, lowerbound=1300182.891713, norm of subgrad 1140.786085 dualbound = 3686259.891713, lowerbound=1300182.891713, norm of subgrad 35.784186 stepsize= 1.000000 +dualbound = 3686314.356101, lowerbound=1296019.356101, norm of subgrad 1138.983036 dualbound = 3686314.356101, lowerbound=1296019.356101, norm of subgrad 36.296892 stepsize= 1.000000 +dualbound = 3686391.338271, lowerbound=1300712.338271, norm of subgrad 1141.019868 dualbound = 3686391.338271, lowerbound=1300712.338271, norm of subgrad 35.930240 stepsize= 1.000000 +dualbound = 3686437.918869, lowerbound=1292492.918869, norm of subgrad 1137.438754 dualbound = 3686437.918869, lowerbound=1292492.918869, norm of subgrad 36.339794 stepsize= 1.000000 +dualbound = 3686519.918037, lowerbound=1299765.918037, norm of subgrad 1140.619094 dualbound = 3686519.918037, lowerbound=1299765.918037, norm of subgrad 36.441723 stepsize= 1.000000 +dualbound = 3686547.245612, lowerbound=1298128.245612, norm of subgrad 1139.892647 dualbound = 3686547.245612, lowerbound=1298128.245612, norm of subgrad 35.416487 stepsize= 1.000000 +dualbound = 3686657.771501, lowerbound=1296943.771501, norm of subgrad 1139.370779 dualbound = 3686657.771501, lowerbound=1296943.771501, norm of subgrad 36.503779 stepsize= 1.000000 +dualbound = 3686696.143547, lowerbound=1302906.143547, norm of subgrad 1141.998749 dualbound = 3686696.143547, lowerbound=1302906.143547, norm of subgrad 35.963482 stepsize= 1.000000 +dualbound = 3686761.959781, lowerbound=1299033.959781, norm of subgrad 1140.288104 dualbound = 3686761.959781, lowerbound=1299033.959781, norm of subgrad 35.900087 stepsize= 1.000000 +dualbound = 3686827.027445, lowerbound=1296906.027445, norm of subgrad 1139.385811 dualbound = 3686827.027445, lowerbound=1296906.027445, norm of subgrad 36.865535 stepsize= 1.000000 +dualbound = 3686863.199269, lowerbound=1300280.199269, norm of subgrad 1140.841005 dualbound = 3686863.199269, lowerbound=1300280.199269, norm of subgrad 35.695543 stepsize= 1.000000 +dualbound = 3686968.406230, lowerbound=1299871.406230, norm of subgrad 1140.629390 dualbound = 3686968.406230, lowerbound=1299871.406230, norm of subgrad 35.625931 stepsize= 1.000000 +dualbound = 3687031.839885, lowerbound=1300855.839885, norm of subgrad 1141.064345 dualbound = 3687031.839885, lowerbound=1300855.839885, norm of subgrad 35.148736 stepsize= 1.000000 +dualbound = 3687121.070843, lowerbound=1299442.070843, norm of subgrad 1140.431090 dualbound = 3687121.070843, lowerbound=1299442.070843, norm of subgrad 35.074648 stepsize= 1.000000 +dualbound = 3687176.215772, lowerbound=1302269.215772, norm of subgrad 1141.709777 dualbound = 3687176.215772, lowerbound=1302269.215772, norm of subgrad 35.876802 stepsize= 1.000000 +dualbound = 3687209.470298, lowerbound=1294736.470298, norm of subgrad 1138.386345 dualbound = 3687209.470298, lowerbound=1294736.470298, norm of subgrad 34.932142 stepsize= 1.000000 +dualbound = 3687313.103616, lowerbound=1301878.103616, norm of subgrad 1141.516143 dualbound = 3687313.103616, lowerbound=1301878.103616, norm of subgrad 35.841782 stepsize= 1.000000 +dualbound = 3687347.554759, lowerbound=1296085.554759, norm of subgrad 1138.996293 dualbound = 3687347.554759, lowerbound=1296085.554759, norm of subgrad 35.516913 stepsize= 1.000000 +dualbound = 3687404.170897, lowerbound=1294656.170897, norm of subgrad 1138.399829 dualbound = 3687404.170897, lowerbound=1294656.170897, norm of subgrad 36.805110 stepsize= 1.000000 +dualbound = 3687457.494920, lowerbound=1294541.494920, norm of subgrad 1138.314322 dualbound = 3687457.494920, lowerbound=1294541.494920, norm of subgrad 35.655631 stepsize= 1.000000 +dualbound = 3687562.712827, lowerbound=1296936.712827, norm of subgrad 1139.361099 dualbound = 3687562.712827, lowerbound=1296936.712827, norm of subgrad 36.224548 stepsize= 1.000000 +dualbound = 3687593.477766, lowerbound=1298706.477766, norm of subgrad 1140.148445 dualbound = 3687593.477766, lowerbound=1298706.477766, norm of subgrad 35.535404 stepsize= 1.000000 +dualbound = 3687694.093417, lowerbound=1301837.093417, norm of subgrad 1141.526650 dualbound = 3687694.093417, lowerbound=1301837.093417, norm of subgrad 36.696262 stepsize= 1.000000 +dualbound = 3687731.538898, lowerbound=1297359.538898, norm of subgrad 1139.567698 dualbound = 3687731.538898, lowerbound=1297359.538898, norm of subgrad 35.950598 stepsize= 1.000000 +dualbound = 3687782.356413, lowerbound=1298078.356413, norm of subgrad 1139.875149 dualbound = 3687782.356413, lowerbound=1298078.356413, norm of subgrad 35.886174 stepsize= 1.000000 +dualbound = 3687837.014596, lowerbound=1300774.014596, norm of subgrad 1141.073624 dualbound = 3687837.014596, lowerbound=1300774.014596, norm of subgrad 36.464478 stepsize= 1.000000 +dualbound = 3687914.121985, lowerbound=1297331.121985, norm of subgrad 1139.560056 dualbound = 3687914.121985, lowerbound=1297331.121985, norm of subgrad 36.648430 stepsize= 1.000000 +dualbound = 3688000.812297, lowerbound=1300907.812297, norm of subgrad 1141.108151 dualbound = 3688000.812297, lowerbound=1300907.812297, norm of subgrad 36.148172 stepsize= 1.000000 +dualbound = 3688026.124572, lowerbound=1300992.124572, norm of subgrad 1141.206434 dualbound = 3688026.124572, lowerbound=1300992.124572, norm of subgrad 37.219783 stepsize= 1.000000 +dualbound = 3688079.071592, lowerbound=1298430.071592, norm of subgrad 1140.061433 dualbound = 3688079.071592, lowerbound=1298430.071592, norm of subgrad 36.918112 stepsize= 1.000000 +dualbound = 3688170.473689, lowerbound=1298846.473689, norm of subgrad 1140.215977 dualbound = 3688170.473689, lowerbound=1298846.473689, norm of subgrad 36.570509 stepsize= 1.000000 +dualbound = 3688231.459522, lowerbound=1298055.459522, norm of subgrad 1139.877388 dualbound = 3688231.459522, lowerbound=1298055.459522, norm of subgrad 36.414088 stepsize= 1.000000 +dualbound = 3688322.874125, lowerbound=1295746.874125, norm of subgrad 1138.862535 dualbound = 3688322.874125, lowerbound=1295746.874125, norm of subgrad 36.775190 stepsize= 1.000000 +dualbound = 3688359.089345, lowerbound=1298817.089345, norm of subgrad 1140.201776 dualbound = 3688359.089345, lowerbound=1298817.089345, norm of subgrad 35.766118 stepsize= 1.000000 +dualbound = 3688451.261837, lowerbound=1297039.261837, norm of subgrad 1139.420143 dualbound = 3688451.261837, lowerbound=1297039.261837, norm of subgrad 36.485237 stepsize= 1.000000 +dualbound = 3688512.784074, lowerbound=1297519.784074, norm of subgrad 1139.641954 dualbound = 3688512.784074, lowerbound=1297519.784074, norm of subgrad 36.407722 stepsize= 1.000000 +dualbound = 3688560.687662, lowerbound=1294873.687662, norm of subgrad 1138.458470 dualbound = 3688560.687662, lowerbound=1294873.687662, norm of subgrad 35.523282 stepsize= 1.000000 +dualbound = 3688636.373430, lowerbound=1302133.373430, norm of subgrad 1141.652475 dualbound = 3688636.373430, lowerbound=1302133.373430, norm of subgrad 36.231006 stepsize= 1.000000 +dualbound = 3688686.499224, lowerbound=1295882.499224, norm of subgrad 1138.916371 dualbound = 3688686.499224, lowerbound=1295882.499224, norm of subgrad 36.029513 stepsize= 1.000000 +dualbound = 3688733.744688, lowerbound=1297726.744688, norm of subgrad 1139.728803 dualbound = 3688733.744688, lowerbound=1297726.744688, norm of subgrad 36.086638 stepsize= 1.000000 +dualbound = 3688830.387737, lowerbound=1297661.387737, norm of subgrad 1139.689163 dualbound = 3688830.387737, lowerbound=1297661.387737, norm of subgrad 36.423111 stepsize= 1.000000 +dualbound = 3688894.082773, lowerbound=1296499.082773, norm of subgrad 1139.165520 dualbound = 3688894.082773, lowerbound=1296499.082773, norm of subgrad 35.534420 stepsize= 1.000000 +dualbound = 3688954.621218, lowerbound=1296185.621218, norm of subgrad 1139.030562 dualbound = 3688954.621218, lowerbound=1296185.621218, norm of subgrad 35.574407 stepsize= 1.000000 +dualbound = 3689028.535684, lowerbound=1295464.535684, norm of subgrad 1138.718813 dualbound = 3689028.535684, lowerbound=1295464.535684, norm of subgrad 35.915379 stepsize= 1.000000 +dualbound = 3689085.232793, lowerbound=1302224.232793, norm of subgrad 1141.712412 dualbound = 3689085.232793, lowerbound=1302224.232793, norm of subgrad 36.601873 stepsize= 1.000000 +dualbound = 3689119.899082, lowerbound=1296839.899082, norm of subgrad 1139.337044 dualbound = 3689119.899082, lowerbound=1296839.899082, norm of subgrad 35.828289 stepsize= 1.000000 +dualbound = 3689206.268639, lowerbound=1298411.268639, norm of subgrad 1140.043538 dualbound = 3689206.268639, lowerbound=1298411.268639, norm of subgrad 37.072491 stepsize= 1.000000 +dualbound = 3689267.367050, lowerbound=1300269.367050, norm of subgrad 1140.816535 dualbound = 3689267.367050, lowerbound=1300269.367050, norm of subgrad 35.413252 stepsize= 1.000000 +dualbound = 3689353.521421, lowerbound=1294208.521421, norm of subgrad 1138.164541 dualbound = 3689353.521421, lowerbound=1294208.521421, norm of subgrad 36.002144 stepsize= 1.000000 +dualbound = 3689411.308452, lowerbound=1302680.308452, norm of subgrad 1141.889359 dualbound = 3689411.308452, lowerbound=1302680.308452, norm of subgrad 35.899680 stepsize= 1.000000 +dualbound = 3689486.434931, lowerbound=1294881.434931, norm of subgrad 1138.481636 dualbound = 3689486.434931, lowerbound=1294881.434931, norm of subgrad 36.525696 stepsize= 1.000000 +dualbound = 3689505.376423, lowerbound=1296014.376423, norm of subgrad 1138.961973 dualbound = 3689505.376423, lowerbound=1296014.376423, norm of subgrad 35.198601 stepsize= 1.000000 +dualbound = 3689616.532365, lowerbound=1304401.532365, norm of subgrad 1142.629657 dualbound = 3689616.532365, lowerbound=1304401.532365, norm of subgrad 36.223693 stepsize= 1.000000 +dualbound = 3689649.300101, lowerbound=1296764.300101, norm of subgrad 1139.296845 dualbound = 3689649.300101, lowerbound=1296764.300101, norm of subgrad 35.577630 stepsize= 1.000000 +dualbound = 3689739.123310, lowerbound=1299996.123310, norm of subgrad 1140.676169 dualbound = 3689739.123310, lowerbound=1299996.123310, norm of subgrad 35.154277 stepsize= 1.000000 +dualbound = 3689797.100335, lowerbound=1298582.100335, norm of subgrad 1140.077234 dualbound = 3689797.100335, lowerbound=1298582.100335, norm of subgrad 35.383287 stepsize= 1.000000 +dualbound = 3689876.627946, lowerbound=1300356.627946, norm of subgrad 1140.864421 dualbound = 3689876.627946, lowerbound=1300356.627946, norm of subgrad 35.979544 stepsize= 1.000000 +dualbound = 3689890.526770, lowerbound=1297456.526770, norm of subgrad 1139.602355 dualbound = 3689890.526770, lowerbound=1297456.526770, norm of subgrad 35.368048 stepsize= 1.000000 +dualbound = 3689987.829631, lowerbound=1298862.829631, norm of subgrad 1140.199031 dualbound = 3689987.829631, lowerbound=1298862.829631, norm of subgrad 35.892936 stepsize= 1.000000 +dualbound = 3690064.650955, lowerbound=1303147.650955, norm of subgrad 1142.091787 dualbound = 3690064.650955, lowerbound=1303147.650955, norm of subgrad 36.094616 stepsize= 1.000000 +dualbound = 3690117.578691, lowerbound=1294376.578691, norm of subgrad 1138.255937 dualbound = 3690117.578691, lowerbound=1294376.578691, norm of subgrad 36.096090 stepsize= 1.000000 +dualbound = 3690185.872821, lowerbound=1298256.872821, norm of subgrad 1139.953013 dualbound = 3690185.872821, lowerbound=1298256.872821, norm of subgrad 36.115013 stepsize= 1.000000 +dualbound = 3690242.789780, lowerbound=1294880.789780, norm of subgrad 1138.454562 dualbound = 3690242.789780, lowerbound=1294880.789780, norm of subgrad 35.424807 stepsize= 1.000000 +dualbound = 3690300.639846, lowerbound=1298913.639846, norm of subgrad 1140.229643 dualbound = 3690300.639846, lowerbound=1298913.639846, norm of subgrad 35.606882 stepsize= 1.000000 +dualbound = 3690382.186634, lowerbound=1299529.186634, norm of subgrad 1140.514001 dualbound = 3690382.186634, lowerbound=1299529.186634, norm of subgrad 36.394324 stepsize= 1.000000 +dualbound = 3690419.494856, lowerbound=1296905.494856, norm of subgrad 1139.335111 dualbound = 3690419.494856, lowerbound=1296905.494856, norm of subgrad 34.875611 stepsize= 1.000000 +dualbound = 3690521.733004, lowerbound=1301794.733004, norm of subgrad 1141.487071 dualbound = 3690521.733004, lowerbound=1301794.733004, norm of subgrad 36.058815 stepsize= 1.000000 +dualbound = 3690559.921278, lowerbound=1297668.921278, norm of subgrad 1139.673603 dualbound = 3690559.921278, lowerbound=1297668.921278, norm of subgrad 35.002690 stepsize= 1.000000 +dualbound = 3690637.048385, lowerbound=1293850.048385, norm of subgrad 1138.028140 dualbound = 3690637.048385, lowerbound=1293850.048385, norm of subgrad 36.539391 stepsize= 1.000000 +dualbound = 3690687.272638, lowerbound=1303216.272638, norm of subgrad 1142.130585 dualbound = 3690687.272638, lowerbound=1303216.272638, norm of subgrad 36.003114 stepsize= 1.000000 +dualbound = 3690760.725492, lowerbound=1294730.725492, norm of subgrad 1138.373720 dualbound = 3690760.725492, lowerbound=1294730.725492, norm of subgrad 35.177448 stepsize= 1.000000 +dualbound = 3690817.834531, lowerbound=1297889.834531, norm of subgrad 1139.798155 dualbound = 3690817.834531, lowerbound=1297889.834531, norm of subgrad 36.153963 stepsize= 1.000000 +dualbound = 3690873.095217, lowerbound=1292561.095217, norm of subgrad 1137.453777 dualbound = 3690873.095217, lowerbound=1292561.095217, norm of subgrad 35.989730 stepsize= 1.000000 +dualbound = 3690921.401426, lowerbound=1302270.401426, norm of subgrad 1141.690589 dualbound = 3690921.401426, lowerbound=1302270.401426, norm of subgrad 35.146923 stepsize= 1.000000 +dualbound = 3691033.455717, lowerbound=1297736.455717, norm of subgrad 1139.740960 dualbound = 3691033.455717, lowerbound=1297736.455717, norm of subgrad 37.216318 stepsize= 1.000000 +dualbound = 3691030.338964, lowerbound=1300056.338964, norm of subgrad 1140.759983 dualbound = 3691030.338964, lowerbound=1300056.338964, norm of subgrad 35.691501 stepsize= 1.000000 +dualbound = 3691135.171227, lowerbound=1294088.171227, norm of subgrad 1138.138028 dualbound = 3691135.171227, lowerbound=1294088.171227, norm of subgrad 37.078731 stepsize= 1.000000 +dualbound = 3691178.981931, lowerbound=1297415.981931, norm of subgrad 1139.589392 dualbound = 3691178.981931, lowerbound=1297415.981931, norm of subgrad 35.941768 stepsize= 1.000000 +dualbound = 3691254.712562, lowerbound=1293099.712562, norm of subgrad 1137.698428 dualbound = 3691254.712562, lowerbound=1293099.712562, norm of subgrad 36.520277 stepsize= 1.000000 +dualbound = 3691336.637858, lowerbound=1301021.637858, norm of subgrad 1141.171169 dualbound = 3691336.637858, lowerbound=1301021.637858, norm of subgrad 36.495552 stepsize= 1.000000 +dualbound = 3691385.262554, lowerbound=1300618.262554, norm of subgrad 1140.982586 dualbound = 3691385.262554, lowerbound=1300618.262554, norm of subgrad 35.659847 stepsize= 1.000000 +dualbound = 3691438.829931, lowerbound=1297880.829931, norm of subgrad 1139.790257 dualbound = 3691438.829931, lowerbound=1297880.829931, norm of subgrad 35.980097 stepsize= 1.000000 +dualbound = 3691514.478771, lowerbound=1296647.478771, norm of subgrad 1139.259619 dualbound = 3691514.478771, lowerbound=1296647.478771, norm of subgrad 36.614872 stepsize= 1.000000 +dualbound = 3691550.472486, lowerbound=1297248.472486, norm of subgrad 1139.513261 dualbound = 3691550.472486, lowerbound=1297248.472486, norm of subgrad 35.749038 stepsize= 1.000000 +dualbound = 3691655.880150, lowerbound=1291592.880150, norm of subgrad 1137.016218 dualbound = 3691655.880150, lowerbound=1291592.880150, norm of subgrad 36.309884 stepsize= 1.000000 +dualbound = 3691701.149432, lowerbound=1303952.149432, norm of subgrad 1142.455754 dualbound = 3691701.149432, lowerbound=1303952.149432, norm of subgrad 36.031504 stepsize= 1.000000 +dualbound = 3691788.550357, lowerbound=1297685.550357, norm of subgrad 1139.719505 dualbound = 3691788.550357, lowerbound=1297685.550357, norm of subgrad 36.910716 stepsize= 1.000000 +dualbound = 3691836.112645, lowerbound=1296205.112645, norm of subgrad 1139.072918 dualbound = 3691836.112645, lowerbound=1296205.112645, norm of subgrad 36.463163 stepsize= 1.000000 +dualbound = 3691896.594556, lowerbound=1296296.594556, norm of subgrad 1139.095516 dualbound = 3691896.594556, lowerbound=1296296.594556, norm of subgrad 36.089914 stepsize= 1.000000 +dualbound = 3691970.370312, lowerbound=1299183.370312, norm of subgrad 1140.371155 dualbound = 3691970.370312, lowerbound=1299183.370312, norm of subgrad 36.561944 stepsize= 1.000000 +dualbound = 3692037.691530, lowerbound=1297101.691530, norm of subgrad 1139.432618 dualbound = 3692037.691530, lowerbound=1297101.691530, norm of subgrad 35.669612 stepsize= 1.000000 +dualbound = 3692115.299781, lowerbound=1296650.299781, norm of subgrad 1139.249446 dualbound = 3692115.299781, lowerbound=1296650.299781, norm of subgrad 36.285097 stepsize= 1.000000 +dualbound = 3692145.173666, lowerbound=1301546.173666, norm of subgrad 1141.417616 dualbound = 3692145.173666, lowerbound=1301546.173666, norm of subgrad 36.302533 stepsize= 1.000000 +dualbound = 3692207.377440, lowerbound=1299750.377440, norm of subgrad 1140.601761 dualbound = 3692207.377440, lowerbound=1299750.377440, norm of subgrad 35.835789 stepsize= 1.000000 +dualbound = 3692309.937871, lowerbound=1298230.937871, norm of subgrad 1139.905232 dualbound = 3692309.937871, lowerbound=1298230.937871, norm of subgrad 35.433888 stepsize= 1.000000 +dualbound = 3692358.838507, lowerbound=1296890.838507, norm of subgrad 1139.321657 dualbound = 3692358.838507, lowerbound=1296890.838507, norm of subgrad 34.812363 stepsize= 1.000000 +dualbound = 3692420.568397, lowerbound=1299602.568397, norm of subgrad 1140.539157 dualbound = 3692420.568397, lowerbound=1299602.568397, norm of subgrad 35.898884 stepsize= 1.000000 +dualbound = 3692481.432425, lowerbound=1297773.432425, norm of subgrad 1139.732176 dualbound = 3692481.432425, lowerbound=1297773.432425, norm of subgrad 35.733234 stepsize= 1.000000 +dualbound = 3692541.398959, lowerbound=1294073.398959, norm of subgrad 1138.115723 dualbound = 3692541.398959, lowerbound=1294073.398959, norm of subgrad 35.971746 stepsize= 1.000000 +dualbound = 3692596.533861, lowerbound=1301245.533861, norm of subgrad 1141.258312 dualbound = 3692596.533861, lowerbound=1301245.533861, norm of subgrad 35.778973 stepsize= 1.000000 +dualbound = 3692680.203008, lowerbound=1302780.203008, norm of subgrad 1141.944921 dualbound = 3692680.203008, lowerbound=1302780.203008, norm of subgrad 36.628802 stepsize= 1.000000 +dualbound = 3692721.507319, lowerbound=1290001.507319, norm of subgrad 1136.355801 dualbound = 3692721.507319, lowerbound=1290001.507319, norm of subgrad 36.664756 stepsize= 1.000000 +dualbound = 3692792.250404, lowerbound=1300690.250404, norm of subgrad 1140.997480 dualbound = 3692792.250404, lowerbound=1300690.250404, norm of subgrad 35.436465 stepsize= 1.000000 +dualbound = 3692882.457003, lowerbound=1298183.457003, norm of subgrad 1139.907214 dualbound = 3692882.457003, lowerbound=1298183.457003, norm of subgrad 35.988979 stepsize= 1.000000 +dualbound = 3692947.357202, lowerbound=1302527.357202, norm of subgrad 1141.827201 dualbound = 3692947.357202, lowerbound=1302527.357202, norm of subgrad 36.151075 stepsize= 1.000000 +dualbound = 3692979.344611, lowerbound=1296991.344611, norm of subgrad 1139.390339 dualbound = 3692979.344611, lowerbound=1296991.344611, norm of subgrad 35.369300 stepsize= 1.000000 +dualbound = 3693060.694746, lowerbound=1297439.694746, norm of subgrad 1139.590143 dualbound = 3693060.694746, lowerbound=1297439.694746, norm of subgrad 36.157297 stepsize= 1.000000 +dualbound = 3693125.793436, lowerbound=1294611.793436, norm of subgrad 1138.346078 dualbound = 3693125.793436, lowerbound=1294611.793436, norm of subgrad 35.848273 stepsize= 1.000000 +dualbound = 3693189.186073, lowerbound=1304284.186073, norm of subgrad 1142.581370 dualbound = 3693189.186073, lowerbound=1304284.186073, norm of subgrad 35.656593 stepsize= 1.000000 +dualbound = 3693254.005116, lowerbound=1292808.005116, norm of subgrad 1137.541210 dualbound = 3693254.005116, lowerbound=1292808.005116, norm of subgrad 35.451644 stepsize= 1.000000 +dualbound = 3693325.433992, lowerbound=1298014.433992, norm of subgrad 1139.835266 dualbound = 3693325.433992, lowerbound=1298014.433992, norm of subgrad 35.797051 stepsize= 1.000000 +dualbound = 3693369.027633, lowerbound=1297788.027633, norm of subgrad 1139.722785 dualbound = 3693369.027633, lowerbound=1297788.027633, norm of subgrad 34.979903 stepsize= 1.000000 +dualbound = 3693450.757213, lowerbound=1298504.757213, norm of subgrad 1140.045507 dualbound = 3693450.757213, lowerbound=1298504.757213, norm of subgrad 35.787282 stepsize= 1.000000 +dualbound = 3693496.502536, lowerbound=1295839.502536, norm of subgrad 1138.923835 dualbound = 3693496.502536, lowerbound=1295839.502536, norm of subgrad 36.793278 stepsize= 1.000000 +dualbound = 3693560.528448, lowerbound=1296021.528448, norm of subgrad 1138.987940 dualbound = 3693560.528448, lowerbound=1296021.528448, norm of subgrad 36.551688 stepsize= 1.000000 +dualbound = 3693595.216181, lowerbound=1293849.216181, norm of subgrad 1138.029972 dualbound = 3693595.216181, lowerbound=1293849.216181, norm of subgrad 36.023433 stepsize= 1.000000 +dualbound = 3693716.017277, lowerbound=1296358.017277, norm of subgrad 1139.134328 dualbound = 3693716.017277, lowerbound=1296358.017277, norm of subgrad 37.280036 stepsize= 1.000000 +dualbound = 3693730.387040, lowerbound=1300871.387040, norm of subgrad 1141.106650 dualbound = 3693730.387040, lowerbound=1300871.387040, norm of subgrad 35.600137 stepsize= 1.000000 +dualbound = 3693831.811554, lowerbound=1296528.811554, norm of subgrad 1139.192614 dualbound = 3693831.811554, lowerbound=1296528.811554, norm of subgrad 36.502391 stepsize= 1.000000 +dualbound = 3693883.006398, lowerbound=1297864.006398, norm of subgrad 1139.762697 dualbound = 3693883.006398, lowerbound=1297864.006398, norm of subgrad 35.301485 stepsize= 1.000000 +dualbound = 3693959.141482, lowerbound=1296487.141482, norm of subgrad 1139.177397 dualbound = 3693959.141482, lowerbound=1296487.141482, norm of subgrad 36.251001 stepsize= 1.000000 +dualbound = 3694012.740402, lowerbound=1299746.740402, norm of subgrad 1140.600605 dualbound = 3694012.740402, lowerbound=1299746.740402, norm of subgrad 35.729524 stepsize= 1.000000 +dualbound = 3694087.734683, lowerbound=1301886.734683, norm of subgrad 1141.532187 dualbound = 3694087.734683, lowerbound=1301886.734683, norm of subgrad 35.832866 stepsize= 1.000000 +dualbound = 3694141.896678, lowerbound=1295644.896678, norm of subgrad 1138.785272 dualbound = 3694141.896678, lowerbound=1295644.896678, norm of subgrad 35.230129 stepsize= 1.000000 +dualbound = 3694211.157732, lowerbound=1301102.157732, norm of subgrad 1141.228355 dualbound = 3694211.157732, lowerbound=1301102.157732, norm of subgrad 37.003528 stepsize= 1.000000 +dualbound = 3694247.868154, lowerbound=1299795.868154, norm of subgrad 1140.638360 dualbound = 3694247.868154, lowerbound=1299795.868154, norm of subgrad 36.009866 stepsize= 1.000000 +dualbound = 3694335.946678, lowerbound=1297983.946678, norm of subgrad 1139.826279 dualbound = 3694335.946678, lowerbound=1297983.946678, norm of subgrad 36.167368 stepsize= 1.000000 +dualbound = 3694401.390919, lowerbound=1302024.390919, norm of subgrad 1141.599488 dualbound = 3694401.390919, lowerbound=1302024.390919, norm of subgrad 35.922754 stepsize= 1.000000 +dualbound = 3694476.433925, lowerbound=1301809.433925, norm of subgrad 1141.506651 dualbound = 3694476.433925, lowerbound=1301809.433925, norm of subgrad 36.097687 stepsize= 1.000000 +dualbound = 3694512.007607, lowerbound=1294317.007607, norm of subgrad 1138.223619 dualbound = 3694512.007607, lowerbound=1294317.007607, norm of subgrad 35.659132 stepsize= 1.000000 +dualbound = 3694593.752306, lowerbound=1299107.752306, norm of subgrad 1140.334491 dualbound = 3694593.752306, lowerbound=1299107.752306, norm of subgrad 36.561519 stepsize= 1.000000 +dualbound = 3694653.364879, lowerbound=1299802.364879, norm of subgrad 1140.620605 dualbound = 3694653.364879, lowerbound=1299802.364879, norm of subgrad 35.673696 stepsize= 1.000000 +dualbound = 3694718.595176, lowerbound=1297649.595176, norm of subgrad 1139.693202 dualbound = 3694718.595176, lowerbound=1297649.595176, norm of subgrad 36.279888 stepsize= 1.000000 +dualbound = 3694777.272162, lowerbound=1295445.272162, norm of subgrad 1138.730553 dualbound = 3694777.272162, lowerbound=1295445.272162, norm of subgrad 36.341120 stepsize= 1.000000 +dualbound = 3694809.559787, lowerbound=1298902.559787, norm of subgrad 1140.246710 dualbound = 3694809.559787, lowerbound=1298902.559787, norm of subgrad 35.948402 stepsize= 1.000000 +dualbound = 3694915.667835, lowerbound=1295073.667835, norm of subgrad 1138.544539 dualbound = 3694915.667835, lowerbound=1295073.667835, norm of subgrad 36.278203 stepsize= 1.000000 +dualbound = 3694964.756384, lowerbound=1300588.756384, norm of subgrad 1140.967027 dualbound = 3694964.756384, lowerbound=1300588.756384, norm of subgrad 35.582138 stepsize= 1.000000 +dualbound = 3695042.968334, lowerbound=1299318.968334, norm of subgrad 1140.389832 dualbound = 3695042.968334, lowerbound=1299318.968334, norm of subgrad 35.330043 stepsize= 1.000000 +dualbound = 3695108.454304, lowerbound=1293593.454304, norm of subgrad 1137.911444 dualbound = 3695108.454304, lowerbound=1293593.454304, norm of subgrad 36.255840 stepsize= 1.000000 +dualbound = 3695169.893755, lowerbound=1304950.893755, norm of subgrad 1142.865650 dualbound = 3695169.893755, lowerbound=1304950.893755, norm of subgrad 35.389821 stepsize= 1.000000 +dualbound = 3695248.044970, lowerbound=1301011.044970, norm of subgrad 1141.150755 dualbound = 3695248.044970, lowerbound=1301011.044970, norm of subgrad 35.946505 stepsize= 1.000000 +dualbound = 3695303.537457, lowerbound=1299782.537457, norm of subgrad 1140.607092 dualbound = 3695303.537457, lowerbound=1299782.537457, norm of subgrad 35.461141 stepsize= 1.000000 +dualbound = 3695362.600445, lowerbound=1302310.600445, norm of subgrad 1141.701187 dualbound = 3695362.600445, lowerbound=1302310.600445, norm of subgrad 35.072254 stepsize= 1.000000 +dualbound = 3695427.950930, lowerbound=1292445.950930, norm of subgrad 1137.379423 dualbound = 3695427.950930, lowerbound=1292445.950930, norm of subgrad 35.374433 stepsize= 1.000000 +dualbound = 3695496.139179, lowerbound=1299921.139179, norm of subgrad 1140.667848 dualbound = 3695496.139179, lowerbound=1299921.139179, norm of subgrad 35.639700 stepsize= 1.000000 +dualbound = 3695548.250392, lowerbound=1300789.250392, norm of subgrad 1141.059705 dualbound = 3695548.250392, lowerbound=1300789.250392, norm of subgrad 35.778642 stepsize= 1.000000 +dualbound = 3695623.715979, lowerbound=1296136.715979, norm of subgrad 1139.009094 dualbound = 3695623.715979, lowerbound=1296136.715979, norm of subgrad 35.783594 stepsize= 1.000000 +dualbound = 3695665.237604, lowerbound=1292714.237604, norm of subgrad 1137.509225 dualbound = 3695665.237604, lowerbound=1292714.237604, norm of subgrad 35.419227 stepsize= 1.000000 +dualbound = 3695759.037562, lowerbound=1302433.037562, norm of subgrad 1141.790277 dualbound = 3695759.037562, lowerbound=1302433.037562, norm of subgrad 36.685146 stepsize= 1.000000 +dualbound = 3695794.417608, lowerbound=1301481.417608, norm of subgrad 1141.386621 dualbound = 3695794.417608, lowerbound=1301481.417608, norm of subgrad 36.295730 stepsize= 1.000000 +dualbound = 3695856.477220, lowerbound=1294298.477220, norm of subgrad 1138.213283 dualbound = 3695856.477220, lowerbound=1294298.477220, norm of subgrad 35.959138 stepsize= 1.000000 +dualbound = 3695944.833510, lowerbound=1294357.833510, norm of subgrad 1138.227496 dualbound = 3695944.833510, lowerbound=1294357.833510, norm of subgrad 35.949357 stepsize= 1.000000 +dualbound = 3696009.228146, lowerbound=1305976.228146, norm of subgrad 1143.319390 dualbound = 3696009.228146, lowerbound=1305976.228146, norm of subgrad 35.600486 stepsize= 1.000000 +dualbound = 3696054.657663, lowerbound=1293146.657663, norm of subgrad 1137.736199 dualbound = 3696054.657663, lowerbound=1293146.657663, norm of subgrad 36.639180 stepsize= 1.000000 +dualbound = 3696120.186914, lowerbound=1301539.186914, norm of subgrad 1141.380387 dualbound = 3696120.186914, lowerbound=1301539.186914, norm of subgrad 35.714552 stepsize= 1.000000 +dualbound = 3696192.856055, lowerbound=1299264.856055, norm of subgrad 1140.407320 dualbound = 3696192.856055, lowerbound=1299264.856055, norm of subgrad 36.560486 stepsize= 1.000000 +dualbound = 3696259.525082, lowerbound=1306388.525082, norm of subgrad 1143.505367 dualbound = 3696259.525082, lowerbound=1306388.525082, norm of subgrad 35.814369 stepsize= 1.000000 +dualbound = 3696316.955022, lowerbound=1293274.955022, norm of subgrad 1137.767531 dualbound = 3696316.955022, lowerbound=1293274.955022, norm of subgrad 36.019855 stepsize= 1.000000 +dualbound = 3696387.376448, lowerbound=1295596.376448, norm of subgrad 1138.804363 dualbound = 3696387.376448, lowerbound=1295596.376448, norm of subgrad 36.734472 stepsize= 1.000000 +dualbound = 3696429.121379, lowerbound=1298420.121379, norm of subgrad 1140.078121 dualbound = 3696429.121379, lowerbound=1298420.121379, norm of subgrad 37.413165 stepsize= 1.000000 +dualbound = 3696510.415943, lowerbound=1296924.415943, norm of subgrad 1139.376328 dualbound = 3696510.415943, lowerbound=1296924.415943, norm of subgrad 36.541683 stepsize= 1.000000 +dualbound = 3696570.180159, lowerbound=1296657.180160, norm of subgrad 1139.251588 dualbound = 3696570.180159, lowerbound=1296657.180160, norm of subgrad 36.010613 stepsize= 1.000000 +dualbound = 3696659.636796, lowerbound=1299229.636796, norm of subgrad 1140.376094 dualbound = 3696659.636796, lowerbound=1299229.636796, norm of subgrad 36.296785 stepsize= 1.000000 +dualbound = 3696704.108669, lowerbound=1298715.108669, norm of subgrad 1140.159686 dualbound = 3696704.108669, lowerbound=1298715.108669, norm of subgrad 35.964870 stepsize= 1.000000 +dualbound = 3696771.657240, lowerbound=1300538.657240, norm of subgrad 1140.972242 dualbound = 3696771.657240, lowerbound=1300538.657240, norm of subgrad 36.695348 stepsize= 1.000000 +dualbound = 3696835.338490, lowerbound=1299085.338490, norm of subgrad 1140.311509 dualbound = 3696835.338490, lowerbound=1299085.338490, norm of subgrad 35.898207 stepsize= 1.000000 +dualbound = 3696915.442395, lowerbound=1298992.442395, norm of subgrad 1140.266829 dualbound = 3696915.442395, lowerbound=1298992.442395, norm of subgrad 36.001443 stepsize= 1.000000 +dualbound = 3696977.377458, lowerbound=1298093.377458, norm of subgrad 1139.857174 dualbound = 3696977.377458, lowerbound=1298093.377458, norm of subgrad 35.255284 stepsize= 1.000000 +dualbound = 3697035.406719, lowerbound=1299639.406719, norm of subgrad 1140.564512 dualbound = 3697035.406719, lowerbound=1299639.406719, norm of subgrad 36.139027 stepsize= 1.000000 +dualbound = 3697082.702105, lowerbound=1300828.702105, norm of subgrad 1141.072610 dualbound = 3697082.702105, lowerbound=1300828.702105, norm of subgrad 35.570991 stepsize= 1.000000 +dualbound = 3697161.761073, lowerbound=1295112.761073, norm of subgrad 1138.556877 dualbound = 3697161.761073, lowerbound=1295112.761073, norm of subgrad 35.749951 stepsize= 1.000000 +dualbound = 3697230.342938, lowerbound=1292506.342938, norm of subgrad 1137.421796 dualbound = 3697230.342938, lowerbound=1292506.342938, norm of subgrad 35.924669 stepsize= 1.000000 +dualbound = 3697298.341606, lowerbound=1305371.341606, norm of subgrad 1143.056141 dualbound = 3697298.341606, lowerbound=1305371.341606, norm of subgrad 35.693118 stepsize= 1.000000 +dualbound = 3697346.246981, lowerbound=1296583.246981, norm of subgrad 1139.202461 dualbound = 3697346.246981, lowerbound=1296583.246981, norm of subgrad 35.311547 stepsize= 1.000000 +dualbound = 3697414.843489, lowerbound=1299504.843489, norm of subgrad 1140.492369 dualbound = 3697414.843489, lowerbound=1299504.843489, norm of subgrad 35.869158 stepsize= 1.000000 +dualbound = 3697466.722930, lowerbound=1304013.722930, norm of subgrad 1142.451191 dualbound = 3697466.722930, lowerbound=1304013.722930, norm of subgrad 35.112383 stepsize= 1.000000 +dualbound = 3697559.838077, lowerbound=1298851.838077, norm of subgrad 1140.166583 dualbound = 3697559.838077, lowerbound=1298851.838077, norm of subgrad 34.944458 stepsize= 1.000000 +dualbound = 3697612.229865, lowerbound=1301203.229865, norm of subgrad 1141.213052 dualbound = 3697612.229865, lowerbound=1301203.229865, norm of subgrad 34.876809 stepsize= 1.000000 +dualbound = 3697692.405683, lowerbound=1297579.405683, norm of subgrad 1139.657144 dualbound = 3697692.405683, lowerbound=1297579.405683, norm of subgrad 36.320460 stepsize= 1.000000 +dualbound = 3697712.913095, lowerbound=1295458.913095, norm of subgrad 1138.753227 dualbound = 3697712.913095, lowerbound=1295458.913095, norm of subgrad 36.338787 stepsize= 1.000000 +dualbound = 3697785.629616, lowerbound=1301357.629616, norm of subgrad 1141.321440 dualbound = 3697785.629616, lowerbound=1301357.629616, norm of subgrad 36.465278 stepsize= 1.000000 +dualbound = 3697874.278072, lowerbound=1299532.278072, norm of subgrad 1140.489929 dualbound = 3697874.278072, lowerbound=1299532.278072, norm of subgrad 35.688212 stepsize= 1.000000 +dualbound = 3697945.607125, lowerbound=1303534.607125, norm of subgrad 1142.280442 dualbound = 3697945.607125, lowerbound=1303534.607125, norm of subgrad 36.624159 stepsize= 1.000000 +dualbound = 3697969.468904, lowerbound=1297845.468904, norm of subgrad 1139.786589 dualbound = 3697969.468904, lowerbound=1297845.468904, norm of subgrad 35.942479 stepsize= 1.000000 +dualbound = 3698068.223771, lowerbound=1302867.223771, norm of subgrad 1142.004038 dualbound = 3698068.223771, lowerbound=1302867.223771, norm of subgrad 37.480060 stepsize= 1.000000 +dualbound = 3698095.843470, lowerbound=1300537.843470, norm of subgrad 1140.960930 dualbound = 3698095.843470, lowerbound=1300537.843470, norm of subgrad 35.799716 stepsize= 1.000000 +dualbound = 3698192.353336, lowerbound=1299695.353336, norm of subgrad 1140.562297 dualbound = 3698192.353336, lowerbound=1299695.353336, norm of subgrad 35.826106 stepsize= 1.000000 +dualbound = 3698277.846210, lowerbound=1296436.846210, norm of subgrad 1139.153127 dualbound = 3698277.846210, lowerbound=1296436.846210, norm of subgrad 36.311057 stepsize= 1.000000 +dualbound = 3698307.558684, lowerbound=1298525.558684, norm of subgrad 1140.044104 dualbound = 3698307.558684, lowerbound=1298525.558684, norm of subgrad 34.708968 stepsize= 1.000000 +dualbound = 3698394.020648, lowerbound=1303981.020648, norm of subgrad 1142.434690 dualbound = 3698394.020648, lowerbound=1303981.020648, norm of subgrad 35.531141 stepsize= 1.000000 +dualbound = 3698452.471335, lowerbound=1296377.471335, norm of subgrad 1139.114775 dualbound = 3698452.471335, lowerbound=1296377.471335, norm of subgrad 35.545052 stepsize= 1.000000 +dualbound = 3698482.525504, lowerbound=1300111.525505, norm of subgrad 1140.737273 dualbound = 3698482.525504, lowerbound=1300111.525505, norm of subgrad 34.641798 stepsize= 1.000000 +dualbound = 3698579.906948, lowerbound=1294693.906948, norm of subgrad 1138.380388 dualbound = 3698579.906948, lowerbound=1294693.906948, norm of subgrad 36.240605 stepsize= 1.000000 +dualbound = 3698633.178931, lowerbound=1301962.178931, norm of subgrad 1141.570926 dualbound = 3698633.178931, lowerbound=1301962.178931, norm of subgrad 35.710950 stepsize= 1.000000 +dualbound = 3698706.640151, lowerbound=1295062.640151, norm of subgrad 1138.548040 dualbound = 3698706.640151, lowerbound=1295062.640151, norm of subgrad 36.089628 stepsize= 1.000000 +dualbound = 3698749.700270, lowerbound=1299340.700270, norm of subgrad 1140.421720 dualbound = 3698749.700270, lowerbound=1299340.700270, norm of subgrad 35.553623 stepsize= 1.000000 +dualbound = 3698836.932531, lowerbound=1292611.932531, norm of subgrad 1137.456343 dualbound = 3698836.932531, lowerbound=1292611.932531, norm of subgrad 35.808271 stepsize= 1.000000 +dualbound = 3698882.396969, lowerbound=1303778.396969, norm of subgrad 1142.398528 dualbound = 3698882.396969, lowerbound=1303778.396969, norm of subgrad 36.626008 stepsize= 1.000000 +dualbound = 3698943.806524, lowerbound=1301352.806524, norm of subgrad 1141.316699 dualbound = 3698943.806524, lowerbound=1301352.806524, norm of subgrad 36.227194 stepsize= 1.000000 +dualbound = 3698987.606464, lowerbound=1300534.606464, norm of subgrad 1140.963017 dualbound = 3698987.606464, lowerbound=1300534.606464, norm of subgrad 36.135854 stepsize= 1.000000 +dualbound = 3699081.505573, lowerbound=1300452.505573, norm of subgrad 1140.918273 dualbound = 3699081.505573, lowerbound=1300452.505573, norm of subgrad 36.549954 stepsize= 1.000000 +dualbound = 3699129.980361, lowerbound=1295344.980361, norm of subgrad 1138.694419 dualbound = 3699129.980361, lowerbound=1295344.980361, norm of subgrad 36.448248 stepsize= 1.000000 +dualbound = 3699185.646452, lowerbound=1297202.646452, norm of subgrad 1139.513776 dualbound = 3699185.646452, lowerbound=1297202.646452, norm of subgrad 36.669689 stepsize= 1.000000 +dualbound = 3699243.200476, lowerbound=1303619.200476, norm of subgrad 1142.305651 dualbound = 3699243.200476, lowerbound=1303619.200476, norm of subgrad 36.063195 stepsize= 1.000000 +dualbound = 3699314.618627, lowerbound=1297955.618627, norm of subgrad 1139.834031 dualbound = 3699314.618627, lowerbound=1297955.618627, norm of subgrad 36.570728 stepsize= 1.000000 +dualbound = 3699382.474208, lowerbound=1299915.474208, norm of subgrad 1140.690350 dualbound = 3699382.474208, lowerbound=1299915.474208, norm of subgrad 36.426029 stepsize= 1.000000 +dualbound = 3699437.441568, lowerbound=1287460.441568, norm of subgrad 1135.244221 dualbound = 3699437.441568, lowerbound=1287460.441568, norm of subgrad 37.067066 stepsize= 1.000000 +dualbound = 3699494.430073, lowerbound=1304855.430073, norm of subgrad 1142.847510 dualbound = 3699494.430073, lowerbound=1304855.430073, norm of subgrad 36.083078 stepsize= 1.000000 +dualbound = 3699582.256341, lowerbound=1290645.256341, norm of subgrad 1136.613504 dualbound = 3699582.256341, lowerbound=1290645.256341, norm of subgrad 36.507893 stepsize= 1.000000 +dualbound = 3699633.870761, lowerbound=1300774.870761, norm of subgrad 1141.078819 dualbound = 3699633.870761, lowerbound=1300774.870761, norm of subgrad 36.573411 stepsize= 1.000000 +dualbound = 3699697.336549, lowerbound=1301185.336549, norm of subgrad 1141.256035 dualbound = 3699697.336549, lowerbound=1301185.336549, norm of subgrad 36.653319 stepsize= 1.000000 +dualbound = 3699751.881455, lowerbound=1298024.881455, norm of subgrad 1139.849499 dualbound = 3699751.881455, lowerbound=1298024.881455, norm of subgrad 35.868439 stepsize= 1.000000 +dualbound = 3699845.805470, lowerbound=1300579.805470, norm of subgrad 1140.953463 dualbound = 3699845.805470, lowerbound=1300579.805470, norm of subgrad 35.901588 stepsize= 1.000000 +dualbound = 3699914.665110, lowerbound=1296034.665110, norm of subgrad 1138.962100 dualbound = 3699914.665110, lowerbound=1296034.665110, norm of subgrad 35.621056 stepsize= 1.000000 +dualbound = 3699964.567376, lowerbound=1300668.567376, norm of subgrad 1141.002878 dualbound = 3699964.567376, lowerbound=1300668.567376, norm of subgrad 35.621654 stepsize= 1.000000 +dualbound = 3700052.061093, lowerbound=1294880.061093, norm of subgrad 1138.449850 dualbound = 3700052.061093, lowerbound=1294880.061093, norm of subgrad 35.714055 stepsize= 1.000000 +dualbound = 3700087.451680, lowerbound=1300695.451680, norm of subgrad 1141.019917 dualbound = 3700087.451680, lowerbound=1300695.451680, norm of subgrad 35.586382 stepsize= 1.000000 +dualbound = 3700178.691250, lowerbound=1303237.691250, norm of subgrad 1142.122012 dualbound = 3700178.691250, lowerbound=1303237.691250, norm of subgrad 36.003327 stepsize= 1.000000 +dualbound = 3700237.128608, lowerbound=1301587.128608, norm of subgrad 1141.425481 dualbound = 3700237.128608, lowerbound=1301587.128608, norm of subgrad 36.379079 stepsize= 1.000000 +dualbound = 3700282.761024, lowerbound=1299729.761024, norm of subgrad 1140.615518 dualbound = 3700282.761024, lowerbound=1299729.761024, norm of subgrad 36.326745 stepsize= 1.000000 +dualbound = 3700366.013186, lowerbound=1299577.013186, norm of subgrad 1140.514802 dualbound = 3700366.013186, lowerbound=1299577.013186, norm of subgrad 35.780612 stepsize= 1.000000 +dualbound = 3700434.701231, lowerbound=1305778.701231, norm of subgrad 1143.234316 dualbound = 3700434.701231, lowerbound=1305778.701231, norm of subgrad 35.702774 stepsize= 1.000000 +dualbound = 3700501.923942, lowerbound=1297339.923942, norm of subgrad 1139.540225 dualbound = 3700501.923942, lowerbound=1297339.923942, norm of subgrad 35.766223 stepsize= 1.000000 +dualbound = 3700550.556237, lowerbound=1296814.556237, norm of subgrad 1139.311440 dualbound = 3700550.556237, lowerbound=1296814.556237, norm of subgrad 35.561669 stepsize= 1.000000 +dualbound = 3700630.891353, lowerbound=1299553.891353, norm of subgrad 1140.507296 dualbound = 3700630.891353, lowerbound=1299553.891353, norm of subgrad 35.823667 stepsize= 1.000000 +dualbound = 3700673.639386, lowerbound=1298894.639386, norm of subgrad 1140.233590 dualbound = 3700673.639386, lowerbound=1298894.639386, norm of subgrad 35.787540 stepsize= 1.000000 +dualbound = 3700757.703510, lowerbound=1294981.703510, norm of subgrad 1138.521719 dualbound = 3700757.703510, lowerbound=1294981.703510, norm of subgrad 36.524843 stepsize= 1.000000 +dualbound = 3700796.996362, lowerbound=1305757.996362, norm of subgrad 1143.239693 dualbound = 3700796.996362, lowerbound=1305757.996362, norm of subgrad 35.753222 stepsize= 1.000000 +dualbound = 3700873.267872, lowerbound=1296740.267872, norm of subgrad 1139.257332 dualbound = 3700873.267872, lowerbound=1296740.267872, norm of subgrad 35.260055 stepsize= 1.000000 +dualbound = 3700945.200198, lowerbound=1299127.200198, norm of subgrad 1140.313203 dualbound = 3700945.200198, lowerbound=1299127.200198, norm of subgrad 35.481436 stepsize= 1.000000 +dualbound = 3701000.860196, lowerbound=1293209.860196, norm of subgrad 1137.736288 dualbound = 3701000.860196, lowerbound=1293209.860196, norm of subgrad 35.911836 stepsize= 1.000000 +dualbound = 3701046.303138, lowerbound=1298331.303138, norm of subgrad 1139.987414 dualbound = 3701046.303138, lowerbound=1298331.303138, norm of subgrad 35.853074 stepsize= 1.000000 +dualbound = 3701131.759283, lowerbound=1302287.759283, norm of subgrad 1141.702570 dualbound = 3701131.759283, lowerbound=1302287.759283, norm of subgrad 35.811397 stepsize= 1.000000 +dualbound = 3701190.677724, lowerbound=1296206.677724, norm of subgrad 1139.070532 dualbound = 3701190.677724, lowerbound=1296206.677724, norm of subgrad 36.522848 stepsize= 1.000000 +dualbound = 3701258.694492, lowerbound=1302483.694492, norm of subgrad 1141.801951 dualbound = 3701258.694492, lowerbound=1302483.694492, norm of subgrad 36.000233 stepsize= 1.000000 +dualbound = 3701316.567944, lowerbound=1298620.567944, norm of subgrad 1140.135329 dualbound = 3701316.567944, lowerbound=1298620.567944, norm of subgrad 36.686148 stepsize= 1.000000 +dualbound = 3701368.231860, lowerbound=1304087.231860, norm of subgrad 1142.518810 dualbound = 3701368.231860, lowerbound=1304087.231860, norm of subgrad 36.244502 stepsize= 1.000000 +dualbound = 3701437.227394, lowerbound=1290565.227394, norm of subgrad 1136.573019 dualbound = 3701437.227394, lowerbound=1290565.227394, norm of subgrad 36.083175 stepsize= 1.000000 +dualbound = 3701509.074554, lowerbound=1299735.074554, norm of subgrad 1140.619163 dualbound = 3701509.074554, lowerbound=1299735.074554, norm of subgrad 36.726655 stepsize= 1.000000 +dualbound = 3701564.838181, lowerbound=1295904.838181, norm of subgrad 1138.907739 dualbound = 3701564.838181, lowerbound=1295904.838181, norm of subgrad 35.521312 stepsize= 1.000000 +dualbound = 3701640.517973, lowerbound=1302980.517973, norm of subgrad 1142.028247 dualbound = 3701640.517973, lowerbound=1302980.517973, norm of subgrad 36.382410 stepsize= 1.000000 +dualbound = 3701711.717097, lowerbound=1302707.717097, norm of subgrad 1141.899171 dualbound = 3701711.717097, lowerbound=1302707.717097, norm of subgrad 36.016651 stepsize= 1.000000 +dualbound = 3701757.562098, lowerbound=1300236.562098, norm of subgrad 1140.824071 dualbound = 3701757.562098, lowerbound=1300236.562098, norm of subgrad 35.900487 stepsize= 1.000000 +dualbound = 3701822.835182, lowerbound=1299135.835182, norm of subgrad 1140.343297 dualbound = 3701822.835182, lowerbound=1299135.835182, norm of subgrad 36.225310 stepsize= 1.000000 +dualbound = 3701892.485800, lowerbound=1301230.485800, norm of subgrad 1141.256100 dualbound = 3701892.485800, lowerbound=1301230.485800, norm of subgrad 36.119948 stepsize= 1.000000 +dualbound = 3701954.060691, lowerbound=1300470.060691, norm of subgrad 1140.938675 dualbound = 3701954.060691, lowerbound=1300470.060691, norm of subgrad 36.504450 stepsize= 1.000000 +dualbound = 3702009.136233, lowerbound=1302208.136233, norm of subgrad 1141.693539 dualbound = 3702009.136233, lowerbound=1302208.136233, norm of subgrad 36.208777 stepsize= 1.000000 +dualbound = 3702104.590906, lowerbound=1299347.590906, norm of subgrad 1140.434387 dualbound = 3702104.590906, lowerbound=1299347.590906, norm of subgrad 36.584897 stepsize= 1.000000 +dualbound = 3702144.528432, lowerbound=1297295.528432, norm of subgrad 1139.533031 dualbound = 3702144.528432, lowerbound=1297295.528432, norm of subgrad 35.776215 stepsize= 1.000000 +dualbound = 3702226.896853, lowerbound=1298598.896853, norm of subgrad 1140.092056 dualbound = 3702226.896853, lowerbound=1298598.896853, norm of subgrad 35.963432 stepsize= 1.000000 +dualbound = 3702290.326553, lowerbound=1298342.326553, norm of subgrad 1139.987424 dualbound = 3702290.326553, lowerbound=1298342.326553, norm of subgrad 35.950378 stepsize= 1.000000 +dualbound = 3702324.826824, lowerbound=1301982.826824, norm of subgrad 1141.566830 dualbound = 3702324.826824, lowerbound=1301982.826824, norm of subgrad 35.021426 stepsize= 1.000000 +dualbound = 3702421.059931, lowerbound=1300177.059931, norm of subgrad 1140.770380 dualbound = 3702421.059931, lowerbound=1300177.059931, norm of subgrad 35.724405 stepsize= 1.000000 +dualbound = 3702453.087172, lowerbound=1299109.087172, norm of subgrad 1140.347792 dualbound = 3702453.087172, lowerbound=1299109.087172, norm of subgrad 36.277090 stepsize= 1.000000 +dualbound = 3702535.216087, lowerbound=1300783.216087, norm of subgrad 1141.051364 dualbound = 3702535.216087, lowerbound=1300783.216087, norm of subgrad 36.015676 stepsize= 1.000000 +dualbound = 3702559.447913, lowerbound=1297684.447913, norm of subgrad 1139.704105 dualbound = 3702559.447913, lowerbound=1297684.447913, norm of subgrad 35.570097 stepsize= 1.000000 +dualbound = 3702663.192212, lowerbound=1302018.192212, norm of subgrad 1141.596335 dualbound = 3702663.192212, lowerbound=1302018.192212, norm of subgrad 36.438226 stepsize= 1.000000 +dualbound = 3702722.914663, lowerbound=1296349.914663, norm of subgrad 1139.079854 dualbound = 3702722.914663, lowerbound=1296349.914663, norm of subgrad 34.824165 stepsize= 1.000000 +dualbound = 3702802.225605, lowerbound=1300154.225605, norm of subgrad 1140.795435 dualbound = 3702802.225605, lowerbound=1300154.225605, norm of subgrad 36.596597 stepsize= 1.000000 +dualbound = 3702840.160129, lowerbound=1298421.160129, norm of subgrad 1140.051385 dualbound = 3702840.160129, lowerbound=1298421.160129, norm of subgrad 36.523068 stepsize= 1.000000 +dualbound = 3702904.001061, lowerbound=1299869.001061, norm of subgrad 1140.665596 dualbound = 3702904.001061, lowerbound=1299869.001061, norm of subgrad 36.233147 stepsize= 1.000000 +dualbound = 3702983.583234, lowerbound=1304040.583234, norm of subgrad 1142.497958 dualbound = 3702983.583234, lowerbound=1304040.583234, norm of subgrad 36.613961 stepsize= 1.000000 +dualbound = 3703033.579376, lowerbound=1300316.579376, norm of subgrad 1140.874042 dualbound = 3703033.579376, lowerbound=1300316.579376, norm of subgrad 36.427958 stepsize= 1.000000 +dualbound = 3703065.024590, lowerbound=1295856.024590, norm of subgrad 1138.928455 dualbound = 3703065.024590, lowerbound=1295856.024590, norm of subgrad 36.516369 stepsize= 1.000000 +dualbound = 3703175.051321, lowerbound=1304044.051321, norm of subgrad 1142.486346 dualbound = 3703175.051321, lowerbound=1304044.051321, norm of subgrad 36.620032 stepsize= 1.000000 +dualbound = 3703238.410892, lowerbound=1303195.410892, norm of subgrad 1142.117074 dualbound = 3703238.410892, lowerbound=1303195.410892, norm of subgrad 36.046631 stepsize= 1.000000 +dualbound = 3703300.128133, lowerbound=1300471.128133, norm of subgrad 1140.905398 dualbound = 3703300.128133, lowerbound=1300471.128133, norm of subgrad 35.436101 stepsize= 1.000000 +dualbound = 3703368.552551, lowerbound=1301686.552551, norm of subgrad 1141.453701 dualbound = 3703368.552551, lowerbound=1301686.552551, norm of subgrad 36.033657 stepsize= 1.000000 +dualbound = 3703409.703301, lowerbound=1301622.703301, norm of subgrad 1141.440188 dualbound = 3703409.703301, lowerbound=1301622.703301, norm of subgrad 36.113027 stepsize= 1.000000 +dualbound = 3703479.766726, lowerbound=1304580.766726, norm of subgrad 1142.715523 dualbound = 3703479.766726, lowerbound=1304580.766726, norm of subgrad 35.889601 stepsize= 1.000000 +dualbound = 3703558.727708, lowerbound=1301362.727708, norm of subgrad 1141.306150 dualbound = 3703558.727708, lowerbound=1301362.727708, norm of subgrad 35.999458 stepsize= 1.000000 +dualbound = 3703601.170255, lowerbound=1303960.170255, norm of subgrad 1142.436068 dualbound = 3703601.170255, lowerbound=1303960.170255, norm of subgrad 35.248298 stepsize= 1.000000 +dualbound = 3703698.033429, lowerbound=1303600.033429, norm of subgrad 1142.282817 dualbound = 3703698.033429, lowerbound=1303600.033429, norm of subgrad 36.150563 stepsize= 1.000000 +dualbound = 3703726.655883, lowerbound=1294364.655883, norm of subgrad 1138.237522 dualbound = 3703726.655883, lowerbound=1294364.655883, norm of subgrad 35.335852 stepsize= 1.000000 +dualbound = 3703799.124554, lowerbound=1299125.124554, norm of subgrad 1140.335970 dualbound = 3703799.124554, lowerbound=1299125.124554, norm of subgrad 36.241808 stepsize= 1.000000 +dualbound = 3703853.019013, lowerbound=1303587.019013, norm of subgrad 1142.264426 dualbound = 3703853.019013, lowerbound=1303587.019013, norm of subgrad 35.141065 stepsize= 1.000000 +dualbound = 3703936.017873, lowerbound=1301011.017873, norm of subgrad 1141.131902 dualbound = 3703936.017873, lowerbound=1301011.017873, norm of subgrad 35.411846 stepsize= 1.000000 +dualbound = 3703987.925495, lowerbound=1303869.925495, norm of subgrad 1142.378626 dualbound = 3703987.925495, lowerbound=1303869.925495, norm of subgrad 34.798098 stepsize= 1.000000 +dualbound = 3704060.673475, lowerbound=1295205.673475, norm of subgrad 1138.581869 dualbound = 3704060.673475, lowerbound=1295205.673475, norm of subgrad 35.153207 stepsize= 1.000000 +dualbound = 3704127.194853, lowerbound=1300630.194853, norm of subgrad 1140.963713 dualbound = 3704127.194853, lowerbound=1300630.194853, norm of subgrad 35.135756 stepsize= 1.000000 +dualbound = 3704173.783727, lowerbound=1295590.783727, norm of subgrad 1138.756683 dualbound = 3704173.783727, lowerbound=1295590.783727, norm of subgrad 34.965538 stepsize= 1.000000 +dualbound = 3704246.376169, lowerbound=1296352.376169, norm of subgrad 1139.095420 dualbound = 3704246.376169, lowerbound=1296352.376169, norm of subgrad 35.476646 stepsize= 1.000000 +dualbound = 3704292.967081, lowerbound=1300332.967081, norm of subgrad 1140.877718 dualbound = 3704292.967081, lowerbound=1300332.967081, norm of subgrad 36.271075 stepsize= 1.000000 +dualbound = 3704351.690399, lowerbound=1296585.690399, norm of subgrad 1139.225917 dualbound = 3704351.690399, lowerbound=1296585.690399, norm of subgrad 36.176281 stepsize= 1.000000 +dualbound = 3704431.417357, lowerbound=1305000.417357, norm of subgrad 1142.920127 dualbound = 3704431.417357, lowerbound=1305000.417357, norm of subgrad 36.684151 stepsize= 1.000000 +dualbound = 3704476.088587, lowerbound=1299218.088587, norm of subgrad 1140.384185 dualbound = 3704476.088587, lowerbound=1299218.088587, norm of subgrad 36.092537 stepsize= 1.000000 +dualbound = 3704551.228931, lowerbound=1301632.228931, norm of subgrad 1141.441733 dualbound = 3704551.228931, lowerbound=1301632.228931, norm of subgrad 36.498498 stepsize= 1.000000 +dualbound = 3704612.840949, lowerbound=1298296.840949, norm of subgrad 1139.982825 dualbound = 3704612.840949, lowerbound=1298296.840949, norm of subgrad 36.408955 stepsize= 1.000000 +dualbound = 3704669.734825, lowerbound=1301737.734825, norm of subgrad 1141.471741 dualbound = 3704669.734825, lowerbound=1301737.734825, norm of subgrad 35.733652 stepsize= 1.000000 +dualbound = 3704744.726958, lowerbound=1298304.726958, norm of subgrad 1139.967862 dualbound = 3704744.726958, lowerbound=1298304.726958, norm of subgrad 36.013777 stepsize= 1.000000 +dualbound = 3704805.900656, lowerbound=1302067.900656, norm of subgrad 1141.618982 dualbound = 3704805.900656, lowerbound=1302067.900656, norm of subgrad 35.877203 stepsize= 1.000000 +dualbound = 3704866.002524, lowerbound=1300935.002524, norm of subgrad 1141.144164 dualbound = 3704866.002524, lowerbound=1300935.002524, norm of subgrad 36.539046 stepsize= 1.000000 +dualbound = 3704896.748505, lowerbound=1299159.748505, norm of subgrad 1140.346328 dualbound = 3704896.748505, lowerbound=1299159.748505, norm of subgrad 35.506985 stepsize= 1.000000 +dualbound = 3705003.488709, lowerbound=1302914.488709, norm of subgrad 1141.959057 dualbound = 3705003.488709, lowerbound=1302914.488709, norm of subgrad 35.535056 stepsize= 1.000000 +dualbound = 3705064.988100, lowerbound=1297489.988100, norm of subgrad 1139.576671 dualbound = 3705064.988100, lowerbound=1297489.988100, norm of subgrad 34.734700 stepsize= 1.000000 +dualbound = 3705150.437699, lowerbound=1306254.437699, norm of subgrad 1143.434055 dualbound = 3705150.437699, lowerbound=1306254.437699, norm of subgrad 35.671412 stepsize= 1.000000 +dualbound = 3705181.966113, lowerbound=1303413.966113, norm of subgrad 1142.189111 dualbound = 3705181.966113, lowerbound=1303413.966113, norm of subgrad 34.835735 stepsize= 1.000000 +dualbound = 3705253.292075, lowerbound=1300822.292075, norm of subgrad 1141.080318 dualbound = 3705253.292075, lowerbound=1300822.292075, norm of subgrad 36.239839 stepsize= 1.000000 +dualbound = 3705317.381530, lowerbound=1302986.381530, norm of subgrad 1142.039133 dualbound = 3705317.381530, lowerbound=1302986.381530, norm of subgrad 36.484099 stepsize= 1.000000 +dualbound = 3705368.632417, lowerbound=1297921.632417, norm of subgrad 1139.786661 dualbound = 3705368.632417, lowerbound=1297921.632417, norm of subgrad 35.259763 stepsize= 1.000000 +dualbound = 3705439.065754, lowerbound=1298664.065754, norm of subgrad 1140.156158 dualbound = 3705439.065754, lowerbound=1298664.065754, norm of subgrad 36.911155 stepsize= 1.000000 +dualbound = 3705490.452303, lowerbound=1302861.452303, norm of subgrad 1141.953349 dualbound = 3705490.452303, lowerbound=1302861.452303, norm of subgrad 35.318360 stepsize= 1.000000 +dualbound = 3705561.221762, lowerbound=1299496.221762, norm of subgrad 1140.499111 dualbound = 3705561.221762, lowerbound=1299496.221762, norm of subgrad 36.232161 stepsize= 1.000000 +dualbound = 3705603.112809, lowerbound=1299124.112809, norm of subgrad 1140.349557 dualbound = 3705603.112809, lowerbound=1299124.112809, norm of subgrad 36.261426 stepsize= 1.000000 +dualbound = 3705691.022078, lowerbound=1299206.022078, norm of subgrad 1140.346887 dualbound = 3705691.022078, lowerbound=1299206.022078, norm of subgrad 35.677854 stepsize= 1.000000 +dualbound = 3705758.299125, lowerbound=1302483.299125, norm of subgrad 1141.810973 dualbound = 3705758.299125, lowerbound=1302483.299125, norm of subgrad 36.280533 stepsize= 1.000000 +dualbound = 3705793.916871, lowerbound=1298326.916871, norm of subgrad 1139.977156 dualbound = 3705793.916871, lowerbound=1298326.916871, norm of subgrad 35.448805 stepsize= 1.000000 +dualbound = 3705885.012714, lowerbound=1305549.012714, norm of subgrad 1143.152226 dualbound = 3705885.012714, lowerbound=1305549.012714, norm of subgrad 36.593658 stepsize= 1.000000 +dualbound = 3705930.332319, lowerbound=1301245.332319, norm of subgrad 1141.257785 dualbound = 3705930.332319, lowerbound=1301245.332319, norm of subgrad 35.627512 stepsize= 1.000000 +dualbound = 3706003.195661, lowerbound=1300633.195661, norm of subgrad 1140.966781 dualbound = 3706003.195661, lowerbound=1300633.195661, norm of subgrad 35.282621 stepsize= 1.000000 +dualbound = 3706063.605661, lowerbound=1301251.605661, norm of subgrad 1141.255714 dualbound = 3706063.605661, lowerbound=1301251.605661, norm of subgrad 35.684871 stepsize= 1.000000 +dualbound = 3706131.442148, lowerbound=1308008.442148, norm of subgrad 1144.207779 dualbound = 3706131.442148, lowerbound=1308008.442148, norm of subgrad 35.648794 stepsize= 1.000000 +dualbound = 3706165.270013, lowerbound=1303345.270013, norm of subgrad 1142.204566 dualbound = 3706165.270013, lowerbound=1303345.270013, norm of subgrad 36.329435 stepsize= 1.000000 +dualbound = 3706237.318822, lowerbound=1301110.318822, norm of subgrad 1141.210462 dualbound = 3706237.318822, lowerbound=1301110.318822, norm of subgrad 36.373738 stepsize= 1.000000 +dualbound = 3706304.543397, lowerbound=1302165.543397, norm of subgrad 1141.677513 dualbound = 3706304.543397, lowerbound=1302165.543397, norm of subgrad 36.458532 stepsize= 1.000000 +dualbound = 3706361.339879, lowerbound=1300790.339879, norm of subgrad 1141.058868 dualbound = 3706361.339879, lowerbound=1300790.339879, norm of subgrad 35.802185 stepsize= 1.000000 +dualbound = 3706433.240892, lowerbound=1301460.240892, norm of subgrad 1141.363764 dualbound = 3706433.240892, lowerbound=1301460.240892, norm of subgrad 36.371706 stepsize= 1.000000 +dualbound = 3706488.870878, lowerbound=1302386.870878, norm of subgrad 1141.745537 dualbound = 3706488.870878, lowerbound=1302386.870878, norm of subgrad 35.378383 stepsize= 1.000000 +dualbound = 3706564.513052, lowerbound=1301158.513052, norm of subgrad 1141.204413 dualbound = 3706564.513052, lowerbound=1301158.513052, norm of subgrad 35.561808 stepsize= 1.000000 +dualbound = 3706638.079098, lowerbound=1293241.079098, norm of subgrad 1137.703863 dualbound = 3706638.079098, lowerbound=1293241.079098, norm of subgrad 34.678034 stepsize= 1.000000 +dualbound = 3706687.357120, lowerbound=1304186.357120, norm of subgrad 1142.529368 dualbound = 3706687.357120, lowerbound=1304186.357120, norm of subgrad 35.160745 stepsize= 1.000000 +dualbound = 3706749.915900, lowerbound=1300520.915900, norm of subgrad 1140.912756 dualbound = 3706749.915900, lowerbound=1300520.915900, norm of subgrad 34.979405 stepsize= 1.000000 +dualbound = 3706823.477413, lowerbound=1304621.477413, norm of subgrad 1142.725023 dualbound = 3706823.477413, lowerbound=1304621.477413, norm of subgrad 35.672980 stepsize= 1.000000 +dualbound = 3706885.785898, lowerbound=1296503.785898, norm of subgrad 1139.185580 dualbound = 3706885.785898, lowerbound=1296503.785898, norm of subgrad 36.087511 stepsize= 1.000000 +dualbound = 3706907.306392, lowerbound=1303290.306392, norm of subgrad 1142.162119 dualbound = 3706907.306392, lowerbound=1303290.306392, norm of subgrad 35.574155 stepsize= 1.000000 +dualbound = 3707000.291629, lowerbound=1300516.291629, norm of subgrad 1140.937462 dualbound = 3707000.291629, lowerbound=1300516.291629, norm of subgrad 36.262725 stepsize= 1.000000 +dualbound = 3707068.395471, lowerbound=1301754.395471, norm of subgrad 1141.495245 dualbound = 3707068.395471, lowerbound=1301754.395471, norm of subgrad 36.401976 stepsize= 1.000000 +dualbound = 3707119.273650, lowerbound=1302484.273650, norm of subgrad 1141.808335 dualbound = 3707119.273650, lowerbound=1302484.273650, norm of subgrad 35.956615 stepsize= 1.000000 +dualbound = 3707169.315655, lowerbound=1293207.315655, norm of subgrad 1137.741761 dualbound = 3707169.315655, lowerbound=1293207.315655, norm of subgrad 36.042225 stepsize= 1.000000 +dualbound = 3707243.538300, lowerbound=1301730.538300, norm of subgrad 1141.472093 dualbound = 3707243.538300, lowerbound=1301730.538300, norm of subgrad 36.086322 stepsize= 1.000000 +dualbound = 3707310.729566, lowerbound=1306975.729566, norm of subgrad 1143.758160 dualbound = 3707310.729566, lowerbound=1306975.729566, norm of subgrad 35.695816 stepsize= 1.000000 +dualbound = 3707388.238729, lowerbound=1294858.238729, norm of subgrad 1138.447293 dualbound = 3707388.238729, lowerbound=1294858.238729, norm of subgrad 35.798173 stepsize= 1.000000 +dualbound = 3707447.264684, lowerbound=1301297.264684, norm of subgrad 1141.267832 dualbound = 3707447.264684, lowerbound=1301297.264684, norm of subgrad 35.412229 stepsize= 1.000000 +dualbound = 3707492.150887, lowerbound=1299945.150887, norm of subgrad 1140.680126 dualbound = 3707492.150887, lowerbound=1299945.150887, norm of subgrad 35.367870 stepsize= 1.000000 +dualbound = 3707575.962532, lowerbound=1299192.962532, norm of subgrad 1140.365276 dualbound = 3707575.962532, lowerbound=1299192.962532, norm of subgrad 36.384222 stepsize= 1.000000 +dualbound = 3707600.333314, lowerbound=1299340.333314, norm of subgrad 1140.417175 dualbound = 3707600.333314, lowerbound=1299340.333314, norm of subgrad 35.147842 stepsize= 1.000000 +dualbound = 3707699.691072, lowerbound=1300470.691072, norm of subgrad 1140.910904 dualbound = 3707699.691072, lowerbound=1300470.691072, norm of subgrad 36.143571 stepsize= 1.000000 +dualbound = 3707749.523933, lowerbound=1302100.523933, norm of subgrad 1141.641592 dualbound = 3707749.523933, lowerbound=1302100.523933, norm of subgrad 35.983786 stepsize= 1.000000 +dualbound = 3707821.555301, lowerbound=1297097.555301, norm of subgrad 1139.411056 dualbound = 3707821.555301, lowerbound=1297097.555301, norm of subgrad 35.100304 stepsize= 1.000000 +dualbound = 3707886.447769, lowerbound=1307265.447769, norm of subgrad 1143.889176 dualbound = 3707886.447769, lowerbound=1307265.447769, norm of subgrad 35.803526 stepsize= 1.000000 +dualbound = 3707937.611948, lowerbound=1294292.611948, norm of subgrad 1138.195331 dualbound = 3707937.611948, lowerbound=1294292.611948, norm of subgrad 35.315212 stepsize= 1.000000 +dualbound = 3708009.123905, lowerbound=1301025.123905, norm of subgrad 1141.167439 dualbound = 3708009.123905, lowerbound=1301025.123905, norm of subgrad 36.187179 stepsize= 1.000000 +dualbound = 3708055.342971, lowerbound=1302193.342971, norm of subgrad 1141.691439 dualbound = 3708055.342971, lowerbound=1302193.342971, norm of subgrad 36.224564 stepsize= 1.000000 +dualbound = 3708126.370775, lowerbound=1298953.370775, norm of subgrad 1140.259344 dualbound = 3708126.370775, lowerbound=1298953.370775, norm of subgrad 36.180489 stepsize= 1.000000 +dualbound = 3708179.712043, lowerbound=1305022.712043, norm of subgrad 1142.918944 dualbound = 3708179.712043, lowerbound=1305022.712043, norm of subgrad 35.976955 stepsize= 1.000000 +dualbound = 3708243.844246, lowerbound=1297038.844246, norm of subgrad 1139.426103 dualbound = 3708243.844246, lowerbound=1297038.844246, norm of subgrad 36.292316 stepsize= 1.000000 +dualbound = 3708292.317075, lowerbound=1302319.317075, norm of subgrad 1141.740039 dualbound = 3708292.317075, lowerbound=1302319.317075, norm of subgrad 36.048201 stepsize= 1.000000 +dualbound = 3708361.183334, lowerbound=1302784.183334, norm of subgrad 1141.920393 dualbound = 3708361.183334, lowerbound=1302784.183334, norm of subgrad 35.593065 stepsize= 1.000000 +dualbound = 3708459.412487, lowerbound=1295232.412487, norm of subgrad 1138.593173 dualbound = 3708459.412487, lowerbound=1295232.412487, norm of subgrad 35.499706 stepsize= 1.000000 +dualbound = 3708516.805142, lowerbound=1306101.805142, norm of subgrad 1143.369059 dualbound = 3708516.805142, lowerbound=1306101.805142, norm of subgrad 35.332600 stepsize= 1.000000 +dualbound = 3708581.162138, lowerbound=1294537.162138, norm of subgrad 1138.304951 dualbound = 3708581.162138, lowerbound=1294537.162138, norm of subgrad 35.571857 stepsize= 1.000000 +dualbound = 3708631.021177, lowerbound=1305130.021177, norm of subgrad 1142.939640 dualbound = 3708631.021177, lowerbound=1305130.021177, norm of subgrad 35.083601 stepsize= 1.000000 +dualbound = 3708710.574965, lowerbound=1299256.574965, norm of subgrad 1140.397990 dualbound = 3708710.574965, lowerbound=1299256.574965, norm of subgrad 36.476757 stepsize= 1.000000 +dualbound = 3708740.816822, lowerbound=1295691.816822, norm of subgrad 1138.850656 dualbound = 3708740.816822, lowerbound=1295691.816822, norm of subgrad 36.321369 stepsize= 1.000000 +dualbound = 3708831.840842, lowerbound=1297830.840842, norm of subgrad 1139.756044 dualbound = 3708831.840842, lowerbound=1297830.840842, norm of subgrad 36.111273 stepsize= 1.000000 +dualbound = 3708870.986488, lowerbound=1303681.986488, norm of subgrad 1142.332257 dualbound = 3708870.986488, lowerbound=1303681.986488, norm of subgrad 35.779123 stepsize= 1.000000 +dualbound = 3708946.170702, lowerbound=1300302.170702, norm of subgrad 1140.837487 dualbound = 3708946.170702, lowerbound=1300302.170702, norm of subgrad 35.821561 stepsize= 1.000000 +dualbound = 3709004.814370, lowerbound=1309525.814370, norm of subgrad 1144.883319 dualbound = 3709004.814370, lowerbound=1309525.814370, norm of subgrad 35.925529 stepsize= 1.000000 +dualbound = 3709082.580043, lowerbound=1295132.580043, norm of subgrad 1138.580072 dualbound = 3709082.580043, lowerbound=1295132.580043, norm of subgrad 36.190685 stepsize= 1.000000 +dualbound = 3709114.438191, lowerbound=1306590.438191, norm of subgrad 1143.606767 dualbound = 3709114.438191, lowerbound=1306590.438191, norm of subgrad 35.747142 stepsize= 1.000000 +dualbound = 3709193.995054, lowerbound=1303359.995054, norm of subgrad 1142.193502 dualbound = 3709193.995054, lowerbound=1303359.995054, norm of subgrad 36.408198 stepsize= 1.000000 +dualbound = 3709254.168180, lowerbound=1303345.168180, norm of subgrad 1142.180445 dualbound = 3709254.168180, lowerbound=1303345.168180, norm of subgrad 35.932898 stepsize= 1.000000 +dualbound = 3709330.341493, lowerbound=1300627.341493, norm of subgrad 1140.977362 dualbound = 3709330.341493, lowerbound=1300627.341493, norm of subgrad 35.751550 stepsize= 1.000000 +dualbound = 3709369.999101, lowerbound=1300327.999101, norm of subgrad 1140.851874 dualbound = 3709369.999101, lowerbound=1300327.999101, norm of subgrad 35.421146 stepsize= 1.000000 +dualbound = 3709468.474484, lowerbound=1304276.474484, norm of subgrad 1142.602938 dualbound = 3709468.474484, lowerbound=1304276.474484, norm of subgrad 36.925268 stepsize= 1.000000 +dualbound = 3709493.954879, lowerbound=1303384.954879, norm of subgrad 1142.211432 dualbound = 3709493.954879, lowerbound=1303384.954879, norm of subgrad 35.881477 stepsize= 1.000000 +dualbound = 3709571.417837, lowerbound=1302492.417837, norm of subgrad 1141.797013 dualbound = 3709571.417837, lowerbound=1302492.417837, norm of subgrad 35.853354 stepsize= 1.000000 +dualbound = 3709625.726276, lowerbound=1299067.726276, norm of subgrad 1140.313872 dualbound = 3709625.726276, lowerbound=1299067.726276, norm of subgrad 36.087511 stepsize= 1.000000 +dualbound = 3709688.161002, lowerbound=1298252.161002, norm of subgrad 1139.970246 dualbound = 3709688.161002, lowerbound=1298252.161002, norm of subgrad 36.639251 stepsize= 1.000000 +dualbound = 3709754.149306, lowerbound=1300605.149306, norm of subgrad 1140.970267 dualbound = 3709754.149306, lowerbound=1300605.149306, norm of subgrad 35.692973 stepsize= 1.000000 +dualbound = 3709809.621366, lowerbound=1303230.621366, norm of subgrad 1142.133364 dualbound = 3709809.621366, lowerbound=1303230.621366, norm of subgrad 35.964873 stepsize= 1.000000 +dualbound = 3709873.350816, lowerbound=1308543.350816, norm of subgrad 1144.434074 dualbound = 3709873.350816, lowerbound=1308543.350816, norm of subgrad 35.351513 stepsize= 1.000000 +dualbound = 3709946.533065, lowerbound=1298876.533065, norm of subgrad 1140.201532 dualbound = 3709946.533065, lowerbound=1298876.533065, norm of subgrad 35.442661 stepsize= 1.000000 +dualbound = 3710015.213657, lowerbound=1295987.213657, norm of subgrad 1138.919318 dualbound = 3710015.213657, lowerbound=1295987.213657, norm of subgrad 34.909606 stepsize= 1.000000 +dualbound = 3710091.542783, lowerbound=1301485.542783, norm of subgrad 1141.318335 dualbound = 3710091.542783, lowerbound=1301485.542783, norm of subgrad 34.616891 stepsize= 1.000000 +dualbound = 3710154.704940, lowerbound=1298061.704940, norm of subgrad 1139.866968 dualbound = 3710154.704940, lowerbound=1298061.704940, norm of subgrad 36.030017 stepsize= 1.000000 +dualbound = 3710197.215431, lowerbound=1303846.215431, norm of subgrad 1142.416831 dualbound = 3710197.215431, lowerbound=1303846.215431, norm of subgrad 36.228587 stepsize= 1.000000 +dualbound = 3710252.595854, lowerbound=1297757.595854, norm of subgrad 1139.720841 dualbound = 3710252.595854, lowerbound=1297757.595854, norm of subgrad 35.515918 stepsize= 1.000000 +dualbound = 3710323.030478, lowerbound=1301082.030478, norm of subgrad 1141.178790 dualbound = 3710323.030478, lowerbound=1301082.030478, norm of subgrad 35.741217 stepsize= 1.000000 +dualbound = 3710392.191877, lowerbound=1302335.191877, norm of subgrad 1141.722905 dualbound = 3710392.191877, lowerbound=1302335.191877, norm of subgrad 35.569107 stepsize= 1.000000 +dualbound = 3710445.097048, lowerbound=1303674.097048, norm of subgrad 1142.319175 dualbound = 3710445.097048, lowerbound=1303674.097048, norm of subgrad 35.663780 stepsize= 1.000000 +dualbound = 3710506.997594, lowerbound=1300370.997594, norm of subgrad 1140.901397 dualbound = 3710506.997594, lowerbound=1300370.997594, norm of subgrad 36.700144 stepsize= 1.000000 +dualbound = 3710556.544669, lowerbound=1301942.544669, norm of subgrad 1141.544806 dualbound = 3710556.544669, lowerbound=1301942.544669, norm of subgrad 35.093405 stepsize= 1.000000 +dualbound = 3710647.922100, lowerbound=1298041.922100, norm of subgrad 1139.846008 dualbound = 3710647.922100, lowerbound=1298041.922100, norm of subgrad 36.033005 stepsize= 1.000000 +dualbound = 3710708.758364, lowerbound=1303348.758364, norm of subgrad 1142.192960 dualbound = 3710708.758364, lowerbound=1303348.758364, norm of subgrad 36.288239 stepsize= 1.000000 +dualbound = 3710753.055910, lowerbound=1303068.055910, norm of subgrad 1142.056941 dualbound = 3710753.055910, lowerbound=1303068.055910, norm of subgrad 35.641234 stepsize= 1.000000 +dualbound = 3710831.037943, lowerbound=1298133.037943, norm of subgrad 1139.876764 dualbound = 3710831.037943, lowerbound=1298133.037943, norm of subgrad 35.552525 stepsize= 1.000000 +dualbound = 3710906.748724, lowerbound=1305734.748724, norm of subgrad 1143.201097 dualbound = 3710906.748724, lowerbound=1305734.748724, norm of subgrad 35.351249 stepsize= 1.000000 +dualbound = 3710947.389555, lowerbound=1296957.389555, norm of subgrad 1139.394308 dualbound = 3710947.389555, lowerbound=1296957.389555, norm of subgrad 36.092116 stepsize= 1.000000 +dualbound = 3710998.165706, lowerbound=1305218.165706, norm of subgrad 1143.011883 dualbound = 3710998.165706, lowerbound=1305218.165706, norm of subgrad 36.177011 stepsize= 1.000000 +dualbound = 3711088.934000, lowerbound=1301741.934000, norm of subgrad 1141.442041 dualbound = 3711088.934000, lowerbound=1301741.934000, norm of subgrad 35.196140 stepsize= 1.000000 +dualbound = 3711163.026014, lowerbound=1304469.026014, norm of subgrad 1142.658316 dualbound = 3711163.026014, lowerbound=1304469.026014, norm of subgrad 35.680415 stepsize= 1.000000 +dualbound = 3711196.534181, lowerbound=1302993.534181, norm of subgrad 1142.018185 dualbound = 3711196.534181, lowerbound=1302993.534181, norm of subgrad 35.291758 stepsize= 1.000000 +dualbound = 3711272.249501, lowerbound=1303487.249501, norm of subgrad 1142.214187 dualbound = 3711272.249501, lowerbound=1303487.249501, norm of subgrad 35.237981 stepsize= 1.000000 +dualbound = 3711340.886232, lowerbound=1304178.886232, norm of subgrad 1142.545354 dualbound = 3711340.886232, lowerbound=1304178.886232, norm of subgrad 36.050475 stepsize= 1.000000 +dualbound = 3711397.516282, lowerbound=1300028.516282, norm of subgrad 1140.714915 dualbound = 3711397.516282, lowerbound=1300028.516282, norm of subgrad 35.477176 stepsize= 1.000000 +dualbound = 3711453.835424, lowerbound=1298216.835424, norm of subgrad 1139.939839 dualbound = 3711453.835424, lowerbound=1298216.835424, norm of subgrad 36.087659 stepsize= 1.000000 +dualbound = 3711492.316334, lowerbound=1306241.316334, norm of subgrad 1143.454554 dualbound = 3711492.316334, lowerbound=1306241.316334, norm of subgrad 35.853604 stepsize= 1.000000 +dualbound = 3711587.114136, lowerbound=1292298.114136, norm of subgrad 1137.293328 dualbound = 3711587.114136, lowerbound=1292298.114136, norm of subgrad 35.111220 stepsize= 1.000000 +dualbound = 3711623.456870, lowerbound=1306870.456870, norm of subgrad 1143.728314 dualbound = 3711623.456870, lowerbound=1306870.456870, norm of subgrad 35.781877 stepsize= 1.000000 +dualbound = 3711708.643040, lowerbound=1299685.643040, norm of subgrad 1140.542258 dualbound = 3711708.643040, lowerbound=1299685.643040, norm of subgrad 35.159439 stepsize= 1.000000 +dualbound = 3711766.072765, lowerbound=1304982.072765, norm of subgrad 1142.880603 dualbound = 3711766.072765, lowerbound=1304982.072765, norm of subgrad 35.375553 stepsize= 1.000000 +dualbound = 3711822.761308, lowerbound=1302959.761308, norm of subgrad 1141.989825 dualbound = 3711822.761308, lowerbound=1302959.761308, norm of subgrad 35.180798 stepsize= 1.000000 +dualbound = 3711885.046540, lowerbound=1301900.046540, norm of subgrad 1141.515241 dualbound = 3711885.046540, lowerbound=1301900.046540, norm of subgrad 34.918265 stepsize= 1.000000 +dualbound = 3711947.824085, lowerbound=1297390.824085, norm of subgrad 1139.554660 dualbound = 3711947.824085, lowerbound=1297390.824085, norm of subgrad 35.451058 stepsize= 1.000000 +dualbound = 3711992.542773, lowerbound=1299217.542773, norm of subgrad 1140.359392 dualbound = 3711992.542773, lowerbound=1299217.542773, norm of subgrad 35.308904 stepsize= 1.000000 +dualbound = 3712061.222474, lowerbound=1301820.222474, norm of subgrad 1141.516633 dualbound = 3712061.222474, lowerbound=1301820.222474, norm of subgrad 36.175678 stepsize= 1.000000 +dualbound = 3712112.410111, lowerbound=1304504.410111, norm of subgrad 1142.696990 dualbound = 3712112.410111, lowerbound=1304504.410111, norm of subgrad 36.099690 stepsize= 1.000000 +dualbound = 3712191.600599, lowerbound=1301024.600599, norm of subgrad 1141.174220 dualbound = 3712191.600599, lowerbound=1301024.600599, norm of subgrad 36.512881 stepsize= 1.000000 +dualbound = 3712238.756817, lowerbound=1302093.756817, norm of subgrad 1141.653081 dualbound = 3712238.756817, lowerbound=1302093.756817, norm of subgrad 36.402695 stepsize= 1.000000 +dualbound = 3712295.922423, lowerbound=1301258.922423, norm of subgrad 1141.268558 dualbound = 3712295.922423, lowerbound=1301258.922423, norm of subgrad 35.946705 stepsize= 1.000000 +dualbound = 3712395.406831, lowerbound=1298968.406831, norm of subgrad 1140.259359 dualbound = 3712395.406831, lowerbound=1298968.406831, norm of subgrad 36.365979 stepsize= 1.000000 +dualbound = 3712443.775323, lowerbound=1297233.775323, norm of subgrad 1139.493210 dualbound = 3712443.775323, lowerbound=1297233.775323, norm of subgrad 35.487582 stepsize= 1.000000 +dualbound = 3712506.965958, lowerbound=1303751.965958, norm of subgrad 1142.369890 dualbound = 3712506.965958, lowerbound=1303751.965958, norm of subgrad 36.334428 stepsize= 1.000000 +dualbound = 3712546.038080, lowerbound=1298506.038080, norm of subgrad 1140.076769 dualbound = 3712546.038080, lowerbound=1298506.038080, norm of subgrad 36.167280 stepsize= 1.000000 +dualbound = 3712605.414033, lowerbound=1300778.414033, norm of subgrad 1141.102718 dualbound = 3712605.414033, lowerbound=1300778.414033, norm of subgrad 37.368114 stepsize= 1.000000 +dualbound = 3712663.442141, lowerbound=1301538.442141, norm of subgrad 1141.408972 dualbound = 3712663.442141, lowerbound=1301538.442141, norm of subgrad 36.524350 stepsize= 1.000000 +dualbound = 3712741.349803, lowerbound=1297466.349803, norm of subgrad 1139.611052 dualbound = 3712741.349803, lowerbound=1297466.349803, norm of subgrad 36.399281 stepsize= 1.000000 +dualbound = 3712796.818766, lowerbound=1307384.818766, norm of subgrad 1143.967578 dualbound = 3712796.818766, lowerbound=1307384.818766, norm of subgrad 36.502999 stepsize= 1.000000 +dualbound = 3712867.120183, lowerbound=1296365.120183, norm of subgrad 1139.109354 dualbound = 3712867.120183, lowerbound=1296365.120183, norm of subgrad 35.711363 stepsize= 1.000000 +dualbound = 3712934.612674, lowerbound=1303550.612674, norm of subgrad 1142.253305 dualbound = 3712934.612674, lowerbound=1303550.612674, norm of subgrad 35.489329 stepsize= 1.000000 +dualbound = 3713020.732878, lowerbound=1300733.732878, norm of subgrad 1141.015658 dualbound = 3713020.732878, lowerbound=1300733.732878, norm of subgrad 35.624713 stepsize= 1.000000 +dualbound = 3713059.058809, lowerbound=1297925.058809, norm of subgrad 1139.786409 dualbound = 3713059.058809, lowerbound=1297925.058809, norm of subgrad 35.018937 stepsize= 1.000000 +dualbound = 3713133.514980, lowerbound=1302051.514980, norm of subgrad 1141.576329 dualbound = 3713133.514980, lowerbound=1302051.514980, norm of subgrad 34.920713 stepsize= 1.000000 +dualbound = 3713203.129600, lowerbound=1298573.129600, norm of subgrad 1140.051810 dualbound = 3713203.129600, lowerbound=1298573.129600, norm of subgrad 34.851322 stepsize= 1.000000 +dualbound = 3713265.652958, lowerbound=1300616.652958, norm of subgrad 1140.955149 dualbound = 3713265.652958, lowerbound=1300616.652958, norm of subgrad 34.993190 stepsize= 1.000000 +dualbound = 3713316.208369, lowerbound=1303123.208369, norm of subgrad 1142.058759 dualbound = 3713316.208369, lowerbound=1303123.208369, norm of subgrad 35.007934 stepsize= 1.000000 +dualbound = 3713386.924848, lowerbound=1306192.924848, norm of subgrad 1143.426397 dualbound = 3713386.924848, lowerbound=1306192.924848, norm of subgrad 36.079308 stepsize= 1.000000 +dualbound = 3713433.686655, lowerbound=1305033.686655, norm of subgrad 1142.905371 dualbound = 3713433.686655, lowerbound=1305033.686655, norm of subgrad 35.295351 stepsize= 1.000000 +dualbound = 3713522.033690, lowerbound=1304257.033690, norm of subgrad 1142.585241 dualbound = 3713522.033690, lowerbound=1304257.033690, norm of subgrad 36.501329 stepsize= 1.000000 +dualbound = 3713555.515918, lowerbound=1300993.515918, norm of subgrad 1141.147894 dualbound = 3713555.515918, lowerbound=1300993.515918, norm of subgrad 35.475093 stepsize= 1.000000 +dualbound = 3713629.590974, lowerbound=1299754.590974, norm of subgrad 1140.592211 dualbound = 3713629.590974, lowerbound=1299754.590974, norm of subgrad 35.638112 stepsize= 1.000000 +dualbound = 3713695.166932, lowerbound=1298821.166932, norm of subgrad 1140.189093 dualbound = 3713695.166932, lowerbound=1298821.166932, norm of subgrad 35.715206 stepsize= 1.000000 +dualbound = 3713742.197355, lowerbound=1299429.197355, norm of subgrad 1140.473672 dualbound = 3713742.197355, lowerbound=1299429.197355, norm of subgrad 36.028189 stepsize= 1.000000 +dualbound = 3713811.052561, lowerbound=1302442.052561, norm of subgrad 1141.769264 dualbound = 3713811.052561, lowerbound=1302442.052561, norm of subgrad 35.550741 stepsize= 1.000000 +dualbound = 3713901.340371, lowerbound=1305883.340371, norm of subgrad 1143.273957 dualbound = 3713901.340371, lowerbound=1305883.340371, norm of subgrad 35.809046 stepsize= 1.000000 +dualbound = 3713933.389260, lowerbound=1297816.389260, norm of subgrad 1139.782606 dualbound = 3713933.389260, lowerbound=1297816.389260, norm of subgrad 36.332477 stepsize= 1.000000 +dualbound = 3714000.532463, lowerbound=1302597.532463, norm of subgrad 1141.868439 dualbound = 3714000.532463, lowerbound=1302597.532463, norm of subgrad 36.512234 stepsize= 1.000000 +dualbound = 3714055.964261, lowerbound=1297490.964261, norm of subgrad 1139.623606 dualbound = 3714055.964261, lowerbound=1297490.964261, norm of subgrad 36.144596 stepsize= 1.000000 +dualbound = 3714130.659880, lowerbound=1302035.659880, norm of subgrad 1141.586466 dualbound = 3714130.659880, lowerbound=1302035.659880, norm of subgrad 35.478101 stepsize= 1.000000 +dualbound = 3714190.803667, lowerbound=1295178.803667, norm of subgrad 1138.608714 dualbound = 3714190.803667, lowerbound=1295178.803667, norm of subgrad 36.209720 stepsize= 1.000000 +dualbound = 3714243.916614, lowerbound=1311745.916614, norm of subgrad 1145.873866 dualbound = 3714243.916614, lowerbound=1311745.916614, norm of subgrad 36.525511 stepsize= 1.000000 +dualbound = 3714312.888595, lowerbound=1296993.888595, norm of subgrad 1139.420857 dualbound = 3714312.888595, lowerbound=1296993.888595, norm of subgrad 36.809944 stepsize= 1.000000 +dualbound = 3714377.790926, lowerbound=1305880.790926, norm of subgrad 1143.293834 dualbound = 3714377.790926, lowerbound=1305880.790926, norm of subgrad 36.123432 stepsize= 1.000000 +dualbound = 3714452.173386, lowerbound=1297294.173386, norm of subgrad 1139.512691 dualbound = 3714452.173386, lowerbound=1297294.173386, norm of subgrad 35.628394 stepsize= 1.000000 +dualbound = 3714516.039226, lowerbound=1304270.039226, norm of subgrad 1142.577367 dualbound = 3714516.039226, lowerbound=1304270.039226, norm of subgrad 35.733260 stepsize= 1.000000 +dualbound = 3714577.816664, lowerbound=1301098.816664, norm of subgrad 1141.142330 dualbound = 3714577.816664, lowerbound=1301098.816664, norm of subgrad 34.187387 stepsize= 1.000000 +dualbound = 3714675.263612, lowerbound=1296233.263612, norm of subgrad 1139.022065 dualbound = 3714675.263612, lowerbound=1296233.263612, norm of subgrad 35.148925 stepsize= 1.000000 +dualbound = 3714704.528321, lowerbound=1297293.528321, norm of subgrad 1139.526449 dualbound = 3714704.528321, lowerbound=1297293.528321, norm of subgrad 35.443825 stepsize= 1.000000 +dualbound = 3714771.936569, lowerbound=1301257.936569, norm of subgrad 1141.260679 dualbound = 3714771.936569, lowerbound=1301257.936569, norm of subgrad 35.852591 stepsize= 1.000000 +dualbound = 3714820.762648, lowerbound=1308200.762648, norm of subgrad 1144.292691 dualbound = 3714820.762648, lowerbound=1308200.762648, norm of subgrad 35.409407 stepsize= 1.000000 +dualbound = 3714894.042767, lowerbound=1301918.042767, norm of subgrad 1141.554222 dualbound = 3714894.042767, lowerbound=1301918.042767, norm of subgrad 36.073260 stepsize= 1.000000 +dualbound = 3714931.405921, lowerbound=1296988.405921, norm of subgrad 1139.392999 dualbound = 3714931.405921, lowerbound=1296988.405921, norm of subgrad 35.571943 stepsize= 1.000000 +dualbound = 3715032.483774, lowerbound=1299439.483774, norm of subgrad 1140.453631 dualbound = 3715032.483774, lowerbound=1299439.483774, norm of subgrad 36.001081 stepsize= 1.000000 +dualbound = 3715072.299489, lowerbound=1297002.299489, norm of subgrad 1139.403484 dualbound = 3715072.299489, lowerbound=1297002.299489, norm of subgrad 35.746548 stepsize= 1.000000 +dualbound = 3715145.836286, lowerbound=1304042.836286, norm of subgrad 1142.485814 dualbound = 3715145.836286, lowerbound=1304042.836286, norm of subgrad 36.118372 stepsize= 1.000000 +dualbound = 3715198.400572, lowerbound=1300009.400572, norm of subgrad 1140.711796 dualbound = 3715198.400572, lowerbound=1300009.400572, norm of subgrad 35.588822 stepsize= 1.000000 +dualbound = 3715270.924582, lowerbound=1311761.924582, norm of subgrad 1145.864706 dualbound = 3715270.924582, lowerbound=1311761.924582, norm of subgrad 36.283936 stepsize= 1.000000 +dualbound = 3715329.035212, lowerbound=1298272.035212, norm of subgrad 1139.958348 dualbound = 3715329.035212, lowerbound=1298272.035212, norm of subgrad 35.932028 stepsize= 1.000000 +dualbound = 3715404.579358, lowerbound=1303867.579358, norm of subgrad 1142.394669 dualbound = 3715404.579358, lowerbound=1303867.579358, norm of subgrad 35.686750 stepsize= 1.000000 +dualbound = 3715459.107848, lowerbound=1300186.107848, norm of subgrad 1140.769963 dualbound = 3715459.107848, lowerbound=1300186.107848, norm of subgrad 34.993263 stepsize= 1.000000 +dualbound = 3715506.203598, lowerbound=1303147.203598, norm of subgrad 1142.081522 dualbound = 3715506.203598, lowerbound=1303147.203598, norm of subgrad 35.356693 stepsize= 1.000000 +dualbound = 3715579.219407, lowerbound=1298492.219407, norm of subgrad 1140.028166 dualbound = 3715579.219407, lowerbound=1298492.219407, norm of subgrad 35.284782 stepsize= 1.000000 +dualbound = 3715651.810091, lowerbound=1307287.810091, norm of subgrad 1143.909441 dualbound = 3715651.810091, lowerbound=1307287.810091, norm of subgrad 36.243492 stepsize= 1.000000 +dualbound = 3715672.408732, lowerbound=1297944.408732, norm of subgrad 1139.847099 dualbound = 3715672.408732, lowerbound=1297944.408732, norm of subgrad 36.436227 stepsize= 1.000000 +dualbound = 3715732.889407, lowerbound=1305617.889407, norm of subgrad 1143.183227 dualbound = 3715732.889407, lowerbound=1305617.889407, norm of subgrad 36.200562 stepsize= 1.000000 +dualbound = 3715825.339529, lowerbound=1295708.339529, norm of subgrad 1138.845178 dualbound = 3715825.339529, lowerbound=1295708.339529, norm of subgrad 36.775673 stepsize= 1.000000 +dualbound = 3715869.866003, lowerbound=1303135.866003, norm of subgrad 1142.086628 dualbound = 3715869.866003, lowerbound=1303135.866003, norm of subgrad 35.644445 stepsize= 1.000000 +dualbound = 3715934.151552, lowerbound=1303144.151552, norm of subgrad 1142.075370 dualbound = 3715934.151552, lowerbound=1303144.151552, norm of subgrad 35.444119 stepsize= 1.000000 +dualbound = 3715996.621661, lowerbound=1308023.621661, norm of subgrad 1144.224900 dualbound = 3715996.621661, lowerbound=1308023.621661, norm of subgrad 35.909193 stepsize= 1.000000 +dualbound = 3716053.197190, lowerbound=1302658.197190, norm of subgrad 1141.871795 dualbound = 3716053.197190, lowerbound=1302658.197190, norm of subgrad 35.631103 stepsize= 1.000000 +dualbound = 3716151.328709, lowerbound=1301956.328709, norm of subgrad 1141.540770 dualbound = 3716151.328709, lowerbound=1301956.328709, norm of subgrad 35.456051 stepsize= 1.000000 +dualbound = 3716198.503572, lowerbound=1305654.503572, norm of subgrad 1143.193555 dualbound = 3716198.503572, lowerbound=1305654.503572, norm of subgrad 35.835386 stepsize= 1.000000 +dualbound = 3716240.215652, lowerbound=1296691.215652, norm of subgrad 1139.255992 dualbound = 3716240.215652, lowerbound=1296691.215652, norm of subgrad 35.421915 stepsize= 1.000000 +dualbound = 3716309.497377, lowerbound=1304589.497377, norm of subgrad 1142.700528 dualbound = 3716309.497377, lowerbound=1304589.497377, norm of subgrad 35.274378 stepsize= 1.000000 +dualbound = 3716391.765143, lowerbound=1298710.765143, norm of subgrad 1140.123136 dualbound = 3716391.765143, lowerbound=1298710.765143, norm of subgrad 35.387396 stepsize= 1.000000 +dualbound = 3716444.514688, lowerbound=1306900.514688, norm of subgrad 1143.722219 dualbound = 3716444.514688, lowerbound=1306900.514688, norm of subgrad 35.394202 stepsize= 1.000000 +dualbound = 3716511.451777, lowerbound=1300918.451777, norm of subgrad 1141.110622 dualbound = 3716511.451777, lowerbound=1300918.451777, norm of subgrad 35.804149 stepsize= 1.000000 +dualbound = 3716550.200421, lowerbound=1305276.200421, norm of subgrad 1143.026334 dualbound = 3716550.200421, lowerbound=1305276.200421, norm of subgrad 35.661585 stepsize= 1.000000 +dualbound = 3716644.443410, lowerbound=1300623.443410, norm of subgrad 1140.961193 dualbound = 3716644.443410, lowerbound=1300623.443410, norm of subgrad 35.542130 stepsize= 1.000000 +dualbound = 3716693.770718, lowerbound=1298765.770718, norm of subgrad 1140.148574 dualbound = 3716693.770718, lowerbound=1298765.770718, norm of subgrad 34.961798 stepsize= 1.000000 +dualbound = 3716743.694043, lowerbound=1300514.694043, norm of subgrad 1140.941144 dualbound = 3716743.694043, lowerbound=1300514.694043, norm of subgrad 35.803957 stepsize= 1.000000 +dualbound = 3716813.411975, lowerbound=1302063.411975, norm of subgrad 1141.617892 dualbound = 3716813.411975, lowerbound=1302063.411975, norm of subgrad 36.023852 stepsize= 1.000000 +dualbound = 3716892.116791, lowerbound=1299874.116791, norm of subgrad 1140.648113 dualbound = 3716892.116791, lowerbound=1299874.116791, norm of subgrad 35.814869 stepsize= 1.000000 +dualbound = 3716949.375686, lowerbound=1300606.375686, norm of subgrad 1140.969928 dualbound = 3716949.375686, lowerbound=1300606.375686, norm of subgrad 35.542354 stepsize= 1.000000 +dualbound = 3717005.944238, lowerbound=1296831.944238, norm of subgrad 1139.303271 dualbound = 3717005.944238, lowerbound=1296831.944238, norm of subgrad 35.164877 stepsize= 1.000000 +dualbound = 3717086.025828, lowerbound=1302794.025828, norm of subgrad 1141.926454 dualbound = 3717086.025828, lowerbound=1302794.025828, norm of subgrad 35.806167 stepsize= 1.000000 +dualbound = 3717137.324687, lowerbound=1302412.324687, norm of subgrad 1141.730408 dualbound = 3717137.324687, lowerbound=1302412.324687, norm of subgrad 34.457203 stepsize= 1.000000 +dualbound = 3717217.963987, lowerbound=1300352.963987, norm of subgrad 1140.861501 dualbound = 3717217.963987, lowerbound=1300352.963987, norm of subgrad 35.953293 stepsize= 1.000000 +dualbound = 3717260.026085, lowerbound=1303615.026085, norm of subgrad 1142.288504 dualbound = 3717260.026085, lowerbound=1303615.026085, norm of subgrad 35.356217 stepsize= 1.000000 +dualbound = 3717306.989690, lowerbound=1300553.989690, norm of subgrad 1140.957488 dualbound = 3717306.989690, lowerbound=1300553.989690, norm of subgrad 35.734628 stepsize= 1.000000 +dualbound = 3717388.597277, lowerbound=1305482.597277, norm of subgrad 1143.125364 dualbound = 3717388.597277, lowerbound=1305482.597277, norm of subgrad 36.532281 stepsize= 1.000000 +dualbound = 3717434.438074, lowerbound=1296085.438074, norm of subgrad 1138.980877 dualbound = 3717434.438074, lowerbound=1296085.438074, norm of subgrad 35.182962 stepsize= 1.000000 +dualbound = 3717543.781648, lowerbound=1303958.781648, norm of subgrad 1142.430209 dualbound = 3717543.781648, lowerbound=1303958.781648, norm of subgrad 36.018656 stepsize= 1.000000 +dualbound = 3717565.212997, lowerbound=1300738.212997, norm of subgrad 1141.054430 dualbound = 3717565.212997, lowerbound=1300738.212997, norm of subgrad 35.894726 stepsize= 1.000000 +dualbound = 3717625.814144, lowerbound=1294571.814144, norm of subgrad 1138.334667 dualbound = 3717625.814144, lowerbound=1294571.814144, norm of subgrad 35.980566 stepsize= 1.000000 +dualbound = 3717682.711069, lowerbound=1305566.711069, norm of subgrad 1143.169152 dualbound = 3717682.711069, lowerbound=1305566.711069, norm of subgrad 36.412868 stepsize= 1.000000 +dualbound = 3717743.025922, lowerbound=1300478.025922, norm of subgrad 1140.957942 dualbound = 3717743.025922, lowerbound=1300478.025922, norm of subgrad 36.977221 stepsize= 1.000000 +dualbound = 3717793.321273, lowerbound=1308171.321273, norm of subgrad 1144.290750 dualbound = 3717793.321273, lowerbound=1308171.321273, norm of subgrad 35.781215 stepsize= 1.000000 +dualbound = 3717887.941564, lowerbound=1301512.941564, norm of subgrad 1141.378965 dualbound = 3717887.941564, lowerbound=1301512.941564, norm of subgrad 36.436524 stepsize= 1.000000 +dualbound = 3717930.938399, lowerbound=1304570.938399, norm of subgrad 1142.709035 dualbound = 3717930.938399, lowerbound=1304570.938399, norm of subgrad 35.440046 stepsize= 1.000000 +dualbound = 3718005.926560, lowerbound=1307200.926560, norm of subgrad 1143.878458 dualbound = 3718005.926560, lowerbound=1307200.926560, norm of subgrad 36.496413 stepsize= 1.000000 +dualbound = 3718055.324736, lowerbound=1292810.324736, norm of subgrad 1137.543549 dualbound = 3718055.324736, lowerbound=1292810.324736, norm of subgrad 35.276028 stepsize= 1.000000 +dualbound = 3718169.561085, lowerbound=1305746.561085, norm of subgrad 1143.216323 dualbound = 3718169.561085, lowerbound=1305746.561085, norm of subgrad 36.210998 stepsize= 1.000000 +dualbound = 3718184.485667, lowerbound=1306155.485667, norm of subgrad 1143.405215 dualbound = 3718184.485667, lowerbound=1306155.485667, norm of subgrad 35.141494 stepsize= 1.000000 +dualbound = 3718244.749438, lowerbound=1303121.749438, norm of subgrad 1142.098835 dualbound = 3718244.749438, lowerbound=1303121.749438, norm of subgrad 36.445353 stepsize= 1.000000 +dualbound = 3718303.789145, lowerbound=1305395.789145, norm of subgrad 1143.075146 dualbound = 3718303.789145, lowerbound=1305395.789145, norm of subgrad 35.833500 stepsize= 1.000000 +dualbound = 3718403.890493, lowerbound=1303434.890493, norm of subgrad 1142.209653 dualbound = 3718403.890493, lowerbound=1303434.890493, norm of subgrad 36.167684 stepsize= 1.000000 +dualbound = 3718426.756076, lowerbound=1300349.756076, norm of subgrad 1140.889020 dualbound = 3718426.756076, lowerbound=1300349.756076, norm of subgrad 36.067514 stepsize= 1.000000 +dualbound = 3718509.244218, lowerbound=1303473.244218, norm of subgrad 1142.240887 dualbound = 3718509.244218, lowerbound=1303473.244218, norm of subgrad 36.379777 stepsize= 1.000000 +dualbound = 3718551.198065, lowerbound=1305129.198065, norm of subgrad 1142.973402 dualbound = 3718551.198065, lowerbound=1305129.198065, norm of subgrad 36.068738 stepsize= 1.000000 +dualbound = 3718625.336688, lowerbound=1299769.336688, norm of subgrad 1140.573249 dualbound = 3718625.336688, lowerbound=1299769.336688, norm of subgrad 34.815781 stepsize= 1.000000 +dualbound = 3718711.337782, lowerbound=1298294.337782, norm of subgrad 1139.938743 dualbound = 3718711.337782, lowerbound=1298294.337782, norm of subgrad 35.383627 stepsize= 1.000000 +dualbound = 3718749.163393, lowerbound=1306870.163393, norm of subgrad 1143.691901 dualbound = 3718749.163393, lowerbound=1306870.163393, norm of subgrad 34.624061 stepsize= 1.000000 +dualbound = 3718824.052660, lowerbound=1298535.052660, norm of subgrad 1140.073266 dualbound = 3718824.052660, lowerbound=1298535.052660, norm of subgrad 36.150923 stepsize= 1.000000 +dualbound = 3718843.937564, lowerbound=1304461.937564, norm of subgrad 1142.676217 dualbound = 3718843.937564, lowerbound=1304461.937564, norm of subgrad 35.593327 stepsize= 1.000000 +dualbound = 3718941.360644, lowerbound=1301957.360644, norm of subgrad 1141.561370 dualbound = 3718941.360644, lowerbound=1301957.360644, norm of subgrad 36.089099 stepsize= 1.000000 +dualbound = 3719006.346842, lowerbound=1299583.346842, norm of subgrad 1140.543444 dualbound = 3719006.346842, lowerbound=1299583.346842, norm of subgrad 36.345374 stepsize= 1.000000 +dualbound = 3719043.652488, lowerbound=1296316.652488, norm of subgrad 1139.119244 dualbound = 3719043.652488, lowerbound=1296316.652488, norm of subgrad 36.239559 stepsize= 1.000000 +dualbound = 3719094.446724, lowerbound=1308083.446724, norm of subgrad 1144.261966 dualbound = 3719094.446724, lowerbound=1308083.446724, norm of subgrad 36.094241 stepsize= 1.000000 +dualbound = 3719178.404689, lowerbound=1297594.404689, norm of subgrad 1139.677764 dualbound = 3719178.404689, lowerbound=1297594.404689, norm of subgrad 36.809754 stepsize= 1.000000 +dualbound = 3719248.157770, lowerbound=1303778.157770, norm of subgrad 1142.374789 dualbound = 3719248.157770, lowerbound=1303778.157770, norm of subgrad 36.218132 stepsize= 1.000000 +dualbound = 3719287.058527, lowerbound=1302107.058527, norm of subgrad 1141.655841 dualbound = 3719287.058527, lowerbound=1302107.058527, norm of subgrad 36.192551 stepsize= 1.000000 +dualbound = 3719362.768189, lowerbound=1300906.768189, norm of subgrad 1141.122591 dualbound = 3719362.768189, lowerbound=1300906.768189, norm of subgrad 36.465184 stepsize= 1.000000 +dualbound = 3719431.781205, lowerbound=1305575.781205, norm of subgrad 1143.143377 dualbound = 3719431.781205, lowerbound=1305575.781205, norm of subgrad 35.637242 stepsize= 1.000000 +dualbound = 3719485.819931, lowerbound=1299268.819931, norm of subgrad 1140.406866 dualbound = 3719485.819931, lowerbound=1299268.819931, norm of subgrad 36.235876 stepsize= 1.000000 +dualbound = 3719546.256922, lowerbound=1303520.256922, norm of subgrad 1142.227323 dualbound = 3719546.256922, lowerbound=1303520.256922, norm of subgrad 34.977664 stepsize= 1.000000 +dualbound = 3719651.911471, lowerbound=1308090.911471, norm of subgrad 1144.233766 dualbound = 3719651.911471, lowerbound=1308090.911471, norm of subgrad 35.856025 stepsize= 1.000000 +dualbound = 3719662.793939, lowerbound=1299329.793939, norm of subgrad 1140.418254 dualbound = 3719662.793939, lowerbound=1299329.793939, norm of subgrad 35.140895 stepsize= 1.000000 +dualbound = 3719744.979610, lowerbound=1300678.979610, norm of subgrad 1141.009632 dualbound = 3719744.979610, lowerbound=1300678.979610, norm of subgrad 36.141191 stepsize= 1.000000 +dualbound = 3719798.083535, lowerbound=1297056.083535, norm of subgrad 1139.403828 dualbound = 3719798.083535, lowerbound=1297056.083535, norm of subgrad 35.186701 stepsize= 1.000000 +dualbound = 3719877.409738, lowerbound=1300143.409738, norm of subgrad 1140.772287 dualbound = 3719877.409738, lowerbound=1300143.409738, norm of subgrad 36.018415 stepsize= 1.000000 +dualbound = 3719913.972688, lowerbound=1302384.972688, norm of subgrad 1141.774046 dualbound = 3719913.972688, lowerbound=1302384.972688, norm of subgrad 36.049451 stepsize= 1.000000 +dualbound = 3719985.476775, lowerbound=1301249.476775, norm of subgrad 1141.246458 dualbound = 3719985.476775, lowerbound=1301249.476775, norm of subgrad 35.573924 stepsize= 1.000000 +dualbound = 3720075.884086, lowerbound=1301293.884086, norm of subgrad 1141.283437 dualbound = 3720075.884086, lowerbound=1301293.884086, norm of subgrad 36.392407 stepsize= 1.000000 +dualbound = 3720112.269421, lowerbound=1301060.269421, norm of subgrad 1141.171884 dualbound = 3720112.269421, lowerbound=1301060.269421, norm of subgrad 35.346645 stepsize= 1.000000 +dualbound = 3720186.942695, lowerbound=1303033.942695, norm of subgrad 1142.058205 dualbound = 3720186.942695, lowerbound=1303033.942695, norm of subgrad 36.574216 stepsize= 1.000000 +dualbound = 3720235.441857, lowerbound=1302772.441857, norm of subgrad 1141.927512 dualbound = 3720235.441857, lowerbound=1302772.441857, norm of subgrad 35.700128 stepsize= 1.000000 +dualbound = 3720311.304970, lowerbound=1298328.304970, norm of subgrad 1139.974256 dualbound = 3720311.304970, lowerbound=1298328.304970, norm of subgrad 35.900740 stepsize= 1.000000 +dualbound = 3720382.823454, lowerbound=1302486.823454, norm of subgrad 1141.780988 dualbound = 3720382.823454, lowerbound=1302486.823454, norm of subgrad 35.334381 stepsize= 1.000000 +dualbound = 3720454.445405, lowerbound=1302309.445405, norm of subgrad 1141.701119 dualbound = 3720454.445405, lowerbound=1302309.445405, norm of subgrad 35.265024 stepsize= 1.000000 +dualbound = 3720496.279109, lowerbound=1307583.279109, norm of subgrad 1144.011049 dualbound = 3720496.279109, lowerbound=1307583.279109, norm of subgrad 34.926118 stepsize= 1.000000 +dualbound = 3720581.865969, lowerbound=1297300.865969, norm of subgrad 1139.475698 dualbound = 3720581.865969, lowerbound=1297300.865969, norm of subgrad 34.490388 stepsize= 1.000000 +dualbound = 3720645.298582, lowerbound=1306247.298582, norm of subgrad 1143.407757 dualbound = 3720645.298582, lowerbound=1306247.298582, norm of subgrad 34.603939 stepsize= 1.000000 +dualbound = 3720685.382483, lowerbound=1303545.382483, norm of subgrad 1142.263272 dualbound = 3720685.382483, lowerbound=1303545.382483, norm of subgrad 35.497661 stepsize= 1.000000 +dualbound = 3720756.000003, lowerbound=1297748.000003, norm of subgrad 1139.698206 dualbound = 3720756.000003, lowerbound=1297748.000003, norm of subgrad 35.137125 stepsize= 1.000000 +dualbound = 3720812.043631, lowerbound=1303576.043631, norm of subgrad 1142.281946 dualbound = 3720812.043631, lowerbound=1303576.043631, norm of subgrad 35.889325 stepsize= 1.000000 +dualbound = 3720874.101354, lowerbound=1303077.101355, norm of subgrad 1142.053896 dualbound = 3720874.101354, lowerbound=1303077.101355, norm of subgrad 35.665918 stepsize= 1.000000 +dualbound = 3720924.152914, lowerbound=1303693.152914, norm of subgrad 1142.328391 dualbound = 3720924.152914, lowerbound=1303693.152914, norm of subgrad 35.651810 stepsize= 1.000000 +dualbound = 3720996.907478, lowerbound=1303891.907478, norm of subgrad 1142.407067 dualbound = 3720996.907478, lowerbound=1303891.907478, norm of subgrad 35.703705 stepsize= 1.000000 +dualbound = 3721049.979477, lowerbound=1301447.979477, norm of subgrad 1141.343060 dualbound = 3721049.979477, lowerbound=1301447.979477, norm of subgrad 35.624037 stepsize= 1.000000 +dualbound = 3721136.609744, lowerbound=1304224.609744, norm of subgrad 1142.525540 dualbound = 3721136.609744, lowerbound=1304224.609744, norm of subgrad 35.023282 stepsize= 1.000000 +dualbound = 3721194.419354, lowerbound=1298625.419354, norm of subgrad 1140.090970 dualbound = 3721194.419354, lowerbound=1298625.419354, norm of subgrad 35.210930 stepsize= 1.000000 +dualbound = 3721234.108600, lowerbound=1305003.108600, norm of subgrad 1142.923055 dualbound = 3721234.108600, lowerbound=1305003.108600, norm of subgrad 36.189629 stepsize= 1.000000 +dualbound = 3721303.057527, lowerbound=1299299.057527, norm of subgrad 1140.367948 dualbound = 3721303.057527, lowerbound=1299299.057527, norm of subgrad 34.769943 stepsize= 1.000000 +dualbound = 3721378.236614, lowerbound=1306031.236614, norm of subgrad 1143.340385 dualbound = 3721378.236614, lowerbound=1306031.236614, norm of subgrad 35.653599 stepsize= 1.000000 +dualbound = 3721414.643953, lowerbound=1302261.643953, norm of subgrad 1141.701206 dualbound = 3721414.643953, lowerbound=1302261.643953, norm of subgrad 35.445837 stepsize= 1.000000 +dualbound = 3721489.150779, lowerbound=1297454.150779, norm of subgrad 1139.576742 dualbound = 3721489.150779, lowerbound=1297454.150779, norm of subgrad 35.433132 stepsize= 1.000000 +dualbound = 3721539.456477, lowerbound=1303361.456477, norm of subgrad 1142.183635 dualbound = 3721539.456477, lowerbound=1303361.456477, norm of subgrad 35.669394 stepsize= 1.000000 +dualbound = 3721623.205582, lowerbound=1298891.205582, norm of subgrad 1140.209281 dualbound = 3721623.205582, lowerbound=1298891.205582, norm of subgrad 35.633539 stepsize= 1.000000 +dualbound = 3721676.701424, lowerbound=1305658.701424, norm of subgrad 1143.185331 dualbound = 3721676.701424, lowerbound=1305658.701424, norm of subgrad 35.601908 stepsize= 1.000000 +dualbound = 3721764.731981, lowerbound=1296290.731981, norm of subgrad 1139.055193 dualbound = 3721764.731981, lowerbound=1296290.731981, norm of subgrad 35.270817 stepsize= 1.000000 +dualbound = 3721800.293138, lowerbound=1299992.293138, norm of subgrad 1140.709119 dualbound = 3721800.293138, lowerbound=1299992.293138, norm of subgrad 35.504382 stepsize= 1.000000 +dualbound = 3721872.091173, lowerbound=1301914.091173, norm of subgrad 1141.553368 dualbound = 3721872.091173, lowerbound=1301914.091173, norm of subgrad 36.080438 stepsize= 1.000000 +dualbound = 3721918.811686, lowerbound=1308203.811686, norm of subgrad 1144.301014 dualbound = 3721918.811686, lowerbound=1308203.811686, norm of subgrad 35.605063 stepsize= 1.000000 +dualbound = 3721977.713741, lowerbound=1298652.713741, norm of subgrad 1140.118289 dualbound = 3721977.713741, lowerbound=1298652.713741, norm of subgrad 35.719771 stepsize= 1.000000 +dualbound = 3722037.905393, lowerbound=1302521.905393, norm of subgrad 1141.816494 dualbound = 3722037.905393, lowerbound=1302521.905393, norm of subgrad 35.821665 stepsize= 1.000000 +dualbound = 3722100.171504, lowerbound=1305991.171504, norm of subgrad 1143.346042 dualbound = 3722100.171504, lowerbound=1305991.171504, norm of subgrad 36.211409 stepsize= 1.000000 +dualbound = 3722147.801863, lowerbound=1300276.801863, norm of subgrad 1140.824177 dualbound = 3722147.801863, lowerbound=1300276.801863, norm of subgrad 35.364253 stepsize= 1.000000 +dualbound = 3722258.098063, lowerbound=1308259.098063, norm of subgrad 1144.306820 dualbound = 3722258.098063, lowerbound=1308259.098063, norm of subgrad 35.906771 stepsize= 1.000000 +dualbound = 3722283.941126, lowerbound=1300780.941126, norm of subgrad 1141.045547 dualbound = 3722283.941126, lowerbound=1300780.941126, norm of subgrad 35.069118 stepsize= 1.000000 +dualbound = 3722358.004601, lowerbound=1302569.004601, norm of subgrad 1141.816537 dualbound = 3722358.004601, lowerbound=1302569.004601, norm of subgrad 35.356237 stepsize= 1.000000 +dualbound = 3722419.102204, lowerbound=1303492.102204, norm of subgrad 1142.217187 dualbound = 3722419.102204, lowerbound=1303492.102204, norm of subgrad 35.058488 stepsize= 1.000000 +dualbound = 3722495.351535, lowerbound=1297052.351535, norm of subgrad 1139.407895 dualbound = 3722495.351535, lowerbound=1297052.351535, norm of subgrad 35.696629 stepsize= 1.000000 +dualbound = 3722528.143407, lowerbound=1302242.143407, norm of subgrad 1141.684345 dualbound = 3722528.143407, lowerbound=1302242.143407, norm of subgrad 35.125374 stepsize= 1.000000 +dualbound = 3722602.989779, lowerbound=1301139.989779, norm of subgrad 1141.199803 dualbound = 3722602.989779, lowerbound=1301139.989779, norm of subgrad 35.662955 stepsize= 1.000000 +dualbound = 3722677.152709, lowerbound=1305004.152709, norm of subgrad 1142.883700 dualbound = 3722677.152709, lowerbound=1305004.152709, norm of subgrad 35.400041 stepsize= 1.000000 +dualbound = 3722734.436691, lowerbound=1304092.436691, norm of subgrad 1142.504458 dualbound = 3722734.436691, lowerbound=1304092.436691, norm of subgrad 35.795027 stepsize= 1.000000 +dualbound = 3722800.277983, lowerbound=1303049.277983, norm of subgrad 1142.044342 dualbound = 3722800.277983, lowerbound=1303049.277983, norm of subgrad 35.802811 stepsize= 1.000000 +dualbound = 3722853.822777, lowerbound=1296691.822777, norm of subgrad 1139.261086 dualbound = 3722853.822777, lowerbound=1296691.822777, norm of subgrad 35.742759 stepsize= 1.000000 +dualbound = 3722923.663598, lowerbound=1301782.663598, norm of subgrad 1141.487040 dualbound = 3722923.663598, lowerbound=1301782.663598, norm of subgrad 35.774863 stepsize= 1.000000 +dualbound = 3722998.509831, lowerbound=1302142.509831, norm of subgrad 1141.621439 dualbound = 3722998.509831, lowerbound=1302142.509831, norm of subgrad 35.097667 stepsize= 1.000000 +dualbound = 3723040.264431, lowerbound=1299319.264431, norm of subgrad 1140.443889 dualbound = 3723040.264431, lowerbound=1299319.264431, norm of subgrad 36.534293 stepsize= 1.000000 +dualbound = 3723101.278103, lowerbound=1299295.278103, norm of subgrad 1140.408821 dualbound = 3723101.278103, lowerbound=1299295.278103, norm of subgrad 36.027957 stepsize= 1.000000 +dualbound = 3723171.215727, lowerbound=1307321.215727, norm of subgrad 1143.941963 dualbound = 3723171.215727, lowerbound=1307321.215727, norm of subgrad 36.768704 stepsize= 1.000000 +dualbound = 3723236.940791, lowerbound=1306463.940791, norm of subgrad 1143.551022 dualbound = 3723236.940791, lowerbound=1306463.940791, norm of subgrad 36.203937 stepsize= 1.000000 +dualbound = 3723287.341025, lowerbound=1301159.341025, norm of subgrad 1141.220111 dualbound = 3723287.341025, lowerbound=1301159.341025, norm of subgrad 35.698743 stepsize= 1.000000 +dualbound = 3723347.185768, lowerbound=1301517.185768, norm of subgrad 1141.386957 dualbound = 3723347.185768, lowerbound=1301517.185768, norm of subgrad 36.150308 stepsize= 1.000000 +dualbound = 3723420.901133, lowerbound=1308994.901133, norm of subgrad 1144.646190 dualbound = 3723420.901133, lowerbound=1308994.901133, norm of subgrad 35.968255 stepsize= 1.000000 +dualbound = 3723493.166869, lowerbound=1300291.166869, norm of subgrad 1140.819515 dualbound = 3723493.166869, lowerbound=1300291.166869, norm of subgrad 35.359097 stepsize= 1.000000 +dualbound = 3723546.623709, lowerbound=1304843.623709, norm of subgrad 1142.853282 dualbound = 3723546.623709, lowerbound=1304843.623709, norm of subgrad 36.379346 stepsize= 1.000000 +dualbound = 3723597.262084, lowerbound=1305012.262084, norm of subgrad 1142.892936 dualbound = 3723597.262084, lowerbound=1305012.262084, norm of subgrad 35.251076 stepsize= 1.000000 +dualbound = 3723675.991357, lowerbound=1300024.991357, norm of subgrad 1140.698905 dualbound = 3723675.991357, lowerbound=1300024.991357, norm of subgrad 35.323212 stepsize= 1.000000 +dualbound = 3723748.154418, lowerbound=1303792.154418, norm of subgrad 1142.351590 dualbound = 3723748.154418, lowerbound=1303792.154418, norm of subgrad 35.315196 stepsize= 1.000000 +dualbound = 3723766.086191, lowerbound=1297930.086191, norm of subgrad 1139.815374 dualbound = 3723766.086191, lowerbound=1297930.086191, norm of subgrad 35.593985 stepsize= 1.000000 +dualbound = 3723862.700251, lowerbound=1299627.700251, norm of subgrad 1140.558504 dualbound = 3723862.700251, lowerbound=1299627.700251, norm of subgrad 36.641698 stepsize= 1.000000 +dualbound = 3723871.961880, lowerbound=1303923.961880, norm of subgrad 1142.443417 dualbound = 3723871.961880, lowerbound=1303923.961880, norm of subgrad 35.528322 stepsize= 1.000000 +dualbound = 3723982.600918, lowerbound=1306146.600918, norm of subgrad 1143.410950 dualbound = 3723982.600918, lowerbound=1306146.600918, norm of subgrad 36.778241 stepsize= 1.000000 +dualbound = 3724029.731861, lowerbound=1304480.731861, norm of subgrad 1142.669564 dualbound = 3724029.731861, lowerbound=1304480.731861, norm of subgrad 35.498323 stepsize= 1.000000 +dualbound = 3724125.348241, lowerbound=1304110.348241, norm of subgrad 1142.489102 dualbound = 3724125.348241, lowerbound=1304110.348241, norm of subgrad 35.589554 stepsize= 1.000000 +dualbound = 3724169.429996, lowerbound=1302873.429996, norm of subgrad 1141.945896 dualbound = 3724169.429996, lowerbound=1302873.429996, norm of subgrad 34.800600 stepsize= 1.000000 +dualbound = 3724224.649078, lowerbound=1303424.649078, norm of subgrad 1142.239313 dualbound = 3724224.649078, lowerbound=1303424.649078, norm of subgrad 36.622658 stepsize= 1.000000 +dualbound = 3724256.266053, lowerbound=1303904.266053, norm of subgrad 1142.413789 dualbound = 3724256.266053, lowerbound=1303904.266053, norm of subgrad 35.165565 stepsize= 1.000000 +dualbound = 3724371.880999, lowerbound=1304915.880999, norm of subgrad 1142.842894 dualbound = 3724371.880999, lowerbound=1304915.880999, norm of subgrad 35.911209 stepsize= 1.000000 +dualbound = 3724408.822982, lowerbound=1296325.822982, norm of subgrad 1139.074108 dualbound = 3724408.822982, lowerbound=1296325.822982, norm of subgrad 34.654610 stepsize= 1.000000 +dualbound = 3724481.037952, lowerbound=1304196.037952, norm of subgrad 1142.545421 dualbound = 3724481.037952, lowerbound=1304196.037952, norm of subgrad 35.863839 stepsize= 1.000000 +dualbound = 3724553.083349, lowerbound=1299459.083349, norm of subgrad 1140.431534 dualbound = 3724553.083349, lowerbound=1299459.083349, norm of subgrad 34.598344 stepsize= 1.000000 +dualbound = 3724607.735858, lowerbound=1307601.735858, norm of subgrad 1144.024797 dualbound = 3724607.735858, lowerbound=1307601.735858, norm of subgrad 35.293803 stepsize= 1.000000 +dualbound = 3724648.358670, lowerbound=1299944.358670, norm of subgrad 1140.672766 dualbound = 3724648.358670, lowerbound=1299944.358670, norm of subgrad 35.080234 stepsize= 1.000000 +dualbound = 3724728.853409, lowerbound=1302223.853409, norm of subgrad 1141.664510 dualbound = 3724728.853409, lowerbound=1302223.853409, norm of subgrad 35.418847 stepsize= 1.000000 +dualbound = 3724788.481346, lowerbound=1299637.481346, norm of subgrad 1140.508869 dualbound = 3724788.481346, lowerbound=1299637.481346, norm of subgrad 34.389358 stepsize= 1.000000 +dualbound = 3724851.252523, lowerbound=1308072.252523, norm of subgrad 1144.233041 dualbound = 3724851.252523, lowerbound=1308072.252523, norm of subgrad 35.493255 stepsize= 1.000000 +dualbound = 3724896.570311, lowerbound=1300771.570311, norm of subgrad 1141.030924 dualbound = 3724896.570311, lowerbound=1300771.570311, norm of subgrad 35.004540 stepsize= 1.000000 +dualbound = 3724975.343572, lowerbound=1301640.343572, norm of subgrad 1141.394911 dualbound = 3724975.343572, lowerbound=1301640.343572, norm of subgrad 34.939566 stepsize= 1.000000 +dualbound = 3725029.895505, lowerbound=1303581.895505, norm of subgrad 1142.253866 dualbound = 3725029.895505, lowerbound=1303581.895505, norm of subgrad 34.879105 stepsize= 1.000000 +dualbound = 3725090.745640, lowerbound=1296396.745640, norm of subgrad 1139.118407 dualbound = 3725090.745640, lowerbound=1296396.745640, norm of subgrad 35.423864 stepsize= 1.000000 +dualbound = 3725139.374157, lowerbound=1307186.374157, norm of subgrad 1143.864666 dualbound = 3725139.374157, lowerbound=1307186.374157, norm of subgrad 35.897472 stepsize= 1.000000 +dualbound = 3725187.550487, lowerbound=1305709.550487, norm of subgrad 1143.241685 dualbound = 3725187.550487, lowerbound=1305709.550487, norm of subgrad 36.608419 stepsize= 1.000000 +dualbound = 3725253.081376, lowerbound=1299193.081376, norm of subgrad 1140.343843 dualbound = 3725253.081376, lowerbound=1299193.081376, norm of subgrad 35.447579 stepsize= 1.000000 +dualbound = 3725353.466378, lowerbound=1304575.466378, norm of subgrad 1142.729831 dualbound = 3725353.466378, lowerbound=1304575.466378, norm of subgrad 36.829133 stepsize= 1.000000 +dualbound = 3725391.703052, lowerbound=1305877.703052, norm of subgrad 1143.288548 dualbound = 3725391.703052, lowerbound=1305877.703052, norm of subgrad 35.626348 stepsize= 1.000000 +dualbound = 3725465.768621, lowerbound=1303684.768621, norm of subgrad 1142.324721 dualbound = 3725465.768621, lowerbound=1303684.768621, norm of subgrad 35.987019 stepsize= 1.000000 +dualbound = 3725508.801299, lowerbound=1298781.801299, norm of subgrad 1140.192879 dualbound = 3725508.801299, lowerbound=1298781.801299, norm of subgrad 36.069831 stepsize= 1.000000 +dualbound = 3725588.705726, lowerbound=1299323.705726, norm of subgrad 1140.425230 dualbound = 3725588.705726, lowerbound=1299323.705726, norm of subgrad 36.412971 stepsize= 1.000000 +dualbound = 3725616.280993, lowerbound=1304865.280993, norm of subgrad 1142.868007 dualbound = 3725616.280993, lowerbound=1304865.280993, norm of subgrad 36.188054 stepsize= 1.000000 +dualbound = 3725703.746541, lowerbound=1302143.746541, norm of subgrad 1141.639937 dualbound = 3725703.746541, lowerbound=1302143.746541, norm of subgrad 35.853390 stepsize= 1.000000 +dualbound = 3725762.785726, lowerbound=1306347.785726, norm of subgrad 1143.494550 dualbound = 3725762.785726, lowerbound=1306347.785726, norm of subgrad 35.931034 stepsize= 1.000000 +dualbound = 3725820.942042, lowerbound=1301776.942042, norm of subgrad 1141.457376 dualbound = 3725820.942042, lowerbound=1301776.942042, norm of subgrad 34.729761 stepsize= 1.000000 +dualbound = 3725907.281918, lowerbound=1302808.281918, norm of subgrad 1141.909927 dualbound = 3725907.281918, lowerbound=1302808.281918, norm of subgrad 35.161625 stepsize= 1.000000 +dualbound = 3725955.443061, lowerbound=1305600.443061, norm of subgrad 1143.160288 dualbound = 3725955.443061, lowerbound=1305600.443061, norm of subgrad 35.540978 stepsize= 1.000000 +dualbound = 3726012.796111, lowerbound=1299774.796111, norm of subgrad 1140.609397 dualbound = 3726012.796111, lowerbound=1299774.796111, norm of subgrad 35.670058 stepsize= 1.000000 +dualbound = 3726047.111720, lowerbound=1302119.111720, norm of subgrad 1141.627396 dualbound = 3726047.111720, lowerbound=1302119.111720, norm of subgrad 35.047334 stepsize= 1.000000 +dualbound = 3726124.871413, lowerbound=1305197.871413, norm of subgrad 1142.983758 dualbound = 3726124.871413, lowerbound=1305197.871413, norm of subgrad 35.941059 stepsize= 1.000000 +dualbound = 3726205.306502, lowerbound=1304590.306502, norm of subgrad 1142.691694 dualbound = 3726205.306502, lowerbound=1304590.306502, norm of subgrad 35.134528 stepsize= 1.000000 +dualbound = 3726259.762731, lowerbound=1300957.762731, norm of subgrad 1141.163337 dualbound = 3726259.762731, lowerbound=1300957.762731, norm of subgrad 36.748554 stepsize= 1.000000 +dualbound = 3726302.831844, lowerbound=1301249.831844, norm of subgrad 1141.247051 dualbound = 3726302.831844, lowerbound=1301249.831844, norm of subgrad 35.186206 stepsize= 1.000000 +dualbound = 3726354.573734, lowerbound=1305349.573734, norm of subgrad 1143.075489 dualbound = 3726354.573734, lowerbound=1305349.573734, norm of subgrad 36.383264 stepsize= 1.000000 +dualbound = 3726426.867480, lowerbound=1301687.867480, norm of subgrad 1141.442012 dualbound = 3726426.867480, lowerbound=1301687.867480, norm of subgrad 35.697251 stepsize= 1.000000 +dualbound = 3726510.347389, lowerbound=1303348.347389, norm of subgrad 1142.169579 dualbound = 3726510.347389, lowerbound=1303348.347389, norm of subgrad 35.867533 stepsize= 1.000000 +dualbound = 3726582.185709, lowerbound=1308612.185709, norm of subgrad 1144.456284 dualbound = 3726582.185709, lowerbound=1308612.185709, norm of subgrad 35.211338 stepsize= 1.000000 +dualbound = 3726621.753680, lowerbound=1305059.753680, norm of subgrad 1142.904963 dualbound = 3726621.753680, lowerbound=1305059.753680, norm of subgrad 34.807585 stepsize= 1.000000 +dualbound = 3726701.956008, lowerbound=1305990.956008, norm of subgrad 1143.327143 dualbound = 3726701.956008, lowerbound=1305990.956008, norm of subgrad 35.863663 stepsize= 1.000000 +dualbound = 3726738.368359, lowerbound=1298618.368359, norm of subgrad 1140.090509 dualbound = 3726738.368359, lowerbound=1298618.368359, norm of subgrad 34.991604 stepsize= 1.000000 +dualbound = 3726807.612461, lowerbound=1304743.612461, norm of subgrad 1142.799025 dualbound = 3726807.612461, lowerbound=1304743.612461, norm of subgrad 36.266294 stepsize= 1.000000 +dualbound = 3726862.095628, lowerbound=1300834.095628, norm of subgrad 1141.075850 dualbound = 3726862.095628, lowerbound=1300834.095628, norm of subgrad 35.699904 stepsize= 1.000000 +dualbound = 3726935.991215, lowerbound=1306983.991215, norm of subgrad 1143.773575 dualbound = 3726935.991215, lowerbound=1306983.991215, norm of subgrad 36.164839 stepsize= 1.000000 +dualbound = 3726986.400240, lowerbound=1304984.400240, norm of subgrad 1142.903058 dualbound = 3726986.400240, lowerbound=1304984.400240, norm of subgrad 35.963996 stepsize= 1.000000 +dualbound = 3727050.467944, lowerbound=1303539.467944, norm of subgrad 1142.268562 dualbound = 3727050.467944, lowerbound=1303539.467944, norm of subgrad 36.084175 stepsize= 1.000000 +dualbound = 3727105.095123, lowerbound=1298988.095123, norm of subgrad 1140.259661 dualbound = 3727105.095123, lowerbound=1298988.095123, norm of subgrad 35.477136 stepsize= 1.000000 +dualbound = 3727188.183224, lowerbound=1308734.183224, norm of subgrad 1144.514388 dualbound = 3727188.183224, lowerbound=1308734.183224, norm of subgrad 35.525879 stepsize= 1.000000 +dualbound = 3727232.620264, lowerbound=1300111.620264, norm of subgrad 1140.775447 dualbound = 3727232.620264, lowerbound=1300111.620264, norm of subgrad 36.075435 stepsize= 1.000000 +dualbound = 3727282.217715, lowerbound=1306758.217715, norm of subgrad 1143.666568 dualbound = 3727282.217715, lowerbound=1306758.217715, norm of subgrad 35.561179 stepsize= 1.000000 +dualbound = 3727358.309503, lowerbound=1303374.309503, norm of subgrad 1142.155116 dualbound = 3727358.309503, lowerbound=1303374.309503, norm of subgrad 34.929812 stepsize= 1.000000 +dualbound = 3727439.536927, lowerbound=1306638.536927, norm of subgrad 1143.606810 dualbound = 3727439.536927, lowerbound=1306638.536927, norm of subgrad 35.766289 stepsize= 1.000000 +dualbound = 3727478.870019, lowerbound=1302686.870019, norm of subgrad 1141.886540 dualbound = 3727478.870019, lowerbound=1302686.870019, norm of subgrad 35.458893 stepsize= 1.000000 +dualbound = 3727522.573210, lowerbound=1308263.573210, norm of subgrad 1144.342420 dualbound = 3727522.573210, lowerbound=1308263.573210, norm of subgrad 36.051397 stepsize= 1.000000 +dualbound = 3727586.727213, lowerbound=1297446.727213, norm of subgrad 1139.595423 dualbound = 3727586.727213, lowerbound=1297446.727213, norm of subgrad 35.988248 stepsize= 1.000000 +dualbound = 3727661.035007, lowerbound=1307782.035007, norm of subgrad 1144.132438 dualbound = 3727661.035007, lowerbound=1307782.035007, norm of subgrad 36.487091 stepsize= 1.000000 +dualbound = 3727705.254262, lowerbound=1299770.254262, norm of subgrad 1140.615296 dualbound = 3727705.254262, lowerbound=1299770.254262, norm of subgrad 35.738204 stepsize= 1.000000 +dualbound = 3727781.098046, lowerbound=1308925.098046, norm of subgrad 1144.619193 dualbound = 3727781.098046, lowerbound=1308925.098046, norm of subgrad 36.108777 stepsize= 1.000000 +dualbound = 3727838.830905, lowerbound=1302849.830905, norm of subgrad 1141.995986 dualbound = 3727838.830905, lowerbound=1302849.830905, norm of subgrad 36.915212 stepsize= 1.000000 +dualbound = 3727890.618570, lowerbound=1305730.618570, norm of subgrad 1143.241277 dualbound = 3727890.618570, lowerbound=1305730.618570, norm of subgrad 36.356398 stepsize= 1.000000 +dualbound = 3727964.972996, lowerbound=1304283.972996, norm of subgrad 1142.569023 dualbound = 3727964.972996, lowerbound=1304283.972996, norm of subgrad 35.416866 stepsize= 1.000000 +dualbound = 3728030.515228, lowerbound=1302952.515228, norm of subgrad 1141.988842 dualbound = 3728030.515228, lowerbound=1302952.515228, norm of subgrad 35.377143 stepsize= 1.000000 +dualbound = 3728084.751208, lowerbound=1302875.751208, norm of subgrad 1141.970994 dualbound = 3728084.751208, lowerbound=1302875.751208, norm of subgrad 35.724445 stepsize= 1.000000 +dualbound = 3728153.082330, lowerbound=1302479.082330, norm of subgrad 1141.778911 dualbound = 3728153.082330, lowerbound=1302479.082330, norm of subgrad 35.331730 stepsize= 1.000000 +dualbound = 3728232.800804, lowerbound=1300193.800804, norm of subgrad 1140.757117 dualbound = 3728232.800804, lowerbound=1300193.800804, norm of subgrad 34.824108 stepsize= 1.000000 +dualbound = 3728294.926813, lowerbound=1307603.926813, norm of subgrad 1144.006087 dualbound = 3728294.926813, lowerbound=1307603.926813, norm of subgrad 34.758107 stepsize= 1.000000 +dualbound = 3728351.323664, lowerbound=1308286.323664, norm of subgrad 1144.323085 dualbound = 3728351.323664, lowerbound=1308286.323664, norm of subgrad 35.290181 stepsize= 1.000000 +dualbound = 3728389.970411, lowerbound=1303883.970411, norm of subgrad 1142.427665 dualbound = 3728389.970411, lowerbound=1303883.970411, norm of subgrad 35.995093 stepsize= 1.000000 +dualbound = 3728429.947161, lowerbound=1301142.947161, norm of subgrad 1141.219500 dualbound = 3728429.947161, lowerbound=1301142.947161, norm of subgrad 35.762784 stepsize= 1.000000 +dualbound = 3728517.951969, lowerbound=1300883.951969, norm of subgrad 1141.057821 dualbound = 3728517.951969, lowerbound=1300883.951969, norm of subgrad 34.885596 stepsize= 1.000000 +dualbound = 3728586.532025, lowerbound=1302859.532025, norm of subgrad 1141.929303 dualbound = 3728586.532025, lowerbound=1302859.532025, norm of subgrad 34.807759 stepsize= 1.000000 +dualbound = 3728650.792589, lowerbound=1306363.792589, norm of subgrad 1143.494990 dualbound = 3728650.792589, lowerbound=1306363.792589, norm of subgrad 35.794700 stepsize= 1.000000 +dualbound = 3728650.351698, lowerbound=1300857.351698, norm of subgrad 1141.128105 dualbound = 3728650.351698, lowerbound=1300857.351698, norm of subgrad 36.270637 stepsize= 1.000000 +dualbound = 3728729.881771, lowerbound=1305826.881771, norm of subgrad 1143.266759 dualbound = 3728729.881771, lowerbound=1305826.881771, norm of subgrad 36.215053 stepsize= 1.000000 +dualbound = 3728796.010229, lowerbound=1305730.010229, norm of subgrad 1143.255007 dualbound = 3728796.010229, lowerbound=1305730.010229, norm of subgrad 36.988221 stepsize= 1.000000 +dualbound = 3728846.985356, lowerbound=1300482.985356, norm of subgrad 1140.943463 dualbound = 3728846.985356, lowerbound=1300482.985356, norm of subgrad 36.331462 stepsize= 1.000000 +dualbound = 3728922.340910, lowerbound=1299481.340910, norm of subgrad 1140.486888 dualbound = 3728922.340910, lowerbound=1299481.340910, norm of subgrad 36.115863 stepsize= 1.000000 +dualbound = 3728993.243396, lowerbound=1308260.243396, norm of subgrad 1144.325672 dualbound = 3728993.243396, lowerbound=1308260.243396, norm of subgrad 35.943045 stepsize= 1.000000 +dualbound = 3729067.246164, lowerbound=1302862.246164, norm of subgrad 1141.968146 dualbound = 3729067.246164, lowerbound=1302862.246164, norm of subgrad 36.097130 stepsize= 1.000000 +dualbound = 3729114.509340, lowerbound=1304252.509340, norm of subgrad 1142.568820 dualbound = 3729114.509340, lowerbound=1304252.509340, norm of subgrad 35.472006 stepsize= 1.000000 +dualbound = 3729194.122973, lowerbound=1306158.122973, norm of subgrad 1143.380131 dualbound = 3729194.122973, lowerbound=1306158.122973, norm of subgrad 35.208147 stepsize= 1.000000 +dualbound = 3729221.686106, lowerbound=1297115.686106, norm of subgrad 1139.464210 dualbound = 3729221.686106, lowerbound=1297115.686106, norm of subgrad 35.924409 stepsize= 1.000000 +dualbound = 3729280.887266, lowerbound=1300278.887266, norm of subgrad 1140.830350 dualbound = 3729280.887266, lowerbound=1300278.887266, norm of subgrad 35.695954 stepsize= 1.000000 +dualbound = 3729380.023873, lowerbound=1303707.023873, norm of subgrad 1142.327021 dualbound = 3729380.023873, lowerbound=1303707.023873, norm of subgrad 36.098983 stepsize= 1.000000 +dualbound = 3729439.510187, lowerbound=1300234.510187, norm of subgrad 1140.794245 dualbound = 3729439.510187, lowerbound=1300234.510187, norm of subgrad 35.163707 stepsize= 1.000000 +dualbound = 3729491.380988, lowerbound=1310060.380988, norm of subgrad 1145.097542 dualbound = 3729491.380988, lowerbound=1310060.380988, norm of subgrad 35.211799 stepsize= 1.000000 +dualbound = 3729542.977358, lowerbound=1303942.977358, norm of subgrad 1142.440798 dualbound = 3729542.977358, lowerbound=1303942.977358, norm of subgrad 35.771446 stepsize= 1.000000 +dualbound = 3729625.319361, lowerbound=1302611.319361, norm of subgrad 1141.862216 dualbound = 3729625.319361, lowerbound=1302611.319361, norm of subgrad 36.336511 stepsize= 1.000000 +dualbound = 3729648.582826, lowerbound=1300826.582826, norm of subgrad 1141.066862 dualbound = 3729648.582826, lowerbound=1300826.582826, norm of subgrad 35.075112 stepsize= 1.000000 +dualbound = 3729745.981818, lowerbound=1307272.981818, norm of subgrad 1143.890721 dualbound = 3729745.981818, lowerbound=1307272.981818, norm of subgrad 36.199434 stepsize= 1.000000 +dualbound = 3729782.767300, lowerbound=1300680.767300, norm of subgrad 1140.988504 dualbound = 3729782.767300, lowerbound=1300680.767300, norm of subgrad 34.796343 stepsize= 1.000000 +dualbound = 3729883.055001, lowerbound=1295261.055001, norm of subgrad 1138.581598 dualbound = 3729883.055001, lowerbound=1295261.055001, norm of subgrad 34.746046 stepsize= 1.000000 +dualbound = 3729913.085985, lowerbound=1306834.085985, norm of subgrad 1143.697113 dualbound = 3729913.085985, lowerbound=1306834.085985, norm of subgrad 35.199872 stepsize= 1.000000 +dualbound = 3729967.845033, lowerbound=1305016.845033, norm of subgrad 1142.908065 dualbound = 3729967.845033, lowerbound=1305016.845033, norm of subgrad 35.731765 stepsize= 1.000000 +dualbound = 3730028.297687, lowerbound=1301436.297687, norm of subgrad 1141.340570 dualbound = 3730028.297687, lowerbound=1301436.297687, norm of subgrad 35.811348 stepsize= 1.000000 +dualbound = 3730119.444605, lowerbound=1303452.444605, norm of subgrad 1142.200265 dualbound = 3730119.444605, lowerbound=1303452.444605, norm of subgrad 35.498548 stepsize= 1.000000 +dualbound = 3730168.928222, lowerbound=1296481.928222, norm of subgrad 1139.150968 dualbound = 3730168.928222, lowerbound=1296481.928222, norm of subgrad 35.106746 stepsize= 1.000000 +dualbound = 3730226.112519, lowerbound=1306196.112519, norm of subgrad 1143.411174 dualbound = 3730226.112519, lowerbound=1306196.112519, norm of subgrad 35.357945 stepsize= 1.000000 +dualbound = 3730273.999407, lowerbound=1306946.999407, norm of subgrad 1143.764399 dualbound = 3730273.999407, lowerbound=1306946.999407, norm of subgrad 36.026197 stepsize= 1.000000 +dualbound = 3730322.779809, lowerbound=1305495.779809, norm of subgrad 1143.152999 dualbound = 3730322.779809, lowerbound=1305495.779809, norm of subgrad 36.766566 stepsize= 1.000000 +dualbound = 3730385.060360, lowerbound=1300111.060360, norm of subgrad 1140.773010 dualbound = 3730385.060360, lowerbound=1300111.060360, norm of subgrad 36.253007 stepsize= 1.000000 +dualbound = 3730451.079230, lowerbound=1305749.079230, norm of subgrad 1143.216112 dualbound = 3730451.079230, lowerbound=1305749.079230, norm of subgrad 35.496744 stepsize= 1.000000 +dualbound = 3730497.376681, lowerbound=1303575.376681, norm of subgrad 1142.306604 dualbound = 3730497.376681, lowerbound=1303575.376681, norm of subgrad 36.541722 stepsize= 1.000000 +dualbound = 3730571.882923, lowerbound=1301188.882923, norm of subgrad 1141.246635 dualbound = 3730571.882923, lowerbound=1301188.882923, norm of subgrad 36.462395 stepsize= 1.000000 +dualbound = 3730627.608416, lowerbound=1304408.608416, norm of subgrad 1142.634941 dualbound = 3730627.608416, lowerbound=1304408.608416, norm of subgrad 35.520776 stepsize= 1.000000 +dualbound = 3730710.874190, lowerbound=1305902.874190, norm of subgrad 1143.288185 dualbound = 3730710.874190, lowerbound=1305902.874190, norm of subgrad 35.892419 stepsize= 1.000000 +dualbound = 3730748.213744, lowerbound=1302777.213744, norm of subgrad 1141.920844 dualbound = 3730748.213744, lowerbound=1302777.213744, norm of subgrad 35.261020 stepsize= 1.000000 +dualbound = 3730838.431025, lowerbound=1307787.431025, norm of subgrad 1144.119937 dualbound = 3730838.431025, lowerbound=1307787.431025, norm of subgrad 36.238340 stepsize= 1.000000 +dualbound = 3730876.511050, lowerbound=1305447.511050, norm of subgrad 1143.091646 dualbound = 3730876.511050, lowerbound=1305447.511050, norm of subgrad 35.342326 stepsize= 1.000000 +dualbound = 3730956.785690, lowerbound=1305089.785690, norm of subgrad 1142.901039 dualbound = 3730956.785690, lowerbound=1305089.785690, norm of subgrad 34.832092 stepsize= 1.000000 +dualbound = 3731031.640117, lowerbound=1305874.640117, norm of subgrad 1143.259656 dualbound = 3731031.640117, lowerbound=1305874.640117, norm of subgrad 35.254141 stepsize= 1.000000 +dualbound = 3731091.026945, lowerbound=1301385.026945, norm of subgrad 1141.318986 dualbound = 3731091.026945, lowerbound=1301385.026945, norm of subgrad 35.824389 stepsize= 1.000000 +dualbound = 3731124.096689, lowerbound=1301770.096689, norm of subgrad 1141.492486 dualbound = 3731124.096689, lowerbound=1301770.096689, norm of subgrad 35.609967 stepsize= 1.000000 +dualbound = 3731201.838063, lowerbound=1304550.838063, norm of subgrad 1142.673111 dualbound = 3731201.838063, lowerbound=1304550.838063, norm of subgrad 35.053407 stepsize= 1.000000 +dualbound = 3731282.923899, lowerbound=1301871.923899, norm of subgrad 1141.513436 dualbound = 3731282.923899, lowerbound=1301871.923899, norm of subgrad 35.525847 stepsize= 1.000000 +dualbound = 3731318.614228, lowerbound=1298681.614228, norm of subgrad 1140.119123 dualbound = 3731318.614228, lowerbound=1298681.614228, norm of subgrad 35.009860 stepsize= 1.000000 +dualbound = 3731403.235327, lowerbound=1302303.235327, norm of subgrad 1141.709786 dualbound = 3731403.235327, lowerbound=1302303.235327, norm of subgrad 35.813700 stepsize= 1.000000 +dualbound = 3731447.459772, lowerbound=1303647.459772, norm of subgrad 1142.278626 dualbound = 3731447.459772, lowerbound=1303647.459772, norm of subgrad 34.600931 stepsize= 1.000000 +dualbound = 3731516.385016, lowerbound=1304485.385016, norm of subgrad 1142.665911 dualbound = 3731516.385016, lowerbound=1304485.385016, norm of subgrad 35.621977 stepsize= 1.000000 +dualbound = 3731582.809446, lowerbound=1306889.809446, norm of subgrad 1143.718851 dualbound = 3731582.809446, lowerbound=1306889.809446, norm of subgrad 35.628983 stepsize= 1.000000 +dualbound = 3731627.617362, lowerbound=1302906.617362, norm of subgrad 1141.991952 dualbound = 3731627.617362, lowerbound=1302906.617362, norm of subgrad 35.830265 stepsize= 1.000000 +dualbound = 3731680.878964, lowerbound=1305683.878964, norm of subgrad 1143.214275 dualbound = 3731680.878964, lowerbound=1305683.878964, norm of subgrad 36.169899 stepsize= 1.000000 +dualbound = 3731721.206919, lowerbound=1305282.206919, norm of subgrad 1143.016276 dualbound = 3731721.206919, lowerbound=1305282.206919, norm of subgrad 35.275033 stepsize= 1.000000 +dualbound = 3731834.106094, lowerbound=1300577.106094, norm of subgrad 1140.940448 dualbound = 3731834.106094, lowerbound=1300577.106094, norm of subgrad 35.789652 stepsize= 1.000000 +dualbound = 3731867.914626, lowerbound=1304841.914626, norm of subgrad 1142.782532 dualbound = 3731867.914626, lowerbound=1304841.914626, norm of subgrad 33.820238 stepsize= 1.000000 +dualbound = 3731968.876301, lowerbound=1303844.876301, norm of subgrad 1142.370289 dualbound = 3731968.876301, lowerbound=1303844.876301, norm of subgrad 35.580355 stepsize= 1.000000 +dualbound = 3731989.049360, lowerbound=1303884.049360, norm of subgrad 1142.427700 dualbound = 3731989.049360, lowerbound=1303884.049360, norm of subgrad 35.737558 stepsize= 1.000000 +dualbound = 3732043.535664, lowerbound=1303207.535664, norm of subgrad 1142.114940 dualbound = 3732043.535664, lowerbound=1303207.535664, norm of subgrad 35.685940 stepsize= 1.000000 +dualbound = 3732135.522951, lowerbound=1307937.522951, norm of subgrad 1144.167174 dualbound = 3732135.522951, lowerbound=1307937.522951, norm of subgrad 35.678947 stepsize= 1.000000 +dualbound = 3732204.955546, lowerbound=1310837.955546, norm of subgrad 1145.436579 dualbound = 3732204.955546, lowerbound=1310837.955546, norm of subgrad 35.446193 stepsize= 1.000000 +dualbound = 3732231.855691, lowerbound=1300366.855691, norm of subgrad 1140.864083 dualbound = 3732231.855691, lowerbound=1300366.855691, norm of subgrad 35.084187 stepsize= 1.000000 +dualbound = 3732321.639441, lowerbound=1302831.639441, norm of subgrad 1141.940296 dualbound = 3732321.639441, lowerbound=1302831.639441, norm of subgrad 35.857827 stepsize= 1.000000 +dualbound = 3732371.731039, lowerbound=1303223.731039, norm of subgrad 1142.093574 dualbound = 3732371.731039, lowerbound=1303223.731039, norm of subgrad 34.700023 stepsize= 1.000000 +dualbound = 3732443.668619, lowerbound=1308315.668619, norm of subgrad 1144.339840 dualbound = 3732443.668619, lowerbound=1308315.668619, norm of subgrad 35.636184 stepsize= 1.000000 +dualbound = 3732496.161657, lowerbound=1307048.161657, norm of subgrad 1143.779333 dualbound = 3732496.161657, lowerbound=1307048.161657, norm of subgrad 35.149581 stepsize= 1.000000 +dualbound = 3732571.089650, lowerbound=1306453.089650, norm of subgrad 1143.544092 dualbound = 3732571.089650, lowerbound=1306453.089650, norm of subgrad 36.261936 stepsize= 1.000000 +dualbound = 3732604.864567, lowerbound=1304461.864567, norm of subgrad 1142.636366 dualbound = 3732604.864567, lowerbound=1304461.864567, norm of subgrad 34.493114 stepsize= 1.000000 +dualbound = 3732684.672994, lowerbound=1301165.672994, norm of subgrad 1141.208427 dualbound = 3732684.672994, lowerbound=1301165.672994, norm of subgrad 35.648400 stepsize= 1.000000 +dualbound = 3732727.539814, lowerbound=1306180.539814, norm of subgrad 1143.403490 dualbound = 3732727.539814, lowerbound=1306180.539814, norm of subgrad 35.126440 stepsize= 1.000000 +dualbound = 3732807.496370, lowerbound=1309494.496370, norm of subgrad 1144.841691 dualbound = 3732807.496370, lowerbound=1309494.496370, norm of subgrad 35.326429 stepsize= 1.000000 +dualbound = 3732869.721346, lowerbound=1302242.721346, norm of subgrad 1141.685912 dualbound = 3732869.721346, lowerbound=1302242.721346, norm of subgrad 35.584055 stepsize= 1.000000 +dualbound = 3732929.519635, lowerbound=1311144.519635, norm of subgrad 1145.563407 dualbound = 3732929.519635, lowerbound=1311144.519635, norm of subgrad 35.082735 stepsize= 1.000000 +dualbound = 3732984.352161, lowerbound=1305163.352161, norm of subgrad 1142.968658 dualbound = 3732984.352161, lowerbound=1305163.352161, norm of subgrad 35.620676 stepsize= 1.000000 +dualbound = 3733037.005602, lowerbound=1303642.005602, norm of subgrad 1142.339269 dualbound = 3733037.005602, lowerbound=1303642.005602, norm of subgrad 36.737630 stepsize= 1.000000 +dualbound = 3733094.222107, lowerbound=1303459.222107, norm of subgrad 1142.237813 dualbound = 3733094.222107, lowerbound=1303459.222107, norm of subgrad 36.127780 stepsize= 1.000000 +dualbound = 3733157.975465, lowerbound=1303472.975465, norm of subgrad 1142.260905 dualbound = 3733157.975465, lowerbound=1303472.975465, norm of subgrad 36.752597 stepsize= 1.000000 +dualbound = 3733201.677209, lowerbound=1304113.677209, norm of subgrad 1142.509377 dualbound = 3733201.677209, lowerbound=1304113.677209, norm of subgrad 35.464091 stepsize= 1.000000 +dualbound = 3733308.789535, lowerbound=1311293.789535, norm of subgrad 1145.635540 dualbound = 3733308.789535, lowerbound=1311293.789535, norm of subgrad 35.973773 stepsize= 1.000000 +dualbound = 3733340.972149, lowerbound=1302398.972149, norm of subgrad 1141.749523 dualbound = 3733340.972149, lowerbound=1302398.972149, norm of subgrad 35.002609 stepsize= 1.000000 +dualbound = 3733420.797337, lowerbound=1304982.797337, norm of subgrad 1142.872170 dualbound = 3733420.797337, lowerbound=1304982.797337, norm of subgrad 35.409394 stepsize= 1.000000 +dualbound = 3733472.716681, lowerbound=1301640.716681, norm of subgrad 1141.414787 dualbound = 3733472.716681, lowerbound=1301640.716681, norm of subgrad 35.198286 stepsize= 1.000000 +dualbound = 3733558.148344, lowerbound=1308346.148344, norm of subgrad 1144.344856 dualbound = 3733558.148344, lowerbound=1308346.148344, norm of subgrad 35.558848 stepsize= 1.000000 +dualbound = 3733571.552704, lowerbound=1299644.552704, norm of subgrad 1140.545726 dualbound = 3733571.552704, lowerbound=1299644.552704, norm of subgrad 34.833954 stepsize= 1.000000 +dualbound = 3733651.647780, lowerbound=1306149.647780, norm of subgrad 1143.400913 dualbound = 3733651.647780, lowerbound=1306149.647780, norm of subgrad 36.001320 stepsize= 1.000000 +dualbound = 3733688.940199, lowerbound=1302891.940199, norm of subgrad 1141.968888 dualbound = 3733688.940199, lowerbound=1302891.940199, norm of subgrad 35.189379 stepsize= 1.000000 +dualbound = 3733787.378045, lowerbound=1306062.378045, norm of subgrad 1143.340447 dualbound = 3733787.378045, lowerbound=1306062.378045, norm of subgrad 35.544871 stepsize= 1.000000 +dualbound = 3733849.517169, lowerbound=1303947.517169, norm of subgrad 1142.416088 dualbound = 3733849.517169, lowerbound=1303947.517169, norm of subgrad 35.059080 stepsize= 1.000000 +dualbound = 3733919.245329, lowerbound=1307177.245329, norm of subgrad 1143.812155 dualbound = 3733919.245329, lowerbound=1307177.245329, norm of subgrad 34.622654 stepsize= 1.000000 +dualbound = 3733968.118662, lowerbound=1304185.118662, norm of subgrad 1142.511759 dualbound = 3733968.118662, lowerbound=1304185.118662, norm of subgrad 34.595857 stepsize= 1.000000 +dualbound = 3734024.710152, lowerbound=1308484.710152, norm of subgrad 1144.436853 dualbound = 3734024.710152, lowerbound=1308484.710152, norm of subgrad 36.160635 stepsize= 1.000000 +dualbound = 3734054.805416, lowerbound=1304293.805416, norm of subgrad 1142.606146 dualbound = 3734054.805416, lowerbound=1304293.805416, norm of subgrad 35.848225 stepsize= 1.000000 +dualbound = 3734131.714867, lowerbound=1311615.714867, norm of subgrad 1145.793051 dualbound = 3734131.714867, lowerbound=1311615.714867, norm of subgrad 36.095837 stepsize= 1.000000 +dualbound = 3734198.121593, lowerbound=1303993.121593, norm of subgrad 1142.446551 dualbound = 3734198.121593, lowerbound=1303993.121593, norm of subgrad 35.459931 stepsize= 1.000000 +dualbound = 3734278.085018, lowerbound=1306714.085018, norm of subgrad 1143.627599 dualbound = 3734278.085018, lowerbound=1306714.085018, norm of subgrad 35.354822 stepsize= 1.000000 +dualbound = 3734302.340404, lowerbound=1303916.340404, norm of subgrad 1142.413822 dualbound = 3734302.340404, lowerbound=1303916.340404, norm of subgrad 34.889187 stepsize= 1.000000 +dualbound = 3734366.358922, lowerbound=1303975.358922, norm of subgrad 1142.446217 dualbound = 3734366.358922, lowerbound=1303975.358922, norm of subgrad 35.665369 stepsize= 1.000000 +dualbound = 3734426.766624, lowerbound=1307208.766624, norm of subgrad 1143.862652 dualbound = 3734426.766624, lowerbound=1307208.766624, norm of subgrad 35.684839 stepsize= 1.000000 +dualbound = 3734478.008218, lowerbound=1302239.008218, norm of subgrad 1141.705307 dualbound = 3734478.008218, lowerbound=1302239.008218, norm of subgrad 36.100438 stepsize= 1.000000 +dualbound = 3734552.549665, lowerbound=1312460.549665, norm of subgrad 1146.145519 dualbound = 3734552.549665, lowerbound=1312460.549665, norm of subgrad 35.546328 stepsize= 1.000000 +dualbound = 3734621.819521, lowerbound=1304784.819521, norm of subgrad 1142.778552 dualbound = 3734621.819521, lowerbound=1304784.819521, norm of subgrad 35.032412 stepsize= 1.000000 +dualbound = 3734690.427955, lowerbound=1303418.427955, norm of subgrad 1142.192378 dualbound = 3734690.427955, lowerbound=1303418.427955, norm of subgrad 35.406333 stepsize= 1.000000 +dualbound = 3734727.771704, lowerbound=1304840.771704, norm of subgrad 1142.821408 dualbound = 3734727.771704, lowerbound=1304840.771704, norm of subgrad 35.175897 stepsize= 1.000000 +dualbound = 3734783.489153, lowerbound=1304851.489153, norm of subgrad 1142.819535 dualbound = 3734783.489153, lowerbound=1304851.489153, norm of subgrad 35.223819 stepsize= 1.000000 +dualbound = 3734858.799162, lowerbound=1304749.799162, norm of subgrad 1142.774606 dualbound = 3734858.799162, lowerbound=1304749.799162, norm of subgrad 35.486758 stepsize= 1.000000 +dualbound = 3734926.614577, lowerbound=1300676.614577, norm of subgrad 1140.990629 dualbound = 3734926.614577, lowerbound=1300676.614577, norm of subgrad 35.366869 stepsize= 1.000000 +dualbound = 3734962.764240, lowerbound=1310649.764240, norm of subgrad 1145.360539 dualbound = 3734962.764240, lowerbound=1310649.764240, norm of subgrad 35.173138 stepsize= 1.000000 +dualbound = 3735054.550719, lowerbound=1302075.550719, norm of subgrad 1141.581163 dualbound = 3735054.550719, lowerbound=1302075.550719, norm of subgrad 34.982660 stepsize= 1.000000 +dualbound = 3735112.574930, lowerbound=1306229.574930, norm of subgrad 1143.403942 dualbound = 3735112.574930, lowerbound=1306229.574930, norm of subgrad 34.655796 stepsize= 1.000000 +dualbound = 3735181.804660, lowerbound=1302039.804660, norm of subgrad 1141.596603 dualbound = 3735181.804660, lowerbound=1302039.804660, norm of subgrad 35.668330 stepsize= 1.000000 +dualbound = 3735183.715484, lowerbound=1310381.715484, norm of subgrad 1145.305512 dualbound = 3735183.715484, lowerbound=1310381.715484, norm of subgrad 36.673026 stepsize= 1.000000 +dualbound = 3735248.271101, lowerbound=1300162.271101, norm of subgrad 1140.789319 dualbound = 3735248.271101, lowerbound=1300162.271101, norm of subgrad 36.090935 stepsize= 1.000000 +dualbound = 3735317.744455, lowerbound=1306242.744455, norm of subgrad 1143.423257 dualbound = 3735317.744455, lowerbound=1306242.744455, norm of subgrad 35.262918 stepsize= 1.000000 +dualbound = 3735403.159614, lowerbound=1306197.159614, norm of subgrad 1143.416879 dualbound = 3735403.159614, lowerbound=1306197.159614, norm of subgrad 35.922349 stepsize= 1.000000 +dualbound = 3735444.386561, lowerbound=1308131.386561, norm of subgrad 1144.265872 dualbound = 3735444.386561, lowerbound=1308131.386561, norm of subgrad 35.415067 stepsize= 1.000000 +dualbound = 3735500.110711, lowerbound=1302033.110711, norm of subgrad 1141.619512 dualbound = 3735500.110711, lowerbound=1302033.110711, norm of subgrad 36.300470 stepsize= 1.000000 +dualbound = 3735552.261365, lowerbound=1308897.261365, norm of subgrad 1144.577766 dualbound = 3735552.261365, lowerbound=1308897.261365, norm of subgrad 34.830312 stepsize= 1.000000 +dualbound = 3735664.968806, lowerbound=1299480.968806, norm of subgrad 1140.454282 dualbound = 3735664.968806, lowerbound=1299480.968806, norm of subgrad 35.604879 stepsize= 1.000000 +dualbound = 3735680.325885, lowerbound=1308838.325885, norm of subgrad 1144.570367 dualbound = 3735680.325885, lowerbound=1308838.325885, norm of subgrad 34.904972 stepsize= 1.000000 +dualbound = 3735775.467244, lowerbound=1307399.467244, norm of subgrad 1143.922841 dualbound = 3735775.467244, lowerbound=1307399.467244, norm of subgrad 35.427974 stepsize= 1.000000 +dualbound = 3735827.079165, lowerbound=1301117.079165, norm of subgrad 1141.177935 dualbound = 3735827.079165, lowerbound=1301117.079165, norm of subgrad 34.951565 stepsize= 1.000000 +dualbound = 3735887.818608, lowerbound=1305350.818608, norm of subgrad 1143.037540 dualbound = 3735887.818608, lowerbound=1305350.818608, norm of subgrad 35.280865 stepsize= 1.000000 +dualbound = 3735939.859666, lowerbound=1308340.859666, norm of subgrad 1144.340797 dualbound = 3735939.859666, lowerbound=1308340.859666, norm of subgrad 35.029146 stepsize= 1.000000 +dualbound = 3736012.921622, lowerbound=1305225.921622, norm of subgrad 1142.986405 dualbound = 3736012.921622, lowerbound=1305225.921622, norm of subgrad 35.567709 stepsize= 1.000000 +dualbound = 3736056.542931, lowerbound=1304936.542931, norm of subgrad 1142.845809 dualbound = 3736056.542931, lowerbound=1304936.542931, norm of subgrad 34.693246 stepsize= 1.000000 +dualbound = 3736149.552436, lowerbound=1307241.552436, norm of subgrad 1143.852505 dualbound = 3736149.552436, lowerbound=1307241.552436, norm of subgrad 35.355473 stepsize= 1.000000 +dualbound = 3736173.475939, lowerbound=1302272.475939, norm of subgrad 1141.689746 dualbound = 3736173.475939, lowerbound=1302272.475939, norm of subgrad 34.740805 stepsize= 1.000000 +dualbound = 3736254.326206, lowerbound=1308222.326206, norm of subgrad 1144.263661 dualbound = 3736254.326206, lowerbound=1308222.326206, norm of subgrad 34.609974 stepsize= 1.000000 +dualbound = 3736330.657261, lowerbound=1301764.657261, norm of subgrad 1141.448491 dualbound = 3736330.657261, lowerbound=1301764.657261, norm of subgrad 34.875938 stepsize= 1.000000 +dualbound = 3736365.476666, lowerbound=1303175.476666, norm of subgrad 1142.076826 dualbound = 3736365.476666, lowerbound=1303175.476666, norm of subgrad 34.623972 stepsize= 1.000000 +dualbound = 3736408.747634, lowerbound=1301919.747634, norm of subgrad 1141.561539 dualbound = 3736408.747634, lowerbound=1301919.747634, norm of subgrad 35.864620 stepsize= 1.000000 +dualbound = 3736475.394659, lowerbound=1301828.394659, norm of subgrad 1141.510138 dualbound = 3736475.394659, lowerbound=1301828.394659, norm of subgrad 35.828020 stepsize= 1.000000 +dualbound = 3736537.413897, lowerbound=1304994.413897, norm of subgrad 1142.904377 dualbound = 3736537.413897, lowerbound=1304994.413897, norm of subgrad 36.028034 stepsize= 1.000000 +dualbound = 3736595.284267, lowerbound=1308406.284267, norm of subgrad 1144.372878 dualbound = 3736595.284267, lowerbound=1308406.284267, norm of subgrad 35.225990 stepsize= 1.000000 +dualbound = 3736666.515543, lowerbound=1303372.515543, norm of subgrad 1142.170528 dualbound = 3736666.515543, lowerbound=1303372.515543, norm of subgrad 35.386880 stepsize= 1.000000 +dualbound = 3736720.803776, lowerbound=1308802.803776, norm of subgrad 1144.565771 dualbound = 3736720.803776, lowerbound=1308802.803776, norm of subgrad 35.809052 stepsize= 1.000000 +dualbound = 3736763.090687, lowerbound=1305722.090687, norm of subgrad 1143.200372 dualbound = 3736763.090687, lowerbound=1305722.090687, norm of subgrad 35.032655 stepsize= 1.000000 +dualbound = 3736855.395890, lowerbound=1304172.395890, norm of subgrad 1142.537262 dualbound = 3736855.395890, lowerbound=1304172.395890, norm of subgrad 36.211948 stepsize= 1.000000 +dualbound = 3736888.150363, lowerbound=1302837.150363, norm of subgrad 1141.962850 dualbound = 3736888.150363, lowerbound=1302837.150363, norm of subgrad 35.703704 stepsize= 1.000000 +dualbound = 3736937.003643, lowerbound=1308812.003643, norm of subgrad 1144.577216 dualbound = 3736937.003643, lowerbound=1308812.003643, norm of subgrad 35.970172 stepsize= 1.000000 +dualbound = 3737029.932264, lowerbound=1300317.932264, norm of subgrad 1140.837820 dualbound = 3737029.932264, lowerbound=1300317.932264, norm of subgrad 35.859847 stepsize= 1.000000 +dualbound = 3737089.860448, lowerbound=1311932.860448, norm of subgrad 1145.899586 dualbound = 3737089.860448, lowerbound=1311932.860448, norm of subgrad 34.827119 stepsize= 1.000000 +dualbound = 3737149.307882, lowerbound=1303122.307882, norm of subgrad 1142.065807 dualbound = 3737149.307882, lowerbound=1303122.307882, norm of subgrad 35.375803 stepsize= 1.000000 +dualbound = 3737204.851211, lowerbound=1306891.851211, norm of subgrad 1143.695262 dualbound = 3737204.851211, lowerbound=1306891.851211, norm of subgrad 34.677707 stepsize= 1.000000 +dualbound = 3737262.633166, lowerbound=1303324.633166, norm of subgrad 1142.135120 dualbound = 3737262.633166, lowerbound=1303324.633166, norm of subgrad 34.724371 stepsize= 1.000000 +dualbound = 3737331.174241, lowerbound=1305283.174241, norm of subgrad 1142.990890 dualbound = 3737331.174241, lowerbound=1305283.174241, norm of subgrad 34.835916 stepsize= 1.000000 +dualbound = 3737381.997095, lowerbound=1307667.997095, norm of subgrad 1144.046326 dualbound = 3737381.997095, lowerbound=1307667.997095, norm of subgrad 34.997469 stepsize= 1.000000 +dualbound = 3737441.153251, lowerbound=1303457.153251, norm of subgrad 1142.213270 dualbound = 3737441.153251, lowerbound=1303457.153251, norm of subgrad 35.399946 stepsize= 1.000000 +dualbound = 3737472.887300, lowerbound=1305024.887300, norm of subgrad 1142.917271 dualbound = 3737472.887300, lowerbound=1305024.887300, norm of subgrad 35.591207 stepsize= 1.000000 +dualbound = 3737570.659484, lowerbound=1305258.659484, norm of subgrad 1142.993289 dualbound = 3737570.659484, lowerbound=1305258.659484, norm of subgrad 35.675933 stepsize= 1.000000 +dualbound = 3737601.714861, lowerbound=1302762.714861, norm of subgrad 1141.917998 dualbound = 3737601.714861, lowerbound=1302762.714861, norm of subgrad 35.285342 stepsize= 1.000000 +dualbound = 3737677.013426, lowerbound=1299663.013426, norm of subgrad 1140.557764 dualbound = 3737677.013426, lowerbound=1299663.013426, norm of subgrad 35.837112 stepsize= 1.000000 +dualbound = 3737744.745614, lowerbound=1308111.745614, norm of subgrad 1144.240248 dualbound = 3737744.745614, lowerbound=1308111.745614, norm of subgrad 35.238221 stepsize= 1.000000 +dualbound = 3737836.421664, lowerbound=1305949.421664, norm of subgrad 1143.285363 dualbound = 3737836.421664, lowerbound=1305949.421664, norm of subgrad 35.265791 stepsize= 1.000000 +dualbound = 3737868.398143, lowerbound=1301634.398143, norm of subgrad 1141.422095 dualbound = 3737868.398143, lowerbound=1301634.398143, norm of subgrad 35.241687 stepsize= 1.000000 +dualbound = 3737910.714132, lowerbound=1312967.714132, norm of subgrad 1146.385936 dualbound = 3737910.714132, lowerbound=1312967.714132, norm of subgrad 35.711567 stepsize= 1.000000 +dualbound = 3737968.269131, lowerbound=1300873.269131, norm of subgrad 1141.145157 dualbound = 3737968.269131, lowerbound=1300873.269131, norm of subgrad 37.370510 stepsize= 1.000000 +dualbound = 3738020.333746, lowerbound=1307000.333746, norm of subgrad 1143.770228 dualbound = 3738020.333746, lowerbound=1307000.333746, norm of subgrad 35.525549 stepsize= 1.000000 +dualbound = 3738099.822012, lowerbound=1308183.822012, norm of subgrad 1144.283541 dualbound = 3738099.822012, lowerbound=1308183.822012, norm of subgrad 35.783911 stepsize= 1.000000 +dualbound = 3738156.351699, lowerbound=1294297.351699, norm of subgrad 1138.233435 dualbound = 3738156.351699, lowerbound=1294297.351699, norm of subgrad 36.531215 stepsize= 1.000000 +dualbound = 3738217.893756, lowerbound=1302881.893756, norm of subgrad 1141.974559 dualbound = 3738217.893756, lowerbound=1302881.893756, norm of subgrad 35.854457 stepsize= 1.000000 +dualbound = 3738285.704491, lowerbound=1305962.704491, norm of subgrad 1143.315225 dualbound = 3738285.704491, lowerbound=1305962.704491, norm of subgrad 35.704492 stepsize= 1.000000 +dualbound = 3738356.840632, lowerbound=1310303.840632, norm of subgrad 1145.230475 dualbound = 3738356.840632, lowerbound=1310303.840632, norm of subgrad 36.333678 stepsize= 1.000000 +dualbound = 3738395.433033, lowerbound=1300257.433033, norm of subgrad 1140.833657 dualbound = 3738395.433033, lowerbound=1300257.433033, norm of subgrad 35.813299 stepsize= 1.000000 +dualbound = 3738472.369814, lowerbound=1311379.369814, norm of subgrad 1145.686855 dualbound = 3738472.369814, lowerbound=1311379.369814, norm of subgrad 35.999122 stepsize= 1.000000 +dualbound = 3738541.577751, lowerbound=1299318.577751, norm of subgrad 1140.418159 dualbound = 3738541.577751, lowerbound=1299318.577751, norm of subgrad 36.113819 stepsize= 1.000000 +dualbound = 3738594.724873, lowerbound=1307136.724873, norm of subgrad 1143.822856 dualbound = 3738594.724873, lowerbound=1307136.724873, norm of subgrad 35.314970 stepsize= 1.000000 +dualbound = 3738651.979518, lowerbound=1300776.979518, norm of subgrad 1141.060463 dualbound = 3738651.979518, lowerbound=1300776.979518, norm of subgrad 36.045175 stepsize= 1.000000 +dualbound = 3738717.239219, lowerbound=1306328.239219, norm of subgrad 1143.454957 dualbound = 3738717.239219, lowerbound=1306328.239219, norm of subgrad 35.017991 stepsize= 1.000000 +dualbound = 3738786.518008, lowerbound=1306837.518008, norm of subgrad 1143.687247 dualbound = 3738786.518008, lowerbound=1306837.518008, norm of subgrad 35.387551 stepsize= 1.000000 +dualbound = 3738846.843539, lowerbound=1303487.843539, norm of subgrad 1142.217511 dualbound = 3738846.843539, lowerbound=1303487.843539, norm of subgrad 35.118735 stepsize= 1.000000 +dualbound = 3738892.225986, lowerbound=1307060.225986, norm of subgrad 1143.792475 dualbound = 3738892.225986, lowerbound=1307060.225986, norm of subgrad 35.304142 stepsize= 1.000000 +dualbound = 3738973.384920, lowerbound=1307411.384920, norm of subgrad 1143.892646 dualbound = 3738973.384920, lowerbound=1307411.384920, norm of subgrad 34.061106 stepsize= 1.000000 +dualbound = 3739063.830546, lowerbound=1304910.830546, norm of subgrad 1142.836310 dualbound = 3739063.830546, lowerbound=1304910.830546, norm of subgrad 35.418154 stepsize= 1.000000 +dualbound = 3739071.159232, lowerbound=1308014.159232, norm of subgrad 1144.228194 dualbound = 3739071.159232, lowerbound=1308014.159232, norm of subgrad 35.374125 stepsize= 1.000000 +dualbound = 3739134.262778, lowerbound=1306168.262778, norm of subgrad 1143.383690 dualbound = 3739134.262778, lowerbound=1306168.262778, norm of subgrad 34.944292 stepsize= 1.000000 +dualbound = 3739206.725836, lowerbound=1310072.725836, norm of subgrad 1145.111229 dualbound = 3739206.725836, lowerbound=1310072.725836, norm of subgrad 35.769583 stepsize= 1.000000 +dualbound = 3739259.698196, lowerbound=1303425.698196, norm of subgrad 1142.180677 dualbound = 3739259.698196, lowerbound=1303425.698196, norm of subgrad 34.698305 stepsize= 1.000000 +dualbound = 3739326.388956, lowerbound=1303282.388956, norm of subgrad 1142.135889 dualbound = 3739326.388956, lowerbound=1303282.388956, norm of subgrad 35.478032 stepsize= 1.000000 +dualbound = 3739373.191152, lowerbound=1301845.191152, norm of subgrad 1141.489900 dualbound = 3739373.191152, lowerbound=1301845.191152, norm of subgrad 34.652593 stepsize= 1.000000 +dualbound = 3739442.523438, lowerbound=1306155.523438, norm of subgrad 1143.387740 dualbound = 3739442.523438, lowerbound=1306155.523438, norm of subgrad 35.345895 stepsize= 1.000000 +dualbound = 3739500.013704, lowerbound=1302414.013704, norm of subgrad 1141.753044 dualbound = 3739500.013704, lowerbound=1302414.013704, norm of subgrad 35.263157 stepsize= 1.000000 +dualbound = 3739548.952853, lowerbound=1311568.952853, norm of subgrad 1145.796646 dualbound = 3739548.952853, lowerbound=1311568.952853, norm of subgrad 36.468331 stepsize= 1.000000 +dualbound = 3739594.299540, lowerbound=1300858.299540, norm of subgrad 1141.065423 dualbound = 3739594.299540, lowerbound=1300858.299540, norm of subgrad 34.890496 stepsize= 1.000000 +dualbound = 3739682.152523, lowerbound=1311939.152523, norm of subgrad 1145.911058 dualbound = 3739682.152523, lowerbound=1311939.152523, norm of subgrad 35.508492 stepsize= 1.000000 +dualbound = 3739755.126983, lowerbound=1299363.126983, norm of subgrad 1140.418838 dualbound = 3739755.126983, lowerbound=1299363.126983, norm of subgrad 35.566479 stepsize= 1.000000 +dualbound = 3739786.254516, lowerbound=1309568.254516, norm of subgrad 1144.921069 dualbound = 3739786.254516, lowerbound=1309568.254516, norm of subgrad 36.154219 stepsize= 1.000000 +dualbound = 3739837.150015, lowerbound=1305205.150015, norm of subgrad 1142.989129 dualbound = 3739837.150015, lowerbound=1305205.150015, norm of subgrad 35.635593 stepsize= 1.000000 +dualbound = 3739913.802937, lowerbound=1306045.802937, norm of subgrad 1143.322266 dualbound = 3739913.802937, lowerbound=1306045.802937, norm of subgrad 34.880552 stepsize= 1.000000 +dualbound = 3739999.323565, lowerbound=1305744.323565, norm of subgrad 1143.196975 dualbound = 3739999.323565, lowerbound=1305744.323565, norm of subgrad 35.221025 stepsize= 1.000000 +dualbound = 3740028.048516, lowerbound=1307757.048516, norm of subgrad 1144.097919 dualbound = 3740028.048516, lowerbound=1307757.048516, norm of subgrad 35.095939 stepsize= 1.000000 +dualbound = 3740083.435337, lowerbound=1302034.435337, norm of subgrad 1141.562278 dualbound = 3740083.435337, lowerbound=1302034.435337, norm of subgrad 34.429447 stepsize= 1.000000 +dualbound = 3740168.686987, lowerbound=1306809.686987, norm of subgrad 1143.661964 dualbound = 3740168.686987, lowerbound=1306809.686987, norm of subgrad 35.188800 stepsize= 1.000000 +dualbound = 3740224.852482, lowerbound=1307929.852482, norm of subgrad 1144.169066 dualbound = 3740224.852482, lowerbound=1307929.852482, norm of subgrad 35.343535 stepsize= 1.000000 +dualbound = 3740277.434799, lowerbound=1303893.434799, norm of subgrad 1142.419991 dualbound = 3740277.434799, lowerbound=1303893.434799, norm of subgrad 35.813158 stepsize= 1.000000 +dualbound = 3740321.393639, lowerbound=1304556.393639, norm of subgrad 1142.711859 dualbound = 3740321.393639, lowerbound=1304556.393639, norm of subgrad 35.748550 stepsize= 1.000000 +dualbound = 3740408.276971, lowerbound=1309199.276971, norm of subgrad 1144.686104 dualbound = 3740408.276971, lowerbound=1309199.276971, norm of subgrad 34.552617 stepsize= 1.000000 +dualbound = 3740459.589682, lowerbound=1307523.589682, norm of subgrad 1143.987583 dualbound = 3740459.589682, lowerbound=1307523.589682, norm of subgrad 35.147016 stepsize= 1.000000 +dualbound = 3740503.593991, lowerbound=1305018.593991, norm of subgrad 1142.900518 dualbound = 3740503.593991, lowerbound=1305018.593991, norm of subgrad 35.312948 stepsize= 1.000000 +dualbound = 3740586.214866, lowerbound=1304570.214866, norm of subgrad 1142.710031 dualbound = 3740586.214866, lowerbound=1304570.214866, norm of subgrad 36.036383 stepsize= 1.000000 +dualbound = 3740612.237357, lowerbound=1305514.237357, norm of subgrad 1143.169383 dualbound = 3740612.237357, lowerbound=1305514.237357, norm of subgrad 36.715426 stepsize= 1.000000 +dualbound = 3740678.985071, lowerbound=1308830.985071, norm of subgrad 1144.582450 dualbound = 3740678.985071, lowerbound=1308830.985071, norm of subgrad 36.121292 stepsize= 1.000000 +dualbound = 3740751.962777, lowerbound=1305728.962777, norm of subgrad 1143.203815 dualbound = 3740751.962777, lowerbound=1305728.962777, norm of subgrad 35.482076 stepsize= 1.000000 +dualbound = 3740842.605630, lowerbound=1298592.605630, norm of subgrad 1140.073509 dualbound = 3740842.605630, lowerbound=1298592.605630, norm of subgrad 35.575875 stepsize= 1.000000 +dualbound = 3740903.571102, lowerbound=1303558.571102, norm of subgrad 1142.259853 dualbound = 3740903.571102, lowerbound=1303558.571102, norm of subgrad 35.495992 stepsize= 1.000000 +dualbound = 3740941.495172, lowerbound=1309187.495172, norm of subgrad 1144.713718 dualbound = 3740941.495172, lowerbound=1309187.495172, norm of subgrad 34.927411 stepsize= 1.000000 +dualbound = 3741010.936546, lowerbound=1308345.936546, norm of subgrad 1144.334714 dualbound = 3741010.936546, lowerbound=1308345.936546, norm of subgrad 35.006305 stepsize= 1.000000 +dualbound = 3741095.157953, lowerbound=1303710.157953, norm of subgrad 1142.282434 dualbound = 3741095.157953, lowerbound=1303710.157953, norm of subgrad 34.397986 stepsize= 1.000000 +dualbound = 3741147.656694, lowerbound=1309006.656694, norm of subgrad 1144.621622 dualbound = 3741147.656694, lowerbound=1309006.656694, norm of subgrad 34.705889 stepsize= 1.000000 +dualbound = 3741201.862693, lowerbound=1302120.862693, norm of subgrad 1141.611082 dualbound = 3741201.862693, lowerbound=1302120.862693, norm of subgrad 34.773639 stepsize= 1.000000 +dualbound = 3741251.792654, lowerbound=1307589.792654, norm of subgrad 1144.016518 dualbound = 3741251.792654, lowerbound=1307589.792654, norm of subgrad 35.127339 stepsize= 1.000000 +dualbound = 3741332.620094, lowerbound=1304044.620094, norm of subgrad 1142.447644 dualbound = 3741332.620094, lowerbound=1304044.620094, norm of subgrad 34.968950 stepsize= 1.000000 +dualbound = 3741381.085045, lowerbound=1305737.085045, norm of subgrad 1143.199495 dualbound = 3741381.085045, lowerbound=1305737.085045, norm of subgrad 34.877858 stepsize= 1.000000 +dualbound = 3741443.529558, lowerbound=1307388.529558, norm of subgrad 1143.927677 dualbound = 3741443.529558, lowerbound=1307388.529558, norm of subgrad 35.276685 stepsize= 1.000000 +dualbound = 3741513.479618, lowerbound=1305353.479618, norm of subgrad 1143.040454 dualbound = 3741513.479618, lowerbound=1305353.479618, norm of subgrad 35.467592 stepsize= 1.000000 +dualbound = 3741547.480980, lowerbound=1307176.480980, norm of subgrad 1143.852473 dualbound = 3741547.480980, lowerbound=1307176.480980, norm of subgrad 35.440110 stepsize= 1.000000 +dualbound = 3741617.020155, lowerbound=1306571.020155, norm of subgrad 1143.583849 dualbound = 3741617.020155, lowerbound=1306571.020155, norm of subgrad 35.812556 stepsize= 1.000000 +dualbound = 3741660.593655, lowerbound=1299610.593655, norm of subgrad 1140.519440 dualbound = 3741660.593655, lowerbound=1299610.593655, norm of subgrad 34.893746 stepsize= 1.000000 +dualbound = 3741746.215121, lowerbound=1301924.215121, norm of subgrad 1141.542034 dualbound = 3741746.215121, lowerbound=1301924.215121, norm of subgrad 35.771797 stepsize= 1.000000 +dualbound = 3741787.997886, lowerbound=1304308.997886, norm of subgrad 1142.587414 dualbound = 3741787.997886, lowerbound=1304308.997886, norm of subgrad 35.196346 stepsize= 1.000000 +dualbound = 3741832.668962, lowerbound=1309523.668962, norm of subgrad 1144.874958 dualbound = 3741832.668962, lowerbound=1309523.668962, norm of subgrad 35.491845 stepsize= 1.000000 +dualbound = 3741921.478520, lowerbound=1307873.478520, norm of subgrad 1144.152734 dualbound = 3741921.478520, lowerbound=1307873.478520, norm of subgrad 36.066738 stepsize= 1.000000 +dualbound = 3741959.329207, lowerbound=1304916.329207, norm of subgrad 1142.847028 dualbound = 3741959.329207, lowerbound=1304916.329207, norm of subgrad 34.940674 stepsize= 1.000000 +dualbound = 3742028.724467, lowerbound=1306603.724467, norm of subgrad 1143.561421 dualbound = 3742028.724467, lowerbound=1306603.724467, norm of subgrad 34.617846 stepsize= 1.000000 +dualbound = 3742115.483759, lowerbound=1306094.483759, norm of subgrad 1143.362796 dualbound = 3742115.483759, lowerbound=1306094.483759, norm of subgrad 35.647711 stepsize= 1.000000 +dualbound = 3742148.072156, lowerbound=1306577.072156, norm of subgrad 1143.559387 dualbound = 3742148.072156, lowerbound=1306577.072156, norm of subgrad 34.403320 stepsize= 1.000000 +dualbound = 3742195.986924, lowerbound=1305040.986924, norm of subgrad 1142.931313 dualbound = 3742195.986924, lowerbound=1305040.986924, norm of subgrad 36.040460 stepsize= 1.000000 +dualbound = 3742242.106479, lowerbound=1306716.106479, norm of subgrad 1143.629794 dualbound = 3742242.106479, lowerbound=1306716.106479, norm of subgrad 34.915893 stepsize= 1.000000 +dualbound = 3742325.144725, lowerbound=1307767.144725, norm of subgrad 1144.076984 dualbound = 3742325.144725, lowerbound=1307767.144725, norm of subgrad 35.043377 stepsize= 1.000000 +dualbound = 3742375.046730, lowerbound=1308263.046730, norm of subgrad 1144.319469 dualbound = 3742375.046730, lowerbound=1308263.046730, norm of subgrad 35.410479 stepsize= 1.000000 +dualbound = 3742445.948417, lowerbound=1303474.948417, norm of subgrad 1142.229814 dualbound = 3742445.948417, lowerbound=1303474.948417, norm of subgrad 35.845525 stepsize= 1.000000 +dualbound = 3742495.340821, lowerbound=1306377.340821, norm of subgrad 1143.497416 dualbound = 3742495.340821, lowerbound=1306377.340821, norm of subgrad 35.473827 stepsize= 1.000000 +dualbound = 3742577.154316, lowerbound=1303488.154316, norm of subgrad 1142.212395 dualbound = 3742577.154316, lowerbound=1303488.154316, norm of subgrad 35.253560 stepsize= 1.000000 +dualbound = 3742605.432042, lowerbound=1306598.432042, norm of subgrad 1143.599769 dualbound = 3742605.432042, lowerbound=1306598.432042, norm of subgrad 35.359266 stepsize= 1.000000 +dualbound = 3742695.628024, lowerbound=1304226.628024, norm of subgrad 1142.547429 dualbound = 3742695.628024, lowerbound=1304226.628024, norm of subgrad 35.751867 stepsize= 1.000000 +dualbound = 3742745.423314, lowerbound=1301769.423314, norm of subgrad 1141.492630 dualbound = 3742745.423314, lowerbound=1301769.423314, norm of subgrad 35.857988 stepsize= 1.000000 +dualbound = 3742810.391593, lowerbound=1305887.391593, norm of subgrad 1143.276166 dualbound = 3742810.391593, lowerbound=1305887.391593, norm of subgrad 35.467849 stepsize= 1.000000 +dualbound = 3742878.966683, lowerbound=1304668.966683, norm of subgrad 1142.723049 dualbound = 3742878.966683, lowerbound=1304668.966683, norm of subgrad 34.865098 stepsize= 1.000000 +dualbound = 3742936.673587, lowerbound=1304186.673587, norm of subgrad 1142.529069 dualbound = 3742936.673587, lowerbound=1304186.673587, norm of subgrad 35.266229 stepsize= 1.000000 +dualbound = 3742989.909847, lowerbound=1309884.909847, norm of subgrad 1144.998651 dualbound = 3742989.909847, lowerbound=1309884.909847, norm of subgrad 34.499801 stepsize= 1.000000 +dualbound = 3743066.368245, lowerbound=1306378.368245, norm of subgrad 1143.476002 dualbound = 3743066.368245, lowerbound=1306378.368245, norm of subgrad 35.149088 stepsize= 1.000000 +dualbound = 3743111.779990, lowerbound=1307152.779990, norm of subgrad 1143.850419 dualbound = 3743111.779990, lowerbound=1307152.779990, norm of subgrad 35.866583 stepsize= 1.000000 +dualbound = 3743160.661682, lowerbound=1308342.661682, norm of subgrad 1144.388335 dualbound = 3743160.661682, lowerbound=1308342.661682, norm of subgrad 36.481251 stepsize= 1.000000 +dualbound = 3743204.789922, lowerbound=1305607.789922, norm of subgrad 1143.188869 dualbound = 3743204.789922, lowerbound=1305607.789922, norm of subgrad 36.292261 stepsize= 1.000000 +dualbound = 3743273.779466, lowerbound=1302614.779466, norm of subgrad 1141.862417 dualbound = 3743273.779466, lowerbound=1302614.779466, norm of subgrad 36.110795 stepsize= 1.000000 +dualbound = 3743332.577294, lowerbound=1306938.577294, norm of subgrad 1143.740608 dualbound = 3743332.577294, lowerbound=1306938.577294, norm of subgrad 35.535867 stepsize= 1.000000 +dualbound = 3743404.406736, lowerbound=1307833.406736, norm of subgrad 1144.119053 dualbound = 3743404.406736, lowerbound=1307833.406736, norm of subgrad 35.310472 stepsize= 1.000000 +dualbound = 3743474.509553, lowerbound=1298010.509553, norm of subgrad 1139.812927 dualbound = 3743474.509553, lowerbound=1298010.509553, norm of subgrad 35.115564 stepsize= 1.000000 +dualbound = 3743512.030024, lowerbound=1315607.030024, norm of subgrad 1147.501647 dualbound = 3743512.030024, lowerbound=1315607.030024, norm of subgrad 34.503920 stepsize= 1.000000 +dualbound = 3743600.861371, lowerbound=1305490.861371, norm of subgrad 1143.094424 dualbound = 3743600.861371, lowerbound=1305490.861371, norm of subgrad 35.536338 stepsize= 1.000000 +dualbound = 3743626.036424, lowerbound=1309328.036424, norm of subgrad 1144.803492 dualbound = 3743626.036424, lowerbound=1309328.036424, norm of subgrad 35.667563 stepsize= 1.000000 +dualbound = 3743697.435470, lowerbound=1304647.435470, norm of subgrad 1142.744694 dualbound = 3743697.435470, lowerbound=1304647.435470, norm of subgrad 35.908203 stepsize= 1.000000 +dualbound = 3743758.600346, lowerbound=1306813.600346, norm of subgrad 1143.656679 dualbound = 3743758.600346, lowerbound=1306813.600346, norm of subgrad 34.614518 stepsize= 1.000000 +dualbound = 3743830.644246, lowerbound=1308764.644246, norm of subgrad 1144.556090 dualbound = 3743830.644246, lowerbound=1308764.644246, norm of subgrad 36.277319 stepsize= 1.000000 +dualbound = 3743863.649534, lowerbound=1304121.649534, norm of subgrad 1142.521181 dualbound = 3743863.649534, lowerbound=1304121.649534, norm of subgrad 35.580968 stepsize= 1.000000 +dualbound = 3743930.274304, lowerbound=1305020.274304, norm of subgrad 1142.916565 dualbound = 3743930.274304, lowerbound=1305020.274304, norm of subgrad 36.119590 stepsize= 1.000000 +dualbound = 3744000.331274, lowerbound=1306438.331274, norm of subgrad 1143.528457 dualbound = 3744000.331274, lowerbound=1306438.331274, norm of subgrad 35.903440 stepsize= 1.000000 +dualbound = 3744066.429826, lowerbound=1308430.429826, norm of subgrad 1144.362019 dualbound = 3744066.429826, lowerbound=1308430.429826, norm of subgrad 34.642439 stepsize= 1.000000 +dualbound = 3744143.954193, lowerbound=1307505.954193, norm of subgrad 1143.993424 dualbound = 3744143.954193, lowerbound=1307505.954193, norm of subgrad 35.951695 stepsize= 1.000000 +dualbound = 3744174.368211, lowerbound=1296785.368211, norm of subgrad 1139.303896 dualbound = 3744174.368211, lowerbound=1296785.368211, norm of subgrad 35.474132 stepsize= 1.000000 +dualbound = 3744243.164714, lowerbound=1305932.164714, norm of subgrad 1143.304493 dualbound = 3744243.164714, lowerbound=1305932.164714, norm of subgrad 35.802186 stepsize= 1.000000 +dualbound = 3744323.036484, lowerbound=1298682.036484, norm of subgrad 1140.110976 dualbound = 3744323.036484, lowerbound=1298682.036484, norm of subgrad 35.367666 stepsize= 1.000000 +dualbound = 3744375.394030, lowerbound=1308959.394030, norm of subgrad 1144.622381 dualbound = 3744375.394030, lowerbound=1308959.394030, norm of subgrad 35.402790 stepsize= 1.000000 +dualbound = 3744424.109866, lowerbound=1302238.109866, norm of subgrad 1141.691775 dualbound = 3744424.109866, lowerbound=1302238.109866, norm of subgrad 35.647101 stepsize= 1.000000 +dualbound = 3744490.033868, lowerbound=1307623.033868, norm of subgrad 1144.045468 dualbound = 3744490.033868, lowerbound=1307623.033868, norm of subgrad 35.817928 stepsize= 1.000000 +dualbound = 3744556.019452, lowerbound=1298461.019452, norm of subgrad 1140.018868 dualbound = 3744556.019452, lowerbound=1298461.019452, norm of subgrad 35.326839 stepsize= 1.000000 +dualbound = 3744620.613962, lowerbound=1307380.613962, norm of subgrad 1143.959621 dualbound = 3744620.613962, lowerbound=1307380.613962, norm of subgrad 36.436170 stepsize= 1.000000 +dualbound = 3744643.302566, lowerbound=1304578.302566, norm of subgrad 1142.716195 dualbound = 3744643.302566, lowerbound=1304578.302566, norm of subgrad 35.280145 stepsize= 1.000000 +dualbound = 3744744.961734, lowerbound=1310308.961734, norm of subgrad 1145.244062 dualbound = 3744744.961734, lowerbound=1310308.961734, norm of subgrad 37.103358 stepsize= 1.000000 +dualbound = 3744764.094100, lowerbound=1311163.094100, norm of subgrad 1145.600757 dualbound = 3744764.094100, lowerbound=1311163.094100, norm of subgrad 35.456062 stepsize= 1.000000 +dualbound = 3744873.467021, lowerbound=1303406.467021, norm of subgrad 1142.170069 dualbound = 3744873.467021, lowerbound=1303406.467021, norm of subgrad 35.431242 stepsize= 1.000000 +dualbound = 3744905.099245, lowerbound=1305592.099245, norm of subgrad 1143.164511 dualbound = 3744905.099245, lowerbound=1305592.099245, norm of subgrad 35.561668 stepsize= 1.000000 +dualbound = 3744978.729886, lowerbound=1303942.729886, norm of subgrad 1142.420120 dualbound = 3744978.729886, lowerbound=1303942.729886, norm of subgrad 35.420766 stepsize= 1.000000 +dualbound = 3745030.750275, lowerbound=1303500.750275, norm of subgrad 1142.262120 dualbound = 3745030.750275, lowerbound=1303500.750275, norm of subgrad 36.249419 stepsize= 1.000000 +dualbound = 3745072.847844, lowerbound=1310555.847844, norm of subgrad 1145.311245 dualbound = 3745072.847844, lowerbound=1310555.847844, norm of subgrad 34.987106 stepsize= 1.000000 +dualbound = 3745164.161732, lowerbound=1307580.161732, norm of subgrad 1144.016679 dualbound = 3745164.161732, lowerbound=1307580.161732, norm of subgrad 35.851275 stepsize= 1.000000 +dualbound = 3745221.098378, lowerbound=1304116.098378, norm of subgrad 1142.495120 dualbound = 3745221.098378, lowerbound=1304116.098378, norm of subgrad 35.155891 stepsize= 1.000000 +dualbound = 3745254.902199, lowerbound=1301585.902199, norm of subgrad 1141.400851 dualbound = 3745254.902199, lowerbound=1301585.902199, norm of subgrad 35.267603 stepsize= 1.000000 +dualbound = 3745339.437455, lowerbound=1310230.437455, norm of subgrad 1145.166554 dualbound = 3745339.437455, lowerbound=1310230.437455, norm of subgrad 35.504017 stepsize= 1.000000 +dualbound = 3745404.714949, lowerbound=1303499.714949, norm of subgrad 1142.204323 dualbound = 3745404.714949, lowerbound=1303499.714949, norm of subgrad 34.587245 stepsize= 1.000000 +dualbound = 3745462.680219, lowerbound=1305213.680219, norm of subgrad 1142.970113 dualbound = 3745462.680219, lowerbound=1305213.680219, norm of subgrad 34.999504 stepsize= 1.000000 +dualbound = 3745519.201933, lowerbound=1303927.201933, norm of subgrad 1142.407196 dualbound = 3745519.201933, lowerbound=1303927.201933, norm of subgrad 34.978875 stepsize= 1.000000 +dualbound = 3745584.154765, lowerbound=1305103.154765, norm of subgrad 1142.912138 dualbound = 3745584.154765, lowerbound=1305103.154765, norm of subgrad 34.784376 stepsize= 1.000000 +dualbound = 3745636.557275, lowerbound=1297653.557275, norm of subgrad 1139.674321 dualbound = 3745636.557275, lowerbound=1297653.557275, norm of subgrad 35.445769 stepsize= 1.000000 +dualbound = 3745686.080062, lowerbound=1311402.080062, norm of subgrad 1145.686292 dualbound = 3745686.080062, lowerbound=1311402.080062, norm of subgrad 35.277795 stepsize= 1.000000 +dualbound = 3745758.866100, lowerbound=1300249.866100, norm of subgrad 1140.797469 dualbound = 3745758.866100, lowerbound=1300249.866100, norm of subgrad 35.238985 stepsize= 1.000000 +dualbound = 3745828.006138, lowerbound=1307612.006138, norm of subgrad 1144.024041 dualbound = 3745828.006138, lowerbound=1307612.006138, norm of subgrad 35.329025 stepsize= 1.000000 +dualbound = 3745867.520370, lowerbound=1302923.520370, norm of subgrad 1142.031313 dualbound = 3745867.520370, lowerbound=1302923.520370, norm of subgrad 36.762946 stepsize= 1.000000 +dualbound = 3745918.538691, lowerbound=1307540.538691, norm of subgrad 1144.005917 dualbound = 3745918.538691, lowerbound=1307540.538691, norm of subgrad 35.496737 stepsize= 1.000000 +dualbound = 3746005.352676, lowerbound=1301234.352676, norm of subgrad 1141.237641 dualbound = 3746005.352676, lowerbound=1301234.352676, norm of subgrad 35.718538 stepsize= 1.000000 +dualbound = 3746059.621982, lowerbound=1314466.621982, norm of subgrad 1147.012477 dualbound = 3746059.621982, lowerbound=1314466.621982, norm of subgrad 35.003847 stepsize= 1.000000 +dualbound = 3746127.709084, lowerbound=1301834.709084, norm of subgrad 1141.529548 dualbound = 3746127.709084, lowerbound=1301834.709084, norm of subgrad 36.374264 stepsize= 1.000000 +dualbound = 3746171.252153, lowerbound=1306984.252153, norm of subgrad 1143.792486 dualbound = 3746171.252153, lowerbound=1306984.252153, norm of subgrad 36.339277 stepsize= 1.000000 +dualbound = 3746221.018518, lowerbound=1304522.018518, norm of subgrad 1142.684567 dualbound = 3746221.018518, lowerbound=1304522.018518, norm of subgrad 35.436794 stepsize= 1.000000 +dualbound = 3746291.115563, lowerbound=1298621.115563, norm of subgrad 1140.128552 dualbound = 3746291.115563, lowerbound=1298621.115563, norm of subgrad 36.634643 stepsize= 1.000000 +dualbound = 3746315.677502, lowerbound=1306985.677502, norm of subgrad 1143.752455 dualbound = 3746315.677502, lowerbound=1306985.677502, norm of subgrad 34.764377 stepsize= 1.000000 +dualbound = 3746427.609989, lowerbound=1307699.609989, norm of subgrad 1144.042661 dualbound = 3746427.609989, lowerbound=1307699.609989, norm of subgrad 35.297769 stepsize= 1.000000 +dualbound = 3746486.964866, lowerbound=1304337.964866, norm of subgrad 1142.623282 dualbound = 3746486.964866, lowerbound=1304337.964866, norm of subgrad 36.185009 stepsize= 1.000000 +dualbound = 3746512.717541, lowerbound=1303683.717541, norm of subgrad 1142.318571 dualbound = 3746512.717541, lowerbound=1303683.717541, norm of subgrad 35.124816 stepsize= 1.000000 +dualbound = 3746602.998452, lowerbound=1313545.998452, norm of subgrad 1146.638129 dualbound = 3746602.998452, lowerbound=1313545.998452, norm of subgrad 36.376928 stepsize= 1.000000 +dualbound = 3746652.772123, lowerbound=1306428.772123, norm of subgrad 1143.522528 dualbound = 3746652.772123, lowerbound=1306428.772123, norm of subgrad 35.563657 stepsize= 1.000000 +dualbound = 3746721.421097, lowerbound=1307833.421097, norm of subgrad 1144.152272 dualbound = 3746721.421097, lowerbound=1307833.421097, norm of subgrad 36.326973 stepsize= 1.000000 +dualbound = 3746778.096654, lowerbound=1303669.096654, norm of subgrad 1142.302542 dualbound = 3746778.096654, lowerbound=1303669.096654, norm of subgrad 35.251604 stepsize= 1.000000 +dualbound = 3746842.206107, lowerbound=1307240.206107, norm of subgrad 1143.863281 dualbound = 3746842.206107, lowerbound=1307240.206107, norm of subgrad 35.314437 stepsize= 1.000000 +dualbound = 3746894.098659, lowerbound=1302964.098659, norm of subgrad 1142.000481 dualbound = 3746894.098659, lowerbound=1302964.098659, norm of subgrad 35.396222 stepsize= 1.000000 +dualbound = 3746960.473181, lowerbound=1305882.473181, norm of subgrad 1143.272266 dualbound = 3746960.473181, lowerbound=1305882.473181, norm of subgrad 35.431265 stepsize= 1.000000 +dualbound = 3747031.636478, lowerbound=1307072.636478, norm of subgrad 1143.800086 dualbound = 3747031.636478, lowerbound=1307072.636478, norm of subgrad 35.737422 stepsize= 1.000000 +dualbound = 3747071.631087, lowerbound=1303277.631087, norm of subgrad 1142.149566 dualbound = 3747071.631087, lowerbound=1303277.631087, norm of subgrad 35.608912 stepsize= 1.000000 +dualbound = 3747150.952204, lowerbound=1305888.952204, norm of subgrad 1143.284283 dualbound = 3747150.952204, lowerbound=1305888.952204, norm of subgrad 35.907118 stepsize= 1.000000 +dualbound = 3747202.638135, lowerbound=1305015.638135, norm of subgrad 1142.897475 dualbound = 3747202.638135, lowerbound=1305015.638135, norm of subgrad 35.365038 stepsize= 1.000000 +dualbound = 3747252.967029, lowerbound=1304560.967029, norm of subgrad 1142.714298 dualbound = 3747252.967029, lowerbound=1304560.967029, norm of subgrad 35.851484 stepsize= 1.000000 +dualbound = 3747327.429368, lowerbound=1302616.429368, norm of subgrad 1141.820226 dualbound = 3747327.429368, lowerbound=1302616.429368, norm of subgrad 34.806068 stepsize= 1.000000 +dualbound = 3747406.358835, lowerbound=1306106.358835, norm of subgrad 1143.351372 dualbound = 3747406.358835, lowerbound=1306106.358835, norm of subgrad 34.998992 stepsize= 1.000000 +dualbound = 3747444.138937, lowerbound=1304886.138937, norm of subgrad 1142.840382 dualbound = 3747444.138937, lowerbound=1304886.138937, norm of subgrad 35.153664 stepsize= 1.000000 +dualbound = 3747501.277544, lowerbound=1305404.277544, norm of subgrad 1143.067486 dualbound = 3747501.277544, lowerbound=1305404.277544, norm of subgrad 35.442046 stepsize= 1.000000 +dualbound = 3747551.468671, lowerbound=1296240.468672, norm of subgrad 1139.078342 dualbound = 3747551.468671, lowerbound=1296240.468672, norm of subgrad 36.182746 stepsize= 1.000000 +dualbound = 3747601.370311, lowerbound=1313728.370311, norm of subgrad 1146.719395 dualbound = 3747601.370311, lowerbound=1313728.370311, norm of subgrad 35.873411 stepsize= 1.000000 +dualbound = 3747674.075914, lowerbound=1304087.075914, norm of subgrad 1142.497298 dualbound = 3747674.075914, lowerbound=1304087.075914, norm of subgrad 35.856737 stepsize= 1.000000 +dualbound = 3747734.468018, lowerbound=1310263.468018, norm of subgrad 1145.195384 dualbound = 3747734.468018, lowerbound=1310263.468018, norm of subgrad 35.628529 stepsize= 1.000000 +dualbound = 3747800.497722, lowerbound=1306854.497722, norm of subgrad 1143.695544 dualbound = 3747800.497722, lowerbound=1306854.497722, norm of subgrad 35.369898 stepsize= 1.000000 +dualbound = 3747851.407620, lowerbound=1301335.407620, norm of subgrad 1141.306448 dualbound = 3747851.407620, lowerbound=1301335.407620, norm of subgrad 35.998749 stepsize= 1.000000 +dualbound = 3747924.637520, lowerbound=1299562.637520, norm of subgrad 1140.513760 dualbound = 3747924.637520, lowerbound=1299562.637520, norm of subgrad 35.808238 stepsize= 1.000000 +dualbound = 3747969.007970, lowerbound=1302740.007970, norm of subgrad 1141.910683 dualbound = 3747969.007970, lowerbound=1302740.007970, norm of subgrad 35.557987 stepsize= 1.000000 +dualbound = 3748033.403650, lowerbound=1305393.403650, norm of subgrad 1143.064479 dualbound = 3748033.403650, lowerbound=1305393.403650, norm of subgrad 35.600501 stepsize= 1.000000 +dualbound = 3748109.957736, lowerbound=1308005.957736, norm of subgrad 1144.186155 dualbound = 3748109.957736, lowerbound=1308005.957736, norm of subgrad 35.107750 stepsize= 1.000000 +dualbound = 3748167.426272, lowerbound=1306407.426272, norm of subgrad 1143.492206 dualbound = 3748167.426272, lowerbound=1306407.426272, norm of subgrad 34.992407 stepsize= 1.000000 +dualbound = 3748227.571209, lowerbound=1311804.571209, norm of subgrad 1145.889860 dualbound = 3748227.571209, lowerbound=1311804.571209, norm of subgrad 36.320035 stepsize= 1.000000 +dualbound = 3748246.577148, lowerbound=1303559.577148, norm of subgrad 1142.265984 dualbound = 3748246.577148, lowerbound=1303559.577148, norm of subgrad 35.085694 stepsize= 1.000000 +dualbound = 3748343.339066, lowerbound=1308101.339066, norm of subgrad 1144.252306 dualbound = 3748343.339066, lowerbound=1308101.339066, norm of subgrad 36.176815 stepsize= 1.000000 +dualbound = 3748412.715554, lowerbound=1306688.715554, norm of subgrad 1143.632247 dualbound = 3748412.715554, lowerbound=1306688.715554, norm of subgrad 35.712414 stepsize= 1.000000 +dualbound = 3748448.785403, lowerbound=1303434.785403, norm of subgrad 1142.200414 dualbound = 3748448.785403, lowerbound=1303434.785403, norm of subgrad 34.972416 stepsize= 1.000000 +dualbound = 3748541.602820, lowerbound=1305470.602820, norm of subgrad 1143.084250 dualbound = 3748541.602820, lowerbound=1305470.602820, norm of subgrad 35.550210 stepsize= 1.000000 +dualbound = 3748595.149740, lowerbound=1314510.149740, norm of subgrad 1147.032323 dualbound = 3748595.149740, lowerbound=1314510.149740, norm of subgrad 35.022092 stepsize= 1.000000 +dualbound = 3748669.618784, lowerbound=1300541.618784, norm of subgrad 1140.867047 dualbound = 3748669.618784, lowerbound=1300541.618784, norm of subgrad 33.323701 stepsize= 1.000000 +dualbound = 3748734.887593, lowerbound=1305914.887593, norm of subgrad 1143.268511 dualbound = 3748734.887593, lowerbound=1305914.887593, norm of subgrad 34.832008 stepsize= 1.000000 +dualbound = 3748785.146211, lowerbound=1308009.146211, norm of subgrad 1144.205028 dualbound = 3748785.146211, lowerbound=1308009.146211, norm of subgrad 35.302388 stepsize= 1.000000 +dualbound = 3748808.176648, lowerbound=1303952.176648, norm of subgrad 1142.429069 dualbound = 3748808.176648, lowerbound=1303952.176648, norm of subgrad 34.857287 stepsize= 1.000000 +dualbound = 3748898.324770, lowerbound=1310297.324770, norm of subgrad 1145.188336 dualbound = 3748898.324770, lowerbound=1310297.324770, norm of subgrad 35.343290 stepsize= 1.000000 +dualbound = 3748957.415375, lowerbound=1306646.415375, norm of subgrad 1143.609818 dualbound = 3748957.415375, lowerbound=1306646.415375, norm of subgrad 35.441369 stepsize= 1.000000 +dualbound = 3748987.656001, lowerbound=1308332.656001, norm of subgrad 1144.352068 dualbound = 3748987.656001, lowerbound=1308332.656001, norm of subgrad 35.202850 stepsize= 1.000000 +dualbound = 3749079.155845, lowerbound=1304094.155845, norm of subgrad 1142.474138 dualbound = 3749079.155845, lowerbound=1304094.155845, norm of subgrad 35.277469 stepsize= 1.000000 +dualbound = 3749111.285996, lowerbound=1306300.285996, norm of subgrad 1143.482088 dualbound = 3749111.285996, lowerbound=1306300.285996, norm of subgrad 35.820806 stepsize= 1.000000 +dualbound = 3749160.466796, lowerbound=1308384.466796, norm of subgrad 1144.372958 dualbound = 3749160.466796, lowerbound=1308384.466796, norm of subgrad 35.414415 stepsize= 1.000000 +dualbound = 3749250.398139, lowerbound=1303090.398139, norm of subgrad 1142.029508 dualbound = 3749250.398139, lowerbound=1303090.398139, norm of subgrad 35.084631 stepsize= 1.000000 +dualbound = 3749309.690274, lowerbound=1314340.690274, norm of subgrad 1146.973274 dualbound = 3749309.690274, lowerbound=1314340.690274, norm of subgrad 35.584999 stepsize= 1.000000 +dualbound = 3749365.299813, lowerbound=1302285.299813, norm of subgrad 1141.715069 dualbound = 3749365.299813, lowerbound=1302285.299813, norm of subgrad 35.827497 stepsize= 1.000000 +dualbound = 3749422.837642, lowerbound=1307567.837642, norm of subgrad 1144.027901 dualbound = 3749422.837642, lowerbound=1307567.837642, norm of subgrad 35.910135 stepsize= 1.000000 +dualbound = 3749474.388979, lowerbound=1306244.388979, norm of subgrad 1143.431410 dualbound = 3749474.388979, lowerbound=1306244.388979, norm of subgrad 35.249842 stepsize= 1.000000 +dualbound = 3749568.149712, lowerbound=1308314.149712, norm of subgrad 1144.320825 dualbound = 3749568.149712, lowerbound=1308314.149712, norm of subgrad 35.351955 stepsize= 1.000000 +dualbound = 3749593.540709, lowerbound=1306498.540709, norm of subgrad 1143.576644 dualbound = 3749593.540709, lowerbound=1306498.540709, norm of subgrad 35.977646 stepsize= 1.000000 +dualbound = 3749670.455719, lowerbound=1306676.455719, norm of subgrad 1143.598468 dualbound = 3749670.455719, lowerbound=1306676.455719, norm of subgrad 34.898639 stepsize= 1.000000 +dualbound = 3749736.579348, lowerbound=1306221.579348, norm of subgrad 1143.408317 dualbound = 3749736.579348, lowerbound=1306221.579348, norm of subgrad 35.030324 stepsize= 1.000000 +dualbound = 3749790.406309, lowerbound=1302500.406309, norm of subgrad 1141.760223 dualbound = 3749790.406309, lowerbound=1302500.406309, norm of subgrad 34.202733 stepsize= 1.000000 +dualbound = 3749861.459853, lowerbound=1310601.459853, norm of subgrad 1145.308020 dualbound = 3749861.459853, lowerbound=1310601.459853, norm of subgrad 34.641789 stepsize= 1.000000 +dualbound = 3749907.536095, lowerbound=1309424.536095, norm of subgrad 1144.802837 dualbound = 3749907.536095, lowerbound=1309424.536095, norm of subgrad 34.569875 stepsize= 1.000000 +dualbound = 3749989.568372, lowerbound=1306036.568372, norm of subgrad 1143.302046 dualbound = 3749989.568372, lowerbound=1306036.568372, norm of subgrad 34.424298 stepsize= 1.000000 +dualbound = 3750027.019495, lowerbound=1308967.019495, norm of subgrad 1144.620470 dualbound = 3750027.019495, lowerbound=1308967.019495, norm of subgrad 35.020724 stepsize= 1.000000 +dualbound = 3750072.375697, lowerbound=1298548.375697, norm of subgrad 1140.066829 dualbound = 3750072.375697, lowerbound=1298548.375697, norm of subgrad 35.346233 stepsize= 1.000000 +dualbound = 3750134.391931, lowerbound=1303964.391931, norm of subgrad 1142.436603 dualbound = 3750134.391931, lowerbound=1303964.391931, norm of subgrad 35.482619 stepsize= 1.000000 +dualbound = 3750219.966840, lowerbound=1306243.966840, norm of subgrad 1143.450903 dualbound = 3750219.966840, lowerbound=1306243.966840, norm of subgrad 36.353472 stepsize= 1.000000 +dualbound = 3750248.280820, lowerbound=1308902.280820, norm of subgrad 1144.606168 dualbound = 3750248.280820, lowerbound=1308902.280820, norm of subgrad 35.345636 stepsize= 1.000000 +dualbound = 3750329.886989, lowerbound=1299496.886989, norm of subgrad 1140.466960 dualbound = 3750329.886989, lowerbound=1299496.886989, norm of subgrad 35.349769 stepsize= 1.000000 +dualbound = 3750394.005836, lowerbound=1308014.005836, norm of subgrad 1144.224194 dualbound = 3750394.005836, lowerbound=1308014.005836, norm of subgrad 36.043291 stepsize= 1.000000 +dualbound = 3750444.391309, lowerbound=1303887.391309, norm of subgrad 1142.403340 dualbound = 3750444.391309, lowerbound=1303887.391309, norm of subgrad 35.332499 stepsize= 1.000000 +dualbound = 3750485.672719, lowerbound=1301518.672719, norm of subgrad 1141.392427 dualbound = 3750485.672719, lowerbound=1301518.672719, norm of subgrad 36.045546 stepsize= 1.000000 +dualbound = 3750572.111277, lowerbound=1310659.111277, norm of subgrad 1145.389502 dualbound = 3750572.111277, lowerbound=1310659.111277, norm of subgrad 36.666586 stepsize= 1.000000 +dualbound = 3750619.375034, lowerbound=1303667.375034, norm of subgrad 1142.290845 dualbound = 3750619.375034, lowerbound=1303667.375034, norm of subgrad 34.760089 stepsize= 1.000000 +dualbound = 3750701.482168, lowerbound=1304306.482168, norm of subgrad 1142.577561 dualbound = 3750701.482168, lowerbound=1304306.482168, norm of subgrad 35.483900 stepsize= 1.000000 +dualbound = 3750734.958567, lowerbound=1309443.958567, norm of subgrad 1144.833158 dualbound = 3750734.958567, lowerbound=1309443.958567, norm of subgrad 35.106643 stepsize= 1.000000 +dualbound = 3750810.523051, lowerbound=1305897.523051, norm of subgrad 1143.290218 dualbound = 3750810.523051, lowerbound=1305897.523051, norm of subgrad 35.924427 stepsize= 1.000000 +dualbound = 3750871.824404, lowerbound=1301034.824404, norm of subgrad 1141.154601 dualbound = 3750871.824404, lowerbound=1301034.824404, norm of subgrad 35.500723 stepsize= 1.000000 +dualbound = 3750928.869648, lowerbound=1310924.869648, norm of subgrad 1145.465787 dualbound = 3750928.869648, lowerbound=1310924.869648, norm of subgrad 34.986358 stepsize= 1.000000 +dualbound = 3750989.860969, lowerbound=1303365.860969, norm of subgrad 1142.193443 dualbound = 3750989.860969, lowerbound=1303365.860969, norm of subgrad 36.069257 stepsize= 1.000000 +dualbound = 3751047.568474, lowerbound=1304347.568474, norm of subgrad 1142.629235 dualbound = 3751047.568474, lowerbound=1304347.568474, norm of subgrad 36.217503 stepsize= 1.000000 +dualbound = 3751089.857543, lowerbound=1302754.857543, norm of subgrad 1141.923753 dualbound = 3751089.857543, lowerbound=1302754.857543, norm of subgrad 35.739181 stepsize= 1.000000 +dualbound = 3751156.707512, lowerbound=1311935.707512, norm of subgrad 1145.922208 dualbound = 3751156.707512, lowerbound=1311935.707512, norm of subgrad 35.620920 stepsize= 1.000000 +dualbound = 3751220.522692, lowerbound=1307410.522692, norm of subgrad 1143.925488 dualbound = 3751220.522692, lowerbound=1307410.522692, norm of subgrad 34.911534 stepsize= 1.000000 +dualbound = 3751287.667405, lowerbound=1309192.667405, norm of subgrad 1144.718161 dualbound = 3751287.667405, lowerbound=1309192.667405, norm of subgrad 35.413906 stepsize= 1.000000 +dualbound = 3751342.488654, lowerbound=1300721.488654, norm of subgrad 1141.015990 dualbound = 3751342.488654, lowerbound=1300721.488654, norm of subgrad 35.366951 stepsize= 1.000000 +dualbound = 3751401.860169, lowerbound=1308813.860169, norm of subgrad 1144.556622 dualbound = 3751401.860169, lowerbound=1308813.860169, norm of subgrad 35.431222 stepsize= 1.000000 +dualbound = 3751462.386468, lowerbound=1308749.386468, norm of subgrad 1144.528893 dualbound = 3751462.386468, lowerbound=1308749.386468, norm of subgrad 35.461617 stepsize= 1.000000 +dualbound = 3751524.403245, lowerbound=1307654.403245, norm of subgrad 1144.056119 dualbound = 3751524.403245, lowerbound=1307654.403245, norm of subgrad 35.665344 stepsize= 1.000000 +dualbound = 3751565.031004, lowerbound=1305149.031004, norm of subgrad 1142.988640 dualbound = 3751565.031004, lowerbound=1305149.031004, norm of subgrad 36.257796 stepsize= 1.000000 +dualbound = 3751616.978563, lowerbound=1304744.978563, norm of subgrad 1142.795248 dualbound = 3751616.978563, lowerbound=1304744.978563, norm of subgrad 35.887986 stepsize= 1.000000 +dualbound = 3751698.830033, lowerbound=1309596.830033, norm of subgrad 1144.901232 dualbound = 3751698.830033, lowerbound=1309596.830033, norm of subgrad 35.830873 stepsize= 1.000000 +dualbound = 3751771.173460, lowerbound=1299288.173460, norm of subgrad 1140.378522 dualbound = 3751771.173460, lowerbound=1299288.173460, norm of subgrad 35.317749 stepsize= 1.000000 +dualbound = 3751818.268831, lowerbound=1308910.268831, norm of subgrad 1144.615773 dualbound = 3751818.268831, lowerbound=1308910.268831, norm of subgrad 35.806359 stepsize= 1.000000 +dualbound = 3751879.934591, lowerbound=1306731.934591, norm of subgrad 1143.643272 dualbound = 3751879.934591, lowerbound=1306731.934591, norm of subgrad 35.350612 stepsize= 1.000000 +dualbound = 3751932.053227, lowerbound=1308869.053227, norm of subgrad 1144.590343 dualbound = 3751932.053227, lowerbound=1308869.053227, norm of subgrad 35.638724 stepsize= 1.000000 +dualbound = 3752012.421502, lowerbound=1304068.421502, norm of subgrad 1142.485633 dualbound = 3752012.421502, lowerbound=1304068.421502, norm of subgrad 35.852033 stepsize= 1.000000 +dualbound = 3752066.120447, lowerbound=1305729.120447, norm of subgrad 1143.201260 dualbound = 3752066.120447, lowerbound=1305729.120447, norm of subgrad 35.124051 stepsize= 1.000000 +dualbound = 3752124.204351, lowerbound=1304204.204351, norm of subgrad 1142.533678 dualbound = 3752124.204351, lowerbound=1304204.204351, norm of subgrad 35.172204 stepsize= 1.000000 +dualbound = 3752187.749308, lowerbound=1305171.749308, norm of subgrad 1142.976268 dualbound = 3752187.749308, lowerbound=1305171.749308, norm of subgrad 35.868440 stepsize= 1.000000 +dualbound = 3752223.104015, lowerbound=1308587.104015, norm of subgrad 1144.469792 dualbound = 3752223.104015, lowerbound=1308587.104015, norm of subgrad 35.487388 stepsize= 1.000000 +dualbound = 3752283.230358, lowerbound=1305360.230358, norm of subgrad 1143.093710 dualbound = 3752283.230358, lowerbound=1305360.230358, norm of subgrad 36.920541 stepsize= 1.000000 +dualbound = 3752338.186282, lowerbound=1304495.186282, norm of subgrad 1142.678514 dualbound = 3752338.186282, lowerbound=1304495.186282, norm of subgrad 35.692519 stepsize= 1.000000 +dualbound = 3752419.748822, lowerbound=1307327.748822, norm of subgrad 1143.883626 dualbound = 3752419.748822, lowerbound=1307327.748822, norm of subgrad 34.979459 stepsize= 1.000000 +dualbound = 3752486.494766, lowerbound=1308739.494766, norm of subgrad 1144.513213 dualbound = 3752486.494766, lowerbound=1308739.494766, norm of subgrad 35.181614 stepsize= 1.000000 +dualbound = 3752545.741703, lowerbound=1301776.741703, norm of subgrad 1141.498463 dualbound = 3752545.741703, lowerbound=1301776.741703, norm of subgrad 36.072801 stepsize= 1.000000 +dualbound = 3752586.758006, lowerbound=1306576.758006, norm of subgrad 1143.571492 dualbound = 3752586.758006, lowerbound=1306576.758006, norm of subgrad 34.928732 stepsize= 1.000000 +dualbound = 3752658.512085, lowerbound=1305361.512085, norm of subgrad 1143.041781 dualbound = 3752658.512085, lowerbound=1305361.512085, norm of subgrad 35.422508 stepsize= 1.000000 +dualbound = 3752700.085380, lowerbound=1306967.085380, norm of subgrad 1143.760502 dualbound = 3752700.085380, lowerbound=1306967.085380, norm of subgrad 35.532707 stepsize= 1.000000 +dualbound = 3752764.126946, lowerbound=1308898.126946, norm of subgrad 1144.596491 dualbound = 3752764.126946, lowerbound=1308898.126946, norm of subgrad 35.595527 stepsize= 1.000000 +dualbound = 3752823.560987, lowerbound=1302772.560987, norm of subgrad 1141.923623 dualbound = 3752823.560987, lowerbound=1302772.560987, norm of subgrad 35.727217 stepsize= 1.000000 +dualbound = 3752879.863852, lowerbound=1308011.863852, norm of subgrad 1144.212770 dualbound = 3752879.863852, lowerbound=1308011.863852, norm of subgrad 35.599198 stepsize= 1.000000 +dualbound = 3752950.839514, lowerbound=1307786.839514, norm of subgrad 1144.079910 dualbound = 3752950.839514, lowerbound=1307786.839514, norm of subgrad 34.683940 stepsize= 1.000000 +dualbound = 3753023.982426, lowerbound=1305535.982426, norm of subgrad 1143.094914 dualbound = 3753023.982426, lowerbound=1305535.982426, norm of subgrad 34.686351 stepsize= 1.000000 +dualbound = 3753090.377861, lowerbound=1306888.377861, norm of subgrad 1143.660517 dualbound = 3753090.377861, lowerbound=1306888.377861, norm of subgrad 33.725294 stepsize= 1.000000 +dualbound = 3753178.592446, lowerbound=1308303.592446, norm of subgrad 1144.314464 dualbound = 3753178.592446, lowerbound=1308303.592446, norm of subgrad 35.216680 stepsize= 1.000000 +dualbound = 3753189.999205, lowerbound=1303009.999205, norm of subgrad 1142.005254 dualbound = 3753189.999205, lowerbound=1303009.999205, norm of subgrad 34.313361 stepsize= 1.000000 +dualbound = 3753241.705530, lowerbound=1302087.705530, norm of subgrad 1141.628970 dualbound = 3753241.705530, lowerbound=1302087.705530, norm of subgrad 35.786957 stepsize= 1.000000 +dualbound = 3753304.634852, lowerbound=1307181.634852, norm of subgrad 1143.840738 dualbound = 3753304.634852, lowerbound=1307181.634852, norm of subgrad 35.396742 stepsize= 1.000000 +dualbound = 3753376.098299, lowerbound=1307479.098299, norm of subgrad 1143.961144 dualbound = 3753376.098299, lowerbound=1307479.098299, norm of subgrad 35.206014 stepsize= 1.000000 +dualbound = 3753427.080871, lowerbound=1307574.080871, norm of subgrad 1144.018829 dualbound = 3753427.080871, lowerbound=1307574.080871, norm of subgrad 35.439844 stepsize= 1.000000 +dualbound = 3753504.298772, lowerbound=1302554.298772, norm of subgrad 1141.784699 dualbound = 3753504.298772, lowerbound=1302554.298772, norm of subgrad 34.571924 stepsize= 1.000000 +dualbound = 3753552.971348, lowerbound=1304668.971348, norm of subgrad 1142.716925 dualbound = 3753552.971348, lowerbound=1304668.971348, norm of subgrad 34.375465 stepsize= 1.000000 +dualbound = 3753637.604953, lowerbound=1312863.604953, norm of subgrad 1146.312176 dualbound = 3753637.604953, lowerbound=1312863.604953, norm of subgrad 35.392564 stepsize= 1.000000 +dualbound = 3753666.370301, lowerbound=1301453.370301, norm of subgrad 1141.305117 dualbound = 3753666.370301, lowerbound=1301453.370301, norm of subgrad 33.952398 stepsize= 1.000000 +dualbound = 3753746.672383, lowerbound=1302420.672383, norm of subgrad 1141.748077 dualbound = 3753746.672383, lowerbound=1302420.672383, norm of subgrad 35.331319 stepsize= 1.000000 +dualbound = 3753767.158240, lowerbound=1309950.158240, norm of subgrad 1145.051596 dualbound = 3753767.158240, lowerbound=1309950.158240, norm of subgrad 34.835124 stepsize= 1.000000 +dualbound = 3753852.768298, lowerbound=1303478.768298, norm of subgrad 1142.238052 dualbound = 3753852.768298, lowerbound=1303478.768298, norm of subgrad 36.257552 stepsize= 1.000000 +dualbound = 3753909.964933, lowerbound=1307142.964933, norm of subgrad 1143.830829 dualbound = 3753909.964933, lowerbound=1307142.964933, norm of subgrad 35.541478 stepsize= 1.000000 +dualbound = 3753968.863510, lowerbound=1311009.863510, norm of subgrad 1145.538242 dualbound = 3753968.863510, lowerbound=1311009.863510, norm of subgrad 36.151052 stepsize= 1.000000 +dualbound = 3754006.065824, lowerbound=1305728.065824, norm of subgrad 1143.202985 dualbound = 3754006.065824, lowerbound=1305728.065824, norm of subgrad 34.960010 stepsize= 1.000000 +dualbound = 3754072.349131, lowerbound=1313823.349131, norm of subgrad 1146.764295 dualbound = 3754072.349131, lowerbound=1313823.349131, norm of subgrad 36.211646 stepsize= 1.000000 +dualbound = 3754139.714011, lowerbound=1303054.714011, norm of subgrad 1142.044970 dualbound = 3754139.714011, lowerbound=1303054.714011, norm of subgrad 35.768210 stepsize= 1.000000 +dualbound = 3754223.989453, lowerbound=1304061.989453, norm of subgrad 1142.443429 dualbound = 3754223.989453, lowerbound=1304061.989453, norm of subgrad 34.630556 stepsize= 1.000000 +dualbound = 3754271.464037, lowerbound=1310089.464037, norm of subgrad 1145.096705 dualbound = 3754271.464037, lowerbound=1310089.464037, norm of subgrad 34.705541 stepsize= 1.000000 +dualbound = 3754322.030128, lowerbound=1306104.030128, norm of subgrad 1143.377466 dualbound = 3754322.030128, lowerbound=1306104.030128, norm of subgrad 35.476275 stepsize= 1.000000 +dualbound = 3754357.470242, lowerbound=1309825.470242, norm of subgrad 1145.020729 dualbound = 3754357.470242, lowerbound=1309825.470242, norm of subgrad 35.811173 stepsize= 1.000000 +dualbound = 3754409.776187, lowerbound=1309160.776187, norm of subgrad 1144.728254 dualbound = 3754409.776187, lowerbound=1309160.776187, norm of subgrad 35.976464 stepsize= 1.000000 +dualbound = 3754487.262797, lowerbound=1306620.262797, norm of subgrad 1143.599258 dualbound = 3754487.262797, lowerbound=1306620.262797, norm of subgrad 35.727953 stepsize= 1.000000 +dualbound = 3754548.206106, lowerbound=1306702.206106, norm of subgrad 1143.615847 dualbound = 3754548.206106, lowerbound=1306702.206106, norm of subgrad 34.870379 stepsize= 1.000000 +dualbound = 3754632.438505, lowerbound=1308240.438505, norm of subgrad 1144.285558 dualbound = 3754632.438505, lowerbound=1308240.438505, norm of subgrad 35.117409 stepsize= 1.000000 +dualbound = 3754646.946250, lowerbound=1304282.946250, norm of subgrad 1142.585641 dualbound = 3754646.946250, lowerbound=1304282.946250, norm of subgrad 35.121329 stepsize= 1.000000 +dualbound = 3754720.043763, lowerbound=1306922.043763, norm of subgrad 1143.739063 dualbound = 3754720.043763, lowerbound=1306922.043763, norm of subgrad 35.917927 stepsize= 1.000000 +dualbound = 3754790.064210, lowerbound=1304697.064210, norm of subgrad 1142.754595 dualbound = 3754790.064210, lowerbound=1304697.064210, norm of subgrad 35.510850 stepsize= 1.000000 +dualbound = 3754854.832460, lowerbound=1308527.832460, norm of subgrad 1144.408071 dualbound = 3754854.832460, lowerbound=1308527.832460, norm of subgrad 34.738570 stepsize= 1.000000 +dualbound = 3754912.422694, lowerbound=1308197.422694, norm of subgrad 1144.274190 dualbound = 3754912.422694, lowerbound=1308197.422694, norm of subgrad 34.979855 stepsize= 1.000000 +dualbound = 3754968.875288, lowerbound=1305230.875288, norm of subgrad 1142.975011 dualbound = 3754968.875288, lowerbound=1305230.875288, norm of subgrad 34.892013 stepsize= 1.000000 +dualbound = 3755033.303702, lowerbound=1308548.303702, norm of subgrad 1144.435801 dualbound = 3755033.303702, lowerbound=1308548.303702, norm of subgrad 35.347255 stepsize= 1.000000 +dualbound = 3755090.980682, lowerbound=1302033.980682, norm of subgrad 1141.576971 dualbound = 3755090.980682, lowerbound=1302033.980682, norm of subgrad 34.952496 stepsize= 1.000000 +dualbound = 3755152.867795, lowerbound=1310352.867795, norm of subgrad 1145.214769 dualbound = 3755152.867795, lowerbound=1310352.867795, norm of subgrad 35.012671 stepsize= 1.000000 +dualbound = 3755193.254583, lowerbound=1305932.254583, norm of subgrad 1143.302783 dualbound = 3755193.254583, lowerbound=1305932.254583, norm of subgrad 35.346666 stepsize= 1.000000 +dualbound = 3755259.749120, lowerbound=1307495.749120, norm of subgrad 1143.969296 dualbound = 3755259.749120, lowerbound=1307495.749120, norm of subgrad 35.163824 stepsize= 1.000000 +dualbound = 3755311.884924, lowerbound=1307571.884924, norm of subgrad 1144.019180 dualbound = 3755311.884924, lowerbound=1307571.884924, norm of subgrad 35.498392 stepsize= 1.000000 +dualbound = 3755360.752295, lowerbound=1311574.752295, norm of subgrad 1145.780848 dualbound = 3755360.752295, lowerbound=1311574.752295, norm of subgrad 35.886869 stepsize= 1.000000 +dualbound = 3755404.435424, lowerbound=1305412.435424, norm of subgrad 1143.074554 dualbound = 3755404.435424, lowerbound=1305412.435424, norm of subgrad 35.364999 stepsize= 1.000000 +dualbound = 3755506.903054, lowerbound=1310015.903054, norm of subgrad 1145.027905 dualbound = 3755506.903054, lowerbound=1310015.903054, norm of subgrad 34.285093 stepsize= 1.000000 +dualbound = 3755573.283187, lowerbound=1307211.283187, norm of subgrad 1143.838836 dualbound = 3755573.283187, lowerbound=1307211.283187, norm of subgrad 34.962553 stepsize= 1.000000 +dualbound = 3755614.576822, lowerbound=1303301.576822, norm of subgrad 1142.143851 dualbound = 3755614.576822, lowerbound=1303301.576822, norm of subgrad 35.104040 stepsize= 1.000000 +dualbound = 3755672.425096, lowerbound=1307763.425096, norm of subgrad 1144.079291 dualbound = 3755672.425096, lowerbound=1307763.425096, norm of subgrad 34.811611 stepsize= 1.000000 +dualbound = 3755738.034285, lowerbound=1311477.034285, norm of subgrad 1145.741260 dualbound = 3755738.034285, lowerbound=1311477.034285, norm of subgrad 36.216145 stepsize= 1.000000 +dualbound = 3755769.677616, lowerbound=1305470.677616, norm of subgrad 1143.112277 dualbound = 3755769.677616, lowerbound=1305470.677616, norm of subgrad 35.589933 stepsize= 1.000000 +dualbound = 3755832.313201, lowerbound=1304945.313201, norm of subgrad 1142.890770 dualbound = 3755832.313201, lowerbound=1304945.313201, norm of subgrad 36.285473 stepsize= 1.000000 +dualbound = 3755899.413223, lowerbound=1308008.413223, norm of subgrad 1144.217817 dualbound = 3755899.413223, lowerbound=1308008.413223, norm of subgrad 35.959700 stepsize= 1.000000 +dualbound = 3755953.120960, lowerbound=1309581.120960, norm of subgrad 1144.909220 dualbound = 3755953.120960, lowerbound=1309581.120960, norm of subgrad 35.912501 stepsize= 1.000000 +dualbound = 3756016.516194, lowerbound=1305142.516194, norm of subgrad 1142.961293 dualbound = 3756016.516194, lowerbound=1305142.516194, norm of subgrad 35.796581 stepsize= 1.000000 +dualbound = 3756083.862737, lowerbound=1307454.862737, norm of subgrad 1143.940061 dualbound = 3756083.862737, lowerbound=1307454.862737, norm of subgrad 34.804404 stepsize= 1.000000 +dualbound = 3756158.179579, lowerbound=1306394.179579, norm of subgrad 1143.499969 dualbound = 3756158.179579, lowerbound=1306394.179579, norm of subgrad 35.669551 stepsize= 1.000000 +dualbound = 3756168.702786, lowerbound=1305551.702786, norm of subgrad 1143.118412 dualbound = 3756168.702786, lowerbound=1305551.702786, norm of subgrad 34.329626 stepsize= 1.000000 +dualbound = 3756268.330231, lowerbound=1310096.330231, norm of subgrad 1145.101013 dualbound = 3756268.330231, lowerbound=1310096.330231, norm of subgrad 35.491231 stepsize= 1.000000 +dualbound = 3756315.281069, lowerbound=1305543.281069, norm of subgrad 1143.090233 dualbound = 3756315.281069, lowerbound=1305543.281069, norm of subgrad 34.043367 stepsize= 1.000000 +dualbound = 3756408.747972, lowerbound=1304792.747972, norm of subgrad 1142.774583 dualbound = 3756408.747972, lowerbound=1304792.747972, norm of subgrad 35.134981 stepsize= 1.000000 +dualbound = 3756417.941336, lowerbound=1307739.941336, norm of subgrad 1144.069465 dualbound = 3756417.941336, lowerbound=1307739.941336, norm of subgrad 34.120278 stepsize= 1.000000 +dualbound = 3756519.149532, lowerbound=1302389.149532, norm of subgrad 1141.720259 dualbound = 3756519.149532, lowerbound=1302389.149532, norm of subgrad 35.173970 stepsize= 1.000000 +dualbound = 3756576.282070, lowerbound=1309964.282070, norm of subgrad 1145.034184 dualbound = 3756576.282070, lowerbound=1309964.282070, norm of subgrad 34.585149 stepsize= 1.000000 +dualbound = 3756623.674727, lowerbound=1307608.674727, norm of subgrad 1144.013844 dualbound = 3756623.674727, lowerbound=1307608.674727, norm of subgrad 34.733164 stepsize= 1.000000 +dualbound = 3756649.973856, lowerbound=1313057.973856, norm of subgrad 1146.438386 dualbound = 3756649.973856, lowerbound=1313057.973856, norm of subgrad 35.906812 stepsize= 1.000000 +dualbound = 3756692.815988, lowerbound=1303516.815988, norm of subgrad 1142.249892 dualbound = 3756692.815988, lowerbound=1303516.815988, norm of subgrad 35.508339 stepsize= 1.000000 +dualbound = 3756788.777991, lowerbound=1309756.777991, norm of subgrad 1144.974139 dualbound = 3756788.777991, lowerbound=1309756.777991, norm of subgrad 36.124258 stepsize= 1.000000 +dualbound = 3756818.226847, lowerbound=1305793.226847, norm of subgrad 1143.258163 dualbound = 3756818.226847, lowerbound=1305793.226847, norm of subgrad 35.713427 stepsize= 1.000000 +dualbound = 3756902.621991, lowerbound=1312414.621991, norm of subgrad 1146.121556 dualbound = 3756902.621991, lowerbound=1312414.621991, norm of subgrad 35.558334 stepsize= 1.000000 +dualbound = 3756954.065917, lowerbound=1304763.065917, norm of subgrad 1142.777347 dualbound = 3756954.065917, lowerbound=1304763.065917, norm of subgrad 35.049164 stepsize= 1.000000 +dualbound = 3757019.400510, lowerbound=1310561.400510, norm of subgrad 1145.314106 dualbound = 3757019.400510, lowerbound=1310561.400510, norm of subgrad 35.331779 stepsize= 1.000000 +dualbound = 3757056.653475, lowerbound=1306523.653475, norm of subgrad 1143.556144 dualbound = 3757056.653475, lowerbound=1306523.653475, norm of subgrad 35.131937 stepsize= 1.000000 +dualbound = 3757148.126469, lowerbound=1310458.126469, norm of subgrad 1145.245880 dualbound = 3757148.126469, lowerbound=1310458.126469, norm of subgrad 34.949578 stepsize= 1.000000 +dualbound = 3757197.457098, lowerbound=1305176.457098, norm of subgrad 1142.976578 dualbound = 3757197.457098, lowerbound=1305176.457098, norm of subgrad 35.613630 stepsize= 1.000000 +dualbound = 3757245.150994, lowerbound=1315180.150994, norm of subgrad 1147.332189 dualbound = 3757245.150994, lowerbound=1315180.150994, norm of subgrad 35.195083 stepsize= 1.000000 +dualbound = 3757291.193145, lowerbound=1299513.193145, norm of subgrad 1140.498221 dualbound = 3757291.193145, lowerbound=1299513.193145, norm of subgrad 35.623618 stepsize= 1.000000 +dualbound = 3757379.417802, lowerbound=1308735.417802, norm of subgrad 1144.491336 dualbound = 3757379.417802, lowerbound=1308735.417802, norm of subgrad 34.831375 stepsize= 1.000000 +dualbound = 3757440.152934, lowerbound=1305874.152934, norm of subgrad 1143.257693 dualbound = 3757440.152934, lowerbound=1305874.152934, norm of subgrad 34.996216 stepsize= 1.000000 +dualbound = 3757503.043660, lowerbound=1308428.043660, norm of subgrad 1144.374958 dualbound = 3757503.043660, lowerbound=1308428.043660, norm of subgrad 35.055538 stepsize= 1.000000 +dualbound = 3757548.924030, lowerbound=1305327.924030, norm of subgrad 1143.015715 dualbound = 3757548.924030, lowerbound=1305327.924030, norm of subgrad 34.682566 stepsize= 1.000000 +dualbound = 3757608.554677, lowerbound=1310313.554677, norm of subgrad 1145.192366 dualbound = 3757608.554677, lowerbound=1310313.554677, norm of subgrad 34.808485 stepsize= 1.000000 +dualbound = 3757657.947289, lowerbound=1304033.947289, norm of subgrad 1142.447788 dualbound = 3757657.947289, lowerbound=1304033.947289, norm of subgrad 34.675533 stepsize= 1.000000 +dualbound = 3757729.353578, lowerbound=1312721.353578, norm of subgrad 1146.249255 dualbound = 3757729.353578, lowerbound=1312721.353578, norm of subgrad 35.176786 stepsize= 1.000000 +dualbound = 3757791.682941, lowerbound=1309932.682941, norm of subgrad 1145.033922 dualbound = 3757791.682941, lowerbound=1309932.682941, norm of subgrad 35.104549 stepsize= 1.000000 +dualbound = 3757839.800516, lowerbound=1309614.800516, norm of subgrad 1144.877199 dualbound = 3757839.800516, lowerbound=1309614.800516, norm of subgrad 34.309147 stepsize= 1.000000 +dualbound = 3757906.452314, lowerbound=1303759.452314, norm of subgrad 1142.360036 dualbound = 3757906.452314, lowerbound=1303759.452314, norm of subgrad 35.967371 stepsize= 1.000000 +dualbound = 3757958.416383, lowerbound=1310177.416383, norm of subgrad 1145.135982 dualbound = 3757958.416383, lowerbound=1310177.416383, norm of subgrad 34.798909 stepsize= 1.000000 +dualbound = 3758029.394044, lowerbound=1305197.394044, norm of subgrad 1142.979612 dualbound = 3758029.394044, lowerbound=1305197.394044, norm of subgrad 35.720830 stepsize= 1.000000 +dualbound = 3758068.712689, lowerbound=1305358.712689, norm of subgrad 1143.027870 dualbound = 3758068.712689, lowerbound=1305358.712689, norm of subgrad 34.544444 stepsize= 1.000000 +dualbound = 3758139.144596, lowerbound=1309706.144596, norm of subgrad 1144.967312 dualbound = 3758139.144596, lowerbound=1309706.144596, norm of subgrad 36.255095 stepsize= 1.000000 +dualbound = 3758163.925891, lowerbound=1309391.925891, norm of subgrad 1144.783790 dualbound = 3758163.925891, lowerbound=1309391.925891, norm of subgrad 34.099579 stepsize= 1.000000 +dualbound = 3758262.772277, lowerbound=1308435.772277, norm of subgrad 1144.372218 dualbound = 3758262.772277, lowerbound=1308435.772277, norm of subgrad 35.367307 stepsize= 1.000000 +dualbound = 3758300.174630, lowerbound=1303268.174630, norm of subgrad 1142.127040 dualbound = 3758300.174630, lowerbound=1303268.174630, norm of subgrad 34.977169 stepsize= 1.000000 +dualbound = 3758365.077392, lowerbound=1305933.077392, norm of subgrad 1143.300519 dualbound = 3758365.077392, lowerbound=1305933.077392, norm of subgrad 35.607622 stepsize= 1.000000 +dualbound = 3758430.954834, lowerbound=1306734.954834, norm of subgrad 1143.635849 dualbound = 3758430.954834, lowerbound=1306734.954834, norm of subgrad 35.126592 stepsize= 1.000000 +dualbound = 3758484.531149, lowerbound=1308757.531149, norm of subgrad 1144.550362 dualbound = 3758484.531149, lowerbound=1308757.531149, norm of subgrad 35.938507 stepsize= 1.000000 +dualbound = 3758536.507449, lowerbound=1310859.507449, norm of subgrad 1145.474796 dualbound = 3758536.507449, lowerbound=1310859.507449, norm of subgrad 36.124456 stepsize= 1.000000 +dualbound = 3758568.056269, lowerbound=1309807.056269, norm of subgrad 1145.042382 dualbound = 3758568.056269, lowerbound=1309807.056269, norm of subgrad 36.695351 stepsize= 1.000000 +dualbound = 3758650.196765, lowerbound=1305050.196765, norm of subgrad 1142.932718 dualbound = 3758650.196765, lowerbound=1305050.196765, norm of subgrad 36.429940 stepsize= 1.000000 +dualbound = 3758724.137631, lowerbound=1310407.137631, norm of subgrad 1145.249378 dualbound = 3758724.137631, lowerbound=1310407.137631, norm of subgrad 35.537879 stepsize= 1.000000 +dualbound = 3758788.707752, lowerbound=1305338.707752, norm of subgrad 1142.986311 dualbound = 3758788.707752, lowerbound=1305338.707752, norm of subgrad 33.816714 stepsize= 1.000000 +dualbound = 3758855.532062, lowerbound=1309757.532062, norm of subgrad 1144.944772 dualbound = 3758855.532062, lowerbound=1309757.532062, norm of subgrad 34.753767 stepsize= 1.000000 +dualbound = 3758884.311134, lowerbound=1304929.311134, norm of subgrad 1142.859708 dualbound = 3758884.311134, lowerbound=1304929.311134, norm of subgrad 35.039679 stepsize= 1.000000 +dualbound = 3758960.746310, lowerbound=1309079.746310, norm of subgrad 1144.640881 dualbound = 3758960.746310, lowerbound=1309079.746310, norm of subgrad 34.632863 stepsize= 1.000000 +dualbound = 3759011.430454, lowerbound=1308898.430454, norm of subgrad 1144.567355 dualbound = 3759011.430454, lowerbound=1308898.430454, norm of subgrad 34.448282 stepsize= 1.000000 +dualbound = 3759085.220831, lowerbound=1310205.220831, norm of subgrad 1145.129783 dualbound = 3759085.220831, lowerbound=1310205.220831, norm of subgrad 34.507831 stepsize= 1.000000 +dualbound = 3759124.856871, lowerbound=1301275.856871, norm of subgrad 1141.243995 dualbound = 3759124.856871, lowerbound=1301275.856871, norm of subgrad 34.664622 stepsize= 1.000000 +dualbound = 3759187.411907, lowerbound=1309958.411907, norm of subgrad 1145.080526 dualbound = 3759187.411907, lowerbound=1309958.411907, norm of subgrad 36.243000 stepsize= 1.000000 +dualbound = 3759251.787632, lowerbound=1309278.787632, norm of subgrad 1144.730006 dualbound = 3759251.787632, lowerbound=1309278.787632, norm of subgrad 34.530794 stepsize= 1.000000 +dualbound = 3759292.776985, lowerbound=1308834.776985, norm of subgrad 1144.545664 dualbound = 3759292.776985, lowerbound=1308834.776985, norm of subgrad 34.510714 stepsize= 1.000000 +dualbound = 3759368.291038, lowerbound=1313259.291038, norm of subgrad 1146.520079 dualbound = 3759368.291038, lowerbound=1313259.291038, norm of subgrad 36.393874 stepsize= 1.000000 +dualbound = 3759411.153689, lowerbound=1306046.153689, norm of subgrad 1143.343410 dualbound = 3759411.153689, lowerbound=1306046.153689, norm of subgrad 35.083652 stepsize= 1.000000 +dualbound = 3759503.045277, lowerbound=1302468.045277, norm of subgrad 1141.733351 dualbound = 3759503.045277, lowerbound=1302468.045277, norm of subgrad 34.334991 stepsize= 1.000000 +dualbound = 3759547.819738, lowerbound=1313534.819738, norm of subgrad 1146.576129 dualbound = 3759547.819738, lowerbound=1313534.819738, norm of subgrad 33.864059 stepsize= 1.000000 +dualbound = 3759603.579268, lowerbound=1309354.579268, norm of subgrad 1144.761363 dualbound = 3759603.579268, lowerbound=1309354.579268, norm of subgrad 34.347628 stepsize= 1.000000 +dualbound = 3759668.899347, lowerbound=1308642.899347, norm of subgrad 1144.455285 dualbound = 3759668.899347, lowerbound=1308642.899347, norm of subgrad 34.645636 stepsize= 1.000000 +dualbound = 3759729.515343, lowerbound=1306058.515343, norm of subgrad 1143.359749 dualbound = 3759729.515343, lowerbound=1306058.515343, norm of subgrad 35.687757 stepsize= 1.000000 +dualbound = 3759739.563926, lowerbound=1305248.563926, norm of subgrad 1143.005496 dualbound = 3759739.563926, lowerbound=1305248.563926, norm of subgrad 34.972112 stepsize= 1.000000 +dualbound = 3759836.508314, lowerbound=1306124.508314, norm of subgrad 1143.368929 dualbound = 3759836.508314, lowerbound=1306124.508314, norm of subgrad 35.566057 stepsize= 1.000000 +dualbound = 3759889.102087, lowerbound=1308322.102087, norm of subgrad 1144.300704 dualbound = 3759889.102087, lowerbound=1308322.102087, norm of subgrad 33.979314 stepsize= 1.000000 +dualbound = 3759965.673386, lowerbound=1302705.673386, norm of subgrad 1141.896087 dualbound = 3759965.673386, lowerbound=1302705.673386, norm of subgrad 36.021817 stepsize= 1.000000 +dualbound = 3759988.974834, lowerbound=1311338.974834, norm of subgrad 1145.678391 dualbound = 3759988.974834, lowerbound=1311338.974834, norm of subgrad 35.542952 stepsize= 1.000000 +dualbound = 3760051.879367, lowerbound=1303684.879367, norm of subgrad 1142.312514 dualbound = 3760051.879367, lowerbound=1303684.879367, norm of subgrad 35.438743 stepsize= 1.000000 +dualbound = 3760104.653366, lowerbound=1310159.653366, norm of subgrad 1145.175381 dualbound = 3760104.653366, lowerbound=1310159.653366, norm of subgrad 36.328694 stepsize= 1.000000 +dualbound = 3760149.505773, lowerbound=1307452.505773, norm of subgrad 1143.961322 dualbound = 3760149.505773, lowerbound=1307452.505773, norm of subgrad 35.211538 stepsize= 1.000000 +dualbound = 3760242.882457, lowerbound=1310831.882457, norm of subgrad 1145.412102 dualbound = 3760242.882457, lowerbound=1310831.882457, norm of subgrad 35.076726 stepsize= 1.000000 +dualbound = 3760302.758505, lowerbound=1305570.758505, norm of subgrad 1143.145992 dualbound = 3760302.758505, lowerbound=1305570.758505, norm of subgrad 35.663371 stepsize= 1.000000 +dualbound = 3760349.477729, lowerbound=1309044.477729, norm of subgrad 1144.659547 dualbound = 3760349.477729, lowerbound=1309044.477729, norm of subgrad 35.323069 stepsize= 1.000000 +dualbound = 3760404.704460, lowerbound=1309290.704460, norm of subgrad 1144.737832 dualbound = 3760404.704460, lowerbound=1309290.704460, norm of subgrad 34.485167 stepsize= 1.000000 +dualbound = 3760502.516261, lowerbound=1309247.516261, norm of subgrad 1144.708485 dualbound = 3760502.516261, lowerbound=1309247.516261, norm of subgrad 34.753587 stepsize= 1.000000 +dualbound = 3760535.617054, lowerbound=1306386.617054, norm of subgrad 1143.505408 dualbound = 3760535.617054, lowerbound=1306386.617054, norm of subgrad 35.370903 stepsize= 1.000000 +dualbound = 3760584.333970, lowerbound=1309149.333970, norm of subgrad 1144.711026 dualbound = 3760584.333970, lowerbound=1309149.333970, norm of subgrad 35.534728 stepsize= 1.000000 +dualbound = 3760656.336092, lowerbound=1309563.336092, norm of subgrad 1144.880053 dualbound = 3760656.336092, lowerbound=1309563.336092, norm of subgrad 35.482420 stepsize= 1.000000 +dualbound = 3760721.602926, lowerbound=1312350.602926, norm of subgrad 1146.094500 dualbound = 3760721.602926, lowerbound=1312350.602926, norm of subgrad 35.316665 stepsize= 1.000000 +dualbound = 3760787.062963, lowerbound=1308896.062963, norm of subgrad 1144.577242 dualbound = 3760787.062963, lowerbound=1308896.062963, norm of subgrad 35.020851 stepsize= 1.000000 +dualbound = 3760837.384865, lowerbound=1307185.384865, norm of subgrad 1143.838881 dualbound = 3760837.384865, lowerbound=1307185.384865, norm of subgrad 35.104443 stepsize= 1.000000 +dualbound = 3760905.077374, lowerbound=1304716.077374, norm of subgrad 1142.763351 dualbound = 3760905.077374, lowerbound=1304716.077374, norm of subgrad 35.492147 stepsize= 1.000000 +dualbound = 3760945.400137, lowerbound=1308201.400137, norm of subgrad 1144.289474 dualbound = 3760945.400137, lowerbound=1308201.400137, norm of subgrad 35.175599 stepsize= 1.000000 +dualbound = 3761011.730841, lowerbound=1307576.730841, norm of subgrad 1144.005127 dualbound = 3761011.730841, lowerbound=1307576.730841, norm of subgrad 35.175712 stepsize= 1.000000 +dualbound = 3761073.267148, lowerbound=1306461.267148, norm of subgrad 1143.536299 dualbound = 3761073.267148, lowerbound=1306461.267148, norm of subgrad 35.714651 stepsize= 1.000000 +dualbound = 3761131.307848, lowerbound=1305143.307848, norm of subgrad 1142.900393 dualbound = 3761131.307848, lowerbound=1305143.307848, norm of subgrad 33.705203 stepsize= 1.000000 +dualbound = 3761217.758722, lowerbound=1312796.758722, norm of subgrad 1146.250304 dualbound = 3761217.758722, lowerbound=1312796.758722, norm of subgrad 34.343134 stepsize= 1.000000 +dualbound = 3761259.408176, lowerbound=1306429.408176, norm of subgrad 1143.480393 dualbound = 3761259.408176, lowerbound=1306429.408176, norm of subgrad 34.053626 stepsize= 1.000000 +dualbound = 3761311.542732, lowerbound=1303472.542732, norm of subgrad 1142.211251 dualbound = 3761311.542732, lowerbound=1303472.542732, norm of subgrad 35.016204 stepsize= 1.000000 +dualbound = 3761369.425489, lowerbound=1308267.425489, norm of subgrad 1144.323567 dualbound = 3761369.425489, lowerbound=1308267.425489, norm of subgrad 35.593297 stepsize= 1.000000 +dualbound = 3761413.281443, lowerbound=1304439.281443, norm of subgrad 1142.644862 dualbound = 3761413.281443, lowerbound=1304439.281443, norm of subgrad 35.239977 stepsize= 1.000000 +dualbound = 3761479.355920, lowerbound=1309801.355920, norm of subgrad 1144.982688 dualbound = 3761479.355920, lowerbound=1309801.355920, norm of subgrad 35.356392 stepsize= 1.000000 +dualbound = 3761524.671515, lowerbound=1306823.671515, norm of subgrad 1143.675947 dualbound = 3761524.671515, lowerbound=1306823.671515, norm of subgrad 34.875716 stepsize= 1.000000 +dualbound = 3761607.005252, lowerbound=1305038.005252, norm of subgrad 1142.891073 dualbound = 3761607.005252, lowerbound=1305038.005252, norm of subgrad 35.275115 stepsize= 1.000000 +dualbound = 3761642.474819, lowerbound=1310986.474819, norm of subgrad 1145.499662 dualbound = 3761642.474819, lowerbound=1310986.474819, norm of subgrad 34.906583 stepsize= 1.000000 +dualbound = 3761723.630318, lowerbound=1305995.630318, norm of subgrad 1143.292014 dualbound = 3761723.630318, lowerbound=1305995.630318, norm of subgrad 34.672114 stepsize= 1.000000 +dualbound = 3761767.227018, lowerbound=1311924.227018, norm of subgrad 1145.922435 dualbound = 3761767.227018, lowerbound=1311924.227018, norm of subgrad 35.462610 stepsize= 1.000000 +dualbound = 3761822.811569, lowerbound=1311718.811569, norm of subgrad 1145.794402 dualbound = 3761822.811569, lowerbound=1311718.811569, norm of subgrad 34.374184 stepsize= 1.000000 +dualbound = 3761896.498494, lowerbound=1306347.498494, norm of subgrad 1143.461192 dualbound = 3761896.498494, lowerbound=1306347.498494, norm of subgrad 35.066892 stepsize= 1.000000 +dualbound = 3761966.103854, lowerbound=1305453.103854, norm of subgrad 1143.045101 dualbound = 3761966.103854, lowerbound=1305453.103854, norm of subgrad 34.184870 stepsize= 1.000000 +dualbound = 3762041.040916, lowerbound=1308045.040916, norm of subgrad 1144.186192 dualbound = 3762041.040916, lowerbound=1308045.040916, norm of subgrad 34.524442 stepsize= 1.000000 +dualbound = 3762078.775212, lowerbound=1305784.775212, norm of subgrad 1143.212043 dualbound = 3762078.775212, lowerbound=1305784.775212, norm of subgrad 34.449010 stepsize= 1.000000 +dualbound = 3762142.826268, lowerbound=1310437.826268, norm of subgrad 1145.255791 dualbound = 3762142.826268, lowerbound=1310437.826268, norm of subgrad 35.171737 stepsize= 1.000000 +dualbound = 3762189.572329, lowerbound=1303821.572329, norm of subgrad 1142.361402 dualbound = 3762189.572329, lowerbound=1303821.572329, norm of subgrad 34.853207 stepsize= 1.000000 +dualbound = 3762256.060903, lowerbound=1312203.060903, norm of subgrad 1146.020532 dualbound = 3762256.060903, lowerbound=1312203.060903, norm of subgrad 35.021259 stepsize= 1.000000 +dualbound = 3762306.602561, lowerbound=1307191.602561, norm of subgrad 1143.851652 dualbound = 3762306.602561, lowerbound=1307191.602561, norm of subgrad 35.433623 stepsize= 1.000000 +dualbound = 3762349.873526, lowerbound=1307676.873526, norm of subgrad 1144.049769 dualbound = 3762349.873526, lowerbound=1307676.873526, norm of subgrad 34.875077 stepsize= 1.000000 +dualbound = 3762420.362034, lowerbound=1308546.362034, norm of subgrad 1144.438011 dualbound = 3762420.362034, lowerbound=1308546.362034, norm of subgrad 35.531514 stepsize= 1.000000 +dualbound = 3762459.350175, lowerbound=1303103.350175, norm of subgrad 1142.052692 dualbound = 3762459.350175, lowerbound=1303103.350175, norm of subgrad 34.928329 stepsize= 1.000000 +dualbound = 3762534.186340, lowerbound=1305207.186340, norm of subgrad 1142.988708 dualbound = 3762534.186340, lowerbound=1305207.186340, norm of subgrad 35.928208 stepsize= 1.000000 +dualbound = 3762587.979378, lowerbound=1302602.979378, norm of subgrad 1141.840172 dualbound = 3762587.979378, lowerbound=1302602.979378, norm of subgrad 35.352412 stepsize= 1.000000 +dualbound = 3762651.117123, lowerbound=1311917.117123, norm of subgrad 1145.889226 dualbound = 3762651.117123, lowerbound=1311917.117123, norm of subgrad 34.758276 stepsize= 1.000000 +dualbound = 3762701.351205, lowerbound=1308519.351205, norm of subgrad 1144.425337 dualbound = 3762701.351205, lowerbound=1308519.351205, norm of subgrad 35.216957 stepsize= 1.000000 +dualbound = 3762767.163815, lowerbound=1312355.163815, norm of subgrad 1146.077730 dualbound = 3762767.163815, lowerbound=1312355.163815, norm of subgrad 34.710411 stepsize= 1.000000 +dualbound = 3762838.625595, lowerbound=1307795.625595, norm of subgrad 1144.085935 dualbound = 3762838.625595, lowerbound=1307795.625595, norm of subgrad 34.762937 stepsize= 1.000000 +dualbound = 3762898.449611, lowerbound=1311057.449611, norm of subgrad 1145.527586 dualbound = 3762898.449611, lowerbound=1311057.449611, norm of subgrad 35.154289 stepsize= 1.000000 +dualbound = 3762932.272401, lowerbound=1310671.272401, norm of subgrad 1145.354649 dualbound = 3762932.272401, lowerbound=1310671.272401, norm of subgrad 34.638458 stepsize= 1.000000 +dualbound = 3762993.300033, lowerbound=1306368.300033, norm of subgrad 1143.486030 dualbound = 3762993.300033, lowerbound=1306368.300033, norm of subgrad 35.398130 stepsize= 1.000000 +dualbound = 3763050.488439, lowerbound=1302551.488439, norm of subgrad 1141.838206 dualbound = 3763050.488439, lowerbound=1302551.488439, norm of subgrad 36.058125 stepsize= 1.000000 +dualbound = 3763100.663246, lowerbound=1310754.663246, norm of subgrad 1145.398474 dualbound = 3763100.663246, lowerbound=1310754.663246, norm of subgrad 35.116589 stepsize= 1.000000 +dualbound = 3763167.480248, lowerbound=1311560.480248, norm of subgrad 1145.741018 dualbound = 3763167.480248, lowerbound=1311560.480248, norm of subgrad 35.054486 stepsize= 1.000000 +dualbound = 3763243.680280, lowerbound=1306898.680280, norm of subgrad 1143.708739 dualbound = 3763243.680280, lowerbound=1306898.680280, norm of subgrad 35.315719 stepsize= 1.000000 +dualbound = 3763275.266770, lowerbound=1310804.266770, norm of subgrad 1145.448500 dualbound = 3763275.266770, lowerbound=1310804.266770, norm of subgrad 35.771308 stepsize= 1.000000 +dualbound = 3763339.359796, lowerbound=1311193.359796, norm of subgrad 1145.600000 dualbound = 3763339.359796, lowerbound=1311193.359796, norm of subgrad 35.638365 stepsize= 1.000000 +dualbound = 3763389.618131, lowerbound=1306874.618131, norm of subgrad 1143.661496 dualbound = 3763389.618131, lowerbound=1306874.618131, norm of subgrad 33.723261 stepsize= 1.000000 +dualbound = 3763480.633157, lowerbound=1312359.633157, norm of subgrad 1146.074881 dualbound = 3763480.633157, lowerbound=1312359.633157, norm of subgrad 34.914396 stepsize= 1.000000 +dualbound = 3763523.538681, lowerbound=1304269.538681, norm of subgrad 1142.550016 dualbound = 3763523.538681, lowerbound=1304269.538681, norm of subgrad 34.552938 stepsize= 1.000000 +dualbound = 3763582.541413, lowerbound=1312304.541413, norm of subgrad 1146.101017 dualbound = 3763582.541413, lowerbound=1312304.541413, norm of subgrad 36.083275 stepsize= 1.000000 +dualbound = 3763614.887618, lowerbound=1301993.887618, norm of subgrad 1141.572112 dualbound = 3763614.887618, lowerbound=1301993.887618, norm of subgrad 35.004945 stepsize= 1.000000 +dualbound = 3763693.963456, lowerbound=1306799.963456, norm of subgrad 1143.652029 dualbound = 3763693.963456, lowerbound=1306799.963456, norm of subgrad 34.915267 stepsize= 1.000000 +dualbound = 3763764.205825, lowerbound=1302330.205825, norm of subgrad 1141.710211 dualbound = 3763764.205825, lowerbound=1302330.205825, norm of subgrad 35.245459 stepsize= 1.000000 +dualbound = 3763812.594396, lowerbound=1311548.594396, norm of subgrad 1145.740195 dualbound = 3763812.594396, lowerbound=1311548.594396, norm of subgrad 34.934060 stepsize= 1.000000 +dualbound = 3763876.380022, lowerbound=1309093.380022, norm of subgrad 1144.645963 dualbound = 3763876.380022, lowerbound=1309093.380022, norm of subgrad 34.420715 stepsize= 1.000000 +dualbound = 3763954.064905, lowerbound=1310698.064905, norm of subgrad 1145.363726 dualbound = 3763954.064905, lowerbound=1310698.064905, norm of subgrad 35.180746 stepsize= 1.000000 +dualbound = 3763980.645079, lowerbound=1303005.645079, norm of subgrad 1142.010352 dualbound = 3763980.645079, lowerbound=1303005.645079, norm of subgrad 34.764640 stepsize= 1.000000 +dualbound = 3764062.156501, lowerbound=1305907.156501, norm of subgrad 1143.258132 dualbound = 3764062.156501, lowerbound=1305907.156501, norm of subgrad 34.835491 stepsize= 1.000000 +dualbound = 3764111.492034, lowerbound=1306051.492034, norm of subgrad 1143.319506 dualbound = 3764111.492034, lowerbound=1306051.492034, norm of subgrad 34.312323 stepsize= 1.000000 +dualbound = 3764197.503445, lowerbound=1310819.503445, norm of subgrad 1145.395348 dualbound = 3764197.503445, lowerbound=1310819.503445, norm of subgrad 34.597853 stepsize= 1.000000 +dualbound = 3764231.255185, lowerbound=1312024.255185, norm of subgrad 1145.949499 dualbound = 3764231.255185, lowerbound=1312024.255185, norm of subgrad 34.781486 stepsize= 1.000000 +dualbound = 3764308.742136, lowerbound=1312089.742136, norm of subgrad 1145.964547 dualbound = 3764308.742136, lowerbound=1312089.742136, norm of subgrad 34.964081 stepsize= 1.000000 +dualbound = 3764339.938127, lowerbound=1306383.938127, norm of subgrad 1143.477563 dualbound = 3764339.938127, lowerbound=1306383.938127, norm of subgrad 34.470219 stepsize= 1.000000 +dualbound = 3764424.959514, lowerbound=1311056.959514, norm of subgrad 1145.529554 dualbound = 3764424.959514, lowerbound=1311056.959514, norm of subgrad 35.581194 stepsize= 1.000000 +dualbound = 3764444.380145, lowerbound=1305591.380145, norm of subgrad 1143.129643 dualbound = 3764444.380145, lowerbound=1305591.380145, norm of subgrad 34.255228 stepsize= 1.000000 +dualbound = 3764548.398556, lowerbound=1311882.398556, norm of subgrad 1145.853568 dualbound = 3764548.398556, lowerbound=1311882.398556, norm of subgrad 34.670137 stepsize= 1.000000 +dualbound = 3764564.963083, lowerbound=1308283.963083, norm of subgrad 1144.343901 dualbound = 3764564.963083, lowerbound=1308283.963083, norm of subgrad 35.433946 stepsize= 1.000000 +dualbound = 3764636.029300, lowerbound=1303181.029300, norm of subgrad 1142.099833 dualbound = 3764636.029300, lowerbound=1303181.029300, norm of subgrad 35.805952 stepsize= 1.000000 +dualbound = 3764683.312748, lowerbound=1317669.312748, norm of subgrad 1148.414695 dualbound = 3764683.312748, lowerbound=1317669.312748, norm of subgrad 35.132370 stepsize= 1.000000 +dualbound = 3764761.734428, lowerbound=1307291.734428, norm of subgrad 1143.921647 dualbound = 3764761.734428, lowerbound=1307291.734428, norm of subgrad 36.652717 stepsize= 1.000000 +dualbound = 3764752.026561, lowerbound=1306103.026561, norm of subgrad 1143.394957 dualbound = 3764752.026561, lowerbound=1306103.026561, norm of subgrad 35.203581 stepsize= 1.000000 +dualbound = 3764855.123690, lowerbound=1308940.123690, norm of subgrad 1144.616147 dualbound = 3764855.123690, lowerbound=1308940.123690, norm of subgrad 36.181447 stepsize= 1.000000 +dualbound = 3764915.522379, lowerbound=1308818.522379, norm of subgrad 1144.542495 dualbound = 3764915.522379, lowerbound=1308818.522379, norm of subgrad 34.919890 stepsize= 1.000000 +dualbound = 3764993.349272, lowerbound=1307325.349272, norm of subgrad 1143.905306 dualbound = 3764993.349272, lowerbound=1307325.349272, norm of subgrad 35.662682 stepsize= 1.000000 +dualbound = 3765044.634608, lowerbound=1312142.634608, norm of subgrad 1145.992860 dualbound = 3765044.634608, lowerbound=1312142.634608, norm of subgrad 34.760399 stepsize= 1.000000 +dualbound = 3765122.243784, lowerbound=1310273.243784, norm of subgrad 1145.166907 dualbound = 3765122.243784, lowerbound=1310273.243784, norm of subgrad 34.808177 stepsize= 1.000000 +dualbound = 3765150.685220, lowerbound=1304564.685220, norm of subgrad 1142.701048 dualbound = 3765150.685220, lowerbound=1304564.685220, norm of subgrad 35.063392 stepsize= 1.000000 +dualbound = 3765214.028483, lowerbound=1307647.028483, norm of subgrad 1144.041096 dualbound = 3765214.028483, lowerbound=1307647.028483, norm of subgrad 35.303587 stepsize= 1.000000 +dualbound = 3765242.881654, lowerbound=1312850.881654, norm of subgrad 1146.321893 dualbound = 3765242.881654, lowerbound=1312850.881654, norm of subgrad 35.097766 stepsize= 1.000000 +dualbound = 3765337.030410, lowerbound=1305940.030410, norm of subgrad 1143.300061 dualbound = 3765337.030410, lowerbound=1305940.030410, norm of subgrad 35.904718 stepsize= 1.000000 +dualbound = 3765355.111993, lowerbound=1310052.111993, norm of subgrad 1145.101354 dualbound = 3765355.111993, lowerbound=1310052.111993, norm of subgrad 34.972583 stepsize= 1.000000 +dualbound = 3765470.516516, lowerbound=1307778.516516, norm of subgrad 1144.038250 dualbound = 3765470.516516, lowerbound=1307778.516516, norm of subgrad 34.064711 stepsize= 1.000000 +dualbound = 3765527.123676, lowerbound=1309378.123676, norm of subgrad 1144.751119 dualbound = 3765527.123676, lowerbound=1309378.123676, norm of subgrad 33.669083 stepsize= 1.000000 +dualbound = 3765589.560858, lowerbound=1303021.560858, norm of subgrad 1141.986673 dualbound = 3765589.560858, lowerbound=1303021.560858, norm of subgrad 34.270062 stepsize= 1.000000 +dualbound = 3765621.547700, lowerbound=1312078.547700, norm of subgrad 1145.952245 dualbound = 3765621.547700, lowerbound=1312078.547700, norm of subgrad 34.058580 stepsize= 1.000000 +dualbound = 3765692.988086, lowerbound=1306070.988086, norm of subgrad 1143.334591 dualbound = 3765692.988086, lowerbound=1306070.988086, norm of subgrad 34.848822 stepsize= 1.000000 +dualbound = 3765718.786433, lowerbound=1308890.786433, norm of subgrad 1144.594595 dualbound = 3765718.786433, lowerbound=1308890.786433, norm of subgrad 35.096985 stepsize= 1.000000 +dualbound = 3765788.066670, lowerbound=1308186.066670, norm of subgrad 1144.287580 dualbound = 3765788.066670, lowerbound=1308186.066670, norm of subgrad 35.739058 stepsize= 1.000000 +dualbound = 3765813.152311, lowerbound=1304557.152311, norm of subgrad 1142.733631 dualbound = 3765813.152311, lowerbound=1304557.152311, norm of subgrad 36.167467 stepsize= 1.000000 +dualbound = 3765891.623358, lowerbound=1311286.623358, norm of subgrad 1145.628484 dualbound = 3765891.623358, lowerbound=1311286.623358, norm of subgrad 35.446735 stepsize= 1.000000 +dualbound = 3765975.385582, lowerbound=1310833.385582, norm of subgrad 1145.435893 dualbound = 3765975.385582, lowerbound=1310833.385582, norm of subgrad 35.689806 stepsize= 1.000000 +dualbound = 3766034.391152, lowerbound=1305129.391152, norm of subgrad 1142.947676 dualbound = 3766034.391152, lowerbound=1305129.391152, norm of subgrad 35.482468 stepsize= 1.000000 +dualbound = 3766074.011011, lowerbound=1308381.011011, norm of subgrad 1144.387614 dualbound = 3766074.011011, lowerbound=1308381.011011, norm of subgrad 35.799719 stepsize= 1.000000 +dualbound = 3766143.139648, lowerbound=1305230.139648, norm of subgrad 1142.996124 dualbound = 3766143.139648, lowerbound=1305230.139648, norm of subgrad 35.764908 stepsize= 1.000000 +dualbound = 3766177.841886, lowerbound=1309172.841886, norm of subgrad 1144.727846 dualbound = 3766177.841886, lowerbound=1309172.841886, norm of subgrad 35.548590 stepsize= 1.000000 +dualbound = 3766233.344075, lowerbound=1312910.344075, norm of subgrad 1146.360041 dualbound = 3766233.344075, lowerbound=1312910.344075, norm of subgrad 35.867843 stepsize= 1.000000 +dualbound = 3766304.297581, lowerbound=1305449.297581, norm of subgrad 1143.100738 dualbound = 3766304.297581, lowerbound=1305449.297581, norm of subgrad 36.068733 stepsize= 1.000000 +dualbound = 3766375.532521, lowerbound=1311341.532521, norm of subgrad 1145.655940 dualbound = 3766375.532521, lowerbound=1311341.532521, norm of subgrad 35.457509 stepsize= 1.000000 +dualbound = 3766434.293929, lowerbound=1306268.293929, norm of subgrad 1143.412128 dualbound = 3766434.293929, lowerbound=1306268.293929, norm of subgrad 34.376757 stepsize= 1.000000 +dualbound = 3766487.905332, lowerbound=1305223.905332, norm of subgrad 1142.994272 dualbound = 3766487.905332, lowerbound=1305223.905332, norm of subgrad 35.575433 stepsize= 1.000000 +dualbound = 3766543.491966, lowerbound=1308695.491966, norm of subgrad 1144.506222 dualbound = 3766543.491966, lowerbound=1308695.491966, norm of subgrad 35.420144 stepsize= 1.000000 +dualbound = 3766585.451854, lowerbound=1310832.451854, norm of subgrad 1145.415842 dualbound = 3766585.451854, lowerbound=1310832.451854, norm of subgrad 34.452284 stepsize= 1.000000 +dualbound = 3766678.635360, lowerbound=1310117.635360, norm of subgrad 1145.122542 dualbound = 3766678.635360, lowerbound=1310117.635360, norm of subgrad 35.793624 stepsize= 1.000000 +dualbound = 3766723.664301, lowerbound=1305069.664301, norm of subgrad 1142.913236 dualbound = 3766723.664301, lowerbound=1305069.664301, norm of subgrad 35.014696 stepsize= 1.000000 +dualbound = 3766774.670428, lowerbound=1311443.670428, norm of subgrad 1145.694405 dualbound = 3766774.670428, lowerbound=1311443.670428, norm of subgrad 34.971505 stepsize= 1.000000 +dualbound = 3766843.394129, lowerbound=1306063.394129, norm of subgrad 1143.339580 dualbound = 3766843.394129, lowerbound=1306063.394129, norm of subgrad 35.081672 stepsize= 1.000000 +dualbound = 3766891.661040, lowerbound=1311185.661040, norm of subgrad 1145.590966 dualbound = 3766891.661040, lowerbound=1311185.661040, norm of subgrad 35.231618 stepsize= 1.000000 +dualbound = 3766957.601762, lowerbound=1304842.601763, norm of subgrad 1142.822209 dualbound = 3766957.601762, lowerbound=1304842.601763, norm of subgrad 35.580061 stepsize= 1.000000 +dualbound = 3767014.762338, lowerbound=1311135.762338, norm of subgrad 1145.547800 dualbound = 3767014.762338, lowerbound=1311135.762338, norm of subgrad 34.657764 stepsize= 1.000000 +dualbound = 3767072.624652, lowerbound=1304633.624652, norm of subgrad 1142.715898 dualbound = 3767072.624652, lowerbound=1304633.624652, norm of subgrad 34.983744 stepsize= 1.000000 +dualbound = 3767150.831627, lowerbound=1312336.831627, norm of subgrad 1146.074095 dualbound = 3767150.831627, lowerbound=1312336.831627, norm of subgrad 35.031514 stepsize= 1.000000 +dualbound = 3767173.323452, lowerbound=1306620.323452, norm of subgrad 1143.574800 dualbound = 3767173.323452, lowerbound=1306620.323452, norm of subgrad 34.139300 stepsize= 1.000000 +dualbound = 3767248.971807, lowerbound=1307459.971807, norm of subgrad 1143.944042 dualbound = 3767248.971807, lowerbound=1307459.971807, norm of subgrad 34.980685 stepsize= 1.000000 +dualbound = 3767306.634387, lowerbound=1302171.634387, norm of subgrad 1141.662662 dualbound = 3767306.634387, lowerbound=1302171.634387, norm of subgrad 35.772372 stepsize= 1.000000 +dualbound = 3767350.845899, lowerbound=1309613.845899, norm of subgrad 1144.900365 dualbound = 3767350.845899, lowerbound=1309613.845899, norm of subgrad 35.031579 stepsize= 1.000000 +dualbound = 3767419.432467, lowerbound=1311643.432467, norm of subgrad 1145.814310 dualbound = 3767419.432467, lowerbound=1311643.432467, norm of subgrad 36.271016 stepsize= 1.000000 +dualbound = 3767501.662407, lowerbound=1311220.662407, norm of subgrad 1145.592276 dualbound = 3767501.662407, lowerbound=1311220.662407, norm of subgrad 35.259466 stepsize= 1.000000 +dualbound = 3767537.445072, lowerbound=1309234.445072, norm of subgrad 1144.732041 dualbound = 3767537.445072, lowerbound=1309234.445072, norm of subgrad 34.825029 stepsize= 1.000000 +dualbound = 3767621.349116, lowerbound=1304174.349116, norm of subgrad 1142.512735 dualbound = 3767621.349116, lowerbound=1304174.349116, norm of subgrad 35.283198 stepsize= 1.000000 +dualbound = 3767645.521349, lowerbound=1311712.521349, norm of subgrad 1145.818712 dualbound = 3767645.521349, lowerbound=1311712.521349, norm of subgrad 34.816264 stepsize= 1.000000 +dualbound = 3767738.106737, lowerbound=1308380.106737, norm of subgrad 1144.360130 dualbound = 3767738.106737, lowerbound=1308380.106737, norm of subgrad 35.673315 stepsize= 1.000000 +dualbound = 3767760.715443, lowerbound=1305539.715443, norm of subgrad 1143.103983 dualbound = 3767760.715443, lowerbound=1305539.715443, norm of subgrad 34.199542 stepsize= 1.000000 +dualbound = 3767865.954018, lowerbound=1307749.954018, norm of subgrad 1144.038878 dualbound = 3767865.954018, lowerbound=1307749.954018, norm of subgrad 34.354600 stepsize= 1.000000 +dualbound = 3767912.793922, lowerbound=1313226.793922, norm of subgrad 1146.474943 dualbound = 3767912.793922, lowerbound=1313226.793922, norm of subgrad 34.997713 stepsize= 1.000000 +dualbound = 3767959.577905, lowerbound=1311696.577905, norm of subgrad 1145.793427 dualbound = 3767959.577905, lowerbound=1311696.577905, norm of subgrad 34.536705 stepsize= 1.000000 +dualbound = 3768026.985324, lowerbound=1306917.985324, norm of subgrad 1143.682205 dualbound = 3768026.985324, lowerbound=1306917.985324, norm of subgrad 34.035385 stepsize= 1.000000 +dualbound = 3768106.105290, lowerbound=1308685.105290, norm of subgrad 1144.442268 dualbound = 3768106.105290, lowerbound=1308685.105290, norm of subgrad 33.795265 stepsize= 1.000000 +dualbound = 3768139.543169, lowerbound=1307180.543169, norm of subgrad 1143.824525 dualbound = 3768139.543169, lowerbound=1307180.543169, norm of subgrad 34.459221 stepsize= 1.000000 +dualbound = 3768208.769210, lowerbound=1314769.769210, norm of subgrad 1147.138514 dualbound = 3768208.769210, lowerbound=1314769.769210, norm of subgrad 35.017510 stepsize= 1.000000 +dualbound = 3768245.093470, lowerbound=1303751.093470, norm of subgrad 1142.310857 dualbound = 3768245.093470, lowerbound=1303751.093470, norm of subgrad 34.048851 stepsize= 1.000000 +dualbound = 3768293.874744, lowerbound=1307529.874744, norm of subgrad 1143.971536 dualbound = 3768293.874744, lowerbound=1307529.874744, norm of subgrad 34.493206 stepsize= 1.000000 +dualbound = 3768378.896362, lowerbound=1309617.896362, norm of subgrad 1144.896457 dualbound = 3768378.896362, lowerbound=1309617.896362, norm of subgrad 35.426284 stepsize= 1.000000 +dualbound = 3768429.294258, lowerbound=1308093.294258, norm of subgrad 1144.222572 dualbound = 3768429.294258, lowerbound=1308093.294258, norm of subgrad 34.675610 stepsize= 1.000000 +dualbound = 3768484.681673, lowerbound=1311318.681673, norm of subgrad 1145.627200 dualbound = 3768484.681673, lowerbound=1311318.681673, norm of subgrad 34.617733 stepsize= 1.000000 +dualbound = 3768556.805518, lowerbound=1312829.805518, norm of subgrad 1146.267772 dualbound = 3768556.805518, lowerbound=1312829.805518, norm of subgrad 34.236294 stepsize= 1.000000 +dualbound = 3768626.300740, lowerbound=1312692.300740, norm of subgrad 1146.202993 dualbound = 3768626.300740, lowerbound=1312692.300740, norm of subgrad 34.036675 stepsize= 1.000000 +dualbound = 3768669.475190, lowerbound=1307220.475190, norm of subgrad 1143.858153 dualbound = 3768669.475190, lowerbound=1307220.475190, norm of subgrad 35.130819 stepsize= 1.000000 +dualbound = 3768724.601587, lowerbound=1308318.601587, norm of subgrad 1144.317963 dualbound = 3768724.601587, lowerbound=1308318.601587, norm of subgrad 34.642840 stepsize= 1.000000 +dualbound = 3768771.256978, lowerbound=1314612.256978, norm of subgrad 1147.073780 dualbound = 3768771.256978, lowerbound=1314612.256978, norm of subgrad 34.823202 stepsize= 1.000000 +dualbound = 3768842.942978, lowerbound=1303863.942978, norm of subgrad 1142.391764 dualbound = 3768842.942978, lowerbound=1303863.942978, norm of subgrad 35.590532 stepsize= 1.000000 +dualbound = 3768860.101860, lowerbound=1317165.101860, norm of subgrad 1148.206907 dualbound = 3768860.101860, lowerbound=1317165.101860, norm of subgrad 35.087874 stepsize= 1.000000 +dualbound = 3768929.424741, lowerbound=1304236.424741, norm of subgrad 1142.554342 dualbound = 3768929.424741, lowerbound=1304236.424741, norm of subgrad 35.543254 stepsize= 1.000000 +dualbound = 3769004.429057, lowerbound=1312132.429057, norm of subgrad 1145.977936 dualbound = 3769004.429057, lowerbound=1312132.429057, norm of subgrad 34.756356 stepsize= 1.000000 +dualbound = 3769065.998909, lowerbound=1306709.998909, norm of subgrad 1143.633245 dualbound = 3769065.998909, lowerbound=1306709.998909, norm of subgrad 35.335108 stepsize= 1.000000 +dualbound = 3769093.064965, lowerbound=1311260.064965, norm of subgrad 1145.631295 dualbound = 3769093.064965, lowerbound=1311260.064965, norm of subgrad 35.186163 stepsize= 1.000000 +dualbound = 3769170.140093, lowerbound=1305964.140093, norm of subgrad 1143.296611 dualbound = 3769170.140093, lowerbound=1305964.140093, norm of subgrad 35.214700 stepsize= 1.000000 +dualbound = 3769209.413515, lowerbound=1307724.413515, norm of subgrad 1144.071420 dualbound = 3769209.413515, lowerbound=1307724.413515, norm of subgrad 34.846426 stepsize= 1.000000 +dualbound = 3769287.947497, lowerbound=1309889.947497, norm of subgrad 1144.997357 dualbound = 3769287.947497, lowerbound=1309889.947497, norm of subgrad 34.749590 stepsize= 1.000000 +dualbound = 3769342.360227, lowerbound=1308792.360227, norm of subgrad 1144.528008 dualbound = 3769342.360227, lowerbound=1308792.360227, norm of subgrad 34.733453 stepsize= 1.000000 +dualbound = 3769420.767575, lowerbound=1307590.767575, norm of subgrad 1143.978482 dualbound = 3769420.767575, lowerbound=1307590.767575, norm of subgrad 34.269627 stepsize= 1.000000 +dualbound = 3769462.159379, lowerbound=1310718.159379, norm of subgrad 1145.355036 dualbound = 3769462.159379, lowerbound=1310718.159379, norm of subgrad 34.079199 stepsize= 1.000000 +dualbound = 3769542.011906, lowerbound=1303694.011906, norm of subgrad 1142.293750 dualbound = 3769542.011906, lowerbound=1303694.011906, norm of subgrad 34.940700 stepsize= 1.000000 +dualbound = 3769563.568398, lowerbound=1315193.568398, norm of subgrad 1147.300557 dualbound = 3769563.568398, lowerbound=1315193.568398, norm of subgrad 33.564214 stepsize= 1.000000 +dualbound = 3769644.174472, lowerbound=1305228.174472, norm of subgrad 1142.968142 dualbound = 3769644.174472, lowerbound=1305228.174472, norm of subgrad 35.051477 stepsize= 1.000000 +dualbound = 3769695.085331, lowerbound=1311884.085331, norm of subgrad 1145.869576 dualbound = 3769695.085331, lowerbound=1311884.085331, norm of subgrad 34.408006 stepsize= 1.000000 +dualbound = 3769745.093087, lowerbound=1307267.093087, norm of subgrad 1143.885524 dualbound = 3769745.093087, lowerbound=1307267.093087, norm of subgrad 35.454305 stepsize= 1.000000 +dualbound = 3769772.406578, lowerbound=1309456.406578, norm of subgrad 1144.839031 dualbound = 3769772.406578, lowerbound=1309456.406578, norm of subgrad 35.033034 stepsize= 1.000000 +dualbound = 3769861.219383, lowerbound=1306377.219383, norm of subgrad 1143.475063 dualbound = 3769861.219383, lowerbound=1306377.219383, norm of subgrad 35.310237 stepsize= 1.000000 +dualbound = 3769918.309656, lowerbound=1312522.309656, norm of subgrad 1146.168971 dualbound = 3769918.309656, lowerbound=1312522.309656, norm of subgrad 35.186507 stepsize= 1.000000 +dualbound = 3769994.530690, lowerbound=1310638.530690, norm of subgrad 1145.336427 dualbound = 3769994.530690, lowerbound=1310638.530690, norm of subgrad 35.117247 stepsize= 1.000000 +dualbound = 3770041.472704, lowerbound=1309947.472704, norm of subgrad 1145.041254 dualbound = 3770041.472704, lowerbound=1309947.472704, norm of subgrad 34.913350 stepsize= 1.000000 +dualbound = 3770099.865066, lowerbound=1310474.865066, norm of subgrad 1145.272834 dualbound = 3770099.865066, lowerbound=1310474.865066, norm of subgrad 35.119686 stepsize= 1.000000 +dualbound = 3770163.480229, lowerbound=1309116.480229, norm of subgrad 1144.682698 dualbound = 3770163.480229, lowerbound=1309116.480229, norm of subgrad 35.293274 stepsize= 1.000000 +dualbound = 3770211.794175, lowerbound=1311604.794175, norm of subgrad 1145.777812 dualbound = 3770211.794175, lowerbound=1311604.794175, norm of subgrad 35.359779 stepsize= 1.000000 +dualbound = 3770279.678111, lowerbound=1304169.678111, norm of subgrad 1142.511566 dualbound = 3770279.678111, lowerbound=1304169.678111, norm of subgrad 35.083956 stepsize= 1.000000 +dualbound = 3770329.504622, lowerbound=1308457.504622, norm of subgrad 1144.394383 dualbound = 3770329.504622, lowerbound=1308457.504622, norm of subgrad 35.083137 stepsize= 1.000000 +dualbound = 3770384.372983, lowerbound=1308395.372983, norm of subgrad 1144.371606 dualbound = 3770384.372983, lowerbound=1308395.372983, norm of subgrad 35.296861 stepsize= 1.000000 +dualbound = 3770442.046256, lowerbound=1306172.046256, norm of subgrad 1143.387968 dualbound = 3770442.046256, lowerbound=1306172.046256, norm of subgrad 34.952443 stepsize= 1.000000 +dualbound = 3770493.131820, lowerbound=1311513.131820, norm of subgrad 1145.733011 dualbound = 3770493.131820, lowerbound=1311513.131820, norm of subgrad 35.243234 stepsize= 1.000000 +dualbound = 3770564.609523, lowerbound=1308836.609523, norm of subgrad 1144.574423 dualbound = 3770564.609523, lowerbound=1308836.609523, norm of subgrad 35.853559 stepsize= 1.000000 +dualbound = 3770608.179735, lowerbound=1310424.179735, norm of subgrad 1145.229750 dualbound = 3770608.179735, lowerbound=1310424.179735, norm of subgrad 34.213597 stepsize= 1.000000 +dualbound = 3770699.005063, lowerbound=1307229.005063, norm of subgrad 1143.833469 dualbound = 3770699.005063, lowerbound=1307229.005063, norm of subgrad 34.883023 stepsize= 1.000000 +dualbound = 3770733.773911, lowerbound=1312071.773911, norm of subgrad 1145.961070 dualbound = 3770733.773911, lowerbound=1312071.773911, norm of subgrad 34.493026 stepsize= 1.000000 +dualbound = 3770792.028421, lowerbound=1305434.028421, norm of subgrad 1143.075251 dualbound = 3770792.028421, lowerbound=1305434.028421, norm of subgrad 35.288164 stepsize= 1.000000 +dualbound = 3770835.868676, lowerbound=1313638.868676, norm of subgrad 1146.628915 dualbound = 3770835.868676, lowerbound=1313638.868676, norm of subgrad 34.100444 stepsize= 1.000000 +dualbound = 3770916.760601, lowerbound=1303766.760601, norm of subgrad 1142.304583 dualbound = 3770916.760601, lowerbound=1303766.760601, norm of subgrad 34.262106 stepsize= 1.000000 +dualbound = 3770930.551051, lowerbound=1313274.551051, norm of subgrad 1146.500131 dualbound = 3770930.551051, lowerbound=1313274.551051, norm of subgrad 34.666849 stepsize= 1.000000 +dualbound = 3771005.204923, lowerbound=1304285.204923, norm of subgrad 1142.574814 dualbound = 3771005.204923, lowerbound=1304285.204923, norm of subgrad 35.590081 stepsize= 1.000000 +dualbound = 3771075.685205, lowerbound=1311880.685205, norm of subgrad 1145.874201 dualbound = 3771075.685205, lowerbound=1311880.685205, norm of subgrad 34.892410 stepsize= 1.000000 +dualbound = 3771147.607876, lowerbound=1309401.607876, norm of subgrad 1144.755261 dualbound = 3771147.607876, lowerbound=1309401.607876, norm of subgrad 33.688613 stepsize= 1.000000 +dualbound = 3771212.614318, lowerbound=1307388.614318, norm of subgrad 1143.915475 dualbound = 3771212.614318, lowerbound=1307388.614318, norm of subgrad 34.914273 stepsize= 1.000000 +dualbound = 3771224.778802, lowerbound=1305616.778802, norm of subgrad 1143.140315 dualbound = 3771224.778802, lowerbound=1305616.778802, norm of subgrad 34.134506 stepsize= 1.000000 +dualbound = 3771324.900195, lowerbound=1301333.900195, norm of subgrad 1141.244452 dualbound = 3771324.900195, lowerbound=1301333.900195, norm of subgrad 34.714858 stepsize= 1.000000 +dualbound = 3771367.866841, lowerbound=1311843.866841, norm of subgrad 1145.847663 dualbound = 3771367.866841, lowerbound=1311843.866841, norm of subgrad 34.146254 stepsize= 1.000000 +dualbound = 3771417.275625, lowerbound=1307886.275625, norm of subgrad 1144.147401 dualbound = 3771417.275625, lowerbound=1307886.275625, norm of subgrad 35.162605 stepsize= 1.000000 +dualbound = 3771471.280555, lowerbound=1308290.280555, norm of subgrad 1144.308647 dualbound = 3771471.280555, lowerbound=1308290.280555, norm of subgrad 34.727582 stepsize= 1.000000 +dualbound = 3771540.895678, lowerbound=1312748.895678, norm of subgrad 1146.263450 dualbound = 3771540.895678, lowerbound=1312748.895678, norm of subgrad 35.222367 stepsize= 1.000000 +dualbound = 3771595.601337, lowerbound=1312230.601337, norm of subgrad 1146.017278 dualbound = 3771595.601337, lowerbound=1312230.601337, norm of subgrad 34.346844 stepsize= 1.000000 +dualbound = 3771674.368012, lowerbound=1309879.368012, norm of subgrad 1145.026798 dualbound = 3771674.368012, lowerbound=1309879.368012, norm of subgrad 35.857589 stepsize= 1.000000 +dualbound = 3771684.670451, lowerbound=1312289.670451, norm of subgrad 1146.073152 dualbound = 3771684.670451, lowerbound=1312289.670451, norm of subgrad 34.703061 stepsize= 1.000000 +dualbound = 3771777.901189, lowerbound=1303081.901189, norm of subgrad 1142.052057 dualbound = 3771777.901189, lowerbound=1303081.901189, norm of subgrad 35.975419 stepsize= 1.000000 +dualbound = 3771826.936591, lowerbound=1307340.936591, norm of subgrad 1143.882833 dualbound = 3771826.936591, lowerbound=1307340.936591, norm of subgrad 34.293373 stepsize= 1.000000 +dualbound = 3771899.782638, lowerbound=1308093.782638, norm of subgrad 1144.197877 dualbound = 3771899.782638, lowerbound=1308093.782638, norm of subgrad 34.173763 stepsize= 1.000000 +dualbound = 3771960.965753, lowerbound=1305622.965753, norm of subgrad 1143.140396 dualbound = 3771960.965753, lowerbound=1305622.965753, norm of subgrad 34.758929 stepsize= 1.000000 +dualbound = 3771989.620508, lowerbound=1310074.620508, norm of subgrad 1145.100267 dualbound = 3771989.620508, lowerbound=1310074.620508, norm of subgrad 34.765712 stepsize= 1.000000 +dualbound = 3772035.928507, lowerbound=1311666.928507, norm of subgrad 1145.810599 dualbound = 3772035.928507, lowerbound=1311666.928507, norm of subgrad 35.514898 stepsize= 1.000000 +dualbound = 3772099.249135, lowerbound=1308612.249135, norm of subgrad 1144.451069 dualbound = 3772099.249135, lowerbound=1308612.249135, norm of subgrad 34.918772 stepsize= 1.000000 +dualbound = 3772168.988724, lowerbound=1303163.988724, norm of subgrad 1142.063916 dualbound = 3772168.988724, lowerbound=1303163.988724, norm of subgrad 34.867457 stepsize= 1.000000 +dualbound = 3772236.235203, lowerbound=1309287.235203, norm of subgrad 1144.741995 dualbound = 3772236.235203, lowerbound=1309287.235203, norm of subgrad 34.846040 stepsize= 1.000000 +dualbound = 3772275.702167, lowerbound=1308835.702167, norm of subgrad 1144.543447 dualbound = 3772275.702167, lowerbound=1308835.702167, norm of subgrad 34.401555 stepsize= 1.000000 +dualbound = 3772324.627542, lowerbound=1307316.627542, norm of subgrad 1143.896249 dualbound = 3772324.627542, lowerbound=1307316.627542, norm of subgrad 35.084546 stepsize= 1.000000 +dualbound = 3772403.342932, lowerbound=1312402.342932, norm of subgrad 1146.111837 dualbound = 3772403.342932, lowerbound=1312402.342932, norm of subgrad 35.337167 stepsize= 1.000000 +dualbound = 3772445.526866, lowerbound=1306798.526866, norm of subgrad 1143.666266 dualbound = 3772445.526866, lowerbound=1306798.526866, norm of subgrad 34.873829 stepsize= 1.000000 +dualbound = 3772499.328163, lowerbound=1308165.328163, norm of subgrad 1144.279393 dualbound = 3772499.328163, lowerbound=1308165.328163, norm of subgrad 35.549983 stepsize= 1.000000 +dualbound = 3772559.352726, lowerbound=1313814.352726, norm of subgrad 1146.728108 dualbound = 3772559.352726, lowerbound=1313814.352726, norm of subgrad 35.085960 stepsize= 1.000000 +dualbound = 3772619.792120, lowerbound=1304521.792120, norm of subgrad 1142.638084 dualbound = 3772619.792120, lowerbound=1304521.792120, norm of subgrad 34.065223 stepsize= 1.000000 +dualbound = 3772699.650667, lowerbound=1307465.650667, norm of subgrad 1143.947399 dualbound = 3772699.650667, lowerbound=1307465.650667, norm of subgrad 35.069339 stepsize= 1.000000 +dualbound = 3772734.979011, lowerbound=1312223.979011, norm of subgrad 1146.024860 dualbound = 3772734.979011, lowerbound=1312223.979011, norm of subgrad 34.414072 stepsize= 1.000000 +dualbound = 3772801.818352, lowerbound=1309228.818352, norm of subgrad 1144.708617 dualbound = 3772801.818352, lowerbound=1309228.818352, norm of subgrad 34.580910 stepsize= 1.000000 +dualbound = 3772861.261939, lowerbound=1309763.261939, norm of subgrad 1144.954699 dualbound = 3772861.261939, lowerbound=1309763.261939, norm of subgrad 34.891884 stepsize= 1.000000 +dualbound = 3772924.768546, lowerbound=1309405.768546, norm of subgrad 1144.775423 dualbound = 3772924.768546, lowerbound=1309405.768546, norm of subgrad 34.183426 stepsize= 1.000000 +dualbound = 3772990.885681, lowerbound=1314536.885681, norm of subgrad 1147.036567 dualbound = 3772990.885681, lowerbound=1314536.885681, norm of subgrad 34.958792 stepsize= 1.000000 +dualbound = 3773035.533043, lowerbound=1308897.533043, norm of subgrad 1144.618510 dualbound = 3773035.533043, lowerbound=1308897.533043, norm of subgrad 36.036750 stepsize= 1.000000 +dualbound = 3773063.566450, lowerbound=1308707.566450, norm of subgrad 1144.504070 dualbound = 3773063.566450, lowerbound=1308707.566450, norm of subgrad 34.785534 stepsize= 1.000000 +dualbound = 3773165.279408, lowerbound=1307259.279408, norm of subgrad 1143.846266 dualbound = 3773165.279408, lowerbound=1307259.279408, norm of subgrad 35.024462 stepsize= 1.000000 +dualbound = 3773212.801797, lowerbound=1305832.801797, norm of subgrad 1143.239171 dualbound = 3773212.801797, lowerbound=1305832.801797, norm of subgrad 34.792562 stepsize= 1.000000 +dualbound = 3773277.787082, lowerbound=1311533.787082, norm of subgrad 1145.742025 dualbound = 3773277.787082, lowerbound=1311533.787082, norm of subgrad 35.439883 stepsize= 1.000000 +dualbound = 3773316.338003, lowerbound=1306613.338003, norm of subgrad 1143.588360 dualbound = 3773316.338003, lowerbound=1306613.338003, norm of subgrad 34.922069 stepsize= 1.000000 +dualbound = 3773414.205996, lowerbound=1313446.205996, norm of subgrad 1146.529636 dualbound = 3773414.205996, lowerbound=1313446.205996, norm of subgrad 34.378307 stepsize= 1.000000 +dualbound = 3773461.602965, lowerbound=1305666.602965, norm of subgrad 1143.165169 dualbound = 3773461.602965, lowerbound=1305666.602965, norm of subgrad 34.747618 stepsize= 1.000000 +dualbound = 3773488.127458, lowerbound=1312083.127458, norm of subgrad 1145.990457 dualbound = 3773488.127458, lowerbound=1312083.127458, norm of subgrad 35.178466 stepsize= 1.000000 +dualbound = 3773554.162937, lowerbound=1304328.162937, norm of subgrad 1142.590112 dualbound = 3773554.162937, lowerbound=1304328.162937, norm of subgrad 35.355841 stepsize= 1.000000 +dualbound = 3773607.026605, lowerbound=1307436.026605, norm of subgrad 1143.948874 dualbound = 3773607.026605, lowerbound=1307436.026605, norm of subgrad 35.154853 stepsize= 1.000000 +dualbound = 3773672.140168, lowerbound=1302466.140168, norm of subgrad 1141.765799 dualbound = 3773672.140168, lowerbound=1302466.140168, norm of subgrad 35.044451 stepsize= 1.000000 +dualbound = 3773743.435333, lowerbound=1310566.435333, norm of subgrad 1145.301897 dualbound = 3773743.435333, lowerbound=1310566.435333, norm of subgrad 34.947034 stepsize= 1.000000 +dualbound = 3773811.871711, lowerbound=1305685.871711, norm of subgrad 1143.179720 dualbound = 3773811.871711, lowerbound=1305685.871711, norm of subgrad 35.248211 stepsize= 1.000000 +dualbound = 3773853.692096, lowerbound=1309369.692096, norm of subgrad 1144.779757 dualbound = 3773853.692096, lowerbound=1309369.692096, norm of subgrad 34.537232 stepsize= 1.000000 +dualbound = 3773914.550954, lowerbound=1315628.550954, norm of subgrad 1147.511024 dualbound = 3773914.550954, lowerbound=1315628.550954, norm of subgrad 34.840477 stepsize= 1.000000 +dualbound = 3773965.931212, lowerbound=1310460.931212, norm of subgrad 1145.251471 dualbound = 3773965.931212, lowerbound=1310460.931212, norm of subgrad 34.516377 stepsize= 1.000000 +dualbound = 3774034.969401, lowerbound=1313739.969401, norm of subgrad 1146.708755 dualbound = 3774034.969401, lowerbound=1313739.969401, norm of subgrad 35.637595 stepsize= 1.000000 +dualbound = 3774050.254766, lowerbound=1308484.254766, norm of subgrad 1144.433159 dualbound = 3774050.254766, lowerbound=1308484.254766, norm of subgrad 35.472318 stepsize= 1.000000 +dualbound = 3774136.507098, lowerbound=1305457.507098, norm of subgrad 1143.040904 dualbound = 3774136.507098, lowerbound=1305457.507098, norm of subgrad 34.223564 stepsize= 1.000000 +dualbound = 3774211.160234, lowerbound=1310834.160234, norm of subgrad 1145.396508 dualbound = 3774211.160234, lowerbound=1310834.160234, norm of subgrad 34.258621 stepsize= 1.000000 +dualbound = 3774268.833275, lowerbound=1305119.833275, norm of subgrad 1142.925996 dualbound = 3774268.833275, lowerbound=1305119.833275, norm of subgrad 34.895172 stepsize= 1.000000 +dualbound = 3774311.456787, lowerbound=1311514.456787, norm of subgrad 1145.703040 dualbound = 3774311.456787, lowerbound=1311514.456787, norm of subgrad 34.111926 stepsize= 1.000000 +dualbound = 3774377.096424, lowerbound=1311577.096424, norm of subgrad 1145.747833 dualbound = 3774377.096424, lowerbound=1311577.096424, norm of subgrad 35.023416 stepsize= 1.000000 +dualbound = 3774405.062563, lowerbound=1311428.062563, norm of subgrad 1145.681047 dualbound = 3774405.062563, lowerbound=1311428.062563, norm of subgrad 34.423337 stepsize= 1.000000 +dualbound = 3774479.786164, lowerbound=1310333.786164, norm of subgrad 1145.204255 dualbound = 3774479.786164, lowerbound=1310333.786164, norm of subgrad 35.124402 stepsize= 1.000000 +dualbound = 3774548.952946, lowerbound=1309234.952946, norm of subgrad 1144.737067 dualbound = 3774548.952946, lowerbound=1309234.952946, norm of subgrad 35.456548 stepsize= 1.000000 +dualbound = 3774606.657686, lowerbound=1310391.657686, norm of subgrad 1145.226029 dualbound = 3774606.657686, lowerbound=1310391.657686, norm of subgrad 34.766431 stepsize= 1.000000 +dualbound = 3774669.201501, lowerbound=1305151.201501, norm of subgrad 1142.921783 dualbound = 3774669.201501, lowerbound=1305151.201501, norm of subgrad 34.373592 stepsize= 1.000000 +dualbound = 3774726.661188, lowerbound=1311845.661188, norm of subgrad 1145.861973 dualbound = 3774726.661188, lowerbound=1311845.661188, norm of subgrad 34.806029 stepsize= 1.000000 +dualbound = 3774783.400012, lowerbound=1307884.400012, norm of subgrad 1144.137404 dualbound = 3774783.400012, lowerbound=1307884.400012, norm of subgrad 34.967683 stepsize= 1.000000 +dualbound = 3774836.161784, lowerbound=1307609.161784, norm of subgrad 1144.042902 dualbound = 3774836.161784, lowerbound=1307609.161784, norm of subgrad 35.745794 stepsize= 1.000000 +dualbound = 3774871.583645, lowerbound=1312178.583645, norm of subgrad 1145.999818 dualbound = 3774871.583645, lowerbound=1312178.583645, norm of subgrad 34.240646 stepsize= 1.000000 +dualbound = 3774952.833729, lowerbound=1308594.833729, norm of subgrad 1144.442586 dualbound = 3774952.833729, lowerbound=1308594.833729, norm of subgrad 35.146125 stepsize= 1.000000 +dualbound = 3775009.751237, lowerbound=1304112.751237, norm of subgrad 1142.473961 dualbound = 3775009.751237, lowerbound=1304112.751237, norm of subgrad 34.509673 stepsize= 1.000000 +dualbound = 3775080.809096, lowerbound=1310362.809096, norm of subgrad 1145.226532 dualbound = 3775080.809096, lowerbound=1310362.809096, norm of subgrad 35.384430 stepsize= 1.000000 +dualbound = 3775116.242097, lowerbound=1310286.242097, norm of subgrad 1145.195722 dualbound = 3775116.242097, lowerbound=1310286.242097, norm of subgrad 34.963309 stepsize= 1.000000 +dualbound = 3775182.282593, lowerbound=1310583.282593, norm of subgrad 1145.285677 dualbound = 3775182.282593, lowerbound=1310583.282593, norm of subgrad 34.088715 stepsize= 1.000000 +dualbound = 3775252.306156, lowerbound=1308708.306156, norm of subgrad 1144.496093 dualbound = 3775252.306156, lowerbound=1308708.306156, norm of subgrad 35.114435 stepsize= 1.000000 +dualbound = 3775298.976943, lowerbound=1313293.976943, norm of subgrad 1146.499445 dualbound = 3775298.976943, lowerbound=1313293.976943, norm of subgrad 34.837778 stepsize= 1.000000 +dualbound = 3775358.284558, lowerbound=1308747.284558, norm of subgrad 1144.498704 dualbound = 3775358.284558, lowerbound=1308747.284558, norm of subgrad 34.486340 stepsize= 1.000000 +dualbound = 3775429.483312, lowerbound=1308987.483312, norm of subgrad 1144.610188 dualbound = 3775429.483312, lowerbound=1308987.483312, norm of subgrad 34.874041 stepsize= 1.000000 +dualbound = 3775459.444238, lowerbound=1311696.444238, norm of subgrad 1145.795551 dualbound = 3775459.444238, lowerbound=1311696.444238, norm of subgrad 34.365112 stepsize= 1.000000 +dualbound = 3775545.929731, lowerbound=1306412.929731, norm of subgrad 1143.484119 dualbound = 3775545.929731, lowerbound=1306412.929731, norm of subgrad 35.064020 stepsize= 1.000000 +dualbound = 3775560.964223, lowerbound=1307467.964223, norm of subgrad 1143.946224 dualbound = 3775560.964223, lowerbound=1307467.964223, norm of subgrad 34.059279 stepsize= 1.000000 +dualbound = 3775655.290565, lowerbound=1310798.290565, norm of subgrad 1145.417081 dualbound = 3775655.290565, lowerbound=1310798.290565, norm of subgrad 35.725710 stepsize= 1.000000 +dualbound = 3775687.772875, lowerbound=1310215.772875, norm of subgrad 1145.159715 dualbound = 3775687.772875, lowerbound=1310215.772875, norm of subgrad 34.748846 stepsize= 1.000000 +dualbound = 3775746.554883, lowerbound=1315053.554883, norm of subgrad 1147.273531 dualbound = 3775746.554883, lowerbound=1315053.554883, norm of subgrad 35.238927 stepsize= 1.000000 +dualbound = 3775814.657196, lowerbound=1312333.657196, norm of subgrad 1146.062240 dualbound = 3775814.657196, lowerbound=1312333.657196, norm of subgrad 34.541313 stepsize= 1.000000 +dualbound = 3775875.320155, lowerbound=1306536.320155, norm of subgrad 1143.555561 dualbound = 3775875.320155, lowerbound=1306536.320155, norm of subgrad 35.265606 stepsize= 1.000000 +dualbound = 3775935.182523, lowerbound=1304058.182523, norm of subgrad 1142.433010 dualbound = 3775935.182523, lowerbound=1304058.182523, norm of subgrad 33.983266 stepsize= 1.000000 +dualbound = 3776004.731916, lowerbound=1310544.731916, norm of subgrad 1145.287183 dualbound = 3776004.731916, lowerbound=1310544.731916, norm of subgrad 34.749811 stepsize= 1.000000 +dualbound = 3776029.451797, lowerbound=1314798.451797, norm of subgrad 1147.152759 dualbound = 3776029.451797, lowerbound=1314798.451797, norm of subgrad 34.434284 stepsize= 1.000000 +dualbound = 3776095.385813, lowerbound=1307202.385813, norm of subgrad 1143.836258 dualbound = 3776095.385813, lowerbound=1307202.385813, norm of subgrad 34.999057 stepsize= 1.000000 +dualbound = 3776162.205784, lowerbound=1311795.205784, norm of subgrad 1145.852174 dualbound = 3776162.205784, lowerbound=1311795.205784, norm of subgrad 35.338647 stepsize= 1.000000 +dualbound = 3776208.198654, lowerbound=1306812.198654, norm of subgrad 1143.676615 dualbound = 3776208.198654, lowerbound=1306812.198654, norm of subgrad 35.071254 stepsize= 1.000000 +dualbound = 3776266.827989, lowerbound=1311264.827989, norm of subgrad 1145.615480 dualbound = 3776266.827989, lowerbound=1311264.827989, norm of subgrad 35.051809 stepsize= 1.000000 +dualbound = 3776317.509535, lowerbound=1306769.509535, norm of subgrad 1143.658388 dualbound = 3776317.509535, lowerbound=1306769.509535, norm of subgrad 35.152262 stepsize= 1.000000 +dualbound = 3776390.771583, lowerbound=1306382.771583, norm of subgrad 1143.487985 dualbound = 3776390.771583, lowerbound=1306382.771583, norm of subgrad 35.429678 stepsize= 1.000000 +dualbound = 3776442.142068, lowerbound=1309076.142068, norm of subgrad 1144.670320 dualbound = 3776442.142068, lowerbound=1309076.142068, norm of subgrad 35.289807 stepsize= 1.000000 +dualbound = 3776501.494713, lowerbound=1307632.494713, norm of subgrad 1144.032995 dualbound = 3776501.494713, lowerbound=1307632.494713, norm of subgrad 35.190235 stepsize= 1.000000 +dualbound = 3776565.471297, lowerbound=1308952.471297, norm of subgrad 1144.588778 dualbound = 3776565.471297, lowerbound=1308952.471297, norm of subgrad 34.568433 stepsize= 1.000000 +dualbound = 3776628.242969, lowerbound=1309240.242969, norm of subgrad 1144.721906 dualbound = 3776628.242969, lowerbound=1309240.242969, norm of subgrad 34.796144 stepsize= 1.000000 +dualbound = 3776675.836539, lowerbound=1305809.836539, norm of subgrad 1143.232188 dualbound = 3776675.836539, lowerbound=1305809.836539, norm of subgrad 34.894033 stepsize= 1.000000 +dualbound = 3776742.293743, lowerbound=1310408.293743, norm of subgrad 1145.246390 dualbound = 3776742.293743, lowerbound=1310408.293743, norm of subgrad 35.319360 stepsize= 1.000000 +dualbound = 3776782.683625, lowerbound=1305147.683625, norm of subgrad 1142.958741 dualbound = 3776782.683625, lowerbound=1305147.683625, norm of subgrad 35.318407 stepsize= 1.000000 +dualbound = 3776850.185054, lowerbound=1310200.185054, norm of subgrad 1145.150726 dualbound = 3776850.185054, lowerbound=1310200.185054, norm of subgrad 35.178139 stepsize= 1.000000 +dualbound = 3776912.370688, lowerbound=1309266.370688, norm of subgrad 1144.728077 dualbound = 3776912.370688, lowerbound=1309266.370688, norm of subgrad 34.614818 stepsize= 1.000000 +dualbound = 3776971.005832, lowerbound=1312375.005832, norm of subgrad 1146.082897 dualbound = 3776971.005832, lowerbound=1312375.005832, norm of subgrad 34.491088 stepsize= 1.000000 +dualbound = 3777023.053086, lowerbound=1314408.053086, norm of subgrad 1146.977355 dualbound = 3777023.053086, lowerbound=1314408.053086, norm of subgrad 34.656129 stepsize= 1.000000 +dualbound = 3777080.184227, lowerbound=1310124.184227, norm of subgrad 1145.130204 dualbound = 3777080.184227, lowerbound=1310124.184227, norm of subgrad 35.441940 stepsize= 1.000000 +dualbound = 3777120.108023, lowerbound=1316948.108023, norm of subgrad 1148.114153 dualbound = 3777120.108023, lowerbound=1316948.108023, norm of subgrad 35.467221 stepsize= 1.000000 +dualbound = 3777183.835558, lowerbound=1310878.835558, norm of subgrad 1145.446129 dualbound = 3777183.835558, lowerbound=1310878.835558, norm of subgrad 35.095976 stepsize= 1.000000 +dualbound = 3777249.490555, lowerbound=1310516.490555, norm of subgrad 1145.301921 dualbound = 3777249.490555, lowerbound=1310516.490555, norm of subgrad 35.576045 stepsize= 1.000000 +dualbound = 3777305.221358, lowerbound=1312424.221358, norm of subgrad 1146.123127 dualbound = 3777305.221358, lowerbound=1312424.221358, norm of subgrad 35.067518 stepsize= 1.000000 +dualbound = 3777365.197206, lowerbound=1305096.197206, norm of subgrad 1142.922656 dualbound = 3777365.197206, lowerbound=1305096.197206, norm of subgrad 35.156448 stepsize= 1.000000 +dualbound = 3777416.085711, lowerbound=1309509.085711, norm of subgrad 1144.831903 dualbound = 3777416.085711, lowerbound=1309509.085711, norm of subgrad 34.378605 stepsize= 1.000000 +dualbound = 3777491.046526, lowerbound=1308144.046526, norm of subgrad 1144.238632 dualbound = 3777491.046526, lowerbound=1308144.046526, norm of subgrad 34.827587 stepsize= 1.000000 +dualbound = 3777537.108066, lowerbound=1309582.108066, norm of subgrad 1144.911834 dualbound = 3777537.108066, lowerbound=1309582.108066, norm of subgrad 35.875640 stepsize= 1.000000 +dualbound = 3777589.935766, lowerbound=1308034.935766, norm of subgrad 1144.214550 dualbound = 3777589.935766, lowerbound=1308034.935766, norm of subgrad 35.282116 stepsize= 1.000000 +dualbound = 3777658.021366, lowerbound=1312400.021366, norm of subgrad 1146.103844 dualbound = 3777658.021366, lowerbound=1312400.021366, norm of subgrad 34.958341 stepsize= 1.000000 +dualbound = 3777713.045840, lowerbound=1302967.045840, norm of subgrad 1141.973312 dualbound = 3777713.045840, lowerbound=1302967.045840, norm of subgrad 34.511222 stepsize= 1.000000 +dualbound = 3777784.132292, lowerbound=1308153.132292, norm of subgrad 1144.235174 dualbound = 3777784.132292, lowerbound=1308153.132292, norm of subgrad 34.526605 stepsize= 1.000000 +dualbound = 3777824.822088, lowerbound=1305137.822088, norm of subgrad 1142.944365 dualbound = 3777824.822088, lowerbound=1305137.822088, norm of subgrad 34.995568 stepsize= 1.000000 +dualbound = 3777875.840525, lowerbound=1308690.840525, norm of subgrad 1144.491957 dualbound = 3777875.840525, lowerbound=1308690.840525, norm of subgrad 34.957380 stepsize= 1.000000 +dualbound = 3777955.419134, lowerbound=1310361.419134, norm of subgrad 1145.205405 dualbound = 3777955.419134, lowerbound=1310361.419134, norm of subgrad 34.836455 stepsize= 1.000000 +dualbound = 3778017.970360, lowerbound=1305189.970360, norm of subgrad 1142.949242 dualbound = 3778017.970360, lowerbound=1305189.970360, norm of subgrad 34.721049 stepsize= 1.000000 +dualbound = 3778070.335460, lowerbound=1311044.335460, norm of subgrad 1145.524917 dualbound = 3778070.335460, lowerbound=1311044.335460, norm of subgrad 35.147761 stepsize= 1.000000 +dualbound = 3778122.253703, lowerbound=1311396.253703, norm of subgrad 1145.646653 dualbound = 3778122.253703, lowerbound=1311396.253703, norm of subgrad 34.086922 stepsize= 1.000000 +dualbound = 3778202.889691, lowerbound=1311413.889691, norm of subgrad 1145.661333 dualbound = 3778202.889691, lowerbound=1311413.889691, norm of subgrad 34.736666 stepsize= 1.000000 +dualbound = 3778241.831350, lowerbound=1305625.831350, norm of subgrad 1143.152584 dualbound = 3778241.831350, lowerbound=1305625.831350, norm of subgrad 34.798587 stepsize= 1.000000 +dualbound = 3778294.304314, lowerbound=1307654.304314, norm of subgrad 1144.051705 dualbound = 3778294.304314, lowerbound=1307654.304314, norm of subgrad 35.390295 stepsize= 1.000000 +dualbound = 3778346.608231, lowerbound=1314617.608231, norm of subgrad 1147.069138 dualbound = 3778346.608231, lowerbound=1314617.608231, norm of subgrad 34.674254 stepsize= 1.000000 +dualbound = 3778429.396769, lowerbound=1306584.396769, norm of subgrad 1143.557780 dualbound = 3778429.396769, lowerbound=1306584.396769, norm of subgrad 34.968393 stepsize= 1.000000 +dualbound = 3778460.374677, lowerbound=1314068.374677, norm of subgrad 1146.841914 dualbound = 3778460.374677, lowerbound=1314068.374677, norm of subgrad 34.770360 stepsize= 1.000000 +dualbound = 3778516.507486, lowerbound=1312533.507486, norm of subgrad 1146.177782 dualbound = 3778516.507486, lowerbound=1312533.507486, norm of subgrad 35.300606 stepsize= 1.000000 +dualbound = 3778577.181028, lowerbound=1313800.181028, norm of subgrad 1146.711464 dualbound = 3778577.181028, lowerbound=1313800.181028, norm of subgrad 34.751598 stepsize= 1.000000 +dualbound = 3778625.647575, lowerbound=1309034.647575, norm of subgrad 1144.627733 dualbound = 3778625.647575, lowerbound=1309034.647575, norm of subgrad 34.445124 stepsize= 1.000000 +dualbound = 3778691.349437, lowerbound=1304446.349437, norm of subgrad 1142.640079 dualbound = 3778691.349437, lowerbound=1304446.349437, norm of subgrad 35.294502 stepsize= 1.000000 +dualbound = 3778742.181347, lowerbound=1310461.181347, norm of subgrad 1145.251580 dualbound = 3778742.181347, lowerbound=1310461.181347, norm of subgrad 34.508432 stepsize= 1.000000 +dualbound = 3778794.238968, lowerbound=1311059.238968, norm of subgrad 1145.528367 dualbound = 3778794.238968, lowerbound=1311059.238968, norm of subgrad 35.043653 stepsize= 1.000000 +dualbound = 3778880.265547, lowerbound=1305712.265547, norm of subgrad 1143.197824 dualbound = 3778880.265547, lowerbound=1305712.265547, norm of subgrad 35.707514 stepsize= 1.000000 +dualbound = 3778906.895649, lowerbound=1311297.895649, norm of subgrad 1145.632094 dualbound = 3778906.895649, lowerbound=1311297.895649, norm of subgrad 34.664537 stepsize= 1.000000 +dualbound = 3778979.692492, lowerbound=1306835.692492, norm of subgrad 1143.661529 dualbound = 3778979.692492, lowerbound=1306835.692492, norm of subgrad 34.623646 stepsize= 1.000000 +dualbound = 3779058.845786, lowerbound=1311962.845786, norm of subgrad 1145.899579 dualbound = 3779058.845786, lowerbound=1311962.845786, norm of subgrad 34.672082 stepsize= 1.000000 +dualbound = 3779094.778900, lowerbound=1305139.778900, norm of subgrad 1142.935597 dualbound = 3779094.778900, lowerbound=1305139.778900, norm of subgrad 34.611170 stepsize= 1.000000 +dualbound = 3779165.263389, lowerbound=1314417.263389, norm of subgrad 1146.950855 dualbound = 3779165.263389, lowerbound=1314417.263389, norm of subgrad 33.904048 stepsize= 1.000000 +dualbound = 3779223.910297, lowerbound=1308634.910297, norm of subgrad 1144.442620 dualbound = 3779223.910297, lowerbound=1308634.910297, norm of subgrad 34.243932 stepsize= 1.000000 +dualbound = 3779276.079583, lowerbound=1311321.079583, norm of subgrad 1145.626937 dualbound = 3779276.079583, lowerbound=1311321.079583, norm of subgrad 34.527805 stepsize= 1.000000 +dualbound = 3779326.239199, lowerbound=1310904.239199, norm of subgrad 1145.466822 dualbound = 3779326.239199, lowerbound=1310904.239199, norm of subgrad 35.215900 stepsize= 1.000000 +dualbound = 3779351.075209, lowerbound=1306598.075209, norm of subgrad 1143.585185 dualbound = 3779351.075209, lowerbound=1306598.075209, norm of subgrad 34.840149 stepsize= 1.000000 +dualbound = 3779452.645795, lowerbound=1307475.645795, norm of subgrad 1143.950019 dualbound = 3779452.645795, lowerbound=1307475.645795, norm of subgrad 35.320965 stepsize= 1.000000 +dualbound = 3779499.138583, lowerbound=1313646.138583, norm of subgrad 1146.656940 dualbound = 3779499.138583, lowerbound=1313646.138583, norm of subgrad 34.964164 stepsize= 1.000000 +dualbound = 3779543.724009, lowerbound=1308085.724009, norm of subgrad 1144.226256 dualbound = 3779543.724009, lowerbound=1308085.724009, norm of subgrad 34.822197 stepsize= 1.000000 +dualbound = 3779627.218300, lowerbound=1316432.218300, norm of subgrad 1147.836756 dualbound = 3779627.218300, lowerbound=1316432.218300, norm of subgrad 34.358322 stepsize= 1.000000 +dualbound = 3779680.965661, lowerbound=1304618.965661, norm of subgrad 1142.729612 dualbound = 3779680.965661, lowerbound=1304618.965661, norm of subgrad 35.577343 stepsize= 1.000000 +dualbound = 3779700.462123, lowerbound=1309382.462123, norm of subgrad 1144.808483 dualbound = 3779700.462123, lowerbound=1309382.462123, norm of subgrad 34.978514 stepsize= 1.000000 +dualbound = 3779773.565644, lowerbound=1307906.565644, norm of subgrad 1144.165008 dualbound = 3779773.565644, lowerbound=1307906.565644, norm of subgrad 35.778534 stepsize= 1.000000 +dualbound = 3779834.887303, lowerbound=1308085.887303, norm of subgrad 1144.217587 dualbound = 3779834.887303, lowerbound=1308085.887303, norm of subgrad 34.775302 stepsize= 1.000000 +dualbound = 3779897.826404, lowerbound=1302424.826404, norm of subgrad 1141.774858 dualbound = 3779897.826404, lowerbound=1302424.826404, norm of subgrad 35.887868 stepsize= 1.000000 +dualbound = 3779931.301988, lowerbound=1311040.301988, norm of subgrad 1145.524466 dualbound = 3779931.301988, lowerbound=1311040.301988, norm of subgrad 34.920991 stepsize= 1.000000 +dualbound = 3780032.815516, lowerbound=1315755.815516, norm of subgrad 1147.541640 dualbound = 3780032.815516, lowerbound=1315755.815516, norm of subgrad 34.605108 stepsize= 1.000000 +dualbound = 3780085.832826, lowerbound=1306401.832826, norm of subgrad 1143.476643 dualbound = 3780085.832826, lowerbound=1306401.832826, norm of subgrad 34.496628 stepsize= 1.000000 +dualbound = 3780138.485169, lowerbound=1318274.485169, norm of subgrad 1148.665088 dualbound = 3780138.485169, lowerbound=1318274.485169, norm of subgrad 34.780057 stepsize= 1.000000 +dualbound = 3780176.427687, lowerbound=1306104.427687, norm of subgrad 1143.381576 dualbound = 3780176.427687, lowerbound=1306104.427687, norm of subgrad 35.425168 stepsize= 1.000000 +dualbound = 3780229.128651, lowerbound=1303310.128651, norm of subgrad 1142.161604 dualbound = 3780229.128651, lowerbound=1303310.128651, norm of subgrad 35.716956 stepsize= 1.000000 +dualbound = 3780311.354967, lowerbound=1310294.354967, norm of subgrad 1145.175251 dualbound = 3780311.354967, lowerbound=1310294.354967, norm of subgrad 34.845750 stepsize= 1.000000 +dualbound = 3780374.236571, lowerbound=1310617.236571, norm of subgrad 1145.324948 dualbound = 3780374.236571, lowerbound=1310617.236571, norm of subgrad 34.855152 stepsize= 1.000000 +dualbound = 3780399.533804, lowerbound=1310114.533804, norm of subgrad 1145.109835 dualbound = 3780399.533804, lowerbound=1310114.533804, norm of subgrad 34.457180 stepsize= 1.000000 +dualbound = 3780468.472958, lowerbound=1309282.472958, norm of subgrad 1144.759133 dualbound = 3780468.472958, lowerbound=1309282.472958, norm of subgrad 35.495622 stepsize= 1.000000 +dualbound = 3780528.291017, lowerbound=1309077.291017, norm of subgrad 1144.635877 dualbound = 3780528.291017, lowerbound=1309077.291017, norm of subgrad 34.261028 stepsize= 1.000000 +dualbound = 3780609.052085, lowerbound=1311350.052085, norm of subgrad 1145.621688 dualbound = 3780609.052085, lowerbound=1311350.052085, norm of subgrad 34.347650 stepsize= 1.000000 +dualbound = 3780671.096015, lowerbound=1307048.096015, norm of subgrad 1143.720725 dualbound = 3780671.096015, lowerbound=1307048.096015, norm of subgrad 33.332326 stepsize= 1.000000 +dualbound = 3780727.462834, lowerbound=1309048.462834, norm of subgrad 1144.618479 dualbound = 3780727.462834, lowerbound=1309048.462834, norm of subgrad 34.049476 stepsize= 1.000000 +dualbound = 3780774.434147, lowerbound=1307561.434147, norm of subgrad 1143.975714 dualbound = 3780774.434147, lowerbound=1307561.434147, norm of subgrad 34.146322 stepsize= 1.000000 +dualbound = 3780822.982267, lowerbound=1310754.982267, norm of subgrad 1145.374603 dualbound = 3780822.982267, lowerbound=1310754.982267, norm of subgrad 34.300847 stepsize= 1.000000 +dualbound = 3780893.848876, lowerbound=1317655.848876, norm of subgrad 1148.365294 dualbound = 3780893.848876, lowerbound=1317655.848876, norm of subgrad 34.027439 stepsize= 1.000000 +dualbound = 3780946.497104, lowerbound=1308009.497104, norm of subgrad 1144.167600 dualbound = 3780946.497104, lowerbound=1308009.497104, norm of subgrad 34.097628 stepsize= 1.000000 +dualbound = 3781002.078847, lowerbound=1309938.078847, norm of subgrad 1145.041955 dualbound = 3781002.078847, lowerbound=1309938.078847, norm of subgrad 35.193490 stepsize= 1.000000 +dualbound = 3781045.114395, lowerbound=1306558.114395, norm of subgrad 1143.564652 dualbound = 3781045.114395, lowerbound=1306558.114395, norm of subgrad 35.000508 stepsize= 1.000000 +dualbound = 3781093.089598, lowerbound=1307021.089598, norm of subgrad 1143.744329 dualbound = 3781093.089598, lowerbound=1307021.089598, norm of subgrad 34.321643 stepsize= 1.000000 +dualbound = 3781174.436159, lowerbound=1309435.436159, norm of subgrad 1144.809345 dualbound = 3781174.436159, lowerbound=1309435.436159, norm of subgrad 35.133269 stepsize= 1.000000 +dualbound = 3781207.449132, lowerbound=1310284.449132, norm of subgrad 1145.203671 dualbound = 3781207.449132, lowerbound=1310284.449132, norm of subgrad 35.213818 stepsize= 1.000000 +dualbound = 3781293.849454, lowerbound=1310308.849454, norm of subgrad 1145.174593 dualbound = 3781293.849454, lowerbound=1310308.849454, norm of subgrad 34.675645 stepsize= 1.000000 +dualbound = 3781336.813465, lowerbound=1310731.813465, norm of subgrad 1145.354012 dualbound = 3781336.813465, lowerbound=1310731.813465, norm of subgrad 33.866857 stepsize= 1.000000 +dualbound = 3781423.191468, lowerbound=1310460.191468, norm of subgrad 1145.241543 dualbound = 3781423.191468, lowerbound=1310460.191468, norm of subgrad 34.704150 stepsize= 1.000000 +dualbound = 3781448.202545, lowerbound=1311964.202545, norm of subgrad 1145.908025 dualbound = 3781448.202545, lowerbound=1311964.202545, norm of subgrad 34.146904 stepsize= 1.000000 +dualbound = 3781535.377237, lowerbound=1307797.377237, norm of subgrad 1144.071404 dualbound = 3781535.377237, lowerbound=1307797.377237, norm of subgrad 34.484412 stepsize= 1.000000 +dualbound = 3781570.766524, lowerbound=1314128.766524, norm of subgrad 1146.852112 dualbound = 3781570.766524, lowerbound=1314128.766524, norm of subgrad 34.298532 stepsize= 1.000000 +dualbound = 3781633.503040, lowerbound=1306502.503040, norm of subgrad 1143.524597 dualbound = 3781633.503040, lowerbound=1306502.503040, norm of subgrad 34.766888 stepsize= 1.000000 +dualbound = 3781642.046869, lowerbound=1311219.046869, norm of subgrad 1145.608156 dualbound = 3781642.046869, lowerbound=1311219.046869, norm of subgrad 34.749731 stepsize= 1.000000 +dualbound = 3781731.741993, lowerbound=1311792.741993, norm of subgrad 1145.820118 dualbound = 3781731.741993, lowerbound=1311792.741993, norm of subgrad 34.651048 stepsize= 1.000000 +dualbound = 3781793.453039, lowerbound=1311222.453039, norm of subgrad 1145.578218 dualbound = 3781793.453039, lowerbound=1311222.453039, norm of subgrad 34.477689 stepsize= 1.000000 +dualbound = 3781836.158686, lowerbound=1308593.158686, norm of subgrad 1144.451903 dualbound = 3781836.158686, lowerbound=1308593.158686, norm of subgrad 34.924284 stepsize= 1.000000 +dualbound = 3781895.312327, lowerbound=1312242.312327, norm of subgrad 1146.049001 dualbound = 3781895.312327, lowerbound=1312242.312327, norm of subgrad 35.286735 stepsize= 1.000000 +dualbound = 3781963.169393, lowerbound=1309637.169393, norm of subgrad 1144.875176 dualbound = 3781963.169393, lowerbound=1309637.169393, norm of subgrad 34.203173 stepsize= 1.000000 +dualbound = 3782043.465518, lowerbound=1310009.465518, norm of subgrad 1144.998020 dualbound = 3782043.465518, lowerbound=1310009.465518, norm of subgrad 33.034771 stepsize= 1.000000 +dualbound = 3782114.162313, lowerbound=1311870.162313, norm of subgrad 1145.833828 dualbound = 3782114.162313, lowerbound=1311870.162313, norm of subgrad 33.700101 stepsize= 1.000000 +dualbound = 3782141.784365, lowerbound=1306664.784365, norm of subgrad 1143.589430 dualbound = 3782141.784365, lowerbound=1306664.784365, norm of subgrad 34.053224 stepsize= 1.000000 +dualbound = 3782188.391879, lowerbound=1314394.391879, norm of subgrad 1146.980554 dualbound = 3782188.391879, lowerbound=1314394.391879, norm of subgrad 34.879901 stepsize= 1.000000 +dualbound = 3782232.235443, lowerbound=1310566.235443, norm of subgrad 1145.317963 dualbound = 3782232.235443, lowerbound=1310566.235443, norm of subgrad 35.083380 stepsize= 1.000000 +dualbound = 3782304.923338, lowerbound=1306750.923338, norm of subgrad 1143.619659 dualbound = 3782304.923338, lowerbound=1306750.923338, norm of subgrad 34.462848 stepsize= 1.000000 +dualbound = 3782368.663566, lowerbound=1313261.663566, norm of subgrad 1146.473577 dualbound = 3782368.663566, lowerbound=1313261.663566, norm of subgrad 34.694960 stepsize= 1.000000 +dualbound = 3782412.445387, lowerbound=1315569.445387, norm of subgrad 1147.492678 dualbound = 3782412.445387, lowerbound=1315569.445387, norm of subgrad 34.839372 stepsize= 1.000000 +dualbound = 3782497.224587, lowerbound=1311013.224587, norm of subgrad 1145.466815 dualbound = 3782497.224587, lowerbound=1311013.224587, norm of subgrad 34.143509 stepsize= 1.000000 +dualbound = 3782550.113260, lowerbound=1305667.113260, norm of subgrad 1143.169328 dualbound = 3782550.113260, lowerbound=1305667.113260, norm of subgrad 34.955524 stepsize= 1.000000 +dualbound = 3782571.406817, lowerbound=1312138.406817, norm of subgrad 1145.991015 dualbound = 3782571.406817, lowerbound=1312138.406817, norm of subgrad 34.326281 stepsize= 1.000000 +dualbound = 3782663.076401, lowerbound=1308216.076401, norm of subgrad 1144.308558 dualbound = 3782663.076401, lowerbound=1308216.076401, norm of subgrad 36.299719 stepsize= 1.000000 +dualbound = 3782651.486218, lowerbound=1311098.486218, norm of subgrad 1145.581287 dualbound = 3782651.486218, lowerbound=1311098.486218, norm of subgrad 35.304530 stepsize= 1.000000 +dualbound = 3782758.583976, lowerbound=1309020.583976, norm of subgrad 1144.636005 dualbound = 3782758.583976, lowerbound=1309020.583976, norm of subgrad 35.750493 stepsize= 1.000000 +dualbound = 3782808.808366, lowerbound=1308821.808366, norm of subgrad 1144.536504 dualbound = 3782808.808366, lowerbound=1308821.808366, norm of subgrad 34.528602 stepsize= 1.000000 +dualbound = 3782884.978387, lowerbound=1315052.978387, norm of subgrad 1147.257154 dualbound = 3782884.978387, lowerbound=1315052.978387, norm of subgrad 34.959548 stepsize= 1.000000 +dualbound = 3782934.125384, lowerbound=1307880.125384, norm of subgrad 1144.109315 dualbound = 3782934.125384, lowerbound=1307880.125384, norm of subgrad 33.987454 stepsize= 1.000000 +dualbound = 3783013.811197, lowerbound=1308468.811197, norm of subgrad 1144.373545 dualbound = 3783013.811197, lowerbound=1308468.811197, norm of subgrad 34.665340 stepsize= 1.000000 +dualbound = 3783030.384785, lowerbound=1316837.384785, norm of subgrad 1148.034575 dualbound = 3783030.384785, lowerbound=1316837.384785, norm of subgrad 34.096533 stepsize= 1.000000 +dualbound = 3783103.156968, lowerbound=1306175.156968, norm of subgrad 1143.366152 dualbound = 3783103.156968, lowerbound=1306175.156968, norm of subgrad 34.405991 stepsize= 1.000000 +dualbound = 3783155.541718, lowerbound=1314003.541718, norm of subgrad 1146.763943 dualbound = 3783155.541718, lowerbound=1314003.541718, norm of subgrad 33.412344 stepsize= 1.000000 +dualbound = 3783247.189735, lowerbound=1308684.189735, norm of subgrad 1144.498663 dualbound = 3783247.189735, lowerbound=1308684.189735, norm of subgrad 35.841987 stepsize= 1.000000 +dualbound = 3783259.161263, lowerbound=1310357.161263, norm of subgrad 1145.193940 dualbound = 3783259.161263, lowerbound=1310357.161263, norm of subgrad 33.525685 stepsize= 1.000000 +dualbound = 3783351.199694, lowerbound=1307786.199694, norm of subgrad 1144.026748 dualbound = 3783351.199694, lowerbound=1307786.199694, norm of subgrad 33.212022 stepsize= 1.000000 +dualbound = 3783412.989271, lowerbound=1309209.989271, norm of subgrad 1144.668506 dualbound = 3783412.989271, lowerbound=1309209.989271, norm of subgrad 33.433360 stepsize= 1.000000 +dualbound = 3783478.852897, lowerbound=1314368.852897, norm of subgrad 1146.941957 dualbound = 3783478.852897, lowerbound=1314368.852897, norm of subgrad 34.247097 stepsize= 1.000000 +dualbound = 3783506.783548, lowerbound=1306307.783548, norm of subgrad 1143.432894 dualbound = 3783506.783548, lowerbound=1306307.783548, norm of subgrad 34.043071 stepsize= 1.000000 +dualbound = 3783557.707321, lowerbound=1310327.707321, norm of subgrad 1145.183264 dualbound = 3783557.707321, lowerbound=1310327.707321, norm of subgrad 34.174900 stepsize= 1.000000 +dualbound = 3783621.924032, lowerbound=1318239.924032, norm of subgrad 1148.634374 dualbound = 3783621.924032, lowerbound=1318239.924032, norm of subgrad 34.426977 stepsize= 1.000000 +dualbound = 3783695.858631, lowerbound=1306751.858631, norm of subgrad 1143.609574 dualbound = 3783695.858631, lowerbound=1306751.858631, norm of subgrad 34.131138 stepsize= 1.000000 +dualbound = 3783733.013937, lowerbound=1312621.013937, norm of subgrad 1146.179748 dualbound = 3783733.013937, lowerbound=1312621.013937, norm of subgrad 33.825365 stepsize= 1.000000 +dualbound = 3783793.998432, lowerbound=1306973.998432, norm of subgrad 1143.737294 dualbound = 3783793.998432, lowerbound=1306973.998432, norm of subgrad 34.956895 stepsize= 1.000000 +dualbound = 3783818.534117, lowerbound=1310633.534117, norm of subgrad 1145.339048 dualbound = 3783818.534117, lowerbound=1310633.534117, norm of subgrad 34.533110 stepsize= 1.000000 +dualbound = 3783910.511543, lowerbound=1309261.511543, norm of subgrad 1144.722460 dualbound = 3783910.511543, lowerbound=1309261.511543, norm of subgrad 34.928175 stepsize= 1.000000 +dualbound = 3783955.724343, lowerbound=1313691.724343, norm of subgrad 1146.658504 dualbound = 3783955.724343, lowerbound=1313691.724343, norm of subgrad 34.339668 stepsize= 1.000000 +dualbound = 3784008.990667, lowerbound=1307076.990667, norm of subgrad 1143.771389 dualbound = 3784008.990667, lowerbound=1307076.990667, norm of subgrad 34.485741 stepsize= 1.000000 +dualbound = 3784076.374125, lowerbound=1308690.374125, norm of subgrad 1144.495685 dualbound = 3784076.374125, lowerbound=1308690.374125, norm of subgrad 35.318316 stepsize= 1.000000 +dualbound = 3784111.181928, lowerbound=1311356.181928, norm of subgrad 1145.656660 dualbound = 3784111.181928, lowerbound=1311356.181928, norm of subgrad 34.753529 stepsize= 1.000000 +dualbound = 3784168.897608, lowerbound=1308899.897608, norm of subgrad 1144.602070 dualbound = 3784168.897608, lowerbound=1308899.897608, norm of subgrad 35.661123 stepsize= 1.000000 +dualbound = 3784225.734417, lowerbound=1311751.734417, norm of subgrad 1145.837569 dualbound = 3784225.734417, lowerbound=1311751.734417, norm of subgrad 35.338885 stepsize= 1.000000 +dualbound = 3784269.403499, lowerbound=1314483.403499, norm of subgrad 1147.039844 dualbound = 3784269.403499, lowerbound=1314483.403499, norm of subgrad 35.505902 stepsize= 1.000000 +dualbound = 3784348.325235, lowerbound=1307256.325235, norm of subgrad 1143.874698 dualbound = 3784348.325235, lowerbound=1307256.325235, norm of subgrad 35.664012 stepsize= 1.000000 +dualbound = 3784394.018081, lowerbound=1311881.018081, norm of subgrad 1145.869547 dualbound = 3784394.018081, lowerbound=1311881.018081, norm of subgrad 34.375760 stepsize= 1.000000 +dualbound = 3784471.538235, lowerbound=1311188.538235, norm of subgrad 1145.549012 dualbound = 3784471.538235, lowerbound=1311188.538235, norm of subgrad 34.227477 stepsize= 1.000000 +dualbound = 3784548.857448, lowerbound=1311231.857448, norm of subgrad 1145.603709 dualbound = 3784548.857448, lowerbound=1311231.857448, norm of subgrad 35.402249 stepsize= 1.000000 +dualbound = 3784553.040669, lowerbound=1313568.040669, norm of subgrad 1146.608495 dualbound = 3784553.040669, lowerbound=1313568.040669, norm of subgrad 33.870093 stepsize= 1.000000 +dualbound = 3784657.956974, lowerbound=1311876.956974, norm of subgrad 1145.843775 dualbound = 3784657.956974, lowerbound=1311876.956974, norm of subgrad 34.437136 stepsize= 1.000000 +dualbound = 3784687.751359, lowerbound=1313117.751359, norm of subgrad 1146.375921 dualbound = 3784687.751359, lowerbound=1313117.751359, norm of subgrad 33.012034 stepsize= 1.000000 +dualbound = 3784800.505923, lowerbound=1311672.505923, norm of subgrad 1145.744957 dualbound = 3784800.505923, lowerbound=1311672.505923, norm of subgrad 34.230901 stepsize= 1.000000 +dualbound = 3784803.362859, lowerbound=1312695.362859, norm of subgrad 1146.207818 dualbound = 3784803.362859, lowerbound=1312695.362859, norm of subgrad 33.164091 stepsize= 1.000000 +dualbound = 3784864.375347, lowerbound=1308267.375347, norm of subgrad 1144.321360 dualbound = 3784864.375347, lowerbound=1308267.375347, norm of subgrad 35.567014 stepsize= 1.000000 +dualbound = 3784898.349127, lowerbound=1310251.349127, norm of subgrad 1145.166079 dualbound = 3784898.349127, lowerbound=1310251.349127, norm of subgrad 34.466996 stepsize= 1.000000 +dualbound = 3784980.450807, lowerbound=1309466.450807, norm of subgrad 1144.822017 dualbound = 3784980.450807, lowerbound=1309466.450807, norm of subgrad 35.115548 stepsize= 1.000000 +dualbound = 3785025.508898, lowerbound=1310749.508898, norm of subgrad 1145.370905 dualbound = 3785025.508898, lowerbound=1310749.508898, norm of subgrad 34.206112 stepsize= 1.000000 +dualbound = 3785085.922719, lowerbound=1306206.922719, norm of subgrad 1143.416776 dualbound = 3785085.922719, lowerbound=1306206.922719, norm of subgrad 35.431819 stepsize= 1.000000 +dualbound = 3785121.724888, lowerbound=1310162.724888, norm of subgrad 1145.135243 dualbound = 3785121.724888, lowerbound=1310162.724888, norm of subgrad 34.753448 stepsize= 1.000000 +dualbound = 3785206.184540, lowerbound=1307196.184540, norm of subgrad 1143.828739 dualbound = 3785206.184540, lowerbound=1307196.184540, norm of subgrad 35.106405 stepsize= 1.000000 +dualbound = 3785287.538245, lowerbound=1309806.538245, norm of subgrad 1144.941718 dualbound = 3785287.538245, lowerbound=1309806.538245, norm of subgrad 34.151921 stepsize= 1.000000 +dualbound = 3785328.286962, lowerbound=1308721.286962, norm of subgrad 1144.486910 dualbound = 3785328.286962, lowerbound=1308721.286962, norm of subgrad 34.201589 stepsize= 1.000000 +dualbound = 3785348.505856, lowerbound=1310147.505856, norm of subgrad 1145.151303 dualbound = 3785348.505856, lowerbound=1310147.505856, norm of subgrad 35.273487 stepsize= 1.000000 +dualbound = 3785432.454849, lowerbound=1306449.454849, norm of subgrad 1143.516705 dualbound = 3785432.454849, lowerbound=1306449.454849, norm of subgrad 35.566121 stepsize= 1.000000 +dualbound = 3785473.046163, lowerbound=1315542.046163, norm of subgrad 1147.490325 dualbound = 3785473.046163, lowerbound=1315542.046163, norm of subgrad 35.108280 stepsize= 1.000000 +dualbound = 3785525.885863, lowerbound=1310578.885863, norm of subgrad 1145.335709 dualbound = 3785525.885863, lowerbound=1310578.885863, norm of subgrad 35.606737 stepsize= 1.000000 +dualbound = 3785597.384550, lowerbound=1311632.384550, norm of subgrad 1145.781561 dualbound = 3785597.384550, lowerbound=1311632.384550, norm of subgrad 35.418903 stepsize= 1.000000 +dualbound = 3785662.400605, lowerbound=1307479.400605, norm of subgrad 1143.959528 dualbound = 3785662.400605, lowerbound=1307479.400605, norm of subgrad 35.057325 stepsize= 1.000000 +dualbound = 3785748.275527, lowerbound=1312758.275527, norm of subgrad 1146.232645 dualbound = 3785748.275527, lowerbound=1312758.275527, norm of subgrad 34.305611 stepsize= 1.000000 +dualbound = 3785798.181477, lowerbound=1306089.181477, norm of subgrad 1143.328554 dualbound = 3785798.181477, lowerbound=1306089.181477, norm of subgrad 34.072070 stepsize= 1.000000 +dualbound = 3785846.624954, lowerbound=1310694.624954, norm of subgrad 1145.345199 dualbound = 3785846.624954, lowerbound=1310694.624954, norm of subgrad 34.197127 stepsize= 1.000000 +dualbound = 3785891.953997, lowerbound=1311168.953997, norm of subgrad 1145.596768 dualbound = 3785891.953997, lowerbound=1311168.953997, norm of subgrad 35.613608 stepsize= 1.000000 +dualbound = 3785946.598222, lowerbound=1311071.598222, norm of subgrad 1145.498406 dualbound = 3785946.598222, lowerbound=1311071.598222, norm of subgrad 33.906404 stepsize= 1.000000 +dualbound = 3786029.060875, lowerbound=1315608.060875, norm of subgrad 1147.491203 dualbound = 3786029.060875, lowerbound=1315608.060875, norm of subgrad 34.791704 stepsize= 1.000000 +dualbound = 3786066.205011, lowerbound=1312123.205011, norm of subgrad 1145.960822 dualbound = 3786066.205011, lowerbound=1312123.205011, norm of subgrad 33.766020 stepsize= 1.000000 +dualbound = 3786138.435139, lowerbound=1306659.435139, norm of subgrad 1143.574412 dualbound = 3786138.435139, lowerbound=1306659.435139, norm of subgrad 34.281630 stepsize= 1.000000 +dualbound = 3786181.975100, lowerbound=1312739.975100, norm of subgrad 1146.232077 dualbound = 3786181.975100, lowerbound=1312739.975100, norm of subgrad 33.934348 stepsize= 1.000000 +dualbound = 3786233.686439, lowerbound=1307242.686439, norm of subgrad 1143.865677 dualbound = 3786233.686439, lowerbound=1307242.686439, norm of subgrad 35.181122 stepsize= 1.000000 +dualbound = 3786276.493620, lowerbound=1315760.493620, norm of subgrad 1147.575485 dualbound = 3786276.493620, lowerbound=1315760.493620, norm of subgrad 34.811021 stepsize= 1.000000 +dualbound = 3786345.733430, lowerbound=1308104.733430, norm of subgrad 1144.210965 dualbound = 3786345.733430, lowerbound=1308104.733430, norm of subgrad 34.398253 stepsize= 1.000000 +dualbound = 3786409.117748, lowerbound=1309432.117748, norm of subgrad 1144.790425 dualbound = 3786409.117748, lowerbound=1309432.117748, norm of subgrad 34.298459 stepsize= 1.000000 +dualbound = 3786476.154194, lowerbound=1305619.154194, norm of subgrad 1143.148789 dualbound = 3786476.154194, lowerbound=1305619.154194, norm of subgrad 35.171529 stepsize= 1.000000 +dualbound = 3786512.907567, lowerbound=1311035.907567, norm of subgrad 1145.477589 dualbound = 3786512.907567, lowerbound=1311035.907567, norm of subgrad 33.462716 stepsize= 1.000000 +dualbound = 3786593.207661, lowerbound=1311653.207661, norm of subgrad 1145.755300 dualbound = 3786593.207661, lowerbound=1311653.207661, norm of subgrad 34.384591 stepsize= 1.000000 +dualbound = 3786645.774216, lowerbound=1319157.774216, norm of subgrad 1149.046898 dualbound = 3786645.774216, lowerbound=1319157.774216, norm of subgrad 34.692457 stepsize= 1.000000 +dualbound = 3786679.865236, lowerbound=1307383.865236, norm of subgrad 1143.927386 dualbound = 3786679.865236, lowerbound=1307383.865236, norm of subgrad 34.929801 stepsize= 1.000000 +dualbound = 3786723.095347, lowerbound=1312762.095347, norm of subgrad 1146.294506 dualbound = 3786723.095347, lowerbound=1312762.095347, norm of subgrad 35.668335 stepsize= 1.000000 +dualbound = 3786768.428329, lowerbound=1312025.428329, norm of subgrad 1145.946957 dualbound = 3786768.428329, lowerbound=1312025.428329, norm of subgrad 34.847281 stepsize= 1.000000 +dualbound = 3786842.287665, lowerbound=1308539.287665, norm of subgrad 1144.430989 dualbound = 3786842.287665, lowerbound=1308539.287665, norm of subgrad 35.452212 stepsize= 1.000000 +dualbound = 3786902.430630, lowerbound=1310406.430630, norm of subgrad 1145.237281 dualbound = 3786902.430630, lowerbound=1310406.430630, norm of subgrad 34.959161 stepsize= 1.000000 +dualbound = 3786966.605658, lowerbound=1314878.605658, norm of subgrad 1147.194232 dualbound = 3786966.605658, lowerbound=1314878.605658, norm of subgrad 35.216119 stepsize= 1.000000 +dualbound = 3787007.581652, lowerbound=1310719.581652, norm of subgrad 1145.385342 dualbound = 3787007.581652, lowerbound=1310719.581652, norm of subgrad 35.056754 stepsize= 1.000000 +dualbound = 3787080.981622, lowerbound=1315682.981622, norm of subgrad 1147.540405 dualbound = 3787080.981622, lowerbound=1315682.981622, norm of subgrad 35.205113 stepsize= 1.000000 +dualbound = 3787108.177897, lowerbound=1310453.177897, norm of subgrad 1145.255944 dualbound = 3787108.177897, lowerbound=1310453.177897, norm of subgrad 34.426680 stepsize= 1.000000 +dualbound = 3787201.395417, lowerbound=1308362.395417, norm of subgrad 1144.343216 dualbound = 3787201.395417, lowerbound=1308362.395417, norm of subgrad 35.386686 stepsize= 1.000000 +dualbound = 3787235.404092, lowerbound=1313782.404092, norm of subgrad 1146.699788 dualbound = 3787235.404092, lowerbound=1313782.404092, norm of subgrad 34.234612 stepsize= 1.000000 +dualbound = 3787331.500990, lowerbound=1307052.500990, norm of subgrad 1143.755438 dualbound = 3787331.500990, lowerbound=1307052.500990, norm of subgrad 34.929885 stepsize= 1.000000 +dualbound = 3787360.151053, lowerbound=1312900.151053, norm of subgrad 1146.311978 dualbound = 3787360.151053, lowerbound=1312900.151053, norm of subgrad 34.053635 stepsize= 1.000000 +dualbound = 3787442.550913, lowerbound=1310012.550913, norm of subgrad 1145.045218 dualbound = 3787442.550913, lowerbound=1310012.550913, norm of subgrad 34.617912 stepsize= 1.000000 +dualbound = 3787485.668726, lowerbound=1307335.668726, norm of subgrad 1143.891021 dualbound = 3787485.668726, lowerbound=1307335.668726, norm of subgrad 34.556010 stepsize= 1.000000 +dualbound = 3787531.241003, lowerbound=1308689.241003, norm of subgrad 1144.477715 dualbound = 3787531.241003, lowerbound=1308689.241003, norm of subgrad 34.432140 stepsize= 1.000000 +dualbound = 3787599.611540, lowerbound=1312112.611540, norm of subgrad 1145.986305 dualbound = 3787599.611540, lowerbound=1312112.611540, norm of subgrad 35.218895 stepsize= 1.000000 +dualbound = 3787638.660565, lowerbound=1313475.660565, norm of subgrad 1146.579548 dualbound = 3787638.660565, lowerbound=1313475.660565, norm of subgrad 34.757000 stepsize= 1.000000 +dualbound = 3787707.272942, lowerbound=1313529.272942, norm of subgrad 1146.587229 dualbound = 3787707.272942, lowerbound=1313529.272942, norm of subgrad 34.664281 stepsize= 1.000000 +dualbound = 3787781.537107, lowerbound=1307387.537107, norm of subgrad 1143.894461 dualbound = 3787781.537107, lowerbound=1307387.537107, norm of subgrad 34.369524 stepsize= 1.000000 +dualbound = 3787846.903412, lowerbound=1309690.903412, norm of subgrad 1144.889909 dualbound = 3787846.903412, lowerbound=1309690.903412, norm of subgrad 33.872796 stepsize= 1.000000 +dualbound = 3787903.194646, lowerbound=1306738.194646, norm of subgrad 1143.592670 dualbound = 3787903.194646, lowerbound=1306738.194646, norm of subgrad 33.500615 stepsize= 1.000000 +dualbound = 3787951.960292, lowerbound=1310672.960292, norm of subgrad 1145.375467 dualbound = 3787951.960292, lowerbound=1310672.960292, norm of subgrad 35.507262 stepsize= 1.000000 +dualbound = 3787978.344313, lowerbound=1313748.344313, norm of subgrad 1146.704122 dualbound = 3787978.344313, lowerbound=1313748.344313, norm of subgrad 34.761818 stepsize= 1.000000 +dualbound = 3788032.180577, lowerbound=1309857.180577, norm of subgrad 1144.992219 dualbound = 3788032.180577, lowerbound=1309857.180577, norm of subgrad 34.696344 stepsize= 1.000000 +dualbound = 3788099.451330, lowerbound=1316716.451330, norm of subgrad 1147.981468 dualbound = 3788099.451330, lowerbound=1316716.451330, norm of subgrad 34.817679 stepsize= 1.000000 +dualbound = 3788159.145316, lowerbound=1309389.145316, norm of subgrad 1144.760300 dualbound = 3788159.145316, lowerbound=1309389.145316, norm of subgrad 33.862870 stepsize= 1.000000 +dualbound = 3788228.369522, lowerbound=1316258.369522, norm of subgrad 1147.795003 dualbound = 3788228.369522, lowerbound=1316258.369522, norm of subgrad 35.273562 stepsize= 1.000000 +dualbound = 3788254.308257, lowerbound=1310624.308257, norm of subgrad 1145.341568 dualbound = 3788254.308257, lowerbound=1310624.308257, norm of subgrad 34.769796 stepsize= 1.000000 +dualbound = 3788313.617688, lowerbound=1307198.617688, norm of subgrad 1143.834174 dualbound = 3788313.617688, lowerbound=1307198.617688, norm of subgrad 34.889962 stepsize= 1.000000 +dualbound = 3788356.403941, lowerbound=1307633.403941, norm of subgrad 1144.043882 dualbound = 3788356.403941, lowerbound=1307633.403941, norm of subgrad 35.295697 stepsize= 1.000000 +dualbound = 3788456.660525, lowerbound=1315903.660525, norm of subgrad 1147.646139 dualbound = 3788456.660525, lowerbound=1315903.660525, norm of subgrad 35.892291 stepsize= 1.000000 +dualbound = 3788473.544774, lowerbound=1308762.544774, norm of subgrad 1144.531583 dualbound = 3788473.544774, lowerbound=1308762.544774, norm of subgrad 34.740240 stepsize= 1.000000 +dualbound = 3788550.512826, lowerbound=1318883.512826, norm of subgrad 1148.926243 dualbound = 3788550.512826, lowerbound=1318883.512826, norm of subgrad 34.999544 stepsize= 1.000000 +dualbound = 3788608.547066, lowerbound=1304581.547066, norm of subgrad 1142.694424 dualbound = 3788608.547066, lowerbound=1304581.547066, norm of subgrad 35.029049 stepsize= 1.000000 +dualbound = 3788660.013957, lowerbound=1315325.013957, norm of subgrad 1147.370914 dualbound = 3788660.013957, lowerbound=1315325.013957, norm of subgrad 34.445129 stepsize= 1.000000 +dualbound = 3788730.255855, lowerbound=1312318.255855, norm of subgrad 1146.036324 dualbound = 3788730.255855, lowerbound=1312318.255855, norm of subgrad 33.929956 stepsize= 1.000000 +dualbound = 3788803.310640, lowerbound=1312382.310640, norm of subgrad 1146.068633 dualbound = 3788803.310640, lowerbound=1312382.310640, norm of subgrad 34.118247 stepsize= 1.000000 +dualbound = 3788825.163394, lowerbound=1308852.163394, norm of subgrad 1144.559812 dualbound = 3788825.163394, lowerbound=1308852.163394, norm of subgrad 34.450729 stepsize= 1.000000 +dualbound = 3788904.766767, lowerbound=1310692.766767, norm of subgrad 1145.344388 dualbound = 3788904.766767, lowerbound=1310692.766767, norm of subgrad 34.649724 stepsize= 1.000000 +dualbound = 3788958.782090, lowerbound=1311739.782090, norm of subgrad 1145.811844 dualbound = 3788958.782090, lowerbound=1311739.782090, norm of subgrad 34.626801 stepsize= 1.000000 +dualbound = 3788999.078055, lowerbound=1310754.078055, norm of subgrad 1145.379884 dualbound = 3788999.078055, lowerbound=1310754.078055, norm of subgrad 34.369986 stepsize= 1.000000 +dualbound = 3789081.465270, lowerbound=1310678.465270, norm of subgrad 1145.335525 dualbound = 3789081.465270, lowerbound=1310678.465270, norm of subgrad 34.603283 stepsize= 1.000000 +dualbound = 3789113.052492, lowerbound=1311227.052492, norm of subgrad 1145.621252 dualbound = 3789113.052492, lowerbound=1311227.052492, norm of subgrad 35.391909 stepsize= 1.000000 +dualbound = 3789143.778340, lowerbound=1312686.778340, norm of subgrad 1146.259036 dualbound = 3789143.778340, lowerbound=1312686.778340, norm of subgrad 35.407991 stepsize= 1.000000 +dualbound = 3789200.546857, lowerbound=1316534.546857, norm of subgrad 1147.924887 dualbound = 3789200.546857, lowerbound=1316534.546857, norm of subgrad 35.408594 stepsize= 1.000000 +dualbound = 3789284.431977, lowerbound=1314894.431977, norm of subgrad 1147.198950 dualbound = 3789284.431977, lowerbound=1314894.431977, norm of subgrad 35.424358 stepsize= 1.000000 +dualbound = 3789329.479692, lowerbound=1310043.479692, norm of subgrad 1145.068330 dualbound = 3789329.479692, lowerbound=1310043.479692, norm of subgrad 34.395461 stepsize= 1.000000 +dualbound = 3789406.095244, lowerbound=1313797.095244, norm of subgrad 1146.713606 dualbound = 3789406.095244, lowerbound=1313797.095244, norm of subgrad 35.094381 stepsize= 1.000000 +dualbound = 3789463.963814, lowerbound=1304077.963814, norm of subgrad 1142.448670 dualbound = 3789463.963814, lowerbound=1304077.963814, norm of subgrad 34.188720 stepsize= 1.000000 +dualbound = 3789530.223647, lowerbound=1316361.223647, norm of subgrad 1147.834145 dualbound = 3789530.223647, lowerbound=1316361.223647, norm of subgrad 35.046538 stepsize= 1.000000 +dualbound = 3789557.834219, lowerbound=1312366.834219, norm of subgrad 1146.099400 dualbound = 3789557.834219, lowerbound=1312366.834219, norm of subgrad 34.707500 stepsize= 1.000000 +dualbound = 3789627.948634, lowerbound=1314356.948634, norm of subgrad 1146.962488 dualbound = 3789627.948634, lowerbound=1314356.948634, norm of subgrad 35.158419 stepsize= 1.000000 +dualbound = 3789673.945488, lowerbound=1312717.945488, norm of subgrad 1146.267397 dualbound = 3789673.945488, lowerbound=1312717.945488, norm of subgrad 35.454151 stepsize= 1.000000 +dualbound = 3789753.101661, lowerbound=1311289.101661, norm of subgrad 1145.595959 dualbound = 3789753.101661, lowerbound=1311289.101661, norm of subgrad 34.353401 stepsize= 1.000000 +dualbound = 3789826.129463, lowerbound=1307917.129463, norm of subgrad 1144.129420 dualbound = 3789826.129463, lowerbound=1307917.129463, norm of subgrad 34.467779 stepsize= 1.000000 +dualbound = 3789859.988929, lowerbound=1309198.988929, norm of subgrad 1144.713060 dualbound = 3789859.988929, lowerbound=1309198.988929, norm of subgrad 34.682264 stepsize= 1.000000 +dualbound = 3789901.084527, lowerbound=1313908.084527, norm of subgrad 1146.761564 dualbound = 3789901.084527, lowerbound=1313908.084527, norm of subgrad 34.570155 stepsize= 1.000000 +dualbound = 3789955.146668, lowerbound=1309012.146668, norm of subgrad 1144.625330 dualbound = 3789955.146668, lowerbound=1309012.146668, norm of subgrad 34.771571 stepsize= 1.000000 +dualbound = 3790038.228642, lowerbound=1313798.228642, norm of subgrad 1146.713229 dualbound = 3790038.228642, lowerbound=1313798.228642, norm of subgrad 35.157957 stepsize= 1.000000 +dualbound = 3790092.142538, lowerbound=1308327.142538, norm of subgrad 1144.324754 dualbound = 3790092.142538, lowerbound=1308327.142538, norm of subgrad 34.726271 stepsize= 1.000000 +dualbound = 3790126.298179, lowerbound=1309621.298179, norm of subgrad 1144.891391 dualbound = 3790126.298179, lowerbound=1309621.298179, norm of subgrad 34.484136 stepsize= 1.000000 +dualbound = 3790201.179868, lowerbound=1308905.179868, norm of subgrad 1144.580351 dualbound = 3790201.179868, lowerbound=1308905.179868, norm of subgrad 35.126652 stepsize= 1.000000 +dualbound = 3790257.540585, lowerbound=1309925.540585, norm of subgrad 1144.974908 dualbound = 3790257.540585, lowerbound=1309925.540585, norm of subgrad 33.141526 stepsize= 1.000000 +dualbound = 3790339.220558, lowerbound=1307070.220558, norm of subgrad 1143.781981 dualbound = 3790339.220558, lowerbound=1307070.220558, norm of subgrad 35.336666 stepsize= 1.000000 +dualbound = 3790338.568789, lowerbound=1308441.568789, norm of subgrad 1144.387858 dualbound = 3790338.568789, lowerbound=1308441.568789, norm of subgrad 34.370747 stepsize= 1.000000 +dualbound = 3790439.806824, lowerbound=1315011.806824, norm of subgrad 1147.232238 dualbound = 3790439.806824, lowerbound=1315011.806824, norm of subgrad 35.089002 stepsize= 1.000000 +dualbound = 3790476.429543, lowerbound=1306795.429543, norm of subgrad 1143.656605 dualbound = 3790476.429543, lowerbound=1306795.429543, norm of subgrad 34.519889 stepsize= 1.000000 +dualbound = 3790530.101594, lowerbound=1316385.101594, norm of subgrad 1147.853693 dualbound = 3790530.101594, lowerbound=1316385.101594, norm of subgrad 35.166348 stepsize= 1.000000 +dualbound = 3790595.712863, lowerbound=1309502.712863, norm of subgrad 1144.820821 dualbound = 3790595.712863, lowerbound=1309502.712863, norm of subgrad 34.316341 stepsize= 1.000000 +dualbound = 3790658.326074, lowerbound=1307724.326074, norm of subgrad 1144.065700 dualbound = 3790658.326074, lowerbound=1307724.326074, norm of subgrad 34.994474 stepsize= 1.000000 +dualbound = 3790697.299116, lowerbound=1313437.299116, norm of subgrad 1146.566308 dualbound = 3790697.299116, lowerbound=1313437.299116, norm of subgrad 34.870805 stepsize= 1.000000 +dualbound = 3790769.379823, lowerbound=1314684.379823, norm of subgrad 1147.086910 dualbound = 3790769.379823, lowerbound=1314684.379823, norm of subgrad 34.584400 stepsize= 1.000000 +dualbound = 3790818.609681, lowerbound=1315733.609681, norm of subgrad 1147.559850 dualbound = 3790818.609681, lowerbound=1315733.609681, norm of subgrad 34.773982 stepsize= 1.000000 +dualbound = 3790855.235978, lowerbound=1310326.235978, norm of subgrad 1145.187861 dualbound = 3790855.235978, lowerbound=1310326.235978, norm of subgrad 34.141270 stepsize= 1.000000 +dualbound = 3790942.244168, lowerbound=1313254.244168, norm of subgrad 1146.448971 dualbound = 3790942.244168, lowerbound=1313254.244168, norm of subgrad 34.322124 stepsize= 1.000000 +dualbound = 3790982.264774, lowerbound=1314998.264774, norm of subgrad 1147.267303 dualbound = 3790982.264774, lowerbound=1314998.264774, norm of subgrad 35.553067 stepsize= 1.000000 +dualbound = 3791004.353187, lowerbound=1314206.353187, norm of subgrad 1146.905120 dualbound = 3791004.353187, lowerbound=1314206.353187, norm of subgrad 34.743178 stepsize= 1.000000 +dualbound = 3791084.276175, lowerbound=1314744.276175, norm of subgrad 1147.098198 dualbound = 3791084.276175, lowerbound=1314744.276175, norm of subgrad 34.204137 stepsize= 1.000000 +dualbound = 3791163.195245, lowerbound=1310881.195245, norm of subgrad 1145.393467 dualbound = 3791163.195245, lowerbound=1310881.195245, norm of subgrad 33.524902 stepsize= 1.000000 +dualbound = 3791235.112374, lowerbound=1311133.112374, norm of subgrad 1145.521328 dualbound = 3791235.112374, lowerbound=1311133.112374, norm of subgrad 34.028181 stepsize= 1.000000 +dualbound = 3791261.474329, lowerbound=1311738.474329, norm of subgrad 1145.797309 dualbound = 3791261.474329, lowerbound=1311738.474329, norm of subgrad 33.754436 stepsize= 1.000000 +dualbound = 3791331.791489, lowerbound=1311488.791489, norm of subgrad 1145.706241 dualbound = 3791331.791489, lowerbound=1311488.791489, norm of subgrad 34.990244 stepsize= 1.000000 +dualbound = 3791375.712569, lowerbound=1315815.712569, norm of subgrad 1147.587780 dualbound = 3791375.712569, lowerbound=1315815.712569, norm of subgrad 34.437205 stepsize= 1.000000 +dualbound = 3791425.757710, lowerbound=1305943.757710, norm of subgrad 1143.289446 dualbound = 3791425.757710, lowerbound=1305943.757710, norm of subgrad 34.886174 stepsize= 1.000000 +dualbound = 3791481.985149, lowerbound=1310657.985149, norm of subgrad 1145.358016 dualbound = 3791481.985149, lowerbound=1310657.985149, norm of subgrad 35.259431 stepsize= 1.000000 +dualbound = 3791531.036918, lowerbound=1309068.036918, norm of subgrad 1144.674206 dualbound = 3791531.036918, lowerbound=1309068.036918, norm of subgrad 35.497208 stepsize= 1.000000 +dualbound = 3791581.461475, lowerbound=1317314.461475, norm of subgrad 1148.271946 dualbound = 3791581.461475, lowerbound=1317314.461475, norm of subgrad 35.558748 stepsize= 1.000000 +dualbound = 3791644.229277, lowerbound=1308738.229277, norm of subgrad 1144.499117 dualbound = 3791644.229277, lowerbound=1308738.229277, norm of subgrad 34.680943 stepsize= 1.000000 +dualbound = 3791734.273779, lowerbound=1305248.273779, norm of subgrad 1142.975185 dualbound = 3791734.273779, lowerbound=1305248.273779, norm of subgrad 35.128970 stepsize= 1.000000 +dualbound = 3791746.656367, lowerbound=1311617.656367, norm of subgrad 1145.750259 dualbound = 3791746.656367, lowerbound=1311617.656367, norm of subgrad 33.739926 stepsize= 1.000000 +dualbound = 3791836.930313, lowerbound=1311582.930313, norm of subgrad 1145.719394 dualbound = 3791836.930313, lowerbound=1311582.930313, norm of subgrad 34.355115 stepsize= 1.000000 +dualbound = 3791891.074116, lowerbound=1310803.074116, norm of subgrad 1145.390359 dualbound = 3791891.074116, lowerbound=1310803.074116, norm of subgrad 34.207365 stepsize= 1.000000 +dualbound = 3791936.613140, lowerbound=1308816.613140, norm of subgrad 1144.544282 dualbound = 3791936.613140, lowerbound=1308816.613140, norm of subgrad 34.792801 stepsize= 1.000000 +dualbound = 3791989.289195, lowerbound=1318764.289195, norm of subgrad 1148.879145 dualbound = 3791989.289195, lowerbound=1318764.289195, norm of subgrad 34.809138 stepsize= 1.000000 +dualbound = 3792037.403175, lowerbound=1312440.403175, norm of subgrad 1146.105756 dualbound = 3792037.403175, lowerbound=1312440.403175, norm of subgrad 34.148411 stepsize= 1.000000 +dualbound = 3792101.844973, lowerbound=1308393.844973, norm of subgrad 1144.363511 dualbound = 3792101.844973, lowerbound=1308393.844973, norm of subgrad 35.191502 stepsize= 1.000000 +dualbound = 3792151.578797, lowerbound=1313266.578797, norm of subgrad 1146.500580 dualbound = 3792151.578797, lowerbound=1313266.578797, norm of subgrad 35.309118 stepsize= 1.000000 +dualbound = 3792201.201711, lowerbound=1312177.201711, norm of subgrad 1146.027138 dualbound = 3792201.201711, lowerbound=1312177.201711, norm of subgrad 35.364147 stepsize= 1.000000 +dualbound = 3792254.457944, lowerbound=1312122.457944, norm of subgrad 1145.989292 dualbound = 3792254.457944, lowerbound=1312122.457944, norm of subgrad 34.960781 stepsize= 1.000000 +dualbound = 3792336.419489, lowerbound=1311835.419489, norm of subgrad 1145.847904 dualbound = 3792336.419489, lowerbound=1311835.419489, norm of subgrad 34.841951 stepsize= 1.000000 +dualbound = 3792383.326187, lowerbound=1314388.326187, norm of subgrad 1146.963524 dualbound = 3792383.326187, lowerbound=1314388.326187, norm of subgrad 34.407945 stepsize= 1.000000 +dualbound = 3792444.191405, lowerbound=1311356.191405, norm of subgrad 1145.652300 dualbound = 3792444.191405, lowerbound=1311356.191405, norm of subgrad 34.983785 stepsize= 1.000000 +dualbound = 3792492.243126, lowerbound=1309535.243126, norm of subgrad 1144.831098 dualbound = 3792492.243126, lowerbound=1309535.243126, norm of subgrad 33.927153 stepsize= 1.000000 +dualbound = 3792565.434697, lowerbound=1309399.434697, norm of subgrad 1144.751691 dualbound = 3792565.434697, lowerbound=1309399.434697, norm of subgrad 33.618322 stepsize= 1.000000 +dualbound = 3792638.435487, lowerbound=1306827.435487, norm of subgrad 1143.636059 dualbound = 3792638.435487, lowerbound=1306827.435487, norm of subgrad 33.896914 stepsize= 1.000000 +dualbound = 3792661.369947, lowerbound=1311161.369947, norm of subgrad 1145.553739 dualbound = 3792661.369947, lowerbound=1311161.369947, norm of subgrad 33.984327 stepsize= 1.000000 +dualbound = 3792723.315873, lowerbound=1307869.315873, norm of subgrad 1144.134746 dualbound = 3792723.315873, lowerbound=1307869.315873, norm of subgrad 35.170242 stepsize= 1.000000 +dualbound = 3792778.198541, lowerbound=1318264.198541, norm of subgrad 1148.643634 dualbound = 3792778.198541, lowerbound=1318264.198541, norm of subgrad 34.247375 stepsize= 1.000000 +dualbound = 3792840.153588, lowerbound=1308230.153588, norm of subgrad 1144.280190 dualbound = 3792840.153588, lowerbound=1308230.153588, norm of subgrad 34.770031 stepsize= 1.000000 +dualbound = 3792871.009668, lowerbound=1313670.009668, norm of subgrad 1146.676070 dualbound = 3792871.009668, lowerbound=1313670.009668, norm of subgrad 35.026505 stepsize= 1.000000 +dualbound = 3792923.448097, lowerbound=1307454.448097, norm of subgrad 1143.956926 dualbound = 3792923.448097, lowerbound=1307454.448097, norm of subgrad 35.148804 stepsize= 1.000000 +dualbound = 3792990.023015, lowerbound=1312390.023015, norm of subgrad 1146.108644 dualbound = 3792990.023015, lowerbound=1312390.023015, norm of subgrad 35.235989 stepsize= 1.000000 +dualbound = 3793054.085082, lowerbound=1309008.085082, norm of subgrad 1144.636224 dualbound = 3793054.085082, lowerbound=1309008.085082, norm of subgrad 35.327922 stepsize= 1.000000 +dualbound = 3793100.452579, lowerbound=1314433.452579, norm of subgrad 1146.985376 dualbound = 3793100.452579, lowerbound=1314433.452579, norm of subgrad 34.472707 stepsize= 1.000000 +dualbound = 3793175.347130, lowerbound=1310195.347130, norm of subgrad 1145.135078 dualbound = 3793175.347130, lowerbound=1310195.347130, norm of subgrad 34.840990 stepsize= 1.000000 +dualbound = 3793218.316860, lowerbound=1314745.316860, norm of subgrad 1147.105190 dualbound = 3793218.316860, lowerbound=1314745.316860, norm of subgrad 33.881702 stepsize= 1.000000 +dualbound = 3793314.915639, lowerbound=1312154.915639, norm of subgrad 1145.974658 dualbound = 3793314.915639, lowerbound=1312154.915639, norm of subgrad 34.635225 stepsize= 1.000000 +dualbound = 3793343.098473, lowerbound=1312905.098473, norm of subgrad 1146.330275 dualbound = 3793343.098473, lowerbound=1312905.098473, norm of subgrad 34.585876 stepsize= 1.000000 +dualbound = 3793397.297495, lowerbound=1311279.297495, norm of subgrad 1145.601719 dualbound = 3793397.297495, lowerbound=1311279.297495, norm of subgrad 34.324904 stepsize= 1.000000 +dualbound = 3793450.761200, lowerbound=1314686.761200, norm of subgrad 1147.119768 dualbound = 3793450.761200, lowerbound=1314686.761200, norm of subgrad 35.361896 stepsize= 1.000000 +dualbound = 3793474.565453, lowerbound=1307805.565453, norm of subgrad 1144.121307 dualbound = 3793474.565453, lowerbound=1307805.565453, norm of subgrad 35.097069 stepsize= 1.000000 +dualbound = 3793563.648240, lowerbound=1317086.648240, norm of subgrad 1148.147485 dualbound = 3793563.648240, lowerbound=1317086.648240, norm of subgrad 35.285731 stepsize= 1.000000 +dualbound = 3793600.778732, lowerbound=1312819.778732, norm of subgrad 1146.297858 dualbound = 3793600.778732, lowerbound=1312819.778732, norm of subgrad 34.873063 stepsize= 1.000000 +dualbound = 3793662.396787, lowerbound=1315174.396787, norm of subgrad 1147.310942 dualbound = 3793662.396787, lowerbound=1315174.396787, norm of subgrad 34.779564 stepsize= 1.000000 +dualbound = 3793741.496650, lowerbound=1307806.496650, norm of subgrad 1144.074952 dualbound = 3793741.496650, lowerbound=1307806.496650, norm of subgrad 34.352582 stepsize= 1.000000 +dualbound = 3793790.607111, lowerbound=1313186.607111, norm of subgrad 1146.433429 dualbound = 3793790.607111, lowerbound=1313186.607111, norm of subgrad 34.236099 stepsize= 1.000000 +dualbound = 3793835.295298, lowerbound=1309472.295298, norm of subgrad 1144.821076 dualbound = 3793835.295298, lowerbound=1309472.295298, norm of subgrad 34.462852 stepsize= 1.000000 +dualbound = 3793914.253015, lowerbound=1313433.253015, norm of subgrad 1146.526168 dualbound = 3793914.253015, lowerbound=1313433.253015, norm of subgrad 34.175396 stepsize= 1.000000 +dualbound = 3793973.413420, lowerbound=1312978.413420, norm of subgrad 1146.308167 dualbound = 3793973.413420, lowerbound=1312978.413420, norm of subgrad 33.213859 stepsize= 1.000000 +dualbound = 3794016.782627, lowerbound=1311197.782627, norm of subgrad 1145.561776 dualbound = 3794016.782627, lowerbound=1311197.782627, norm of subgrad 34.020129 stepsize= 1.000000 +dualbound = 3794070.502280, lowerbound=1316759.502280, norm of subgrad 1148.024173 dualbound = 3794070.502280, lowerbound=1316759.502280, norm of subgrad 35.407904 stepsize= 1.000000 +dualbound = 3794088.422111, lowerbound=1308828.422111, norm of subgrad 1144.586573 dualbound = 3794088.422111, lowerbound=1308828.422111, norm of subgrad 35.607862 stepsize= 1.000000 +dualbound = 3794162.045098, lowerbound=1308629.045098, norm of subgrad 1144.447048 dualbound = 3794162.045098, lowerbound=1308629.045098, norm of subgrad 34.693270 stepsize= 1.000000 +dualbound = 3794234.893658, lowerbound=1310535.893658, norm of subgrad 1145.287690 dualbound = 3794234.893658, lowerbound=1310535.893658, norm of subgrad 34.940643 stepsize= 1.000000 +dualbound = 3794302.705275, lowerbound=1310744.705275, norm of subgrad 1145.367061 dualbound = 3794302.705275, lowerbound=1310744.705275, norm of subgrad 34.479148 stepsize= 1.000000 +dualbound = 3794343.101767, lowerbound=1313387.101767, norm of subgrad 1146.524357 dualbound = 3794343.101767, lowerbound=1313387.101767, norm of subgrad 34.225670 stepsize= 1.000000 +dualbound = 3794393.303448, lowerbound=1310944.303448, norm of subgrad 1145.468596 dualbound = 3794393.303448, lowerbound=1310944.303448, norm of subgrad 34.701609 stepsize= 1.000000 +dualbound = 3794455.033972, lowerbound=1311309.033972, norm of subgrad 1145.620807 dualbound = 3794455.033972, lowerbound=1311309.033972, norm of subgrad 34.637126 stepsize= 1.000000 +dualbound = 3794502.685920, lowerbound=1315359.685920, norm of subgrad 1147.396046 dualbound = 3794502.685920, lowerbound=1315359.685920, norm of subgrad 34.722499 stepsize= 1.000000 +dualbound = 3794547.673772, lowerbound=1310424.673772, norm of subgrad 1145.248302 dualbound = 3794547.673772, lowerbound=1310424.673772, norm of subgrad 34.842328 stepsize= 1.000000 +dualbound = 3794627.585186, lowerbound=1309999.585186, norm of subgrad 1145.059643 dualbound = 3794627.585186, lowerbound=1309999.585186, norm of subgrad 35.240764 stepsize= 1.000000 +dualbound = 3794668.739253, lowerbound=1319428.739253, norm of subgrad 1149.158274 dualbound = 3794668.739253, lowerbound=1319428.739253, norm of subgrad 34.309679 stepsize= 1.000000 +dualbound = 3794734.614748, lowerbound=1314389.614748, norm of subgrad 1146.979780 dualbound = 3794734.614748, lowerbound=1314389.614748, norm of subgrad 35.197663 stepsize= 1.000000 +dualbound = 3794765.855774, lowerbound=1314128.855775, norm of subgrad 1146.863050 dualbound = 3794765.855774, lowerbound=1314128.855775, norm of subgrad 34.601171 stepsize= 1.000000 +dualbound = 3794852.747147, lowerbound=1308156.747147, norm of subgrad 1144.253358 dualbound = 3794852.747147, lowerbound=1308156.747147, norm of subgrad 35.297186 stepsize= 1.000000 +dualbound = 3794911.630234, lowerbound=1310727.630234, norm of subgrad 1145.382744 dualbound = 3794911.630234, lowerbound=1310727.630234, norm of subgrad 35.112435 stepsize= 1.000000 +dualbound = 3794965.263910, lowerbound=1311886.263910, norm of subgrad 1145.871399 dualbound = 3794965.263910, lowerbound=1311886.263910, norm of subgrad 34.476567 stepsize= 1.000000 +dualbound = 3795018.887631, lowerbound=1311084.887631, norm of subgrad 1145.525594 dualbound = 3795018.887631, lowerbound=1311084.887631, norm of subgrad 34.606701 stepsize= 1.000000 +dualbound = 3795088.265770, lowerbound=1309281.265770, norm of subgrad 1144.706629 dualbound = 3795088.265770, lowerbound=1309281.265770, norm of subgrad 33.784288 stepsize= 1.000000 +dualbound = 3795167.563840, lowerbound=1316908.563840, norm of subgrad 1148.027684 dualbound = 3795167.563840, lowerbound=1316908.563840, norm of subgrad 33.738673 stepsize= 1.000000 +dualbound = 3795204.544804, lowerbound=1304137.544804, norm of subgrad 1142.511070 dualbound = 3795204.544804, lowerbound=1304137.544804, norm of subgrad 35.085338 stepsize= 1.000000 +dualbound = 3795239.628627, lowerbound=1313041.628627, norm of subgrad 1146.358421 dualbound = 3795239.628627, lowerbound=1313041.628627, norm of subgrad 33.631590 stepsize= 1.000000 +dualbound = 3795317.855581, lowerbound=1315298.855581, norm of subgrad 1147.352542 dualbound = 3795317.855581, lowerbound=1315298.855581, norm of subgrad 34.600968 stepsize= 1.000000 +dualbound = 3795372.645180, lowerbound=1314287.645180, norm of subgrad 1146.902195 dualbound = 3795372.645180, lowerbound=1314287.645180, norm of subgrad 33.938026 stepsize= 1.000000 +dualbound = 3795421.297110, lowerbound=1311187.297110, norm of subgrad 1145.551525 dualbound = 3795421.297110, lowerbound=1311187.297110, norm of subgrad 33.906518 stepsize= 1.000000 +dualbound = 3795501.904276, lowerbound=1307912.904276, norm of subgrad 1144.105285 dualbound = 3795501.904276, lowerbound=1307912.904276, norm of subgrad 33.832043 stepsize= 1.000000 +dualbound = 3795551.370515, lowerbound=1312564.370515, norm of subgrad 1146.152420 dualbound = 3795551.370515, lowerbound=1312564.370515, norm of subgrad 33.918524 stepsize= 1.000000 +dualbound = 3795607.776320, lowerbound=1314832.776320, norm of subgrad 1147.147670 dualbound = 3795607.776320, lowerbound=1314832.776320, norm of subgrad 34.225806 stepsize= 1.000000 +dualbound = 3795650.283993, lowerbound=1313496.283993, norm of subgrad 1146.559760 dualbound = 3795650.283993, lowerbound=1313496.283993, norm of subgrad 33.845349 stepsize= 1.000000 +dualbound = 3795711.688204, lowerbound=1313262.688204, norm of subgrad 1146.477077 dualbound = 3795711.688204, lowerbound=1313262.688204, norm of subgrad 34.762109 stepsize= 1.000000 +dualbound = 3795739.367968, lowerbound=1312279.367968, norm of subgrad 1146.049025 dualbound = 3795739.367968, lowerbound=1312279.367968, norm of subgrad 34.302766 stepsize= 1.000000 +dualbound = 3795832.301940, lowerbound=1313013.301940, norm of subgrad 1146.351300 dualbound = 3795832.301940, lowerbound=1313013.301940, norm of subgrad 34.654494 stepsize= 1.000000 +dualbound = 3795886.295832, lowerbound=1316645.295832, norm of subgrad 1147.943943 dualbound = 3795886.295832, lowerbound=1316645.295832, norm of subgrad 34.409212 stepsize= 1.000000 +dualbound = 3795944.119220, lowerbound=1309632.119220, norm of subgrad 1144.866857 dualbound = 3795944.119220, lowerbound=1309632.119220, norm of subgrad 33.850013 stepsize= 1.000000 +dualbound = 3795994.374030, lowerbound=1312209.374030, norm of subgrad 1146.005399 dualbound = 3795994.374030, lowerbound=1312209.374030, norm of subgrad 34.194368 stepsize= 1.000000 +dualbound = 3796051.717991, lowerbound=1312773.717991, norm of subgrad 1146.221496 dualbound = 3796051.717991, lowerbound=1312773.717991, norm of subgrad 33.276778 stepsize= 1.000000 +dualbound = 3796114.431648, lowerbound=1313982.431648, norm of subgrad 1146.787876 dualbound = 3796114.431648, lowerbound=1313982.431648, norm of subgrad 34.680162 stepsize= 1.000000 +dualbound = 3796150.893179, lowerbound=1311936.893179, norm of subgrad 1145.894800 dualbound = 3796150.893179, lowerbound=1311936.893179, norm of subgrad 34.270418 stepsize= 1.000000 +dualbound = 3796186.305027, lowerbound=1315116.305027, norm of subgrad 1147.309594 dualbound = 3796186.305027, lowerbound=1315116.305027, norm of subgrad 35.191076 stepsize= 1.000000 +dualbound = 3796253.407828, lowerbound=1309092.407828, norm of subgrad 1144.645538 dualbound = 3796253.407828, lowerbound=1309092.407828, norm of subgrad 34.468867 stepsize= 1.000000 +dualbound = 3796334.001427, lowerbound=1313031.001427, norm of subgrad 1146.374721 dualbound = 3796334.001427, lowerbound=1313031.001427, norm of subgrad 34.994194 stepsize= 1.000000 +dualbound = 3796368.235237, lowerbound=1311715.235237, norm of subgrad 1145.810296 dualbound = 3796368.235237, lowerbound=1311715.235237, norm of subgrad 34.644391 stepsize= 1.000000 +dualbound = 3796419.624918, lowerbound=1314937.624918, norm of subgrad 1147.217776 dualbound = 3796419.624918, lowerbound=1314937.624918, norm of subgrad 34.962690 stepsize= 1.000000 +dualbound = 3796482.552014, lowerbound=1312682.552014, norm of subgrad 1146.208337 dualbound = 3796482.552014, lowerbound=1312682.552014, norm of subgrad 34.262620 stepsize= 1.000000 +dualbound = 3796556.622891, lowerbound=1308371.622891, norm of subgrad 1144.329333 dualbound = 3796556.622891, lowerbound=1308371.622891, norm of subgrad 34.526379 stepsize= 1.000000 +dualbound = 3796596.368137, lowerbound=1312886.368137, norm of subgrad 1146.320796 dualbound = 3796596.368137, lowerbound=1312886.368137, norm of subgrad 34.709440 stepsize= 1.000000 +dualbound = 3796659.885464, lowerbound=1314829.885464, norm of subgrad 1147.152512 dualbound = 3796659.885464, lowerbound=1314829.885464, norm of subgrad 34.532844 stepsize= 1.000000 +dualbound = 3796705.187202, lowerbound=1312126.187202, norm of subgrad 1145.980884 dualbound = 3796705.187202, lowerbound=1312126.187202, norm of subgrad 34.515239 stepsize= 1.000000 +dualbound = 3796769.272130, lowerbound=1311665.272130, norm of subgrad 1145.774529 dualbound = 3796769.272130, lowerbound=1311665.272130, norm of subgrad 34.613363 stepsize= 1.000000 +dualbound = 3796838.235825, lowerbound=1313301.235825, norm of subgrad 1146.459871 dualbound = 3796838.235825, lowerbound=1313301.235825, norm of subgrad 33.733717 stepsize= 1.000000 +dualbound = 3796899.437548, lowerbound=1313773.437548, norm of subgrad 1146.706779 dualbound = 3796899.437548, lowerbound=1313773.437548, norm of subgrad 34.988594 stepsize= 1.000000 +dualbound = 3796936.324541, lowerbound=1313417.324541, norm of subgrad 1146.524891 dualbound = 3796936.324541, lowerbound=1313417.324541, norm of subgrad 33.747400 stepsize= 1.000000 +dualbound = 3797015.913560, lowerbound=1315539.913560, norm of subgrad 1147.453229 dualbound = 3797015.913560, lowerbound=1315539.913560, norm of subgrad 34.475919 stepsize= 1.000000 +dualbound = 3797050.697031, lowerbound=1311581.697031, norm of subgrad 1145.768605 dualbound = 3797050.697031, lowerbound=1311581.697031, norm of subgrad 35.196356 stepsize= 1.000000 +dualbound = 3797069.575304, lowerbound=1313460.575304, norm of subgrad 1146.570353 dualbound = 3797069.575304, lowerbound=1313460.575304, norm of subgrad 34.378457 stepsize= 1.000000 +dualbound = 3797177.398230, lowerbound=1309600.398230, norm of subgrad 1144.864358 dualbound = 3797177.398230, lowerbound=1309600.398230, norm of subgrad 34.954584 stepsize= 1.000000 +dualbound = 3797216.696627, lowerbound=1318895.696627, norm of subgrad 1148.938944 dualbound = 3797216.696627, lowerbound=1318895.696627, norm of subgrad 34.703003 stepsize= 1.000000 +dualbound = 3797260.261056, lowerbound=1307094.261056, norm of subgrad 1143.785933 dualbound = 3797260.261056, lowerbound=1307094.261056, norm of subgrad 34.576935 stepsize= 1.000000 +dualbound = 3797315.127342, lowerbound=1309951.127342, norm of subgrad 1145.042413 dualbound = 3797315.127342, lowerbound=1309951.127342, norm of subgrad 35.012373 stepsize= 1.000000 +dualbound = 3797374.406599, lowerbound=1308178.406599, norm of subgrad 1144.268940 dualbound = 3797374.406599, lowerbound=1308178.406599, norm of subgrad 35.103835 stepsize= 1.000000 +dualbound = 3797415.714701, lowerbound=1314981.714701, norm of subgrad 1147.217815 dualbound = 3797415.714701, lowerbound=1314981.714701, norm of subgrad 34.180522 stepsize= 1.000000 +dualbound = 3797476.837146, lowerbound=1311043.837146, norm of subgrad 1145.501129 dualbound = 3797476.837146, lowerbound=1311043.837146, norm of subgrad 34.498151 stepsize= 1.000000 +dualbound = 3797538.614195, lowerbound=1310517.614195, norm of subgrad 1145.265740 dualbound = 3797538.614195, lowerbound=1310517.614195, norm of subgrad 34.318757 stepsize= 1.000000 +dualbound = 3797614.132308, lowerbound=1310699.132308, norm of subgrad 1145.338436 dualbound = 3797614.132308, lowerbound=1310699.132308, norm of subgrad 34.300410 stepsize= 1.000000 +dualbound = 3797636.573557, lowerbound=1314126.573557, norm of subgrad 1146.884725 dualbound = 3797636.573557, lowerbound=1314126.573557, norm of subgrad 35.219898 stepsize= 1.000000 +dualbound = 3797697.617653, lowerbound=1307534.617653, norm of subgrad 1143.969675 dualbound = 3797697.617653, lowerbound=1307534.617653, norm of subgrad 34.540470 stepsize= 1.000000 +dualbound = 3797787.414304, lowerbound=1313222.414304, norm of subgrad 1146.438142 dualbound = 3797787.414304, lowerbound=1313222.414304, norm of subgrad 34.464426 stepsize= 1.000000 +dualbound = 3797845.194190, lowerbound=1313754.194190, norm of subgrad 1146.674842 dualbound = 3797845.194190, lowerbound=1313754.194190, norm of subgrad 34.158160 stepsize= 1.000000 +dualbound = 3797903.255372, lowerbound=1314172.255372, norm of subgrad 1146.851017 dualbound = 3797903.255372, lowerbound=1314172.255372, norm of subgrad 33.956755 stepsize= 1.000000 +dualbound = 3797957.920381, lowerbound=1307967.920381, norm of subgrad 1144.138069 dualbound = 3797957.920381, lowerbound=1307967.920381, norm of subgrad 33.744111 stepsize= 1.000000 +dualbound = 3798002.798734, lowerbound=1315568.798734, norm of subgrad 1147.479760 dualbound = 3798002.798734, lowerbound=1315568.798734, norm of subgrad 34.436585 stepsize= 1.000000 +dualbound = 3798046.224926, lowerbound=1311757.224926, norm of subgrad 1145.808546 dualbound = 3798046.224926, lowerbound=1311757.224926, norm of subgrad 34.109034 stepsize= 1.000000 +dualbound = 3798115.994656, lowerbound=1308144.994656, norm of subgrad 1144.232055 dualbound = 3798115.994656, lowerbound=1308144.994656, norm of subgrad 34.522018 stepsize= 1.000000 +dualbound = 3798156.757486, lowerbound=1317662.757486, norm of subgrad 1148.403569 dualbound = 3798156.757486, lowerbound=1317662.757486, norm of subgrad 34.767267 stepsize= 1.000000 +dualbound = 3798240.810726, lowerbound=1311572.810726, norm of subgrad 1145.744653 dualbound = 3798240.810726, lowerbound=1311572.810726, norm of subgrad 35.242776 stepsize= 1.000000 +dualbound = 3798265.872211, lowerbound=1319776.872211, norm of subgrad 1149.320178 dualbound = 3798265.872211, lowerbound=1319776.872211, norm of subgrad 34.424722 stepsize= 1.000000 +dualbound = 3798321.861382, lowerbound=1308699.861382, norm of subgrad 1144.484540 dualbound = 3798321.861382, lowerbound=1308699.861382, norm of subgrad 34.655291 stepsize= 1.000000 +dualbound = 3798364.333891, lowerbound=1315057.333891, norm of subgrad 1147.284330 dualbound = 3798364.333891, lowerbound=1315057.333891, norm of subgrad 35.305418 stepsize= 1.000000 +dualbound = 3798433.668264, lowerbound=1308446.668264, norm of subgrad 1144.386153 dualbound = 3798433.668264, lowerbound=1308446.668264, norm of subgrad 35.246764 stepsize= 1.000000 +dualbound = 3798469.249303, lowerbound=1312238.249303, norm of subgrad 1146.030213 dualbound = 3798469.249303, lowerbound=1312238.249303, norm of subgrad 34.388676 stepsize= 1.000000 +dualbound = 3798579.483463, lowerbound=1310419.483463, norm of subgrad 1145.215475 dualbound = 3798579.483463, lowerbound=1310419.483463, norm of subgrad 34.774044 stepsize= 1.000000 +dualbound = 3798611.575150, lowerbound=1319479.575150, norm of subgrad 1149.171256 dualbound = 3798611.575150, lowerbound=1319479.575150, norm of subgrad 33.868742 stepsize= 1.000000 +dualbound = 3798682.171367, lowerbound=1312543.171367, norm of subgrad 1146.140119 dualbound = 3798682.171367, lowerbound=1312543.171367, norm of subgrad 34.126181 stepsize= 1.000000 +dualbound = 3798727.844295, lowerbound=1312445.844295, norm of subgrad 1146.123398 dualbound = 3798727.844295, lowerbound=1312445.844295, norm of subgrad 34.621856 stepsize= 1.000000 +dualbound = 3798776.289296, lowerbound=1313221.289296, norm of subgrad 1146.468181 dualbound = 3798776.289296, lowerbound=1313221.289296, norm of subgrad 34.877572 stepsize= 1.000000 +dualbound = 3798824.907889, lowerbound=1313894.907889, norm of subgrad 1146.775439 dualbound = 3798824.907889, lowerbound=1313894.907889, norm of subgrad 35.321645 stepsize= 1.000000 +dualbound = 3798869.240282, lowerbound=1316679.240282, norm of subgrad 1147.972665 dualbound = 3798869.240282, lowerbound=1316679.240282, norm of subgrad 34.732296 stepsize= 1.000000 +dualbound = 3798948.655149, lowerbound=1309382.655149, norm of subgrad 1144.778867 dualbound = 3798948.655149, lowerbound=1309382.655149, norm of subgrad 34.862801 stepsize= 1.000000 +dualbound = 3799008.477351, lowerbound=1318025.477351, norm of subgrad 1148.532314 dualbound = 3799008.477351, lowerbound=1318025.477351, norm of subgrad 34.070841 stepsize= 1.000000 +dualbound = 3799074.985180, lowerbound=1309501.985180, norm of subgrad 1144.848455 dualbound = 3799074.985180, lowerbound=1309501.985180, norm of subgrad 35.249225 stepsize= 1.000000 +dualbound = 3799094.632322, lowerbound=1314630.632322, norm of subgrad 1147.070892 dualbound = 3799094.632322, lowerbound=1314630.632322, norm of subgrad 34.068272 stepsize= 1.000000 +dualbound = 3799173.654689, lowerbound=1308760.654689, norm of subgrad 1144.501924 dualbound = 3799173.654689, lowerbound=1308760.654689, norm of subgrad 34.684613 stepsize= 1.000000 +dualbound = 3799233.657493, lowerbound=1313827.657493, norm of subgrad 1146.722136 dualbound = 3799233.657493, lowerbound=1313827.657493, norm of subgrad 34.698744 stepsize= 1.000000 +dualbound = 3799263.369150, lowerbound=1311696.369150, norm of subgrad 1145.808173 dualbound = 3799263.369150, lowerbound=1311696.369150, norm of subgrad 34.780909 stepsize= 1.000000 +dualbound = 3799312.062224, lowerbound=1310518.062224, norm of subgrad 1145.281652 dualbound = 3799312.062224, lowerbound=1310518.062224, norm of subgrad 34.651018 stepsize= 1.000000 +dualbound = 3799388.191943, lowerbound=1314283.191943, norm of subgrad 1146.888483 dualbound = 3799388.191943, lowerbound=1314283.191943, norm of subgrad 33.854538 stepsize= 1.000000 +dualbound = 3799456.833024, lowerbound=1314342.833024, norm of subgrad 1146.943256 dualbound = 3799456.833024, lowerbound=1314342.833024, norm of subgrad 34.707940 stepsize= 1.000000 +dualbound = 3799458.478210, lowerbound=1315126.478210, norm of subgrad 1147.298775 dualbound = 3799458.478210, lowerbound=1315126.478210, norm of subgrad 34.200076 stepsize= 1.000000 +dualbound = 3799552.842587, lowerbound=1309769.842587, norm of subgrad 1144.917396 dualbound = 3799552.842587, lowerbound=1309769.842587, norm of subgrad 34.064122 stepsize= 1.000000 +dualbound = 3799598.448176, lowerbound=1308183.448176, norm of subgrad 1144.259782 dualbound = 3799598.448176, lowerbound=1308183.448176, norm of subgrad 34.534122 stepsize= 1.000000 +dualbound = 3799657.594710, lowerbound=1313574.594710, norm of subgrad 1146.600451 dualbound = 3799657.594710, lowerbound=1313574.594710, norm of subgrad 34.309569 stepsize= 1.000000 +dualbound = 3799720.229111, lowerbound=1313180.229111, norm of subgrad 1146.417999 dualbound = 3799720.229111, lowerbound=1313180.229111, norm of subgrad 34.009328 stepsize= 1.000000 +dualbound = 3799779.502456, lowerbound=1313053.502456, norm of subgrad 1146.385844 dualbound = 3799779.502456, lowerbound=1313053.502456, norm of subgrad 34.731446 stepsize= 1.000000 +dualbound = 3799823.017338, lowerbound=1316374.017338, norm of subgrad 1147.860626 dualbound = 3799823.017338, lowerbound=1316374.017338, norm of subgrad 35.405012 stepsize= 1.000000 +dualbound = 3799878.632639, lowerbound=1314997.632639, norm of subgrad 1147.249159 dualbound = 3799878.632639, lowerbound=1314997.632639, norm of subgrad 35.193967 stepsize= 1.000000 +dualbound = 3799932.169116, lowerbound=1311544.169116, norm of subgrad 1145.729099 dualbound = 3799932.169116, lowerbound=1311544.169116, norm of subgrad 34.706433 stepsize= 1.000000 +dualbound = 3799984.634449, lowerbound=1313739.634449, norm of subgrad 1146.692476 dualbound = 3799984.634449, lowerbound=1313739.634449, norm of subgrad 34.877863 stepsize= 1.000000 +dualbound = 3800038.561465, lowerbound=1312710.561465, norm of subgrad 1146.220555 dualbound = 3800038.561465, lowerbound=1312710.561465, norm of subgrad 34.131027 stepsize= 1.000000 +dualbound = 3800105.951331, lowerbound=1311685.951331, norm of subgrad 1145.796645 dualbound = 3800105.951331, lowerbound=1311685.951331, norm of subgrad 35.091165 stepsize= 1.000000 +dualbound = 3800129.095800, lowerbound=1316185.095800, norm of subgrad 1147.794884 dualbound = 3800129.095800, lowerbound=1316185.095800, norm of subgrad 35.653113 stepsize= 1.000000 +dualbound = 3800194.981155, lowerbound=1310489.981155, norm of subgrad 1145.267646 dualbound = 3800194.981155, lowerbound=1310489.981155, norm of subgrad 34.840858 stepsize= 1.000000 +dualbound = 3800255.921498, lowerbound=1315013.921498, norm of subgrad 1147.273255 dualbound = 3800255.921498, lowerbound=1315013.921498, norm of subgrad 35.818157 stepsize= 1.000000 +dualbound = 3800295.272402, lowerbound=1312667.272402, norm of subgrad 1146.205598 dualbound = 3800295.272402, lowerbound=1312667.272402, norm of subgrad 34.049242 stepsize= 1.000000 +dualbound = 3800384.461960, lowerbound=1312909.461960, norm of subgrad 1146.323018 dualbound = 3800384.461960, lowerbound=1312909.461960, norm of subgrad 35.159487 stepsize= 1.000000 +dualbound = 3800431.931752, lowerbound=1310731.931752, norm of subgrad 1145.374581 dualbound = 3800431.931752, lowerbound=1310731.931752, norm of subgrad 34.618922 stepsize= 1.000000 +dualbound = 3800489.128503, lowerbound=1312792.128503, norm of subgrad 1146.252210 dualbound = 3800489.128503, lowerbound=1312792.128503, norm of subgrad 34.046979 stepsize= 1.000000 +dualbound = 3800555.320692, lowerbound=1312448.320692, norm of subgrad 1146.073000 dualbound = 3800555.320692, lowerbound=1312448.320692, norm of subgrad 33.184216 stepsize= 1.000000 +dualbound = 3800619.261298, lowerbound=1313275.261298, norm of subgrad 1146.478199 dualbound = 3800619.261298, lowerbound=1313275.261298, norm of subgrad 34.654590 stepsize= 1.000000 +dualbound = 3800654.182503, lowerbound=1307655.182503, norm of subgrad 1144.015377 dualbound = 3800654.182503, lowerbound=1307655.182503, norm of subgrad 33.925230 stepsize= 1.000000 +dualbound = 3800710.905448, lowerbound=1317993.905448, norm of subgrad 1148.528583 dualbound = 3800710.905448, lowerbound=1317993.905448, norm of subgrad 34.361649 stepsize= 1.000000 +dualbound = 3800769.934665, lowerbound=1310911.934665, norm of subgrad 1145.438316 dualbound = 3800769.934665, lowerbound=1310911.934665, norm of subgrad 34.293282 stepsize= 1.000000 +dualbound = 3800817.661035, lowerbound=1313634.661035, norm of subgrad 1146.652371 dualbound = 3800817.661035, lowerbound=1313634.661035, norm of subgrad 34.996091 stepsize= 1.000000 +dualbound = 3800873.756793, lowerbound=1314802.756793, norm of subgrad 1147.149405 dualbound = 3800873.756793, lowerbound=1314802.756793, norm of subgrad 34.714489 stepsize= 1.000000 +dualbound = 3800935.516647, lowerbound=1316873.516647, norm of subgrad 1148.042036 dualbound = 3800935.516647, lowerbound=1316873.516647, norm of subgrad 34.478397 stepsize= 1.000000 +dualbound = 3800995.570908, lowerbound=1311971.570908, norm of subgrad 1145.912113 dualbound = 3800995.570908, lowerbound=1311971.570908, norm of subgrad 34.685073 stepsize= 1.000000 +dualbound = 3801041.683725, lowerbound=1312050.683725, norm of subgrad 1145.929616 dualbound = 3801041.683725, lowerbound=1312050.683725, norm of subgrad 33.913313 stepsize= 1.000000 +dualbound = 3801109.040839, lowerbound=1313397.040839, norm of subgrad 1146.533053 dualbound = 3801109.040839, lowerbound=1313397.040839, norm of subgrad 34.761431 stepsize= 1.000000 +dualbound = 3801155.726783, lowerbound=1312691.726783, norm of subgrad 1146.207541 dualbound = 3801155.726783, lowerbound=1312691.726783, norm of subgrad 33.862752 stepsize= 1.000000 +dualbound = 3801210.891969, lowerbound=1314145.891969, norm of subgrad 1146.867426 dualbound = 3801210.891969, lowerbound=1314145.891969, norm of subgrad 34.844873 stepsize= 1.000000 +dualbound = 3801246.194017, lowerbound=1313690.194017, norm of subgrad 1146.622080 dualbound = 3801246.194017, lowerbound=1313690.194017, norm of subgrad 32.974263 stepsize= 1.000000 +dualbound = 3801336.545733, lowerbound=1307296.545733, norm of subgrad 1143.846382 dualbound = 3801336.545733, lowerbound=1307296.545733, norm of subgrad 34.327128 stepsize= 1.000000 +dualbound = 3801371.110079, lowerbound=1318344.110079, norm of subgrad 1148.685819 dualbound = 3801371.110079, lowerbound=1318344.110079, norm of subgrad 34.198894 stepsize= 1.000000 +dualbound = 3801443.265177, lowerbound=1309748.265177, norm of subgrad 1144.913213 dualbound = 3801443.265177, lowerbound=1309748.265177, norm of subgrad 33.913937 stepsize= 1.000000 +dualbound = 3801478.694275, lowerbound=1314943.694275, norm of subgrad 1147.205167 dualbound = 3801478.694275, lowerbound=1314943.694275, norm of subgrad 34.226146 stepsize= 1.000000 +dualbound = 3801549.669389, lowerbound=1310146.669389, norm of subgrad 1145.132162 dualbound = 3801549.669389, lowerbound=1310146.669389, norm of subgrad 35.383260 stepsize= 1.000000 +dualbound = 3801584.108060, lowerbound=1311970.108060, norm of subgrad 1145.923692 dualbound = 3801584.108060, lowerbound=1311970.108060, norm of subgrad 34.719428 stepsize= 1.000000 +dualbound = 3801642.165816, lowerbound=1313126.165816, norm of subgrad 1146.419280 dualbound = 3801642.165816, lowerbound=1313126.165816, norm of subgrad 34.771508 stepsize= 1.000000 +dualbound = 3801706.243039, lowerbound=1313956.243039, norm of subgrad 1146.756837 dualbound = 3801706.243039, lowerbound=1313956.243039, norm of subgrad 34.045223 stepsize= 1.000000 +dualbound = 3801772.196277, lowerbound=1315813.196277, norm of subgrad 1147.591912 dualbound = 3801772.196277, lowerbound=1315813.196277, norm of subgrad 34.927829 stepsize= 1.000000 +dualbound = 3801816.994082, lowerbound=1312205.994082, norm of subgrad 1145.997380 dualbound = 3801816.994082, lowerbound=1312205.994082, norm of subgrad 33.893920 stepsize= 1.000000 +dualbound = 3801883.702352, lowerbound=1310175.702352, norm of subgrad 1145.120388 dualbound = 3801883.702352, lowerbound=1310175.702352, norm of subgrad 34.521128 stepsize= 1.000000 +dualbound = 3801939.837925, lowerbound=1313172.837925, norm of subgrad 1146.433966 dualbound = 3801939.837925, lowerbound=1313172.837925, norm of subgrad 34.556267 stepsize= 1.000000 +dualbound = 3801988.871861, lowerbound=1309771.871861, norm of subgrad 1144.927016 dualbound = 3801988.871861, lowerbound=1309771.871861, norm of subgrad 33.690265 stepsize= 1.000000 +dualbound = 3802072.240863, lowerbound=1317042.240863, norm of subgrad 1148.112033 dualbound = 3802072.240863, lowerbound=1317042.240863, norm of subgrad 34.675193 stepsize= 1.000000 +dualbound = 3802088.693578, lowerbound=1314763.693578, norm of subgrad 1147.124969 dualbound = 3802088.693578, lowerbound=1314763.693578, norm of subgrad 33.888829 stepsize= 1.000000 +dualbound = 3802173.325930, lowerbound=1310950.325930, norm of subgrad 1145.452455 dualbound = 3802173.325930, lowerbound=1310950.325930, norm of subgrad 34.577917 stepsize= 1.000000 +dualbound = 3802206.175845, lowerbound=1316974.175845, norm of subgrad 1148.105472 dualbound = 3802206.175845, lowerbound=1316974.175845, norm of subgrad 34.710948 stepsize= 1.000000 +dualbound = 3802277.301853, lowerbound=1310230.301853, norm of subgrad 1145.119776 dualbound = 3802277.301853, lowerbound=1310230.301853, norm of subgrad 33.765752 stepsize= 1.000000 +dualbound = 3802349.341947, lowerbound=1314704.341947, norm of subgrad 1147.088201 dualbound = 3802349.341947, lowerbound=1314704.341947, norm of subgrad 34.337153 stepsize= 1.000000 +dualbound = 3802378.390053, lowerbound=1313572.390053, norm of subgrad 1146.607339 dualbound = 3802378.390053, lowerbound=1313572.390053, norm of subgrad 34.132801 stepsize= 1.000000 +dualbound = 3802418.384431, lowerbound=1317866.384431, norm of subgrad 1148.507459 dualbound = 3802418.384431, lowerbound=1317866.384431, norm of subgrad 35.256125 stepsize= 1.000000 +dualbound = 3802476.386557, lowerbound=1313297.386557, norm of subgrad 1146.498315 dualbound = 3802476.386557, lowerbound=1313297.386557, norm of subgrad 34.914211 stepsize= 1.000000 +dualbound = 3802549.122347, lowerbound=1311556.122347, norm of subgrad 1145.709004 dualbound = 3802549.122347, lowerbound=1311556.122347, norm of subgrad 34.142873 stepsize= 1.000000 +dualbound = 3802596.100408, lowerbound=1319501.100408, norm of subgrad 1149.201506 dualbound = 3802596.100408, lowerbound=1319501.100408, norm of subgrad 34.784739 stepsize= 1.000000 +dualbound = 3802648.876671, lowerbound=1307036.876671, norm of subgrad 1143.748607 dualbound = 3802648.876671, lowerbound=1307036.876671, norm of subgrad 34.304173 stepsize= 1.000000 +dualbound = 3802697.371370, lowerbound=1319195.371370, norm of subgrad 1149.059342 dualbound = 3802697.371370, lowerbound=1319195.371370, norm of subgrad 34.503546 stepsize= 1.000000 +dualbound = 3802764.288250, lowerbound=1308472.288250, norm of subgrad 1144.353655 dualbound = 3802764.288250, lowerbound=1308472.288250, norm of subgrad 33.762655 stepsize= 1.000000 +dualbound = 3802811.836549, lowerbound=1315192.836549, norm of subgrad 1147.336845 dualbound = 3802811.836549, lowerbound=1315192.836549, norm of subgrad 35.164589 stepsize= 1.000000 +dualbound = 3802853.294261, lowerbound=1314967.294261, norm of subgrad 1147.241602 dualbound = 3802853.294261, lowerbound=1314967.294261, norm of subgrad 35.177517 stepsize= 1.000000 +dualbound = 3802908.473583, lowerbound=1310086.473583, norm of subgrad 1145.108935 dualbound = 3802908.473583, lowerbound=1310086.473583, norm of subgrad 35.258748 stepsize= 1.000000 +dualbound = 3802978.325609, lowerbound=1319575.325609, norm of subgrad 1149.234670 dualbound = 3802978.325609, lowerbound=1319575.325609, norm of subgrad 35.140461 stepsize= 1.000000 +dualbound = 3803037.083232, lowerbound=1315735.083232, norm of subgrad 1147.573128 dualbound = 3803037.083232, lowerbound=1315735.083232, norm of subgrad 35.323613 stepsize= 1.000000 +dualbound = 3803077.729139, lowerbound=1314128.729139, norm of subgrad 1146.851224 dualbound = 3803077.729139, lowerbound=1314128.729139, norm of subgrad 34.345974 stepsize= 1.000000 +dualbound = 3803144.643691, lowerbound=1314162.643691, norm of subgrad 1146.882576 dualbound = 3803144.643691, lowerbound=1314162.643691, norm of subgrad 35.269173 stepsize= 1.000000 +dualbound = 3803218.691703, lowerbound=1314736.691703, norm of subgrad 1147.097072 dualbound = 3803218.691703, lowerbound=1314736.691703, norm of subgrad 34.191344 stepsize= 1.000000 +dualbound = 3803272.448275, lowerbound=1307403.448275, norm of subgrad 1143.900541 dualbound = 3803272.448275, lowerbound=1307403.448275, norm of subgrad 34.040514 stepsize= 1.000000 +dualbound = 3803323.078076, lowerbound=1317021.078076, norm of subgrad 1148.077993 dualbound = 3803323.078076, lowerbound=1317021.078076, norm of subgrad 33.356106 stepsize= 1.000000 +dualbound = 3803377.908617, lowerbound=1310978.908617, norm of subgrad 1145.456638 dualbound = 3803377.908617, lowerbound=1310978.908617, norm of subgrad 33.864887 stepsize= 1.000000 +dualbound = 3803428.546210, lowerbound=1316015.546210, norm of subgrad 1147.650010 dualbound = 3803428.546210, lowerbound=1316015.546210, norm of subgrad 33.699222 stepsize= 1.000000 +dualbound = 3803487.749303, lowerbound=1307764.749303, norm of subgrad 1144.072878 dualbound = 3803487.749303, lowerbound=1307764.749303, norm of subgrad 34.600623 stepsize= 1.000000 +dualbound = 3803524.883163, lowerbound=1310827.883163, norm of subgrad 1145.421705 dualbound = 3803524.883163, lowerbound=1310827.883163, norm of subgrad 34.642948 stepsize= 1.000000 +dualbound = 3803618.244276, lowerbound=1312325.244276, norm of subgrad 1146.048099 dualbound = 3803618.244276, lowerbound=1312325.244276, norm of subgrad 34.559530 stepsize= 1.000000 +dualbound = 3803659.919792, lowerbound=1317808.919792, norm of subgrad 1148.469817 dualbound = 3803659.919792, lowerbound=1317808.919792, norm of subgrad 34.866539 stepsize= 1.000000 +dualbound = 3803682.790634, lowerbound=1309611.790634, norm of subgrad 1144.888113 dualbound = 3803682.790634, lowerbound=1309611.790634, norm of subgrad 34.349248 stepsize= 1.000000 +dualbound = 3803755.421183, lowerbound=1305544.421183, norm of subgrad 1143.114352 dualbound = 3803755.421183, lowerbound=1305544.421183, norm of subgrad 35.194183 stepsize= 1.000000 +dualbound = 3803819.186190, lowerbound=1320885.186190, norm of subgrad 1149.790497 dualbound = 3803819.186190, lowerbound=1320885.186190, norm of subgrad 34.594292 stepsize= 1.000000 +dualbound = 3803867.536626, lowerbound=1311196.536626, norm of subgrad 1145.545519 dualbound = 3803867.536626, lowerbound=1311196.536626, norm of subgrad 33.561145 stepsize= 1.000000 +dualbound = 3803943.859976, lowerbound=1311210.859976, norm of subgrad 1145.598472 dualbound = 3803943.859976, lowerbound=1311210.859976, norm of subgrad 35.515114 stepsize= 1.000000 +dualbound = 3803960.692248, lowerbound=1314419.692248, norm of subgrad 1146.991583 dualbound = 3803960.692248, lowerbound=1314419.692248, norm of subgrad 34.450432 stepsize= 1.000000 +dualbound = 3804020.595508, lowerbound=1312363.595508, norm of subgrad 1146.087953 dualbound = 3804020.595508, lowerbound=1312363.595508, norm of subgrad 34.841115 stepsize= 1.000000 +dualbound = 3804093.355527, lowerbound=1311015.355527, norm of subgrad 1145.489134 dualbound = 3804093.355527, lowerbound=1311015.355527, norm of subgrad 34.680831 stepsize= 1.000000 +dualbound = 3804124.327645, lowerbound=1314525.327645, norm of subgrad 1147.026298 dualbound = 3804124.327645, lowerbound=1314525.327645, norm of subgrad 34.277866 stepsize= 1.000000 +dualbound = 3804199.019567, lowerbound=1311423.019567, norm of subgrad 1145.664008 dualbound = 3804199.019567, lowerbound=1311423.019567, norm of subgrad 34.607686 stepsize= 1.000000 +dualbound = 3804252.771894, lowerbound=1310999.771894, norm of subgrad 1145.504593 dualbound = 3804252.771894, lowerbound=1310999.771894, norm of subgrad 35.139043 stepsize= 1.000000 +dualbound = 3804301.270611, lowerbound=1309225.270611, norm of subgrad 1144.705757 dualbound = 3804301.270611, lowerbound=1309225.270611, norm of subgrad 34.270960 stepsize= 1.000000 +dualbound = 3804355.643919, lowerbound=1314739.643919, norm of subgrad 1147.125819 dualbound = 3804355.643919, lowerbound=1314739.643919, norm of subgrad 34.819151 stepsize= 1.000000 +dualbound = 3804422.689051, lowerbound=1311687.689051, norm of subgrad 1145.772529 dualbound = 3804422.689051, lowerbound=1311687.689051, norm of subgrad 34.264342 stepsize= 1.000000 +dualbound = 3804501.521398, lowerbound=1313021.521398, norm of subgrad 1146.382363 dualbound = 3804501.521398, lowerbound=1313021.521398, norm of subgrad 35.352968 stepsize= 1.000000 +dualbound = 3804534.597914, lowerbound=1319863.597914, norm of subgrad 1149.314838 dualbound = 3804534.597914, lowerbound=1319863.597914, norm of subgrad 33.076827 stepsize= 1.000000 +dualbound = 3804597.716073, lowerbound=1311108.716073, norm of subgrad 1145.532067 dualbound = 3804597.716073, lowerbound=1311108.716073, norm of subgrad 34.613843 stepsize= 1.000000 +dualbound = 3804652.945768, lowerbound=1311121.945768, norm of subgrad 1145.554427 dualbound = 3804652.945768, lowerbound=1311121.945768, norm of subgrad 35.046108 stepsize= 1.000000 +dualbound = 3804676.286135, lowerbound=1316140.286135, norm of subgrad 1147.750533 dualbound = 3804676.286135, lowerbound=1316140.286135, norm of subgrad 34.847387 stepsize= 1.000000 +dualbound = 3804766.224311, lowerbound=1307702.224311, norm of subgrad 1144.035937 dualbound = 3804766.224311, lowerbound=1307702.224311, norm of subgrad 34.726621 stepsize= 1.000000 +dualbound = 3804800.979503, lowerbound=1313376.979503, norm of subgrad 1146.519943 dualbound = 3804800.979503, lowerbound=1313376.979503, norm of subgrad 34.143157 stepsize= 1.000000 +dualbound = 3804871.699271, lowerbound=1312174.699271, norm of subgrad 1146.001178 dualbound = 3804871.699271, lowerbound=1312174.699271, norm of subgrad 34.852830 stepsize= 1.000000 +dualbound = 3804937.377264, lowerbound=1315501.377264, norm of subgrad 1147.426415 dualbound = 3804937.377264, lowerbound=1315501.377264, norm of subgrad 33.936382 stepsize= 1.000000 +dualbound = 3804995.853354, lowerbound=1314766.853354, norm of subgrad 1147.113706 dualbound = 3804995.853354, lowerbound=1314766.853354, norm of subgrad 34.080436 stepsize= 1.000000 +dualbound = 3805039.038825, lowerbound=1314158.038825, norm of subgrad 1146.867490 dualbound = 3805039.038825, lowerbound=1314158.038825, norm of subgrad 34.499065 stepsize= 1.000000 +dualbound = 3805078.615044, lowerbound=1312831.615044, norm of subgrad 1146.272923 dualbound = 3805078.615044, lowerbound=1312831.615044, norm of subgrad 33.905401 stepsize= 1.000000 +dualbound = 3805161.139390, lowerbound=1312194.139390, norm of subgrad 1145.982172 dualbound = 3805161.139390, lowerbound=1312194.139390, norm of subgrad 34.110473 stepsize= 1.000000 +dualbound = 3805210.170976, lowerbound=1311890.170976, norm of subgrad 1145.876595 dualbound = 3805210.170976, lowerbound=1311890.170976, norm of subgrad 34.525810 stepsize= 1.000000 +dualbound = 3805250.513619, lowerbound=1310404.513619, norm of subgrad 1145.241247 dualbound = 3805250.513619, lowerbound=1310404.513619, norm of subgrad 34.833068 stepsize= 1.000000 +dualbound = 3805310.453892, lowerbound=1314992.453892, norm of subgrad 1147.220752 dualbound = 3805310.453892, lowerbound=1314992.453892, norm of subgrad 34.393899 stepsize= 1.000000 +dualbound = 3805368.384719, lowerbound=1309367.384719, norm of subgrad 1144.784864 dualbound = 3805368.384719, lowerbound=1309367.384719, norm of subgrad 34.970428 stepsize= 1.000000 +dualbound = 3805410.848257, lowerbound=1317794.848257, norm of subgrad 1148.461514 dualbound = 3805410.848257, lowerbound=1317794.848257, norm of subgrad 34.806085 stepsize= 1.000000 +dualbound = 3805451.610926, lowerbound=1310302.610926, norm of subgrad 1145.191081 dualbound = 3805451.610926, lowerbound=1310302.610926, norm of subgrad 34.652023 stepsize= 1.000000 +dualbound = 3805537.994544, lowerbound=1310012.994544, norm of subgrad 1145.012661 dualbound = 3805537.994544, lowerbound=1310012.994544, norm of subgrad 33.576534 stepsize= 1.000000 +dualbound = 3805596.761304, lowerbound=1313426.761304, norm of subgrad 1146.530750 dualbound = 3805596.761304, lowerbound=1313426.761304, norm of subgrad 34.128679 stepsize= 1.000000 +dualbound = 3805648.706976, lowerbound=1319015.706976, norm of subgrad 1148.974198 dualbound = 3805648.706976, lowerbound=1319015.706976, norm of subgrad 34.321213 stepsize= 1.000000 +dualbound = 3805657.907936, lowerbound=1312602.907936, norm of subgrad 1146.196278 dualbound = 3805657.907936, lowerbound=1312602.907936, norm of subgrad 34.237420 stepsize= 1.000000 +dualbound = 3805752.878431, lowerbound=1311712.878431, norm of subgrad 1145.772176 dualbound = 3805752.878431, lowerbound=1311712.878431, norm of subgrad 34.292426 stepsize= 1.000000 +dualbound = 3805806.890513, lowerbound=1317930.890513, norm of subgrad 1148.488089 dualbound = 3805806.890513, lowerbound=1317930.890513, norm of subgrad 33.882327 stepsize= 1.000000 +dualbound = 3805843.326287, lowerbound=1314729.326287, norm of subgrad 1147.149217 dualbound = 3805843.326287, lowerbound=1314729.326287, norm of subgrad 35.474438 stepsize= 1.000000 +dualbound = 3805909.184448, lowerbound=1311313.184448, norm of subgrad 1145.622619 dualbound = 3805909.184448, lowerbound=1311313.184448, norm of subgrad 34.696659 stepsize= 1.000000 +dualbound = 3805972.105563, lowerbound=1313554.105563, norm of subgrad 1146.614628 dualbound = 3805972.105563, lowerbound=1313554.105563, norm of subgrad 35.127213 stepsize= 1.000000 +dualbound = 3806007.471934, lowerbound=1315009.471934, norm of subgrad 1147.268265 dualbound = 3806007.471934, lowerbound=1315009.471934, norm of subgrad 35.360520 stepsize= 1.000000 +dualbound = 3806063.217690, lowerbound=1311814.217690, norm of subgrad 1145.842580 dualbound = 3806063.217690, lowerbound=1311814.217690, norm of subgrad 34.594013 stepsize= 1.000000 +dualbound = 3806138.862622, lowerbound=1321428.862622, norm of subgrad 1150.057765 dualbound = 3806138.862622, lowerbound=1321428.862622, norm of subgrad 35.772125 stepsize= 1.000000 +dualbound = 3806169.574122, lowerbound=1312075.574122, norm of subgrad 1145.961419 dualbound = 3806169.574122, lowerbound=1312075.574122, norm of subgrad 34.390573 stepsize= 1.000000 +dualbound = 3806263.204128, lowerbound=1312350.204128, norm of subgrad 1146.057679 dualbound = 3806263.204128, lowerbound=1312350.204128, norm of subgrad 34.519994 stepsize= 1.000000 +dualbound = 3806323.855392, lowerbound=1312347.855392, norm of subgrad 1146.030914 dualbound = 3806323.855392, lowerbound=1312347.855392, norm of subgrad 33.160990 stepsize= 1.000000 +dualbound = 3806370.414697, lowerbound=1316367.414697, norm of subgrad 1147.805042 dualbound = 3806370.414697, lowerbound=1316367.414697, norm of subgrad 33.698061 stepsize= 1.000000 +dualbound = 3806419.365138, lowerbound=1313938.365138, norm of subgrad 1146.751658 dualbound = 3806419.365138, lowerbound=1313938.365138, norm of subgrad 33.910919 stepsize= 1.000000 +dualbound = 3806480.074132, lowerbound=1313041.074132, norm of subgrad 1146.368647 dualbound = 3806480.074132, lowerbound=1313041.074132, norm of subgrad 34.361446 stepsize= 1.000000 +dualbound = 3806536.263646, lowerbound=1314233.263646, norm of subgrad 1146.884154 dualbound = 3806536.263646, lowerbound=1314233.263646, norm of subgrad 34.149517 stepsize= 1.000000 +dualbound = 3806589.048387, lowerbound=1314958.048387, norm of subgrad 1147.193553 dualbound = 3806589.048387, lowerbound=1314958.048387, norm of subgrad 33.878972 stepsize= 1.000000 +dualbound = 3806634.438209, lowerbound=1310400.438209, norm of subgrad 1145.251255 dualbound = 3806634.438209, lowerbound=1310400.438209, norm of subgrad 35.290081 stepsize= 1.000000 +dualbound = 3806685.076273, lowerbound=1310790.076273, norm of subgrad 1145.361985 dualbound = 3806685.076273, lowerbound=1310790.076273, norm of subgrad 33.386196 stepsize= 1.000000 +dualbound = 3806762.069928, lowerbound=1314527.069928, norm of subgrad 1147.022262 dualbound = 3806762.069928, lowerbound=1314527.069928, norm of subgrad 34.784963 stepsize= 1.000000 +dualbound = 3806779.237962, lowerbound=1310468.237962, norm of subgrad 1145.243310 dualbound = 3806779.237962, lowerbound=1310468.237962, norm of subgrad 33.632842 stepsize= 1.000000 +dualbound = 3806864.483717, lowerbound=1317301.483717, norm of subgrad 1148.242345 dualbound = 3806864.483717, lowerbound=1317301.483717, norm of subgrad 35.273868 stepsize= 1.000000 +dualbound = 3806890.404211, lowerbound=1314553.404211, norm of subgrad 1147.025895 dualbound = 3806890.404211, lowerbound=1314553.404211, norm of subgrad 33.777515 stepsize= 1.000000 +dualbound = 3806979.232073, lowerbound=1313866.232073, norm of subgrad 1146.716718 dualbound = 3806979.232073, lowerbound=1313866.232073, norm of subgrad 34.377723 stepsize= 1.000000 +dualbound = 3807029.097105, lowerbound=1313169.097105, norm of subgrad 1146.413580 dualbound = 3807029.097105, lowerbound=1313169.097105, norm of subgrad 33.835854 stepsize= 1.000000 +dualbound = 3807072.987651, lowerbound=1313115.987651, norm of subgrad 1146.408299 dualbound = 3807072.987651, lowerbound=1313115.987651, norm of subgrad 34.349535 stepsize= 1.000000 +dualbound = 3807132.253212, lowerbound=1313189.253212, norm of subgrad 1146.438508 dualbound = 3807132.253212, lowerbound=1313189.253212, norm of subgrad 34.514715 stepsize= 1.000000 +dualbound = 3807200.260401, lowerbound=1320177.260401, norm of subgrad 1149.486955 dualbound = 3807200.260401, lowerbound=1320177.260401, norm of subgrad 34.799529 stepsize= 1.000000 +dualbound = 3807238.498720, lowerbound=1311277.498720, norm of subgrad 1145.613154 dualbound = 3807238.498720, lowerbound=1311277.498720, norm of subgrad 34.499831 stepsize= 1.000000 +dualbound = 3807313.945967, lowerbound=1312034.945967, norm of subgrad 1145.931475 dualbound = 3807313.945967, lowerbound=1312034.945967, norm of subgrad 34.633037 stepsize= 1.000000 +dualbound = 3807332.327642, lowerbound=1310090.327642, norm of subgrad 1145.111928 dualbound = 3807332.327642, lowerbound=1310090.327642, norm of subgrad 34.776165 stepsize= 1.000000 +dualbound = 3807399.519859, lowerbound=1311380.519859, norm of subgrad 1145.673391 dualbound = 3807399.519859, lowerbound=1311380.519859, norm of subgrad 35.414576 stepsize= 1.000000 +dualbound = 3807459.695013, lowerbound=1309512.695013, norm of subgrad 1144.821687 dualbound = 3807459.695013, lowerbound=1309512.695013, norm of subgrad 34.120011 stepsize= 1.000000 +dualbound = 3807535.979796, lowerbound=1315613.979796, norm of subgrad 1147.492475 dualbound = 3807535.979796, lowerbound=1315613.979796, norm of subgrad 34.659555 stepsize= 1.000000 +dualbound = 3807580.309381, lowerbound=1309311.309381, norm of subgrad 1144.762993 dualbound = 3807580.309381, lowerbound=1309311.309381, norm of subgrad 34.861578 stepsize= 1.000000 +dualbound = 3807632.873861, lowerbound=1312497.873861, norm of subgrad 1146.142606 dualbound = 3807632.873861, lowerbound=1312497.873861, norm of subgrad 34.605845 stepsize= 1.000000 +dualbound = 3807693.040214, lowerbound=1309379.040214, norm of subgrad 1144.791702 dualbound = 3807693.040214, lowerbound=1309379.040214, norm of subgrad 35.059469 stepsize= 1.000000 +dualbound = 3807723.956626, lowerbound=1312647.956626, norm of subgrad 1146.242102 dualbound = 3807723.956626, lowerbound=1312647.956626, norm of subgrad 35.410682 stepsize= 1.000000 +dualbound = 3807796.171883, lowerbound=1314464.171883, norm of subgrad 1146.998767 dualbound = 3807796.171883, lowerbound=1314464.171883, norm of subgrad 34.845592 stepsize= 1.000000 +dualbound = 3807842.132375, lowerbound=1314095.132375, norm of subgrad 1146.818265 dualbound = 3807842.132375, lowerbound=1314095.132375, norm of subgrad 33.807699 stepsize= 1.000000 +dualbound = 3807929.434502, lowerbound=1314300.434502, norm of subgrad 1146.898616 dualbound = 3807929.434502, lowerbound=1314300.434502, norm of subgrad 34.107215 stepsize= 1.000000 +dualbound = 3807967.544079, lowerbound=1312449.544079, norm of subgrad 1146.118905 dualbound = 3807967.544079, lowerbound=1312449.544079, norm of subgrad 34.309031 stepsize= 1.000000 +dualbound = 3808035.696771, lowerbound=1313319.696771, norm of subgrad 1146.501939 dualbound = 3808035.696771, lowerbound=1313319.696771, norm of subgrad 34.859040 stepsize= 1.000000 +dualbound = 3808056.849768, lowerbound=1313904.849768, norm of subgrad 1146.761026 dualbound = 3808056.849768, lowerbound=1313904.849768, norm of subgrad 34.309663 stepsize= 1.000000 +dualbound = 3808151.221041, lowerbound=1313150.221041, norm of subgrad 1146.395316 dualbound = 3808151.221041, lowerbound=1313150.221041, norm of subgrad 34.152178 stepsize= 1.000000 +dualbound = 3808193.467308, lowerbound=1319290.467308, norm of subgrad 1149.095935 dualbound = 3808193.467308, lowerbound=1319290.467308, norm of subgrad 34.252683 stepsize= 1.000000 +dualbound = 3808243.702870, lowerbound=1308833.702870, norm of subgrad 1144.514178 dualbound = 3808243.702870, lowerbound=1308833.702870, norm of subgrad 33.604100 stepsize= 1.000000 +dualbound = 3808306.115334, lowerbound=1310699.115334, norm of subgrad 1145.314418 dualbound = 3808306.115334, lowerbound=1310699.115334, norm of subgrad 33.292829 stepsize= 1.000000 +dualbound = 3808382.059400, lowerbound=1313794.059400, norm of subgrad 1146.681760 dualbound = 3808382.059400, lowerbound=1313794.059400, norm of subgrad 34.072629 stepsize= 1.000000 +dualbound = 3808411.867281, lowerbound=1318962.867281, norm of subgrad 1148.966870 dualbound = 3808411.867281, lowerbound=1318962.867281, norm of subgrad 34.522571 stepsize= 1.000000 +dualbound = 3808465.086073, lowerbound=1312073.086073, norm of subgrad 1145.955534 dualbound = 3808465.086073, lowerbound=1312073.086073, norm of subgrad 34.557471 stepsize= 1.000000 +dualbound = 3808519.042564, lowerbound=1309052.042564, norm of subgrad 1144.627469 dualbound = 3808519.042564, lowerbound=1309052.042564, norm of subgrad 34.263048 stepsize= 1.000000 +dualbound = 3808579.830928, lowerbound=1312811.830928, norm of subgrad 1146.271709 dualbound = 3808579.830928, lowerbound=1312811.830928, norm of subgrad 34.464306 stepsize= 1.000000 +dualbound = 3808638.478505, lowerbound=1313819.478505, norm of subgrad 1146.730779 dualbound = 3808638.478505, lowerbound=1313819.478505, norm of subgrad 35.080587 stepsize= 1.000000 +dualbound = 3808683.426059, lowerbound=1313339.426059, norm of subgrad 1146.536273 dualbound = 3808683.426059, lowerbound=1313339.426059, norm of subgrad 35.368737 stepsize= 1.000000 +dualbound = 3808726.876585, lowerbound=1312970.876585, norm of subgrad 1146.382081 dualbound = 3808726.876585, lowerbound=1312970.876585, norm of subgrad 35.559113 stepsize= 1.000000 +dualbound = 3808791.611475, lowerbound=1316423.611475, norm of subgrad 1147.860014 dualbound = 3808791.611475, lowerbound=1316423.611475, norm of subgrad 34.981922 stepsize= 1.000000 +dualbound = 3808858.373524, lowerbound=1310717.373524, norm of subgrad 1145.372155 dualbound = 3808858.373524, lowerbound=1310717.373524, norm of subgrad 35.025163 stepsize= 1.000000 +dualbound = 3808920.093666, lowerbound=1322681.093666, norm of subgrad 1150.557297 dualbound = 3808920.093666, lowerbound=1322681.093666, norm of subgrad 34.098682 stepsize= 1.000000 +dualbound = 3808977.788286, lowerbound=1312554.788286, norm of subgrad 1146.144750 dualbound = 3808977.788286, lowerbound=1312554.788286, norm of subgrad 33.921890 stepsize= 1.000000 +dualbound = 3809043.440039, lowerbound=1310761.440039, norm of subgrad 1145.404488 dualbound = 3809043.440039, lowerbound=1310761.440039, norm of subgrad 35.435177 stepsize= 1.000000 +dualbound = 3809042.657301, lowerbound=1321148.657301, norm of subgrad 1149.915500 dualbound = 3809042.657301, lowerbound=1321148.657301, norm of subgrad 34.003195 stepsize= 1.000000 +dualbound = 3809144.909666, lowerbound=1319711.909666, norm of subgrad 1149.258852 dualbound = 3809144.909666, lowerbound=1319711.909666, norm of subgrad 34.442015 stepsize= 1.000000 +dualbound = 3809199.385627, lowerbound=1308723.385627, norm of subgrad 1144.483895 dualbound = 3809199.385627, lowerbound=1308723.385627, norm of subgrad 34.270628 stepsize= 1.000000 +dualbound = 3809248.889376, lowerbound=1309356.889376, norm of subgrad 1144.741407 dualbound = 3809248.889376, lowerbound=1309356.889376, norm of subgrad 33.548528 stepsize= 1.000000 +dualbound = 3809312.345730, lowerbound=1314075.345730, norm of subgrad 1146.829693 dualbound = 3809312.345730, lowerbound=1314075.345730, norm of subgrad 34.734081 stepsize= 1.000000 +dualbound = 3809344.239834, lowerbound=1315694.239834, norm of subgrad 1147.512196 dualbound = 3809344.239834, lowerbound=1315694.239834, norm of subgrad 33.494688 stepsize= 1.000000 +dualbound = 3809407.314300, lowerbound=1307702.314300, norm of subgrad 1144.032480 dualbound = 3809407.314300, lowerbound=1307702.314300, norm of subgrad 34.220965 stepsize= 1.000000 +dualbound = 3809445.034030, lowerbound=1315219.034030, norm of subgrad 1147.318628 dualbound = 3809445.034030, lowerbound=1315219.034030, norm of subgrad 34.039973 stepsize= 1.000000 +dualbound = 3809531.268134, lowerbound=1314635.268134, norm of subgrad 1147.047195 dualbound = 3809531.268134, lowerbound=1314635.268134, norm of subgrad 34.179440 stepsize= 1.000000 +dualbound = 3809582.564823, lowerbound=1311757.564823, norm of subgrad 1145.798222 dualbound = 3809582.564823, lowerbound=1311757.564823, norm of subgrad 33.871768 stepsize= 1.000000 +dualbound = 3809638.521822, lowerbound=1309251.521822, norm of subgrad 1144.694947 dualbound = 3809638.521822, lowerbound=1309251.521822, norm of subgrad 33.629704 stepsize= 1.000000 +dualbound = 3809690.438780, lowerbound=1314484.438780, norm of subgrad 1146.988857 dualbound = 3809690.438780, lowerbound=1314484.438780, norm of subgrad 33.925167 stepsize= 1.000000 +dualbound = 3809733.141756, lowerbound=1312060.141756, norm of subgrad 1145.945523 dualbound = 3809733.141756, lowerbound=1312060.141756, norm of subgrad 34.259349 stepsize= 1.000000 +dualbound = 3809791.237005, lowerbound=1312652.237005, norm of subgrad 1146.189006 dualbound = 3809791.237005, lowerbound=1312652.237005, norm of subgrad 33.986692 stepsize= 1.000000 +dualbound = 3809860.145875, lowerbound=1311333.145875, norm of subgrad 1145.619110 dualbound = 3809860.145875, lowerbound=1311333.145875, norm of subgrad 34.335242 stepsize= 1.000000 +dualbound = 3809907.685358, lowerbound=1313658.685358, norm of subgrad 1146.627527 dualbound = 3809907.685358, lowerbound=1313658.685358, norm of subgrad 33.816261 stepsize= 1.000000 +dualbound = 3809966.326109, lowerbound=1314435.326109, norm of subgrad 1146.990116 dualbound = 3809966.326109, lowerbound=1314435.326109, norm of subgrad 34.779890 stepsize= 1.000000 +dualbound = 3810000.164725, lowerbound=1312827.164725, norm of subgrad 1146.287121 dualbound = 3810000.164725, lowerbound=1312827.164725, norm of subgrad 34.363332 stepsize= 1.000000 +dualbound = 3810068.994448, lowerbound=1317050.994448, norm of subgrad 1148.111926 dualbound = 3810068.994448, lowerbound=1317050.994448, norm of subgrad 34.334090 stepsize= 1.000000 +dualbound = 3810118.729576, lowerbound=1310036.729576, norm of subgrad 1145.069749 dualbound = 3810118.729576, lowerbound=1310036.729576, norm of subgrad 34.608310 stepsize= 1.000000 +dualbound = 3810171.395749, lowerbound=1314942.395749, norm of subgrad 1147.207216 dualbound = 3810171.395749, lowerbound=1314942.395749, norm of subgrad 34.563943 stepsize= 1.000000 +dualbound = 3810234.288902, lowerbound=1317585.288902, norm of subgrad 1148.354601 dualbound = 3810234.288902, lowerbound=1317585.288902, norm of subgrad 34.581688 stepsize= 1.000000 +dualbound = 3810290.037369, lowerbound=1313849.037369, norm of subgrad 1146.756747 dualbound = 3810290.037369, lowerbound=1313849.037369, norm of subgrad 35.464750 stepsize= 1.000000 +dualbound = 3810325.275743, lowerbound=1311828.275743, norm of subgrad 1145.879695 dualbound = 3810325.275743, lowerbound=1311828.275743, norm of subgrad 35.316262 stepsize= 1.000000 +dualbound = 3810383.585544, lowerbound=1315035.585544, norm of subgrad 1147.259162 dualbound = 3810383.585544, lowerbound=1315035.585544, norm of subgrad 35.018706 stepsize= 1.000000 +dualbound = 3810458.899043, lowerbound=1312449.899043, norm of subgrad 1146.116006 dualbound = 3810458.899043, lowerbound=1312449.899043, norm of subgrad 34.746417 stepsize= 1.000000 +dualbound = 3810519.753574, lowerbound=1316311.753574, norm of subgrad 1147.773389 dualbound = 3810519.753574, lowerbound=1316311.753574, norm of subgrad 33.657904 stepsize= 1.000000 +dualbound = 3810584.093572, lowerbound=1313264.093572, norm of subgrad 1146.441055 dualbound = 3810584.093572, lowerbound=1313264.093572, norm of subgrad 33.575884 stepsize= 1.000000 +dualbound = 3810618.277947, lowerbound=1309996.277947, norm of subgrad 1145.042479 dualbound = 3810618.277947, lowerbound=1309996.277947, norm of subgrad 34.061479 stepsize= 1.000000 +dualbound = 3810694.303814, lowerbound=1311317.303814, norm of subgrad 1145.622234 dualbound = 3810694.303814, lowerbound=1311317.303814, norm of subgrad 34.771049 stepsize= 1.000000 +dualbound = 3810712.361777, lowerbound=1312576.361777, norm of subgrad 1146.165940 dualbound = 3810712.361777, lowerbound=1312576.361777, norm of subgrad 33.735115 stepsize= 1.000000 +dualbound = 3810794.623723, lowerbound=1307450.623724, norm of subgrad 1143.920287 dualbound = 3810794.623723, lowerbound=1307450.623724, norm of subgrad 34.427633 stepsize= 1.000000 +dualbound = 3810853.370276, lowerbound=1316660.370276, norm of subgrad 1147.946589 dualbound = 3810853.370276, lowerbound=1316660.370276, norm of subgrad 34.347439 stepsize= 1.000000 +dualbound = 3810890.644718, lowerbound=1310210.644718, norm of subgrad 1145.158786 dualbound = 3810890.644718, lowerbound=1310210.644718, norm of subgrad 34.860787 stepsize= 1.000000 +dualbound = 3810948.113468, lowerbound=1311191.113468, norm of subgrad 1145.585489 dualbound = 3810948.113468, lowerbound=1311191.113468, norm of subgrad 35.106534 stepsize= 1.000000 +dualbound = 3810998.912577, lowerbound=1318595.912577, norm of subgrad 1148.786713 dualbound = 3810998.912577, lowerbound=1318595.912577, norm of subgrad 34.143800 stepsize= 1.000000 +dualbound = 3811060.359575, lowerbound=1312315.359575, norm of subgrad 1146.044222 dualbound = 3811060.359575, lowerbound=1312315.359575, norm of subgrad 34.109339 stepsize= 1.000000 +dualbound = 3811121.452923, lowerbound=1317728.452923, norm of subgrad 1148.405178 dualbound = 3811121.452923, lowerbound=1317728.452923, norm of subgrad 34.162748 stepsize= 1.000000 +dualbound = 3811187.460075, lowerbound=1311349.460075, norm of subgrad 1145.620557 dualbound = 3811187.460075, lowerbound=1311349.460075, norm of subgrad 34.102891 stepsize= 1.000000 +dualbound = 3811215.071223, lowerbound=1318429.071223, norm of subgrad 1148.710177 dualbound = 3811215.071223, lowerbound=1318429.071223, norm of subgrad 33.669142 stepsize= 1.000000 +dualbound = 3811287.107249, lowerbound=1312775.107249, norm of subgrad 1146.239551 dualbound = 3811287.107249, lowerbound=1312775.107249, norm of subgrad 34.088650 stepsize= 1.000000 +dualbound = 3811340.670857, lowerbound=1311146.670857, norm of subgrad 1145.524627 dualbound = 3811340.670857, lowerbound=1311146.670857, norm of subgrad 33.668436 stepsize= 1.000000 +dualbound = 3811390.723922, lowerbound=1315312.723922, norm of subgrad 1147.359021 dualbound = 3811390.723922, lowerbound=1315312.723922, norm of subgrad 34.206038 stepsize= 1.000000 +dualbound = 3811436.628858, lowerbound=1313940.628858, norm of subgrad 1146.763981 dualbound = 3811436.628858, lowerbound=1313940.628858, norm of subgrad 34.247700 stepsize= 1.000000 +dualbound = 3811500.032100, lowerbound=1315070.032100, norm of subgrad 1147.253691 dualbound = 3811500.032100, lowerbound=1315070.032100, norm of subgrad 34.415160 stepsize= 1.000000 +dualbound = 3811559.148112, lowerbound=1308319.148112, norm of subgrad 1144.300288 dualbound = 3811559.148112, lowerbound=1308319.148112, norm of subgrad 34.104487 stepsize= 1.000000 +dualbound = 3811621.635745, lowerbound=1310008.635745, norm of subgrad 1145.041762 dualbound = 3811621.635745, lowerbound=1310008.635745, norm of subgrad 34.270799 stepsize= 1.000000 +dualbound = 3811652.413249, lowerbound=1315633.413249, norm of subgrad 1147.531443 dualbound = 3811652.413249, lowerbound=1315633.413249, norm of subgrad 35.011105 stepsize= 1.000000 +dualbound = 3811729.072326, lowerbound=1307751.072326, norm of subgrad 1144.052478 dualbound = 3811729.072326, lowerbound=1307751.072326, norm of subgrad 34.375268 stepsize= 1.000000 +dualbound = 3811763.966810, lowerbound=1319455.966810, norm of subgrad 1149.194486 dualbound = 3811763.966810, lowerbound=1319455.966810, norm of subgrad 35.027054 stepsize= 1.000000 +dualbound = 3811824.344587, lowerbound=1312799.344587, norm of subgrad 1146.278912 dualbound = 3811824.344587, lowerbound=1312799.344587, norm of subgrad 34.876608 stepsize= 1.000000 +dualbound = 3811870.054558, lowerbound=1310051.054558, norm of subgrad 1145.104823 dualbound = 3811870.054558, lowerbound=1310051.054558, norm of subgrad 35.492393 stepsize= 1.000000 +dualbound = 3811908.147570, lowerbound=1316486.147570, norm of subgrad 1147.862861 dualbound = 3811908.147570, lowerbound=1316486.147570, norm of subgrad 33.780068 stepsize= 1.000000 +dualbound = 3812023.044083, lowerbound=1310260.044083, norm of subgrad 1145.151101 dualbound = 3812023.044083, lowerbound=1310260.044083, norm of subgrad 35.012805 stepsize= 1.000000 +dualbound = 3812057.292374, lowerbound=1313984.292374, norm of subgrad 1146.789559 dualbound = 3812057.292374, lowerbound=1313984.292374, norm of subgrad 34.296476 stepsize= 1.000000 +dualbound = 3812101.276916, lowerbound=1309934.276916, norm of subgrad 1145.032872 dualbound = 3812101.276916, lowerbound=1309934.276916, norm of subgrad 34.784832 stepsize= 1.000000 +dualbound = 3812170.753428, lowerbound=1316082.753428, norm of subgrad 1147.694538 dualbound = 3812170.753428, lowerbound=1316082.753428, norm of subgrad 34.488788 stepsize= 1.000000 +dualbound = 3812230.823441, lowerbound=1313986.823441, norm of subgrad 1146.774966 dualbound = 3812230.823441, lowerbound=1313986.823441, norm of subgrad 34.147767 stepsize= 1.000000 +dualbound = 3812274.220349, lowerbound=1316091.220349, norm of subgrad 1147.710861 dualbound = 3812274.220349, lowerbound=1316091.220349, norm of subgrad 34.531101 stepsize= 1.000000 +dualbound = 3812325.950995, lowerbound=1310677.950995, norm of subgrad 1145.337920 dualbound = 3812325.950995, lowerbound=1310677.950995, norm of subgrad 34.245155 stepsize= 1.000000 +dualbound = 3812405.480479, lowerbound=1309337.480479, norm of subgrad 1144.748654 dualbound = 3812405.480479, lowerbound=1309337.480479, norm of subgrad 34.518538 stepsize= 1.000000 +dualbound = 3812453.389375, lowerbound=1312708.389375, norm of subgrad 1146.230513 dualbound = 3812453.389375, lowerbound=1312708.389375, norm of subgrad 34.407977 stepsize= 1.000000 +dualbound = 3812484.024209, lowerbound=1317761.024209, norm of subgrad 1148.444175 dualbound = 3812484.024209, lowerbound=1317761.024209, norm of subgrad 34.549021 stepsize= 1.000000 +dualbound = 3812565.505467, lowerbound=1313212.505467, norm of subgrad 1146.459552 dualbound = 3812565.505467, lowerbound=1313212.505467, norm of subgrad 35.192062 stepsize= 1.000000 +dualbound = 3812603.199467, lowerbound=1310718.199467, norm of subgrad 1145.359856 dualbound = 3812603.199467, lowerbound=1310718.199467, norm of subgrad 34.186167 stepsize= 1.000000 +dualbound = 3812677.673714, lowerbound=1313299.673714, norm of subgrad 1146.485793 dualbound = 3812677.673714, lowerbound=1313299.673714, norm of subgrad 34.705536 stepsize= 1.000000 +dualbound = 3812722.616060, lowerbound=1315805.616060, norm of subgrad 1147.573360 dualbound = 3812722.616060, lowerbound=1315805.616060, norm of subgrad 34.116599 stepsize= 1.000000 +dualbound = 3812780.991055, lowerbound=1316211.991055, norm of subgrad 1147.759553 dualbound = 3812780.991055, lowerbound=1316211.991055, norm of subgrad 34.617553 stepsize= 1.000000 +dualbound = 3812824.962587, lowerbound=1311706.962587, norm of subgrad 1145.796213 dualbound = 3812824.962587, lowerbound=1311706.962587, norm of subgrad 34.437937 stepsize= 1.000000 +dualbound = 3812893.661286, lowerbound=1315132.661286, norm of subgrad 1147.255709 dualbound = 3812893.661286, lowerbound=1315132.661286, norm of subgrad 33.640730 stepsize= 1.000000 +dualbound = 3812975.134893, lowerbound=1313242.134893, norm of subgrad 1146.447615 dualbound = 3812975.134893, lowerbound=1313242.134893, norm of subgrad 34.372571 stepsize= 1.000000 +dualbound = 3812997.676355, lowerbound=1314565.676355, norm of subgrad 1147.039527 dualbound = 3812997.676355, lowerbound=1314565.676355, norm of subgrad 34.007962 stepsize= 1.000000 +dualbound = 3813047.352397, lowerbound=1312859.352397, norm of subgrad 1146.319481 dualbound = 3813047.352397, lowerbound=1312859.352397, norm of subgrad 35.194830 stepsize= 1.000000 +dualbound = 3813111.247195, lowerbound=1316292.247195, norm of subgrad 1147.793643 dualbound = 3813111.247195, lowerbound=1316292.247195, norm of subgrad 34.668354 stepsize= 1.000000 +dualbound = 3813161.850879, lowerbound=1309606.850879, norm of subgrad 1144.876347 dualbound = 3813161.850879, lowerbound=1309606.850879, norm of subgrad 34.432596 stepsize= 1.000000 +dualbound = 3813228.065635, lowerbound=1311004.065635, norm of subgrad 1145.471984 dualbound = 3813228.065635, lowerbound=1311004.065635, norm of subgrad 34.179157 stepsize= 1.000000 +dualbound = 3813262.272271, lowerbound=1314072.272271, norm of subgrad 1146.831405 dualbound = 3813262.272271, lowerbound=1314072.272271, norm of subgrad 34.412304 stepsize= 1.000000 +dualbound = 3813349.705083, lowerbound=1314393.705083, norm of subgrad 1146.963690 dualbound = 3813349.705083, lowerbound=1314393.705083, norm of subgrad 34.920378 stepsize= 1.000000 +dualbound = 3813385.899234, lowerbound=1311557.899234, norm of subgrad 1145.715453 dualbound = 3813385.899234, lowerbound=1311557.899234, norm of subgrad 33.796363 stepsize= 1.000000 +dualbound = 3813461.496081, lowerbound=1312881.496081, norm of subgrad 1146.292936 dualbound = 3813461.496081, lowerbound=1312881.496081, norm of subgrad 34.374363 stepsize= 1.000000 +dualbound = 3813490.640678, lowerbound=1313029.640678, norm of subgrad 1146.364096 dualbound = 3813490.640678, lowerbound=1313029.640678, norm of subgrad 33.913782 stepsize= 1.000000 +dualbound = 3813562.969085, lowerbound=1311625.969085, norm of subgrad 1145.773524 dualbound = 3813562.969085, lowerbound=1311625.969085, norm of subgrad 35.260862 stepsize= 1.000000 +dualbound = 3813594.761800, lowerbound=1314032.761800, norm of subgrad 1146.802407 dualbound = 3813594.761800, lowerbound=1314032.761800, norm of subgrad 33.982241 stepsize= 1.000000 +dualbound = 3813669.204205, lowerbound=1314975.204205, norm of subgrad 1147.207568 dualbound = 3813669.204205, lowerbound=1314975.204205, norm of subgrad 34.415729 stepsize= 1.000000 +dualbound = 3813727.216039, lowerbound=1304753.216039, norm of subgrad 1142.744598 dualbound = 3813727.216039, lowerbound=1304753.216039, norm of subgrad 34.205436 stepsize= 1.000000 +dualbound = 3813787.278551, lowerbound=1321047.278551, norm of subgrad 1149.846633 dualbound = 3813787.278551, lowerbound=1321047.278551, norm of subgrad 34.059690 stepsize= 1.000000 +dualbound = 3813810.145757, lowerbound=1314973.145757, norm of subgrad 1147.241973 dualbound = 3813810.145757, lowerbound=1314973.145757, norm of subgrad 34.840597 stepsize= 1.000000 +dualbound = 3813859.996850, lowerbound=1316205.996850, norm of subgrad 1147.761733 dualbound = 3813859.996850, lowerbound=1316205.996850, norm of subgrad 34.653298 stepsize= 1.000000 +dualbound = 3813937.670213, lowerbound=1308692.670213, norm of subgrad 1144.489699 dualbound = 3813937.670213, lowerbound=1308692.670213, norm of subgrad 35.237386 stepsize= 1.000000 +dualbound = 3814000.267406, lowerbound=1315538.267406, norm of subgrad 1147.454255 dualbound = 3814000.267406, lowerbound=1315538.267406, norm of subgrad 34.286983 stepsize= 1.000000 +dualbound = 3814050.718546, lowerbound=1314264.718546, norm of subgrad 1146.922281 dualbound = 3814050.718546, lowerbound=1314264.718546, norm of subgrad 34.877660 stepsize= 1.000000 +dualbound = 3814083.726967, lowerbound=1313078.726967, norm of subgrad 1146.418216 dualbound = 3814083.726967, lowerbound=1313078.726967, norm of subgrad 35.057216 stepsize= 1.000000 +dualbound = 3814144.553208, lowerbound=1308207.553208, norm of subgrad 1144.265071 dualbound = 3814144.553208, lowerbound=1308207.553208, norm of subgrad 34.580721 stepsize= 1.000000 +dualbound = 3814234.168801, lowerbound=1312078.168801, norm of subgrad 1145.949025 dualbound = 3814234.168801, lowerbound=1312078.168801, norm of subgrad 34.793902 stepsize= 1.000000 +dualbound = 3814281.265551, lowerbound=1314030.265551, norm of subgrad 1146.780827 dualbound = 3814281.265551, lowerbound=1314030.265551, norm of subgrad 33.512636 stepsize= 1.000000 +dualbound = 3814350.844335, lowerbound=1312143.844335, norm of subgrad 1145.959792 dualbound = 3814350.844335, lowerbound=1312143.844335, norm of subgrad 33.905439 stepsize= 1.000000 +dualbound = 3814398.219960, lowerbound=1309708.219960, norm of subgrad 1144.894851 dualbound = 3814398.219960, lowerbound=1309708.219960, norm of subgrad 33.516796 stepsize= 1.000000 +dualbound = 3814463.915065, lowerbound=1316242.915065, norm of subgrad 1147.765619 dualbound = 3814463.915065, lowerbound=1316242.915065, norm of subgrad 34.477458 stepsize= 1.000000 +dualbound = 3814501.021987, lowerbound=1311976.021987, norm of subgrad 1145.910128 dualbound = 3814501.021987, lowerbound=1311976.021987, norm of subgrad 34.221440 stepsize= 1.000000 +dualbound = 3814532.523083, lowerbound=1314325.523083, norm of subgrad 1146.941377 dualbound = 3814532.523083, lowerbound=1314325.523083, norm of subgrad 34.358421 stepsize= 1.000000 +dualbound = 3814615.889364, lowerbound=1315445.889364, norm of subgrad 1147.408772 dualbound = 3814615.889364, lowerbound=1315445.889364, norm of subgrad 34.414623 stepsize= 1.000000 +dualbound = 3814678.925998, lowerbound=1316597.925998, norm of subgrad 1147.915905 dualbound = 3814678.925998, lowerbound=1316597.925998, norm of subgrad 34.293391 stepsize= 1.000000 +dualbound = 3814714.515109, lowerbound=1315303.515109, norm of subgrad 1147.358059 dualbound = 3814714.515109, lowerbound=1315303.515109, norm of subgrad 34.096761 stepsize= 1.000000 +dualbound = 3814769.744140, lowerbound=1314996.744140, norm of subgrad 1147.226980 dualbound = 3814769.744140, lowerbound=1314996.744140, norm of subgrad 34.470698 stepsize= 1.000000 +dualbound = 3814854.155645, lowerbound=1310817.155645, norm of subgrad 1145.385593 dualbound = 3814854.155645, lowerbound=1310817.155645, norm of subgrad 34.284275 stepsize= 1.000000 +dualbound = 3814884.311323, lowerbound=1317967.311323, norm of subgrad 1148.506122 dualbound = 3814884.311323, lowerbound=1317967.311323, norm of subgrad 33.602912 stepsize= 1.000000 +dualbound = 3814959.563665, lowerbound=1313839.563665, norm of subgrad 1146.692445 dualbound = 3814959.563665, lowerbound=1313839.563665, norm of subgrad 33.752812 stepsize= 1.000000 +dualbound = 3815008.994348, lowerbound=1318026.994348, norm of subgrad 1148.551694 dualbound = 3815008.994348, lowerbound=1318026.994348, norm of subgrad 34.546066 stepsize= 1.000000 +dualbound = 3815048.302914, lowerbound=1309580.302914, norm of subgrad 1144.866500 dualbound = 3815048.302914, lowerbound=1309580.302914, norm of subgrad 34.326499 stepsize= 1.000000 +dualbound = 3815101.870634, lowerbound=1317473.870634, norm of subgrad 1148.326117 dualbound = 3815101.870634, lowerbound=1317473.870634, norm of subgrad 35.107944 stepsize= 1.000000 +dualbound = 3815158.674706, lowerbound=1310103.674706, norm of subgrad 1145.115573 dualbound = 3815158.674706, lowerbound=1310103.674706, norm of subgrad 35.253426 stepsize= 1.000000 +dualbound = 3815204.285049, lowerbound=1319439.285049, norm of subgrad 1149.189839 dualbound = 3815204.285049, lowerbound=1319439.285049, norm of subgrad 35.264860 stepsize= 1.000000 +dualbound = 3815256.088296, lowerbound=1311994.088296, norm of subgrad 1145.945500 dualbound = 3815256.088296, lowerbound=1311994.088296, norm of subgrad 35.338410 stepsize= 1.000000 +dualbound = 3815321.285819, lowerbound=1313829.285819, norm of subgrad 1146.728078 dualbound = 3815321.285819, lowerbound=1313829.285819, norm of subgrad 34.945637 stepsize= 1.000000 +dualbound = 3815392.399673, lowerbound=1317788.399673, norm of subgrad 1148.443904 dualbound = 3815392.399673, lowerbound=1317788.399673, norm of subgrad 34.729150 stepsize= 1.000000 +dualbound = 3815436.474397, lowerbound=1310969.474397, norm of subgrad 1145.434622 dualbound = 3815436.474397, lowerbound=1310969.474397, norm of subgrad 33.091913 stepsize= 1.000000 +dualbound = 3815536.085706, lowerbound=1312414.085706, norm of subgrad 1146.067662 dualbound = 3815536.085706, lowerbound=1312414.085706, norm of subgrad 34.008989 stepsize= 1.000000 +dualbound = 3815555.363604, lowerbound=1314925.363604, norm of subgrad 1147.195870 dualbound = 3815555.363604, lowerbound=1314925.363604, norm of subgrad 33.945219 stepsize= 1.000000 +dualbound = 3815600.863131, lowerbound=1309891.863131, norm of subgrad 1144.976796 dualbound = 3815600.863131, lowerbound=1309891.863131, norm of subgrad 33.548465 stepsize= 1.000000 +dualbound = 3815677.589331, lowerbound=1315398.589331, norm of subgrad 1147.394261 dualbound = 3815677.589331, lowerbound=1315398.589331, norm of subgrad 34.521388 stepsize= 1.000000 +dualbound = 3815721.881753, lowerbound=1312963.881753, norm of subgrad 1146.332361 dualbound = 3815721.881753, lowerbound=1312963.881753, norm of subgrad 34.033695 stepsize= 1.000000 +dualbound = 3815774.457606, lowerbound=1315989.457606, norm of subgrad 1147.629059 dualbound = 3815774.457606, lowerbound=1315989.457606, norm of subgrad 33.400237 stepsize= 1.000000 +dualbound = 3815839.121963, lowerbound=1312712.121963, norm of subgrad 1146.253516 dualbound = 3815839.121963, lowerbound=1312712.121963, norm of subgrad 35.350592 stepsize= 1.000000 +dualbound = 3815852.566812, lowerbound=1319735.566812, norm of subgrad 1149.314825 dualbound = 3815852.566812, lowerbound=1319735.566812, norm of subgrad 34.676287 stepsize= 1.000000 +dualbound = 3815950.027704, lowerbound=1310322.027704, norm of subgrad 1145.202178 dualbound = 3815950.027704, lowerbound=1310322.027704, norm of subgrad 35.545195 stepsize= 1.000000 +dualbound = 3815968.938410, lowerbound=1315176.938410, norm of subgrad 1147.311613 dualbound = 3815968.938410, lowerbound=1315176.938410, norm of subgrad 34.145435 stepsize= 1.000000 +dualbound = 3816070.614469, lowerbound=1314327.614469, norm of subgrad 1146.926595 dualbound = 3816070.614469, lowerbound=1314327.614469, norm of subgrad 34.852203 stepsize= 1.000000 +dualbound = 3816111.402306, lowerbound=1311401.402306, norm of subgrad 1145.662866 dualbound = 3816111.402306, lowerbound=1311401.402306, norm of subgrad 34.391683 stepsize= 1.000000 +dualbound = 3816154.379535, lowerbound=1313296.379535, norm of subgrad 1146.475198 dualbound = 3816154.379535, lowerbound=1313296.379535, norm of subgrad 33.940790 stepsize= 1.000000 +dualbound = 3816214.590765, lowerbound=1310968.590765, norm of subgrad 1145.459554 dualbound = 3816214.590765, lowerbound=1310968.590765, norm of subgrad 34.193731 stepsize= 1.000000 +dualbound = 3816263.051747, lowerbound=1310813.051747, norm of subgrad 1145.408683 dualbound = 3816263.051747, lowerbound=1310813.051747, norm of subgrad 34.589897 stepsize= 1.000000 +dualbound = 3816327.707755, lowerbound=1311002.707755, norm of subgrad 1145.474883 dualbound = 3816327.707755, lowerbound=1311002.707755, norm of subgrad 34.273255 stepsize= 1.000000 +dualbound = 3816395.972303, lowerbound=1318259.972303, norm of subgrad 1148.614371 dualbound = 3816395.972303, lowerbound=1318259.972303, norm of subgrad 33.515139 stepsize= 1.000000 +dualbound = 3816444.071364, lowerbound=1311065.071364, norm of subgrad 1145.516509 dualbound = 3816444.071364, lowerbound=1311065.071364, norm of subgrad 34.512303 stepsize= 1.000000 +dualbound = 3816487.461406, lowerbound=1315152.461406, norm of subgrad 1147.309227 dualbound = 3816487.461406, lowerbound=1315152.461406, norm of subgrad 34.776286 stepsize= 1.000000 +dualbound = 3816529.564552, lowerbound=1314882.564552, norm of subgrad 1147.200316 dualbound = 3816529.564552, lowerbound=1314882.564552, norm of subgrad 35.044303 stepsize= 1.000000 +dualbound = 3816604.067681, lowerbound=1315419.067681, norm of subgrad 1147.428023 dualbound = 3816604.067681, lowerbound=1315419.067681, norm of subgrad 35.305851 stepsize= 1.000000 +dualbound = 3816641.248961, lowerbound=1315809.248961, norm of subgrad 1147.588885 dualbound = 3816641.248961, lowerbound=1315809.248961, norm of subgrad 34.470006 stepsize= 1.000000 +dualbound = 3816719.873821, lowerbound=1310910.873821, norm of subgrad 1145.452694 dualbound = 3816719.873821, lowerbound=1310910.873821, norm of subgrad 35.066007 stepsize= 1.000000 +dualbound = 3816755.441838, lowerbound=1316521.441838, norm of subgrad 1147.942264 dualbound = 3816755.441838, lowerbound=1316521.441838, norm of subgrad 35.854819 stepsize= 1.000000 +dualbound = 3816800.334793, lowerbound=1311619.334793, norm of subgrad 1145.765393 dualbound = 3816800.334793, lowerbound=1311619.334793, norm of subgrad 34.697161 stepsize= 1.000000 +dualbound = 3816866.879506, lowerbound=1317674.879506, norm of subgrad 1148.405364 dualbound = 3816866.879506, lowerbound=1317674.879506, norm of subgrad 35.022060 stepsize= 1.000000 +dualbound = 3816940.455871, lowerbound=1314835.455871, norm of subgrad 1147.154504 dualbound = 3816940.455871, lowerbound=1314835.455871, norm of subgrad 34.663762 stepsize= 1.000000 +dualbound = 3816968.319489, lowerbound=1311684.319489, norm of subgrad 1145.789823 dualbound = 3816968.319489, lowerbound=1311684.319489, norm of subgrad 34.320018 stepsize= 1.000000 +dualbound = 3817070.343533, lowerbound=1311819.343533, norm of subgrad 1145.812089 dualbound = 3817070.343533, lowerbound=1311819.343533, norm of subgrad 34.176367 stepsize= 1.000000 +dualbound = 3817111.014060, lowerbound=1313298.014060, norm of subgrad 1146.468933 dualbound = 3817111.014060, lowerbound=1313298.014060, norm of subgrad 33.670024 stepsize= 1.000000 +dualbound = 3817190.759261, lowerbound=1317599.759261, norm of subgrad 1148.335212 dualbound = 3817190.759261, lowerbound=1317599.759261, norm of subgrad 33.966825 stepsize= 1.000000 +dualbound = 3817194.696707, lowerbound=1317302.696707, norm of subgrad 1148.250276 dualbound = 3817194.696707, lowerbound=1317302.696707, norm of subgrad 34.350218 stepsize= 1.000000 +dualbound = 3817270.760553, lowerbound=1309867.760553, norm of subgrad 1144.964524 dualbound = 3817270.760553, lowerbound=1309867.760553, norm of subgrad 33.942066 stepsize= 1.000000 +dualbound = 3817310.964530, lowerbound=1318153.964530, norm of subgrad 1148.614803 dualbound = 3817310.964530, lowerbound=1318153.964530, norm of subgrad 34.672813 stepsize= 1.000000 +dualbound = 3817379.327457, lowerbound=1308576.327457, norm of subgrad 1144.420957 dualbound = 3817379.327457, lowerbound=1308576.327457, norm of subgrad 34.516126 stepsize= 1.000000 +dualbound = 3817430.245371, lowerbound=1316918.245371, norm of subgrad 1148.054984 dualbound = 3817430.245371, lowerbound=1316918.245371, norm of subgrad 34.101582 stepsize= 1.000000 +dualbound = 3817518.623657, lowerbound=1311577.623657, norm of subgrad 1145.692203 dualbound = 3817518.623657, lowerbound=1311577.623657, norm of subgrad 33.486987 stepsize= 1.000000 +dualbound = 3817567.658468, lowerbound=1313931.658468, norm of subgrad 1146.717776 dualbound = 3817567.658468, lowerbound=1313931.658468, norm of subgrad 32.848665 stepsize= 1.000000 +dualbound = 3817631.283530, lowerbound=1313411.283530, norm of subgrad 1146.526617 dualbound = 3817631.283530, lowerbound=1313411.283530, norm of subgrad 34.287389 stepsize= 1.000000 +dualbound = 3817634.935036, lowerbound=1311379.935036, norm of subgrad 1145.658734 dualbound = 3817634.935036, lowerbound=1311379.935036, norm of subgrad 34.024278 stepsize= 1.000000 +dualbound = 3817725.171582, lowerbound=1310264.171582, norm of subgrad 1145.154213 dualbound = 3817725.171582, lowerbound=1310264.171582, norm of subgrad 34.702112 stepsize= 1.000000 +dualbound = 3817757.851183, lowerbound=1321159.851183, norm of subgrad 1149.927324 dualbound = 3817757.851183, lowerbound=1321159.851183, norm of subgrad 34.722897 stepsize= 1.000000 +dualbound = 3817804.089792, lowerbound=1314115.089792, norm of subgrad 1146.857049 dualbound = 3817804.089792, lowerbound=1314115.089792, norm of subgrad 34.817217 stepsize= 1.000000 +dualbound = 3817874.719913, lowerbound=1309834.719913, norm of subgrad 1144.998568 dualbound = 3817874.719913, lowerbound=1309834.719913, norm of subgrad 35.463081 stepsize= 1.000000 +dualbound = 3817932.634949, lowerbound=1317931.634949, norm of subgrad 1148.516711 dualbound = 3817932.634949, lowerbound=1317931.634949, norm of subgrad 34.884309 stepsize= 1.000000 +dualbound = 3817980.122137, lowerbound=1313734.122137, norm of subgrad 1146.688764 dualbound = 3817980.122137, lowerbound=1313734.122137, norm of subgrad 34.763302 stepsize= 1.000000 +dualbound = 3818030.815790, lowerbound=1312016.815790, norm of subgrad 1145.938400 dualbound = 3818030.815790, lowerbound=1312016.815790, norm of subgrad 34.766272 stepsize= 1.000000 +dualbound = 3818104.246461, lowerbound=1311822.246461, norm of subgrad 1145.840411 dualbound = 3818104.246461, lowerbound=1311822.246461, norm of subgrad 34.661660 stepsize= 1.000000 +dualbound = 3818168.658335, lowerbound=1321160.658335, norm of subgrad 1149.907674 dualbound = 3818168.658335, lowerbound=1321160.658335, norm of subgrad 34.516835 stepsize= 1.000000 +dualbound = 3818207.000511, lowerbound=1314250.000511, norm of subgrad 1146.902786 dualbound = 3818207.000511, lowerbound=1314250.000511, norm of subgrad 34.268676 stepsize= 1.000000 +dualbound = 3818281.676172, lowerbound=1307729.676172, norm of subgrad 1144.053616 dualbound = 3818281.676172, lowerbound=1307729.676172, norm of subgrad 34.694029 stepsize= 1.000000 +dualbound = 3818303.020830, lowerbound=1317080.020830, norm of subgrad 1148.168551 dualbound = 3818303.020830, lowerbound=1317080.020830, norm of subgrad 35.104767 stepsize= 1.000000 +dualbound = 3818346.392291, lowerbound=1314769.392291, norm of subgrad 1147.142272 dualbound = 3818346.392291, lowerbound=1314769.392291, norm of subgrad 34.776018 stepsize= 1.000000 +dualbound = 3818424.079000, lowerbound=1312858.079000, norm of subgrad 1146.283158 dualbound = 3818424.079000, lowerbound=1312858.079000, norm of subgrad 34.419278 stepsize= 1.000000 +dualbound = 3818502.517329, lowerbound=1313486.517329, norm of subgrad 1146.545035 dualbound = 3818502.517329, lowerbound=1313486.517329, norm of subgrad 34.021145 stepsize= 1.000000 +dualbound = 3818526.468020, lowerbound=1313656.468020, norm of subgrad 1146.654032 dualbound = 3818526.468020, lowerbound=1313656.468020, norm of subgrad 34.394050 stepsize= 1.000000 +dualbound = 3818604.743157, lowerbound=1310357.743157, norm of subgrad 1145.191138 dualbound = 3818604.743157, lowerbound=1310357.743157, norm of subgrad 34.398766 stepsize= 1.000000 +dualbound = 3818651.682889, lowerbound=1311771.682889, norm of subgrad 1145.836674 dualbound = 3818651.682889, lowerbound=1311771.682889, norm of subgrad 34.884663 stepsize= 1.000000 +dualbound = 3818699.081068, lowerbound=1312314.081068, norm of subgrad 1146.081184 dualbound = 3818699.081068, lowerbound=1312314.081068, norm of subgrad 35.148232 stepsize= 1.000000 +dualbound = 3818757.027074, lowerbound=1315109.027074, norm of subgrad 1147.285940 dualbound = 3818757.027074, lowerbound=1315109.027074, norm of subgrad 34.841728 stepsize= 1.000000 +dualbound = 3818840.908263, lowerbound=1314216.908263, norm of subgrad 1146.864817 dualbound = 3818840.908263, lowerbound=1314216.908263, norm of subgrad 34.145002 stepsize= 1.000000 +dualbound = 3818900.324368, lowerbound=1313371.324368, norm of subgrad 1146.513552 dualbound = 3818900.324368, lowerbound=1313371.324368, norm of subgrad 34.371734 stepsize= 1.000000 +dualbound = 3818918.555838, lowerbound=1318190.555838, norm of subgrad 1148.623766 dualbound = 3818918.555838, lowerbound=1318190.555838, norm of subgrad 34.120836 stepsize= 1.000000 +dualbound = 3818997.031978, lowerbound=1312592.031978, norm of subgrad 1146.174521 dualbound = 3818997.031978, lowerbound=1312592.031978, norm of subgrad 34.676738 stepsize= 1.000000 +dualbound = 3819026.699662, lowerbound=1318334.699662, norm of subgrad 1148.671711 dualbound = 3819026.699662, lowerbound=1318334.699662, norm of subgrad 33.788573 stepsize= 1.000000 +dualbound = 3819109.025395, lowerbound=1309271.025395, norm of subgrad 1144.744087 dualbound = 3819109.025395, lowerbound=1309271.025395, norm of subgrad 35.359945 stepsize= 1.000000 +dualbound = 3819134.467421, lowerbound=1324216.467421, norm of subgrad 1151.251696 dualbound = 3819134.467421, lowerbound=1324216.467421, norm of subgrad 34.488288 stepsize= 1.000000 +dualbound = 3819202.545769, lowerbound=1314038.545769, norm of subgrad 1146.821061 dualbound = 3819202.545769, lowerbound=1314038.545769, norm of subgrad 35.043949 stepsize= 1.000000 +dualbound = 3819249.917509, lowerbound=1309129.917509, norm of subgrad 1144.699488 dualbound = 3819249.917509, lowerbound=1309129.917509, norm of subgrad 35.417111 stepsize= 1.000000 +dualbound = 3819302.774095, lowerbound=1317106.774095, norm of subgrad 1148.147540 dualbound = 3819302.774095, lowerbound=1317106.774095, norm of subgrad 34.479800 stepsize= 1.000000 +dualbound = 3819362.495385, lowerbound=1316865.495385, norm of subgrad 1148.026348 dualbound = 3819362.495385, lowerbound=1316865.495385, norm of subgrad 34.039995 stepsize= 1.000000 +dualbound = 3819453.517002, lowerbound=1319532.517002, norm of subgrad 1149.183413 dualbound = 3819453.517002, lowerbound=1319532.517002, norm of subgrad 34.365995 stepsize= 1.000000 +dualbound = 3819466.917362, lowerbound=1307502.917362, norm of subgrad 1143.949263 dualbound = 3819466.917362, lowerbound=1307502.917362, norm of subgrad 33.621427 stepsize= 1.000000 +dualbound = 3819567.942517, lowerbound=1310831.942517, norm of subgrad 1145.396849 dualbound = 3819567.942517, lowerbound=1310831.942517, norm of subgrad 34.684653 stepsize= 1.000000 +dualbound = 3819600.151689, lowerbound=1317255.151689, norm of subgrad 1148.220428 dualbound = 3819600.151689, lowerbound=1317255.151689, norm of subgrad 34.455902 stepsize= 1.000000 +dualbound = 3819641.568337, lowerbound=1306620.568337, norm of subgrad 1143.568349 dualbound = 3819641.568337, lowerbound=1306620.568337, norm of subgrad 34.196734 stepsize= 1.000000 +dualbound = 3819687.030989, lowerbound=1317057.030989, norm of subgrad 1148.117603 dualbound = 3819687.030989, lowerbound=1317057.030989, norm of subgrad 34.094907 stepsize= 1.000000 +dualbound = 3819771.493133, lowerbound=1319369.493133, norm of subgrad 1149.128580 dualbound = 3819771.493133, lowerbound=1319369.493133, norm of subgrad 34.806065 stepsize= 1.000000 +dualbound = 3819779.313111, lowerbound=1312137.313111, norm of subgrad 1145.982684 dualbound = 3819779.313111, lowerbound=1312137.313111, norm of subgrad 33.864731 stepsize= 1.000000 +dualbound = 3819854.400832, lowerbound=1316735.400832, norm of subgrad 1147.964460 dualbound = 3819854.400832, lowerbound=1316735.400832, norm of subgrad 34.089408 stepsize= 1.000000 +dualbound = 3819917.369475, lowerbound=1310033.369475, norm of subgrad 1145.066535 dualbound = 3819917.369475, lowerbound=1310033.369475, norm of subgrad 34.741454 stepsize= 1.000000 +dualbound = 3819970.653852, lowerbound=1317882.653852, norm of subgrad 1148.477973 dualbound = 3819970.653852, lowerbound=1317882.653852, norm of subgrad 34.238639 stepsize= 1.000000 +dualbound = 3820028.588003, lowerbound=1312687.588003, norm of subgrad 1146.224057 dualbound = 3820028.588003, lowerbound=1312687.588003, norm of subgrad 34.640066 stepsize= 1.000000 +dualbound = 3820069.916463, lowerbound=1317247.916463, norm of subgrad 1148.236002 dualbound = 3820069.916463, lowerbound=1317247.916463, norm of subgrad 35.204097 stepsize= 1.000000 +dualbound = 3820128.275893, lowerbound=1313070.275893, norm of subgrad 1146.393159 dualbound = 3820128.275893, lowerbound=1313070.275893, norm of subgrad 34.718287 stepsize= 1.000000 +dualbound = 3820197.248316, lowerbound=1312011.248316, norm of subgrad 1145.917645 dualbound = 3820197.248316, lowerbound=1312011.248316, norm of subgrad 34.423428 stepsize= 1.000000 +dualbound = 3820251.502393, lowerbound=1319185.502393, norm of subgrad 1149.061140 dualbound = 3820251.502393, lowerbound=1319185.502393, norm of subgrad 34.788706 stepsize= 1.000000 +dualbound = 3820284.207185, lowerbound=1311832.207185, norm of subgrad 1145.867884 dualbound = 3820284.207185, lowerbound=1311832.207185, norm of subgrad 34.838266 stepsize= 1.000000 +dualbound = 3820343.211826, lowerbound=1312058.211826, norm of subgrad 1145.959952 dualbound = 3820343.211826, lowerbound=1312058.211826, norm of subgrad 35.000066 stepsize= 1.000000 +dualbound = 3820419.266747, lowerbound=1315844.266747, norm of subgrad 1147.595864 dualbound = 3820419.266747, lowerbound=1315844.266747, norm of subgrad 34.757084 stepsize= 1.000000 +dualbound = 3820465.681349, lowerbound=1315756.681349, norm of subgrad 1147.562496 dualbound = 3820465.681349, lowerbound=1315756.681349, norm of subgrad 34.487891 stepsize= 1.000000 +dualbound = 3820505.999592, lowerbound=1314233.999592, norm of subgrad 1146.926327 dualbound = 3820505.999592, lowerbound=1314233.999592, norm of subgrad 35.303233 stepsize= 1.000000 +dualbound = 3820562.353673, lowerbound=1307550.353673, norm of subgrad 1143.984420 dualbound = 3820562.353673, lowerbound=1307550.353673, norm of subgrad 34.732608 stepsize= 1.000000 +dualbound = 3820615.917626, lowerbound=1316089.917626, norm of subgrad 1147.705501 dualbound = 3820615.917626, lowerbound=1316089.917626, norm of subgrad 34.519038 stepsize= 1.000000 +dualbound = 3820675.876818, lowerbound=1310423.876818, norm of subgrad 1145.234857 dualbound = 3820675.876818, lowerbound=1310423.876818, norm of subgrad 34.625990 stepsize= 1.000000 +dualbound = 3820765.029646, lowerbound=1314959.029646, norm of subgrad 1147.204005 dualbound = 3820765.029646, lowerbound=1314959.029646, norm of subgrad 34.744105 stepsize= 1.000000 +dualbound = 3820771.178568, lowerbound=1311232.178568, norm of subgrad 1145.591192 dualbound = 3820771.178568, lowerbound=1311232.178568, norm of subgrad 33.958046 stepsize= 1.000000 +dualbound = 3820843.403808, lowerbound=1310518.403808, norm of subgrad 1145.285730 dualbound = 3820843.403808, lowerbound=1310518.403808, norm of subgrad 35.117307 stepsize= 1.000000 +dualbound = 3820891.092620, lowerbound=1314611.092620, norm of subgrad 1147.064119 dualbound = 3820891.092620, lowerbound=1314611.092620, norm of subgrad 34.535327 stepsize= 1.000000 +dualbound = 3820965.827121, lowerbound=1315079.827121, norm of subgrad 1147.274957 dualbound = 3820965.827121, lowerbound=1315079.827121, norm of subgrad 35.138789 stepsize= 1.000000 +dualbound = 3820987.521927, lowerbound=1311656.521927, norm of subgrad 1145.787293 dualbound = 3820987.521927, lowerbound=1311656.521927, norm of subgrad 34.549889 stepsize= 1.000000 +dualbound = 3821073.944594, lowerbound=1317391.944594, norm of subgrad 1148.274333 dualbound = 3821073.944594, lowerbound=1317391.944594, norm of subgrad 35.048861 stepsize= 1.000000 +dualbound = 3821112.725110, lowerbound=1309517.725110, norm of subgrad 1144.839607 dualbound = 3821112.725110, lowerbound=1309517.725110, norm of subgrad 34.333373 stepsize= 1.000000 +dualbound = 3821172.857606, lowerbound=1318331.857606, norm of subgrad 1148.667862 dualbound = 3821172.857606, lowerbound=1318331.857606, norm of subgrad 34.148682 stepsize= 1.000000 +dualbound = 3821226.473042, lowerbound=1311670.473042, norm of subgrad 1145.763707 dualbound = 3821226.473042, lowerbound=1311670.473042, norm of subgrad 34.023748 stepsize= 1.000000 +dualbound = 3821309.291300, lowerbound=1316224.291300, norm of subgrad 1147.731367 dualbound = 3821309.291300, lowerbound=1316224.291300, norm of subgrad 33.849937 stepsize= 1.000000 +dualbound = 3821351.814285, lowerbound=1312518.814285, norm of subgrad 1146.159157 dualbound = 3821351.814285, lowerbound=1312518.814285, norm of subgrad 34.706238 stepsize= 1.000000 +dualbound = 3821402.346717, lowerbound=1314130.346717, norm of subgrad 1146.862392 dualbound = 3821402.346717, lowerbound=1314130.346717, norm of subgrad 34.835792 stepsize= 1.000000 +dualbound = 3821445.018976, lowerbound=1313412.018976, norm of subgrad 1146.522577 dualbound = 3821445.018976, lowerbound=1313412.018976, norm of subgrad 33.833005 stepsize= 1.000000 +dualbound = 3821497.688879, lowerbound=1315736.688879, norm of subgrad 1147.548556 dualbound = 3821497.688879, lowerbound=1315736.688879, norm of subgrad 34.404504 stepsize= 1.000000 +dualbound = 3821596.545443, lowerbound=1317513.545443, norm of subgrad 1148.300721 dualbound = 3821596.545443, lowerbound=1317513.545443, norm of subgrad 34.349040 stepsize= 1.000000 +dualbound = 3821639.521552, lowerbound=1316176.521552, norm of subgrad 1147.733210 dualbound = 3821639.521552, lowerbound=1316176.521552, norm of subgrad 34.029048 stepsize= 1.000000 +dualbound = 3821674.906454, lowerbound=1314839.906454, norm of subgrad 1147.149034 dualbound = 3821674.906454, lowerbound=1314839.906454, norm of subgrad 33.858306 stepsize= 1.000000 +dualbound = 3821747.741679, lowerbound=1310157.741679, norm of subgrad 1145.110799 dualbound = 3821747.741679, lowerbound=1310157.741679, norm of subgrad 34.551921 stepsize= 1.000000 +dualbound = 3821790.703702, lowerbound=1311511.703702, norm of subgrad 1145.695729 dualbound = 3821790.703702, lowerbound=1311511.703702, norm of subgrad 33.911090 stepsize= 1.000000 +dualbound = 3821844.231105, lowerbound=1310847.231105, norm of subgrad 1145.451104 dualbound = 3821844.231105, lowerbound=1310847.231105, norm of subgrad 35.560194 stepsize= 1.000000 +dualbound = 3821896.041504, lowerbound=1308052.041504, norm of subgrad 1144.191436 dualbound = 3821896.041504, lowerbound=1308052.041504, norm of subgrad 34.260916 stepsize= 1.000000 +dualbound = 3821958.420627, lowerbound=1322062.420627, norm of subgrad 1150.306229 dualbound = 3821958.420627, lowerbound=1322062.420627, norm of subgrad 34.704166 stepsize= 1.000000 +dualbound = 3822000.978964, lowerbound=1309630.978964, norm of subgrad 1144.877714 dualbound = 3822000.978964, lowerbound=1309630.978964, norm of subgrad 34.008210 stepsize= 1.000000 +dualbound = 3822064.095200, lowerbound=1311722.095200, norm of subgrad 1145.781871 dualbound = 3822064.095200, lowerbound=1311722.095200, norm of subgrad 34.016411 stepsize= 1.000000 +dualbound = 3822134.654081, lowerbound=1318843.654081, norm of subgrad 1148.874951 dualbound = 3822134.654081, lowerbound=1318843.654081, norm of subgrad 33.772161 stepsize= 1.000000 +dualbound = 3822173.493516, lowerbound=1309400.493516, norm of subgrad 1144.771372 dualbound = 3822173.493516, lowerbound=1309400.493516, norm of subgrad 33.761508 stepsize= 1.000000 +dualbound = 3822232.793169, lowerbound=1319368.793169, norm of subgrad 1149.113917 dualbound = 3822232.793169, lowerbound=1319368.793169, norm of subgrad 33.960266 stepsize= 1.000000 +dualbound = 3822287.886825, lowerbound=1309021.886825, norm of subgrad 1144.595075 dualbound = 3822287.886825, lowerbound=1309021.886825, norm of subgrad 33.631736 stepsize= 1.000000 +dualbound = 3822348.891151, lowerbound=1318560.891151, norm of subgrad 1148.765377 dualbound = 3822348.891151, lowerbound=1318560.891151, norm of subgrad 34.088185 stepsize= 1.000000 +dualbound = 3822398.891784, lowerbound=1313983.891784, norm of subgrad 1146.789820 dualbound = 3822398.891784, lowerbound=1313983.891784, norm of subgrad 34.539841 stepsize= 1.000000 +dualbound = 3822438.360927, lowerbound=1319986.360927, norm of subgrad 1149.412616 dualbound = 3822438.360927, lowerbound=1319986.360927, norm of subgrad 34.676637 stepsize= 1.000000 +dualbound = 3822484.414765, lowerbound=1313675.414766, norm of subgrad 1146.683223 dualbound = 3822484.414765, lowerbound=1313675.414766, norm of subgrad 35.398501 stepsize= 1.000000 +dualbound = 3822521.097107, lowerbound=1317935.097107, norm of subgrad 1148.526054 dualbound = 3822521.097107, lowerbound=1317935.097107, norm of subgrad 34.837944 stepsize= 1.000000 +dualbound = 3822618.997033, lowerbound=1312653.997033, norm of subgrad 1146.222490 dualbound = 3822618.997033, lowerbound=1312653.997033, norm of subgrad 35.635655 stepsize= 1.000000 +dualbound = 3822664.234344, lowerbound=1320065.234344, norm of subgrad 1149.449100 dualbound = 3822664.234344, lowerbound=1320065.234344, norm of subgrad 34.831556 stepsize= 1.000000 +dualbound = 3822696.876548, lowerbound=1313587.876548, norm of subgrad 1146.631099 dualbound = 3822696.876548, lowerbound=1313587.876548, norm of subgrad 34.751147 stepsize= 1.000000 +dualbound = 3822769.495333, lowerbound=1310640.495333, norm of subgrad 1145.320695 dualbound = 3822769.495333, lowerbound=1310640.495333, norm of subgrad 34.519832 stepsize= 1.000000 +dualbound = 3822822.554546, lowerbound=1313281.554546, norm of subgrad 1146.488794 dualbound = 3822822.554546, lowerbound=1313281.554546, norm of subgrad 34.757146 stepsize= 1.000000 +dualbound = 3822861.766982, lowerbound=1314951.766982, norm of subgrad 1147.212172 dualbound = 3822861.766982, lowerbound=1314951.766982, norm of subgrad 34.397855 stepsize= 1.000000 +dualbound = 3822941.692681, lowerbound=1311697.692681, norm of subgrad 1145.806569 dualbound = 3822941.692681, lowerbound=1311697.692681, norm of subgrad 35.424930 stepsize= 1.000000 +dualbound = 3822988.453647, lowerbound=1316485.453647, norm of subgrad 1147.856896 dualbound = 3822988.453647, lowerbound=1316485.453647, norm of subgrad 33.715886 stepsize= 1.000000 +dualbound = 3823061.353855, lowerbound=1311918.353855, norm of subgrad 1145.859657 dualbound = 3823061.353855, lowerbound=1311918.353855, norm of subgrad 33.895430 stepsize= 1.000000 +dualbound = 3823128.545946, lowerbound=1319334.545946, norm of subgrad 1149.075953 dualbound = 3823128.545946, lowerbound=1319334.545946, norm of subgrad 33.289519 stepsize= 1.000000 +dualbound = 3823185.279551, lowerbound=1312994.279551, norm of subgrad 1146.345183 dualbound = 3823185.279551, lowerbound=1312994.279551, norm of subgrad 34.201368 stepsize= 1.000000 +dualbound = 3823211.382088, lowerbound=1315379.382088, norm of subgrad 1147.381969 dualbound = 3823211.382088, lowerbound=1315379.382088, norm of subgrad 33.646731 stepsize= 1.000000 +dualbound = 3823293.669094, lowerbound=1315893.669094, norm of subgrad 1147.597346 dualbound = 3823293.669094, lowerbound=1315893.669094, norm of subgrad 34.180214 stepsize= 1.000000 +dualbound = 3823331.588625, lowerbound=1313589.588625, norm of subgrad 1146.613095 dualbound = 3823331.588625, lowerbound=1313589.588625, norm of subgrad 34.204086 stepsize= 1.000000 +dualbound = 3823372.414541, lowerbound=1318959.414541, norm of subgrad 1148.959710 dualbound = 3823372.414541, lowerbound=1318959.414541, norm of subgrad 34.493853 stepsize= 1.000000 +dualbound = 3823421.217200, lowerbound=1313193.217200, norm of subgrad 1146.461607 dualbound = 3823421.217200, lowerbound=1313193.217200, norm of subgrad 35.068542 stepsize= 1.000000 +dualbound = 3823461.483121, lowerbound=1315338.483121, norm of subgrad 1147.389421 dualbound = 3823461.483121, lowerbound=1315338.483121, norm of subgrad 34.702535 stepsize= 1.000000 +dualbound = 3823536.356302, lowerbound=1315695.356302, norm of subgrad 1147.512247 dualbound = 3823536.356302, lowerbound=1315695.356302, norm of subgrad 34.115586 stepsize= 1.000000 +dualbound = 3823608.480247, lowerbound=1310040.480247, norm of subgrad 1145.038200 dualbound = 3823608.480247, lowerbound=1310040.480247, norm of subgrad 33.824901 stepsize= 1.000000 +dualbound = 3823668.721794, lowerbound=1312574.721794, norm of subgrad 1146.153010 dualbound = 3823668.721794, lowerbound=1312574.721794, norm of subgrad 33.944684 stepsize= 1.000000 +dualbound = 3823718.128242, lowerbound=1314992.128242, norm of subgrad 1147.213637 dualbound = 3823718.128242, lowerbound=1314992.128242, norm of subgrad 34.005977 stepsize= 1.000000 +dualbound = 3823764.584133, lowerbound=1316199.584133, norm of subgrad 1147.751534 dualbound = 3823764.584133, lowerbound=1316199.584133, norm of subgrad 34.357763 stepsize= 1.000000 +dualbound = 3823821.010963, lowerbound=1321612.010963, norm of subgrad 1150.103913 dualbound = 3823821.010963, lowerbound=1321612.010963, norm of subgrad 34.400971 stepsize= 1.000000 +dualbound = 3823866.026953, lowerbound=1313364.026953, norm of subgrad 1146.511678 dualbound = 3823866.026953, lowerbound=1313364.026953, norm of subgrad 34.205496 stepsize= 1.000000 +dualbound = 3823939.617977, lowerbound=1316674.617977, norm of subgrad 1147.934501 dualbound = 3823939.617977, lowerbound=1316674.617977, norm of subgrad 33.949831 stepsize= 1.000000 +dualbound = 3823976.843336, lowerbound=1316391.843336, norm of subgrad 1147.848354 dualbound = 3823976.843336, lowerbound=1316391.843336, norm of subgrad 34.658698 stepsize= 1.000000 +dualbound = 3824037.859653, lowerbound=1312506.859653, norm of subgrad 1146.153942 dualbound = 3824037.859653, lowerbound=1312506.859653, norm of subgrad 34.971650 stepsize= 1.000000 +dualbound = 3824090.569121, lowerbound=1311023.569121, norm of subgrad 1145.498393 dualbound = 3824090.569121, lowerbound=1311023.569121, norm of subgrad 34.579032 stepsize= 1.000000 +dualbound = 3824151.788836, lowerbound=1317882.788836, norm of subgrad 1148.480644 dualbound = 3824151.788836, lowerbound=1317882.788836, norm of subgrad 34.441541 stepsize= 1.000000 +dualbound = 3824211.641483, lowerbound=1313002.641483, norm of subgrad 1146.337490 dualbound = 3824211.641483, lowerbound=1313002.641483, norm of subgrad 33.865213 stepsize= 1.000000 +dualbound = 3824276.587165, lowerbound=1315513.587165, norm of subgrad 1147.438707 dualbound = 3824276.587165, lowerbound=1315513.587165, norm of subgrad 34.160587 stepsize= 1.000000 +dualbound = 3824341.242964, lowerbound=1308429.242964, norm of subgrad 1144.340964 dualbound = 3824341.242964, lowerbound=1308429.242964, norm of subgrad 33.936055 stepsize= 1.000000 +dualbound = 3824354.416553, lowerbound=1314259.416553, norm of subgrad 1146.916046 dualbound = 3824354.416553, lowerbound=1314259.416553, norm of subgrad 34.207800 stepsize= 1.000000 +dualbound = 3824401.745383, lowerbound=1313103.745383, norm of subgrad 1146.386386 dualbound = 3824401.745383, lowerbound=1313103.745383, norm of subgrad 33.842707 stepsize= 1.000000 +dualbound = 3824497.691566, lowerbound=1312609.691566, norm of subgrad 1146.186587 dualbound = 3824497.691566, lowerbound=1312609.691566, norm of subgrad 35.070589 stepsize= 1.000000 +dualbound = 3824525.619530, lowerbound=1319122.619530, norm of subgrad 1149.032036 dualbound = 3824525.619530, lowerbound=1319122.619530, norm of subgrad 34.350080 stepsize= 1.000000 +dualbound = 3824603.102135, lowerbound=1316921.102135, norm of subgrad 1148.065809 dualbound = 3824603.102135, lowerbound=1316921.102135, norm of subgrad 34.806359 stepsize= 1.000000 +dualbound = 3824633.179027, lowerbound=1320498.179027, norm of subgrad 1149.616101 dualbound = 3824633.179027, lowerbound=1320498.179027, norm of subgrad 33.898037 stepsize= 1.000000 +dualbound = 3824707.096052, lowerbound=1309605.096052, norm of subgrad 1144.851124 dualbound = 3824707.096052, lowerbound=1309605.096052, norm of subgrad 33.954632 stepsize= 1.000000 +dualbound = 3824755.022947, lowerbound=1307656.022947, norm of subgrad 1143.983402 dualbound = 3824755.022947, lowerbound=1307656.022947, norm of subgrad 33.014041 stepsize= 1.000000 +dualbound = 3824818.177971, lowerbound=1310643.177971, norm of subgrad 1145.322740 dualbound = 3824818.177971, lowerbound=1310643.177971, norm of subgrad 34.411554 stepsize= 1.000000 +dualbound = 3824876.059066, lowerbound=1314302.059066, norm of subgrad 1146.902376 dualbound = 3824876.059066, lowerbound=1314302.059066, norm of subgrad 33.776931 stepsize= 1.000000 +dualbound = 3824924.658500, lowerbound=1310427.658500, norm of subgrad 1145.226029 dualbound = 3824924.658500, lowerbound=1310427.658500, norm of subgrad 34.111573 stepsize= 1.000000 +dualbound = 3824993.579520, lowerbound=1315756.579520, norm of subgrad 1147.524108 dualbound = 3824993.579520, lowerbound=1315756.579520, norm of subgrad 33.524931 stepsize= 1.000000 +dualbound = 3825039.160645, lowerbound=1314978.160645, norm of subgrad 1147.207549 dualbound = 3825039.160645, lowerbound=1314978.160645, norm of subgrad 33.949685 stepsize= 1.000000 +dualbound = 3825085.044518, lowerbound=1316981.044518, norm of subgrad 1148.071446 dualbound = 3825085.044518, lowerbound=1316981.044518, norm of subgrad 33.658340 stepsize= 1.000000 +dualbound = 3825132.646274, lowerbound=1309596.646274, norm of subgrad 1144.892854 dualbound = 3825132.646274, lowerbound=1309596.646274, norm of subgrad 35.079934 stepsize= 1.000000 +dualbound = 3825189.900889, lowerbound=1314687.900889, norm of subgrad 1147.102829 dualbound = 3825189.900889, lowerbound=1314687.900889, norm of subgrad 34.846156 stepsize= 1.000000 +dualbound = 3825241.603260, lowerbound=1319073.603260, norm of subgrad 1149.004179 dualbound = 3825241.603260, lowerbound=1319073.603260, norm of subgrad 34.477563 stepsize= 1.000000 +dualbound = 3825322.886237, lowerbound=1316212.886237, norm of subgrad 1147.758200 dualbound = 3825322.886237, lowerbound=1316212.886237, norm of subgrad 34.889583 stepsize= 1.000000 +dualbound = 3825346.062053, lowerbound=1318063.062053, norm of subgrad 1148.554771 dualbound = 3825346.062053, lowerbound=1318063.062053, norm of subgrad 33.736861 stepsize= 1.000000 +dualbound = 3825427.912999, lowerbound=1316341.912999, norm of subgrad 1147.824862 dualbound = 3825427.912999, lowerbound=1316341.912999, norm of subgrad 35.239906 stepsize= 1.000000 +dualbound = 3825441.840233, lowerbound=1316279.840233, norm of subgrad 1147.793466 dualbound = 3825441.840233, lowerbound=1316279.840233, norm of subgrad 34.116378 stepsize= 1.000000 +dualbound = 3825524.066819, lowerbound=1316065.066819, norm of subgrad 1147.694239 dualbound = 3825524.066819, lowerbound=1316065.066819, norm of subgrad 34.917425 stepsize= 1.000000 +dualbound = 3825567.594584, lowerbound=1318410.594584, norm of subgrad 1148.714322 dualbound = 3825567.594584, lowerbound=1318410.594584, norm of subgrad 34.315124 stepsize= 1.000000 +dualbound = 3825626.953239, lowerbound=1315273.953239, norm of subgrad 1147.366094 dualbound = 3825626.953239, lowerbound=1315273.953239, norm of subgrad 35.133441 stepsize= 1.000000 +dualbound = 3825659.019849, lowerbound=1311853.019849, norm of subgrad 1145.864748 dualbound = 3825659.019849, lowerbound=1311853.019849, norm of subgrad 34.424796 stepsize= 1.000000 +dualbound = 3825719.561852, lowerbound=1316451.561852, norm of subgrad 1147.880465 dualbound = 3825719.561852, lowerbound=1316451.561852, norm of subgrad 35.192925 stepsize= 1.000000 +dualbound = 3825768.551049, lowerbound=1311043.551049, norm of subgrad 1145.544653 dualbound = 3825768.551049, lowerbound=1311043.551049, norm of subgrad 35.748975 stepsize= 1.000000 +dualbound = 3825802.522973, lowerbound=1315906.522973, norm of subgrad 1147.660892 dualbound = 3825802.522973, lowerbound=1315906.522973, norm of subgrad 35.397343 stepsize= 1.000000 +dualbound = 3825881.963339, lowerbound=1315308.963339, norm of subgrad 1147.357818 dualbound = 3825881.963339, lowerbound=1315308.963339, norm of subgrad 34.647372 stepsize= 1.000000 +dualbound = 3825950.328717, lowerbound=1314540.328717, norm of subgrad 1146.988373 dualbound = 3825950.328717, lowerbound=1314540.328717, norm of subgrad 33.322145 stepsize= 1.000000 +dualbound = 3826010.615767, lowerbound=1314407.615767, norm of subgrad 1146.957112 dualbound = 3826010.615767, lowerbound=1314407.615767, norm of subgrad 34.106994 stepsize= 1.000000 +dualbound = 3826053.159734, lowerbound=1315642.159734, norm of subgrad 1147.485581 dualbound = 3826053.159734, lowerbound=1315642.159734, norm of subgrad 33.519307 stepsize= 1.000000 +dualbound = 3826119.754641, lowerbound=1317691.754641, norm of subgrad 1148.380057 dualbound = 3826119.754641, lowerbound=1317691.754641, norm of subgrad 33.935157 stepsize= 1.000000 +dualbound = 3826179.888665, lowerbound=1310551.888665, norm of subgrad 1145.275028 dualbound = 3826179.888665, lowerbound=1310551.888665, norm of subgrad 34.104751 stepsize= 1.000000 +dualbound = 3826209.394177, lowerbound=1315831.394178, norm of subgrad 1147.607683 dualbound = 3826209.394177, lowerbound=1315831.394178, norm of subgrad 34.662740 stepsize= 1.000000 +dualbound = 3826266.095836, lowerbound=1312033.095836, norm of subgrad 1145.948121 dualbound = 3826266.095836, lowerbound=1312033.095836, norm of subgrad 34.938541 stepsize= 1.000000 +dualbound = 3826312.467573, lowerbound=1317959.467573, norm of subgrad 1148.504448 dualbound = 3826312.467573, lowerbound=1317959.467573, norm of subgrad 33.902385 stepsize= 1.000000 +dualbound = 3826386.466410, lowerbound=1315456.466410, norm of subgrad 1147.452163 dualbound = 3826386.466410, lowerbound=1315456.466410, norm of subgrad 35.552761 stepsize= 1.000000 +dualbound = 3826423.732738, lowerbound=1319168.732738, norm of subgrad 1149.045575 dualbound = 3826423.732738, lowerbound=1319168.732738, norm of subgrad 34.267570 stepsize= 1.000000 +dualbound = 3826477.306645, lowerbound=1313677.306645, norm of subgrad 1146.663118 dualbound = 3826477.306645, lowerbound=1313677.306645, norm of subgrad 34.822032 stepsize= 1.000000 +dualbound = 3826537.144125, lowerbound=1314571.144125, norm of subgrad 1147.068936 dualbound = 3826537.144125, lowerbound=1314571.144125, norm of subgrad 35.437797 stepsize= 1.000000 +dualbound = 3826574.625359, lowerbound=1317154.625359, norm of subgrad 1148.184056 dualbound = 3826574.625359, lowerbound=1317154.625359, norm of subgrad 34.777597 stepsize= 1.000000 +dualbound = 3826651.216020, lowerbound=1318252.216020, norm of subgrad 1148.651477 dualbound = 3826651.216020, lowerbound=1318252.216020, norm of subgrad 34.994152 stepsize= 1.000000 +dualbound = 3826685.625177, lowerbound=1313331.625177, norm of subgrad 1146.526330 dualbound = 3826685.625177, lowerbound=1313331.625177, norm of subgrad 35.005845 stepsize= 1.000000 +dualbound = 3826752.696785, lowerbound=1320514.696785, norm of subgrad 1149.640682 dualbound = 3826752.696785, lowerbound=1320514.696785, norm of subgrad 35.015305 stepsize= 1.000000 +dualbound = 3826785.621844, lowerbound=1310341.621844, norm of subgrad 1145.212916 dualbound = 3826785.621844, lowerbound=1310341.621844, norm of subgrad 34.697623 stepsize= 1.000000 +dualbound = 3826875.010375, lowerbound=1311385.010375, norm of subgrad 1145.637818 dualbound = 3826875.010375, lowerbound=1311385.010375, norm of subgrad 34.502008 stepsize= 1.000000 +dualbound = 3826900.557954, lowerbound=1319719.557954, norm of subgrad 1149.296114 dualbound = 3826900.557954, lowerbound=1319719.557954, norm of subgrad 34.460812 stepsize= 1.000000 +dualbound = 3826967.715608, lowerbound=1313502.715608, norm of subgrad 1146.569542 dualbound = 3826967.715608, lowerbound=1313502.715608, norm of subgrad 34.440640 stepsize= 1.000000 +dualbound = 3827044.128822, lowerbound=1316462.128822, norm of subgrad 1147.857190 dualbound = 3827044.128822, lowerbound=1316462.128822, norm of subgrad 34.502365 stepsize= 1.000000 +dualbound = 3827067.468179, lowerbound=1311652.468179, norm of subgrad 1145.768069 dualbound = 3827067.468179, lowerbound=1311652.468179, norm of subgrad 33.990283 stepsize= 1.000000 +dualbound = 3827132.449224, lowerbound=1314757.449224, norm of subgrad 1147.133580 dualbound = 3827132.449224, lowerbound=1314757.449224, norm of subgrad 34.971146 stepsize= 1.000000 +dualbound = 3827184.707266, lowerbound=1316321.707266, norm of subgrad 1147.816495 dualbound = 3827184.707266, lowerbound=1316321.707266, norm of subgrad 34.831854 stepsize= 1.000000 +dualbound = 3827242.586521, lowerbound=1316467.586521, norm of subgrad 1147.846500 dualbound = 3827242.586521, lowerbound=1316467.586521, norm of subgrad 33.791704 stepsize= 1.000000 +dualbound = 3827330.559360, lowerbound=1324338.559360, norm of subgrad 1151.261291 dualbound = 3827330.559360, lowerbound=1324338.559360, norm of subgrad 33.940725 stepsize= 1.000000 +dualbound = 3827363.724399, lowerbound=1315026.724399, norm of subgrad 1147.195591 dualbound = 3827363.724399, lowerbound=1315026.724399, norm of subgrad 32.621543 stepsize= 1.000000 +dualbound = 3827425.083645, lowerbound=1317337.083645, norm of subgrad 1148.250445 dualbound = 3827425.083645, lowerbound=1317337.083645, norm of subgrad 34.689469 stepsize= 1.000000 +dualbound = 3827442.698397, lowerbound=1318771.698397, norm of subgrad 1148.854951 dualbound = 3827442.698397, lowerbound=1318771.698397, norm of subgrad 33.370867 stepsize= 1.000000 +dualbound = 3827538.256918, lowerbound=1311517.256918, norm of subgrad 1145.685060 dualbound = 3827538.256918, lowerbound=1311517.256918, norm of subgrad 34.242642 stepsize= 1.000000 +dualbound = 3827577.115979, lowerbound=1317931.115979, norm of subgrad 1148.483398 dualbound = 3827577.115979, lowerbound=1317931.115979, norm of subgrad 33.494165 stepsize= 1.000000 +dualbound = 3827633.291783, lowerbound=1321947.291783, norm of subgrad 1150.277919 dualbound = 3827633.291783, lowerbound=1321947.291783, norm of subgrad 35.329532 stepsize= 1.000000 +dualbound = 3827650.889490, lowerbound=1315935.889490, norm of subgrad 1147.644496 dualbound = 3827650.889490, lowerbound=1315935.889490, norm of subgrad 34.199382 stepsize= 1.000000 +dualbound = 3827732.965238, lowerbound=1316702.965238, norm of subgrad 1147.951203 dualbound = 3827732.965238, lowerbound=1316702.965238, norm of subgrad 34.220984 stepsize= 1.000000 +dualbound = 3827788.027073, lowerbound=1324418.027073, norm of subgrad 1151.315781 dualbound = 3827788.027073, lowerbound=1324418.027073, norm of subgrad 34.133002 stepsize= 1.000000 +dualbound = 3827838.987704, lowerbound=1314818.987704, norm of subgrad 1147.168683 dualbound = 3827838.987704, lowerbound=1314818.987704, norm of subgrad 35.042269 stepsize= 1.000000 +dualbound = 3827880.317861, lowerbound=1318583.317861, norm of subgrad 1148.795594 dualbound = 3827880.317861, lowerbound=1318583.317861, norm of subgrad 34.486666 stepsize= 1.000000 +dualbound = 3827940.202692, lowerbound=1315779.202692, norm of subgrad 1147.575794 dualbound = 3827940.202692, lowerbound=1315779.202692, norm of subgrad 34.797770 stepsize= 1.000000 +dualbound = 3827970.218333, lowerbound=1317475.218333, norm of subgrad 1148.329752 dualbound = 3827970.218333, lowerbound=1317475.218333, norm of subgrad 34.871416 stepsize= 1.000000 +dualbound = 3828047.940749, lowerbound=1320475.940749, norm of subgrad 1149.611213 dualbound = 3828047.940749, lowerbound=1320475.940749, norm of subgrad 34.752301 stepsize= 1.000000 +dualbound = 3828076.640151, lowerbound=1318032.640151, norm of subgrad 1148.547187 dualbound = 3828076.640151, lowerbound=1318032.640151, norm of subgrad 34.010284 stepsize= 1.000000 +dualbound = 3828170.472628, lowerbound=1311331.472628, norm of subgrad 1145.609651 dualbound = 3828170.472628, lowerbound=1311331.472628, norm of subgrad 34.406867 stepsize= 1.000000 +dualbound = 3828215.762053, lowerbound=1317842.762053, norm of subgrad 1148.466265 dualbound = 3828215.762053, lowerbound=1317842.762053, norm of subgrad 34.311651 stepsize= 1.000000 +dualbound = 3828267.420077, lowerbound=1317483.420077, norm of subgrad 1148.314164 dualbound = 3828267.420077, lowerbound=1317483.420077, norm of subgrad 34.549356 stepsize= 1.000000 +dualbound = 3828308.732983, lowerbound=1318491.732983, norm of subgrad 1148.762261 dualbound = 3828308.732983, lowerbound=1318491.732983, norm of subgrad 34.703212 stepsize= 1.000000 +dualbound = 3828376.224993, lowerbound=1316284.224993, norm of subgrad 1147.784050 dualbound = 3828376.224993, lowerbound=1316284.224993, norm of subgrad 34.517995 stepsize= 1.000000 +dualbound = 3828436.084948, lowerbound=1316164.084948, norm of subgrad 1147.748267 dualbound = 3828436.084948, lowerbound=1316164.084948, norm of subgrad 34.955113 stepsize= 1.000000 +dualbound = 3828477.469271, lowerbound=1320967.469271, norm of subgrad 1149.841932 dualbound = 3828477.469271, lowerbound=1320967.469271, norm of subgrad 34.790578 stepsize= 1.000000 +dualbound = 3828541.662205, lowerbound=1314838.662205, norm of subgrad 1147.155466 dualbound = 3828541.662205, lowerbound=1314838.662205, norm of subgrad 34.513663 stepsize= 1.000000 +dualbound = 3828608.187070, lowerbound=1318331.187070, norm of subgrad 1148.646241 dualbound = 3828608.187070, lowerbound=1318331.187070, norm of subgrad 33.519022 stepsize= 1.000000 +dualbound = 3828659.630514, lowerbound=1314979.630514, norm of subgrad 1147.205139 dualbound = 3828659.630514, lowerbound=1314979.630514, norm of subgrad 33.932926 stepsize= 1.000000 +dualbound = 3828699.543921, lowerbound=1319260.543921, norm of subgrad 1149.080739 dualbound = 3828699.543921, lowerbound=1319260.543921, norm of subgrad 34.145474 stepsize= 1.000000 +dualbound = 3828737.598917, lowerbound=1316884.598917, norm of subgrad 1148.045556 dualbound = 3828737.598917, lowerbound=1316884.598917, norm of subgrad 34.088928 stepsize= 1.000000 +dualbound = 3828807.259689, lowerbound=1318522.259689, norm of subgrad 1148.755962 dualbound = 3828807.259689, lowerbound=1318522.259689, norm of subgrad 34.462455 stepsize= 1.000000 +dualbound = 3828841.006186, lowerbound=1318056.006186, norm of subgrad 1148.588267 dualbound = 3828841.006186, lowerbound=1318056.006186, norm of subgrad 35.110490 stepsize= 1.000000 +dualbound = 3828886.396579, lowerbound=1317864.396579, norm of subgrad 1148.498322 dualbound = 3828886.396579, lowerbound=1317864.396579, norm of subgrad 35.062664 stepsize= 1.000000 +dualbound = 3828953.593400, lowerbound=1320074.593400, norm of subgrad 1149.453171 dualbound = 3828953.593400, lowerbound=1320074.593400, norm of subgrad 35.145367 stepsize= 1.000000 +dualbound = 3829012.670644, lowerbound=1320448.670644, norm of subgrad 1149.584129 dualbound = 3829012.670644, lowerbound=1320448.670644, norm of subgrad 33.971712 stepsize= 1.000000 +dualbound = 3829087.248159, lowerbound=1317344.248159, norm of subgrad 1148.254000 dualbound = 3829087.248159, lowerbound=1317344.248159, norm of subgrad 34.893803 stepsize= 1.000000 +dualbound = 3829121.680294, lowerbound=1320864.680294, norm of subgrad 1149.786363 dualbound = 3829121.680294, lowerbound=1320864.680294, norm of subgrad 34.328299 stepsize= 1.000000 +dualbound = 3829162.731928, lowerbound=1318227.731928, norm of subgrad 1148.670854 dualbound = 3829162.731928, lowerbound=1318227.731928, norm of subgrad 35.469024 stepsize= 1.000000 +dualbound = 3829219.774446, lowerbound=1314903.774446, norm of subgrad 1147.173385 dualbound = 3829219.774446, lowerbound=1314903.774446, norm of subgrad 34.059397 stepsize= 1.000000 +dualbound = 3829297.156294, lowerbound=1316882.156294, norm of subgrad 1148.014876 dualbound = 3829297.156294, lowerbound=1316882.156294, norm of subgrad 33.665737 stepsize= 1.000000 +dualbound = 3829336.751939, lowerbound=1316920.751939, norm of subgrad 1148.097013 dualbound = 3829336.751939, lowerbound=1316920.751939, norm of subgrad 35.292997 stepsize= 1.000000 +dualbound = 3829375.171599, lowerbound=1318094.171599, norm of subgrad 1148.583115 dualbound = 3829375.171599, lowerbound=1318094.171599, norm of subgrad 34.458956 stepsize= 1.000000 +dualbound = 3829448.049262, lowerbound=1316602.049262, norm of subgrad 1147.934253 dualbound = 3829448.049262, lowerbound=1316602.049262, norm of subgrad 34.983963 stepsize= 1.000000 +dualbound = 3829493.271197, lowerbound=1315511.271197, norm of subgrad 1147.456871 dualbound = 3829493.271197, lowerbound=1315511.271197, norm of subgrad 34.514083 stepsize= 1.000000 +dualbound = 3829566.241477, lowerbound=1319158.241477, norm of subgrad 1149.039269 dualbound = 3829566.241477, lowerbound=1319158.241477, norm of subgrad 34.727083 stepsize= 1.000000 +dualbound = 3829610.604407, lowerbound=1317676.604407, norm of subgrad 1148.388264 dualbound = 3829610.604407, lowerbound=1317676.604407, norm of subgrad 34.108107 stepsize= 1.000000 +dualbound = 3829671.202298, lowerbound=1316340.202298, norm of subgrad 1147.796673 dualbound = 3829671.202298, lowerbound=1316340.202298, norm of subgrad 34.023490 stepsize= 1.000000 +dualbound = 3829703.413869, lowerbound=1321618.413869, norm of subgrad 1150.113218 dualbound = 3829703.413869, lowerbound=1321618.413869, norm of subgrad 34.266771 stepsize= 1.000000 +dualbound = 3829774.658998, lowerbound=1316228.658998, norm of subgrad 1147.728478 dualbound = 3829774.658998, lowerbound=1316228.658998, norm of subgrad 33.514849 stepsize= 1.000000 +dualbound = 3829836.880210, lowerbound=1323293.880210, norm of subgrad 1150.814008 dualbound = 3829836.880210, lowerbound=1323293.880210, norm of subgrad 33.781966 stepsize= 1.000000 +dualbound = 3829877.053148, lowerbound=1318247.053148, norm of subgrad 1148.640089 dualbound = 3829877.053148, lowerbound=1318247.053148, norm of subgrad 34.163913 stepsize= 1.000000 +dualbound = 3829927.117846, lowerbound=1315089.117846, norm of subgrad 1147.262445 dualbound = 3829927.117846, lowerbound=1315089.117846, norm of subgrad 34.235430 stepsize= 1.000000 +dualbound = 3829975.836725, lowerbound=1318533.836725, norm of subgrad 1148.779281 dualbound = 3829975.836725, lowerbound=1318533.836725, norm of subgrad 34.766635 stepsize= 1.000000 +dualbound = 3830022.529113, lowerbound=1319193.529113, norm of subgrad 1149.048967 dualbound = 3830022.529113, lowerbound=1319193.529113, norm of subgrad 34.156879 stepsize= 1.000000 +dualbound = 3830091.659668, lowerbound=1320724.659668, norm of subgrad 1149.727646 dualbound = 3830091.659668, lowerbound=1320724.659668, norm of subgrad 34.901727 stepsize= 1.000000 +dualbound = 3830134.206091, lowerbound=1317144.206091, norm of subgrad 1148.187792 dualbound = 3830134.206091, lowerbound=1317144.206091, norm of subgrad 35.121880 stepsize= 1.000000 +dualbound = 3830174.716391, lowerbound=1318543.716391, norm of subgrad 1148.787934 dualbound = 3830174.716391, lowerbound=1318543.716391, norm of subgrad 34.792389 stepsize= 1.000000 +dualbound = 3830243.634725, lowerbound=1312497.634725, norm of subgrad 1146.129851 dualbound = 3830243.634725, lowerbound=1312497.634725, norm of subgrad 34.422643 stepsize= 1.000000 +dualbound = 3830304.930616, lowerbound=1319921.930616, norm of subgrad 1149.372407 dualbound = 3830304.930616, lowerbound=1319921.930616, norm of subgrad 34.587511 stepsize= 1.000000 +dualbound = 3830332.524608, lowerbound=1314781.524608, norm of subgrad 1147.155841 dualbound = 3830332.524608, lowerbound=1314781.524608, norm of subgrad 34.822320 stepsize= 1.000000 +dualbound = 3830402.042061, lowerbound=1322413.042061, norm of subgrad 1150.439065 dualbound = 3830402.042061, lowerbound=1322413.042061, norm of subgrad 34.154318 stepsize= 1.000000 +dualbound = 3830460.056510, lowerbound=1316591.056510, norm of subgrad 1147.886779 dualbound = 3830460.056510, lowerbound=1316591.056510, norm of subgrad 33.331883 stepsize= 1.000000 +dualbound = 3830522.963012, lowerbound=1318538.963012, norm of subgrad 1148.754962 dualbound = 3830522.963012, lowerbound=1318538.963012, norm of subgrad 34.086750 stepsize= 1.000000 +dualbound = 3830582.170599, lowerbound=1315716.170599, norm of subgrad 1147.513037 dualbound = 3830582.170599, lowerbound=1315716.170599, norm of subgrad 33.603684 stepsize= 1.000000 +dualbound = 3830640.171190, lowerbound=1321312.171190, norm of subgrad 1149.947899 dualbound = 3830640.171190, lowerbound=1321312.171190, norm of subgrad 33.555932 stepsize= 1.000000 +dualbound = 3830707.748312, lowerbound=1316169.748312, norm of subgrad 1147.688873 dualbound = 3830707.748312, lowerbound=1316169.748312, norm of subgrad 32.978434 stepsize= 1.000000 +dualbound = 3830764.780482, lowerbound=1324013.780482, norm of subgrad 1151.119794 dualbound = 3830764.780482, lowerbound=1324013.780482, norm of subgrad 33.466882 stepsize= 1.000000 +dualbound = 3830781.082024, lowerbound=1312873.082024, norm of subgrad 1146.281415 dualbound = 3830781.082024, lowerbound=1312873.082024, norm of subgrad 33.231033 stepsize= 1.000000 +dualbound = 3830840.038724, lowerbound=1326503.038724, norm of subgrad 1152.209199 dualbound = 3830840.038724, lowerbound=1326503.038724, norm of subgrad 33.792850 stepsize= 1.000000 +dualbound = 3830882.651653, lowerbound=1315322.651653, norm of subgrad 1147.362476 dualbound = 3830882.651653, lowerbound=1315322.651653, norm of subgrad 34.067770 stepsize= 1.000000 +dualbound = 3830928.989186, lowerbound=1318691.989186, norm of subgrad 1148.828964 dualbound = 3830928.989186, lowerbound=1318691.989186, norm of subgrad 34.093072 stepsize= 1.000000 +dualbound = 3830964.748998, lowerbound=1320890.748998, norm of subgrad 1149.812484 dualbound = 3830964.748998, lowerbound=1320890.748998, norm of subgrad 34.839056 stepsize= 1.000000 +dualbound = 3831031.128315, lowerbound=1317371.128315, norm of subgrad 1148.262657 dualbound = 3831031.128315, lowerbound=1317371.128315, norm of subgrad 34.675342 stepsize= 1.000000 +dualbound = 3831061.830827, lowerbound=1317322.830827, norm of subgrad 1148.242497 dualbound = 3831061.830827, lowerbound=1317322.830827, norm of subgrad 34.186291 stepsize= 1.000000 +dualbound = 3831135.241111, lowerbound=1314078.241111, norm of subgrad 1146.810464 dualbound = 3831135.241111, lowerbound=1314078.241111, norm of subgrad 34.196641 stepsize= 1.000000 +dualbound = 3831188.694227, lowerbound=1317646.694227, norm of subgrad 1148.359567 dualbound = 3831188.694227, lowerbound=1317646.694227, norm of subgrad 33.711320 stepsize= 1.000000 +dualbound = 3831266.570578, lowerbound=1324945.570578, norm of subgrad 1151.538350 dualbound = 3831266.570578, lowerbound=1324945.570578, norm of subgrad 34.247282 stepsize= 1.000000 +dualbound = 3831321.606074, lowerbound=1317433.606074, norm of subgrad 1148.255897 dualbound = 3831321.606074, lowerbound=1317433.606074, norm of subgrad 33.362187 stepsize= 1.000000 +dualbound = 3831375.713397, lowerbound=1316279.713397, norm of subgrad 1147.786876 dualbound = 3831375.713397, lowerbound=1316279.713397, norm of subgrad 34.483435 stepsize= 1.000000 +dualbound = 3831400.329784, lowerbound=1319148.329784, norm of subgrad 1149.043659 dualbound = 3831400.329784, lowerbound=1319148.329784, norm of subgrad 34.316416 stepsize= 1.000000 +dualbound = 3831456.162774, lowerbound=1322548.162774, norm of subgrad 1150.526037 dualbound = 3831456.162774, lowerbound=1322548.162774, norm of subgrad 34.897464 stepsize= 1.000000 +dualbound = 3831505.382785, lowerbound=1313351.382785, norm of subgrad 1146.515758 dualbound = 3831505.382785, lowerbound=1313351.382785, norm of subgrad 34.586414 stepsize= 1.000000 +dualbound = 3831559.701512, lowerbound=1316711.701512, norm of subgrad 1147.987239 dualbound = 3831559.701512, lowerbound=1316711.701512, norm of subgrad 34.890095 stepsize= 1.000000 +dualbound = 3831606.756106, lowerbound=1318773.756106, norm of subgrad 1148.887617 dualbound = 3831606.756106, lowerbound=1318773.756106, norm of subgrad 34.871974 stepsize= 1.000000 +dualbound = 3831667.146989, lowerbound=1316038.146989, norm of subgrad 1147.680769 dualbound = 3831667.146989, lowerbound=1316038.146989, norm of subgrad 34.545490 stepsize= 1.000000 +dualbound = 3831729.729985, lowerbound=1313899.729985, norm of subgrad 1146.729144 dualbound = 3831729.729985, lowerbound=1313899.729985, norm of subgrad 33.920245 stepsize= 1.000000 +dualbound = 3831798.033878, lowerbound=1319807.033878, norm of subgrad 1149.302847 dualbound = 3831798.033878, lowerbound=1319807.033878, norm of subgrad 34.033864 stepsize= 1.000000 +dualbound = 3831842.715937, lowerbound=1312910.715937, norm of subgrad 1146.309171 dualbound = 3831842.715937, lowerbound=1312910.715937, norm of subgrad 34.039419 stepsize= 1.000000 +dualbound = 3831883.014781, lowerbound=1316947.014781, norm of subgrad 1148.079708 dualbound = 3831883.014781, lowerbound=1316947.014781, norm of subgrad 34.355478 stepsize= 1.000000 +dualbound = 3831934.723242, lowerbound=1313524.723242, norm of subgrad 1146.574343 dualbound = 3831934.723242, lowerbound=1313524.723242, norm of subgrad 34.054493 stepsize= 1.000000 +dualbound = 3831996.461134, lowerbound=1323814.461134, norm of subgrad 1151.063187 dualbound = 3831996.461134, lowerbound=1323814.461134, norm of subgrad 34.550512 stepsize= 1.000000 +dualbound = 3832062.474846, lowerbound=1310237.474846, norm of subgrad 1145.113739 dualbound = 3832062.474846, lowerbound=1310237.474846, norm of subgrad 33.376844 stepsize= 1.000000 +dualbound = 3832108.018611, lowerbound=1321687.018611, norm of subgrad 1150.103047 dualbound = 3832108.018611, lowerbound=1321687.018611, norm of subgrad 33.098999 stepsize= 1.000000 +dualbound = 3832173.739248, lowerbound=1312523.739248, norm of subgrad 1146.123789 dualbound = 3832173.739248, lowerbound=1312523.739248, norm of subgrad 33.789357 stepsize= 1.000000 +dualbound = 3832234.215820, lowerbound=1317140.215820, norm of subgrad 1148.154265 dualbound = 3832234.215820, lowerbound=1317140.215820, norm of subgrad 34.328947 stepsize= 1.000000 +dualbound = 3832257.430150, lowerbound=1323609.430150, norm of subgrad 1151.009744 dualbound = 3832257.430150, lowerbound=1323609.430150, norm of subgrad 35.174058 stepsize= 1.000000 +dualbound = 3832310.758774, lowerbound=1317253.758774, norm of subgrad 1148.188033 dualbound = 3832310.758774, lowerbound=1317253.758774, norm of subgrad 33.694638 stepsize= 1.000000 +dualbound = 3832367.617242, lowerbound=1321865.617242, norm of subgrad 1150.220247 dualbound = 3832367.617242, lowerbound=1321865.617242, norm of subgrad 34.610092 stepsize= 1.000000 +dualbound = 3832430.480590, lowerbound=1315126.480590, norm of subgrad 1147.312286 dualbound = 3832430.480590, lowerbound=1315126.480590, norm of subgrad 35.522716 stepsize= 1.000000 +dualbound = 3832452.452052, lowerbound=1317042.452052, norm of subgrad 1148.121706 dualbound = 3832452.452052, lowerbound=1317042.452052, norm of subgrad 34.102367 stepsize= 1.000000 +dualbound = 3832522.649970, lowerbound=1316295.649970, norm of subgrad 1147.792076 dualbound = 3832522.649970, lowerbound=1316295.649970, norm of subgrad 34.658302 stepsize= 1.000000 +dualbound = 3832576.940354, lowerbound=1323380.940354, norm of subgrad 1150.875728 dualbound = 3832576.940354, lowerbound=1323380.940354, norm of subgrad 34.471588 stepsize= 1.000000 +dualbound = 3832640.789297, lowerbound=1318511.789297, norm of subgrad 1148.761851 dualbound = 3832640.789297, lowerbound=1318511.789297, norm of subgrad 34.725336 stepsize= 1.000000 +dualbound = 3832672.022697, lowerbound=1317255.022697, norm of subgrad 1148.213840 dualbound = 3832672.022697, lowerbound=1317255.022697, norm of subgrad 34.223287 stepsize= 1.000000 +dualbound = 3832752.334377, lowerbound=1317623.334377, norm of subgrad 1148.373778 dualbound = 3832752.334377, lowerbound=1317623.334377, norm of subgrad 34.918644 stepsize= 1.000000 +dualbound = 3832805.889139, lowerbound=1318452.889139, norm of subgrad 1148.705310 dualbound = 3832805.889139, lowerbound=1318452.889139, norm of subgrad 33.534382 stepsize= 1.000000 +dualbound = 3832852.055005, lowerbound=1321832.055005, norm of subgrad 1150.208266 dualbound = 3832852.055005, lowerbound=1321832.055005, norm of subgrad 34.542233 stepsize= 1.000000 +dualbound = 3832891.630994, lowerbound=1317792.630994, norm of subgrad 1148.458807 dualbound = 3832891.630994, lowerbound=1317792.630994, norm of subgrad 34.707002 stepsize= 1.000000 +dualbound = 3832954.689854, lowerbound=1321693.689854, norm of subgrad 1150.167679 dualbound = 3832954.689854, lowerbound=1321693.689854, norm of subgrad 35.426810 stepsize= 1.000000 +dualbound = 3833009.267669, lowerbound=1317542.267669, norm of subgrad 1148.338046 dualbound = 3833009.267669, lowerbound=1317542.267669, norm of subgrad 34.533720 stepsize= 1.000000 +dualbound = 3833086.455159, lowerbound=1316337.455159, norm of subgrad 1147.806367 dualbound = 3833086.455159, lowerbound=1316337.455159, norm of subgrad 34.629287 stepsize= 1.000000 +dualbound = 3833121.576522, lowerbound=1319211.576522, norm of subgrad 1149.043766 dualbound = 3833121.576522, lowerbound=1319211.576522, norm of subgrad 33.542829 stepsize= 1.000000 +dualbound = 3833195.814633, lowerbound=1314591.814633, norm of subgrad 1147.062254 dualbound = 3833195.814633, lowerbound=1314591.814633, norm of subgrad 35.131725 stepsize= 1.000000 +dualbound = 3833221.315281, lowerbound=1321560.315281, norm of subgrad 1150.076656 dualbound = 3833221.315281, lowerbound=1321560.315281, norm of subgrad 33.786101 stepsize= 1.000000 +dualbound = 3833290.318784, lowerbound=1317007.318784, norm of subgrad 1148.111196 dualbound = 3833290.318784, lowerbound=1317007.318784, norm of subgrad 34.942861 stepsize= 1.000000 +dualbound = 3833337.216432, lowerbound=1314639.216432, norm of subgrad 1147.053711 dualbound = 3833337.216432, lowerbound=1314639.216432, norm of subgrad 33.762370 stepsize= 1.000000 +dualbound = 3833414.907198, lowerbound=1322970.907198, norm of subgrad 1150.654121 dualbound = 3833414.907198, lowerbound=1322970.907198, norm of subgrad 33.342027 stepsize= 1.000000 +dualbound = 3833444.044297, lowerbound=1316926.044297, norm of subgrad 1148.054025 dualbound = 3833444.044297, lowerbound=1316926.044297, norm of subgrad 33.632382 stepsize= 1.000000 +dualbound = 3833491.118547, lowerbound=1317402.118547, norm of subgrad 1148.300535 dualbound = 3833491.118547, lowerbound=1317402.118547, norm of subgrad 35.200487 stepsize= 1.000000 +dualbound = 3833521.344124, lowerbound=1318907.344124, norm of subgrad 1148.953151 dualbound = 3833521.344124, lowerbound=1318907.344124, norm of subgrad 34.874426 stepsize= 1.000000 +dualbound = 3833594.128571, lowerbound=1315612.128571, norm of subgrad 1147.521733 dualbound = 3833594.128571, lowerbound=1315612.128571, norm of subgrad 35.591915 stepsize= 1.000000 +dualbound = 3833622.291230, lowerbound=1318510.291230, norm of subgrad 1148.761634 dualbound = 3833622.291230, lowerbound=1318510.291230, norm of subgrad 34.222254 stepsize= 1.000000 +dualbound = 3833720.205344, lowerbound=1319943.205344, norm of subgrad 1149.378617 dualbound = 3833720.205344, lowerbound=1319943.205344, norm of subgrad 35.013056 stepsize= 1.000000 +dualbound = 3833740.493539, lowerbound=1314731.493539, norm of subgrad 1147.143624 dualbound = 3833740.493539, lowerbound=1314731.493539, norm of subgrad 35.032673 stepsize= 1.000000 +dualbound = 3833786.980663, lowerbound=1318421.980663, norm of subgrad 1148.716232 dualbound = 3833786.980663, lowerbound=1318421.980663, norm of subgrad 34.256198 stepsize= 1.000000 +dualbound = 3833876.131194, lowerbound=1321114.131194, norm of subgrad 1149.867441 dualbound = 3833876.131194, lowerbound=1321114.131194, norm of subgrad 34.207463 stepsize= 1.000000 +dualbound = 3833927.234686, lowerbound=1312452.234686, norm of subgrad 1146.111354 dualbound = 3833927.234686, lowerbound=1312452.234686, norm of subgrad 34.206776 stepsize= 1.000000 +dualbound = 3833951.542789, lowerbound=1321506.542789, norm of subgrad 1150.073277 dualbound = 3833951.542789, lowerbound=1321506.542789, norm of subgrad 34.442824 stepsize= 1.000000 +dualbound = 3834003.294223, lowerbound=1313496.294223, norm of subgrad 1146.602501 dualbound = 3834003.294223, lowerbound=1313496.294223, norm of subgrad 35.394229 stepsize= 1.000000 +dualbound = 3834069.539303, lowerbound=1323346.539303, norm of subgrad 1150.872078 dualbound = 3834069.539303, lowerbound=1323346.539303, norm of subgrad 35.017782 stepsize= 1.000000 +dualbound = 3834114.160535, lowerbound=1312730.160535, norm of subgrad 1146.239574 dualbound = 3834114.160535, lowerbound=1312730.160535, norm of subgrad 34.345614 stepsize= 1.000000 +dualbound = 3834181.757146, lowerbound=1317070.757146, norm of subgrad 1148.107468 dualbound = 3834181.757146, lowerbound=1317070.757146, norm of subgrad 33.876195 stepsize= 1.000000 +dualbound = 3834256.553313, lowerbound=1315679.553313, norm of subgrad 1147.495775 dualbound = 3834256.553313, lowerbound=1315679.553313, norm of subgrad 33.790474 stepsize= 1.000000 +dualbound = 3834309.401235, lowerbound=1321488.401235, norm of subgrad 1150.056695 dualbound = 3834309.401235, lowerbound=1321488.401235, norm of subgrad 34.566572 stepsize= 1.000000 +dualbound = 3834333.257534, lowerbound=1316290.257534, norm of subgrad 1147.816735 dualbound = 3834333.257534, lowerbound=1316290.257534, norm of subgrad 34.883467 stepsize= 1.000000 +dualbound = 3834382.944707, lowerbound=1319961.944707, norm of subgrad 1149.375894 dualbound = 3834382.944707, lowerbound=1319961.944707, norm of subgrad 33.951247 stepsize= 1.000000 +dualbound = 3834465.277649, lowerbound=1316256.277649, norm of subgrad 1147.765776 dualbound = 3834465.277649, lowerbound=1316256.277649, norm of subgrad 34.530174 stepsize= 1.000000 +dualbound = 3834493.142660, lowerbound=1322032.142660, norm of subgrad 1150.270030 dualbound = 3834493.142660, lowerbound=1322032.142660, norm of subgrad 33.419530 stepsize= 1.000000 +dualbound = 3834572.884131, lowerbound=1317577.884131, norm of subgrad 1148.334831 dualbound = 3834572.884131, lowerbound=1317577.884131, norm of subgrad 34.274502 stepsize= 1.000000 +dualbound = 3834604.025921, lowerbound=1319621.025921, norm of subgrad 1149.256293 dualbound = 3834604.025921, lowerbound=1319621.025921, norm of subgrad 34.643063 stepsize= 1.000000 +dualbound = 3834661.626924, lowerbound=1315907.626924, norm of subgrad 1147.608220 dualbound = 3834661.626924, lowerbound=1315907.626924, norm of subgrad 33.979420 stepsize= 1.000000 +dualbound = 3834737.624400, lowerbound=1323080.624400, norm of subgrad 1150.716570 dualbound = 3834737.624400, lowerbound=1323080.624400, norm of subgrad 33.823032 stepsize= 1.000000 +dualbound = 3834779.463296, lowerbound=1316766.463296, norm of subgrad 1147.987571 dualbound = 3834779.463296, lowerbound=1316766.463296, norm of subgrad 33.924017 stepsize= 1.000000 +dualbound = 3834826.623470, lowerbound=1321648.623470, norm of subgrad 1150.105484 dualbound = 3834826.623470, lowerbound=1321648.623470, norm of subgrad 33.781062 stepsize= 1.000000 +dualbound = 3834888.721885, lowerbound=1314140.721885, norm of subgrad 1146.829857 dualbound = 3834888.721885, lowerbound=1314140.721885, norm of subgrad 33.765343 stepsize= 1.000000 +dualbound = 3834924.611360, lowerbound=1323553.611360, norm of subgrad 1150.927718 dualbound = 3834924.611360, lowerbound=1323553.611360, norm of subgrad 33.419896 stepsize= 1.000000 +dualbound = 3834997.492699, lowerbound=1320844.492699, norm of subgrad 1149.749752 dualbound = 3834997.492699, lowerbound=1320844.492699, norm of subgrad 33.954106 stepsize= 1.000000 +dualbound = 3835053.752673, lowerbound=1314282.752673, norm of subgrad 1146.882188 dualbound = 3835053.752673, lowerbound=1314282.752673, norm of subgrad 33.350562 stepsize= 1.000000 +dualbound = 3835098.799962, lowerbound=1317582.799962, norm of subgrad 1148.357000 dualbound = 3835098.799962, lowerbound=1317582.799962, norm of subgrad 34.439037 stepsize= 1.000000 +dualbound = 3835122.687569, lowerbound=1316061.687569, norm of subgrad 1147.678826 dualbound = 3835122.687569, lowerbound=1316061.687569, norm of subgrad 33.598923 stepsize= 1.000000 +dualbound = 3835197.990650, lowerbound=1314392.990650, norm of subgrad 1146.938094 dualbound = 3835197.990650, lowerbound=1314392.990650, norm of subgrad 33.901373 stepsize= 1.000000 +dualbound = 3835264.458741, lowerbound=1316979.458741, norm of subgrad 1148.097321 dualbound = 3835264.458741, lowerbound=1316979.458741, norm of subgrad 34.849219 stepsize= 1.000000 +dualbound = 3835303.096905, lowerbound=1316552.096905, norm of subgrad 1147.925562 dualbound = 3835303.096905, lowerbound=1316552.096905, norm of subgrad 34.923318 stepsize= 1.000000 +dualbound = 3835349.607573, lowerbound=1319672.607573, norm of subgrad 1149.295266 dualbound = 3835349.607573, lowerbound=1319672.607573, norm of subgrad 35.404953 stepsize= 1.000000 +dualbound = 3835393.197000, lowerbound=1311142.197000, norm of subgrad 1145.558902 dualbound = 3835393.197000, lowerbound=1311142.197000, norm of subgrad 34.735996 stepsize= 1.000000 +dualbound = 3835457.958995, lowerbound=1317694.958995, norm of subgrad 1148.401915 dualbound = 3835457.958995, lowerbound=1317694.958995, norm of subgrad 34.594248 stepsize= 1.000000 +dualbound = 3835546.518163, lowerbound=1316812.518163, norm of subgrad 1147.992386 dualbound = 3835546.518163, lowerbound=1316812.518163, norm of subgrad 34.096322 stepsize= 1.000000 +dualbound = 3835587.743937, lowerbound=1316740.743937, norm of subgrad 1147.966787 dualbound = 3835587.743937, lowerbound=1316740.743937, norm of subgrad 33.589072 stepsize= 1.000000 +dualbound = 3835646.906188, lowerbound=1318895.906188, norm of subgrad 1148.900738 dualbound = 3835646.906188, lowerbound=1318895.906188, norm of subgrad 33.707006 stepsize= 1.000000 +dualbound = 3835674.293065, lowerbound=1319573.293065, norm of subgrad 1149.209421 dualbound = 3835674.293065, lowerbound=1319573.293065, norm of subgrad 33.710338 stepsize= 1.000000 +dualbound = 3835742.901223, lowerbound=1316797.901223, norm of subgrad 1148.003006 dualbound = 3835742.901223, lowerbound=1316797.901223, norm of subgrad 34.374528 stepsize= 1.000000 +dualbound = 3835796.664766, lowerbound=1318500.664766, norm of subgrad 1148.750045 dualbound = 3835796.664766, lowerbound=1318500.664766, norm of subgrad 34.347686 stepsize= 1.000000 +dualbound = 3835848.864330, lowerbound=1317729.864330, norm of subgrad 1148.420160 dualbound = 3835848.864330, lowerbound=1317729.864330, norm of subgrad 34.513759 stepsize= 1.000000 +dualbound = 3835882.848495, lowerbound=1317584.848495, norm of subgrad 1148.352232 dualbound = 3835882.848495, lowerbound=1317584.848495, norm of subgrad 34.087889 stepsize= 1.000000 +dualbound = 3835956.119877, lowerbound=1322824.119877, norm of subgrad 1150.641178 dualbound = 3835956.119877, lowerbound=1322824.119877, norm of subgrad 34.989590 stepsize= 1.000000 +dualbound = 3835978.240563, lowerbound=1316768.240563, norm of subgrad 1148.000976 dualbound = 3835978.240563, lowerbound=1316768.240563, norm of subgrad 34.060544 stepsize= 1.000000 +dualbound = 3836047.657611, lowerbound=1320324.657611, norm of subgrad 1149.530190 dualbound = 3836047.657611, lowerbound=1320324.657611, norm of subgrad 34.123556 stepsize= 1.000000 +dualbound = 3836116.675358, lowerbound=1316691.675358, norm of subgrad 1147.953255 dualbound = 3836116.675358, lowerbound=1316691.675358, norm of subgrad 34.263942 stepsize= 1.000000 +dualbound = 3836146.462309, lowerbound=1320158.462309, norm of subgrad 1149.472689 dualbound = 3836146.462309, lowerbound=1320158.462309, norm of subgrad 34.040960 stepsize= 1.000000 +dualbound = 3836196.650422, lowerbound=1319740.650422, norm of subgrad 1149.293109 dualbound = 3836196.650422, lowerbound=1319740.650422, norm of subgrad 34.412034 stepsize= 1.000000 +dualbound = 3836268.791674, lowerbound=1320304.791674, norm of subgrad 1149.529813 dualbound = 3836268.791674, lowerbound=1320304.791674, norm of subgrad 34.440401 stepsize= 1.000000 +dualbound = 3836309.710031, lowerbound=1318690.710031, norm of subgrad 1148.824926 dualbound = 3836309.710031, lowerbound=1318690.710031, norm of subgrad 33.895698 stepsize= 1.000000 +dualbound = 3836392.444381, lowerbound=1320126.444381, norm of subgrad 1149.449627 dualbound = 3836392.444381, lowerbound=1320126.444381, norm of subgrad 34.507019 stepsize= 1.000000 +dualbound = 3836420.116521, lowerbound=1319692.116521, norm of subgrad 1149.295922 dualbound = 3836420.116521, lowerbound=1319692.116521, norm of subgrad 34.880828 stepsize= 1.000000 +dualbound = 3836470.811807, lowerbound=1320452.811807, norm of subgrad 1149.645516 dualbound = 3836470.811807, lowerbound=1320452.811807, norm of subgrad 35.814736 stepsize= 1.000000 +dualbound = 3836496.680628, lowerbound=1316688.680628, norm of subgrad 1147.998554 dualbound = 3836496.680628, lowerbound=1316688.680628, norm of subgrad 35.183360 stepsize= 1.000000 +dualbound = 3836567.217415, lowerbound=1316742.217415, norm of subgrad 1148.038857 dualbound = 3836567.217415, lowerbound=1316742.217415, norm of subgrad 36.352947 stepsize= 1.000000 +dualbound = 3836614.418919, lowerbound=1319446.418919, norm of subgrad 1149.212086 dualbound = 3836614.418919, lowerbound=1319446.418919, norm of subgrad 35.905452 stepsize= 1.000000 +dualbound = 3836667.850137, lowerbound=1317485.850137, norm of subgrad 1148.329591 dualbound = 3836667.850137, lowerbound=1317485.850137, norm of subgrad 35.048983 stepsize= 1.000000 +dualbound = 3836707.981314, lowerbound=1321324.981314, norm of subgrad 1149.986514 dualbound = 3836707.981314, lowerbound=1321324.981314, norm of subgrad 34.411207 stepsize= 1.000000 +dualbound = 3836815.042065, lowerbound=1318959.042065, norm of subgrad 1148.920381 dualbound = 3836815.042065, lowerbound=1318959.042065, norm of subgrad 34.147632 stepsize= 1.000000 +dualbound = 3836848.020021, lowerbound=1318884.020021, norm of subgrad 1148.908186 dualbound = 3836848.020021, lowerbound=1318884.020021, norm of subgrad 33.748747 stepsize= 1.000000 +dualbound = 3836895.416845, lowerbound=1314758.416845, norm of subgrad 1147.115259 dualbound = 3836895.416845, lowerbound=1314758.416845, norm of subgrad 34.093941 stepsize= 1.000000 +dualbound = 3836953.584289, lowerbound=1320314.584289, norm of subgrad 1149.532768 dualbound = 3836953.584289, lowerbound=1320314.584289, norm of subgrad 34.193091 stepsize= 1.000000 +dualbound = 3837012.899171, lowerbound=1318823.899171, norm of subgrad 1148.885503 dualbound = 3837012.899171, lowerbound=1318823.899171, norm of subgrad 34.253684 stepsize= 1.000000 +dualbound = 3837035.349938, lowerbound=1320977.349938, norm of subgrad 1149.846229 dualbound = 3837035.349938, lowerbound=1320977.349938, norm of subgrad 34.517398 stepsize= 1.000000 +dualbound = 3837103.681959, lowerbound=1314958.681959, norm of subgrad 1147.206469 dualbound = 3837103.681959, lowerbound=1314958.681959, norm of subgrad 34.530161 stepsize= 1.000000 +dualbound = 3837156.618267, lowerbound=1317694.618267, norm of subgrad 1148.393930 dualbound = 3837156.618267, lowerbound=1317694.618267, norm of subgrad 34.160449 stepsize= 1.000000 +dualbound = 3837216.517939, lowerbound=1319271.517939, norm of subgrad 1149.060276 dualbound = 3837216.517939, lowerbound=1319271.517939, norm of subgrad 33.584218 stepsize= 1.000000 +dualbound = 3837294.534939, lowerbound=1315475.534939, norm of subgrad 1147.409489 dualbound = 3837294.534939, lowerbound=1315475.534939, norm of subgrad 33.926641 stepsize= 1.000000 +dualbound = 3837334.578989, lowerbound=1321804.578989, norm of subgrad 1150.171543 dualbound = 3837334.578989, lowerbound=1321804.578989, norm of subgrad 33.616128 stepsize= 1.000000 +dualbound = 3837387.641777, lowerbound=1316425.641777, norm of subgrad 1147.844346 dualbound = 3837387.641777, lowerbound=1316425.641777, norm of subgrad 34.264600 stepsize= 1.000000 +dualbound = 3837423.504521, lowerbound=1318897.504521, norm of subgrad 1148.907527 dualbound = 3837423.504521, lowerbound=1318897.504521, norm of subgrad 33.568776 stepsize= 1.000000 +dualbound = 3837495.013079, lowerbound=1317338.013079, norm of subgrad 1148.260429 dualbound = 3837495.013079, lowerbound=1317338.013079, norm of subgrad 35.149802 stepsize= 1.000000 +dualbound = 3837521.228536, lowerbound=1315270.228536, norm of subgrad 1147.365778 dualbound = 3837521.228536, lowerbound=1315270.228536, norm of subgrad 34.701808 stepsize= 1.000000 +dualbound = 3837583.064395, lowerbound=1318311.064395, norm of subgrad 1148.690152 dualbound = 3837583.064395, lowerbound=1318311.064395, norm of subgrad 35.211303 stepsize= 1.000000 +dualbound = 3837620.429423, lowerbound=1316691.429423, norm of subgrad 1147.968828 dualbound = 3837620.429423, lowerbound=1316691.429423, norm of subgrad 34.327322 stepsize= 1.000000 +dualbound = 3837697.601403, lowerbound=1321567.601403, norm of subgrad 1150.071564 dualbound = 3837697.601403, lowerbound=1321567.601403, norm of subgrad 34.266193 stepsize= 1.000000 +dualbound = 3837763.775297, lowerbound=1316994.775297, norm of subgrad 1148.079603 dualbound = 3837763.775297, lowerbound=1316994.775297, norm of subgrad 34.031954 stepsize= 1.000000 +dualbound = 3837799.843288, lowerbound=1321715.843288, norm of subgrad 1150.146010 dualbound = 3837799.843288, lowerbound=1321715.843288, norm of subgrad 34.001000 stepsize= 1.000000 +dualbound = 3837866.166372, lowerbound=1320295.166372, norm of subgrad 1149.525627 dualbound = 3837866.166372, lowerbound=1320295.166372, norm of subgrad 34.355830 stepsize= 1.000000 +dualbound = 3837929.160632, lowerbound=1316302.160632, norm of subgrad 1147.804496 dualbound = 3837929.160632, lowerbound=1316302.160632, norm of subgrad 34.871109 stepsize= 1.000000 +dualbound = 3837956.620920, lowerbound=1318292.620920, norm of subgrad 1148.666018 dualbound = 3837956.620920, lowerbound=1318292.620920, norm of subgrad 34.182748 stepsize= 1.000000 +dualbound = 3838035.716468, lowerbound=1317314.716468, norm of subgrad 1148.220674 dualbound = 3838035.716468, lowerbound=1317314.716468, norm of subgrad 34.279667 stepsize= 1.000000 +dualbound = 3838066.277004, lowerbound=1318773.277004, norm of subgrad 1148.868694 dualbound = 3838066.277004, lowerbound=1318773.277004, norm of subgrad 34.008242 stepsize= 1.000000 +dualbound = 3838130.022655, lowerbound=1314685.022655, norm of subgrad 1147.094165 dualbound = 3838130.022655, lowerbound=1314685.022655, norm of subgrad 34.695038 stepsize= 1.000000 +dualbound = 3838177.623185, lowerbound=1315875.623185, norm of subgrad 1147.581641 dualbound = 3838177.623185, lowerbound=1315875.623185, norm of subgrad 33.400607 stepsize= 1.000000 +dualbound = 3838250.420881, lowerbound=1317416.420881, norm of subgrad 1148.247979 dualbound = 3838250.420881, lowerbound=1317416.420881, norm of subgrad 33.612463 stepsize= 1.000000 +dualbound = 3838301.548210, lowerbound=1318754.548210, norm of subgrad 1148.848793 dualbound = 3838301.548210, lowerbound=1318754.548210, norm of subgrad 33.913527 stepsize= 1.000000 +dualbound = 3838358.352916, lowerbound=1320357.352916, norm of subgrad 1149.563114 dualbound = 3838358.352916, lowerbound=1320357.352916, norm of subgrad 34.565947 stepsize= 1.000000 +dualbound = 3838379.424843, lowerbound=1313185.424843, norm of subgrad 1146.436839 dualbound = 3838379.424843, lowerbound=1313185.424843, norm of subgrad 33.956913 stepsize= 1.000000 +dualbound = 3838434.734773, lowerbound=1319509.734773, norm of subgrad 1149.213964 dualbound = 3838434.734773, lowerbound=1319509.734773, norm of subgrad 35.189628 stepsize= 1.000000 +dualbound = 3838485.661271, lowerbound=1320504.661271, norm of subgrad 1149.631968 dualbound = 3838485.661271, lowerbound=1320504.661271, norm of subgrad 34.639955 stepsize= 1.000000 +dualbound = 3838546.979588, lowerbound=1319443.979588, norm of subgrad 1149.159684 dualbound = 3838546.979588, lowerbound=1319443.979588, norm of subgrad 34.428452 stepsize= 1.000000 +dualbound = 3838602.588766, lowerbound=1317090.588766, norm of subgrad 1148.135266 dualbound = 3838602.588766, lowerbound=1317090.588766, norm of subgrad 34.345439 stepsize= 1.000000 +dualbound = 3838687.787532, lowerbound=1323087.787532, norm of subgrad 1150.740973 dualbound = 3838687.787532, lowerbound=1323087.787532, norm of subgrad 34.672738 stepsize= 1.000000 +dualbound = 3838698.509672, lowerbound=1321414.509672, norm of subgrad 1150.038047 dualbound = 3838698.509672, lowerbound=1321414.509672, norm of subgrad 34.405263 stepsize= 1.000000 +dualbound = 3838768.094702, lowerbound=1317586.094702, norm of subgrad 1148.347114 dualbound = 3838768.094702, lowerbound=1317586.094702, norm of subgrad 34.417801 stepsize= 1.000000 +dualbound = 3838823.822342, lowerbound=1319294.822342, norm of subgrad 1149.099135 dualbound = 3838823.822342, lowerbound=1319294.822342, norm of subgrad 34.492429 stepsize= 1.000000 +dualbound = 3838864.558711, lowerbound=1319507.558711, norm of subgrad 1149.185172 dualbound = 3838864.558711, lowerbound=1319507.558711, norm of subgrad 34.054902 stepsize= 1.000000 +dualbound = 3838937.395523, lowerbound=1318525.395523, norm of subgrad 1148.742528 dualbound = 3838937.395523, lowerbound=1318525.395523, norm of subgrad 34.012304 stepsize= 1.000000 +dualbound = 3838977.276743, lowerbound=1313435.276743, norm of subgrad 1146.524434 dualbound = 3838977.276743, lowerbound=1313435.276743, norm of subgrad 33.509420 stepsize= 1.000000 +dualbound = 3839039.795841, lowerbound=1318696.795841, norm of subgrad 1148.808860 dualbound = 3839039.795841, lowerbound=1318696.795841, norm of subgrad 33.578551 stepsize= 1.000000 +dualbound = 3839088.448282, lowerbound=1317587.448282, norm of subgrad 1148.344656 dualbound = 3839088.448282, lowerbound=1317587.448282, norm of subgrad 34.009593 stepsize= 1.000000 +dualbound = 3839126.333968, lowerbound=1316094.333968, norm of subgrad 1147.689563 dualbound = 3839126.333968, lowerbound=1316094.333968, norm of subgrad 33.688064 stepsize= 1.000000 +dualbound = 3839190.333828, lowerbound=1317165.333828, norm of subgrad 1148.159106 dualbound = 3839190.333828, lowerbound=1317165.333828, norm of subgrad 34.176013 stepsize= 1.000000 +dualbound = 3839262.176575, lowerbound=1318194.176575, norm of subgrad 1148.607059 dualbound = 3839262.176575, lowerbound=1318194.176575, norm of subgrad 34.290564 stepsize= 1.000000 +dualbound = 3839287.725140, lowerbound=1319668.725140, norm of subgrad 1149.285746 dualbound = 3839287.725140, lowerbound=1319668.725140, norm of subgrad 34.850374 stepsize= 1.000000 +dualbound = 3839337.725686, lowerbound=1315500.725686, norm of subgrad 1147.440511 dualbound = 3839337.725686, lowerbound=1315500.725686, norm of subgrad 34.190650 stepsize= 1.000000 +dualbound = 3839413.418460, lowerbound=1318665.418460, norm of subgrad 1148.825669 dualbound = 3839413.418460, lowerbound=1318665.418460, norm of subgrad 34.795011 stepsize= 1.000000 +dualbound = 3839455.536357, lowerbound=1323459.536357, norm of subgrad 1150.902488 dualbound = 3839455.536357, lowerbound=1323459.536357, norm of subgrad 34.045821 stepsize= 1.000000 +dualbound = 3839508.858049, lowerbound=1315700.858049, norm of subgrad 1147.512901 dualbound = 3839508.858049, lowerbound=1315700.858049, norm of subgrad 33.739023 stepsize= 1.000000 +dualbound = 3839559.426926, lowerbound=1318672.426926, norm of subgrad 1148.829590 dualbound = 3839559.426926, lowerbound=1318672.426926, norm of subgrad 34.461121 stepsize= 1.000000 +dualbound = 3839624.630780, lowerbound=1315384.630780, norm of subgrad 1147.377719 dualbound = 3839624.630780, lowerbound=1315384.630780, norm of subgrad 34.002998 stepsize= 1.000000 +dualbound = 3839661.347031, lowerbound=1320989.347031, norm of subgrad 1149.812744 dualbound = 3839661.347031, lowerbound=1320989.347031, norm of subgrad 33.417305 stepsize= 1.000000 +dualbound = 3839729.817635, lowerbound=1319040.817635, norm of subgrad 1148.995569 dualbound = 3839729.817635, lowerbound=1319040.817635, norm of subgrad 34.906598 stepsize= 1.000000 +dualbound = 3839758.473910, lowerbound=1318747.473910, norm of subgrad 1148.863993 dualbound = 3839758.473910, lowerbound=1318747.473910, norm of subgrad 34.200238 stepsize= 1.000000 +dualbound = 3839810.204841, lowerbound=1317189.204841, norm of subgrad 1148.220016 dualbound = 3839810.204841, lowerbound=1317189.204841, norm of subgrad 35.661337 stepsize= 1.000000 +dualbound = 3839832.510250, lowerbound=1317377.510250, norm of subgrad 1148.269354 dualbound = 3839832.510250, lowerbound=1317377.510250, norm of subgrad 34.165852 stepsize= 1.000000 +dualbound = 3839934.756523, lowerbound=1317071.756523, norm of subgrad 1148.143178 dualbound = 3839934.756523, lowerbound=1317071.756523, norm of subgrad 35.542176 stepsize= 1.000000 +dualbound = 3839978.395448, lowerbound=1314419.395448, norm of subgrad 1146.983607 dualbound = 3839978.395448, lowerbound=1314419.395448, norm of subgrad 34.578012 stepsize= 1.000000 +dualbound = 3840022.601825, lowerbound=1320236.601825, norm of subgrad 1149.512332 dualbound = 3840022.601825, lowerbound=1320236.601825, norm of subgrad 34.441347 stepsize= 1.000000 +dualbound = 3840094.948613, lowerbound=1314388.948613, norm of subgrad 1146.973822 dualbound = 3840094.948613, lowerbound=1314388.948613, norm of subgrad 35.104797 stepsize= 1.000000 +dualbound = 3840128.958931, lowerbound=1317809.958931, norm of subgrad 1148.445889 dualbound = 3840128.958931, lowerbound=1317809.958931, norm of subgrad 33.941277 stepsize= 1.000000 +dualbound = 3840197.694320, lowerbound=1312505.694320, norm of subgrad 1146.151253 dualbound = 3840197.694320, lowerbound=1312505.694320, norm of subgrad 35.010504 stepsize= 1.000000 +dualbound = 3840253.325309, lowerbound=1323768.325309, norm of subgrad 1151.045319 dualbound = 3840253.325309, lowerbound=1323768.325309, norm of subgrad 34.534490 stepsize= 1.000000 +dualbound = 3840302.134432, lowerbound=1315700.134432, norm of subgrad 1147.530886 dualbound = 3840302.134432, lowerbound=1315700.134432, norm of subgrad 34.290073 stepsize= 1.000000 +dualbound = 3840344.188852, lowerbound=1316045.188852, norm of subgrad 1147.679044 dualbound = 3840344.188852, lowerbound=1316045.188852, norm of subgrad 34.118242 stepsize= 1.000000 +dualbound = 3840411.596280, lowerbound=1312122.596280, norm of subgrad 1145.988044 dualbound = 3840411.596280, lowerbound=1312122.596280, norm of subgrad 35.119901 stepsize= 1.000000 +dualbound = 3840448.225272, lowerbound=1319608.225272, norm of subgrad 1149.263775 dualbound = 3840448.225272, lowerbound=1319608.225272, norm of subgrad 35.151515 stepsize= 1.000000 +dualbound = 3840479.437636, lowerbound=1321387.437636, norm of subgrad 1150.026277 dualbound = 3840479.437636, lowerbound=1321387.437636, norm of subgrad 34.701763 stepsize= 1.000000 +dualbound = 3840574.913056, lowerbound=1318468.913056, norm of subgrad 1148.739271 dualbound = 3840574.913056, lowerbound=1318468.913056, norm of subgrad 35.049614 stepsize= 1.000000 +dualbound = 3840619.146546, lowerbound=1318837.146546, norm of subgrad 1148.903019 dualbound = 3840619.146546, lowerbound=1318837.146546, norm of subgrad 34.427220 stepsize= 1.000000 +dualbound = 3840665.109598, lowerbound=1313442.109598, norm of subgrad 1146.558376 dualbound = 3840665.109598, lowerbound=1313442.109598, norm of subgrad 34.640483 stepsize= 1.000000 +dualbound = 3840727.705093, lowerbound=1320751.705093, norm of subgrad 1149.732014 dualbound = 3840727.705093, lowerbound=1320751.705093, norm of subgrad 34.562921 stepsize= 1.000000 +dualbound = 3840774.197119, lowerbound=1319302.197119, norm of subgrad 1149.079717 dualbound = 3840774.197119, lowerbound=1319302.197119, norm of subgrad 33.593035 stepsize= 1.000000 +dualbound = 3840869.648617, lowerbound=1321544.648617, norm of subgrad 1150.075062 dualbound = 3840869.648617, lowerbound=1321544.648617, norm of subgrad 34.977872 stepsize= 1.000000 +dualbound = 3840871.521647, lowerbound=1323419.521647, norm of subgrad 1150.894661 dualbound = 3840871.521647, lowerbound=1323419.521647, norm of subgrad 33.776812 stepsize= 1.000000 +dualbound = 3840939.486645, lowerbound=1320188.486645, norm of subgrad 1149.480094 dualbound = 3840939.486645, lowerbound=1320188.486645, norm of subgrad 34.408792 stepsize= 1.000000 +dualbound = 3840987.978746, lowerbound=1323594.978746, norm of subgrad 1150.962631 dualbound = 3840987.978746, lowerbound=1323594.978746, norm of subgrad 34.183214 stepsize= 1.000000 +dualbound = 3841031.931608, lowerbound=1319873.931608, norm of subgrad 1149.344131 dualbound = 3841031.931608, lowerbound=1319873.931608, norm of subgrad 34.087430 stepsize= 1.000000 +dualbound = 3841105.919449, lowerbound=1321638.919449, norm of subgrad 1150.096917 dualbound = 3841105.919449, lowerbound=1321638.919449, norm of subgrad 34.029220 stepsize= 1.000000 +dualbound = 3841149.280992, lowerbound=1318659.280992, norm of subgrad 1148.809506 dualbound = 3841149.280992, lowerbound=1318659.280992, norm of subgrad 33.872726 stepsize= 1.000000 +dualbound = 3841201.010243, lowerbound=1320681.010243, norm of subgrad 1149.701270 dualbound = 3841201.010243, lowerbound=1320681.010243, norm of subgrad 34.405367 stepsize= 1.000000 +dualbound = 3841245.857676, lowerbound=1316233.857676, norm of subgrad 1147.757752 dualbound = 3841245.857676, lowerbound=1316233.857676, norm of subgrad 34.041848 stepsize= 1.000000 +dualbound = 3841306.976260, lowerbound=1321025.976260, norm of subgrad 1149.849110 dualbound = 3841306.976260, lowerbound=1321025.976260, norm of subgrad 34.469096 stepsize= 1.000000 +dualbound = 3841342.118577, lowerbound=1316778.118577, norm of subgrad 1148.027490 dualbound = 3841342.118577, lowerbound=1316778.118577, norm of subgrad 34.987745 stepsize= 1.000000 +dualbound = 3841380.399833, lowerbound=1320483.399833, norm of subgrad 1149.614457 dualbound = 3841380.399833, lowerbound=1320483.399833, norm of subgrad 34.180130 stepsize= 1.000000 +dualbound = 3841469.469633, lowerbound=1315741.469633, norm of subgrad 1147.537132 dualbound = 3841469.469633, lowerbound=1315741.469633, norm of subgrad 34.482891 stepsize= 1.000000 +dualbound = 3841518.696871, lowerbound=1320920.696871, norm of subgrad 1149.830725 dualbound = 3841518.696871, lowerbound=1320920.696871, norm of subgrad 35.202660 stepsize= 1.000000 +dualbound = 3841548.745833, lowerbound=1314494.745833, norm of subgrad 1147.012531 dualbound = 3841548.745833, lowerbound=1314494.745833, norm of subgrad 34.249802 stepsize= 1.000000 +dualbound = 3841629.827581, lowerbound=1318469.827581, norm of subgrad 1148.756209 dualbound = 3841629.827581, lowerbound=1318469.827581, norm of subgrad 35.384767 stepsize= 1.000000 +dualbound = 3841658.415401, lowerbound=1321934.415401, norm of subgrad 1150.263194 dualbound = 3841658.415401, lowerbound=1321934.415401, norm of subgrad 34.635066 stepsize= 1.000000 +dualbound = 3841721.139600, lowerbound=1317055.139600, norm of subgrad 1148.128102 dualbound = 3841721.139600, lowerbound=1317055.139600, norm of subgrad 34.723540 stepsize= 1.000000 +dualbound = 3841787.326476, lowerbound=1322152.326476, norm of subgrad 1150.327052 dualbound = 3841787.326476, lowerbound=1322152.326476, norm of subgrad 34.149478 stepsize= 1.000000 +dualbound = 3841832.145823, lowerbound=1316779.145823, norm of subgrad 1147.993966 dualbound = 3841832.145823, lowerbound=1316779.145823, norm of subgrad 33.997343 stepsize= 1.000000 +dualbound = 3841893.473673, lowerbound=1318468.473673, norm of subgrad 1148.755184 dualbound = 3841893.473673, lowerbound=1318468.473673, norm of subgrad 35.090281 stepsize= 1.000000 +dualbound = 3841929.914396, lowerbound=1316816.914396, norm of subgrad 1148.048307 dualbound = 3841929.914396, lowerbound=1316816.914396, norm of subgrad 35.134609 stepsize= 1.000000 +dualbound = 3841991.826949, lowerbound=1316373.826949, norm of subgrad 1147.823082 dualbound = 3841991.826949, lowerbound=1316373.826949, norm of subgrad 34.437081 stepsize= 1.000000 +dualbound = 3842061.646418, lowerbound=1316326.646418, norm of subgrad 1147.791203 dualbound = 3842061.646418, lowerbound=1316326.646418, norm of subgrad 34.173374 stepsize= 1.000000 +dualbound = 3842103.161975, lowerbound=1315962.161975, norm of subgrad 1147.635030 dualbound = 3842103.161975, lowerbound=1315962.161975, norm of subgrad 33.845466 stepsize= 1.000000 +dualbound = 3842157.629788, lowerbound=1315725.629788, norm of subgrad 1147.543738 dualbound = 3842157.629788, lowerbound=1315725.629788, norm of subgrad 34.430623 stepsize= 1.000000 +dualbound = 3842200.486439, lowerbound=1319959.486439, norm of subgrad 1149.370474 dualbound = 3842200.486439, lowerbound=1319959.486439, norm of subgrad 33.702472 stepsize= 1.000000 +dualbound = 3842284.704159, lowerbound=1315109.704159, norm of subgrad 1147.245268 dualbound = 3842284.704159, lowerbound=1315109.704159, norm of subgrad 33.855837 stepsize= 1.000000 +dualbound = 3842314.093054, lowerbound=1321794.093054, norm of subgrad 1150.173071 dualbound = 3842314.093054, lowerbound=1321794.093054, norm of subgrad 33.665842 stepsize= 1.000000 +dualbound = 3842368.439616, lowerbound=1316436.439616, norm of subgrad 1147.851227 dualbound = 3842368.439616, lowerbound=1316436.439616, norm of subgrad 34.356172 stepsize= 1.000000 +dualbound = 3842405.921799, lowerbound=1321617.921799, norm of subgrad 1150.110830 dualbound = 3842405.921799, lowerbound=1321617.921799, norm of subgrad 34.270719 stepsize= 1.000000 +dualbound = 3842472.148476, lowerbound=1318489.148476, norm of subgrad 1148.746338 dualbound = 3842472.148476, lowerbound=1318489.148476, norm of subgrad 34.572051 stepsize= 1.000000 +dualbound = 3842529.406684, lowerbound=1319313.406684, norm of subgrad 1149.095908 dualbound = 3842529.406684, lowerbound=1319313.406684, norm of subgrad 34.135879 stepsize= 1.000000 +dualbound = 3842584.634937, lowerbound=1320928.634937, norm of subgrad 1149.799389 dualbound = 3842584.634937, lowerbound=1320928.634937, norm of subgrad 34.135440 stepsize= 1.000000 +dualbound = 3842615.539844, lowerbound=1320558.539844, norm of subgrad 1149.662359 dualbound = 3842615.539844, lowerbound=1320558.539844, norm of subgrad 34.581858 stepsize= 1.000000 +dualbound = 3842661.616928, lowerbound=1316406.616928, norm of subgrad 1147.873955 dualbound = 3842661.616928, lowerbound=1316406.616928, norm of subgrad 35.412951 stepsize= 1.000000 +dualbound = 3842712.263063, lowerbound=1323749.263063, norm of subgrad 1151.013146 dualbound = 3842712.263063, lowerbound=1323749.263063, norm of subgrad 33.654808 stepsize= 1.000000 +dualbound = 3842814.374902, lowerbound=1314460.374902, norm of subgrad 1146.986214 dualbound = 3842814.374902, lowerbound=1314460.374902, norm of subgrad 34.915782 stepsize= 1.000000 +dualbound = 3842821.979801, lowerbound=1324703.979801, norm of subgrad 1151.443867 dualbound = 3842821.979801, lowerbound=1324703.979801, norm of subgrad 33.564936 stepsize= 1.000000 +dualbound = 3842918.485312, lowerbound=1317933.485312, norm of subgrad 1148.507939 dualbound = 3842918.485312, lowerbound=1317933.485312, norm of subgrad 35.121297 stepsize= 1.000000 +dualbound = 3842895.623657, lowerbound=1320136.623657, norm of subgrad 1149.469714 dualbound = 3842895.623657, lowerbound=1320136.623657, norm of subgrad 33.483404 stepsize= 1.000000 +dualbound = 3843000.138769, lowerbound=1318666.138769, norm of subgrad 1148.803351 dualbound = 3843000.138769, lowerbound=1318666.138769, norm of subgrad 34.460341 stepsize= 1.000000 +dualbound = 3843062.963758, lowerbound=1317550.963758, norm of subgrad 1148.323980 dualbound = 3843062.963758, lowerbound=1317550.963758, norm of subgrad 34.056203 stepsize= 1.000000 +dualbound = 3843071.337647, lowerbound=1316143.337647, norm of subgrad 1147.752734 dualbound = 3843071.337647, lowerbound=1316143.337647, norm of subgrad 34.660841 stepsize= 1.000000 +dualbound = 3843126.817409, lowerbound=1317181.817409, norm of subgrad 1148.173688 dualbound = 3843126.817409, lowerbound=1317181.817409, norm of subgrad 34.299851 stepsize= 1.000000 +dualbound = 3843217.473212, lowerbound=1318822.473212, norm of subgrad 1148.876614 dualbound = 3843217.473212, lowerbound=1318822.473212, norm of subgrad 34.433353 stepsize= 1.000000 +dualbound = 3843234.368248, lowerbound=1321311.368248, norm of subgrad 1149.951029 dualbound = 3843234.368248, lowerbound=1321311.368248, norm of subgrad 33.058963 stepsize= 1.000000 +dualbound = 3843349.360317, lowerbound=1316160.360317, norm of subgrad 1147.686961 dualbound = 3843349.360317, lowerbound=1316160.360317, norm of subgrad 33.763769 stepsize= 1.000000 +dualbound = 3843370.892921, lowerbound=1319161.892921, norm of subgrad 1149.033895 dualbound = 3843370.892921, lowerbound=1319161.892921, norm of subgrad 33.742149 stepsize= 1.000000 +dualbound = 3843417.402300, lowerbound=1319245.402300, norm of subgrad 1149.064142 dualbound = 3843417.402300, lowerbound=1319245.402300, norm of subgrad 33.904415 stepsize= 1.000000 +dualbound = 3843464.243712, lowerbound=1316782.243712, norm of subgrad 1147.995315 dualbound = 3843464.243712, lowerbound=1316782.243712, norm of subgrad 34.027069 stepsize= 1.000000 +dualbound = 3843517.785235, lowerbound=1317607.785235, norm of subgrad 1148.359171 dualbound = 3843517.785235, lowerbound=1317607.785235, norm of subgrad 34.271585 stepsize= 1.000000 +dualbound = 3843566.977223, lowerbound=1322153.977223, norm of subgrad 1150.337767 dualbound = 3843566.977223, lowerbound=1322153.977223, norm of subgrad 34.237289 stepsize= 1.000000 +dualbound = 3843624.946339, lowerbound=1315813.946339, norm of subgrad 1147.579603 dualbound = 3843624.946339, lowerbound=1315813.946339, norm of subgrad 34.394318 stepsize= 1.000000 +dualbound = 3843668.222032, lowerbound=1319967.222032, norm of subgrad 1149.373839 dualbound = 3843668.222032, lowerbound=1319967.222032, norm of subgrad 33.708689 stepsize= 1.000000 +dualbound = 3843742.502381, lowerbound=1321648.502381, norm of subgrad 1150.133689 dualbound = 3843742.502381, lowerbound=1321648.502381, norm of subgrad 35.118091 stepsize= 1.000000 +dualbound = 3843759.740654, lowerbound=1318846.740654, norm of subgrad 1148.903277 dualbound = 3843759.740654, lowerbound=1318846.740654, norm of subgrad 33.900417 stepsize= 1.000000 +dualbound = 3843843.487487, lowerbound=1319361.487487, norm of subgrad 1149.125967 dualbound = 3843843.487487, lowerbound=1319361.487487, norm of subgrad 34.824515 stepsize= 1.000000 +dualbound = 3843884.239563, lowerbound=1322869.239563, norm of subgrad 1150.671647 dualbound = 3843884.239563, lowerbound=1322869.239563, norm of subgrad 34.881974 stepsize= 1.000000 +dualbound = 3843921.419216, lowerbound=1320034.419216, norm of subgrad 1149.427431 dualbound = 3843921.419216, lowerbound=1320034.419216, norm of subgrad 34.440959 stepsize= 1.000000 +dualbound = 3843991.040255, lowerbound=1315956.040255, norm of subgrad 1147.670266 dualbound = 3843991.040255, lowerbound=1315956.040255, norm of subgrad 35.505226 stepsize= 1.000000 +dualbound = 3844050.594083, lowerbound=1315064.594083, norm of subgrad 1147.267882 dualbound = 3844050.594083, lowerbound=1315064.594083, norm of subgrad 34.907790 stepsize= 1.000000 +dualbound = 3844082.817330, lowerbound=1315050.817330, norm of subgrad 1147.276260 dualbound = 3844082.817330, lowerbound=1315050.817330, norm of subgrad 34.988902 stepsize= 1.000000 +dualbound = 3844132.620859, lowerbound=1320687.620859, norm of subgrad 1149.702405 dualbound = 3844132.620859, lowerbound=1320687.620859, norm of subgrad 34.319142 stepsize= 1.000000 +dualbound = 3844213.760561, lowerbound=1318308.760561, norm of subgrad 1148.647361 dualbound = 3844213.760561, lowerbound=1318308.760561, norm of subgrad 34.104834 stepsize= 1.000000 +dualbound = 3844272.470244, lowerbound=1315400.470244, norm of subgrad 1147.384186 dualbound = 3844272.470244, lowerbound=1315400.470244, norm of subgrad 33.892620 stepsize= 1.000000 +dualbound = 3844316.938907, lowerbound=1317042.938907, norm of subgrad 1148.101014 dualbound = 3844316.938907, lowerbound=1317042.938907, norm of subgrad 33.726379 stepsize= 1.000000 +dualbound = 3844375.272312, lowerbound=1318760.272312, norm of subgrad 1148.872609 dualbound = 3844375.272312, lowerbound=1318760.272312, norm of subgrad 34.732311 stepsize= 1.000000 +dualbound = 3844394.371716, lowerbound=1316292.371716, norm of subgrad 1147.776273 dualbound = 3844394.371716, lowerbound=1316292.371716, norm of subgrad 33.423037 stepsize= 1.000000 +dualbound = 3844504.272211, lowerbound=1314299.272211, norm of subgrad 1146.894185 dualbound = 3844504.272211, lowerbound=1314299.272211, norm of subgrad 34.305983 stepsize= 1.000000 +dualbound = 3844508.073139, lowerbound=1322980.073139, norm of subgrad 1150.698950 dualbound = 3844508.073139, lowerbound=1322980.073139, norm of subgrad 33.642249 stepsize= 1.000000 +dualbound = 3844591.729592, lowerbound=1315463.729592, norm of subgrad 1147.418725 dualbound = 3844591.729592, lowerbound=1315463.729592, norm of subgrad 34.491397 stepsize= 1.000000 +dualbound = 3844622.043969, lowerbound=1325639.043969, norm of subgrad 1151.852440 dualbound = 3844622.043969, lowerbound=1325639.043969, norm of subgrad 33.989916 stepsize= 1.000000 +dualbound = 3844703.173859, lowerbound=1314104.173859, norm of subgrad 1146.822207 dualbound = 3844703.173859, lowerbound=1314104.173859, norm of subgrad 34.323897 stepsize= 1.000000 +dualbound = 3844747.603555, lowerbound=1320546.603555, norm of subgrad 1149.632812 dualbound = 3844747.603555, lowerbound=1320546.603555, norm of subgrad 33.962180 stepsize= 1.000000 +dualbound = 3844804.838485, lowerbound=1322014.838485, norm of subgrad 1150.269029 dualbound = 3844804.838485, lowerbound=1322014.838485, norm of subgrad 34.076897 stepsize= 1.000000 +dualbound = 3844848.554872, lowerbound=1317976.554872, norm of subgrad 1148.530607 dualbound = 3844848.554872, lowerbound=1317976.554872, norm of subgrad 34.492266 stepsize= 1.000000 +dualbound = 3844922.153702, lowerbound=1321819.153702, norm of subgrad 1150.170924 dualbound = 3844922.153702, lowerbound=1321819.153702, norm of subgrad 33.876228 stepsize= 1.000000 +dualbound = 3844976.235264, lowerbound=1317704.235264, norm of subgrad 1148.371993 dualbound = 3844976.235264, lowerbound=1317704.235264, norm of subgrad 33.287859 stepsize= 1.000000 +dualbound = 3845030.243775, lowerbound=1317243.243775, norm of subgrad 1148.159503 dualbound = 3845030.243775, lowerbound=1317243.243775, norm of subgrad 32.878694 stepsize= 1.000000 +dualbound = 3845085.764054, lowerbound=1317648.764054, norm of subgrad 1148.368740 dualbound = 3845085.764054, lowerbound=1317648.764054, norm of subgrad 34.022350 stepsize= 1.000000 +dualbound = 3845127.932284, lowerbound=1316992.932284, norm of subgrad 1148.069219 dualbound = 3845127.932284, lowerbound=1316992.932284, norm of subgrad 33.349186 stepsize= 1.000000 +dualbound = 3845182.281765, lowerbound=1317846.281765, norm of subgrad 1148.453866 dualbound = 3845182.281765, lowerbound=1317846.281765, norm of subgrad 33.975719 stepsize= 1.000000 +dualbound = 3845208.584076, lowerbound=1314041.584076, norm of subgrad 1146.809306 dualbound = 3845208.584076, lowerbound=1314041.584076, norm of subgrad 34.004445 stepsize= 1.000000 +dualbound = 3845276.046836, lowerbound=1320016.046836, norm of subgrad 1149.424659 dualbound = 3845276.046836, lowerbound=1320016.046836, norm of subgrad 35.049433 stepsize= 1.000000 +dualbound = 3845335.809218, lowerbound=1316461.809218, norm of subgrad 1147.849210 dualbound = 3845335.809218, lowerbound=1316461.809218, norm of subgrad 33.996505 stepsize= 1.000000 +dualbound = 3845395.463101, lowerbound=1322757.463101, norm of subgrad 1150.603087 dualbound = 3845395.463101, lowerbound=1322757.463101, norm of subgrad 34.491360 stepsize= 1.000000 +dualbound = 3845438.961495, lowerbound=1313933.961495, norm of subgrad 1146.787235 dualbound = 3845438.961495, lowerbound=1313933.961495, norm of subgrad 35.078461 stepsize= 1.000000 +dualbound = 3845479.914568, lowerbound=1320047.914568, norm of subgrad 1149.424167 dualbound = 3845479.914568, lowerbound=1320047.914568, norm of subgrad 34.189956 stepsize= 1.000000 +dualbound = 3845534.783799, lowerbound=1319723.783799, norm of subgrad 1149.309264 dualbound = 3845534.783799, lowerbound=1319723.783799, norm of subgrad 35.254351 stepsize= 1.000000 +dualbound = 3845574.885353, lowerbound=1322058.885353, norm of subgrad 1150.317298 dualbound = 3845574.885353, lowerbound=1322058.885353, norm of subgrad 34.800884 stepsize= 1.000000 +dualbound = 3845655.005359, lowerbound=1322463.005359, norm of subgrad 1150.467733 dualbound = 3845655.005359, lowerbound=1322463.005359, norm of subgrad 34.541569 stepsize= 1.000000 +dualbound = 3845678.070613, lowerbound=1321388.070613, norm of subgrad 1150.020465 dualbound = 3845678.070613, lowerbound=1321388.070613, norm of subgrad 34.381176 stepsize= 1.000000 +dualbound = 3845739.131237, lowerbound=1318703.131237, norm of subgrad 1148.842083 dualbound = 3845739.131237, lowerbound=1318703.131237, norm of subgrad 34.584109 stepsize= 1.000000 +dualbound = 3845790.392722, lowerbound=1317411.392722, norm of subgrad 1148.294123 dualbound = 3845790.392722, lowerbound=1317411.392722, norm of subgrad 34.917925 stepsize= 1.000000 +dualbound = 3845828.313619, lowerbound=1324762.313619, norm of subgrad 1151.507843 dualbound = 3845828.313619, lowerbound=1324762.313619, norm of subgrad 35.297605 stepsize= 1.000000 +dualbound = 3845895.246390, lowerbound=1315473.246390, norm of subgrad 1147.434637 dualbound = 3845895.246390, lowerbound=1315473.246390, norm of subgrad 34.640046 stepsize= 1.000000 +dualbound = 3845944.213349, lowerbound=1320651.213349, norm of subgrad 1149.709621 dualbound = 3845944.213349, lowerbound=1320651.213349, norm of subgrad 35.070885 stepsize= 1.000000 +dualbound = 3845990.748663, lowerbound=1314506.748663, norm of subgrad 1147.020378 dualbound = 3845990.748663, lowerbound=1314506.748663, norm of subgrad 34.576514 stepsize= 1.000000 +dualbound = 3846035.459488, lowerbound=1320585.459488, norm of subgrad 1149.677981 dualbound = 3846035.459488, lowerbound=1320585.459488, norm of subgrad 34.910039 stepsize= 1.000000 +dualbound = 3846090.574241, lowerbound=1319564.574241, norm of subgrad 1149.218245 dualbound = 3846090.574241, lowerbound=1319564.574241, norm of subgrad 34.541493 stepsize= 1.000000 +dualbound = 3846154.078236, lowerbound=1318231.078236, norm of subgrad 1148.685805 dualbound = 3846154.078236, lowerbound=1318231.078236, norm of subgrad 36.214693 stepsize= 1.000000 +dualbound = 3846177.543367, lowerbound=1318868.543367, norm of subgrad 1148.928433 dualbound = 3846177.543367, lowerbound=1318868.543367, norm of subgrad 34.517606 stepsize= 1.000000 +dualbound = 3846267.094943, lowerbound=1315874.094943, norm of subgrad 1147.607117 dualbound = 3846267.094943, lowerbound=1315874.094943, norm of subgrad 34.893432 stepsize= 1.000000 +dualbound = 3846309.710482, lowerbound=1317016.710482, norm of subgrad 1148.126174 dualbound = 3846309.710482, lowerbound=1317016.710482, norm of subgrad 34.922994 stepsize= 1.000000 +dualbound = 3846362.479659, lowerbound=1320992.479659, norm of subgrad 1149.837588 dualbound = 3846362.479659, lowerbound=1320992.479659, norm of subgrad 34.449516 stepsize= 1.000000 +dualbound = 3846439.564687, lowerbound=1316962.564687, norm of subgrad 1148.067317 dualbound = 3846439.564687, lowerbound=1316962.564687, norm of subgrad 34.250329 stepsize= 1.000000 +dualbound = 3846473.567306, lowerbound=1317666.567306, norm of subgrad 1148.400874 dualbound = 3846473.567306, lowerbound=1317666.567306, norm of subgrad 34.525391 stepsize= 1.000000 +dualbound = 3846539.635908, lowerbound=1319462.635908, norm of subgrad 1149.165626 dualbound = 3846539.635908, lowerbound=1319462.635908, norm of subgrad 34.424825 stepsize= 1.000000 +dualbound = 3846602.017294, lowerbound=1321996.017294, norm of subgrad 1150.268237 dualbound = 3846602.017294, lowerbound=1321996.017294, norm of subgrad 34.400311 stepsize= 1.000000 +dualbound = 3846640.987862, lowerbound=1315996.987862, norm of subgrad 1147.681571 dualbound = 3846640.987862, lowerbound=1315996.987862, norm of subgrad 34.856428 stepsize= 1.000000 +dualbound = 3846678.047407, lowerbound=1316956.047407, norm of subgrad 1148.074060 dualbound = 3846678.047407, lowerbound=1316956.047407, norm of subgrad 33.986167 stepsize= 1.000000 +dualbound = 3846765.966590, lowerbound=1320173.966590, norm of subgrad 1149.471168 dualbound = 3846765.966590, lowerbound=1320173.966590, norm of subgrad 34.610969 stepsize= 1.000000 +dualbound = 3846795.549895, lowerbound=1314334.549895, norm of subgrad 1146.909129 dualbound = 3846795.549895, lowerbound=1314334.549895, norm of subgrad 33.099597 stepsize= 1.000000 +dualbound = 3846884.874383, lowerbound=1320003.874384, norm of subgrad 1149.372383 dualbound = 3846884.874383, lowerbound=1320003.874384, norm of subgrad 33.798291 stepsize= 1.000000 +dualbound = 3846918.259537, lowerbound=1316481.259537, norm of subgrad 1147.836774 dualbound = 3846918.259537, lowerbound=1316481.259537, norm of subgrad 32.884421 stepsize= 1.000000 +dualbound = 3846969.906292, lowerbound=1318020.906292, norm of subgrad 1148.505945 dualbound = 3846969.906292, lowerbound=1318020.906292, norm of subgrad 33.115657 stepsize= 1.000000 +dualbound = 3847012.728910, lowerbound=1315759.728910, norm of subgrad 1147.574280 dualbound = 3847012.728910, lowerbound=1315759.728910, norm of subgrad 34.782504 stepsize= 1.000000 +dualbound = 3847057.647815, lowerbound=1324218.647815, norm of subgrad 1151.239614 dualbound = 3847057.647815, lowerbound=1324218.647815, norm of subgrad 34.335389 stepsize= 1.000000 +dualbound = 3847083.383466, lowerbound=1320909.383466, norm of subgrad 1149.794496 dualbound = 3847083.383466, lowerbound=1320909.383466, norm of subgrad 33.819161 stepsize= 1.000000 +dualbound = 3847161.527624, lowerbound=1324215.527624, norm of subgrad 1151.238258 dualbound = 3847161.527624, lowerbound=1324215.527624, norm of subgrad 34.815861 stepsize= 1.000000 +dualbound = 3847212.248058, lowerbound=1317996.248058, norm of subgrad 1148.534391 dualbound = 3847212.248058, lowerbound=1317996.248058, norm of subgrad 34.434292 stepsize= 1.000000 +dualbound = 3847276.237043, lowerbound=1318542.237043, norm of subgrad 1148.783373 dualbound = 3847276.237043, lowerbound=1318542.237043, norm of subgrad 34.999843 stepsize= 1.000000 +dualbound = 3847315.143267, lowerbound=1320917.143267, norm of subgrad 1149.830919 dualbound = 3847315.143267, lowerbound=1320917.143267, norm of subgrad 35.112764 stepsize= 1.000000 +dualbound = 3847342.239975, lowerbound=1316619.239975, norm of subgrad 1147.940870 dualbound = 3847342.239975, lowerbound=1316619.239975, norm of subgrad 34.294266 stepsize= 1.000000 +dualbound = 3847417.246762, lowerbound=1318011.246762, norm of subgrad 1148.539615 dualbound = 3847417.246762, lowerbound=1318011.246762, norm of subgrad 34.742003 stepsize= 1.000000 +dualbound = 3847482.932673, lowerbound=1322168.932673, norm of subgrad 1150.354699 dualbound = 3847482.932673, lowerbound=1322168.932673, norm of subgrad 34.823640 stepsize= 1.000000 +dualbound = 3847512.993334, lowerbound=1316182.993334, norm of subgrad 1147.756069 dualbound = 3847512.993334, lowerbound=1316182.993334, norm of subgrad 34.511747 stepsize= 1.000000 +dualbound = 3847590.223354, lowerbound=1318817.223354, norm of subgrad 1148.890431 dualbound = 3847590.223354, lowerbound=1318817.223354, norm of subgrad 34.773985 stepsize= 1.000000 +dualbound = 3847633.261585, lowerbound=1315203.261585, norm of subgrad 1147.321342 dualbound = 3847633.261585, lowerbound=1315203.261585, norm of subgrad 34.438906 stepsize= 1.000000 +dualbound = 3847700.456155, lowerbound=1323861.456155, norm of subgrad 1151.050588 dualbound = 3847700.456155, lowerbound=1323861.456155, norm of subgrad 33.514095 stepsize= 1.000000 +dualbound = 3847781.582079, lowerbound=1314700.582079, norm of subgrad 1147.055178 dualbound = 3847781.582079, lowerbound=1314700.582079, norm of subgrad 33.408471 stepsize= 1.000000 +dualbound = 3847800.127969, lowerbound=1325263.127969, norm of subgrad 1151.672752 dualbound = 3847800.127969, lowerbound=1325263.127969, norm of subgrad 33.249750 stepsize= 1.000000 +dualbound = 3847872.464862, lowerbound=1313552.464862, norm of subgrad 1146.577283 dualbound = 3847872.464862, lowerbound=1313552.464862, norm of subgrad 34.049037 stepsize= 1.000000 +dualbound = 3847897.990537, lowerbound=1320840.990537, norm of subgrad 1149.753448 dualbound = 3847897.990537, lowerbound=1320840.990537, norm of subgrad 33.429413 stepsize= 1.000000 +dualbound = 3847960.843324, lowerbound=1319853.843324, norm of subgrad 1149.339742 dualbound = 3847960.843324, lowerbound=1319853.843324, norm of subgrad 34.508735 stepsize= 1.000000 +dualbound = 3848026.518546, lowerbound=1322849.518546, norm of subgrad 1150.622666 dualbound = 3848026.518546, lowerbound=1322849.518546, norm of subgrad 33.892111 stepsize= 1.000000 +dualbound = 3848059.421671, lowerbound=1316088.421671, norm of subgrad 1147.694830 dualbound = 3848059.421671, lowerbound=1316088.421671, norm of subgrad 33.880719 stepsize= 1.000000 +dualbound = 3848146.087784, lowerbound=1321546.087784, norm of subgrad 1150.063515 dualbound = 3848146.087784, lowerbound=1321546.087784, norm of subgrad 34.448020 stepsize= 1.000000 +dualbound = 3848161.855459, lowerbound=1317740.855459, norm of subgrad 1148.423639 dualbound = 3848161.855459, lowerbound=1317740.855459, norm of subgrad 33.937703 stepsize= 1.000000 +dualbound = 3848219.457458, lowerbound=1317053.457458, norm of subgrad 1148.128676 dualbound = 3848219.457458, lowerbound=1317053.457458, norm of subgrad 34.692968 stepsize= 1.000000 +dualbound = 3848270.454968, lowerbound=1321512.454968, norm of subgrad 1150.054110 dualbound = 3848270.454968, lowerbound=1321512.454968, norm of subgrad 34.102749 stepsize= 1.000000 +dualbound = 3848338.236514, lowerbound=1321481.236514, norm of subgrad 1150.043580 dualbound = 3848338.236514, lowerbound=1321481.236514, norm of subgrad 34.449696 stepsize= 1.000000 +dualbound = 3848385.840412, lowerbound=1318725.840412, norm of subgrad 1148.848485 dualbound = 3848385.840412, lowerbound=1318725.840412, norm of subgrad 34.272495 stepsize= 1.000000 +dualbound = 3848429.163220, lowerbound=1320361.163220, norm of subgrad 1149.573905 dualbound = 3848429.163220, lowerbound=1320361.163220, norm of subgrad 34.674527 stepsize= 1.000000 +dualbound = 3848477.447119, lowerbound=1318956.447119, norm of subgrad 1148.949280 dualbound = 3848477.447119, lowerbound=1318956.447119, norm of subgrad 34.296995 stepsize= 1.000000 +dualbound = 3848545.513825, lowerbound=1318887.513825, norm of subgrad 1148.927985 dualbound = 3848545.513825, lowerbound=1318887.513825, norm of subgrad 34.872148 stepsize= 1.000000 +dualbound = 3848585.347985, lowerbound=1318710.347985, norm of subgrad 1148.839131 dualbound = 3848585.347985, lowerbound=1318710.347985, norm of subgrad 34.071016 stepsize= 1.000000 +dualbound = 3848653.697189, lowerbound=1319494.697189, norm of subgrad 1149.203506 dualbound = 3848653.697189, lowerbound=1319494.697189, norm of subgrad 35.246974 stepsize= 1.000000 +dualbound = 3848686.118417, lowerbound=1317747.118417, norm of subgrad 1148.448135 dualbound = 3848686.118417, lowerbound=1317747.118417, norm of subgrad 34.905891 stepsize= 1.000000 +dualbound = 3848738.610168, lowerbound=1323006.610168, norm of subgrad 1150.716129 dualbound = 3848738.610168, lowerbound=1323006.610168, norm of subgrad 34.546950 stepsize= 1.000000 +dualbound = 3848810.127300, lowerbound=1318120.127300, norm of subgrad 1148.598332 dualbound = 3848810.127300, lowerbound=1318120.127300, norm of subgrad 35.064471 stepsize= 1.000000 +dualbound = 3848856.948621, lowerbound=1319528.948621, norm of subgrad 1149.211011 dualbound = 3848856.948621, lowerbound=1319528.948621, norm of subgrad 34.696128 stepsize= 1.000000 +dualbound = 3848902.068436, lowerbound=1318928.068436, norm of subgrad 1148.927356 dualbound = 3848902.068436, lowerbound=1318928.068436, norm of subgrad 33.928157 stepsize= 1.000000 +dualbound = 3848986.576776, lowerbound=1316096.576776, norm of subgrad 1147.675292 dualbound = 3848986.576776, lowerbound=1316096.576776, norm of subgrad 33.860129 stepsize= 1.000000 +dualbound = 3849032.395679, lowerbound=1321098.395679, norm of subgrad 1149.884079 dualbound = 3849032.395679, lowerbound=1321098.395679, norm of subgrad 34.363046 stepsize= 1.000000 +dualbound = 3849073.710369, lowerbound=1320683.710369, norm of subgrad 1149.678525 dualbound = 3849073.710369, lowerbound=1320683.710369, norm of subgrad 33.441212 stepsize= 1.000000 +dualbound = 3849137.764263, lowerbound=1314915.764263, norm of subgrad 1147.144178 dualbound = 3849137.764263, lowerbound=1314915.764263, norm of subgrad 32.985662 stepsize= 1.000000 +dualbound = 3849205.507283, lowerbound=1314296.507283, norm of subgrad 1146.883825 dualbound = 3849205.507283, lowerbound=1314296.507283, norm of subgrad 33.372789 stepsize= 1.000000 +dualbound = 3849238.785118, lowerbound=1320545.785118, norm of subgrad 1149.640285 dualbound = 3849238.785118, lowerbound=1320545.785118, norm of subgrad 34.062851 stepsize= 1.000000 +dualbound = 3849282.277591, lowerbound=1319704.277591, norm of subgrad 1149.251616 dualbound = 3849282.277591, lowerbound=1319704.277591, norm of subgrad 33.443870 stepsize= 1.000000 +dualbound = 3849337.476627, lowerbound=1319206.476627, norm of subgrad 1149.045898 dualbound = 3849337.476627, lowerbound=1319206.476627, norm of subgrad 33.988219 stepsize= 1.000000 +dualbound = 3849383.405184, lowerbound=1317368.405184, norm of subgrad 1148.284549 dualbound = 3849383.405184, lowerbound=1317368.405184, norm of subgrad 35.141550 stepsize= 1.000000 +dualbound = 3849416.394323, lowerbound=1319506.394323, norm of subgrad 1149.196848 dualbound = 3849416.394323, lowerbound=1319506.394323, norm of subgrad 34.350970 stepsize= 1.000000 +dualbound = 3849490.024204, lowerbound=1327630.024204, norm of subgrad 1152.700318 dualbound = 3849490.024204, lowerbound=1327630.024204, norm of subgrad 34.082692 stepsize= 1.000000 +dualbound = 3849537.055855, lowerbound=1315606.055855, norm of subgrad 1147.508630 dualbound = 3849537.055855, lowerbound=1315606.055855, norm of subgrad 34.885981 stepsize= 1.000000 +dualbound = 3849585.383294, lowerbound=1316119.383294, norm of subgrad 1147.712675 dualbound = 3849585.383294, lowerbound=1316119.383294, norm of subgrad 34.253868 stepsize= 1.000000 +dualbound = 3849659.687468, lowerbound=1321070.687468, norm of subgrad 1149.887685 dualbound = 3849659.687468, lowerbound=1321070.687468, norm of subgrad 35.288868 stepsize= 1.000000 +dualbound = 3849695.481935, lowerbound=1318755.481935, norm of subgrad 1148.840930 dualbound = 3849695.481935, lowerbound=1318755.481935, norm of subgrad 33.403510 stepsize= 1.000000 +dualbound = 3849773.963789, lowerbound=1317783.963789, norm of subgrad 1148.421074 dualbound = 3849773.963789, lowerbound=1317783.963789, norm of subgrad 34.139154 stepsize= 1.000000 +dualbound = 3849804.954810, lowerbound=1320328.954810, norm of subgrad 1149.552502 dualbound = 3849804.954810, lowerbound=1320328.954810, norm of subgrad 34.248956 stepsize= 1.000000 +dualbound = 3849869.275811, lowerbound=1322014.275811, norm of subgrad 1150.269654 dualbound = 3849869.275811, lowerbound=1322014.275811, norm of subgrad 34.209955 stepsize= 1.000000 +dualbound = 3849933.027720, lowerbound=1315504.027720, norm of subgrad 1147.425391 dualbound = 3849933.027720, lowerbound=1315504.027720, norm of subgrad 33.834183 stepsize= 1.000000 +dualbound = 3849974.886109, lowerbound=1319331.886109, norm of subgrad 1149.110041 dualbound = 3849974.886109, lowerbound=1319331.886109, norm of subgrad 34.115369 stepsize= 1.000000 +dualbound = 3850006.753387, lowerbound=1318048.753387, norm of subgrad 1148.568567 dualbound = 3850006.753387, lowerbound=1318048.753387, norm of subgrad 34.537911 stepsize= 1.000000 +dualbound = 3850056.248888, lowerbound=1319361.248888, norm of subgrad 1149.135000 dualbound = 3850056.248888, lowerbound=1319361.248888, norm of subgrad 34.633734 stepsize= 1.000000 +dualbound = 3850098.781729, lowerbound=1313800.781729, norm of subgrad 1146.695592 dualbound = 3850098.781729, lowerbound=1313800.781729, norm of subgrad 33.948974 stepsize= 1.000000 +dualbound = 3850169.120462, lowerbound=1322922.120462, norm of subgrad 1150.681590 dualbound = 3850169.120462, lowerbound=1322922.120462, norm of subgrad 34.876048 stepsize= 1.000000 +dualbound = 3850217.883721, lowerbound=1319355.883721, norm of subgrad 1149.147024 dualbound = 3850217.883721, lowerbound=1319355.883721, norm of subgrad 35.096485 stepsize= 1.000000 +dualbound = 3850273.305611, lowerbound=1318733.305611, norm of subgrad 1148.825185 dualbound = 3850273.305611, lowerbound=1318733.305611, norm of subgrad 33.487638 stepsize= 1.000000 +dualbound = 3850333.320473, lowerbound=1316656.320473, norm of subgrad 1147.955714 dualbound = 3850333.320473, lowerbound=1316656.320473, norm of subgrad 34.727725 stepsize= 1.000000 +dualbound = 3850378.288246, lowerbound=1314062.288246, norm of subgrad 1146.809613 dualbound = 3850378.288246, lowerbound=1314062.288246, norm of subgrad 33.984817 stepsize= 1.000000 +dualbound = 3850428.057141, lowerbound=1323060.057141, norm of subgrad 1150.733704 dualbound = 3850428.057141, lowerbound=1323060.057141, norm of subgrad 34.318638 stepsize= 1.000000 +dualbound = 3850484.294821, lowerbound=1322127.294821, norm of subgrad 1150.306174 dualbound = 3850484.294821, lowerbound=1322127.294821, norm of subgrad 33.663596 stepsize= 1.000000 +dualbound = 3850545.185056, lowerbound=1312032.185056, norm of subgrad 1145.905400 dualbound = 3850545.185056, lowerbound=1312032.185056, norm of subgrad 33.584077 stepsize= 1.000000 +dualbound = 3850610.745171, lowerbound=1321663.745171, norm of subgrad 1150.120318 dualbound = 3850610.745171, lowerbound=1321663.745171, norm of subgrad 34.330163 stepsize= 1.000000 +dualbound = 3850649.447764, lowerbound=1311017.447764, norm of subgrad 1145.464730 dualbound = 3850649.447764, lowerbound=1311017.447764, norm of subgrad 33.327205 stepsize= 1.000000 +dualbound = 3850705.662924, lowerbound=1322166.662924, norm of subgrad 1150.346758 dualbound = 3850705.662924, lowerbound=1322166.662924, norm of subgrad 34.455989 stepsize= 1.000000 +dualbound = 3850742.744508, lowerbound=1316967.744508, norm of subgrad 1148.083074 dualbound = 3850742.744508, lowerbound=1316967.744508, norm of subgrad 34.118640 stepsize= 1.000000 +dualbound = 3850808.323941, lowerbound=1328715.323941, norm of subgrad 1153.170119 dualbound = 3850808.323941, lowerbound=1328715.323941, norm of subgrad 33.934929 stepsize= 1.000000 +dualbound = 3850869.774778, lowerbound=1318463.774778, norm of subgrad 1148.722671 dualbound = 3850869.774778, lowerbound=1318463.774778, norm of subgrad 34.080065 stepsize= 1.000000 +dualbound = 3850888.883174, lowerbound=1321125.883174, norm of subgrad 1149.907337 dualbound = 3850888.883174, lowerbound=1321125.883174, norm of subgrad 34.352706 stepsize= 1.000000 +dualbound = 3850920.681415, lowerbound=1316891.681415, norm of subgrad 1148.082611 dualbound = 3850920.681415, lowerbound=1316891.681415, norm of subgrad 35.125464 stepsize= 1.000000 +dualbound = 3850989.490543, lowerbound=1322054.490543, norm of subgrad 1150.327123 dualbound = 3850989.490543, lowerbound=1322054.490543, norm of subgrad 35.592262 stepsize= 1.000000 +dualbound = 3851038.641065, lowerbound=1316673.641065, norm of subgrad 1147.944093 dualbound = 3851038.641065, lowerbound=1316673.641065, norm of subgrad 33.928609 stepsize= 1.000000 +dualbound = 3851122.290956, lowerbound=1322332.290956, norm of subgrad 1150.398753 dualbound = 3851122.290956, lowerbound=1322332.290956, norm of subgrad 34.185522 stepsize= 1.000000 +dualbound = 3851174.443982, lowerbound=1318704.443982, norm of subgrad 1148.825245 dualbound = 3851174.443982, lowerbound=1318704.443982, norm of subgrad 33.869648 stepsize= 1.000000 +dualbound = 3851240.868160, lowerbound=1321851.868160, norm of subgrad 1150.185145 dualbound = 3851240.868160, lowerbound=1321851.868160, norm of subgrad 33.770167 stepsize= 1.000000 +dualbound = 3851279.971339, lowerbound=1314931.971339, norm of subgrad 1147.196570 dualbound = 3851279.971339, lowerbound=1314931.971339, norm of subgrad 34.162892 stepsize= 1.000000 +dualbound = 3851330.132033, lowerbound=1317157.132033, norm of subgrad 1148.149874 dualbound = 3851330.132033, lowerbound=1317157.132033, norm of subgrad 33.781070 stepsize= 1.000000 +dualbound = 3851395.032123, lowerbound=1318105.032123, norm of subgrad 1148.542133 dualbound = 3851395.032123, lowerbound=1318105.032123, norm of subgrad 33.300151 stepsize= 1.000000 +dualbound = 3851444.316796, lowerbound=1316625.316796, norm of subgrad 1147.906493 dualbound = 3851444.316796, lowerbound=1316625.316796, norm of subgrad 33.365921 stepsize= 1.000000 +dualbound = 3851508.349617, lowerbound=1323034.349617, norm of subgrad 1150.700808 dualbound = 3851508.349617, lowerbound=1323034.349617, norm of subgrad 33.793976 stepsize= 1.000000 +dualbound = 3851537.812202, lowerbound=1317740.812202, norm of subgrad 1148.409688 dualbound = 3851537.812202, lowerbound=1317740.812202, norm of subgrad 33.666936 stepsize= 1.000000 +dualbound = 3851603.383684, lowerbound=1315544.383684, norm of subgrad 1147.442976 dualbound = 3851603.383684, lowerbound=1315544.383684, norm of subgrad 33.861061 stepsize= 1.000000 +dualbound = 3851660.658304, lowerbound=1323148.658304, norm of subgrad 1150.803049 dualbound = 3851660.658304, lowerbound=1323148.658304, norm of subgrad 35.443965 stepsize= 1.000000 +dualbound = 3851668.307866, lowerbound=1319640.307866, norm of subgrad 1149.269467 dualbound = 3851668.307866, lowerbound=1319640.307866, norm of subgrad 34.462292 stepsize= 1.000000 +dualbound = 3851755.616732, lowerbound=1321579.616732, norm of subgrad 1150.090699 dualbound = 3851755.616732, lowerbound=1321579.616732, norm of subgrad 34.875620 stepsize= 1.000000 +dualbound = 3851787.908509, lowerbound=1319299.908509, norm of subgrad 1149.091340 dualbound = 3851787.908509, lowerbound=1319299.908509, norm of subgrad 33.812598 stepsize= 1.000000 +dualbound = 3851867.071351, lowerbound=1328257.071351, norm of subgrad 1152.966206 dualbound = 3851867.071351, lowerbound=1328257.071351, norm of subgrad 33.958251 stepsize= 1.000000 +dualbound = 3851908.188752, lowerbound=1316755.188752, norm of subgrad 1147.985274 dualbound = 3851908.188752, lowerbound=1316755.188752, norm of subgrad 34.001726 stepsize= 1.000000 +dualbound = 3851962.685549, lowerbound=1317042.685549, norm of subgrad 1148.119630 dualbound = 3851962.685549, lowerbound=1317042.685549, norm of subgrad 34.503577 stepsize= 1.000000 +dualbound = 3852007.089780, lowerbound=1325898.089780, norm of subgrad 1151.931895 dualbound = 3852007.089780, lowerbound=1325898.089780, norm of subgrad 33.066663 stepsize= 1.000000 +dualbound = 3852082.873653, lowerbound=1317589.873653, norm of subgrad 1148.324812 dualbound = 3852082.873653, lowerbound=1317589.873653, norm of subgrad 33.701393 stepsize= 1.000000 +dualbound = 3852109.890411, lowerbound=1314484.890411, norm of subgrad 1147.010850 dualbound = 3852109.890411, lowerbound=1314484.890411, norm of subgrad 34.293101 stepsize= 1.000000 +dualbound = 3852165.139800, lowerbound=1318830.139800, norm of subgrad 1148.895617 dualbound = 3852165.139800, lowerbound=1318830.139800, norm of subgrad 34.441971 stepsize= 1.000000 +dualbound = 3852194.799949, lowerbound=1314592.799949, norm of subgrad 1147.078376 dualbound = 3852194.799949, lowerbound=1314592.799949, norm of subgrad 35.009429 stepsize= 1.000000 +dualbound = 3852258.779075, lowerbound=1322442.779075, norm of subgrad 1150.493711 dualbound = 3852258.779075, lowerbound=1322442.779075, norm of subgrad 35.453901 stepsize= 1.000000 +dualbound = 3852309.005207, lowerbound=1320539.005207, norm of subgrad 1149.648644 dualbound = 3852309.005207, lowerbound=1320539.005207, norm of subgrad 34.687550 stepsize= 1.000000 +dualbound = 3852365.939983, lowerbound=1319623.939983, norm of subgrad 1149.234502 dualbound = 3852365.939983, lowerbound=1319623.939983, norm of subgrad 34.248135 stepsize= 1.000000 +dualbound = 3852437.040665, lowerbound=1321141.040665, norm of subgrad 1149.896535 dualbound = 3852437.040665, lowerbound=1321141.040665, norm of subgrad 34.526811 stepsize= 1.000000 +dualbound = 3852498.580336, lowerbound=1313211.580336, norm of subgrad 1146.454352 dualbound = 3852498.580336, lowerbound=1313211.580336, norm of subgrad 34.749672 stepsize= 1.000000 +dualbound = 3852506.664372, lowerbound=1319390.664372, norm of subgrad 1149.130830 dualbound = 3852506.664372, lowerbound=1319390.664372, norm of subgrad 33.452713 stepsize= 1.000000 +dualbound = 3852585.011064, lowerbound=1318743.011064, norm of subgrad 1148.847253 dualbound = 3852585.011064, lowerbound=1318743.011064, norm of subgrad 34.428864 stepsize= 1.000000 +dualbound = 3852649.486149, lowerbound=1320201.486149, norm of subgrad 1149.492273 dualbound = 3852649.486149, lowerbound=1320201.486149, norm of subgrad 34.575643 stepsize= 1.000000 +dualbound = 3852697.721053, lowerbound=1318701.721053, norm of subgrad 1148.841904 dualbound = 3852697.721053, lowerbound=1318701.721053, norm of subgrad 34.412714 stepsize= 1.000000 +dualbound = 3852729.768392, lowerbound=1321074.768392, norm of subgrad 1149.889459 dualbound = 3852729.768392, lowerbound=1321074.768392, norm of subgrad 34.684973 stepsize= 1.000000 +dualbound = 3852787.481639, lowerbound=1321566.481639, norm of subgrad 1150.107161 dualbound = 3852787.481639, lowerbound=1321566.481639, norm of subgrad 35.181149 stepsize= 1.000000 +dualbound = 3852840.633360, lowerbound=1316270.633360, norm of subgrad 1147.777258 dualbound = 3852840.633360, lowerbound=1316270.633360, norm of subgrad 34.280486 stepsize= 1.000000 +dualbound = 3852898.056825, lowerbound=1322601.056825, norm of subgrad 1150.541202 dualbound = 3852898.056825, lowerbound=1322601.056825, norm of subgrad 34.661556 stepsize= 1.000000 +dualbound = 3852948.132007, lowerbound=1315825.132007, norm of subgrad 1147.580991 dualbound = 3852948.132007, lowerbound=1315825.132007, norm of subgrad 34.162482 stepsize= 1.000000 +dualbound = 3853010.358518, lowerbound=1321987.358518, norm of subgrad 1150.257953 dualbound = 3853010.358518, lowerbound=1321987.358518, norm of subgrad 34.179329 stepsize= 1.000000 +dualbound = 3853033.674958, lowerbound=1311507.674958, norm of subgrad 1145.734993 dualbound = 3853033.674958, lowerbound=1311507.674958, norm of subgrad 34.990233 stepsize= 1.000000 +dualbound = 3853086.844953, lowerbound=1323306.844953, norm of subgrad 1150.840495 dualbound = 3853086.844953, lowerbound=1323306.844953, norm of subgrad 34.353602 stepsize= 1.000000 +dualbound = 3853150.404146, lowerbound=1318258.404146, norm of subgrad 1148.647206 dualbound = 3853150.404146, lowerbound=1318258.404146, norm of subgrad 34.576859 stepsize= 1.000000 +dualbound = 3853199.799718, lowerbound=1320979.799718, norm of subgrad 1149.833814 dualbound = 3853199.799718, lowerbound=1320979.799718, norm of subgrad 34.458607 stepsize= 1.000000 +dualbound = 3853279.506158, lowerbound=1318152.506158, norm of subgrad 1148.593708 dualbound = 3853279.506158, lowerbound=1318152.506158, norm of subgrad 34.564526 stepsize= 1.000000 +dualbound = 3853302.421723, lowerbound=1322339.421723, norm of subgrad 1150.417499 dualbound = 3853302.421723, lowerbound=1322339.421723, norm of subgrad 33.821821 stepsize= 1.000000 +dualbound = 3853373.223690, lowerbound=1315308.223690, norm of subgrad 1147.384950 dualbound = 3853373.223690, lowerbound=1315308.223690, norm of subgrad 35.423184 stepsize= 1.000000 +dualbound = 3853406.889700, lowerbound=1315783.889700, norm of subgrad 1147.580886 dualbound = 3853406.889700, lowerbound=1315783.889700, norm of subgrad 34.520516 stepsize= 1.000000 +dualbound = 3853487.282828, lowerbound=1315922.282828, norm of subgrad 1147.624626 dualbound = 3853487.282828, lowerbound=1315922.282828, norm of subgrad 34.646690 stepsize= 1.000000 +dualbound = 3853531.443710, lowerbound=1323293.443710, norm of subgrad 1150.842927 dualbound = 3853531.443710, lowerbound=1323293.443710, norm of subgrad 34.498708 stepsize= 1.000000 +dualbound = 3853588.984213, lowerbound=1318434.984213, norm of subgrad 1148.729291 dualbound = 3853588.984213, lowerbound=1318434.984213, norm of subgrad 34.663244 stepsize= 1.000000 +dualbound = 3853626.557115, lowerbound=1318735.557115, norm of subgrad 1148.864464 dualbound = 3853626.557115, lowerbound=1318735.557115, norm of subgrad 34.519167 stepsize= 1.000000 +dualbound = 3853719.805101, lowerbound=1318402.805101, norm of subgrad 1148.668710 dualbound = 3853719.805101, lowerbound=1318402.805101, norm of subgrad 33.619161 stepsize= 1.000000 +dualbound = 3853750.500029, lowerbound=1324659.500029, norm of subgrad 1151.397629 dualbound = 3853750.500029, lowerbound=1324659.500029, norm of subgrad 32.980220 stepsize= 1.000000 +dualbound = 3853816.285351, lowerbound=1315761.285351, norm of subgrad 1147.548816 dualbound = 3853816.285351, lowerbound=1315761.285351, norm of subgrad 34.245953 stepsize= 1.000000 +dualbound = 3853850.693809, lowerbound=1321202.693809, norm of subgrad 1149.925951 dualbound = 3853850.693809, lowerbound=1321202.693809, norm of subgrad 34.079443 stepsize= 1.000000 +dualbound = 3853889.771028, lowerbound=1316046.771028, norm of subgrad 1147.668406 dualbound = 3853889.771028, lowerbound=1316046.771028, norm of subgrad 33.690907 stepsize= 1.000000 +dualbound = 3853938.123395, lowerbound=1323887.123395, norm of subgrad 1151.088669 dualbound = 3853938.123395, lowerbound=1323887.123395, norm of subgrad 34.151901 stepsize= 1.000000 +dualbound = 3854005.522718, lowerbound=1316062.522718, norm of subgrad 1147.676576 dualbound = 3854005.522718, lowerbound=1316062.522718, norm of subgrad 34.152589 stepsize= 1.000000 +dualbound = 3854060.632368, lowerbound=1330953.632368, norm of subgrad 1154.125917 dualbound = 3854060.632368, lowerbound=1330953.632368, norm of subgrad 33.288281 stepsize= 1.000000 +dualbound = 3854126.165409, lowerbound=1316885.165409, norm of subgrad 1148.025769 dualbound = 3854126.165409, lowerbound=1316885.165409, norm of subgrad 33.816165 stepsize= 1.000000 +dualbound = 3854158.213341, lowerbound=1322960.213341, norm of subgrad 1150.676416 dualbound = 3854158.213341, lowerbound=1322960.213341, norm of subgrad 33.586425 stepsize= 1.000000 +dualbound = 3854192.674825, lowerbound=1316233.674825, norm of subgrad 1147.758108 dualbound = 3854192.674825, lowerbound=1316233.674825, norm of subgrad 33.903709 stepsize= 1.000000 +dualbound = 3854247.217853, lowerbound=1319655.217853, norm of subgrad 1149.247675 dualbound = 3854247.217853, lowerbound=1319655.217853, norm of subgrad 34.198582 stepsize= 1.000000 +dualbound = 3854316.157240, lowerbound=1320197.157240, norm of subgrad 1149.468641 dualbound = 3854316.157240, lowerbound=1320197.157240, norm of subgrad 33.910756 stepsize= 1.000000 +dualbound = 3854359.493754, lowerbound=1320644.493754, norm of subgrad 1149.675821 dualbound = 3854359.493754, lowerbound=1320644.493754, norm of subgrad 33.960809 stepsize= 1.000000 +dualbound = 3854397.587903, lowerbound=1319528.587903, norm of subgrad 1149.203023 dualbound = 3854397.587903, lowerbound=1319528.587903, norm of subgrad 34.308806 stepsize= 1.000000 +dualbound = 3854459.346275, lowerbound=1324861.346275, norm of subgrad 1151.503516 dualbound = 3854459.346275, lowerbound=1324861.346275, norm of subgrad 34.069904 stepsize= 1.000000 +dualbound = 3854504.876177, lowerbound=1321690.876177, norm of subgrad 1150.114288 dualbound = 3854504.876177, lowerbound=1321690.876177, norm of subgrad 33.429477 stepsize= 1.000000 +dualbound = 3854567.194926, lowerbound=1318733.194926, norm of subgrad 1148.824702 dualbound = 3854567.194926, lowerbound=1318733.194926, norm of subgrad 33.575568 stepsize= 1.000000 +dualbound = 3854615.315746, lowerbound=1322346.315746, norm of subgrad 1150.422668 dualbound = 3854615.315746, lowerbound=1322346.315746, norm of subgrad 34.265446 stepsize= 1.000000 +dualbound = 3854647.179476, lowerbound=1325952.179476, norm of subgrad 1151.981415 dualbound = 3854647.179476, lowerbound=1325952.179476, norm of subgrad 33.776674 stepsize= 1.000000 +dualbound = 3854711.393651, lowerbound=1316835.393651, norm of subgrad 1148.042854 dualbound = 3854711.393651, lowerbound=1316835.393651, norm of subgrad 35.088662 stepsize= 1.000000 +dualbound = 3854738.695318, lowerbound=1318750.695318, norm of subgrad 1148.838847 dualbound = 3854738.695318, lowerbound=1318750.695318, norm of subgrad 33.276143 stepsize= 1.000000 +dualbound = 3854814.381050, lowerbound=1315800.381050, norm of subgrad 1147.538836 dualbound = 3854814.381050, lowerbound=1315800.381050, norm of subgrad 33.476645 stepsize= 1.000000 +dualbound = 3854895.201607, lowerbound=1319516.201607, norm of subgrad 1149.167177 dualbound = 3854895.201607, lowerbound=1319516.201607, norm of subgrad 33.909004 stepsize= 1.000000 +dualbound = 3854938.441072, lowerbound=1321881.441072, norm of subgrad 1150.186698 dualbound = 3854938.441072, lowerbound=1321881.441072, norm of subgrad 33.033914 stepsize= 1.000000 +dualbound = 3854999.792742, lowerbound=1321140.792742, norm of subgrad 1149.885122 dualbound = 3854999.792742, lowerbound=1321140.792742, norm of subgrad 34.005171 stepsize= 1.000000 +dualbound = 3855038.156771, lowerbound=1318875.156771, norm of subgrad 1148.900412 dualbound = 3855038.156771, lowerbound=1318875.156771, norm of subgrad 33.695163 stepsize= 1.000000 +dualbound = 3855102.594684, lowerbound=1321064.594684, norm of subgrad 1149.875904 dualbound = 3855102.594684, lowerbound=1321064.594684, norm of subgrad 34.848786 stepsize= 1.000000 +dualbound = 3855121.464506, lowerbound=1321302.464506, norm of subgrad 1149.961506 dualbound = 3855121.464506, lowerbound=1321302.464506, norm of subgrad 33.583773 stepsize= 1.000000 +dualbound = 3855203.359293, lowerbound=1320098.359293, norm of subgrad 1149.431320 dualbound = 3855203.359293, lowerbound=1320098.359293, norm of subgrad 34.291322 stepsize= 1.000000 +dualbound = 3855237.128159, lowerbound=1319485.128159, norm of subgrad 1149.179763 dualbound = 3855237.128159, lowerbound=1319485.128159, norm of subgrad 34.099397 stepsize= 1.000000 +dualbound = 3855291.226600, lowerbound=1319401.226600, norm of subgrad 1149.158921 dualbound = 3855291.226600, lowerbound=1319401.226600, norm of subgrad 34.915590 stepsize= 1.000000 +dualbound = 3855327.082854, lowerbound=1322195.082854, norm of subgrad 1150.376061 dualbound = 3855327.082854, lowerbound=1322195.082854, norm of subgrad 34.725441 stepsize= 1.000000 +dualbound = 3855411.885655, lowerbound=1317446.885655, norm of subgrad 1148.266905 dualbound = 3855411.885655, lowerbound=1317446.885655, norm of subgrad 33.982390 stepsize= 1.000000 +dualbound = 3855459.024374, lowerbound=1318521.024374, norm of subgrad 1148.772834 dualbound = 3855459.024374, lowerbound=1318521.024374, norm of subgrad 34.715108 stepsize= 1.000000 +dualbound = 3855508.849418, lowerbound=1311614.849418, norm of subgrad 1145.755580 dualbound = 3855508.849418, lowerbound=1311614.849418, norm of subgrad 34.508333 stepsize= 1.000000 +dualbound = 3855545.986644, lowerbound=1322739.986644, norm of subgrad 1150.582890 dualbound = 3855545.986644, lowerbound=1322739.986644, norm of subgrad 33.736289 stepsize= 1.000000 +dualbound = 3855614.573162, lowerbound=1321372.573162, norm of subgrad 1149.990684 dualbound = 3855614.573162, lowerbound=1321372.573162, norm of subgrad 34.272241 stepsize= 1.000000 +dualbound = 3855662.906472, lowerbound=1322115.906472, norm of subgrad 1150.309483 dualbound = 3855662.906472, lowerbound=1322115.906472, norm of subgrad 33.827996 stepsize= 1.000000 +dualbound = 3855722.363822, lowerbound=1320613.363822, norm of subgrad 1149.672720 dualbound = 3855722.363822, lowerbound=1320613.363822, norm of subgrad 34.546452 stepsize= 1.000000 +dualbound = 3855758.177473, lowerbound=1320875.177473, norm of subgrad 1149.780491 dualbound = 3855758.177473, lowerbound=1320875.177473, norm of subgrad 33.997259 stepsize= 1.000000 +dualbound = 3855816.646993, lowerbound=1323816.646993, norm of subgrad 1151.048933 dualbound = 3855816.646993, lowerbound=1323816.646993, norm of subgrad 33.992198 stepsize= 1.000000 +dualbound = 3855877.003831, lowerbound=1318160.003831, norm of subgrad 1148.610902 dualbound = 3855877.003831, lowerbound=1318160.003831, norm of subgrad 34.747041 stepsize= 1.000000 +dualbound = 3855907.264614, lowerbound=1316847.264614, norm of subgrad 1148.020585 dualbound = 3855907.264614, lowerbound=1316847.264614, norm of subgrad 33.678788 stepsize= 1.000000 +dualbound = 3855969.302828, lowerbound=1324001.302828, norm of subgrad 1151.120890 dualbound = 3855969.302828, lowerbound=1324001.302828, norm of subgrad 33.764452 stepsize= 1.000000 +dualbound = 3856055.778816, lowerbound=1321719.778816, norm of subgrad 1150.147286 dualbound = 3856055.778816, lowerbound=1321719.778816, norm of subgrad 34.719965 stepsize= 1.000000 +dualbound = 3856061.860467, lowerbound=1320150.860467, norm of subgrad 1149.475907 dualbound = 3856061.860467, lowerbound=1320150.860467, norm of subgrad 33.912854 stepsize= 1.000000 +dualbound = 3856138.710530, lowerbound=1314818.710530, norm of subgrad 1147.135437 dualbound = 3856138.710530, lowerbound=1314818.710530, norm of subgrad 34.319820 stepsize= 1.000000 +dualbound = 3856195.586284, lowerbound=1320646.586284, norm of subgrad 1149.705435 dualbound = 3856195.586284, lowerbound=1320646.586284, norm of subgrad 35.112331 stepsize= 1.000000 +dualbound = 3856242.918333, lowerbound=1316361.918333, norm of subgrad 1147.847080 dualbound = 3856242.918333, lowerbound=1316361.918333, norm of subgrad 35.189942 stepsize= 1.000000 +dualbound = 3856251.087746, lowerbound=1323967.087746, norm of subgrad 1151.153807 dualbound = 3856251.087746, lowerbound=1323967.087746, norm of subgrad 34.585682 stepsize= 1.000000 +dualbound = 3856339.914381, lowerbound=1315297.914381, norm of subgrad 1147.360412 dualbound = 3856339.914381, lowerbound=1315297.914381, norm of subgrad 35.026085 stepsize= 1.000000 +dualbound = 3856398.859513, lowerbound=1323448.859513, norm of subgrad 1150.900022 dualbound = 3856398.859513, lowerbound=1323448.859513, norm of subgrad 34.364882 stepsize= 1.000000 +dualbound = 3856442.477371, lowerbound=1315755.477371, norm of subgrad 1147.591599 dualbound = 3856442.477371, lowerbound=1315755.477371, norm of subgrad 35.420585 stepsize= 1.000000 +dualbound = 3856485.776609, lowerbound=1318769.776609, norm of subgrad 1148.867606 dualbound = 3856485.776609, lowerbound=1318769.776609, norm of subgrad 34.209637 stepsize= 1.000000 +dualbound = 3856555.110620, lowerbound=1319866.110620, norm of subgrad 1149.315932 dualbound = 3856555.110620, lowerbound=1319866.110620, norm of subgrad 33.620440 stepsize= 1.000000 +dualbound = 3856603.744316, lowerbound=1321177.744316, norm of subgrad 1149.931626 dualbound = 3856603.744316, lowerbound=1321177.744316, norm of subgrad 34.837246 stepsize= 1.000000 +dualbound = 3856644.778950, lowerbound=1314021.778950, norm of subgrad 1146.788463 dualbound = 3856644.778950, lowerbound=1314021.778950, norm of subgrad 33.808795 stepsize= 1.000000 +dualbound = 3856715.167715, lowerbound=1322471.167715, norm of subgrad 1150.474323 dualbound = 3856715.167715, lowerbound=1322471.167715, norm of subgrad 34.502011 stepsize= 1.000000 +dualbound = 3856748.314778, lowerbound=1320797.314778, norm of subgrad 1149.747935 dualbound = 3856748.314778, lowerbound=1320797.314778, norm of subgrad 34.002163 stepsize= 1.000000 +dualbound = 3856801.895736, lowerbound=1320831.895736, norm of subgrad 1149.749927 dualbound = 3856801.895736, lowerbound=1320831.895736, norm of subgrad 33.861201 stepsize= 1.000000 +dualbound = 3856864.933428, lowerbound=1324555.933428, norm of subgrad 1151.360905 dualbound = 3856864.933428, lowerbound=1324555.933428, norm of subgrad 33.749632 stepsize= 1.000000 +dualbound = 3856915.951057, lowerbound=1321425.951057, norm of subgrad 1150.039978 dualbound = 3856915.951057, lowerbound=1321425.951057, norm of subgrad 34.885780 stepsize= 1.000000 +dualbound = 3856945.903873, lowerbound=1317650.903873, norm of subgrad 1148.363577 dualbound = 3856945.903873, lowerbound=1317650.903873, norm of subgrad 33.435801 stepsize= 1.000000 +dualbound = 3857025.493562, lowerbound=1320004.493562, norm of subgrad 1149.394838 dualbound = 3857025.493562, lowerbound=1320004.493562, norm of subgrad 34.403338 stepsize= 1.000000 +dualbound = 3857050.616365, lowerbound=1325722.616365, norm of subgrad 1151.862238 dualbound = 3857050.616365, lowerbound=1325722.616365, norm of subgrad 33.001861 stepsize= 1.000000 +dualbound = 3857135.825665, lowerbound=1315135.825665, norm of subgrad 1147.260139 dualbound = 3857135.825665, lowerbound=1315135.825665, norm of subgrad 33.988370 stepsize= 1.000000 +dualbound = 3857174.024304, lowerbound=1322448.024304, norm of subgrad 1150.451226 dualbound = 3857174.024304, lowerbound=1322448.024304, norm of subgrad 33.588668 stepsize= 1.000000 +dualbound = 3857228.207324, lowerbound=1315820.207324, norm of subgrad 1147.554011 dualbound = 3857228.207324, lowerbound=1315820.207324, norm of subgrad 33.379380 stepsize= 1.000000 +dualbound = 3857283.933828, lowerbound=1321905.933828, norm of subgrad 1150.214734 dualbound = 3857283.933828, lowerbound=1321905.933828, norm of subgrad 33.819026 stepsize= 1.000000 +dualbound = 3857341.653263, lowerbound=1320195.653263, norm of subgrad 1149.478862 dualbound = 3857341.653263, lowerbound=1320195.653263, norm of subgrad 34.113332 stepsize= 1.000000 +dualbound = 3857366.545812, lowerbound=1322763.545812, norm of subgrad 1150.621374 dualbound = 3857366.545812, lowerbound=1322763.545812, norm of subgrad 34.509311 stepsize= 1.000000 +dualbound = 3857429.254885, lowerbound=1325610.254885, norm of subgrad 1151.867290 dualbound = 3857429.254885, lowerbound=1325610.254885, norm of subgrad 35.365365 stepsize= 1.000000 +dualbound = 3857469.739222, lowerbound=1320435.739222, norm of subgrad 1149.588944 dualbound = 3857469.739222, lowerbound=1320435.739222, norm of subgrad 34.051202 stepsize= 1.000000 +dualbound = 3857534.208036, lowerbound=1321498.208036, norm of subgrad 1150.056176 dualbound = 3857534.208036, lowerbound=1321498.208036, norm of subgrad 34.575552 stepsize= 1.000000 +dualbound = 3857590.052713, lowerbound=1320359.052713, norm of subgrad 1149.509049 dualbound = 3857590.052713, lowerbound=1320359.052713, norm of subgrad 32.677893 stepsize= 1.000000 +dualbound = 3857651.860762, lowerbound=1319574.860762, norm of subgrad 1149.203577 dualbound = 3857651.860762, lowerbound=1319574.860762, norm of subgrad 33.997177 stepsize= 1.000000 +dualbound = 3857689.291850, lowerbound=1324256.291850, norm of subgrad 1151.243368 dualbound = 3857689.291850, lowerbound=1324256.291850, norm of subgrad 33.799868 stepsize= 1.000000 +dualbound = 3857748.526861, lowerbound=1315751.526861, norm of subgrad 1147.515807 dualbound = 3857748.526861, lowerbound=1315751.526861, norm of subgrad 33.169791 stepsize= 1.000000 +dualbound = 3857807.967018, lowerbound=1322590.967018, norm of subgrad 1150.511611 dualbound = 3857807.967018, lowerbound=1322590.967018, norm of subgrad 33.844352 stepsize= 1.000000 +dualbound = 3857830.422183, lowerbound=1322559.422183, norm of subgrad 1150.527888 dualbound = 3857830.422183, lowerbound=1322559.422183, norm of subgrad 34.314067 stepsize= 1.000000 +dualbound = 3857878.813874, lowerbound=1321693.813874, norm of subgrad 1150.138606 dualbound = 3857878.813874, lowerbound=1321693.813874, norm of subgrad 34.254805 stepsize= 1.000000 +dualbound = 3857936.418650, lowerbound=1315549.418650, norm of subgrad 1147.471751 dualbound = 3857936.418650, lowerbound=1315549.418650, norm of subgrad 34.635311 stepsize= 1.000000 +dualbound = 3857987.651217, lowerbound=1321460.651217, norm of subgrad 1150.042891 dualbound = 3857987.651217, lowerbound=1321460.651217, norm of subgrad 34.485251 stepsize= 1.000000 +dualbound = 3858022.144864, lowerbound=1320430.144864, norm of subgrad 1149.626524 dualbound = 3858022.144864, lowerbound=1320430.144864, norm of subgrad 35.291552 stepsize= 1.000000 +dualbound = 3858093.239000, lowerbound=1317459.239000, norm of subgrad 1148.308425 dualbound = 3858093.239000, lowerbound=1317459.239000, norm of subgrad 34.987057 stepsize= 1.000000 +dualbound = 3858132.447475, lowerbound=1320271.447475, norm of subgrad 1149.539668 dualbound = 3858132.447475, lowerbound=1320271.447475, norm of subgrad 34.773675 stepsize= 1.000000 +dualbound = 3858187.099252, lowerbound=1315144.099252, norm of subgrad 1147.309069 dualbound = 3858187.099252, lowerbound=1315144.099252, norm of subgrad 35.052129 stepsize= 1.000000 +dualbound = 3858233.200243, lowerbound=1325256.200243, norm of subgrad 1151.713593 dualbound = 3858233.200243, lowerbound=1325256.200243, norm of subgrad 35.129774 stepsize= 1.000000 +dualbound = 3858291.536134, lowerbound=1317623.536134, norm of subgrad 1148.371254 dualbound = 3858291.536134, lowerbound=1317623.536134, norm of subgrad 34.515734 stepsize= 1.000000 +dualbound = 3858364.405700, lowerbound=1319650.405700, norm of subgrad 1149.261679 dualbound = 3858364.405700, lowerbound=1319650.405700, norm of subgrad 34.998137 stepsize= 1.000000 +dualbound = 3858394.838802, lowerbound=1320213.838802, norm of subgrad 1149.516785 dualbound = 3858394.838802, lowerbound=1320213.838802, norm of subgrad 34.719348 stepsize= 1.000000 +dualbound = 3858470.468233, lowerbound=1317262.468233, norm of subgrad 1148.210115 dualbound = 3858470.468233, lowerbound=1317262.468233, norm of subgrad 34.635667 stepsize= 1.000000 +dualbound = 3858516.090546, lowerbound=1321684.090546, norm of subgrad 1150.130901 dualbound = 3858516.090546, lowerbound=1321684.090546, norm of subgrad 34.097248 stepsize= 1.000000 +dualbound = 3858567.692437, lowerbound=1317260.692437, norm of subgrad 1148.216309 dualbound = 3858567.692437, lowerbound=1317260.692437, norm of subgrad 34.519587 stepsize= 1.000000 +dualbound = 3858602.556148, lowerbound=1319712.556148, norm of subgrad 1149.283062 dualbound = 3858602.556148, lowerbound=1319712.556148, norm of subgrad 34.261695 stepsize= 1.000000 +dualbound = 3858678.662384, lowerbound=1321677.662384, norm of subgrad 1150.124194 dualbound = 3858678.662384, lowerbound=1321677.662384, norm of subgrad 34.410845 stepsize= 1.000000 +dualbound = 3858716.119903, lowerbound=1323407.119903, norm of subgrad 1150.864944 dualbound = 3858716.119903, lowerbound=1323407.119903, norm of subgrad 33.473236 stepsize= 1.000000 +dualbound = 3858767.527183, lowerbound=1322794.527183, norm of subgrad 1150.601376 dualbound = 3858767.527183, lowerbound=1322794.527183, norm of subgrad 33.769917 stepsize= 1.000000 +dualbound = 3858833.835826, lowerbound=1318617.835826, norm of subgrad 1148.794949 dualbound = 3858833.835826, lowerbound=1318617.835826, norm of subgrad 34.326501 stepsize= 1.000000 +dualbound = 3858877.598765, lowerbound=1322559.598765, norm of subgrad 1150.518839 dualbound = 3858877.598765, lowerbound=1322559.598765, norm of subgrad 34.318551 stepsize= 1.000000 +dualbound = 3858933.055777, lowerbound=1318414.055777, norm of subgrad 1148.699724 dualbound = 3858933.055777, lowerbound=1318414.055777, norm of subgrad 33.947857 stepsize= 1.000000 +dualbound = 3858987.858817, lowerbound=1321680.858817, norm of subgrad 1150.104282 dualbound = 3858987.858817, lowerbound=1321680.858817, norm of subgrad 33.373688 stepsize= 1.000000 +dualbound = 3859056.709130, lowerbound=1318417.709130, norm of subgrad 1148.687821 dualbound = 3859056.709130, lowerbound=1318417.709130, norm of subgrad 33.687539 stepsize= 1.000000 +dualbound = 3859102.855568, lowerbound=1319492.855568, norm of subgrad 1149.155279 dualbound = 3859102.855568, lowerbound=1319492.855568, norm of subgrad 33.333863 stepsize= 1.000000 +dualbound = 3859155.067578, lowerbound=1321144.067578, norm of subgrad 1149.857412 dualbound = 3859155.067578, lowerbound=1321144.067578, norm of subgrad 32.866579 stepsize= 1.000000 +dualbound = 3859236.805995, lowerbound=1316994.805995, norm of subgrad 1148.066987 dualbound = 3859236.805995, lowerbound=1316994.805995, norm of subgrad 33.833983 stepsize= 1.000000 +dualbound = 3859254.025391, lowerbound=1319135.025391, norm of subgrad 1149.009149 dualbound = 3859254.025391, lowerbound=1319135.025391, norm of subgrad 33.229797 stepsize= 1.000000 +dualbound = 3859307.514415, lowerbound=1317763.514415, norm of subgrad 1148.422620 dualbound = 3859307.514415, lowerbound=1317763.514415, norm of subgrad 34.124610 stepsize= 1.000000 +dualbound = 3859344.905370, lowerbound=1318617.905370, norm of subgrad 1148.826316 dualbound = 3859344.905370, lowerbound=1318617.905370, norm of subgrad 34.948404 stepsize= 1.000000 +dualbound = 3859380.580612, lowerbound=1323477.580612, norm of subgrad 1150.922491 dualbound = 3859380.580612, lowerbound=1323477.580612, norm of subgrad 34.360955 stepsize= 1.000000 +dualbound = 3859445.595666, lowerbound=1321122.595666, norm of subgrad 1149.881557 dualbound = 3859445.595666, lowerbound=1321122.595666, norm of subgrad 34.205483 stepsize= 1.000000 +dualbound = 3859516.887001, lowerbound=1317108.887001, norm of subgrad 1148.148025 dualbound = 3859516.887001, lowerbound=1317108.887001, norm of subgrad 34.731705 stepsize= 1.000000 +dualbound = 3859550.403651, lowerbound=1319138.403651, norm of subgrad 1149.061532 dualbound = 3859550.403651, lowerbound=1319138.403651, norm of subgrad 35.178355 stepsize= 1.000000 +dualbound = 3859604.966015, lowerbound=1318445.966015, norm of subgrad 1148.724060 dualbound = 3859604.966015, lowerbound=1318445.966015, norm of subgrad 34.286475 stepsize= 1.000000 +dualbound = 3859678.721456, lowerbound=1321691.721456, norm of subgrad 1150.138131 dualbound = 3859678.721456, lowerbound=1321691.721456, norm of subgrad 34.637486 stepsize= 1.000000 +dualbound = 3859712.077088, lowerbound=1322140.077088, norm of subgrad 1150.320424 dualbound = 3859712.077088, lowerbound=1322140.077088, norm of subgrad 33.620762 stepsize= 1.000000 +dualbound = 3859789.074127, lowerbound=1324426.074127, norm of subgrad 1151.327093 dualbound = 3859789.074127, lowerbound=1324426.074127, norm of subgrad 34.713067 stepsize= 1.000000 +dualbound = 3859808.474234, lowerbound=1321455.474234, norm of subgrad 1150.053248 dualbound = 3859808.474234, lowerbound=1321455.474234, norm of subgrad 34.444159 stepsize= 1.000000 +dualbound = 3859876.465276, lowerbound=1317590.465276, norm of subgrad 1148.340744 dualbound = 3859876.465276, lowerbound=1317590.465276, norm of subgrad 34.117313 stepsize= 1.000000 +dualbound = 3859921.207400, lowerbound=1320657.207400, norm of subgrad 1149.692658 dualbound = 3859921.207400, lowerbound=1320657.207400, norm of subgrad 34.361928 stepsize= 1.000000 +dualbound = 3859990.805183, lowerbound=1324204.805183, norm of subgrad 1151.233167 dualbound = 3859990.805183, lowerbound=1324204.805183, norm of subgrad 34.678492 stepsize= 1.000000 +dualbound = 3860049.042193, lowerbound=1318021.042193, norm of subgrad 1148.543879 dualbound = 3860049.042193, lowerbound=1318021.042193, norm of subgrad 34.499812 stepsize= 1.000000 +dualbound = 3860089.894655, lowerbound=1323266.894655, norm of subgrad 1150.810973 dualbound = 3860089.894655, lowerbound=1323266.894655, norm of subgrad 33.761701 stepsize= 1.000000 +dualbound = 3860136.427723, lowerbound=1320117.427723, norm of subgrad 1149.450924 dualbound = 3860136.427723, lowerbound=1320117.427723, norm of subgrad 34.154547 stepsize= 1.000000 +dualbound = 3860209.938387, lowerbound=1319111.938387, norm of subgrad 1149.006065 dualbound = 3860209.938387, lowerbound=1319111.938387, norm of subgrad 34.300301 stepsize= 1.000000 +dualbound = 3860249.564890, lowerbound=1322345.564890, norm of subgrad 1150.405392 dualbound = 3860249.564890, lowerbound=1322345.564890, norm of subgrad 33.565257 stepsize= 1.000000 +dualbound = 3860304.721419, lowerbound=1319499.721419, norm of subgrad 1149.174800 dualbound = 3860304.721419, lowerbound=1319499.721419, norm of subgrad 34.031699 stepsize= 1.000000 +dualbound = 3860342.610876, lowerbound=1320257.610876, norm of subgrad 1149.514511 dualbound = 3860342.610876, lowerbound=1320257.610876, norm of subgrad 34.115824 stepsize= 1.000000 +dualbound = 3860382.722398, lowerbound=1325371.722398, norm of subgrad 1151.755062 dualbound = 3860382.722398, lowerbound=1325371.722398, norm of subgrad 34.757899 stepsize= 1.000000 +dualbound = 3860401.304536, lowerbound=1320807.304536, norm of subgrad 1149.759238 dualbound = 3860401.304536, lowerbound=1320807.304536, norm of subgrad 34.023259 stepsize= 1.000000 +dualbound = 3860502.866175, lowerbound=1319657.866175, norm of subgrad 1149.242301 dualbound = 3860502.866175, lowerbound=1319657.866175, norm of subgrad 34.663549 stepsize= 1.000000 +dualbound = 3860542.485121, lowerbound=1319629.485121, norm of subgrad 1149.222992 dualbound = 3860542.485121, lowerbound=1319629.485121, norm of subgrad 33.520426 stepsize= 1.000000 +dualbound = 3860610.872473, lowerbound=1325454.872473, norm of subgrad 1151.768150 dualbound = 3860610.872473, lowerbound=1325454.872473, norm of subgrad 34.400398 stepsize= 1.000000 +dualbound = 3860663.798695, lowerbound=1321469.798695, norm of subgrad 1150.026434 dualbound = 3860663.798695, lowerbound=1321469.798695, norm of subgrad 33.821978 stepsize= 1.000000 +dualbound = 3860703.315307, lowerbound=1321109.315307, norm of subgrad 1149.852302 dualbound = 3860703.315307, lowerbound=1321109.315307, norm of subgrad 33.022971 stepsize= 1.000000 +dualbound = 3860776.827812, lowerbound=1319401.827812, norm of subgrad 1149.133947 dualbound = 3860776.827812, lowerbound=1319401.827812, norm of subgrad 34.358587 stepsize= 1.000000 +dualbound = 3860822.053517, lowerbound=1313995.053517, norm of subgrad 1146.775067 dualbound = 3860822.053517, lowerbound=1313995.053517, norm of subgrad 33.811621 stepsize= 1.000000 +dualbound = 3860851.739270, lowerbound=1322636.739270, norm of subgrad 1150.604510 dualbound = 3860851.739270, lowerbound=1322636.739270, norm of subgrad 35.828561 stepsize= 1.000000 +dualbound = 3860901.543413, lowerbound=1321976.543413, norm of subgrad 1150.278029 dualbound = 3860901.543413, lowerbound=1321976.543413, norm of subgrad 34.825338 stepsize= 1.000000 +dualbound = 3860967.929532, lowerbound=1321649.929532, norm of subgrad 1150.113007 dualbound = 3860967.929532, lowerbound=1321649.929532, norm of subgrad 34.298486 stepsize= 1.000000 +dualbound = 3861022.550791, lowerbound=1324053.550791, norm of subgrad 1151.164867 dualbound = 3861022.550791, lowerbound=1324053.550791, norm of subgrad 34.374718 stepsize= 1.000000 +dualbound = 3861080.091349, lowerbound=1317813.091349, norm of subgrad 1148.442463 dualbound = 3861080.091349, lowerbound=1317813.091349, norm of subgrad 34.125365 stepsize= 1.000000 +dualbound = 3861139.896595, lowerbound=1324331.896595, norm of subgrad 1151.282718 dualbound = 3861139.896595, lowerbound=1324331.896595, norm of subgrad 34.348293 stepsize= 1.000000 +dualbound = 3861185.590978, lowerbound=1319047.590978, norm of subgrad 1148.967620 dualbound = 3861185.590978, lowerbound=1319047.590978, norm of subgrad 33.536463 stepsize= 1.000000 +dualbound = 3861236.280692, lowerbound=1324367.280692, norm of subgrad 1151.314588 dualbound = 3861236.280692, lowerbound=1324367.280692, norm of subgrad 34.766215 stepsize= 1.000000 +dualbound = 3861272.230674, lowerbound=1319391.230674, norm of subgrad 1149.162839 dualbound = 3861272.230674, lowerbound=1319391.230674, norm of subgrad 34.927782 stepsize= 1.000000 +dualbound = 3861322.567106, lowerbound=1321502.567106, norm of subgrad 1150.069375 dualbound = 3861322.567106, lowerbound=1321502.567106, norm of subgrad 34.746747 stepsize= 1.000000 +dualbound = 3861364.759815, lowerbound=1317193.759815, norm of subgrad 1148.198485 dualbound = 3861364.759815, lowerbound=1317193.759815, norm of subgrad 34.759067 stepsize= 1.000000 +dualbound = 3861442.890296, lowerbound=1322062.890296, norm of subgrad 1150.299479 dualbound = 3861442.890296, lowerbound=1322062.890296, norm of subgrad 34.700583 stepsize= 1.000000 +dualbound = 3861473.133660, lowerbound=1320774.133660, norm of subgrad 1149.766556 dualbound = 3861473.133660, lowerbound=1320774.133660, norm of subgrad 34.917666 stepsize= 1.000000 +dualbound = 3861528.506457, lowerbound=1317768.506457, norm of subgrad 1148.436549 dualbound = 3861528.506457, lowerbound=1317768.506457, norm of subgrad 34.545228 stepsize= 1.000000 +dualbound = 3861574.848191, lowerbound=1319226.848191, norm of subgrad 1149.070428 dualbound = 3861574.848191, lowerbound=1319226.848191, norm of subgrad 34.385196 stepsize= 1.000000 +dualbound = 3861661.069797, lowerbound=1320624.069797, norm of subgrad 1149.663894 dualbound = 3861661.069797, lowerbound=1320624.069797, norm of subgrad 34.485093 stepsize= 1.000000 +dualbound = 3861704.316661, lowerbound=1319004.316661, norm of subgrad 1148.954445 dualbound = 3861704.316661, lowerbound=1319004.316661, norm of subgrad 33.693425 stepsize= 1.000000 +dualbound = 3861762.556413, lowerbound=1321506.556413, norm of subgrad 1150.033720 dualbound = 3861762.556413, lowerbound=1321506.556413, norm of subgrad 33.604163 stepsize= 1.000000 +dualbound = 3861810.863570, lowerbound=1322811.863570, norm of subgrad 1150.610648 dualbound = 3861810.863570, lowerbound=1322811.863570, norm of subgrad 33.783238 stepsize= 1.000000 +dualbound = 3861851.901580, lowerbound=1314675.901580, norm of subgrad 1147.077112 dualbound = 3861851.901580, lowerbound=1314675.901580, norm of subgrad 33.926951 stepsize= 1.000000 +dualbound = 3861919.073235, lowerbound=1323047.073235, norm of subgrad 1150.735883 dualbound = 3861919.073235, lowerbound=1323047.073235, norm of subgrad 34.830614 stepsize= 1.000000 +dualbound = 3861960.822473, lowerbound=1318244.822473, norm of subgrad 1148.639118 dualbound = 3861960.822473, lowerbound=1318244.822473, norm of subgrad 34.186975 stepsize= 1.000000 +dualbound = 3862005.858561, lowerbound=1323422.858561, norm of subgrad 1150.876127 dualbound = 3862005.858561, lowerbound=1323422.858561, norm of subgrad 33.734790 stepsize= 1.000000 +dualbound = 3862079.328756, lowerbound=1323242.328756, norm of subgrad 1150.807251 dualbound = 3862079.328756, lowerbound=1323242.328756, norm of subgrad 34.474196 stepsize= 1.000000 +dualbound = 3862113.377147, lowerbound=1325504.377147, norm of subgrad 1151.817424 dualbound = 3862113.377147, lowerbound=1325504.377147, norm of subgrad 34.828844 stepsize= 1.000000 +dualbound = 3862161.588509, lowerbound=1316233.588509, norm of subgrad 1147.768526 dualbound = 3862161.588509, lowerbound=1316233.588509, norm of subgrad 34.455934 stepsize= 1.000000 +dualbound = 3862216.653386, lowerbound=1320930.653386, norm of subgrad 1149.795048 dualbound = 3862216.653386, lowerbound=1320930.653386, norm of subgrad 33.956809 stepsize= 1.000000 +dualbound = 3862281.095272, lowerbound=1321469.095272, norm of subgrad 1150.043519 dualbound = 3862281.095272, lowerbound=1321469.095272, norm of subgrad 34.575163 stepsize= 1.000000 +dualbound = 3862337.054658, lowerbound=1321109.054658, norm of subgrad 1149.889149 dualbound = 3862337.054658, lowerbound=1321109.054658, norm of subgrad 34.524765 stepsize= 1.000000 +dualbound = 3862363.747008, lowerbound=1318990.747008, norm of subgrad 1148.976391 dualbound = 3862363.747008, lowerbound=1318990.747008, norm of subgrad 34.390294 stepsize= 1.000000 +dualbound = 3862419.769059, lowerbound=1323651.769059, norm of subgrad 1150.989040 dualbound = 3862419.769059, lowerbound=1323651.769059, norm of subgrad 34.351449 stepsize= 1.000000 +dualbound = 3862493.762415, lowerbound=1322074.762415, norm of subgrad 1150.286817 dualbound = 3862493.762415, lowerbound=1322074.762415, norm of subgrad 34.043991 stepsize= 1.000000 +dualbound = 3862532.142483, lowerbound=1321005.142483, norm of subgrad 1149.836137 dualbound = 3862532.142483, lowerbound=1321005.142483, norm of subgrad 34.005589 stepsize= 1.000000 +dualbound = 3862574.034173, lowerbound=1318113.034173, norm of subgrad 1148.568254 dualbound = 3862574.034173, lowerbound=1318113.034173, norm of subgrad 33.732650 stepsize= 1.000000 +dualbound = 3862653.578017, lowerbound=1319374.578017, norm of subgrad 1149.104685 dualbound = 3862653.578017, lowerbound=1319374.578017, norm of subgrad 33.860653 stepsize= 1.000000 +dualbound = 3862681.310400, lowerbound=1316405.310400, norm of subgrad 1147.837232 dualbound = 3862681.310400, lowerbound=1316405.310400, norm of subgrad 33.951913 stepsize= 1.000000 +dualbound = 3862737.168183, lowerbound=1323671.168183, norm of subgrad 1151.019187 dualbound = 3862737.168183, lowerbound=1323671.168183, norm of subgrad 35.069328 stepsize= 1.000000 +dualbound = 3862784.196108, lowerbound=1325843.196108, norm of subgrad 1151.946264 dualbound = 3862784.196108, lowerbound=1325843.196108, norm of subgrad 34.409707 stepsize= 1.000000 +dualbound = 3862834.683884, lowerbound=1322603.683884, norm of subgrad 1150.541474 dualbound = 3862834.683884, lowerbound=1322603.683884, norm of subgrad 34.532416 stepsize= 1.000000 +dualbound = 3862873.333502, lowerbound=1321040.333502, norm of subgrad 1149.879704 dualbound = 3862873.333502, lowerbound=1321040.333502, norm of subgrad 34.952105 stepsize= 1.000000 +dualbound = 3862936.529621, lowerbound=1322135.529621, norm of subgrad 1150.341919 dualbound = 3862936.529621, lowerbound=1322135.529621, norm of subgrad 34.845317 stepsize= 1.000000 +dualbound = 3862998.716153, lowerbound=1322485.716153, norm of subgrad 1150.480211 dualbound = 3862998.716153, lowerbound=1322485.716153, norm of subgrad 34.368394 stepsize= 1.000000 +dualbound = 3863061.199972, lowerbound=1316797.199972, norm of subgrad 1147.986585 dualbound = 3863061.199972, lowerbound=1316797.199972, norm of subgrad 33.741426 stepsize= 1.000000 +dualbound = 3863110.255974, lowerbound=1319759.255974, norm of subgrad 1149.297723 dualbound = 3863110.255974, lowerbound=1319759.255974, norm of subgrad 34.279090 stepsize= 1.000000 +dualbound = 3863166.949040, lowerbound=1313788.949040, norm of subgrad 1146.686073 dualbound = 3863166.949040, lowerbound=1313788.949040, norm of subgrad 34.010191 stepsize= 1.000000 +dualbound = 3863210.535592, lowerbound=1321537.535592, norm of subgrad 1150.053275 dualbound = 3863210.535592, lowerbound=1321537.535592, norm of subgrad 33.594442 stepsize= 1.000000 +dualbound = 3863272.599557, lowerbound=1320565.599557, norm of subgrad 1149.633681 dualbound = 3863272.599557, lowerbound=1320565.599557, norm of subgrad 33.971517 stepsize= 1.000000 +dualbound = 3863318.494996, lowerbound=1324231.494996, norm of subgrad 1151.209579 dualbound = 3863318.494996, lowerbound=1324231.494996, norm of subgrad 33.134505 stepsize= 1.000000 +dualbound = 3863371.434145, lowerbound=1320160.434145, norm of subgrad 1149.470937 dualbound = 3863371.434145, lowerbound=1320160.434145, norm of subgrad 34.291969 stepsize= 1.000000 +dualbound = 3863414.769765, lowerbound=1321027.769765, norm of subgrad 1149.810319 dualbound = 3863414.769765, lowerbound=1321027.769765, norm of subgrad 32.853244 stepsize= 1.000000 +dualbound = 3863512.509353, lowerbound=1316172.509353, norm of subgrad 1147.697482 dualbound = 3863512.509353, lowerbound=1316172.509353, norm of subgrad 33.685896 stepsize= 1.000000 +dualbound = 3863550.356667, lowerbound=1321212.356667, norm of subgrad 1149.907977 dualbound = 3863550.356667, lowerbound=1321212.356667, norm of subgrad 33.374351 stepsize= 1.000000 +dualbound = 3863589.326552, lowerbound=1323237.326552, norm of subgrad 1150.818981 dualbound = 3863589.326552, lowerbound=1323237.326552, norm of subgrad 34.437913 stepsize= 1.000000 +dualbound = 3863609.411685, lowerbound=1317928.411685, norm of subgrad 1148.506601 dualbound = 3863609.411685, lowerbound=1317928.411685, norm of subgrad 34.045339 stepsize= 1.000000 +dualbound = 3863701.953659, lowerbound=1318143.953659, norm of subgrad 1148.571702 dualbound = 3863701.953659, lowerbound=1318143.953659, norm of subgrad 34.140035 stepsize= 1.000000 +dualbound = 3863743.924149, lowerbound=1325449.924149, norm of subgrad 1151.777723 dualbound = 3863743.924149, lowerbound=1325449.924149, norm of subgrad 34.408872 stepsize= 1.000000 +dualbound = 3863775.907028, lowerbound=1316312.907028, norm of subgrad 1147.811791 dualbound = 3863775.907028, lowerbound=1316312.907028, norm of subgrad 34.510620 stepsize= 1.000000 +dualbound = 3863839.964453, lowerbound=1322616.964453, norm of subgrad 1150.558110 dualbound = 3863839.964453, lowerbound=1322616.964453, norm of subgrad 35.086428 stepsize= 1.000000 +dualbound = 3863875.707220, lowerbound=1319330.707220, norm of subgrad 1149.148253 dualbound = 3863875.707220, lowerbound=1319330.707220, norm of subgrad 35.309245 stepsize= 1.000000 +dualbound = 3863920.832176, lowerbound=1318138.832176, norm of subgrad 1148.621710 dualbound = 3863920.832176, lowerbound=1318138.832176, norm of subgrad 35.187000 stepsize= 1.000000 +dualbound = 3863982.990512, lowerbound=1323649.990512, norm of subgrad 1151.023454 dualbound = 3863982.990512, lowerbound=1323649.990512, norm of subgrad 35.597168 stepsize= 1.000000 +dualbound = 3864020.984415, lowerbound=1317555.984415, norm of subgrad 1148.355774 dualbound = 3864020.984415, lowerbound=1317555.984415, norm of subgrad 34.684203 stepsize= 1.000000 +dualbound = 3864091.364248, lowerbound=1321017.364248, norm of subgrad 1149.861454 dualbound = 3864091.364248, lowerbound=1321017.364248, norm of subgrad 35.133742 stepsize= 1.000000 +dualbound = 3864135.321294, lowerbound=1316221.321294, norm of subgrad 1147.764924 dualbound = 3864135.321294, lowerbound=1316221.321294, norm of subgrad 34.452243 stepsize= 1.000000 +dualbound = 3864205.654506, lowerbound=1323134.654506, norm of subgrad 1150.746564 dualbound = 3864205.654506, lowerbound=1323134.654506, norm of subgrad 33.960760 stepsize= 1.000000 +dualbound = 3864264.552957, lowerbound=1326575.552957, norm of subgrad 1152.268004 dualbound = 3864264.552957, lowerbound=1326575.552957, norm of subgrad 34.711647 stepsize= 1.000000 +dualbound = 3864313.656677, lowerbound=1325561.656677, norm of subgrad 1151.810165 dualbound = 3864313.656677, lowerbound=1325561.656677, norm of subgrad 33.972102 stepsize= 1.000000 +dualbound = 3864372.446322, lowerbound=1315046.446322, norm of subgrad 1147.247334 dualbound = 3864372.446322, lowerbound=1315046.446322, norm of subgrad 34.478829 stepsize= 1.000000 +dualbound = 3864428.506355, lowerbound=1322549.506355, norm of subgrad 1150.479685 dualbound = 3864428.506355, lowerbound=1322549.506355, norm of subgrad 33.317563 stepsize= 1.000000 +dualbound = 3864475.785497, lowerbound=1323398.785497, norm of subgrad 1150.871316 dualbound = 3864475.785497, lowerbound=1323398.785497, norm of subgrad 33.959964 stepsize= 1.000000 +dualbound = 3864550.495578, lowerbound=1325976.495578, norm of subgrad 1151.975041 dualbound = 3864550.495578, lowerbound=1325976.495578, norm of subgrad 33.833564 stepsize= 1.000000 +dualbound = 3864580.680393, lowerbound=1323042.680393, norm of subgrad 1150.708339 dualbound = 3864580.680393, lowerbound=1323042.680393, norm of subgrad 33.424315 stepsize= 1.000000 +dualbound = 3864632.779600, lowerbound=1316618.779600, norm of subgrad 1147.914099 dualbound = 3864632.779600, lowerbound=1316618.779600, norm of subgrad 33.765355 stepsize= 1.000000 +dualbound = 3864675.488637, lowerbound=1319817.488637, norm of subgrad 1149.315226 dualbound = 3864675.488637, lowerbound=1319817.488637, norm of subgrad 33.922102 stepsize= 1.000000 +dualbound = 3864730.311786, lowerbound=1317175.311786, norm of subgrad 1148.154307 dualbound = 3864730.311786, lowerbound=1317175.311786, norm of subgrad 33.731634 stepsize= 1.000000 +dualbound = 3864809.685772, lowerbound=1317838.685772, norm of subgrad 1148.457960 dualbound = 3864809.685772, lowerbound=1317838.685772, norm of subgrad 34.588640 stepsize= 1.000000 +dualbound = 3864840.725145, lowerbound=1319472.725145, norm of subgrad 1149.159573 dualbound = 3864840.725145, lowerbound=1319472.725145, norm of subgrad 33.556510 stepsize= 1.000000 +dualbound = 3864890.070839, lowerbound=1319926.070839, norm of subgrad 1149.337666 dualbound = 3864890.070839, lowerbound=1319926.070839, norm of subgrad 33.171459 stepsize= 1.000000 +dualbound = 3864960.413913, lowerbound=1321022.413913, norm of subgrad 1149.826254 dualbound = 3864960.413913, lowerbound=1321022.413913, norm of subgrad 33.887211 stepsize= 1.000000 +dualbound = 3864988.407686, lowerbound=1314522.407686, norm of subgrad 1147.017178 dualbound = 3864988.407686, lowerbound=1314522.407686, norm of subgrad 33.970484 stepsize= 1.000000 +dualbound = 3865028.284327, lowerbound=1324340.284327, norm of subgrad 1151.295047 dualbound = 3865028.284327, lowerbound=1324340.284327, norm of subgrad 34.349332 stepsize= 1.000000 +dualbound = 3865095.492209, lowerbound=1320515.492209, norm of subgrad 1149.591011 dualbound = 3865095.492209, lowerbound=1320515.492209, norm of subgrad 33.334785 stepsize= 1.000000 +dualbound = 3865162.093930, lowerbound=1319392.093930, norm of subgrad 1149.124055 dualbound = 3865162.093930, lowerbound=1319392.093930, norm of subgrad 34.067605 stepsize= 1.000000 +dualbound = 3865199.498195, lowerbound=1323644.498195, norm of subgrad 1150.995438 dualbound = 3865199.498195, lowerbound=1323644.498195, norm of subgrad 34.400643 stepsize= 1.000000 +dualbound = 3865237.551535, lowerbound=1321406.551535, norm of subgrad 1149.991544 dualbound = 3865237.551535, lowerbound=1321406.551535, norm of subgrad 33.347464 stepsize= 1.000000 +dualbound = 3865318.068148, lowerbound=1318388.068148, norm of subgrad 1148.714093 dualbound = 3865318.068148, lowerbound=1318388.068148, norm of subgrad 35.164138 stepsize= 1.000000 +dualbound = 3865327.710019, lowerbound=1325422.710019, norm of subgrad 1151.793692 dualbound = 3865327.710019, lowerbound=1325422.710019, norm of subgrad 34.866056 stepsize= 1.000000 +dualbound = 3865383.476840, lowerbound=1319656.476840, norm of subgrad 1149.279112 dualbound = 3865383.476840, lowerbound=1319656.476840, norm of subgrad 35.238712 stepsize= 1.000000 +dualbound = 3865430.741087, lowerbound=1321122.741087, norm of subgrad 1149.880751 dualbound = 3865430.741087, lowerbound=1321122.741087, norm of subgrad 33.915546 stepsize= 1.000000 +dualbound = 3865509.483651, lowerbound=1319900.483651, norm of subgrad 1149.346546 dualbound = 3865509.483651, lowerbound=1319900.483651, norm of subgrad 34.289103 stepsize= 1.000000 +dualbound = 3865579.650377, lowerbound=1325160.650377, norm of subgrad 1151.616972 dualbound = 3865579.650377, lowerbound=1325160.650377, norm of subgrad 33.632822 stepsize= 1.000000 +dualbound = 3865617.466300, lowerbound=1314881.466300, norm of subgrad 1147.190249 dualbound = 3865617.466300, lowerbound=1314881.466300, norm of subgrad 34.667217 stepsize= 1.000000 +dualbound = 3865638.609001, lowerbound=1322661.609001, norm of subgrad 1150.607930 dualbound = 3865638.609001, lowerbound=1322661.609001, norm of subgrad 35.470307 stepsize= 1.000000 +dualbound = 3865698.719060, lowerbound=1318319.719060, norm of subgrad 1148.688260 dualbound = 3865698.719060, lowerbound=1318319.719060, norm of subgrad 35.001572 stepsize= 1.000000 +dualbound = 3865771.100737, lowerbound=1322709.100737, norm of subgrad 1150.574248 dualbound = 3865771.100737, lowerbound=1322709.100737, norm of subgrad 34.414847 stepsize= 1.000000 +dualbound = 3865817.559548, lowerbound=1320096.559548, norm of subgrad 1149.450982 dualbound = 3865817.559548, lowerbound=1320096.559548, norm of subgrad 34.459524 stepsize= 1.000000 +dualbound = 3865850.311239, lowerbound=1317835.311239, norm of subgrad 1148.474341 dualbound = 3865850.311239, lowerbound=1317835.311239, norm of subgrad 34.507270 stepsize= 1.000000 +dualbound = 3865917.040630, lowerbound=1321633.040630, norm of subgrad 1150.113056 dualbound = 3865917.040630, lowerbound=1321633.040630, norm of subgrad 34.550389 stepsize= 1.000000 +dualbound = 3865966.677752, lowerbound=1324123.677752, norm of subgrad 1151.189245 dualbound = 3865966.677752, lowerbound=1324123.677752, norm of subgrad 34.097465 stepsize= 1.000000 +dualbound = 3866017.373778, lowerbound=1321899.373778, norm of subgrad 1150.222750 dualbound = 3866017.373778, lowerbound=1321899.373778, norm of subgrad 34.112989 stepsize= 1.000000 +dualbound = 3866072.931500, lowerbound=1321264.931500, norm of subgrad 1149.946056 dualbound = 3866072.931500, lowerbound=1321264.931500, norm of subgrad 34.154908 stepsize= 1.000000 +dualbound = 3866129.279566, lowerbound=1325025.279566, norm of subgrad 1151.576432 dualbound = 3866129.279566, lowerbound=1325025.279566, norm of subgrad 34.049201 stepsize= 1.000000 +dualbound = 3866181.874961, lowerbound=1317898.874961, norm of subgrad 1148.479375 dualbound = 3866181.874961, lowerbound=1317898.874961, norm of subgrad 34.038146 stepsize= 1.000000 +dualbound = 3866231.456030, lowerbound=1324847.456030, norm of subgrad 1151.488800 dualbound = 3866231.456030, lowerbound=1324847.456030, norm of subgrad 33.594361 stepsize= 1.000000 +dualbound = 3866271.623044, lowerbound=1320398.623044, norm of subgrad 1149.574540 dualbound = 3866271.623044, lowerbound=1320398.623044, norm of subgrad 34.105234 stepsize= 1.000000 +dualbound = 3866318.042172, lowerbound=1319445.042172, norm of subgrad 1149.166238 dualbound = 3866318.042172, lowerbound=1319445.042172, norm of subgrad 34.415391 stepsize= 1.000000 +dualbound = 3866371.678625, lowerbound=1319295.678625, norm of subgrad 1149.091675 dualbound = 3866371.678625, lowerbound=1319295.678625, norm of subgrad 34.199948 stepsize= 1.000000 +dualbound = 3866427.074441, lowerbound=1321825.074441, norm of subgrad 1150.188713 dualbound = 3866427.074441, lowerbound=1321825.074441, norm of subgrad 34.123245 stepsize= 1.000000 +dualbound = 3866481.687330, lowerbound=1319395.687330, norm of subgrad 1149.125183 dualbound = 3866481.687330, lowerbound=1319395.687330, norm of subgrad 33.876436 stepsize= 1.000000 +dualbound = 3866511.655228, lowerbound=1321649.655228, norm of subgrad 1150.134190 dualbound = 3866511.655228, lowerbound=1321649.655228, norm of subgrad 34.481414 stepsize= 1.000000 +dualbound = 3866576.454188, lowerbound=1323124.454188, norm of subgrad 1150.748215 dualbound = 3866576.454188, lowerbound=1323124.454188, norm of subgrad 34.085172 stepsize= 1.000000 +dualbound = 3866641.052699, lowerbound=1318678.052699, norm of subgrad 1148.819852 dualbound = 3866641.052699, lowerbound=1318678.052699, norm of subgrad 34.257824 stepsize= 1.000000 +dualbound = 3866672.105753, lowerbound=1318485.105753, norm of subgrad 1148.731085 dualbound = 3866672.105753, lowerbound=1318485.105753, norm of subgrad 33.601385 stepsize= 1.000000 +dualbound = 3866743.880436, lowerbound=1328116.880436, norm of subgrad 1152.901071 dualbound = 3866743.880436, lowerbound=1328116.880436, norm of subgrad 33.701256 stepsize= 1.000000 +dualbound = 3866789.453744, lowerbound=1317486.453744, norm of subgrad 1148.300245 dualbound = 3866789.453744, lowerbound=1317486.453744, norm of subgrad 33.949570 stepsize= 1.000000 +dualbound = 3866845.168039, lowerbound=1327155.168039, norm of subgrad 1152.487383 dualbound = 3866845.168039, lowerbound=1327155.168039, norm of subgrad 33.581458 stepsize= 1.000000 +dualbound = 3866908.146304, lowerbound=1316985.146304, norm of subgrad 1148.098056 dualbound = 3866908.146304, lowerbound=1316985.146304, norm of subgrad 34.741593 stepsize= 1.000000 +dualbound = 3866959.205278, lowerbound=1323285.205278, norm of subgrad 1150.826314 dualbound = 3866959.205278, lowerbound=1323285.205278, norm of subgrad 34.162245 stepsize= 1.000000 +dualbound = 3866991.690705, lowerbound=1320669.690705, norm of subgrad 1149.692868 dualbound = 3866991.690705, lowerbound=1320669.690705, norm of subgrad 34.007138 stepsize= 1.000000 +dualbound = 3867050.979863, lowerbound=1318823.979863, norm of subgrad 1148.889455 dualbound = 3867050.979863, lowerbound=1318823.979863, norm of subgrad 34.384432 stepsize= 1.000000 +dualbound = 3867101.589507, lowerbound=1326653.589507, norm of subgrad 1152.284509 dualbound = 3867101.589507, lowerbound=1326653.589507, norm of subgrad 34.008964 stepsize= 1.000000 +dualbound = 3867169.402161, lowerbound=1318403.402161, norm of subgrad 1148.697698 dualbound = 3867169.402161, lowerbound=1318403.402161, norm of subgrad 34.217140 stepsize= 1.000000 +dualbound = 3867187.840321, lowerbound=1324448.840321, norm of subgrad 1151.350008 dualbound = 3867187.840321, lowerbound=1324448.840321, norm of subgrad 34.299244 stepsize= 1.000000 +dualbound = 3867261.099311, lowerbound=1321143.099311, norm of subgrad 1149.901778 dualbound = 3867261.099311, lowerbound=1321143.099311, norm of subgrad 34.702435 stepsize= 1.000000 +dualbound = 3867286.650779, lowerbound=1318371.650779, norm of subgrad 1148.701724 dualbound = 3867286.650779, lowerbound=1318371.650779, norm of subgrad 34.198706 stepsize= 1.000000 +dualbound = 3867374.249744, lowerbound=1315541.249744, norm of subgrad 1147.453376 dualbound = 3867374.249744, lowerbound=1315541.249744, norm of subgrad 34.577434 stepsize= 1.000000 +dualbound = 3867434.554541, lowerbound=1319581.554541, norm of subgrad 1149.193872 dualbound = 3867434.554541, lowerbound=1319581.554541, norm of subgrad 33.545563 stepsize= 1.000000 +dualbound = 3867495.901291, lowerbound=1323752.901291, norm of subgrad 1151.017333 dualbound = 3867495.901291, lowerbound=1323752.901291, norm of subgrad 33.902017 stepsize= 1.000000 +dualbound = 3867504.257570, lowerbound=1321992.257570, norm of subgrad 1150.291814 dualbound = 3867504.257570, lowerbound=1321992.257570, norm of subgrad 34.458036 stepsize= 1.000000 +dualbound = 3867558.470205, lowerbound=1319919.470205, norm of subgrad 1149.366117 dualbound = 3867558.470205, lowerbound=1319919.470205, norm of subgrad 34.310532 stepsize= 1.000000 +dualbound = 3867638.593568, lowerbound=1320977.593568, norm of subgrad 1149.810242 dualbound = 3867638.593568, lowerbound=1320977.593568, norm of subgrad 34.148548 stepsize= 1.000000 +dualbound = 3867650.130642, lowerbound=1321869.130642, norm of subgrad 1150.218732 dualbound = 3867650.130642, lowerbound=1321869.130642, norm of subgrad 33.845784 stepsize= 1.000000 +dualbound = 3867718.277698, lowerbound=1318163.277698, norm of subgrad 1148.624516 dualbound = 3867718.277698, lowerbound=1318163.277698, norm of subgrad 35.258291 stepsize= 1.000000 +dualbound = 3867776.199080, lowerbound=1324027.199080, norm of subgrad 1151.147775 dualbound = 3867776.199080, lowerbound=1324027.199080, norm of subgrad 34.233337 stepsize= 1.000000 +dualbound = 3867834.494049, lowerbound=1325180.494049, norm of subgrad 1151.661189 dualbound = 3867834.494049, lowerbound=1325180.494049, norm of subgrad 34.659702 stepsize= 1.000000 +dualbound = 3867861.887532, lowerbound=1321434.887532, norm of subgrad 1150.028646 dualbound = 3867861.887532, lowerbound=1321434.887532, norm of subgrad 34.035180 stepsize= 1.000000 +dualbound = 3867946.807499, lowerbound=1321410.807499, norm of subgrad 1150.015568 dualbound = 3867946.807499, lowerbound=1321410.807499, norm of subgrad 34.783904 stepsize= 1.000000 +dualbound = 3867988.754967, lowerbound=1322609.754967, norm of subgrad 1150.534986 dualbound = 3867988.754967, lowerbound=1322609.754967, norm of subgrad 34.102016 stepsize= 1.000000 +dualbound = 3868032.928313, lowerbound=1321779.928313, norm of subgrad 1150.179085 dualbound = 3868032.928313, lowerbound=1321779.928313, norm of subgrad 34.295384 stepsize= 1.000000 +dualbound = 3868078.401078, lowerbound=1318893.401078, norm of subgrad 1148.933158 dualbound = 3868078.401078, lowerbound=1318893.401078, norm of subgrad 34.633405 stepsize= 1.000000 +dualbound = 3868121.846542, lowerbound=1319730.846542, norm of subgrad 1149.281013 dualbound = 3868121.846542, lowerbound=1319730.846542, norm of subgrad 34.050631 stepsize= 1.000000 +dualbound = 3868184.753699, lowerbound=1325264.753699, norm of subgrad 1151.707755 dualbound = 3868184.753699, lowerbound=1325264.753699, norm of subgrad 35.055772 stepsize= 1.000000 +dualbound = 3868234.029661, lowerbound=1319459.029661, norm of subgrad 1149.177110 dualbound = 3868234.029661, lowerbound=1319459.029661, norm of subgrad 34.616123 stepsize= 1.000000 +dualbound = 3868269.070149, lowerbound=1325634.070149, norm of subgrad 1151.862435 dualbound = 3868269.070149, lowerbound=1325634.070149, norm of subgrad 34.467963 stepsize= 1.000000 +dualbound = 3868332.761740, lowerbound=1312081.761740, norm of subgrad 1145.961065 dualbound = 3868332.761740, lowerbound=1312081.761740, norm of subgrad 34.766242 stepsize= 1.000000 +dualbound = 3868355.311141, lowerbound=1332993.311141, norm of subgrad 1155.056410 dualbound = 3868355.311141, lowerbound=1332993.311141, norm of subgrad 34.417283 stepsize= 1.000000 +dualbound = 3868428.261692, lowerbound=1323539.261692, norm of subgrad 1150.962320 dualbound = 3868428.261692, lowerbound=1323539.261692, norm of subgrad 35.326344 stepsize= 1.000000 +dualbound = 3868474.871714, lowerbound=1324551.871714, norm of subgrad 1151.384328 dualbound = 3868474.871714, lowerbound=1324551.871714, norm of subgrad 34.360006 stepsize= 1.000000 +dualbound = 3868540.890149, lowerbound=1316608.890149, norm of subgrad 1147.913712 dualbound = 3868540.890149, lowerbound=1316608.890149, norm of subgrad 34.103056 stepsize= 1.000000 +dualbound = 3868586.114670, lowerbound=1326869.114670, norm of subgrad 1152.378460 dualbound = 3868586.114670, lowerbound=1326869.114670, norm of subgrad 33.944433 stepsize= 1.000000 +dualbound = 3868672.210177, lowerbound=1321133.210177, norm of subgrad 1149.861822 dualbound = 3868672.210177, lowerbound=1321133.210177, norm of subgrad 33.691178 stepsize= 1.000000 +dualbound = 3868694.055653, lowerbound=1321865.055653, norm of subgrad 1150.203050 dualbound = 3868694.055653, lowerbound=1321865.055653, norm of subgrad 33.523805 stepsize= 1.000000 +dualbound = 3868752.568491, lowerbound=1321538.568491, norm of subgrad 1150.051550 dualbound = 3868752.568491, lowerbound=1321538.568491, norm of subgrad 33.741856 stepsize= 1.000000 +dualbound = 3868821.427312, lowerbound=1319066.427312, norm of subgrad 1148.976252 dualbound = 3868821.427312, lowerbound=1319066.427312, norm of subgrad 33.894820 stepsize= 1.000000 +dualbound = 3868868.343124, lowerbound=1320840.343124, norm of subgrad 1149.748817 dualbound = 3868868.343124, lowerbound=1320840.343124, norm of subgrad 33.599342 stepsize= 1.000000 +dualbound = 3868895.265629, lowerbound=1320798.265629, norm of subgrad 1149.747044 dualbound = 3868895.265629, lowerbound=1320798.265629, norm of subgrad 33.866244 stepsize= 1.000000 +dualbound = 3868937.775920, lowerbound=1319750.775920, norm of subgrad 1149.287508 dualbound = 3868937.775920, lowerbound=1319750.775920, norm of subgrad 33.963367 stepsize= 1.000000 +dualbound = 3869013.909060, lowerbound=1317626.909060, norm of subgrad 1148.344421 dualbound = 3869013.909060, lowerbound=1317626.909060, norm of subgrad 33.825037 stepsize= 1.000000 +dualbound = 3869061.442287, lowerbound=1322352.442287, norm of subgrad 1150.406208 dualbound = 3869061.442287, lowerbound=1322352.442287, norm of subgrad 33.608529 stepsize= 1.000000 +dualbound = 3869129.827544, lowerbound=1319188.827544, norm of subgrad 1149.047357 dualbound = 3869129.827544, lowerbound=1319188.827544, norm of subgrad 34.487465 stepsize= 1.000000 +dualbound = 3869149.210689, lowerbound=1320670.210689, norm of subgrad 1149.684831 dualbound = 3869149.210689, lowerbound=1320670.210689, norm of subgrad 33.531823 stepsize= 1.000000 +dualbound = 3869208.989861, lowerbound=1319315.989861, norm of subgrad 1149.123575 dualbound = 3869208.989861, lowerbound=1319315.989861, norm of subgrad 35.053947 stepsize= 1.000000 +dualbound = 3869251.082741, lowerbound=1317439.082741, norm of subgrad 1148.279619 dualbound = 3869251.082741, lowerbound=1317439.082741, norm of subgrad 33.898273 stepsize= 1.000000 +dualbound = 3869324.602872, lowerbound=1323821.602872, norm of subgrad 1151.076715 dualbound = 3869324.602872, lowerbound=1323821.602872, norm of subgrad 35.064514 stepsize= 1.000000 +dualbound = 3869369.580743, lowerbound=1318865.580743, norm of subgrad 1148.904513 dualbound = 3869369.580743, lowerbound=1318865.580743, norm of subgrad 34.073125 stepsize= 1.000000 +dualbound = 3869434.319229, lowerbound=1323044.319229, norm of subgrad 1150.722086 dualbound = 3869434.319229, lowerbound=1323044.319229, norm of subgrad 34.376423 stepsize= 1.000000 +dualbound = 3869497.704956, lowerbound=1317848.704956, norm of subgrad 1148.436635 dualbound = 3869497.704956, lowerbound=1317848.704956, norm of subgrad 33.487098 stepsize= 1.000000 +dualbound = 3869515.345233, lowerbound=1324273.345233, norm of subgrad 1151.277267 dualbound = 3869515.345233, lowerbound=1324273.345233, norm of subgrad 34.404074 stepsize= 1.000000 +dualbound = 3869536.221076, lowerbound=1321924.221076, norm of subgrad 1150.264414 dualbound = 3869536.221076, lowerbound=1321924.221076, norm of subgrad 34.711322 stepsize= 1.000000 +dualbound = 3869631.885669, lowerbound=1319878.885669, norm of subgrad 1149.348896 dualbound = 3869631.885669, lowerbound=1319878.885669, norm of subgrad 34.923697 stepsize= 1.000000 +dualbound = 3869653.727411, lowerbound=1323632.727411, norm of subgrad 1151.001619 dualbound = 3869653.727411, lowerbound=1323632.727411, norm of subgrad 34.552015 stepsize= 1.000000 +dualbound = 3869707.497785, lowerbound=1322613.497785, norm of subgrad 1150.562253 dualbound = 3869707.497785, lowerbound=1322613.497785, norm of subgrad 35.125068 stepsize= 1.000000 +dualbound = 3869741.961294, lowerbound=1322681.961294, norm of subgrad 1150.578968 dualbound = 3869741.961294, lowerbound=1322681.961294, norm of subgrad 34.416036 stepsize= 1.000000 +dualbound = 3869834.542182, lowerbound=1325669.542182, norm of subgrad 1151.871322 dualbound = 3869834.542182, lowerbound=1325669.542182, norm of subgrad 35.079636 stepsize= 1.000000 +dualbound = 3869880.017694, lowerbound=1323133.017694, norm of subgrad 1150.774964 dualbound = 3869880.017694, lowerbound=1323133.017694, norm of subgrad 34.575649 stepsize= 1.000000 +dualbound = 3869947.974225, lowerbound=1315939.974225, norm of subgrad 1147.640176 dualbound = 3869947.974225, lowerbound=1315939.974225, norm of subgrad 34.726885 stepsize= 1.000000 +dualbound = 3869984.595165, lowerbound=1321039.595165, norm of subgrad 1149.869382 dualbound = 3869984.595165, lowerbound=1321039.595165, norm of subgrad 34.592209 stepsize= 1.000000 +dualbound = 3870033.913271, lowerbound=1321064.913271, norm of subgrad 1149.855605 dualbound = 3870033.913271, lowerbound=1321064.913271, norm of subgrad 33.945811 stepsize= 1.000000 +dualbound = 3870104.451032, lowerbound=1318856.451032, norm of subgrad 1148.903151 dualbound = 3870104.451032, lowerbound=1318856.451032, norm of subgrad 34.533140 stepsize= 1.000000 +dualbound = 3870136.584387, lowerbound=1318043.584387, norm of subgrad 1148.571105 dualbound = 3870136.584387, lowerbound=1318043.584387, norm of subgrad 34.700625 stepsize= 1.000000 +dualbound = 3870186.997494, lowerbound=1321246.997494, norm of subgrad 1149.949998 dualbound = 3870186.997494, lowerbound=1321246.997494, norm of subgrad 34.473368 stepsize= 1.000000 +dualbound = 3870260.258748, lowerbound=1323300.258748, norm of subgrad 1150.838502 dualbound = 3870260.258748, lowerbound=1323300.258748, norm of subgrad 34.673639 stepsize= 1.000000 +dualbound = 3870310.868117, lowerbound=1318780.868117, norm of subgrad 1148.871998 dualbound = 3870310.868117, lowerbound=1318780.868117, norm of subgrad 34.301740 stepsize= 1.000000 +dualbound = 3870366.236136, lowerbound=1325581.236136, norm of subgrad 1151.832556 dualbound = 3870366.236136, lowerbound=1325581.236136, norm of subgrad 34.530682 stepsize= 1.000000 +dualbound = 3870414.762811, lowerbound=1319726.762811, norm of subgrad 1149.301424 dualbound = 3870414.762811, lowerbound=1319726.762811, norm of subgrad 34.864404 stepsize= 1.000000 +dualbound = 3870467.585116, lowerbound=1318098.585116, norm of subgrad 1148.560223 dualbound = 3870467.585116, lowerbound=1318098.585116, norm of subgrad 33.835223 stepsize= 1.000000 +dualbound = 3870519.317311, lowerbound=1322504.317311, norm of subgrad 1150.500029 dualbound = 3870519.317311, lowerbound=1322504.317311, norm of subgrad 34.608268 stepsize= 1.000000 +dualbound = 3870556.658013, lowerbound=1325941.658013, norm of subgrad 1151.945163 dualbound = 3870556.658013, lowerbound=1325941.658013, norm of subgrad 32.761879 stepsize= 1.000000 +dualbound = 3870644.486997, lowerbound=1318745.486997, norm of subgrad 1148.835709 dualbound = 3870644.486997, lowerbound=1318745.486997, norm of subgrad 34.144238 stepsize= 1.000000 +dualbound = 3870670.738008, lowerbound=1324232.738008, norm of subgrad 1151.212291 dualbound = 3870670.738008, lowerbound=1324232.738008, norm of subgrad 32.912779 stepsize= 1.000000 +dualbound = 3870741.507498, lowerbound=1319437.507498, norm of subgrad 1149.157738 dualbound = 3870741.507498, lowerbound=1319437.507498, norm of subgrad 34.594356 stepsize= 1.000000 +dualbound = 3870760.957691, lowerbound=1320182.957691, norm of subgrad 1149.484649 dualbound = 3870760.957691, lowerbound=1320182.957691, norm of subgrad 33.933025 stepsize= 1.000000 +dualbound = 3870829.299606, lowerbound=1317792.299606, norm of subgrad 1148.451261 dualbound = 3870829.299606, lowerbound=1317792.299606, norm of subgrad 34.876094 stepsize= 1.000000 +dualbound = 3870869.215601, lowerbound=1324455.215601, norm of subgrad 1151.353211 dualbound = 3870869.215601, lowerbound=1324455.215601, norm of subgrad 34.625366 stepsize= 1.000000 +dualbound = 3870938.078604, lowerbound=1316098.078604, norm of subgrad 1147.687274 dualbound = 3870938.078604, lowerbound=1316098.078604, norm of subgrad 34.012689 stepsize= 1.000000 +dualbound = 3871002.699979, lowerbound=1327096.699979, norm of subgrad 1152.452906 dualbound = 3871002.699979, lowerbound=1327096.699979, norm of subgrad 33.400919 stepsize= 1.000000 +dualbound = 3871062.296727, lowerbound=1319946.296727, norm of subgrad 1149.366476 dualbound = 3871062.296727, lowerbound=1319946.296727, norm of subgrad 34.008775 stepsize= 1.000000 +dualbound = 3871098.416692, lowerbound=1321416.416692, norm of subgrad 1150.000181 dualbound = 3871098.416692, lowerbound=1321416.416692, norm of subgrad 33.468193 stepsize= 1.000000 +dualbound = 3871145.463545, lowerbound=1321344.463545, norm of subgrad 1149.980636 dualbound = 3871145.463545, lowerbound=1321344.463545, norm of subgrad 34.030087 stepsize= 1.000000 +dualbound = 3871183.664176, lowerbound=1318345.664176, norm of subgrad 1148.696942 dualbound = 3871183.664176, lowerbound=1318345.664176, norm of subgrad 34.600587 stepsize= 1.000000 +dualbound = 3871248.164819, lowerbound=1316739.164819, norm of subgrad 1147.978730 dualbound = 3871248.164819, lowerbound=1316739.164819, norm of subgrad 34.358414 stepsize= 1.000000 +dualbound = 3871291.275772, lowerbound=1327418.275772, norm of subgrad 1152.635795 dualbound = 3871291.275772, lowerbound=1327418.275772, norm of subgrad 34.555911 stepsize= 1.000000 +dualbound = 3871350.221580, lowerbound=1316393.221580, norm of subgrad 1147.835451 dualbound = 3871350.221580, lowerbound=1316393.221580, norm of subgrad 34.524568 stepsize= 1.000000 +dualbound = 3871375.561144, lowerbound=1320009.561144, norm of subgrad 1149.446633 dualbound = 3871375.561144, lowerbound=1320009.561144, norm of subgrad 35.261020 stepsize= 1.000000 +dualbound = 3871440.833162, lowerbound=1322020.833162, norm of subgrad 1150.274243 dualbound = 3871440.833162, lowerbound=1322020.833162, norm of subgrad 34.282241 stepsize= 1.000000 +dualbound = 3871504.982035, lowerbound=1324737.982035, norm of subgrad 1151.463409 dualbound = 3871504.982035, lowerbound=1324737.982035, norm of subgrad 34.556459 stepsize= 1.000000 +dualbound = 3871552.966407, lowerbound=1325453.966407, norm of subgrad 1151.751695 dualbound = 3871552.966407, lowerbound=1325453.966407, norm of subgrad 33.555691 stepsize= 1.000000 +dualbound = 3871635.907291, lowerbound=1318852.907291, norm of subgrad 1148.862441 dualbound = 3871635.907291, lowerbound=1318852.907291, norm of subgrad 33.390730 stepsize= 1.000000 +dualbound = 3871648.293204, lowerbound=1321943.293204, norm of subgrad 1150.253578 dualbound = 3871648.293204, lowerbound=1321943.293204, norm of subgrad 33.946810 stepsize= 1.000000 +dualbound = 3871698.991460, lowerbound=1316516.991460, norm of subgrad 1147.872812 dualbound = 3871698.991460, lowerbound=1316516.991460, norm of subgrad 33.848165 stepsize= 1.000000 +dualbound = 3871784.977956, lowerbound=1326489.977956, norm of subgrad 1152.218720 dualbound = 3871784.977956, lowerbound=1326489.977956, norm of subgrad 34.698509 stepsize= 1.000000 +dualbound = 3871801.582481, lowerbound=1317396.582481, norm of subgrad 1148.263725 dualbound = 3871801.582481, lowerbound=1317396.582481, norm of subgrad 33.609590 stepsize= 1.000000 +dualbound = 3871872.012794, lowerbound=1324971.012794, norm of subgrad 1151.574146 dualbound = 3871872.012794, lowerbound=1324971.012794, norm of subgrad 34.963271 stepsize= 1.000000 +dualbound = 3871920.453543, lowerbound=1317839.453543, norm of subgrad 1148.453505 dualbound = 3871920.453543, lowerbound=1317839.453543, norm of subgrad 33.977062 stepsize= 1.000000 +dualbound = 3871988.104364, lowerbound=1317350.104364, norm of subgrad 1148.247841 dualbound = 3871988.104364, lowerbound=1317350.104364, norm of subgrad 34.505809 stepsize= 1.000000 +dualbound = 3872020.113632, lowerbound=1326979.113632, norm of subgrad 1152.456556 dualbound = 3872020.113632, lowerbound=1326979.113632, norm of subgrad 34.770811 stepsize= 1.000000 +dualbound = 3872064.636432, lowerbound=1320033.636432, norm of subgrad 1149.409690 dualbound = 3872064.636432, lowerbound=1320033.636432, norm of subgrad 33.963551 stepsize= 1.000000 +dualbound = 3872140.586063, lowerbound=1324130.586063, norm of subgrad 1151.167923 dualbound = 3872140.586063, lowerbound=1324130.586063, norm of subgrad 33.659317 stepsize= 1.000000 +dualbound = 3872187.025710, lowerbound=1320564.025710, norm of subgrad 1149.646479 dualbound = 3872187.025710, lowerbound=1320564.025710, norm of subgrad 34.197071 stepsize= 1.000000 +dualbound = 3872235.944813, lowerbound=1317798.944813, norm of subgrad 1148.434998 dualbound = 3872235.944813, lowerbound=1317798.944813, norm of subgrad 33.954662 stepsize= 1.000000 +dualbound = 3872277.018334, lowerbound=1322351.018334, norm of subgrad 1150.415585 dualbound = 3872277.018334, lowerbound=1322351.018334, norm of subgrad 33.853708 stepsize= 1.000000 +dualbound = 3872314.032880, lowerbound=1323445.032880, norm of subgrad 1150.912696 dualbound = 3872314.032880, lowerbound=1323445.032880, norm of subgrad 34.525564 stepsize= 1.000000 +dualbound = 3872379.908090, lowerbound=1318834.908090, norm of subgrad 1148.863747 dualbound = 3872379.908090, lowerbound=1318834.908090, norm of subgrad 33.449592 stepsize= 1.000000 +dualbound = 3872441.539949, lowerbound=1323820.539949, norm of subgrad 1151.055403 dualbound = 3872441.539949, lowerbound=1323820.539949, norm of subgrad 34.199881 stepsize= 1.000000 +dualbound = 3872484.522540, lowerbound=1316537.522540, norm of subgrad 1147.904840 dualbound = 3872484.522540, lowerbound=1316537.522540, norm of subgrad 34.510616 stepsize= 1.000000 +dualbound = 3872529.510040, lowerbound=1319564.510040, norm of subgrad 1149.213431 dualbound = 3872529.510040, lowerbound=1319564.510040, norm of subgrad 34.234303 stepsize= 1.000000 +dualbound = 3872584.044426, lowerbound=1319985.044426, norm of subgrad 1149.394208 dualbound = 3872584.044426, lowerbound=1319985.044426, norm of subgrad 34.300647 stepsize= 1.000000 +dualbound = 3872626.308389, lowerbound=1328031.308389, norm of subgrad 1152.899522 dualbound = 3872626.308389, lowerbound=1328031.308389, norm of subgrad 34.471205 stepsize= 1.000000 +dualbound = 3872697.481684, lowerbound=1316075.481684, norm of subgrad 1147.693549 dualbound = 3872697.481684, lowerbound=1316075.481684, norm of subgrad 34.585738 stepsize= 1.000000 +dualbound = 3872758.254884, lowerbound=1319352.254884, norm of subgrad 1149.093232 dualbound = 3872758.254884, lowerbound=1319352.254884, norm of subgrad 33.522727 stepsize= 1.000000 +dualbound = 3872811.676763, lowerbound=1322407.676763, norm of subgrad 1150.431518 dualbound = 3872811.676763, lowerbound=1322407.676763, norm of subgrad 33.740508 stepsize= 1.000000 +dualbound = 3872849.785269, lowerbound=1327178.785269, norm of subgrad 1152.515416 dualbound = 3872849.785269, lowerbound=1327178.785269, norm of subgrad 33.927990 stepsize= 1.000000 +dualbound = 3872919.790028, lowerbound=1313169.790028, norm of subgrad 1146.392075 dualbound = 3872919.790028, lowerbound=1313169.790028, norm of subgrad 33.391687 stepsize= 1.000000 +dualbound = 3872973.747181, lowerbound=1322448.747181, norm of subgrad 1150.443283 dualbound = 3872973.747181, lowerbound=1322448.747181, norm of subgrad 33.540381 stepsize= 1.000000 +dualbound = 3873020.443823, lowerbound=1324583.443823, norm of subgrad 1151.388485 dualbound = 3873020.443823, lowerbound=1324583.443823, norm of subgrad 34.039633 stepsize= 1.000000 +dualbound = 3873049.116094, lowerbound=1325488.116094, norm of subgrad 1151.795605 dualbound = 3873049.116094, lowerbound=1325488.116094, norm of subgrad 34.258901 stepsize= 1.000000 +dualbound = 3873117.519832, lowerbound=1324350.519832, norm of subgrad 1151.285160 dualbound = 3873117.519832, lowerbound=1324350.519832, norm of subgrad 34.284162 stepsize= 1.000000 +dualbound = 3873186.744834, lowerbound=1327985.744834, norm of subgrad 1152.863281 dualbound = 3873186.744834, lowerbound=1327985.744834, norm of subgrad 34.310713 stepsize= 1.000000 +dualbound = 3873224.385940, lowerbound=1317935.385940, norm of subgrad 1148.497447 dualbound = 3873224.385940, lowerbound=1317935.385940, norm of subgrad 33.891608 stepsize= 1.000000 +dualbound = 3873267.359964, lowerbound=1317630.359964, norm of subgrad 1148.377272 dualbound = 3873267.359964, lowerbound=1317630.359964, norm of subgrad 34.394389 stepsize= 1.000000 +dualbound = 3873331.178540, lowerbound=1319187.178540, norm of subgrad 1149.027493 dualbound = 3873331.178540, lowerbound=1319187.178540, norm of subgrad 33.776006 stepsize= 1.000000 +dualbound = 3873371.474604, lowerbound=1324765.474604, norm of subgrad 1151.471873 dualbound = 3873371.474604, lowerbound=1324765.474604, norm of subgrad 34.092463 stepsize= 1.000000 +dualbound = 3873420.380246, lowerbound=1323469.380246, norm of subgrad 1150.900682 dualbound = 3873420.380246, lowerbound=1323469.380246, norm of subgrad 33.939735 stepsize= 1.000000 +dualbound = 3873472.639444, lowerbound=1321236.639444, norm of subgrad 1149.962886 dualbound = 3873472.639444, lowerbound=1321236.639444, norm of subgrad 35.075051 stepsize= 1.000000 +dualbound = 3873520.211552, lowerbound=1319018.211552, norm of subgrad 1148.972677 dualbound = 3873520.211552, lowerbound=1319018.211552, norm of subgrad 34.169754 stepsize= 1.000000 +dualbound = 3873567.493729, lowerbound=1326750.493729, norm of subgrad 1152.345215 dualbound = 3873567.493729, lowerbound=1326750.493729, norm of subgrad 34.587312 stepsize= 1.000000 +dualbound = 3873632.831587, lowerbound=1319665.831587, norm of subgrad 1149.250117 dualbound = 3873632.831587, lowerbound=1319665.831587, norm of subgrad 34.283201 stepsize= 1.000000 +dualbound = 3873692.411863, lowerbound=1315672.411863, norm of subgrad 1147.498763 dualbound = 3873692.411863, lowerbound=1315672.411863, norm of subgrad 33.772478 stepsize= 1.000000 +dualbound = 3873759.228737, lowerbound=1324895.228737, norm of subgrad 1151.512583 dualbound = 3873759.228737, lowerbound=1324895.228737, norm of subgrad 33.953157 stepsize= 1.000000 +dualbound = 3873785.122638, lowerbound=1324010.122638, norm of subgrad 1151.173802 dualbound = 3873785.122638, lowerbound=1324010.122638, norm of subgrad 34.884006 stepsize= 1.000000 +dualbound = 3873829.654101, lowerbound=1316942.654101, norm of subgrad 1148.084777 dualbound = 3873829.654101, lowerbound=1316942.654101, norm of subgrad 34.648686 stepsize= 1.000000 +dualbound = 3873874.911556, lowerbound=1323134.911556, norm of subgrad 1150.776221 dualbound = 3873874.911556, lowerbound=1323134.911556, norm of subgrad 34.586955 stepsize= 1.000000 +dualbound = 3873942.419221, lowerbound=1322435.419221, norm of subgrad 1150.452267 dualbound = 3873942.419221, lowerbound=1322435.419221, norm of subgrad 34.241899 stepsize= 1.000000 +dualbound = 3873996.952966, lowerbound=1322578.952966, norm of subgrad 1150.529857 dualbound = 3873996.952966, lowerbound=1322578.952966, norm of subgrad 34.562028 stepsize= 1.000000 +dualbound = 3874041.180375, lowerbound=1322001.180375, norm of subgrad 1150.273959 dualbound = 3874041.180375, lowerbound=1322001.180375, norm of subgrad 34.252407 stepsize= 1.000000 +dualbound = 3874090.170380, lowerbound=1325750.170380, norm of subgrad 1151.889392 dualbound = 3874090.170380, lowerbound=1325750.170380, norm of subgrad 33.882001 stepsize= 1.000000 +dualbound = 3874158.710668, lowerbound=1315349.710668, norm of subgrad 1147.379061 dualbound = 3874158.710668, lowerbound=1315349.710668, norm of subgrad 34.605495 stepsize= 1.000000 +dualbound = 3874193.300872, lowerbound=1321983.300872, norm of subgrad 1150.265318 dualbound = 3874193.300872, lowerbound=1321983.300872, norm of subgrad 34.082110 stepsize= 1.000000 +dualbound = 3874265.120648, lowerbound=1323046.120648, norm of subgrad 1150.710702 dualbound = 3874265.120648, lowerbound=1323046.120648, norm of subgrad 34.070805 stepsize= 1.000000 +dualbound = 3874295.082429, lowerbound=1319545.082429, norm of subgrad 1149.211070 dualbound = 3874295.082429, lowerbound=1319545.082429, norm of subgrad 34.219319 stepsize= 1.000000 +dualbound = 3874342.713187, lowerbound=1317127.713187, norm of subgrad 1148.174513 dualbound = 3874342.713187, lowerbound=1317127.713187, norm of subgrad 34.994725 stepsize= 1.000000 +dualbound = 3874376.702112, lowerbound=1324796.702112, norm of subgrad 1151.481091 dualbound = 3874376.702112, lowerbound=1324796.702112, norm of subgrad 33.852458 stepsize= 1.000000 +dualbound = 3874471.271336, lowerbound=1317409.271336, norm of subgrad 1148.259235 dualbound = 3874471.271336, lowerbound=1317409.271336, norm of subgrad 34.417571 stepsize= 1.000000 +dualbound = 3874507.314015, lowerbound=1323583.314015, norm of subgrad 1150.961474 dualbound = 3874507.314015, lowerbound=1323583.314015, norm of subgrad 34.132722 stepsize= 1.000000 +dualbound = 3874554.740880, lowerbound=1324823.740880, norm of subgrad 1151.498042 dualbound = 3874554.740880, lowerbound=1324823.740880, norm of subgrad 34.226114 stepsize= 1.000000 +dualbound = 3874618.568851, lowerbound=1319006.568851, norm of subgrad 1148.983711 dualbound = 3874618.568851, lowerbound=1319006.568851, norm of subgrad 34.940349 stepsize= 1.000000 +dualbound = 3874668.632085, lowerbound=1315973.632085, norm of subgrad 1147.656147 dualbound = 3874668.632085, lowerbound=1315973.632085, norm of subgrad 34.511784 stepsize= 1.000000 +dualbound = 3874706.503855, lowerbound=1323314.503855, norm of subgrad 1150.845560 dualbound = 3874706.503855, lowerbound=1323314.503855, norm of subgrad 34.188767 stepsize= 1.000000 +dualbound = 3874752.176311, lowerbound=1320504.176311, norm of subgrad 1149.635671 dualbound = 3874752.176311, lowerbound=1320504.176311, norm of subgrad 34.693983 stepsize= 1.000000 +dualbound = 3874796.614324, lowerbound=1324510.614324, norm of subgrad 1151.402021 dualbound = 3874796.614324, lowerbound=1324510.614324, norm of subgrad 35.502648 stepsize= 1.000000 +dualbound = 3874864.531764, lowerbound=1325447.531764, norm of subgrad 1151.785367 dualbound = 3874864.531764, lowerbound=1325447.531764, norm of subgrad 35.070179 stepsize= 1.000000 +dualbound = 3874914.727653, lowerbound=1319481.727653, norm of subgrad 1149.190901 dualbound = 3874914.727653, lowerbound=1319481.727653, norm of subgrad 34.759112 stepsize= 1.000000 +dualbound = 3874987.071480, lowerbound=1321147.071480, norm of subgrad 1149.898287 dualbound = 3874987.071480, lowerbound=1321147.071480, norm of subgrad 34.515849 stepsize= 1.000000 +dualbound = 3875036.580616, lowerbound=1322297.580616, norm of subgrad 1150.378886 dualbound = 3875036.580616, lowerbound=1322297.580616, norm of subgrad 33.518788 stepsize= 1.000000 +dualbound = 3875087.061613, lowerbound=1318316.061613, norm of subgrad 1148.660116 dualbound = 3875087.061613, lowerbound=1318316.061613, norm of subgrad 33.977654 stepsize= 1.000000 +dualbound = 3875137.558397, lowerbound=1319577.558397, norm of subgrad 1149.238686 dualbound = 3875137.558397, lowerbound=1319577.558397, norm of subgrad 34.964221 stepsize= 1.000000 +dualbound = 3875168.690520, lowerbound=1324290.690520, norm of subgrad 1151.268731 dualbound = 3875168.690520, lowerbound=1324290.690520, norm of subgrad 34.060712 stepsize= 1.000000 +dualbound = 3875256.237011, lowerbound=1319629.237011, norm of subgrad 1149.235501 dualbound = 3875256.237011, lowerbound=1319629.237011, norm of subgrad 34.648903 stepsize= 1.000000 +dualbound = 3875280.569694, lowerbound=1320217.569694, norm of subgrad 1149.487525 dualbound = 3875280.569694, lowerbound=1320217.569694, norm of subgrad 33.590664 stepsize= 1.000000 +dualbound = 3875336.844398, lowerbound=1325048.844398, norm of subgrad 1151.607504 dualbound = 3875336.844398, lowerbound=1325048.844398, norm of subgrad 34.745859 stepsize= 1.000000 +dualbound = 3875390.409835, lowerbound=1319442.409835, norm of subgrad 1149.148994 dualbound = 3875390.409835, lowerbound=1319442.409835, norm of subgrad 33.978897 stepsize= 1.000000 +dualbound = 3875437.793779, lowerbound=1320727.793779, norm of subgrad 1149.703350 dualbound = 3875437.793779, lowerbound=1320727.793779, norm of subgrad 33.725123 stepsize= 1.000000 +dualbound = 3875499.860275, lowerbound=1327229.860275, norm of subgrad 1152.534104 dualbound = 3875499.860275, lowerbound=1327229.860275, norm of subgrad 34.162355 stepsize= 1.000000 +dualbound = 3875554.659005, lowerbound=1318470.659005, norm of subgrad 1148.749171 dualbound = 3875554.659005, lowerbound=1318470.659005, norm of subgrad 34.767783 stepsize= 1.000000 +dualbound = 3875602.818339, lowerbound=1322780.818339, norm of subgrad 1150.616278 dualbound = 3875602.818339, lowerbound=1322780.818339, norm of subgrad 34.426143 stepsize= 1.000000 +dualbound = 3875648.278891, lowerbound=1322859.278891, norm of subgrad 1150.653414 dualbound = 3875648.278891, lowerbound=1322859.278891, norm of subgrad 34.488557 stepsize= 1.000000 +dualbound = 3875716.291262, lowerbound=1319118.291262, norm of subgrad 1149.021014 dualbound = 3875716.291262, lowerbound=1319118.291262, norm of subgrad 34.626758 stepsize= 1.000000 +dualbound = 3875750.058537, lowerbound=1327319.058537, norm of subgrad 1152.604034 dualbound = 3875750.058537, lowerbound=1327319.058537, norm of subgrad 34.796081 stepsize= 1.000000 +dualbound = 3875787.807558, lowerbound=1320570.807558, norm of subgrad 1149.660736 dualbound = 3875787.807558, lowerbound=1320570.807558, norm of subgrad 34.449224 stepsize= 1.000000 +dualbound = 3875860.128231, lowerbound=1318081.128231, norm of subgrad 1148.567860 dualbound = 3875860.128231, lowerbound=1318081.128231, norm of subgrad 34.631210 stepsize= 1.000000 +dualbound = 3875917.045564, lowerbound=1321341.045564, norm of subgrad 1149.999585 dualbound = 3875917.045564, lowerbound=1321341.045564, norm of subgrad 34.855664 stepsize= 1.000000 +dualbound = 3875945.035127, lowerbound=1324704.035127, norm of subgrad 1151.430430 dualbound = 3875945.035127, lowerbound=1324704.035127, norm of subgrad 33.406430 stepsize= 1.000000 +dualbound = 3876036.276860, lowerbound=1317403.276860, norm of subgrad 1148.260544 dualbound = 3876036.276860, lowerbound=1317403.276860, norm of subgrad 34.499880 stepsize= 1.000000 +dualbound = 3876080.844828, lowerbound=1329008.844828, norm of subgrad 1153.292610 dualbound = 3876080.844828, lowerbound=1329008.844828, norm of subgrad 33.459946 stepsize= 1.000000 +dualbound = 3876136.113696, lowerbound=1315274.113696, norm of subgrad 1147.357884 dualbound = 3876136.113696, lowerbound=1315274.113696, norm of subgrad 34.803288 stepsize= 1.000000 +dualbound = 3876158.178692, lowerbound=1320813.178692, norm of subgrad 1149.758748 dualbound = 3876158.178692, lowerbound=1320813.178692, norm of subgrad 33.971532 stepsize= 1.000000 +dualbound = 3876226.787699, lowerbound=1319613.787699, norm of subgrad 1149.234871 dualbound = 3876226.787699, lowerbound=1319613.787699, norm of subgrad 34.577580 stepsize= 1.000000 +dualbound = 3876280.209756, lowerbound=1321802.209756, norm of subgrad 1150.185294 dualbound = 3876280.209756, lowerbound=1321802.209756, norm of subgrad 34.313584 stepsize= 1.000000 +dualbound = 3876347.367580, lowerbound=1317950.367580, norm of subgrad 1148.508323 dualbound = 3876347.367580, lowerbound=1317950.367580, norm of subgrad 34.469665 stepsize= 1.000000 +dualbound = 3876373.887779, lowerbound=1324774.887779, norm of subgrad 1151.488119 dualbound = 3876373.887779, lowerbound=1324774.887779, norm of subgrad 34.300440 stepsize= 1.000000 +dualbound = 3876447.217409, lowerbound=1322106.217409, norm of subgrad 1150.311791 dualbound = 3876447.217409, lowerbound=1322106.217409, norm of subgrad 34.414091 stepsize= 1.000000 +dualbound = 3876497.752259, lowerbound=1320152.752259, norm of subgrad 1149.441931 dualbound = 3876497.752259, lowerbound=1320152.752259, norm of subgrad 33.384650 stepsize= 1.000000 +dualbound = 3876566.188043, lowerbound=1323936.188043, norm of subgrad 1151.097384 dualbound = 3876566.188043, lowerbound=1323936.188043, norm of subgrad 34.021108 stepsize= 1.000000 +dualbound = 3876598.872586, lowerbound=1320106.872586, norm of subgrad 1149.448508 dualbound = 3876598.872586, lowerbound=1320106.872586, norm of subgrad 34.024764 stepsize= 1.000000 +dualbound = 3876653.489273, lowerbound=1320430.489273, norm of subgrad 1149.597534 dualbound = 3876653.489273, lowerbound=1320430.489273, norm of subgrad 34.621044 stepsize= 1.000000 +dualbound = 3876706.726751, lowerbound=1320009.726751, norm of subgrad 1149.407120 dualbound = 3876706.726751, lowerbound=1320009.726751, norm of subgrad 34.354585 stepsize= 1.000000 +dualbound = 3876761.827224, lowerbound=1325946.827224, norm of subgrad 1151.959560 dualbound = 3876761.827224, lowerbound=1325946.827224, norm of subgrad 33.452959 stepsize= 1.000000 +dualbound = 3876797.291941, lowerbound=1318963.291941, norm of subgrad 1148.953129 dualbound = 3876797.291941, lowerbound=1318963.291941, norm of subgrad 34.138903 stepsize= 1.000000 +dualbound = 3876849.459877, lowerbound=1323794.459877, norm of subgrad 1151.044943 dualbound = 3876849.459877, lowerbound=1323794.459877, norm of subgrad 34.090584 stepsize= 1.000000 +dualbound = 3876904.703816, lowerbound=1322217.703816, norm of subgrad 1150.335474 dualbound = 3876904.703816, lowerbound=1322217.703816, norm of subgrad 33.305314 stepsize= 1.000000 +dualbound = 3876986.059718, lowerbound=1323374.059718, norm of subgrad 1150.843630 dualbound = 3876986.059718, lowerbound=1323374.059718, norm of subgrad 33.887400 stepsize= 1.000000 +dualbound = 3876986.196587, lowerbound=1328992.196587, norm of subgrad 1153.298832 dualbound = 3876986.196587, lowerbound=1328992.196587, norm of subgrad 33.258636 stepsize= 1.000000 +dualbound = 3877048.635084, lowerbound=1317341.635084, norm of subgrad 1148.247637 dualbound = 3877048.635084, lowerbound=1317341.635084, norm of subgrad 34.546179 stepsize= 1.000000 +dualbound = 3877072.676915, lowerbound=1318662.676915, norm of subgrad 1148.851895 dualbound = 3877072.676915, lowerbound=1318662.676915, norm of subgrad 34.957715 stepsize= 1.000000 +dualbound = 3877137.510571, lowerbound=1321978.510571, norm of subgrad 1150.262801 dualbound = 3877137.510571, lowerbound=1321978.510571, norm of subgrad 34.508458 stepsize= 1.000000 +dualbound = 3877216.732482, lowerbound=1317515.732483, norm of subgrad 1148.346086 dualbound = 3877216.732482, lowerbound=1317515.732483, norm of subgrad 35.527763 stepsize= 1.000000 +dualbound = 3877237.921608, lowerbound=1319350.921608, norm of subgrad 1149.119629 dualbound = 3877237.921608, lowerbound=1319350.921608, norm of subgrad 33.855415 stepsize= 1.000000 +dualbound = 3877307.432544, lowerbound=1327318.432544, norm of subgrad 1152.562550 dualbound = 3877307.432544, lowerbound=1327318.432544, norm of subgrad 33.933920 stepsize= 1.000000 +dualbound = 3877382.848815, lowerbound=1320487.848815, norm of subgrad 1149.583772 dualbound = 3877382.848815, lowerbound=1320487.848815, norm of subgrad 33.621664 stepsize= 1.000000 +dualbound = 3877432.756882, lowerbound=1315864.756882, norm of subgrad 1147.575600 dualbound = 3877432.756882, lowerbound=1315864.756882, norm of subgrad 33.390239 stepsize= 1.000000 +dualbound = 3877470.541609, lowerbound=1321567.541609, norm of subgrad 1150.068060 dualbound = 3877470.541609, lowerbound=1321567.541609, norm of subgrad 33.567614 stepsize= 1.000000 +dualbound = 3877502.019282, lowerbound=1321974.019282, norm of subgrad 1150.267369 dualbound = 3877502.019282, lowerbound=1321974.019282, norm of subgrad 34.241461 stepsize= 1.000000 +dualbound = 3877570.703390, lowerbound=1317092.703390, norm of subgrad 1148.147509 dualbound = 3877570.703390, lowerbound=1317092.703390, norm of subgrad 34.909656 stepsize= 1.000000 +dualbound = 3877588.424839, lowerbound=1321870.424839, norm of subgrad 1150.247549 dualbound = 3877588.424839, lowerbound=1321870.424839, norm of subgrad 34.881535 stepsize= 1.000000 +dualbound = 3877674.142734, lowerbound=1321507.142734, norm of subgrad 1150.052670 dualbound = 3877674.142734, lowerbound=1321507.142734, norm of subgrad 34.636944 stepsize= 1.000000 +dualbound = 3877712.950385, lowerbound=1322116.950385, norm of subgrad 1150.323411 dualbound = 3877712.950385, lowerbound=1322116.950385, norm of subgrad 34.143926 stepsize= 1.000000 +dualbound = 3877780.463355, lowerbound=1325021.463355, norm of subgrad 1151.576512 dualbound = 3877780.463355, lowerbound=1325021.463355, norm of subgrad 34.271168 stepsize= 1.000000 +dualbound = 3877828.299382, lowerbound=1322856.299382, norm of subgrad 1150.634738 dualbound = 3877828.299382, lowerbound=1322856.299382, norm of subgrad 33.938710 stepsize= 1.000000 +dualbound = 3877898.363339, lowerbound=1319573.363339, norm of subgrad 1149.229465 dualbound = 3877898.363339, lowerbound=1319573.363339, norm of subgrad 35.000914 stepsize= 1.000000 +dualbound = 3877933.481976, lowerbound=1321444.481976, norm of subgrad 1150.019775 dualbound = 3877933.481976, lowerbound=1321444.481976, norm of subgrad 33.706359 stepsize= 1.000000 +dualbound = 3878000.593136, lowerbound=1327208.593136, norm of subgrad 1152.544400 dualbound = 3878000.593136, lowerbound=1327208.593136, norm of subgrad 34.887120 stepsize= 1.000000 +dualbound = 3878014.051619, lowerbound=1319069.051619, norm of subgrad 1149.001328 dualbound = 3878014.051619, lowerbound=1319069.051619, norm of subgrad 33.888914 stepsize= 1.000000 +dualbound = 3878104.075148, lowerbound=1322874.075148, norm of subgrad 1150.637247 dualbound = 3878104.075148, lowerbound=1322874.075148, norm of subgrad 34.380569 stepsize= 1.000000 +dualbound = 3878140.723862, lowerbound=1325597.723862, norm of subgrad 1151.853169 dualbound = 3878140.723862, lowerbound=1325597.723862, norm of subgrad 34.708050 stepsize= 1.000000 +dualbound = 3878178.145152, lowerbound=1317996.145152, norm of subgrad 1148.551760 dualbound = 3878178.145152, lowerbound=1317996.145152, norm of subgrad 34.819840 stepsize= 1.000000 +dualbound = 3878235.382261, lowerbound=1327272.382261, norm of subgrad 1152.540838 dualbound = 3878235.382261, lowerbound=1327272.382261, norm of subgrad 33.693280 stepsize= 1.000000 +dualbound = 3878300.534936, lowerbound=1318216.534936, norm of subgrad 1148.613310 dualbound = 3878300.534936, lowerbound=1318216.534936, norm of subgrad 34.075690 stepsize= 1.000000 +dualbound = 3878350.094877, lowerbound=1320090.094877, norm of subgrad 1149.438600 dualbound = 3878350.094877, lowerbound=1320090.094877, norm of subgrad 34.184206 stepsize= 1.000000 +dualbound = 3878403.573531, lowerbound=1323630.573531, norm of subgrad 1150.983307 dualbound = 3878403.573531, lowerbound=1323630.573531, norm of subgrad 34.430781 stepsize= 1.000000 +dualbound = 3878447.903206, lowerbound=1320658.903206, norm of subgrad 1149.688611 dualbound = 3878447.903206, lowerbound=1320658.903206, norm of subgrad 34.195463 stepsize= 1.000000 +dualbound = 3878497.188440, lowerbound=1321917.188440, norm of subgrad 1150.235275 dualbound = 3878497.188440, lowerbound=1321917.188440, norm of subgrad 34.253251 stepsize= 1.000000 +dualbound = 3878555.390787, lowerbound=1325573.390787, norm of subgrad 1151.815693 dualbound = 3878555.390787, lowerbound=1325573.390787, norm of subgrad 34.120410 stepsize= 1.000000 +dualbound = 3878604.926743, lowerbound=1322786.926743, norm of subgrad 1150.649350 dualbound = 3878604.926743, lowerbound=1322786.926743, norm of subgrad 35.447651 stepsize= 1.000000 +dualbound = 3878625.488344, lowerbound=1319870.488344, norm of subgrad 1149.367865 dualbound = 3878625.488344, lowerbound=1319870.488344, norm of subgrad 34.591352 stepsize= 1.000000 +dualbound = 3878715.484032, lowerbound=1325306.484032, norm of subgrad 1151.699824 dualbound = 3878715.484032, lowerbound=1325306.484032, norm of subgrad 34.583171 stepsize= 1.000000 +dualbound = 3878775.451570, lowerbound=1322548.451570, norm of subgrad 1150.494872 dualbound = 3878775.451570, lowerbound=1322548.451570, norm of subgrad 33.911171 stepsize= 1.000000 +dualbound = 3878832.168603, lowerbound=1320392.168603, norm of subgrad 1149.531717 dualbound = 3878832.168603, lowerbound=1320392.168603, norm of subgrad 32.980555 stepsize= 1.000000 +dualbound = 3878882.208094, lowerbound=1320942.208094, norm of subgrad 1149.790941 dualbound = 3878882.208094, lowerbound=1320942.208094, norm of subgrad 33.571409 stepsize= 1.000000 +dualbound = 3878931.079888, lowerbound=1321372.079888, norm of subgrad 1149.984382 dualbound = 3878931.079888, lowerbound=1321372.079888, norm of subgrad 33.776794 stepsize= 1.000000 +dualbound = 3878962.395556, lowerbound=1321502.395556, norm of subgrad 1150.051475 dualbound = 3878962.395556, lowerbound=1321502.395556, norm of subgrad 33.872048 stepsize= 1.000000 +dualbound = 3879042.651577, lowerbound=1324706.651577, norm of subgrad 1151.448501 dualbound = 3879042.651577, lowerbound=1324706.651577, norm of subgrad 34.745590 stepsize= 1.000000 +dualbound = 3879051.573761, lowerbound=1322744.573761, norm of subgrad 1150.600962 dualbound = 3879051.573761, lowerbound=1322744.573761, norm of subgrad 33.866240 stepsize= 1.000000 +dualbound = 3879122.306569, lowerbound=1321786.306569, norm of subgrad 1150.203159 dualbound = 3879122.306569, lowerbound=1321786.306569, norm of subgrad 35.379836 stepsize= 1.000000 +dualbound = 3879162.644217, lowerbound=1326085.644217, norm of subgrad 1152.047154 dualbound = 3879162.644217, lowerbound=1326085.644217, norm of subgrad 34.166323 stepsize= 1.000000 +dualbound = 3879242.575284, lowerbound=1325806.575284, norm of subgrad 1151.896512 dualbound = 3879242.575284, lowerbound=1325806.575284, norm of subgrad 33.748053 stepsize= 1.000000 +dualbound = 3879278.776051, lowerbound=1316756.776051, norm of subgrad 1147.987707 dualbound = 3879278.776051, lowerbound=1316756.776051, norm of subgrad 33.988245 stepsize= 1.000000 +dualbound = 3879328.605160, lowerbound=1325458.605160, norm of subgrad 1151.772810 dualbound = 3879328.605160, lowerbound=1325458.605160, norm of subgrad 34.231990 stepsize= 1.000000 +dualbound = 3879372.152775, lowerbound=1323655.152775, norm of subgrad 1150.970526 dualbound = 3879372.152775, lowerbound=1323655.152775, norm of subgrad 33.489515 stepsize= 1.000000 +dualbound = 3879456.078501, lowerbound=1321958.078501, norm of subgrad 1150.256527 dualbound = 3879456.078501, lowerbound=1321958.078501, norm of subgrad 34.870127 stepsize= 1.000000 +dualbound = 3879443.478676, lowerbound=1322658.478676, norm of subgrad 1150.555291 \ No newline at end of file diff --git a/first.ipynb b/first.ipynb index 28d54ea7745f1796d86353d2481c8273c6c5fc58..b9dc4a1e7ff86e8f5d6fd300b6fe19597fcdd734 100644 --- a/first.ipynb +++ b/first.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "code", - "execution_count": 28, + "execution_count": 1, "metadata": {}, "outputs": [], "source": [ @@ -20,33 +20,24 @@ }, { "cell_type": "code", - "execution_count": 30, + "execution_count": 10, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "11\n", - "\n" - ] - }, - { - "ename": "ValueError", - "evalue": "could not convert string to float: ", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mValueError\u001b[0m Traceback (most recent call last)", - "\u001b[0;32m<ipython-input-30-82752eb5f629>\u001b[0m in \u001b[0;36m<module>\u001b[0;34m\u001b[0m\n\u001b[1;32m 8\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0mi\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mrange\u001b[0m \u001b[0;34m(\u001b[0m\u001b[0;36m0\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mmaxiter\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 9\u001b[0m \u001b[0mg\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mi\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m=\u001b[0m \u001b[0mfile\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mreadline\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 10\u001b[0;31m \u001b[0mg\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mi\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mfloat\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mg\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mi\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 11\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mg\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mi\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m>\u001b[0m\u001b[0mmax\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 12\u001b[0m \u001b[0mmax\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mg\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mi\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;31mValueError\u001b[0m: could not convert string to float: " + "18990\n", + "\n", + "[969553.451655, 970758.779461, 971924.200775, 972984.307895, 974050.286894, 975016.061762, 975976.214386, 976857.818754, 977760.62936, 978588.05556, 979411.139985, 980186.094698, 980974.41441, 981721.176878, 982444.613921, 983171.02103, 983879.968084, 984576.545759, 985258.471322, 985936.788115, 986588.14128, 987246.815095, 987895.734428, 988524.128863, 989129.449336, 989736.924508, 990336.499391, 990914.031479, 991506.303444, 992061.21068, 992637.047976, 993178.099834, 993740.792991, 994261.129073, 994835.624788, 995367.463174, 995920.928944, 996420.301898, 996951.877113, 997463.084155, 997974.436039, 998482.457267, 999002.691491, 999467.191883, 999981.788417, 1000453.968108, 1000938.153018, 1001405.492442, 1001886.591025, 1002336.026325, 1002801.355711, 1003254.96904, 1003732.835645, 1004183.951977, 1004626.296423, 1005064.204365, 1005498.457882, 1005950.67812, 1006384.873797, 1006840.841636, 1007268.752472, 1007693.878602, 1008110.248807, 1008533.624709, 1008948.165899, 1009335.501422, 1009761.032886, 1010161.821032, 1010555.515498, 1010938.708109, 1011354.698029, 1011737.349062, 1012124.672395, 1012491.698884, 1012899.018327, 1013277.181281, 1013668.447685, 1014016.736144, 1014385.50932, 1014775.580053, 1015151.03572, 1015525.211372, 1015860.274163, 1016246.506218, 1016599.670996, 1016958.492361, 1017340.393463, 1017678.426981, 1018042.027186, 1018401.860922, 1018746.625939, 1019098.243497, 1019457.08944, 1019763.685542, 1020121.623034, 1020480.034263, 1020791.693755, 1021118.490274, 1021444.545959, 1021795.434624, 1022127.25734, 1022404.702147, 1022744.538535, 1023079.111143, 1023405.337037, 1023675.540364, 1024004.720538, 1024331.240105, 1024638.748, 1024928.272157, 1025249.072402, 1025562.331831, 1025854.480702, 1026155.358645, 1026452.839006, 1026745.500403, 1027073.222303, 1027360.663652, 1027643.729054, 1027932.986969, 1028250.188502, 1028528.374674, 1028810.517238, 1029144.046824, 1029377.889133, 1029669.767399, 1029960.237006, 1030229.370867, 1030538.706498, 1030810.172786, 1031041.876915, 1031365.216847, 1031627.626269, 1031896.559198, 1032176.137505, 1032424.128313, 1032717.347129, 1032964.547221, 1033251.11753, 1033491.147443, 1033743.714293, 1034036.859497, 1034279.429383, 1034542.392835, 1034800.614165, 1035097.951182, 1035311.356403, 1035571.343546, 1035839.227069, 1036102.203184, 1036329.980631, 1036606.539953, 1036850.104217, 1037103.914519, 1037345.981562, 1037601.072029, 1037885.520819, 1038110.883815, 1038328.753119, 1038597.275097, 1038827.826814, 1039076.970857, 1039334.642483, 1039549.958919, 1039813.7264, 1040036.667717, 1040260.024156, 1040508.371467, 1040752.644956, 1041004.575394, 1041213.923873, 1041434.296929, 1041697.595955, 1041903.836127, 1042146.642475, 1042355.383488, 1042605.304539, 1042849.941208, 1043062.743321, 1043308.815165, 1043547.107389, 1043769.44741, 1043992.443556, 1044229.950052, 1044423.992615, 1044671.021366, 1044900.836716, 1045114.799988, 1045335.537207, 1045589.622798, 1045774.6612, 1046000.548459, 1046240.140954, 1046450.827624, 1046694.428852, 1046906.328658, 1047111.896961, 1047346.777355, 1047519.433647, 1047781.347737, 1047994.147574, 1048214.590813, 1048416.790279, 1048620.59199, 1048847.838973, 1049072.195622, 1049264.591675, 1049506.396164, 1049705.703059, 1049911.209533, 1050127.451644, 1050307.412154, 1050557.61268, 1050764.24564, 1050979.876318, 1051185.336457, 1051383.192064, 1051554.476319, 1051788.900714, 1052008.713707, 1052190.684768, 1052394.379048, 1052644.768685, 1052833.602457, 1053006.206735, 1053207.406872, 1053425.766496, 1053639.488108, 1053823.720603, 1053998.840196, 1054204.975795, 1054419.413611, 1054621.480431, 1054810.26127, 1055017.324733, 1055201.659284, 1055397.533342, 1055601.115807, 1055777.226652, 1056007.142981, 1056204.846523, 1056384.797957, 1056559.282381, 1056791.8215, 1056982.203923, 1057175.52244, 1057359.04981, 1057531.754733, 1057739.744992, 1057921.659589, 1058140.706298, 1058296.211936, 1058493.546014, 1058716.195442, 1058928.609273, 1059083.996506, 1059240.876925, 1059441.926814, 1059666.372497, 1059841.173867, 1060013.732747, 1060189.087523, 1060424.441499, 1060602.723975, 1060780.493345, 1060948.066842, 1061142.704486, 1061356.456939, 1061528.162696, 1061686.381328, 1061894.643505, 1062100.074018, 1062249.197985, 1062441.723271, 1062620.029708, 1062781.128007, 1062988.512814, 1063146.002141, 1063336.738353, 1063523.563617, 1063701.845334, 1063861.227145, 1064045.558133, 1064219.655093, 1064400.530328, 1064563.994996, 1064736.077386, 1064922.447264, 1065092.813697, 1065254.341772, 1065461.29841, 1065611.762097, 1065754.229555, 1065949.173036, 1066113.420756, 1066301.88504, 1066489.131811, 1066677.590542, 1066813.405603, 1066996.387211, 1067171.381613, 1067329.031471, 1067530.649338, 1067673.186582, 1067826.779902, 1068023.047588, 1068176.352927, 1068376.077974, 1068519.04859, 1068687.770671, 1068853.123983, 1068994.749038, 1069196.474914, 1069343.005965, 1069511.899619, 1069683.621933, 1069833.793179, 1070052.641069, 1070197.9929, 1070342.345639, 1070510.379192, 1070674.55718, 1070850.790479, 1071023.983885, 1071166.92293, 1071350.655734, 1071513.135796, 1071672.016656, 1071800.930773, 1072009.46293, 1072133.378132, 1072292.607348, 1072471.7067, 1072633.732094, 1072777.026215, 1072960.662962, 1073091.599814, 1073273.37548, 1073441.263977, 1073584.883392, 1073732.163736, 1073926.362119, 1074053.838954, 1074220.538319, 1074385.988312, 1074520.794862, 1074667.017757, 1074838.430998, 1075033.305697, 1075144.646045, 1075299.295124, 1075468.388246, 1075636.618455, 1075786.498842, 1075937.120515, 1076088.829242, 1076252.242747, 1076405.102484, 1076558.633085, 1076692.575099, 1076863.963442, 1077037.734979, 1077180.790034, 1077325.680783, 1077494.800688, 1077630.189117, 1077804.768062, 1077961.816638, 1078103.135698, 1078218.749153, 1078409.997138, 1078540.685356, 1078728.731674, 1078850.031364, 1078994.13922, 1079150.338734, 1079305.503522, 1079457.744683, 1079607.356678, 1079768.410521, 1079903.094993, 1080061.038937, 1080171.061499, 1080378.159181, 1080529.557506, 1080672.98759, 1080789.115697, 1080971.208754, 1081106.740439, 1081261.660929, 1081397.521427, 1081542.369562, 1081725.127315, 1081855.153478, 1081989.124623, 1082159.533231, 1082292.714794, 1082406.747587, 1082591.663664, 1082741.4713, 1082895.207023, 1083004.937731, 1083159.943844, 1083303.237443, 1083453.871198, 1083585.719973, 1083754.588273, 1083881.592265, 1084062.724251, 1084169.717394, 1084326.991849, 1084490.440129, 1084607.458493, 1084751.881086, 1084903.258976, 1085038.100849, 1085202.894268, 1085332.545492, 1085496.032125, 1085622.52994, 1085790.434477, 1085932.431596, 1086071.54132, 1086194.621177, 1086329.63575, 1086460.934997, 1086624.466645, 1086757.156059, 1086902.103145, 1087067.515568, 1087187.630012, 1087318.563297, 1087478.354729, 1087625.023684, 1087765.363425, 1087898.361644, 1088056.643178, 1088163.673181, 1088302.721527, 1088454.118033, 1088592.866868, 1088735.552544, 1088873.567483, 1088998.088657, 1089166.579581, 1089277.574959, 1089445.788556, 1089577.581077, 1089685.039179, 1089844.889363, 1090007.470004, 1090124.484301, 1090265.030342, 1090374.905239, 1090536.084781, 1090652.78112, 1090783.723154, 1090924.706094, 1091073.279076, 1091219.97149, 1091340.60241, 1091469.21367, 1091622.696884, 1091774.386206, 1091880.765852, 1092021.254246, 1092142.351832, 1092276.624219, 1092427.298763, 1092523.729503, 1092699.080008, 1092812.977771, 1092936.780856, 1093080.377581, 1093233.527605, 1093348.74904, 1093462.968786, 1093583.56953, 1093729.808315, 1093866.211406, 1093999.961012, 1094109.166937, 1094236.994507, 1094375.744467, 1094514.809384, 1094645.132215, 1094742.913352, 1094890.419169, 1094999.658716, 1095129.141066, 1095292.675897, 1095412.297764, 1095555.265043, 1095638.100251, 1095790.146505, 1095937.041464, 1096008.541877, 1096170.968799, 1096288.995359, 1096424.229513, 1096530.026216, 1096694.142737, 1096790.064128, 1096932.060054, 1097070.483359, 1097163.037926, 1097310.712674, 1097437.362862, 1097528.874229, 1097703.873927, 1097792.368984, 1097936.962781, 1098042.685539, 1098172.356102, 1098290.325572, 1098392.038228, 1098512.560825, 1098670.695246, 1098812.862441, 1098906.939857, 1099037.472394, 1099152.851628, 1099294.588431, 1099419.704094, 1099504.512057, 1099656.810718, 1099757.215779, 1099880.695408, 1099992.694548, 1100134.145896, 1100245.892971, 1100360.400965, 1100478.509003, 1100619.79844, 1100708.377712, 1100853.110206, 1100988.392796, 1101073.029348, 1101199.773382, 1101315.476878, 1101456.045078, 1101569.883802, 1101675.875212, 1101811.661905, 1101917.559044, 1102063.036025, 1102124.193249, 1102268.882467, 1102375.061584, 1102534.03594, 1102635.009613, 1102753.846128, 1102858.316899, 1102983.503111, 1103084.412294, 1103211.792137, 1103358.658117, 1103448.934849, 1103582.799297, 1103688.871891, 1103775.431508, 1103920.612224, 1104038.634396, 1104166.905972, 1104265.459924, 1104387.396169, 1104509.301197, 1104601.128193, 1104733.771686, 1104872.94601, 1104965.15691, 1105092.785809, 1105186.833571, 1105313.949878, 1105444.022131, 1105535.049841, 1105666.729737, 1105771.828051, 1105921.883563, 1105997.561509, 1106078.953979, 1106223.642679, 1106347.495491, 1106469.698988, 1106584.454137, 1106710.480702, 1106785.205332, 1106915.915331, 1107018.212822, 1107155.065304, 1107257.176793, 1107373.453364, 1107460.413413, 1107613.835891, 1107706.355604, 1107814.042156, 1107911.798612, 1108046.43943, 1108143.808783, 1108274.015443, 1108348.61103, 1108491.463274, 1108589.392071, 1108738.73891, 1108812.857176, 1108924.87625, 1109032.221219, 1109149.269893, 1109262.386827, 1109371.366064, 1109465.047628, 1109581.6851, 1109709.033198, 1109826.04153, 1109950.63116, 1110012.210492, 1110131.227851, 1110232.745236, 1110374.676438, 1110459.865578, 1110584.485863, 1110685.508956, 1110771.802409, 1110943.579764, 1110998.512707, 1111140.611761, 1111214.963031, 1111333.150018, 1111473.995885, 1111520.93717, 1111673.512897, 1111793.391283, 1111880.809331, 1111977.956452, 1112105.852838, 1112200.147861, 1112300.112924, 1112415.931918, 1112545.769532, 1112656.127256, 1112724.051643, 1112811.215495, 1112942.372115, 1113083.145047, 1113164.427192, 1113270.879058, 1113389.449514, 1113491.431534, 1113581.479164, 1113684.771821, 1113772.655866, 1113872.329162, 1114002.014994, 1114076.74659, 1114207.404497, 1114326.007848, 1114392.779545, 1114512.656667, 1114641.619475, 1114732.852156, 1114827.285953, 1114927.391689, 1115035.682229, 1115140.156267, 1115262.505727, 1115323.697104, 1115449.324639, 1115575.471933, 1115654.158775, 1115735.178737, 1115858.783653, 1115963.717842, 1116064.150446, 1116164.358535, 1116277.013971, 1116362.509628, 1116462.147399, 1116567.401474, 1116687.873836, 1116784.38855, 1116882.535084, 1116998.705242, 1117092.002848, 1117186.760699, 1117291.706282, 1117362.815237, 1117478.532842, 1117576.204962, 1117688.829776, 1117797.395678, 1117895.761115, 1117988.46667, 1118096.620948, 1118200.305812, 1118318.935928, 1118416.630979, 1118516.809915, 1118595.957798, 1118698.579275, 1118818.207488, 1118886.988022, 1119004.898184, 1119107.771927, 1119207.656223, 1119300.359285, 1119411.50592, 1119490.179543, 1119619.628628, 1119709.205887, 1119786.809738, 1119896.35091, 1120011.237386, 1120097.2736, 1120193.536463, 1120311.590219, 1120407.848912, 1120512.793198, 1120598.178816, 1120676.931603, 1120782.900847, 1120892.025865, 1120970.745291, 1121094.247245, 1121159.071369, 1121276.289918, 1121370.275555, 1121472.422914, 1121578.197665, 1121685.217203, 1121776.035971, 1121878.935816, 1121966.171414, 1122072.890041, 1122133.45334, 1122286.05085, 1122353.249333, 1122442.562, 1122546.219394, 1122675.8463, 1122720.942816, 1122842.267212, 1122939.34277, 1123055.709222, 1123117.704126, 1123253.455677, 1123326.318716, 1123442.905179, 1123513.866924, 1123637.421375, 1123742.784989, 1123830.352703, 1123907.411042, 1124008.713692, 1124122.914271, 1124204.140895, 1124299.141619, 1124386.059807, 1124465.846457, 1124607.134228, 1124707.569271, 1124783.562645, 1124865.352518, 1124986.5661, 1125091.335386, 1125147.637192, 1125276.095032, 1125353.1617, 1125444.930307, 1125564.324941, 1125643.794906, 1125720.855462, 1125827.386826, 1125939.408205, 1126013.396374, 1126136.6991, 1126218.178197, 1126312.581894, 1126366.462463, 1126515.428526, 1126602.803074, 1126698.896037, 1126796.042007, 1126869.828298, 1126961.898293, 1127060.401287, 1127161.030984, 1127242.063824, 1127334.82011, 1127426.983762, 1127512.433673, 1127611.621661, 1127703.76766, 1127801.225446, 1127878.913761, 1128006.557167, 1128045.69312, 1128144.48417, 1128269.637852, 1128363.144049, 1128441.114006, 1128485.983197, 1128617.667877, 1128698.509894, 1128835.363958, 1128898.983479, 1128984.949805, 1129066.147744, 1129155.4445, 1129237.103319, 1129339.360169, 1129427.39852, 1129529.738195, 1129599.960489, 1129699.953344, 1129790.927102, 1129882.786489, 1129968.674368, 1130070.936095, 1130157.050985, 1130236.300652, 1130336.141477, 1130394.886179, 1130516.501324, 1130592.049152, 1130693.223546, 1130769.682273, 1130846.039941, 1130936.520325, 1131047.209132, 1131133.49477, 1131222.250279, 1131293.715415, 1131400.214583, 1131460.825524, 1131587.596203, 1131636.766516, 1131738.379312, 1131848.952153, 1131943.271988, 1132008.628393, 1132091.816058, 1132173.662536, 1132304.144404, 1132368.405282, 1132456.376592, 1132542.785041, 1132641.259133, 1132676.144539, 1132781.973255, 1132903.996488, 1132961.657225, 1133058.918316, 1133115.094607, 1133244.570003, 1133312.850498, 1133406.503623, 1133479.383009, 1133570.790918, 1133669.744546, 1133752.011341, 1133862.994976, 1133900.359526, 1134014.407571, 1134111.810702, 1134169.762116, 1134258.941651, 1134314.334146, 1134432.859289, 1134517.917436, 1134622.323073, 1134678.11114, 1134766.168744, 1134846.422381, 1134920.712676, 1135010.283825, 1135104.677409, 1135156.798739, 1135257.583481, 1135387.74179, 1135444.606538, 1135525.165576, 1135609.721159, 1135692.612086, 1135786.651426, 1135890.648798, 1135934.50585, 1136034.119881, 1136110.869551, 1136206.738082, 1136278.213485, 1136382.840264, 1136447.37822, 1136535.313434, 1136617.87007, 1136706.903617, 1136785.496806, 1136852.110689, 1136952.154447, 1137046.850951, 1137130.923056, 1137216.786776, 1137283.031253, 1137367.080572, 1137446.804168, 1137539.48144, 1137624.811499, 1137696.242317, 1137768.042589, 1137856.80562, 1137953.787491, 1138009.082696, 1138126.586091, 1138206.631946, 1138282.556836, 1138365.413172, 1138463.830448, 1138520.59175, 1138620.463558, 1138680.55358, 1138765.94379, 1138856.593573, 1138920.671221, 1139034.073287, 1139120.755801, 1139171.053093, 1139290.493143, 1139342.591962, 1139445.715716, 1139516.832792, 1139622.201214, 1139680.479134, 1139751.274309, 1139844.310883, 1139906.013589, 1140020.517678, 1140111.471565, 1140184.068298, 1140273.581002, 1140344.524159, 1140411.555569, 1140496.524456, 1140581.335418, 1140666.124987, 1140749.902505, 1140811.352603, 1140879.485948, 1140966.29395, 1141050.728851, 1141165.72901, 1141235.941114, 1141313.933165, 1141396.238275, 1141464.687433, 1141549.084052, 1141655.762789, 1141719.022949, 1141822.899274, 1141885.41419, 1141962.263828, 1142035.884959, 1142132.178251, 1142230.800077, 1142310.379672, 1142376.442153, 1142465.483216, 1142529.55952, 1142581.588728, 1142687.809978, 1142764.440308, 1142834.012093, 1142931.022257, 1143014.444272, 1143098.242553, 1143151.529024, 1143246.545589, 1143323.238412, 1143402.22383, 1143505.851182, 1143577.845006, 1143647.761808, 1143731.833212, 1143800.207751, 1143890.734039, 1143950.228585, 1144047.107779, 1144136.418481, 1144226.085092, 1144287.494632, 1144366.363289, 1144453.941073, 1144524.404833, 1144621.320216, 1144657.183652, 1144767.585563, 1144821.340949, 1144916.23279, 1144991.71149, 1145091.275338, 1145144.21891, 1145260.094103, 1145318.039177, 1145398.115172, 1145477.438411, 1145542.947395, 1145652.736321, 1145723.90315, 1145787.152332, 1145882.765047, 1145958.794834, 1146013.688409, 1146081.957993, 1146195.424335, 1146269.085372, 1146358.00034, 1146433.292594, 1146518.938645, 1146577.517161, 1146647.598207, 1146755.380571, 1146810.773645, 1146909.271501, 1146961.372145, 1147033.202352, 1147113.874716, 1147204.442208, 1147277.500587, 1147346.85652, 1147458.95083, 1147538.062196, 1147595.558612, 1147686.951612, 1147756.116211, 1147833.386207, 1147929.731493, 1148009.705239, 1148087.901202, 1148105.190193, 1148209.098126, 1148319.649961, 1148381.707687, 1148465.486903, 1148507.907912, 1148626.556119, 1148696.249388, 1148760.014672, 1148853.051033, 1148886.875331, 1148991.748651, 1149089.919555, 1149156.748865, 1149228.557091, 1149320.9474, 1149366.110491, 1149441.2618, 1149532.311008, 1149617.009015, 1149703.040562, 1149772.290034, 1149859.093329, 1149932.422771, 1150010.109614, 1150090.667114, 1150159.097803, 1150237.296633, 1150282.754743, 1150388.072085, 1150441.394951, 1150530.235505, 1150644.386818, 1150675.965971, 1150741.577326, 1150807.217348, 1150862.723011, 1150975.817472, 1151067.561217, 1151095.35437, 1151198.35419, 1151288.583572, 1151359.406618, 1151439.149544, 1151490.818485, 1151577.716096, 1151649.715351, 1151728.944898, 1151809.701882, 1151878.990378, 1151942.679281, 1152025.477258, 1152086.023635, 1152191.677642, 1152266.020899, 1152335.92075, 1152382.203122, 1152428.427918, 1152554.604786, 1152629.903001, 1152709.250058, 1152781.843248, 1152873.837795, 1152932.061219, 1153000.195064, 1153061.047488, 1153141.203455, 1153221.375754, 1153310.405808, 1153365.328192, 1153430.473572, 1153515.97036, 1153605.223588, 1153663.019729, 1153766.940331, 1153818.977681, 1153891.152645, 1153953.908361, 1154046.018315, 1154104.050051, 1154197.989537, 1154273.606096, 1154331.851466, 1154421.515127, 1154462.125337, 1154575.566295, 1154646.516959, 1154708.240417, 1154780.763218, 1154856.686962, 1154914.641483, 1154964.237323, 1155080.860805, 1155166.906832, 1155231.768503, 1155280.264873, 1155374.324177, 1155448.511202, 1155533.383417, 1155559.89553, 1155678.799014, 1155721.310759, 1155797.765276, 1155904.284936, 1155951.498985, 1156053.283604, 1156124.321356, 1156187.975197, 1156265.426956, 1156338.412984, 1156375.217071, 1156458.275615, 1156552.525805, 1156604.133168, 1156676.366498, 1156754.964169, 1156849.893984, 1156912.301217, 1156986.039138, 1157053.808512, 1157079.920536, 1157210.276553, 1157251.577377, 1157335.657251, 1157434.614784, 1157503.080646, 1157554.602912, 1157646.075478, 1157686.165466, 1157823.463449, 1157863.166151, 1157940.163855, 1157982.294857, 1158074.877785, 1158157.174028, 1158218.141309, 1158281.398587, 1158362.226624, 1158433.13201, 1158499.476258, 1158576.394695, 1158646.739583, 1158736.733517, 1158786.657159, 1158865.609848, 1158938.33411, 1159004.637163, 1159085.091524, 1159167.226612, 1159209.495711, 1159310.026146, 1159366.420997, 1159472.833827, 1159498.550972, 1159550.850547, 1159648.934286, 1159742.503851, 1159818.651826, 1159888.478731, 1159922.655221, 1160009.723437, 1160075.670348, 1160142.750449, 1160215.66721, 1160330.8014, 1160334.349755, 1160452.565589, 1160493.5668, 1160600.886202, 1160675.68745, 1160752.146922, 1160800.206613, 1160856.577441, 1160927.650415, 1160995.12101, 1161110.542275, 1161134.471817, 1161232.854467, 1161295.562995, 1161393.520355, 1161428.136988, 1161497.703594, 1161606.98994, 1161674.503687, 1161722.604055, 1161762.455781, 1161836.454055, 1161938.674342, 1162015.076412, 1162057.1342, 1162154.223692, 1162224.984049, 1162291.381364, 1162352.510139, 1162414.557505, 1162512.615246, 1162570.985777, 1162644.838926, 1162702.321132, 1162791.841944, 1162846.112795, 1162911.836191, 1162994.790891, 1163056.433122, 1163123.010143, 1163190.061163, 1163243.783066, 1163332.645399, 1163382.734961, 1163466.221441, 1163522.337085, 1163583.800446, 1163666.800595, 1163740.354828, 1163817.391765, 1163876.205842, 1163943.628611, 1164022.75039, 1164096.758937, 1164174.518558, 1164206.708146, 1164281.64835, 1164333.340951, 1164435.8188, 1164476.321934, 1164538.542618, 1164648.908597, 1164711.007548, 1164783.072552, 1164835.494759, 1164910.957974, 1164984.24605, 1165046.400397, 1165102.58907, 1165187.736142, 1165263.731162, 1165335.350069, 1165377.316943, 1165463.17198, 1165530.223559, 1165619.194178, 1165624.909103, 1165746.883027, 1165803.710281, 1165870.565213, 1165896.696352, 1166016.441624, 1166064.478602, 1166142.244018, 1166207.755925, 1166293.023983, 1166312.154737, 1166385.306736, 1166482.452175, 1166554.447134, 1166587.144282, 1166686.231282, 1166740.623932, 1166789.23964, 1166880.126209, 1166945.835202, 1167034.620644, 1167095.240737, 1167152.170167, 1167230.37709, 1167305.880631, 1167350.240299, 1167426.500265, 1167506.320565, 1167562.2675, 1167612.271985, 1167705.958095, 1167787.044531, 1167819.809657, 1167903.288026, 1167978.854185, 1168045.784282, 1168066.443803, 1168170.696216, 1168220.959246, 1168267.14929, 1168342.735587, 1168433.367894, 1168502.51776, 1168571.051235, 1168639.675299, 1168715.152994, 1168775.601509, 1168844.296436, 1168898.854231, 1168952.494068, 1169026.937286, 1169102.207982, 1169145.778348, 1169224.837148, 1169287.521635, 1169380.332326, 1169432.011506, 1169504.170888, 1169609.148217, 1169610.595914, 1169670.394882, 1169751.267974, 1169836.649866, 1169886.094762, 1169938.840413, 1170053.320993, 1170096.030348, 1170137.149023, 1170234.442927, 1170290.662419, 1170347.919047, 1170415.777291, 1170470.010242, 1170535.076917, 1170643.763637, 1170681.414579, 1170736.519228, 1170807.916781, 1170864.526242, 1170947.737072, 1171025.778807, 1171086.418631, 1171154.576105, 1171191.246018, 1171243.949933, 1171347.656526, 1171409.166081, 1171486.124059, 1171533.017285, 1171628.463529, 1171645.127413, 1171728.947979, 1171824.207847, 1171860.076146, 1171928.301984, 1171994.546962, 1172054.196894, 1172110.013045, 1172202.177401, 1172248.610723, 1172343.757491, 1172347.35671, 1172440.391229, 1172514.914247, 1172569.343204, 1172660.988683, 1172693.022973, 1172774.903422, 1172853.268829, 1172897.955548, 1172956.787517, 1173042.678276, 1173087.231596, 1173187.281269, 1173247.400065, 1173294.627163, 1173349.493859, 1173440.460963, 1173485.986267, 1173554.473052, 1173613.535209, 1173669.26717, 1173763.240803, 1173795.176549, 1173858.541752, 1173954.022821, 1173969.435951, 1174065.789279, 1174135.571444, 1174181.395781, 1174261.217498, 1174320.147231, 1174391.206264, 1174451.507698, 1174546.721638, 1174563.775799, 1174659.967981, 1174721.39225, 1174733.228584, 1174834.544633, 1174890.029619, 1174971.086806, 1175018.691201, 1175079.871336, 1175164.308019, 1175199.657953, 1175285.709909, 1175356.449303, 1175396.351436, 1175473.199418, 1175511.580116, 1175606.41077, 1175642.615446, 1175753.835461, 1175791.340203, 1175843.193887, 1175913.837352, 1175983.041066, 1176025.770431, 1176094.352934, 1176126.640265, 1176265.155834, 1176288.826539, 1176387.307082, 1176425.10583, 1176459.849391, 1176536.312782, 1176611.108038, 1176665.248985, 1176748.963259, 1176835.688237, 1176835.688237, 1176897.245094, 1176980.41467, 1177059.146523, 1177103.867795, 1177156.521235, 1177262.995748, 1177281.752578, 1177347.973934, 1177417.245502, 1177481.19376, 1177553.197883, 1177620.292133, 1177676.408018, 1177743.774254, 1177819.078281, 1177867.866955, 1177938.101459, 1177956.814837, 1178051.244998, 1178134.677859, 1178178.920746, 1178254.139313, 1178284.921337, 1178368.454597, 1178421.746998, 1178514.216719, 1178552.6353, 1178611.073539, 1178679.746682, 1178752.52242, 1178814.648639, 1178841.139312, 1178913.108501, 1178990.038395, 1179046.838202, 1179124.488107, 1179186.353588, 1179228.559039, 1179299.70239, 1179335.815231, 1179398.846922, 1179475.895446, 1179557.488227, 1179593.12826, 1179660.125621, 1179706.062772, 1179780.06461, 1179855.763171, 1179886.107741, 1179993.650289, 1180039.046182, 1180085.58213, 1180144.552148, 1180224.804025, 1180275.151123, 1180324.989188, 1180406.825745, 1180461.154083, 1180489.017309, 1180580.549097, 1180666.129398, 1180717.825719, 1180779.348663, 1180833.914081, 1180887.521446, 1180959.123049, 1181026.945428, 1181057.856669, 1181141.418119, 1181210.893628, 1181279.727027, 1181329.027257, 1181354.515633, 1181465.732232, 1181524.477669, 1181569.679848, 1181604.710505, 1181702.83455, 1181751.623989, 1181790.447689, 1181869.293448, 1181903.260865, 1182006.71736, 1182025.708764, 1182118.523367, 1182181.128564, 1182233.894273, 1182265.200827, 1182327.769865, 1182413.265915, 1182464.833628, 1182532.78869, 1182566.912528, 1182618.346969, 1182733.98286, 1182781.54257, 1182809.128568, 1182867.161477, 1182916.858882, 1183007.651165, 1183092.618963, 1183156.334434, 1183196.035114, 1183245.514884, 1183284.261518, 1183350.276569, 1183422.173293, 1183496.569614, 1183544.899287, 1183621.684905, 1183672.87923, 1183732.705672, 1183797.39294, 1183838.471842, 1183888.700278, 1183971.194584, 1184035.944016, 1184072.517648, 1184123.373855, 1184232.269437, 1184254.609447, 1184328.062051, 1184365.348334, 1184415.170496, 1184494.008481, 1184572.746112, 1184617.719599, 1184691.900221, 1184762.988582, 1184808.457071, 1184861.018786, 1184896.247884, 1184968.91978, 1185038.292105, 1185086.19647, 1185157.042506, 1185221.918763, 1185273.610513, 1185335.052215, 1185408.331647, 1185419.346835, 1185529.45412, 1185575.836093, 1185614.553074, 1185660.512128, 1185721.441853, 1185804.889533, 1185848.043188, 1185913.150474, 1185988.627787, 1186021.591132, 1186076.801229, 1186140.262114, 1186213.507465, 1186275.426976, 1186314.599893, 1186389.965697, 1186437.50644, 1186482.018544, 1186557.157633, 1186613.864899, 1186680.317114, 1186727.730265, 1186805.546129, 1186837.932797, 1186907.669107, 1186957.211865, 1187039.066137, 1187059.334166, 1187177.522341, 1187210.085793, 1187262.35636, 1187329.368149, 1187389.976715, 1187439.831876, 1187486.128532, 1187542.733462, 1187593.327589, 1187668.925969, 1187724.085466, 1187799.366324, 1187858.674564, 1187916.63368, 1187964.256828, 1188001.403222, 1188068.540732, 1188132.28366, 1188184.345889, 1188238.025934, 1188301.912484, 1188383.424722, 1188414.236118, 1188464.598664, 1188552.09389, 1188591.176653, 1188663.329389, 1188700.163668, 1188732.810974, 1188846.137209, 1188886.22229, 1188923.000637, 1188991.662916, 1189052.35074, 1189142.220657, 1189168.07448, 1189233.052475, 1189293.670686, 1189341.335798, 1189416.542352, 1189455.734325, 1189509.466676, 1189573.048457, 1189598.20106, 1189685.609628, 1189742.775641, 1189780.024941, 1189827.802419, 1189893.570137, 1189967.147897, 1190030.614039, 1190063.036973, 1190140.58046, 1190184.472499, 1190238.995126, 1190314.064937, 1190373.220055, 1190421.692051, 1190468.555625, 1190553.202659, 1190589.610262, 1190634.096782, 1190693.516797, 1190743.502578, 1190818.62289, 1190893.57847, 1190927.776899, 1190936.080934, 1191040.453935, 1191095.432189, 1191165.474503, 1191195.590507, 1191271.736929, 1191284.973008, 1191393.343381, 1191413.713489, 1191484.314412, 1191546.29365, 1191591.494282, 1191628.871733, 1191682.074162, 1191742.780077, 1191822.479551, 1191883.850207, 1191930.186883, 1191971.273108, 1192032.045954, 1192078.117022, 1192148.449146, 1192189.841916, 1192278.581053, 1192310.796658, 1192352.002408, 1192454.08385, 1192483.040599, 1192534.732933, 1192573.802519, 1192640.510308, 1192721.944184, 1192740.426499, 1192806.608988, 1192863.763475, 1192925.250559, 1192979.243667, 1193034.107932, 1193089.261126, 1193142.308543, 1193174.921296, 1193265.90495, 1193300.784125, 1193367.774014, 1193398.850377, 1193490.455233, 1193537.723336, 1193587.731739, 1193628.30956, 1193682.929418, 1193753.193289, 1193795.093148, 1193845.969867, 1193930.374661, 1193982.970971, 1194047.990632, 1194048.0147, 1194124.628551, 1194200.061616, 1194253.999256, 1194261.689774, 1194319.68175, 1194414.715648, 1194463.797613, 1194517.543151, 1194559.012701, 1194618.364636, 1194654.862093, 1194739.027608, 1194771.181992, 1194841.680483, 1194879.681081, 1194955.530175, 1194998.924212, 1195037.877089, 1195118.287066, 1195170.17487, 1195212.049481, 1195267.227894, 1195274.168793, 1195379.885276, 1195427.352085, 1195491.511819, 1195502.846065, 1195563.741091, 1195635.829174, 1195706.059609, 1195768.996952, 1195793.697382, 1195853.435881, 1195910.598298, 1195944.349054, 1196034.750085, 1196062.622208, 1196149.963492, 1196191.904019, 1196238.034982, 1196278.577703, 1196357.806205, 1196368.927134, 1196437.588697, 1196488.802438, 1196554.231019, 1196585.791415, 1196637.025453, 1196714.605934, 1196772.940189, 1196824.637687, 1196854.570897, 1196950.418401, 1196964.082977, 1197040.432843, 1197074.034608, 1197173.513763, 1197200.024939, 1197269.209457, 1197290.212703, 1197356.335494, 1197392.504661, 1197467.22817, 1197492.165438, 1197545.50908, 1197617.313137, 1197684.674755, 1197731.385341, 1197797.652785, 1197837.502331, 1197880.503034, 1197930.094021, 1198014.428308, 1198037.092497, 1198093.728829, 1198154.863778, 1198196.898198, 1198276.222085, 1198306.368767, 1198369.417474, 1198413.4241, 1198481.880024, 1198530.191905, 1198554.411846, 1198608.289328, 1198664.950538, 1198737.381911, 1198789.043745, 1198841.597931, 1198905.184319, 1198943.818918, 1198991.607133, 1199049.700773, 1199109.889422, 1199137.379965, 1199194.403642, 1199279.003728, 1199333.834211, 1199382.818779, 1199402.557918, 1199449.598569, 1199519.332133, 1199571.704694, 1199630.599637, 1199663.243744, 1199721.358427, 1199764.040631, 1199847.172693, 1199872.529905, 1199957.299184, 1199995.451469, 1200015.630226, 1200094.606675, 1200162.523581, 1200217.138528, 1200254.130203, 1200306.052299, 1200368.370539, 1200431.685844, 1200431.685844, 1200517.496923, 1200573.854412, 1200629.657219, 1200667.824517, 1200739.56118, 1200794.245292, 1200836.759677, 1200861.577069, 1200948.130148, 1200990.41359, 1201055.316881, 1201077.886884, 1201166.550962, 1201196.136553, 1201255.946959, 1201295.961621, 1201359.503788, 1201412.959695, 1201472.377993, 1201504.548213, 1201565.876414, 1201611.661107, 1201632.202838, 1201699.25064, 1201757.727184, 1201825.332969, 1201903.997186, 1201903.997186, 1201991.977311, 1202003.600412, 1202037.986771, 1202128.501149, 1202202.074827, 1202253.845244, 1202292.818995, 1202323.266323, 1202376.023381, 1202437.545787, 1202492.566174, 1202553.385051, 1202558.804441, 1202624.834282, 1202720.181085, 1202744.308723, 1202797.675384, 1202832.825927, 1202882.871805, 1202957.642347, 1203015.802435, 1203069.640911, 1203100.93231, 1203155.329679, 1203201.10139, 1203242.522533, 1203285.081924, 1203344.741418, 1203404.57568, 1203447.658078, 1203505.981142, 1203537.333742, 1203599.108612, 1203667.132794, 1203701.430326, 1203746.400037, 1203813.657662, 1203840.142892, 1203944.970419, 1203948.203282, 1204013.984148, 1204055.302849, 1204088.716519, 1204136.368595, 1204202.410772, 1204274.486862, 1204290.611505, 1204364.129745, 1204423.045355, 1204461.819835, 1204536.460508, 1204552.316801, 1204639.035422, 1204653.212794, 1204725.70409, 1204752.759972, 1204823.570279, 1204874.953986, 1204931.680883, 1204989.833369, 1205031.23673, 1205074.333567, 1205115.861946, 1205163.193437, 1205224.261212, 1205287.18915, 1205322.038101, 1205352.089112, 1205432.7788, 1205492.931051, 1205505.991149, 1205581.347748, 1205600.354937, 1205637.800005, 1205750.77626, 1205784.511376, 1205813.401723, 1205872.068109, 1205941.999898, 1205956.406, 1206002.731691, 1206068.955759, 1206132.441461, 1206145.689183, 1206210.021421, 1206246.708248, 1206323.119761, 1206362.251833, 1206417.634079, 1206480.640432, 1206480.746694, 1206534.120641, 1206611.640976, 1206684.008669, 1206706.352653, 1206742.552194, 1206814.987722, 1206863.296615, 1206879.41225, 1206956.650494, 1207006.793277, 1207040.936544, 1207100.044718, 1207136.107723, 1207221.426626, 1207245.976281, 1207291.319413, 1207330.461487, 1207419.63446, 1207436.582701, 1207483.003353, 1207538.402314, 1207593.886626, 1207643.641576, 1207674.196296, 1207707.813967, 1207783.026478, 1207817.60318, 1207863.748231, 1207896.43415, 1207981.320999, 1208032.974103, 1208076.988381, 1208112.600636, 1208177.188053, 1208259.797689, 1208259.797689, 1208301.737288, 1208371.79248, 1208419.661376, 1208431.88482, 1208511.81511, 1208553.062207, 1208603.236188, 1208638.987795, 1208686.592173, 1208728.206401, 1208799.40582, 1208827.493703, 1208891.387616, 1208961.216722, 1208973.095888, 1209046.473373, 1209109.767954, 1209141.091587, 1209169.029226, 1209227.270979, 1209301.104749, 1209342.952255, 1209345.645871, 1209410.330054, 1209453.654907, 1209517.290718, 1209573.772761, 1209622.363979, 1209659.462079, 1209727.418825, 1209773.270471, 1209794.623411, 1209853.220361, 1209884.909624, 1209960.603808, 1210002.392017, 1210042.485309, 1210073.164896, 1210144.404588, 1210175.913866, 1210254.925619, 1210259.914216, 1210328.987688, 1210388.143265, 1210421.544898, 1210471.153492, 1210548.000538, 1210548.000538, 1210622.321828, 1210676.457139, 1210731.335916, 1210760.438593, 1210799.002279, 1210828.455897, 1210891.505515, 1210965.495639, 1211003.681036, 1211048.433055, 1211098.406837, 1211149.218131, 1211194.803705, 1211233.708827, 1211294.060122, 1211332.586741, 1211390.163614, 1211423.233724, 1211457.598701, 1211515.821918, 1211570.057299, 1211618.566999, 1211662.923614, 1211698.003859, 1211753.325602, 1211789.370488, 1211838.192442, 1211882.85476, 1211944.180521, 1212016.087285, 1212053.735848, 1212077.949334, 1212112.427688, 1212174.292705, 1212213.212923, 1212260.26576, 1212310.812882, 1212382.169807, 1212409.183555, 1212445.24686, 1212514.164642, 1212573.305057, 1212609.775075, 1212659.418979, 1212695.991711, 1212740.420941, 1212782.079314, 1212814.48873, 1212860.596439, 1212941.355934, 1212982.730343, 1212987.053969, 1213058.757715, 1213112.737869, 1213171.114861, 1213196.444635, 1213231.153138, 1213307.500813, 1213343.260447, 1213383.501101, 1213439.00688, 1213494.938317, 1213509.732653, 1213560.384793, 1213596.710943, 1213672.547516, 1213693.154608, 1213749.352947, 1213797.144509, 1213861.554641, 1213861.873067, 1213944.309837, 1213999.328027, 1214050.472314, 1214092.836789, 1214112.280891, 1214157.849691, 1214203.943347, 1214260.21314, 1214338.485576, 1214350.110886, 1214439.692975, 1214439.692975, 1214491.985578, 1214545.466023, 1214616.921931, 1214624.624606, 1214645.276604, 1214688.769698, 1214770.47867, 1214835.554883, 1214883.926694, 1214931.336075, 1214931.336075, 1214994.287712, 1215034.902626, 1215093.112481, 1215132.522035, 1215168.467906, 1215222.462898, 1215252.884692, 1215297.933581, 1215375.778777, 1215401.992729, 1215432.287978, 1215465.784017, 1215546.143859, 1215589.909424, 1215627.858288, 1215659.148407, 1215693.180189, 1215744.195873, 1215805.201849, 1215845.85287, 1215892.906809, 1215942.280996, 1215968.70808, 1216021.824747, 1216085.695027, 1216094.704036, 1216151.209095, 1216185.429903, 1216226.691492, 1216286.034454, 1216325.971345, 1216367.102931, 1216417.311473, 1216491.785116, 1216545.278439, 1216565.515674, 1216622.930101, 1216648.762058, 1216670.504186, 1216734.109034, 1216795.389194, 1216807.694484, 1216897.495904, 1216897.495904, 1216945.706584, 1217000.073878, 1217045.614861, 1217066.045863, 1217136.19937, 1217182.434781, 1217230.830592, 1217253.688066, 1217313.392131, 1217348.623019, 1217375.177144, 1217458.016163, 1217492.79417, 1217537.866649, 1217575.389312, 1217635.362876, 1217658.786227, 1217714.443154, 1217754.128824, 1217801.233265, 1217828.559874, 1217875.712504, 1217928.024113, 1217955.541613, 1218006.658808, 1218073.447011, 1218110.234025, 1218158.135476, 1218186.17154, 1218262.42886, 1218296.33671, 1218333.980569, 1218353.941022, 1218414.131525, 1218481.800182, 1218502.17198, 1218511.780819, 1218611.164978, 1218612.846916, 1218693.511581, 1218738.909411, 1218777.082108, 1218800.092433, 1218814.116532, 1218916.093223, 1218939.357627, 1218981.880925, 1219026.000535, 1219070.447685, 1219103.082484, 1219133.003744, 1219198.645613, 1219253.402608, 1219302.337997, 1219324.916741, 1219385.610297, 1219385.610297, 1219461.862812, 1219528.347944, 1219528.347944, 1219602.732941, 1219633.096514, 1219677.16684, 1219728.280561, 1219762.666238, 1219808.391076, 1219847.079176, 1219895.593929, 1219934.191584, 1219996.697502, 1220024.127425, 1220055.432087, 1220102.12291, 1220166.689623, 1220189.259784, 1220224.869574, 1220275.572336, 1220326.228553, 1220379.572817, 1220407.986705, 1220455.341111, 1220498.384563, 1220535.299597, 1220592.866798, 1220633.228756, 1220680.113022, 1220710.105232, 1220770.983856, 1220797.465776, 1220827.743115, 1220889.675153, 1220940.460805, 1220954.74586, 1220999.969769, 1221030.055548, 1221087.805551, 1221143.514161, 1221174.418993, 1221241.564938, 1221281.975709, 1221342.718619, 1221350.496901, 1221391.193662, 1221424.844089, 1221518.021385, 1221535.284449, 1221563.015625, 1221640.523984, 1221651.902771, 1221691.045532, 1221737.733992, 1221791.53371, 1221807.614428, 1221846.106998, 1221910.963235, 1221950.418129, 1222003.455588, 1222044.118774, 1222096.397839, 1222117.543727, 1222169.540411, 1222200.320001, 1222235.79883, 1222269.464239, 1222335.42528, 1222379.055205, 1222414.938142, 1222443.324161, 1222480.851252, 1222536.232482, 1222615.283829, 1222627.469337, 1222695.87617, 1222722.772413, 1222728.303618, 1222795.561066, 1222857.309416, 1222872.655267, 1222918.445178, 1222987.786197, 1223022.912553, 1223084.424145, 1223116.011154, 1223116.011154, 1223157.141217, 1223218.533436, 1223261.630292, 1223304.205661, 1223361.783428, 1223396.543072, 1223440.14195, 1223505.220562, 1223527.878389, 1223552.861702, 1223604.134525, 1223621.64449, 1223701.772042, 1223716.164914, 1223770.806967, 1223821.292026, 1223852.469783, 1223885.852477, 1223930.39182, 1223981.263669, 1224043.203875, 1224043.203875, 1224128.975615, 1224141.556026, 1224193.35426, 1224222.386452, 1224286.256933, 1224324.634535, 1224381.00502, 1224388.602462, 1224435.729801, 1224490.7673, 1224523.976236, 1224566.857048, 1224607.871879, 1224657.079029, 1224687.282306, 1224784.791422, 1224784.791422, 1224829.650591, 1224860.714233, 1224943.528248, 1224943.528248, 1225007.028112, 1225028.230498, 1225087.76682, 1225106.853429, 1225151.430338, 1225201.551645, 1225227.674466, 1225294.741417, 1225302.059335, 1225363.958542, 1225412.383685, 1225452.634446, 1225478.513906, 1225533.770554, 1225555.661484, 1225635.531345, 1225655.000214, 1225685.308456, 1225747.457037, 1225776.337966, 1225821.458196, 1225866.358114, 1225896.580821, 1225940.641813, 1225994.48922, 1226027.239197, 1226106.800053, 1226112.872559, 1226166.367471, 1226204.590914, 1226250.347039, 1226267.332199, 1226293.899478, 1226368.131488, 1226412.980216, 1226461.199609, 1226488.082072, 1226511.136939, 1226552.230866, 1226605.550974, 1226661.062478, 1226700.540025, 1226730.490943, 1226791.801007, 1226808.226849, 1226855.367239, 1226920.236569, 1226960.994237, 1227003.465257, 1227016.498531, 1227064.296025, 1227093.851443, 1227134.055773, 1227185.851916, 1227248.471854, 1227249.629754, 1227324.977005, 1227370.164037, 1227393.702139, 1227447.584451, 1227469.167214, 1227513.828546, 1227548.250895, 1227605.920933, 1227666.473216, 1227679.355083, 1227687.791862, 1227770.185155, 1227852.001101, 1227864.385327, 1227902.79071, 1227916.283838, 1227953.559099, 1228017.872553, 1228067.011959, 1228105.749139, 1228172.251763, 1228172.251763, 1228216.56876, 1228266.094523, 1228311.931658, 1228352.71807, 1228376.51127, 1228435.176973, 1228444.141801, 1228488.160037, 1228565.681603, 1228584.371708, 1228650.577707, 1228670.937976, 1228710.316351, 1228761.28845, 1228769.186307, 1228865.878664, 1228880.628448, 1228913.102508, 1228913.102508, 1228984.529332, 1229027.843072, 1229051.612077, 1229111.003279, 1229169.425886, 1229177.733474, 1229251.49436, 1229261.779273, 1229350.577188, 1229350.577188, 1229417.590046, 1229417.82971, 1229452.030009, 1229508.426287, 1229558.404991, 1229580.8802, 1229644.294548, 1229668.910525, 1229738.193812, 1229772.58764, 1229808.316917, 1229858.715195, 1229858.715195, 1229923.648797, 1229938.322342, 1229993.761673, 1230041.645622, 1230087.716315, 1230132.025517, 1230185.953484, 1230212.564051, 1230246.99166, 1230299.29439, 1230332.901125, 1230369.266361, 1230378.306689, 1230417.62651, 1230484.736887, 1230523.103398, 1230579.287173, 1230596.576769, 1230655.910151, 1230692.559391, 1230709.910989, 1230776.202028, 1230819.472509, 1230826.643831, 1230855.122739, 1230915.135961, 1230972.107933, 1230995.369717, 1231055.160921, 1231081.267621, 1231132.881887, 1231194.670984, 1231194.670984, 1231237.045174, 1231281.385158, 1231337.791884, 1231357.452522, 1231409.434232, 1231436.544774, 1231496.564702, 1231527.732425, 1231559.350421, 1231595.630334, 1231651.506111, 1231678.717106, 1231718.478141, 1231743.359955, 1231802.119504, 1231848.295545, 1231890.555558, 1231899.262036, 1231945.756606, 1232020.297908, 1232043.300236, 1232073.513778, 1232122.418319, 1232153.966506, 1232213.795947, 1232226.223358, 1232260.398188, 1232293.09596, 1232333.26892, 1232382.142537, 1232437.929412, 1232461.109829, 1232505.43698, 1232535.35307, 1232573.043168, 1232625.545438, 1232676.424241, 1232695.413394, 1232729.21846, 1232796.961383, 1232839.46594, 1232844.651209, 1232896.210356, 1232969.505297, 1232972.858488, 1233033.007544, 1233047.467994, 1233126.186535, 1233128.442576, 1233164.145617, 1233203.272274, 1233236.595629, 1233299.660656, 1233352.199378, 1233369.742728, 1233424.358667, 1233464.392777, 1233510.440115, 1233541.809684, 1233582.083157, 1233595.084276, 1233627.799903, 1233704.572951, 1233712.704906, 1233763.376435, 1233778.942358, 1233830.009495, 1233890.605161, 1233924.502052, 1233924.502052, 1234005.278297, 1234022.699699, 1234099.125611, 1234106.054402, 1234149.980601, 1234197.51633, 1234215.53204, 1234254.918263, 1234310.652668, 1234346.515005, 1234375.290084, 1234411.015556, 1234481.663492, 1234488.180044, 1234531.023529, 1234568.295959, 1234622.503362, 1234626.023269, 1234672.812372, 1234716.973711, 1234777.457471, 1234805.672345, 1234864.215517, 1234896.55749, 1234923.97297, 1234964.517777, 1234995.07653, 1235014.897238, 1235068.036049, 1235115.720869, 1235138.359094, 1235166.713864, 1235229.097843, 1235291.659487, 1235300.226206, 1235319.527411, 1235372.13091, 1235425.384355, 1235451.85765, 1235483.123134, 1235534.358621, 1235575.177691, 1235609.048193, 1235666.074828, 1235677.528815, 1235724.902989, 1235724.902989, 1235770.738844, 1235819.333315, 1235886.346806, 1235912.361496, 1235926.707119, 1235979.895367, 1235998.09404, 1236067.769864, 1236109.645153, 1236140.093604, 1236181.280889, 1236204.588325, 1236247.26013, 1236305.266063, 1236316.638448, 1236382.204132, 1236405.280634, 1236445.796575, 1236463.919574, 1236494.123426, 1236497.367425, 1236588.633627, 1236611.315848, 1236658.504209, 1236694.835357, 1236755.630167, 1236777.3734, 1236811.709333, 1236841.116849, 1236891.947448, 1236917.645219, 1236958.488347, 1236993.971229, 1237046.997014, 1237081.265327, 1237120.22739, 1237178.424202, 1237186.225811, 1237241.749777, 1237266.64692, 1237286.182721, 1237356.955626, 1237385.342075, 1237415.771327, 1237442.426757, 1237507.339365, 1237520.630337, 1237552.549564, 1237597.154623, 1237622.154388, 1237649.043507, 1237720.574778, 1237746.016832, 1237755.758046, 1237815.664738, 1237882.397955, 1237897.99473, 1237943.748338, 1237983.457449, 1238013.837747, 1238050.389146, 1238090.905514, 1238126.019397, 1238151.726217, 1238190.271915, 1238237.540416, 1238283.877319, 1238305.607025, 1238355.906249, 1238396.046371, 1238449.263304, 1238459.096068, 1238522.471406, 1238554.40165, 1238567.420896, 1238610.073238, 1238658.915711, 1238694.737038, 1238715.606984, 1238758.193852, 1238816.7262, 1238822.929324, 1238869.177323, 1238883.155381, 1238961.577647, 1238961.577647, 1239002.430124, 1239044.857691, 1239106.170785, 1239157.625658, 1239164.06593, 1239181.547039, 1239212.146678, 1239266.448525, 1239335.518217, 1239357.445473, 1239389.371614, 1239426.843396, 1239493.582646, 1239513.278159, 1239522.170967, 1239573.448075, 1239595.356612, 1239647.447855, 1239688.012698, 1239706.055405, 1239730.497463, 1239792.041307, 1239856.152342, 1239856.152342, 1239886.387316, 1239951.128502, 1239963.471721, 1240030.33769, 1240065.276362, 1240108.297661, 1240146.470345, 1240146.470345, 1240189.53567, 1240270.553896, 1240278.48079, 1240303.240632, 1240366.73507, 1240370.997464, 1240401.031934, 1240447.384261, 1240524.799184, 1240529.64976, 1240575.982109, 1240614.610497, 1240621.021746, 1240662.304955, 1240725.815536, 1240770.944155, 1240779.942775, 1240824.221599, 1240850.191956, 1240931.465223, 1240931.465223, 1240995.991524, 1241010.842068, 1241068.960191, 1241101.181551, 1241122.506994, 1241172.861387, 1241188.100019, 1241237.698979, 1241292.318785, 1241296.110908, 1241355.151567, 1241381.658727, 1241409.367663, 1241447.934287, 1241460.400206, 1241525.100861, 1241551.554237, 1241592.409019, 1241637.74253, 1241665.337304, 1241731.46151, 1241755.821265, 1241814.622686, 1241833.850627, 1241865.162498, 1241888.625892, 1241923.846854, 1241975.210049, 1241995.018477, 1242061.215347, 1242069.151194, 1242113.273779, 1242139.185948, 1242222.020938, 1242232.885254, 1242301.109244, 1242301.109244, 1242371.807019, 1242391.37879, 1242393.325914, 1242437.560354, 1242492.550833, 1242523.611587, 1242537.638985, 1242578.852214, 1242638.835055, 1242667.028801, 1242703.912022, 1242738.448338, 1242764.84409, 1242803.259575, 1242842.876941, 1242858.829466, 1242910.587858, 1242935.264171, 1242991.998953, 1243029.180247, 1243055.386675, 1243083.476945, 1243122.277111, 1243171.62095, 1243207.573763, 1243265.418269, 1243270.274855, 1243305.296059, 1243350.222332, 1243375.029215, 1243443.160721, 1243456.303758, 1243509.86692, 1243510.051476, 1243549.80967, 1243602.2166, 1243647.634396, 1243671.466118, 1243682.171781, 1243747.375672, 1243780.720419, 1243832.561137, 1243876.294194, 1243902.13078, 1243924.643983, 1243965.474286, 1243978.21753, 1244048.090338, 1244077.297053, 1244115.792798, 1244130.864007, 1244169.860169, 1244212.938649, 1244238.92826, 1244282.676398, 1244306.281295, 1244367.24245, 1244367.24245, 1244440.705604, 1244489.454185, 1244506.248345, 1244531.187968, 1244567.140715, 1244605.963875, 1244628.897948, 1244679.563106, 1244679.757641, 1244734.626794, 1244786.8379, 1244816.754525, 1244859.695647, 1244887.774538, 1244925.566337, 1244967.80737, 1244974.769977, 1245018.683189, 1245064.695892, 1245094.904535, 1245119.637108, 1245188.786354, 1245202.090125, 1245225.385974, 1245242.823168, 1245305.632981, 1245357.013651, 1245373.152205, 1245393.729267, 1245440.217673, 1245475.533346, 1245515.992392, 1245543.32403, 1245606.87698, 1245606.87698, 1245657.781669, 1245671.701645, 1245741.169893, 1245747.784277, 1245770.631651, 1245837.178655, 1245862.205662, 1245903.378049, 1245941.487038, 1245961.530525, 1246005.377932, 1246036.740149, 1246070.073308, 1246113.920415, 1246149.550139, 1246178.637969, 1246183.096911, 1246266.116805, 1246295.250335, 1246337.860024, 1246350.266098, 1246390.563155, 1246414.903422, 1246471.532032, 1246483.767792, 1246528.345135, 1246536.080741, 1246593.864211, 1246611.26159, 1246633.268073, 1246676.705616, 1246734.222867, 1246751.85049, 1246804.684141, 1246856.782659, 1246858.23014, 1246915.058271, 1246924.142672, 1246969.990791, 1246980.973578, 1247064.144916, 1247081.938199, 1247111.038829, 1247142.833897, 1247158.494042, 1247176.49701, 1247226.819239, 1247286.228571, 1247339.794061, 1247354.246078, 1247392.816756, 1247420.726546, 1247439.646273, 1247465.928635, 1247519.432936, 1247528.420787, 1247577.028302, 1247629.81934, 1247682.059503, 1247701.085541, 1247729.036502, 1247760.041704, 1247780.436437, 1247827.26405, 1247861.286462, 1247897.331987, 1247908.100931, 1247948.946763, 1247994.102639, 1247998.441402, 1248057.421489, 1248099.241258, 1248158.176102, 1248158.904333, 1248199.372331, 1248231.123386, 1248273.286401, 1248302.159957, 1248334.120015, 1248352.464134, 1248388.868057, 1248441.59159, 1248465.931459, 1248530.302415, 1248530.769934, 1248587.016204, 1248596.98619, 1248641.512222, 1248671.822805, 1248729.43989, 1248729.43989, 1248795.846177, 1248795.846177, 1248851.551608, 1248876.483292, 1248923.681369, 1248941.645315, 1248993.609379, 1249024.269731, 1249026.789592, 1249049.222128, 1249112.884611, 1249151.376862, 1249196.405474, 1249217.751692, 1249243.131023, 1249294.417379, 1249318.339723, 1249356.34462, 1249396.689176, 1249421.58479, 1249434.810373, 1249490.61149, 1249519.524135, 1249519.524135, 1249599.387565, 1249625.765497, 1249638.138684, 1249693.716146, 1249736.919157, 1249744.579896, 1249803.744066, 1249813.246743, 1249873.587094, 1249907.099848, 1249936.547614, 1249964.150444, 1249993.782655, 1250029.536021, 1250059.265076, 1250103.796342, 1250131.509256, 1250143.431887, 1250189.090301, 1250235.645476, 1250266.41089, 1250284.381905, 1250300.365915, 1250380.52233, 1250413.313904, 1250444.465624, 1250444.465624, 1250490.542143, 1250554.156001, 1250554.156001, 1250593.516735, 1250628.801119, 1250672.042536, 1250716.964341, 1250757.366927, 1250757.366927, 1250797.998215, 1250842.148776, 1250858.609582, 1250904.836851, 1250951.098114, 1250956.044425, 1251001.011375, 1251038.211482, 1251089.893064, 1251113.383166, 1251144.849985, 1251160.191032, 1251210.753329, 1251210.753329, 1251265.488128, 1251301.998735, 1251336.857198, 1251389.901102, 1251400.798423, 1251436.942202, 1251470.265887, 1251505.942375, 1251555.118045, 1251555.118045, 1251628.72683, 1251628.72683, 1251679.42095, 1251705.376342, 1251753.573192, 1251772.013415, 1251782.320973, 1251817.208985, 1251859.816829, 1251869.077145, 1251912.204906, 1251950.949359, 1251996.810245, 1252032.209438, 1252055.548237, 1252080.092965, 1252113.134627, 1252155.442266, 1252204.633433, 1252204.635315, 1252277.829416, 1252277.829416, 1252321.856457, 1252358.941702, 1252393.35215, 1252427.047517, 1252454.248753, 1252454.248753, 1252489.884849, 1252549.113375, 1252572.681286, 1252607.5183, 1252641.002163, 1252692.018403, 1252739.127508, 1252773.784782, 1252773.784782, 1252795.133693, 1252818.805295, 1252848.953585, 1252949.35596, 1252949.35596, 1252991.562466, 1253012.128716, 1253059.01891, 1253081.920543, 1253101.275843, 1253158.734264, 1253164.513875, 1253211.182942, 1253228.505768, 1253259.29817, 1253303.9197, 1253339.276588, 1253374.199645, 1253399.624783, 1253438.820963, 1253471.463201, 1253495.376002, 1253537.736335, 1253585.449965, 1253587.698694, 1253608.498086, 1253652.095737, 1253685.137717, 1253717.039193, 1253758.940132, 1253780.879898, 1253813.111887, 1253865.140443, 1253872.82168, 1253915.693148, 1253948.609671, 1253978.950525, 1253978.950525, 1254048.427583, 1254117.092687, 1254137.485853, 1254165.590983, 1254181.609083, 1254220.229038, 1254232.104558, 1254270.562926, 1254295.289447, 1254332.279101, 1254355.547477, 1254390.511835, 1254434.628141, 1254473.444619, 1254506.509435, 1254526.636751, 1254563.067441, 1254598.621954, 1254610.226063, 1254646.759896, 1254692.654288, 1254723.59959, 1254756.765599, 1254777.844518, 1254830.841424, 1254843.19981, 1254898.034549, 1254936.769296, 1254936.769296, 1254982.92706, 1255014.938699, 1255044.171891, 1255064.674478, 1255124.021434, 1255163.639254, 1255177.19652, 1255207.985468, 1255245.166424, 1255267.411583, 1255298.604443, 1255319.508209, 1255387.557808, 1255387.557808, 1255429.178195, 1255486.289896, 1255496.827768, 1255504.175088, 1255560.117562, 1255598.133562, 1255636.377876, 1255636.377876, 1255691.608376, 1255703.302877, 1255775.023182, 1255775.023182, 1255834.3532, 1255847.6581, 1255882.710422, 1255920.181826, 1255923.999145, 1255973.862222, 1256007.588746, 1256050.379053, 1256076.395434, 1256103.497214, 1256126.134557, 1256157.78397, 1256182.874031, 1256240.142861, 1256267.301782, 1256273.033522, 1256326.944507, 1256351.402098, 1256376.672241, 1256419.138558, 1256458.123193, 1256462.392059, 1256500.116803, 1256538.557784, 1256579.373539, 1256611.785239, 1256623.903811, 1256702.656045, 1256702.656045, 1256731.156481, 1256738.903497, 1256781.378049, 1256833.725897, 1256849.395087, 1256879.686344, 1256930.67762, 1256952.071308, 1257002.912793, 1257024.328075, 1257041.013653, 1257077.405233, 1257093.646459, 1257144.346825, 1257180.482957, 1257188.912855, 1257228.740547, 1257246.157393, 1257302.046376, 1257332.662975, 1257387.774599, 1257398.247103, 1257427.61614, 1257452.957564, 1257485.358963, 1257533.862761, 1257547.451947, 1257564.135358, 1257608.818628, 1257610.866728, 1257674.158047, 1257689.203716, 1257729.305238, 1257775.232634, 1257802.230572, 1257836.119819, 1257904.353719, 1257904.353719, 1257928.993071, 1257943.395926, 1257998.856097, 1258023.33412, 1258065.188965, 1258075.852068, 1258111.621425, 1258136.833073, 1258152.381659, 1258182.209429, 1258227.914693, 1258251.049075, 1258341.730335, 1258341.730335, 1258358.701531, 1258391.457995, 1258406.771898, 1258457.192536, 1258493.887867, 1258527.167956, 1258535.903707, 1258567.941941, 1258606.868556, 1258639.954849, 1258663.365418, 1258723.628845, 1258749.797993, 1258779.029082, 1258803.557442, 1258826.796592, 1258830.949655, 1258871.10778, 1258914.921448, 1258941.788734, 1258966.336537, 1259017.213936, 1259037.234302, 1259083.924623, 1259088.07769, 1259145.392759, 1259161.460793, 1259221.039154, 1259258.872685, 1259263.424403, 1259263.781852, 1259304.742538, 1259344.279035, 1259393.466556, 1259393.466556, 1259438.630985, 1259465.519744, 1259486.785577, 1259531.123579, 1259561.090705, 1259589.556832, 1259625.307843, 1259663.814702, 1259689.41926, 1259723.945273, 1259765.835938, 1259799.899665, 1259802.35801, 1259845.483434, 1259845.483434, 1259884.797082, 1259917.716678, 1259941.086876, 1259968.662669, 1260018.141183, 1260043.299435, 1260087.92533, 1260129.143641, 1260162.90862, 1260162.90862, 1260216.894147, 1260217.011262, 1260263.5487, 1260293.777154, 1260335.777977, 1260335.777977, 1260360.346569, 1260422.873252, 1260456.647872, 1260456.647872, 1260507.098647, 1260513.651786, 1260550.042238, 1260580.25825, 1260614.060646, 1260643.089495, 1260703.215598, 1260718.662252, 1260757.3427, 1260757.3427, 1260792.447293, 1260816.87699, 1260858.035663, 1260896.915269, 1260919.787451, 1260951.54715, 1260982.659742, 1260999.376862, 1261024.804664, 1261075.178972, 1261084.719221, 1261139.75678, 1261164.442635, 1261222.833536, 1261222.833536, 1261282.420959, 1261282.420959, 1261310.531535, 1261342.015215, 1261357.109025, 1261392.216467, 1261415.640844, 1261463.557055, 1261493.268373, 1261501.488171, 1261558.202749, 1261569.248348, 1261626.604501, 1261652.122688, 1261701.759939, 1261701.759939, 1261746.363761, 1261772.807272, 1261818.402813, 1261818.402813, 1261841.415353, 1261870.681727, 1261900.978261, 1261960.06475, 1261988.696414, 1262011.836586, 1262050.161783, 1262050.161783, 1262114.2591, 1262114.2591, 1262147.714527, 1262157.640848, 1262216.392597, 1262229.160328, 1262274.801042, 1262297.733745, 1262330.054169, 1262348.790763, 1262395.843823, 1262440.534068, 1262440.534068, 1262477.039686, 1262505.537046, 1262516.794756, 1262565.411816, 1262571.154758, 1262615.391878, 1262653.21766, 1262680.540917, 1262726.229016, 1262744.229276, 1262746.499436, 1262789.322906, 1262806.042022, 1262873.993389, 1262890.482657, 1262923.70064, 1262949.795023, 1263005.004708, 1263018.083239, 1263065.347298, 1263065.347298, 1263094.496406, 1263115.700865, 1263136.91783, 1263185.877777, 1263216.634998, 1263216.634998, 1263262.87436, 1263279.348384, 1263335.809572, 1263364.822251, 1263382.462844, 1263405.463427, 1263463.194253, 1263463.194253, 1263511.655374, 1263519.656682, 1263550.161842, 1263558.737489, 1263630.55068, 1263650.92414, 1263665.808181, 1263704.90525, 1263754.072789, 1263770.481429, 1263791.751533, 1263842.110264, 1263850.534434, 1263876.547933, 1263876.547933, 1263946.35753, 1263980.028576, 1264001.592558, 1264031.536055, 1264055.478036, 1264076.006336, 1264141.394321, 1264141.394321, 1264158.149902, 1264177.03214, 1264250.380068, 1264251.172868, 1264296.234058, 1264304.784528, 1264332.824525, 1264346.637161, 1264402.746508, 1264429.130749, 1264478.916275, 1264499.923157, 1264523.680692, 1264562.061741, 1264580.51217, 1264603.455115, 1264643.400122, 1264665.917114, 1264688.424427, 1264705.745064, 1264763.178918, 1264779.722714, 1264803.269905, 1264825.40639, 1264844.382039, 1264903.983938, 1264915.461236, 1264949.344386, 1264949.344386, 1265018.161301, 1265042.067202, 1265080.296485, 1265090.821763, 1265129.987356, 1265152.706361, 1265188.410485, 1265226.563353, 1265237.776127, 1265272.620555, 1265280.051726, 1265306.314234, 1265362.200728, 1265398.831569, 1265409.558991, 1265453.404951, 1265457.449693, 1265492.508057, 1265529.603343, 1265537.243653, 1265594.195162, 1265628.33688, 1265642.718359, 1265652.742921, 1265687.412661, 1265727.846982, 1265776.442895, 1265776.442895, 1265805.56416, 1265838.011301, 1265859.300107, 1265916.076541, 1265936.432249, 1265953.407993, 1266004.324982, 1266012.550341, 1266043.474946, 1266069.767752, 1266110.357864, 1266147.924905, 1266181.606535, 1266190.227207, 1266203.844702, 1266239.564397, 1266262.59061, 1266300.572052, 1266317.248386, 1266367.251935, 1266403.73841, 1266422.890769, 1266455.717627, 1266455.717627, 1266519.596215, 1266551.169944, 1266567.741742, 1266582.024518, 1266626.492976, 1266648.160385, 1266682.8625, 1266717.126219, 1266747.807063, 1266764.706007, 1266767.259015, 1266814.38776, 1266849.521034, 1266858.721049, 1266889.608214, 1266928.310263, 1266950.598795, 1267014.821819, 1267040.859897, 1267040.859897, 1267101.415505, 1267101.415505, 1267115.649462, 1267132.211061, 1267212.184569, 1267214.411799, 1267264.232989, 1267274.486221, 1267311.799169, 1267328.242614, 1267364.95395, 1267400.707302, 1267420.742558, 1267467.602955, 1267493.787525, 1267515.010445, 1267534.65014, 1267568.217921, 1267593.109328, 1267595.969931, 1267632.988172, 1267703.348619, 1267722.280136, 1267723.688141, 1267775.68401, 1267813.706565, 1267813.706565, 1267827.418738, 1267853.924897, 1267905.295583, 1267930.960268, 1267974.829458, 1268020.598194, 1268020.598194, 1268055.152325, 1268075.848548, 1268100.91984, 1268132.647191, 1268145.935109, 1268203.060349, 1268238.909856, 1268260.202058, 1268260.202058, 1268260.202058, 1268302.737761, 1268344.616614, 1268404.988617, 1268416.230417, 1268436.117311, 1268475.481735, 1268478.15416, 1268557.539682, 1268561.813865, 1268575.976568, 1268603.538574, 1268626.577658, 1268681.356767, 1268681.356767, 1268721.336671, 1268754.927746, 1268791.354822, 1268804.514679, 1268844.895415, 1268862.857037, 1268896.170881, 1268918.273615, 1268935.691497, 1268967.022751, 1269013.776515, 1269044.944741, 1269057.637882, 1269065.336984, 1269141.306619, 1269141.306619, 1269178.844395, 1269205.942481, 1269246.505549, 1269246.505549, 1269272.064254, 1269308.41299, 1269332.345521, 1269365.480057, 1269409.460467, 1269415.971586, 1269472.772247, 1269506.248975, 1269506.248975, 1269516.914087, 1269584.598021, 1269600.718056, 1269620.256208, 1269627.956836, 1269677.721591, 1269677.721591, 1269769.812475, 1269769.812475, 1269790.289376, 1269837.634924, 1269839.996946, 1269873.851944, 1269908.268471, 1269951.483372, 1269956.554647, 1269988.543897, 1270003.066126, 1270051.744454, 1270082.148678, 1270095.653824, 1270119.749207, 1270150.717605, 1270161.96811, 1270206.815567, 1270211.674864, 1270248.626273, 1270288.671626, 1270309.476769, 1270334.500319, 1270380.420541, 1270422.307166, 1270438.309489, 1270450.032991, 1270482.50562, 1270538.664942, 1270538.664942, 1270564.980807, 1270612.350682, 1270638.788671, 1270684.685473, 1270684.685473, 1270719.969171, 1270752.244634, 1270752.244634, 1270752.244634, 1270825.764416, 1270825.764416, 1270890.906709, 1270898.624766, 1270925.356692, 1270953.144115, 1270972.855788, 1271003.622961, 1271032.825773, 1271073.388735, 1271073.388735, 1271143.968134, 1271172.732624, 1271186.118571, 1271198.255636, 1271241.041229, 1271268.243772, 1271299.177571, 1271299.736357, 1271330.424181, 1271364.004391, 1271396.793828, 1271410.32624, 1271453.342171, 1271484.327127, 1271533.588246, 1271551.017202, 1271569.710184, 1271595.062761, 1271619.846709, 1271627.13656, 1271697.777697, 1271709.322482, 1271750.647287, 1271750.647287, 1271770.237386, 1271800.458599, 1271832.817596, 1271858.281397, 1271911.462726, 1271920.459013, 1271971.575838, 1271971.575838, 1272015.429828, 1272015.429828, 1272051.101591, 1272082.274741, 1272155.218884, 1272155.218884, 1272179.528178, 1272184.498347, 1272224.082027, 1272258.686415, 1272308.858572, 1272310.776976, 1272349.364979, 1272349.364979, 1272380.895286, 1272414.67126, 1272457.052037, 1272457.052037, 1272503.381926, 1272518.348701, 1272563.090186, 1272608.691501, 1272608.691501, 1272634.585419, 1272679.220365, 1272719.298676, 1272725.107342, 1272725.107342, 1272781.138736, 1272811.772508, 1272831.096083, 1272843.753821, 1272881.815608, 1272881.815608, 1272944.339487, 1272944.339487, 1272981.698085, 1273016.847111, 1273044.350937, 1273063.85671, 1273097.590891, 1273137.14475, 1273181.439049, 1273181.439049, 1273191.424457, 1273240.350024, 1273248.042798, 1273295.639428, 1273303.709915, 1273337.2469, 1273379.249435, 1273379.249435, 1273418.253746, 1273461.690248, 1273481.917835, 1273520.718145, 1273520.718145, 1273546.819875, 1273582.181628, 1273616.672467, 1273659.159852, 1273670.646872, 1273687.376187, 1273739.898048, 1273753.524735, 1273775.426169, 1273788.005381, 1273799.017653, 1273862.175918, 1273873.061018, 1273904.764555, 1273963.615653, 1273982.966837, 1273995.855346, 1274026.424598, 1274047.982231, 1274063.680398, 1274063.680398, 1274117.97625, 1274161.275244, 1274177.470442, 1274223.477896, 1274236.108446, 1274269.672107, 1274283.905765, 1274301.57407, 1274374.875625, 1274391.384932, 1274391.384932, 1274416.876373, 1274444.250266, 1274473.572848, 1274505.587688, 1274507.817705, 1274555.842123, 1274577.093576, 1274626.198378, 1274632.268231, 1274632.268231, 1274675.529333, 1274717.52295, 1274729.845508, 1274801.99275, 1274811.878289, 1274827.124386, 1274835.98554, 1274875.523985, 1274903.67575, 1274926.604358, 1274951.593426, 1274984.954463, 1275001.262249, 1275024.994107, 1275055.73372, 1275065.873049, 1275114.588497, 1275150.171303, 1275164.602746, 1275190.582629, 1275200.191669, 1275239.834979, 1275248.269853, 1275322.872252, 1275322.872252, 1275374.261545, 1275380.547502, 1275441.818857, 1275452.72117, 1275452.72117, 1275470.704257, 1275536.129296, 1275536.129296, 1275554.124131, 1275591.404309, 1275629.010432, 1275646.069793, 1275669.497521, 1275682.665924, 1275715.429851, 1275745.627111, 1275787.680296, 1275797.659741, 1275852.406869, 1275852.406869, 1275875.239491, 1275920.636645, 1275920.636645, 1275942.942051, 1275970.832839, 1275998.674333, 1276035.618186, 1276068.62176, 1276097.848366, 1276121.863442, 1276136.304251, 1276167.727164, 1276177.189686, 1276246.495809, 1276255.331272, 1276264.444737, 1276294.532788, 1276294.532788, 1276351.637389, 1276381.521284, 1276392.591798, 1276432.37582, 1276459.348813, 1276483.418599, 1276519.095658, 1276519.095658, 1276544.159863, 1276593.281826, 1276625.14026, 1276645.502548, 1276668.394015, 1276672.790016, 1276723.069478, 1276727.135875, 1276762.25946, 1276802.414283, 1276827.24509, 1276827.24509, 1276853.693443, 1276858.012946, 1276926.296402, 1276943.826613, 1276967.557306, 1276990.969232, 1277034.37847, 1277061.633288, 1277087.948094, 1277098.145646, 1277101.214308, 1277159.634926, 1277162.468933, 1277221.036735, 1277221.036735, 1277244.706334, 1277287.533056, 1277306.555203, 1277320.409712, 1277347.461121, 1277372.09271, 1277419.769737, 1277443.368746, 1277459.018102, 1277481.510268, 1277513.590135, 1277537.270094, 1277537.270094, 1277588.357939, 1277588.357939, 1277642.837879, 1277677.239286, 1277690.192792, 1277753.901694, 1277753.901694, 1277763.874606, 1277786.440576, 1277815.279136, 1277827.482671, 1277867.647877, 1277906.684352, 1277906.684352, 1277953.128249, 1277975.163685, 1277997.352747, 1277997.352747, 1278065.048459, 1278065.048459, 1278097.171004, 1278111.001964, 1278155.692493, 1278155.692493, 1278193.128308, 1278201.363876, 1278221.719451, 1278265.163257, 1278334.358675, 1278334.358675, 1278342.930114, 1278378.639999, 1278397.945658, 1278444.648606, 1278448.543828, 1278490.969322, 1278490.969322, 1278556.179506, 1278556.179506, 1278589.597397, 1278599.941664, 1278632.610803, 1278668.483031, 1278680.691349, 1278680.691349, 1278735.926432, 1278735.926432, 1278752.406696, 1278839.225347, 1278847.52703, 1278850.073082, 1278850.073082, 1278885.72948, 1278925.636047, 1278948.732673, 1278963.062362, 1279020.170786, 1279030.32665, 1279079.029492, 1279088.076137, 1279106.1961, 1279126.406272, 1279157.315043, 1279170.956404, 1279187.565212, 1279225.428634, 1279235.151729, 1279293.877434, 1279296.139291, 1279332.657411, 1279332.657411, 1279362.861237, 1279400.006264, 1279425.640612, 1279445.473209, 1279484.545432, 1279495.861069, 1279525.040074, 1279545.89061, 1279558.860346, 1279615.698164, 1279615.698164, 1279673.535612, 1279688.577997, 1279727.152534, 1279727.152534, 1279772.032303, 1279786.31936, 1279796.183388, 1279813.286073, 1279871.886413, 1279888.996643, 1279888.996643, 1279926.617051, 1279945.80491, 1280008.167901, 1280008.167901, 1280020.865185, 1280078.261637, 1280078.261637, 1280101.744533, 1280103.129169, 1280154.634928, 1280175.57178, 1280184.631261, 1280218.33743, 1280243.047176, 1280290.20174, 1280290.20174, 1280309.935007, 1280362.181573, 1280372.707949, 1280400.819202, 1280434.739521, 1280467.194347, 1280467.194347, 1280469.401675, 1280519.566628, 1280541.422485, 1280551.12755, 1280588.14026, 1280634.011142, 1280664.097835, 1280693.309186, 1280693.820539, 1280707.725053, 1280723.882073, 1280742.864044, 1280799.872639, 1280800.910607, 1280858.854022, 1280861.085593, 1280882.888599, 1280925.095909, 1280963.750618, 1280963.750618, 1280982.023663, 1281012.258344, 1281025.947238, 1281056.006434, 1281098.371123, 1281122.242506, 1281125.210618, 1281146.903151, 1281174.613581, 1281210.436463, 1281244.416341, 1281264.681011, 1281322.720125, 1281323.930769, 1281361.040143, 1281361.040143, 1281386.330607, 1281386.330607, 1281418.76265, 1281454.854644, 1281469.417407, 1281475.677047, 1281516.644024, 1281543.265295, 1281566.358233, 1281585.55891, 1281641.223721, 1281641.223721, 1281696.820815, 1281696.820815, 1281740.512302, 1281740.512302, 1281798.912387, 1281798.912387, 1281829.033513, 1281840.553878, 1281899.50643, 1281899.50643, 1281899.50643, 1281952.596933, 1281978.009087, 1282005.34593, 1282005.34593, 1282034.032131, 1282044.915977, 1282069.446112, 1282109.267092, 1282175.639805, 1282175.639805, 1282175.639805, 1282216.951669, 1282217.827952, 1282283.119013, 1282283.119013, 1282315.181877, 1282315.181877, 1282346.765616, 1282359.245203, 1282369.443677, 1282419.329166, 1282453.175911, 1282457.432924, 1282525.134028, 1282525.134028, 1282554.91855, 1282607.596237, 1282607.596237, 1282629.092034, 1282638.766968, 1282655.974891, 1282687.369048, 1282695.001056, 1282741.449919, 1282782.691237, 1282782.691237, 1282805.573071, 1282841.224105, 1282853.015308, 1282898.999183, 1282898.999183, 1282923.561918, 1282953.8533, 1282953.8533, 1282990.239079, 1283026.132604, 1283030.180026, 1283090.699765, 1283090.699765, 1283128.547782, 1283161.134311, 1283161.134311, 1283186.659692, 1283229.614399, 1283266.630708, 1283266.630708, 1283266.630708, 1283323.511398, 1283323.511398, 1283367.674069, 1283372.414351, 1283394.599913, 1283422.248491, 1283441.311319, 1283503.505183, 1283513.963697, 1283513.963697, 1283553.394621, 1283557.2134, 1283594.186101, 1283612.980757, 1283646.027681, 1283657.717746, 1283672.110373, 1283719.920984, 1283731.603878, 1283738.026622, 1283783.571165, 1283828.590765, 1283834.574479, 1283850.535304, 1283875.207174, 1283876.485025, 1283933.915013, 1283938.723922, 1283952.276852, 1283996.218067, 1284023.538567, 1284023.538567, 1284068.157268, 1284097.334383, 1284102.927778, 1284142.05174, 1284157.938262, 1284198.764256, 1284216.981783, 1284216.981783, 1284237.365803, 1284265.157045, 1284292.369725, 1284306.91684, 1284367.861037, 1284382.345667, 1284406.621855, 1284406.621855, 1284443.624991, 1284456.578104, 1284508.902018, 1284508.902018, 1284521.10166, 1284561.929087, 1284581.905285, 1284581.905285, 1284607.175482, 1284663.66364, 1284666.536028, 1284716.045501, 1284716.045501, 1284760.188638, 1284764.566487, 1284790.592572, 1284805.106393, 1284824.099353, 1284874.092869, 1284874.092869, 1284911.476801, 1284911.476801, 1284956.783409, 1284956.783409, 1285008.220509, 1285015.998136, 1285057.812588, 1285081.977341, 1285087.593164, 1285087.593164, 1285154.595542, 1285154.595542, 1285209.969502, 1285209.969502, 1285209.969502, 1285238.578626, 1285281.476594, 1285282.542369, 1285321.287365, 1285351.119676, 1285364.78359, 1285387.838745, 1285399.565271, 1285430.559453, 1285475.218653, 1285486.853028, 1285497.383002, 1285534.507464, 1285540.463535, 1285574.605275, 1285604.18393, 1285616.471144, 1285624.527948, 1285667.69474, 1285705.795779, 1285705.795779, 1285705.795779, 1285757.956314, 1285784.663587, 1285819.297499, 1285834.581312, 1285868.100722, 1285880.845404, 1285898.65148, 1285904.001836, 1285928.572635, 1285967.433436, 1285979.291654, 1286003.458324, 1286033.496774, 1286061.540498, 1286061.540498, 1286134.662623, 1286134.662623, 1286143.810874, 1286158.810049, 1286186.597741, 1286204.645641, 1286227.674456, 1286264.360269, 1286323.776516, 1286323.776516, 1286326.32532, 1286373.723766, 1286389.217213, 1286410.630986, 1286423.120023, 1286456.727619, 1286463.904711, 1286524.685243, 1286524.685243, 1286524.685243, 1286545.973261, 1286603.43119, 1286603.43119, 1286616.867072, 1286650.150979, 1286671.782544, 1286711.990369, 1286719.520743, 1286733.482714, 1286790.51099, 1286794.353767, 1286794.353767, 1286848.535681, 1286856.357939, 1286881.470304, 1286903.136592, 1286931.342548, 1286946.393912, 1286984.364121, 1286989.286666, 1287028.07934, 1287044.915445, 1287074.043901, 1287094.530382, 1287114.180108, 1287139.40494, 1287139.40494, 1287163.260076, 1287171.799462, 1287181.901789, 1287263.300464, 1287267.517595, 1287303.685408, 1287315.556478, 1287336.322932, 1287348.7165, 1287396.102104, 1287396.102104, 1287433.084308, 1287477.704681, 1287478.614007, 1287492.211247, 1287510.840503, 1287519.024614, 1287540.393782, 1287585.921187, 1287620.471165, 1287620.471165, 1287671.313577, 1287671.313577, 1287705.440525, 1287731.694833, 1287746.693445, 1287767.443442, 1287805.92915, 1287806.862472, 1287837.560737, 1287861.691177, 1287909.132853, 1287909.132853, 1287955.547081, 1287955.547081, 1287970.080088, 1287999.212189, 1288014.81352, 1288046.667703, 1288070.173665, 1288082.498052, 1288102.130251, 1288149.896598, 1288149.896598, 1288155.59278, 1288200.721569, 1288220.758619, 1288225.244815, 1288251.087258, 1288278.764425, 1288314.796275, 1288347.997053, 1288347.997053, 1288382.271026, 1288407.783219, 1288431.52835, 1288467.689168, 1288467.689168, 1288486.990016, 1288534.721336, 1288534.721336, 1288565.124012, 1288592.061433, 1288607.278743, 1288635.577904, 1288673.470196, 1288673.470196, 1288692.484063, 1288720.295245, 1288745.054378, 1288768.520041, 1288774.651513, 1288799.148787, 1288839.941503, 1288843.231889, 1288875.636005, 1288898.789007, 1288923.120291, 1288947.537317, 1288961.462524, 1288986.370793, 1289005.557226, 1289012.598726, 1289065.109287, 1289071.289407, 1289124.540473, 1289124.540473, 1289153.771001, 1289172.072359, 1289195.51162, 1289206.100438, 1289258.678578, 1289258.678578, 1289272.626729, 1289304.589152, 1289348.959917, 1289348.959917, 1289382.234684, 1289387.638651, 1289450.320898, 1289450.320898, 1289450.320898, 1289489.581818, 1289493.700026, 1289525.221233, 1289528.943106, 1289561.345396, 1289585.491159, 1289638.284402, 1289638.284402, 1289677.085988, 1289700.840022, 1289700.840022, 1289746.317987, 1289746.317987, 1289787.566178, 1289787.566178, 1289810.06847, 1289846.629492, 1289849.148637, 1289868.565574, 1289905.75172, 1289910.240293, 1289992.334978, 1289992.334978, 1289995.882668, 1290034.421624, 1290063.346886, 1290063.346886, 1290071.358637, 1290074.746522, 1290166.623199, 1290166.623199, 1290166.623199, 1290198.05899, 1290253.58921, 1290253.58921, 1290294.972726, 1290294.972726, 1290310.072882, 1290336.352691, 1290336.352691, 1290346.148986, 1290402.28635, 1290416.05173, 1290441.332766, 1290449.785607, 1290484.578419, 1290489.760024, 1290499.390726, 1290549.358764, 1290552.059635, 1290584.635329, 1290627.658182, 1290656.55664, 1290656.55664, 1290690.121072, 1290709.476091, 1290733.049406, 1290737.62005, 1290774.518066, 1290780.092879, 1290819.377497, 1290856.907929, 1290856.907929, 1290874.63669, 1290912.476617, 1290914.137736, 1290926.292539, 1290968.963269, 1290972.548816, 1291025.373448, 1291038.975852, 1291038.975852, 1291083.008024, 1291106.334285, 1291109.272352, 1291141.681221, 1291174.228699, 1291198.272146, 1291198.272146, 1291232.138113, 1291234.287305, 1291287.267105, 1291295.816202, 1291307.888938, 1291343.676378, 1291346.532528, 1291402.279116, 1291402.279116, 1291440.755288, 1291466.082178, 1291480.849734, 1291508.322368, 1291508.322368, 1291527.483552, 1291551.154929, 1291568.111839, 1291613.482334, 1291613.482334, 1291622.666273, 1291658.909653, 1291671.924974, 1291707.527066, 1291721.538548, 1291764.783526, 1291769.814731, 1291792.71162, 1291830.108557, 1291830.108557, 1291844.964186, 1291879.055826, 1291895.995681, 1291938.126424, 1291941.16776, 1291977.084206, 1292011.1604, 1292011.1604, 1292037.466294, 1292081.441307, 1292081.441307, 1292110.418119, 1292127.422269, 1292151.208492, 1292160.955891, 1292160.955891, 1292205.880987, 1292205.880987, 1292237.262108, 1292284.838386, 1292284.838386, 1292341.747857, 1292341.747857, 1292350.624915, 1292417.324507, 1292417.324507, 1292421.378718, 1292421.378718, 1292452.164407, 1292511.654441, 1292514.12798, 1292536.753378, 1292546.308857, 1292575.50588, 1292576.464376, 1292611.630344, 1292644.076435, 1292671.068515, 1292710.434678, 1292731.192527, 1292742.089688, 1292754.003528, 1292765.99363, 1292784.279982, 1292801.63106, 1292822.035154, 1292840.14773, 1292859.256244, 1292886.425173, 1292886.425173, 1292945.768063, 1292945.768063, 1293026.511955, 1293026.511955, 1293033.814144, 1293034.260207, 1293062.287796, 1293101.469723, 1293101.469723, 1293101.469723, 1293162.633857, 1293162.633857, 1293191.113315, 1293230.548153, 1293230.548153, 1293246.659882, 1293280.13336, 1293280.13336, 1293316.890741, 1293362.566057, 1293365.107505, 1293389.22607, 1293418.795914, 1293442.74594, 1293443.482324, 1293485.754534, 1293489.883364, 1293489.883364, 1293558.874793, 1293572.370617, 1293583.806282, 1293640.967855, 1293640.967855, 1293640.967855, 1293684.87739, 1293693.183164, 1293693.183164, 1293738.035202, 1293761.248028, 1293761.248028, 1293777.046055, 1293786.135736, 1293856.595313, 1293856.595313, 1293891.599683, 1293919.727688, 1293919.727688, 1293961.518873, 1293970.058063, 1293970.058063, 1293991.018214, 1294036.030148, 1294056.017898, 1294056.017898, 1294088.860373, 1294123.070093, 1294151.449391, 1294167.469215, 1294211.306567, 1294211.306567, 1294228.556103, 1294233.186859, 1294268.299694, 1294276.759185, 1294293.759185, 1294336.045691, 1294367.200439, 1294368.248566, 1294371.253545, 1294412.544161, 1294433.217519, 1294456.643077, 1294476.323852, 1294504.283392, 1294520.062704, 1294548.495496, 1294548.495496, 1294581.85169, 1294600.65192, 1294621.449006, 1294647.831432, 1294647.831432, 1294681.005125, 1294700.517497, 1294717.26925, 1294749.187252, 1294792.417663, 1294812.129228, 1294815.150341, 1294815.150341, 1294835.975724, 1294869.749212, 1294900.516266, 1294902.82203, 1294910.310256, 1294943.088487, 1294965.19445, 1294994.996333, 1295021.034458, 1295029.99464, 1295058.160165, 1295095.078332, 1295112.559978, 1295145.169107, 1295145.169107, 1295173.975755, 1295173.975755, 1295216.031196, 1295228.315143, 1295279.288157, 1295279.288157, 1295279.953701, 1295313.387381, 1295330.41698, 1295374.211079, 1295398.169586, 1295398.169586, 1295398.169586, 1295432.28299, 1295433.623439, 1295474.532681, 1295488.173885, 1295548.09584, 1295548.09584, 1295568.686845, 1295578.286964, 1295622.399517, 1295650.074489, 1295675.44894, 1295675.44894, 1295675.44894, 1295686.284019, 1295752.931608, 1295756.480656, 1295774.552516, 1295787.545624, 1295826.049316, 1295826.776892, 1295858.127444, 1295858.127444, 1295896.159711, 1295908.337178, 1295942.686777, 1295972.27215, 1296002.471308, 1296002.471308, 1296031.174584, 1296034.96506, 1296045.186996, 1296093.625854, 1296121.106291, 1296149.676376, 1296149.676376, 1296166.965411, 1296166.965411, 1296218.194674, 1296219.201766, 1296271.430375, 1296271.430375, 1296310.840076, 1296310.840076, 1296310.840076, 1296353.449648, 1296384.709825, 1296386.17801, 1296415.080367, 1296433.100297, 1296448.482238, 1296500.958732, 1296500.958732, 1296500.958732, 1296536.462007, 1296579.05075, 1296579.05075, 1296601.254905, 1296625.523697, 1296626.786728, 1296670.494689, 1296688.396455, 1296688.396455, 1296732.362077, 1296750.229139, 1296779.807306, 1296802.291726, 1296806.45361, 1296806.45361, 1296849.310922, 1296880.842584, 1296880.842584, 1296900.926607, 1296940.214007, 1296960.47221, 1296971.598802, 1296994.971154, 1297024.794375, 1297054.658684, 1297054.658684, 1297093.428693, 1297101.142591, 1297131.509577, 1297138.754944, 1297171.755763, 1297171.755763, 1297201.058478, 1297219.165414, 1297235.567359, 1297247.71765, 1297298.053144, 1297305.291972, 1297341.250232, 1297350.689845, 1297393.125816, 1297415.595466, 1297426.611444, 1297436.751784, 1297438.667639, 1297472.339906, 1297498.536153, 1297498.536153, 1297530.152311, 1297565.120553, 1297565.120553, 1297588.725988, 1297600.693184, 1297622.706816, 1297639.804872, 1297666.192835, 1297692.302991, 1297712.107778, 1297732.40533, 1297757.383544, 1297776.225669, 1297808.322622, 1297809.271287, 1297842.711062, 1297842.711062, 1297866.757365, 1297879.618725, 1297912.882953, 1297952.8069, 1297952.8069, 1297965.855936, 1298001.592259, 1298027.003466, 1298037.690944, 1298055.49576, 1298072.948041, 1298128.247143, 1298160.742849, 1298160.742849, 1298160.742849, 1298168.264937, 1298174.853664, 1298238.885823, 1298255.705115, 1298255.705115, 1298287.185117, 1298316.091327, 1298322.195235, 1298342.600782, 1298356.570429, 1298386.208291, 1298397.826006, 1298417.201873, 1298445.153538, 1298471.241859, 1298491.784269, 1298522.392223, 1298552.894748, 1298552.894748, 1298590.39592, 1298597.118378, 1298597.118378, 1298618.068884, 1298641.596642, 1298691.288314, 1298703.631439, 1298732.824691, 1298732.824691, 1298732.824691, 1298760.499925, 1298784.487, 1298809.534232, 1298832.058148, 1298876.676268, 1298876.676268, 1298909.39528, 1298929.148436, 1298929.148436, 1298949.200753, 1298978.426762, 1298999.94888, 1299005.113061, 1299023.402577, 1299057.493433, 1299113.221352, 1299113.221352, 1299132.035625, 1299148.535688, 1299184.776327, 1299184.776327, 1299198.879429, 1299221.770531, 1299221.770531, 1299280.504261, 1299306.349211, 1299310.22174, 1299310.22174, 1299310.22174, 1299373.51217, 1299403.563295, 1299419.682864, 1299419.682864, 1299450.481173, 1299450.481173, 1299488.078296, 1299512.8775, 1299530.540271, 1299540.371327, 1299577.047317, 1299593.568754, 1299609.665039, 1299622.381972, 1299681.972498, 1299690.657365, 1299690.657365, 1299705.781093, 1299744.276765, 1299756.511075, 1299756.511075, 1299761.867203, 1299804.390608, 1299816.868112, 1299852.824724, 1299859.250074, 1299910.348456, 1299910.348456, 1299928.615842, 1299928.615842, 1299970.429184, 1299970.429184, 1300026.284117, 1300026.284117, 1300048.144892, 1300068.033785, 1300083.505533, 1300107.19185, 1300142.465198, 1300158.351136, 1300193.637484, 1300193.637484, 1300247.820344, 1300247.820344, 1300247.820344, 1300273.849136, 1300273.849136, 1300291.234716, 1300343.754953, 1300343.754953, 1300369.29349, 1300396.108386, 1300396.108386, 1300427.235771, 1300444.065038, 1300458.867661, 1300485.311503, 1300517.958679, 1300549.813394, 1300549.813394, 1300582.787468, 1300584.808013, 1300610.465062, 1300628.388481, 1300673.210962, 1300673.210962, 1300692.086818, 1300723.662966, 1300741.614132, 1300741.614132, 1300770.966714, 1300776.075164, 1300793.69385, 1300842.062242, 1300866.886552, 1300878.717588, 1300907.867742, 1300914.11097, 1300941.126872, 1300941.126872, 1300969.55663, 1300991.195241, 1301019.470237, 1301019.470237, 1301061.15639, 1301070.23298, 1301070.23298, 1301105.237724, 1301111.070769, 1301147.265413, 1301172.768894, 1301208.172648, 1301208.172648, 1301208.172648, 1301247.177242, 1301280.921283, 1301319.223784, 1301319.223784, 1301319.223784, 1301358.298762, 1301366.285598, 1301384.302397, 1301414.436522, 1301428.048501, 1301449.198555, 1301449.198555, 1301493.118238, 1301515.852854, 1301531.966335, 1301558.485338, 1301580.509371, 1301588.232203, 1301620.504018, 1301620.504018, 1301630.103493, 1301654.118901, 1301685.237087, 1301707.200888, 1301709.575132, 1301716.622841, 1301770.226068, 1301801.544304, 1301802.638061, 1301822.184134, 1301849.903044, 1301857.969337, 1301888.009572, 1301937.270728, 1301937.270728, 1301937.270728, 1301953.784045, 1301981.233288, 1302013.95316, 1302013.95316, 1302045.071326, 1302057.017942, 1302095.421732, 1302114.266022, 1302147.335476, 1302147.335476, 1302147.335476, 1302174.766428, 1302192.577821, 1302215.749593, 1302253.173117, 1302257.609206, 1302288.028475, 1302288.028475, 1302301.712749, 1302331.488963, 1302371.532726, 1302379.738433, 1302395.646548, 1302406.36195, 1302426.882562, 1302448.758881, 1302454.60892, 1302489.699143, 1302498.117322, 1302509.925481, 1302529.80644, 1302584.544374, 1302584.544374, 1302592.219185, 1302606.37316, 1302645.891644, 1302650.681696, 1302693.104263, 1302705.994672, 1302709.886214, 1302750.419739, 1302750.419739, 1302769.566737, 1302797.950568, 1302829.209479, 1302854.967555, 1302865.294647, 1302909.294179, 1302912.158901, 1302916.296801, 1302923.945772, 1302927.168659, 1302967.968514, 1303018.297152, 1303020.026955, 1303036.802903, 1303036.802903, 1303061.129136, 1303092.219213, 1303100.431417, 1303130.330902, 1303144.845601, 1303174.373074, 1303207.216142, 1303218.55121, 1303230.819551, 1303238.058066, 1303273.829408, 1303287.622391, 1303294.201806, 1303312.511924, 1303359.604525, 1303360.187089, 1303404.742034, 1303419.963603, 1303419.963603, 1303450.095531, 1303450.095531, 1303488.424509, 1303488.424509, 1303525.860345, 1303525.860345, 1303545.372883, 1303549.887207, 1303592.131355, 1303620.947396, 1303673.801215, 1303673.801215, 1303686.155362, 1303689.399159, 1303736.426056, 1303736.426056, 1303747.51264, 1303783.072651, 1303800.96295, 1303807.363867, 1303810.930724, 1303817.965856, 1303865.581377, 1303882.619981, 1303912.901266, 1303921.430537, 1303956.247235, 1303969.453889, 1303982.811728, 1303982.811728, 1304031.160159, 1304054.623133, 1304054.623133, 1304072.846102, 1304107.734032, 1304107.734032, 1304107.734032, 1304139.963283, 1304147.578375, 1304180.117502, 1304201.366159, 1304229.446558, 1304258.825156, 1304258.825156, 1304267.474431, 1304306.961584, 1304347.08388, 1304349.749266, 1304370.837973, 1304396.929927, 1304413.990808, 1304423.189952, 1304433.23248, 1304433.23248, 1304449.619181, 1304483.62618, 1304490.506135, 1304528.033817, 1304540.417105, 1304548.416217, 1304566.027339, 1304601.797383, 1304614.301959, 1304624.351455, 1304679.349623, 1304679.349623, 1304699.180633, 1304699.180633, 1304729.309823, 1304731.901939, 1304760.403789, 1304788.151073, 1304797.434306, 1304821.694575, 1304866.126823, 1304870.643385, 1304889.892919, 1304905.421282, 1304905.421282, 1304942.909108, 1304968.747308, 1305002.125368, 1305002.125368, 1305024.171738, 1305024.171738, 1305034.676947, 1305056.570502, 1305080.027648, 1305128.466846, 1305128.466846, 1305151.867309, 1305151.867309, 1305190.783655, 1305206.706811, 1305235.00352, 1305262.660647, 1305262.660647, 1305262.660647, 1305305.518063, 1305323.914747, 1305331.375104, 1305331.375104, 1305361.026338, 1305391.846541, 1305396.397906, 1305411.438402, 1305438.273875, 1305479.069028, 1305482.810413, 1305498.226029, 1305536.591458, 1305567.025802, 1305567.259873, 1305583.675547, 1305615.217731, 1305615.217731, 1305615.217731, 1305647.249283, 1305655.527917, 1305695.74399, 1305698.471148, 1305735.073741, 1305744.764388, 1305781.890899, 1305781.890899, 1305803.054119, 1305828.301342, 1305828.301342, 1305870.356766, 1305870.356766, 1305897.799094, 1305916.13518, 1305916.13518, 1305923.101841, 1305923.101841, 1305991.607967, 1306009.85043, 1306028.378209, 1306037.276237, 1306082.036393, 1306082.036393, 1306113.045781, 1306123.897788, 1306123.897788, 1306145.09863, 1306163.597289, 1306167.894723, 1306228.293208, 1306228.293208, 1306256.833129, 1306256.833129, 1306278.976197, 1306296.371657, 1306312.559218, 1306355.259562, 1306365.648722, 1306365.648722, 1306395.450439, 1306437.75272, 1306445.276604, 1306448.025915, 1306480.217829, 1306499.236216, 1306512.360046, 1306515.996859, 1306545.98595, 1306545.98595, 1306583.793236, 1306586.851697, 1306616.945986, 1306647.268761, 1306662.989571, 1306666.9744, 1306707.939226, 1306707.939226, 1306751.936022, 1306760.140554, 1306760.140554, 1306785.562315, 1306821.149998, 1306830.532639, 1306838.263507, 1306868.007119, 1306900.348787, 1306900.348787, 1306931.482861, 1306947.189616, 1306964.829456, 1306972.995558, 1307003.038217, 1307019.265119, 1307019.265119, 1307019.265119, 1307067.288257, 1307067.288257, 1307081.826518, 1307134.576984, 1307142.727213, 1307162.55678, 1307199.879195, 1307199.879195, 1307203.114104, 1307244.143765, 1307267.056961, 1307267.056961, 1307295.93886, 1307297.767324, 1307315.402176, 1307334.166618, 1307358.663645, 1307360.529079, 1307405.472302, 1307422.327233, 1307438.654431, 1307447.016335, 1307468.940181, 1307488.828128, 1307532.520701, 1307541.903302, 1307577.385475, 1307577.929254, 1307578.21325, 1307596.880706, 1307620.042409, 1307631.524843, 1307660.020073, 1307693.317369, 1307698.261365, 1307712.784393, 1307736.597636, 1307772.349228, 1307772.349228, 1307783.784587, 1307803.241887, 1307841.004511, 1307851.883478, 1307851.883478, 1307884.069783, 1307898.811051, 1307911.958065, 1307933.625795, 1307969.505734, 1307983.259911, 1308006.769792, 1308006.769792, 1308016.058231, 1308042.61517, 1308049.706451, 1308087.014646, 1308107.10211, 1308107.10211, 1308158.039611, 1308160.279422, 1308223.065487, 1308223.065487, 1308223.065487, 1308231.846174, 1308252.896451, 1308261.511575, 1308299.933383, 1308299.933383, 1308316.023105, 1308350.558028, 1308350.558028, 1308383.425855, 1308397.125756, 1308405.428872, 1308437.323991, 1308465.075025, 1308478.133699, 1308505.348067, 1308510.4866, 1308510.4866, 1308545.033218, 1308546.535995, 1308592.204182, 1308592.204182, 1308607.496778, 1308628.316643, 1308664.573156, 1308685.506862, 1308699.944304, 1308711.557338, 1308723.022219, 1308723.022219, 1308771.806767, 1308791.768968, 1308838.752892, 1308838.752892, 1308857.535501, 1308862.960637, 1308877.256238, 1308877.256238, 1308887.364052, 1308918.932463, 1308918.932463, 1308952.302985, 1308991.007727, 1309024.25069, 1309024.25069, 1309043.031332, 1309068.257551, 1309081.86762, 1309081.86762, 1309120.86101, 1309120.86101, 1309169.408502, 1309169.408502, 1309173.4903, 1309184.06977, 1309232.165752, 1309254.676331, 1309256.902377, 1309258.179558, 1309295.556412, 1309331.67919, 1309331.67919, 1309331.67919, 1309365.208904, 1309367.779845, 1309375.032567, 1309393.014224, 1309442.709868, 1309442.709868, 1309468.353417, 1309484.157778, 1309484.157778, 1309525.425786, 1309556.382995, 1309562.664113, 1309562.664113, 1309608.954855, 1309639.955255, 1309648.384698, 1309696.69171, 1309696.69171, 1309696.69171, 1309708.133467, 1309743.604102, 1309749.21703, 1309749.21703, 1309796.625794, 1309796.625794, 1309805.993065, 1309807.524829, 1309845.222844, 1309866.379457, 1309879.398726, 1309879.398726, 1309916.58007, 1309924.620532, 1309978.341854, 1309978.341854, 1310007.62535, 1310007.62535, 1310064.118694, 1310064.118694, 1310064.118694, 1310074.190292, 1310090.79387, 1310134.882832, 1310140.07096, 1310170.682056, 1310170.682056, 1310178.106538, 1310213.734419, 1310213.734419, 1310254.20134, 1310274.442593, 1310274.442593, 1310294.053762, 1310295.068094, 1310321.560324, 1310371.975443, 1310373.919298, 1310373.919298, 1310402.600731, 1310433.243219, 1310474.677585, 1310474.677585, 1310479.557788, 1310488.366973, 1310519.550505, 1310523.378394, 1310523.378394, 1310567.598418, 1310579.239018, 1310599.417687, 1310631.215909, 1310631.215909, 1310678.671376, 1310678.671376, 1310682.868608, 1310705.268993, 1310709.759831, 1310741.806982, 1310769.470441, 1310789.695041, 1310795.70948, 1310802.741263, 1310810.51907, 1310878.193132, 1310878.193132, 1310878.193132, 1310881.190291, 1310900.710264, 1310965.247276, 1310965.247276, 1310965.247276, 1310996.11496, 1311000.525795, 1311051.747646, 1311051.747646, 1311080.450134, 1311101.988192, 1311101.988192, 1311108.12094, 1311148.02358, 1311190.924065, 1311190.924065, 1311190.924065, 1311218.737817, 1311231.300263, 1311244.087272, 1311262.557863, 1311287.642818, 1311315.58073, 1311348.110559, 1311348.110559, 1311381.91749, 1311381.91749, 1311393.475414, 1311416.526557, 1311448.094545, 1311448.094545, 1311448.094545, 1311472.832129, 1311472.832129, 1311502.592074, 1311549.740392, 1311549.740392, 1311580.613332, 1311594.55617, 1311622.396771, 1311635.549045, 1311635.549045, 1311674.023382, 1311674.023382, 1311689.337508, 1311689.337508, 1311740.543926, 1311740.543926, 1311740.543926, 1311782.758364, 1311814.029291, 1311820.141642, 1311823.571957, 1311873.227153, 1311874.440859, 1311874.440859, 1311896.69116, 1311933.586403, 1311946.814465, 1311952.264202, 1311965.579687, 1312002.785101, 1312033.167666, 1312044.231074, 1312044.231074, 1312066.039704, 1312085.404497, 1312088.81278, 1312088.81278, 1312143.067996, 1312167.509837, 1312178.664302, 1312197.745107, 1312219.760679, 1312249.262174, 1312249.262174, 1312252.745925, 1312312.163329, 1312312.163329, 1312312.163329, 1312322.919514, 1312349.83181, 1312386.359391, 1312388.414727, 1312394.180633, 1312431.621294, 1312440.665287, 1312466.822945, 1312466.822945, 1312484.745763, 1312495.146167, 1312517.13225, 1312560.181921, 1312568.459941, 1312591.611927, 1312599.865092, 1312599.865092, 1312629.193288, 1312668.072445, 1312668.072445, 1312680.690126, 1312704.938759, 1312722.734944, 1312753.454905, 1312760.28735, 1312794.55146, 1312794.55146, 1312802.193561, 1312826.062541, 1312842.771101, 1312842.771101, 1312892.429827, 1312897.320197, 1312926.488943, 1312926.995695, 1312961.391472, 1312969.13648, 1312976.746246, 1312999.841769, 1313014.225262, 1313031.939017, 1313051.632446, 1313059.041146, 1313090.173931, 1313090.173931, 1313128.731915, 1313128.731915, 1313144.27257, 1313192.418058, 1313192.418058, 1313208.140813, 1313220.413794, 1313255.883465, 1313255.883465, 1313287.701673, 1313301.680309, 1313314.414747, 1313348.327963, 1313348.327963, 1313387.463127, 1313387.463127, 1313401.274655, 1313408.548422, 1313451.931621, 1313466.633535, 1313493.892695, 1313493.892695, 1313522.378218, 1313522.378218, 1313557.78693, 1313570.885311, 1313570.885311, 1313584.112734, 1313618.39572, 1313636.752413, 1313636.752413, 1313660.221436, 1313674.906092, 1313716.039331, 1313749.348534, 1313749.348534, 1313788.919896, 1313788.919896, 1313788.919896, 1313817.877189, 1313830.357906, 1313840.583717, 1313862.298695, 1313870.889553, 1313892.271946, 1313907.937588, 1313916.767685, 1313936.138232, 1313974.902354, 1313979.545888, 1314018.224752, 1314018.224752, 1314048.821785, 1314048.821785, 1314066.102931, 1314081.903676, 1314101.543582, 1314119.073447, 1314122.699656, 1314159.203349, 1314192.464543, 1314192.464543, 1314221.683955, 1314221.683955, 1314255.901719, 1314263.736979, 1314274.798, 1314274.798, 1314323.209205, 1314343.624521, 1314363.140226, 1314363.140226, 1314384.213939, 1314431.831648, 1314431.831648, 1314443.177516, 1314471.838073, 1314471.838073, 1314489.266647, 1314494.082358, 1314521.90821, 1314538.868644, 1314583.931756, 1314583.931756, 1314597.441522, 1314612.753801, 1314633.006431, 1314633.006431, 1314663.341357, 1314666.868218, 1314723.146031, 1314723.146031, 1314729.296405, 1314762.047284, 1314762.047284, 1314797.962409, 1314808.896298, 1314817.15461, 1314830.828953, 1314837.213353, 1314850.383455, 1314890.866337, 1314903.893636, 1314935.995169, 1314935.995169, 1314974.485496, 1314984.64177, 1314996.274791, 1314996.274791, 1315010.795573, 1315028.877729, 1315055.296619, 1315089.214886, 1315089.214886, 1315113.975157, 1315152.626266, 1315152.626266, 1315171.926049, 1315190.735218, 1315192.943105, 1315211.753452, 1315211.753452, 1315249.158295, 1315276.795983, 1315276.795983, 1315313.016972, 1315313.016972, 1315329.47844, 1315351.707263, 1315381.187876, 1315381.187876, 1315408.10336, 1315417.273314, 1315451.675803, 1315463.157021, 1315476.490903, 1315516.172305, 1315527.845082, 1315528.827399, 1315541.943475, 1315553.750375, 1315588.03751, 1315588.03751, 1315591.161754, 1315616.509107, 1315616.509107, 1315677.145767, 1315677.145767, 1315723.814312, 1315723.814312, 1315723.814312, 1315723.814312, 1315769.057892, 1315795.719016, 1315815.501281, 1315815.501281, 1315833.516685, 1315870.9701, 1315870.9701, 1315871.54278, 1315914.297913, 1315915.66757, 1315959.172118, 1315960.433481, 1315960.433481, 1315992.659518, 1316020.162194, 1316020.162194, 1316046.78801, 1316071.541889, 1316071.541889, 1316098.495262, 1316116.343478, 1316125.336609, 1316165.934373, 1316165.934373, 1316165.934373, 1316203.421899, 1316206.523076, 1316238.606604, 1316238.606604, 1316270.41426, 1316288.186678, 1316288.186678, 1316307.254636, 1316334.388032, 1316372.932132, 1316372.932132, 1316377.482364, 1316430.997909, 1316447.269798, 1316457.981153, 1316457.981153, 1316469.114996, 1316485.560296, 1316504.08569, 1316523.670594, 1316527.660049, 1316534.443867, 1316565.972337, 1316578.99401, 1316626.31019, 1316631.369707, 1316634.420547, 1316656.144607, 1316671.566805, 1316686.828672, 1316721.287987, 1316752.657569, 1316752.657569, 1316752.657569, 1316783.797584, 1316815.122073, 1316815.122073, 1316819.090855, 1316871.147712, 1316907.170251, 1316907.170251, 1316907.170251, 1316925.676613, 1316942.247594, 1316949.819781, 1316971.908436, 1316987.087326, 1317001.0919, 1317004.189713, 1317004.541102, 1317023.469799, 1317070.968156, 1317072.253911, 1317131.836197, 1317131.836197, 1317131.836197, 1317185.035808, 1317185.035808, 1317185.035808, 1317232.755331, 1317232.755331, 1317249.594855, 1317249.594855, 1317301.642403, 1317301.642403, 1317325.865499, 1317325.865499, 1317353.120537, 1317363.158975, 1317401.635123, 1317401.635123, 1317401.635123, 1317431.105714, 1317457.400257, 1317457.400257, 1317462.464388, 1317478.574656, 1317519.204633, 1317536.860383, 1317536.860383, 1317564.748557, 1317582.058697, 1317585.351361, 1317630.690344, 1317630.690344, 1317659.327219, 1317671.243531, 1317696.724677, 1317721.825189, 1317721.825189, 1317733.6122, 1317757.211652, 1317757.211652, 1317793.473704, 1317793.473704, 1317819.360435, 1317839.582163, 1317863.798453, 1317877.004399, 1317877.004399, 1317907.772022, 1317909.756147, 1317938.327448, 1317951.905773, 1317971.497825, 1318008.844422, 1318008.844422, 1318025.840072, 1318043.182845, 1318054.871781, 1318085.322691, 1318085.601063, 1318113.638117, 1318148.075744, 1318148.075744, 1318162.752414, 1318164.277123, 1318183.653414, 1318201.948553, 1318224.231534, 1318243.858124, 1318246.943993, 1318299.567569, 1318299.567569, 1318319.616708, 1318324.546181, 1318348.283891, 1318352.569844, 1318376.653309, 1318409.313162, 1318409.313162, 1318409.895212, 1318445.445945, 1318448.250332, 1318502.870374, 1318502.870374, 1318502.870374, 1318539.522276, 1318567.204834, 1318571.235504, 1318587.384624, 1318608.64061, 1318627.718764, 1318627.718764, 1318627.718764, 1318677.584338, 1318677.584338, 1318694.736318, 1318726.38904, 1318728.152859, 1318748.695952, 1318763.807135, 1318812.317941, 1318812.317941, 1318844.24001, 1318844.24001, 1318844.24001, 1318850.703077, 1318854.964019, 1318906.056653, 1318931.986145, 1318934.17409, 1318970.93545, 1318970.93545, 1319000.991864, 1319007.874966, 1319038.938269, 1319038.938269, 1319038.938269, 1319074.78441, 1319074.78441, 1319085.788058, 1319101.175226, 1319118.561525, 1319152.922679, 1319162.248054, 1319184.294876, 1319191.896081, 1319209.667305, 1319235.380963, 1319235.380963, 1319291.467414, 1319291.467414, 1319294.587825, 1319311.876679, 1319332.840431, 1319338.992891, 1319349.658851, 1319387.485602, 1319387.485602, 1319406.730528, 1319406.730528, 1319465.39234, 1319474.01953, 1319474.01953, 1319508.278922, 1319508.278922, 1319547.886846, 1319547.886846, 1319575.432803, 1319575.432803, 1319611.674696, 1319611.674696, 1319612.573301, 1319635.835494, 1319662.149506, 1319672.039611, 1319680.80668, 1319690.52615, 1319706.849454, 1319778.352846, 1319778.352846, 1319778.352846, 1319778.352846, 1319801.011284, 1319825.373993, 1319826.412174, 1319855.649897, 1319855.649897, 1319909.172279, 1319909.172279, 1319915.067064, 1319937.507003, 1319975.0724, 1319990.105556, 1320007.388352, 1320007.388352, 1320037.747414, 1320054.26747, 1320059.289692, 1320059.289692, 1320073.538106, 1320110.540209, 1320135.146728, 1320157.515457, 1320157.515457, 1320157.515457, 1320195.686836, 1320195.686836, 1320212.003078, 1320219.585362, 1320260.506243, 1320268.86568, 1320268.86568, 1320272.547188, 1320300.882407, 1320300.882407, 1320349.527097, 1320394.405741, 1320394.405741, 1320400.313691, 1320400.313691, 1320400.313691, 1320424.726171, 1320458.991657, 1320488.795754, 1320493.838047, 1320498.828096, 1320540.26128, 1320544.603089, 1320588.928127, 1320588.928127, 1320592.249809, 1320594.107293, 1320647.823208, 1320662.861543, 1320666.008121, 1320666.008121, 1320696.452873, 1320696.452873, 1320731.360701, 1320734.148338, 1320758.352853, 1320758.352853, 1320791.820271, 1320813.080283, 1320831.905127, 1320855.909144, 1320855.909144, 1320855.909144, 1320887.575888, 1320905.454145, 1320915.810214, 1320915.810214, 1320947.335589, 1320967.679916, 1320970.733143, 1320991.134865, 1321024.87734, 1321066.999126, 1321079.585972, 1321079.585972, 1321082.099878, 1321091.446985, 1321133.004198, 1321133.135634, 1321184.50492, 1321184.50492, 1321184.50492, 1321191.10656, 1321210.413014, 1321252.899388, 1321252.899388, 1321252.899388, 1321270.73546, 1321283.537345, 1321342.401923, 1321342.401923, 1321350.741069, 1321352.483933, 1321366.076187, 1321375.141895, 1321423.681105, 1321427.854766, 1321443.602621, 1321443.931632, 1321466.176416, 1321492.469807, 1321521.049846, 1321521.679452, 1321542.282811, 1321576.176625, 1321576.176625, 1321576.176625, 1321620.210253, 1321624.540625, 1321641.552248, 1321660.263899, 1321689.613241, 1321715.685157, 1321716.597006, 1321744.155751, 1321744.155751, 1321745.181737, 1321751.364338, 1321785.358211, 1321793.882672, 1321816.759258, 1321828.491431, 1321859.045811, 1321859.045811, 1321897.998706, 1321901.402156, 1321901.402156, 1321935.034472, 1321956.349121, 1321956.349121, 1321956.349121, 1322002.281259, 1322002.281259, 1322019.522522, 1322023.473501, 1322075.574485, 1322083.24266, 1322090.202272, 1322114.081162, 1322119.558847, 1322142.095763, 1322163.82955, 1322183.964224, 1322183.964224, 1322224.55529, 1322249.826774, 1322249.826774, 1322249.826774, 1322249.826774, 1322269.812897, 1322291.501673, 1322300.931467, 1322310.75515, 1322341.22281, 1322364.010655, 1322368.834411, 1322399.189323, 1322399.189323, 1322452.835433, 1322452.835433, 1322454.933553, 1322486.238631, 1322498.509312, 1322518.694528, 1322523.963091, 1322538.545765, 1322541.455087, 1322567.055858, 1322618.945704, 1322618.945704, 1322618.945704, 1322639.867337, 1322653.472302, 1322694.989495, 1322694.989495, 1322706.831602, 1322752.512886, 1322752.512886, 1322758.298482, 1322764.040695, 1322794.65916, 1322794.65916, 1322814.680395, 1322815.283746, 1322824.931897, 1322853.960837, 1322855.156488, 1322893.795724, 1322914.596349, 1322934.876081, 1322934.876081, 1322950.626894, 1322966.904945, 1323019.019798, 1323019.019798, 1323049.883944, 1323049.883944, 1323051.2275, 1323058.528124, 1323064.316759, 1323115.219779, 1323124.617479, 1323143.509481, 1323155.090565, 1323165.235329, 1323165.235329, 1323186.89706, 1323212.582848, 1323240.838296, 1323241.184539, 1323285.686289, 1323285.686289, 1323311.040122, 1323311.040122, 1323345.552952, 1323345.552952, 1323353.317692, 1323354.370797, 1323376.23369, 1323428.535067, 1323438.525, 1323444.213601, 1323451.787302, 1323456.791032, 1323494.063709, 1323506.124164, 1323506.668377, 1323526.129011, 1323553.378841, 1323553.378841, 1323570.857049, 1323594.62502, 1323594.62502, 1323622.623767, 1323637.845623, 1323678.877524, 1323689.275574, 1323694.406394, 1323713.89321, 1323720.172883, 1323748.862494, 1323748.862494, 1323785.424598, 1323791.322856, 1323811.00843, 1323821.53021, 1323841.850046, 1323862.335322, 1323869.48169, 1323869.48169, 1323877.718932, 1323889.586313, 1323921.501958, 1323945.436087, 1323961.806318, 1323984.643471, 1323984.643471, 1324000.481403, 1324016.995417, 1324024.928038, 1324068.346413, 1324068.346413, 1324091.258458, 1324098.976266, 1324132.897256, 1324132.897256, 1324156.308416, 1324187.013954, 1324187.013954, 1324189.836264, 1324202.823707, 1324244.695672, 1324244.695672, 1324298.224423, 1324298.224423, 1324298.224423, 1324319.839206, 1324319.839206, 1324319.839206, 1324358.320999, 1324361.4279, 1324385.732627, 1324419.906409, 1324433.471873, 1324433.471873, 1324451.841381, 1324463.841594, 1324473.239921, 1324475.59168, 1324523.006373, 1324531.624017, 1324531.624017, 1324556.960404, 1324560.641331, 1324564.645769, 1324596.086796, 1324632.499732, 1324685.846535, 1324685.846535, 1324685.846535, 1324685.846535, 1324706.555241, 1324724.957534, 1324753.108118, 1324759.68844, 1324759.68844, 1324792.594768, 1324792.594768, 1324792.594768, 1324806.832617, 1324827.853856, 1324854.189815, 1324874.568778, 1324916.124409, 1324916.124409, 1324927.037978, 1324941.181177, 1324985.697147, 1324985.697147, 1324985.697147, 1325002.693947, 1325002.693947, 1325021.277269, 1325021.277269, 1325087.941882, 1325087.941882, 1325087.941882, 1325114.824516, 1325134.414402, 1325135.244928, 1325156.961965, 1325157.026155, 1325188.957207, 1325199.343651, 1325221.084752, 1325252.377307, 1325252.377307, 1325273.217175, 1325273.217175, 1325273.217175, 1325308.169792, 1325308.169792, 1325352.495102, 1325352.495102, 1325367.426933, 1325396.206009, 1325397.861303, 1325397.861303, 1325417.301196, 1325423.54692, 1325462.336843, 1325462.336843, 1325502.564869, 1325502.564869, 1325548.017968, 1325548.017968, 1325567.298381, 1325567.298381, 1325577.283593, 1325577.283593, 1325619.769394, 1325636.262313, 1325636.262313, 1325659.258526, 1325677.987921, 1325677.987921, 1325696.417981, 1325708.812685, 1325730.09099, 1325756.546407, 1325756.546407, 1325756.546407, 1325783.415812, 1325815.057967, 1325820.344886, 1325839.983471, 1325865.555176, 1325865.555176, 1325866.131827, 1325886.170118, 1325928.380037, 1325928.380037, 1325954.084706, 1325965.930922, 1325994.693214, 1325999.405258, 1325999.405258, 1326028.227716, 1326039.492278, 1326058.435225, 1326058.435225, 1326102.364357, 1326116.669438, 1326116.669438, 1326116.669438, 1326149.022275, 1326152.722175, 1326180.446349, 1326195.356386, 1326200.148575, 1326248.15965, 1326288.353927, 1326288.353927, 1326288.353927, 1326288.353927, 1326292.28181, 1326292.28181, 1326301.766577, 1326319.493704, 1326349.835534, 1326356.769247, 1326390.486832, 1326420.504352, 1326420.504352, 1326420.504352, 1326450.980883, 1326463.093828, 1326488.7138, 1326501.144587, 1326509.697072, 1326511.336612, 1326540.868966, 1326540.868966, 1326589.968038, 1326589.968038, 1326589.968038, 1326621.544456, 1326621.544456, 1326639.344066, 1326661.863102, 1326671.729991, 1326703.401354, 1326703.401354, 1326711.138983, 1326717.250719, 1326768.962112, 1326770.089124, 1326814.226765, 1326814.226765, 1326814.226765, 1326814.226765, 1326834.085271, 1326834.085271, 1326888.432825, 1326896.57754, 1326896.57754, 1326926.727205, 1326926.727205, 1326950.536774, 1326950.536774, 1326959.070844, 1326975.51586, 1327021.855204, 1327031.517722, 1327031.517722, 1327038.421661, 1327044.937505, 1327077.163231, 1327077.163231, 1327077.163231, 1327099.645381, 1327110.50265, 1327157.914957, 1327187.607329, 1327187.607329, 1327189.694492, 1327201.35556, 1327241.576435, 1327241.576435, 1327251.018535, 1327276.602459, 1327295.324508, 1327295.324508, 1327296.283174, 1327325.511106, 1327347.782426, 1327347.782426, 1327365.156999, 1327369.193713, 1327396.908956, 1327411.828668, 1327434.202377, 1327453.383556, 1327481.491129, 1327481.491129, 1327481.491129, 1327525.671698, 1327534.388256, 1327539.308099, 1327543.616697, 1327558.642661, 1327576.136139, 1327593.698076, 1327627.686258, 1327627.686258, 1327636.142651, 1327647.419969, 1327670.497543, 1327682.972694, 1327687.29687, 1327711.478451, 1327728.649367, 1327728.649367, 1327742.658965, 1327757.439719, 1327800.683611, 1327830.550923, 1327830.82338, 1327830.82338, 1327856.8489, 1327856.8489, 1327881.454807, 1327882.821863, 1327906.633273, 1327906.633273, 1327939.183725, 1327967.210861, 1327976.604378, 1327979.065636, 1327979.065636, 1327988.503215, 1328023.467585, 1328031.757375, 1328056.424729, 1328060.349912, 1328088.750349, 1328088.750349, 1328104.104535, 1328104.104535, 1328117.148381, 1328127.27303, 1328167.37566, 1328167.37566, 1328190.868814, 1328248.306227, 1328248.306227, 1328248.306227, 1328251.077568, 1328291.600731, 1328300.165272, 1328300.165272, 1328324.553344, 1328334.988341, 1328369.407405, 1328369.407405, 1328388.646123, 1328388.646123, 1328388.646123, 1328388.646123, 1328427.569587, 1328440.9083, 1328470.699816, 1328470.699816, 1328515.360169, 1328515.360169, 1328528.825031, 1328528.825031, 1328558.804141, 1328575.761046, 1328595.114774, 1328611.980656, 1328615.275535, 1328615.275535, 1328634.998665, 1328634.998665, 1328658.963481, 1328660.580826, 1328692.43236, 1328696.389638, 1328724.180431, 1328728.124903, 1328748.297505, 1328773.905288, 1328790.598311, 1328790.598311, 1328798.115496, 1328833.144809, 1328833.144809, 1328835.613132, 1328867.520364, 1328909.109664, 1328909.496408, 1328926.955083, 1328934.129319, 1328934.129319, 1328970.525567, 1328977.47515, 1328997.973255, 1329028.253028, 1329028.253028, 1329028.253028, 1329040.026731, 1329046.616942, 1329079.405943, 1329085.858429, 1329110.002359, 1329110.002359, 1329146.210622, 1329146.210622, 1329150.647077, 1329161.214567, 1329161.636443, 1329184.322928, 1329222.734017, 1329235.849318, 1329235.849318, 1329268.439707, 1329308.053157, 1329308.053157, 1329309.192503, 1329333.576779, 1329333.576779, 1329355.145997, 1329366.412086, 1329393.831233, 1329399.410568, 1329427.723191, 1329427.723191, 1329448.14794, 1329463.688809, 1329468.402286, 1329486.954263, 1329497.09906, 1329541.719609, 1329541.719609, 1329541.719609, 1329541.719609, 1329547.595573, 1329602.173725, 1329602.173725, 1329644.434961, 1329644.434961, 1329644.434961, 1329658.240085, 1329674.298456, 1329674.298456, 1329681.513887, 1329731.633997, 1329731.633997, 1329749.076319, 1329768.366256, 1329768.366256, 1329771.688512, 1329790.660475, 1329813.934168, 1329813.934168, 1329844.45942, 1329864.069743, 1329864.069743, 1329870.015246, 1329906.80016, 1329935.97085, 1329935.97085, 1329968.841117, 1329968.841117, 1329968.841117, 1329976.90457, 1329980.933749, 1330003.884466, 1330003.884466, 1330060.649492, 1330068.303023, 1330068.303023, 1330068.303023, 1330120.554679, 1330120.554679, 1330121.246531, 1330165.277233, 1330165.277233, 1330170.105937, 1330185.396777, 1330186.443035, 1330195.838706, 1330235.413183, 1330264.655057, 1330274.148957, 1330274.148957, 1330305.695982, 1330307.109187, 1330307.109187, 1330319.1992, 1330352.812777, 1330354.161972, 1330385.225088, 1330385.225088, 1330385.225088, 1330411.762337, 1330428.154481, 1330433.193397, 1330459.465383, 1330459.465383, 1330471.343717, 1330476.573313, 1330524.388429, 1330524.388429, 1330557.789917, 1330557.789917, 1330561.630143, 1330589.566038, 1330589.566038, 1330609.50919, 1330609.50919, 1330645.639139, 1330690.939213, 1330715.039033, 1330716.906163, 1330716.906163, 1330716.906163, 1330716.906163, 1330728.791782, 1330766.101149, 1330780.973721, 1330780.973721, 1330797.587689, 1330810.107785, 1330831.458732, 1330846.781058, 1330846.781058, 1330861.860556, 1330861.860556, 1330901.906693, 1330901.906693, 1330904.273615, 1330922.068003, 1330936.06676, 1330962.085933, 1330962.085933, 1330970.829891, 1331001.52143, 1331041.017006, 1331046.436128, 1331046.436128, 1331076.220825, 1331076.220825, 1331099.741107, 1331125.644724, 1331128.879379, 1331128.879379, 1331132.819313, 1331164.777463, 1331164.777463, 1331170.989786, 1331201.663104, 1331201.663104, 1331201.663104, 1331222.846575, 1331248.892451, 1331255.350173, 1331264.676132, 1331311.673991, 1331311.673991, 1331334.037995, 1331334.037995, 1331367.010448, 1331375.903046, 1331382.977455, 1331401.973716, 1331410.058962, 1331435.379781, 1331435.379781, 1331452.591635, 1331465.71621, 1331465.71621, 1331479.632993, 1331497.257599, 1331523.904594, 1331531.882484, 1331572.169635, 1331572.169635, 1331594.056933, 1331594.056933, 1331597.610256, 1331601.21582, 1331625.484519, 1331625.484519, 1331646.387529, 1331683.398271, 1331683.398271, 1331683.398271, 1331693.084594, 1331716.055107, 1331748.59291, 1331767.121284, 1331767.121284, 1331770.182788, 1331791.592182, 1331817.435266, 1331823.899727, 1331850.08675, 1331850.08675, 1331850.08675, 1331870.917631, 1331893.517945, 1331909.753339, 1331913.835968, 1331930.799125, 1331964.727955, 1331964.727955, 1331964.727955, 1331968.251138, 1332003.166251, 1332003.166251, 1332025.37131, 1332031.810951, 1332048.472701, 1332071.403689, 1332085.697087, 1332085.697087, 1332108.173148, 1332133.961169, 1332135.469239, 1332161.547894, 1332161.547894, 1332186.419645, 1332186.419645, 1332193.923929, 1332195.019528, 1332229.710735, 1332253.958639, 1332263.02834, 1332276.554506, 1332290.033435, 1332290.033435, 1332290.033435, 1332316.611764, 1332342.261114, 1332351.446965, 1332363.975332, 1332374.787748, 1332419.63855, 1332419.63855, 1332419.63855, 1332432.388641, 1332455.316567, 1332455.316567, 1332466.332912, 1332482.340645, 1332494.003439, 1332540.179423, 1332540.179423, 1332540.209181, 1332540.209181, 1332568.375609, 1332585.686811, 1332604.456787, 1332626.350138, 1332626.350138, 1332644.338351, 1332657.4298, 1332703.415795, 1332703.415795, 1332703.415795, 1332712.039665, 1332724.095347, 1332743.472836, 1332754.643485, 1332759.789044, 1332764.441525, 1332822.857187, 1332822.857187, 1332847.205678, 1332847.205678, 1332847.205678, 1332847.205678, 1332862.119375, 1332892.339523, 1332892.339523, 1332930.349471, 1332930.349471, 1332950.084078, 1332950.084078, 1332950.084078, 1332984.55532, 1332990.851682, 1333005.552146, 1333005.552146, 1333044.866869, 1333044.866869, 1333089.376315, 1333089.376315, 1333089.961701, 1333099.512656, 1333133.979537, 1333133.979537, 1333151.871911, 1333157.130867, 1333173.100016, 1333198.661335, 1333217.264932, 1333245.595872, 1333245.595872, 1333245.595872, 1333268.291988, 1333268.291988, 1333304.234232, 1333304.234232, 1333304.234232, 1333304.234232, 1333330.038535, 1333330.038535, 1333373.17779, 1333390.425193, 1333390.425193, 1333421.677062, 1333421.677062, 1333421.677062, 1333421.677062, 1333428.453799, 1333440.639035, 1333484.337709, 1333487.168812, 1333520.484645, 1333523.554304, 1333525.048226, 1333535.373058, 1333549.069484, 1333572.286501, 1333592.051205, 1333592.051205, 1333614.518747, 1333626.35549, 1333655.952191, 1333655.952191, 1333674.348699, 1333681.951794, 1333681.951794, 1333708.916905, 1333711.688706, 1333734.906144, 1333756.115786, 1333801.216672, 1333801.216672, 1333801.216672, 1333801.216672, 1333813.56478, 1333813.56478, 1333857.989529, 1333857.989529, 1333865.723124, 1333865.723124, 1333910.19829, 1333928.276429, 1333933.855611, 1333961.800135, 1333961.800135, 1333976.485276, 1333976.485276, 1333976.485276, 1334002.575194, 1334041.57257, 1334041.57257, 1334062.12248, 1334062.12248, 1334062.12248, 1334095.105098, 1334124.5134, 1334124.5134, 1334140.147445, 1334140.147445, 1334188.042617, 1334188.042617, 1334188.042617, 1334188.042617, 1334210.732788, 1334210.732788, 1334226.405993, 1334244.574544, 1334250.564673, 1334292.952356, 1334294.586888, 1334315.767293, 1334315.843905, 1334338.778348, 1334339.072804, 1334339.072804, 1334389.601107, 1334389.601107, 1334389.601107, 1334389.601107, 1334400.120338, 1334419.427758, 1334423.747343, 1334425.573167, 1334469.3091, 1334469.555342, 1334490.411426, 1334499.22088, 1334499.22088, 1334535.343486, 1334552.858454, 1334566.785629, 1334569.6503, 1334600.623452, 1334607.682112, 1334614.335445, 1334626.713442, 1334645.274872, 1334657.119607, 1334683.049849, 1334695.64059, 1334704.015964, 1334704.015964, 1334721.887755, 1334721.887755, 1334759.429077, 1334759.429077, 1334795.93426, 1334795.93426, 1334797.801229, 1334808.238548, 1334840.730955, 1334840.730955, 1334851.237079, 1334868.570832, 1334894.989694, 1334897.499971, 1334913.78951, 1334927.365604, 1334931.447205, 1334938.292908, 1334966.701569, 1334966.701569, 1334992.379446, 1334997.961778, 1335021.167547, 1335021.167547, 1335039.639864, 1335039.639864, 1335077.043509, 1335089.43926, 1335091.042963, 1335119.701328, 1335123.627932, 1335126.414396, 1335126.414396, 1335154.49249, 1335158.906556, 1335160.589932, 1335222.645692, 1335222.645692, 1335248.436837, 1335248.436837, 1335248.436837, 1335248.436837, 1335273.289644, 1335277.43615, 1335277.43615, 1335306.273803, 1335331.300002, 1335341.191221, 1335373.46051, 1335373.46051, 1335373.46051, 1335419.689963, 1335419.689963, 1335425.755028, 1335438.024119, 1335438.259161, 1335451.399806, 1335467.202212, 1335485.538828, 1335498.76686, 1335508.141513, 1335514.953864, 1335525.114906, 1335558.735069, 1335573.374175, 1335573.374175, 1335589.681323, 1335608.553742, 1335608.553742, 1335653.123137, 1335653.123137, 1335653.852014, 1335672.131289, 1335678.225943, 1335678.225943, 1335710.295473, 1335716.86362, 1335742.270059, 1335755.911591, 1335775.634258, 1335779.891161, 1335799.937409, 1335799.937409, 1335842.008109, 1335842.008109, 1335842.008109, 1335842.008109, 1335868.490937, 1335882.32962, 1335904.878681, 1335916.818967, 1335917.756918, 1335934.715245, 1335958.860189, 1335990.262335, 1335990.262335, 1335990.262335, 1335990.262335, 1335993.286088, 1336027.716741, 1336047.869295, 1336067.917289, 1336067.917289, 1336067.917289, 1336102.16758, 1336108.078223, 1336108.078223, 1336130.33668, 1336159.442882, 1336177.949216, 1336177.949216, 1336199.419173, 1336199.419173, 1336199.419173, 1336203.081645, 1336255.874537, 1336255.874537, 1336255.874537, 1336280.254354, 1336280.254354, 1336298.469163, 1336338.965537, 1336340.652601, 1336346.138927, 1336346.138927, 1336346.138927, 1336390.43798, 1336390.43798, 1336412.071411, 1336412.071411, 1336412.071411, 1336450.298044, 1336450.298044, 1336450.298044, 1336479.412393, 1336483.94963, 1336512.744125, 1336526.476728, 1336534.176705, 1336538.934508, 1336582.336587, 1336582.336587, 1336582.336587, 1336583.495641, 1336583.495641, 1336622.37859, 1336650.037946, 1336650.037946, 1336695.537953, 1336695.537953, 1336717.837792, 1336722.283378, 1336722.283378, 1336726.276688, 1336740.785578, 1336774.080301, 1336774.080301, 1336777.672271, 1336786.267106, 1336805.315838, 1336807.204916, 1336807.204916, 1336849.045535, 1336859.055399, 1336863.286408, 1336907.907463, 1336919.991494, 1336919.991494, 1336919.991494, 1336926.052449, 1336946.855767, 1336968.621321, 1336986.086754, 1336986.678935, 1337011.037018, 1337011.037018, 1337027.275594, 1337027.275594, 1337053.689537, 1337097.022735, 1337097.022735, 1337097.022735, 1337097.022735, 1337128.418779, 1337145.0116, 1337163.535895, 1337163.535895, 1337163.535895, 1337172.308578, 1337190.532749, 1337219.37154, 1337219.37154, 1337235.917057, 1337235.917057, 1337258.749117, 1337269.769526, 1337285.596627, 1337299.804951, 1337310.522914, 1337311.096756, 1337332.039566, 1337355.486389, 1337387.794555, 1337387.794555, 1337394.775093, 1337404.572998, 1337415.26967, 1337434.103764, 1337456.340783, 1337456.340783, 1337464.96373, 1337473.810899, 1337492.650145, 1337530.086114, 1337530.086114, 1337530.091145, 1337557.404143, 1337557.404143, 1337561.10883, 1337569.616129, 1337590.861299, 1337631.180214, 1337631.180214, 1337660.026516, 1337660.026516, 1337660.026516, 1337677.546022, 1337689.927627, 1337699.598521, 1337701.66244, 1337723.12495, 1337723.12495, 1337754.081719, 1337765.111946, 1337787.988961, 1337809.036169, 1337814.307094, 1337814.307094, 1337820.82302, 1337855.567956, 1337855.567956, 1337855.567956, 1337890.005633, 1337894.516593, 1337902.952562, 1337902.952562, 1337957.136168, 1337957.136168, 1337965.882337, 1337965.882337, 1337993.330941, 1338000.041446, 1338036.706482, 1338037.774915, 1338042.736004, 1338051.83674, 1338051.83674, 1338074.59418, 1338101.696138, 1338120.01052, 1338120.01052, 1338120.01052, 1338122.984096, 1338166.875371, 1338166.875371, 1338173.699835, 1338173.699835, 1338204.085197, 1338204.085197, 1338234.011481, 1338234.011481, 1338270.999841, 1338270.999841, 1338274.782723, 1338274.782723, 1338304.002615, 1338304.002615, 1338356.667988, 1338359.023876, 1338359.023876, 1338362.522301, 1338370.221369, 1338407.670158, 1338407.670158, 1338420.82145, 1338438.653854, 1338474.756299, 1338474.756299, 1338474.756299, 1338474.756299, 1338519.114129, 1338521.173834, 1338521.173834, 1338547.42552, 1338557.810616, 1338557.810616, 1338578.809582, 1338578.809582, 1338600.685187, 1338600.685187, 1338620.86741, 1338620.86741, 1338664.06454, 1338673.236284, 1338681.20492, 1338681.20492, 1338724.609389, 1338742.097716, 1338742.097716, 1338744.897251, 1338751.57972, 1338757.880631, 1338757.880631, 1338797.230779, 1338806.855385, 1338811.097077, 1338815.788973, 1338849.562964, 1338849.562964, 1338885.652262, 1338885.652262, 1338885.652262, 1338886.173407, 1338928.927124, 1338928.927124, 1338941.431705, 1338953.489586, 1338973.870755, 1338973.870755, 1338981.072691, 1338995.487734, 1338995.487734, 1339035.621339, 1339049.383509, 1339049.383509, 1339078.597076, 1339078.597076, 1339078.597076, 1339112.629758, 1339112.629758, 1339132.933661, 1339155.000289, 1339155.000289, 1339155.000289, 1339173.830735, 1339193.841313, 1339193.841313, 1339208.39179, 1339233.191781, 1339262.649473, 1339262.649473, 1339281.77808, 1339281.77808, 1339302.078689, 1339304.193672, 1339325.579495, 1339325.579495, 1339331.790426, 1339366.848741, 1339366.848741, 1339378.017637, 1339408.766748, 1339408.766748, 1339427.746496, 1339444.014822, 1339444.014822, 1339459.137747, 1339459.137747, 1339477.608028, 1339483.218039, 1339491.527008, 1339541.28975, 1339541.28975, 1339563.977255, 1339566.906579, 1339566.906579, 1339607.538759, 1339607.538759, 1339612.291448, 1339612.291448, 1339621.193526, 1339625.466612, 1339660.491175, 1339676.509445, 1339685.904861, 1339685.904861, 1339693.015214, 1339723.093573, 1339723.093573, 1339740.034707, 1339740.034707, 1339749.057062, 1339774.539936, 1339784.181686, 1339798.710762, 1339812.405922, 1339830.277237, 1339851.728664, 1339852.442302, 1339871.785418, 1339871.785418, 1339899.017244, 1339899.017244, 1339926.304047, 1339926.304047, 1339946.183033, 1339969.321426, 1339979.508803, 1339979.508803, 1339999.044207, 1340028.758899, 1340028.758899, 1340028.758899, 1340043.187355, 1340059.878862, 1340059.878862, 1340079.202473, 1340114.975825, 1340114.975825, 1340114.975825, 1340115.648068, 1340147.708757, 1340147.708757, 1340183.496162, 1340183.496162, 1340186.86311, 1340208.134013, 1340214.652266, 1340245.795807, 1340245.795807, 1340268.74126, 1340268.74126, 1340269.139935, 1340304.604034, 1340304.604034, 1340323.621804, 1340323.621804, 1340340.80998, 1340347.080253, 1340358.419054, 1340371.898271, 1340405.347913, 1340412.726232, 1340437.279987, 1340446.368168, 1340450.678384, 1340469.677913, 1340473.953872, 1340473.953872, 1340473.953872, 1340476.713855, 1340511.199537, 1340511.199537, 1340552.076356, 1340552.076356, 1340595.350426, 1340595.350426, 1340595.350426, 1340605.298371, 1340621.428554, 1340621.428554, 1340621.428554, 1340648.382863, 1340648.382863, 1340683.469148, 1340692.209942, 1340716.255828, 1340716.255828, 1340733.542646, 1340742.935336, 1340742.935336, 1340751.339271, 1340754.541872, 1340780.894594, 1340788.993302, 1340824.245966, 1340824.245966, 1340827.502705, 1340835.93204, 1340866.281971, 1340889.942017, 1340889.942017, 1340903.156731, 1340936.02257, 1340936.02257, 1340936.02257, 1340938.924212, 1340943.612149, 1340973.644252, 1340991.266705, 1340995.952543, 1341016.669587, 1341016.669587, 1341060.783015, 1341060.783015, 1341067.038449, 1341067.038449, 1341089.361348, 1341103.329553, 1341103.329553, 1341103.329553, 1341129.96763, 1341144.640607, 1341172.813574, 1341184.62008, 1341184.62008, 1341233.652532, 1341236.645078, 1341236.645078, 1341236.645078, 1341238.436469, 1341253.528291, 1341260.056702, 1341291.602668, 1341298.980776, 1341298.980776, 1341308.901212, 1341320.834856, 1341326.81855, 1341339.851785, 1341367.162303, 1341380.669218, 1341380.669218, 1341394.539318, 1341430.908574, 1341430.908574, 1341453.757129, 1341475.427073, 1341475.427073, 1341500.673294, 1341510.090209, 1341510.090209, 1341517.994034, 1341537.120657, 1341548.244649, 1341559.098459, 1341567.550958, 1341576.126595, 1341584.855669, 1341584.855669, 1341628.456639, 1341628.456639, 1341628.456639, 1341677.453672, 1341688.413635, 1341688.413635, 1341688.413635, 1341711.466653, 1341711.466653, 1341728.546443, 1341745.255803, 1341752.28859, 1341752.28859, 1341774.485782, 1341808.580342, 1341808.580342, 1341814.5022, 1341848.31685, 1341852.305066, 1341876.930216, 1341876.930216, 1341891.164195, 1341926.759046, 1341926.759046, 1341926.759046, 1341926.759046, 1341926.759046, 1341936.620635, 1341938.264998, 1341954.43397, 1341986.302285, 1341997.442403, 1342016.227568, 1342016.453143, 1342040.740336, 1342040.740336, 1342059.822314, 1342059.822314, 1342081.943313, 1342086.873888, 1342125.403886, 1342125.403886, 1342126.958794, 1342126.958794, 1342139.487996, 1342181.063255, 1342182.545815, 1342182.545815, 1342205.838195, 1342226.461362, 1342226.461362, 1342241.066805, 1342246.459347, 1342273.958081, 1342273.958081, 1342291.312806, 1342291.312806, 1342332.296949, 1342332.296949, 1342367.497635, 1342367.497635, 1342367.497635, 1342367.497635, 1342371.506898, 1342405.207899, 1342405.207899, 1342434.339948, 1342449.798607, 1342449.798607, 1342458.773976, 1342466.720569, 1342488.245269, 1342498.195117, 1342498.195117, 1342538.39948, 1342545.958357, 1342545.958357, 1342545.958357, 1342576.843912, 1342586.890528, 1342586.890528, 1342621.554987, 1342621.937931, 1342652.273393, 1342652.273393, 1342678.126023, 1342678.126023, 1342682.414272, 1342695.615936, 1342695.615936, 1342715.434891, 1342745.875127, 1342745.875127, 1342790.885023, 1342790.885023, 1342790.885023, 1342790.885023, 1342815.421385, 1342815.421385, 1342844.55235, 1342849.563789, 1342849.563789, 1342868.982286, 1342896.488119, 1342896.488119, 1342929.413983, 1342929.413983, 1342929.413983, 1342929.413983, 1342929.413983, 1342949.676489, 1342999.572042, 1342999.572042, 1343004.462324, 1343004.462324, 1343011.530205, 1343045.82785, 1343052.603364, 1343072.943421, 1343086.876414, 1343105.910944, 1343105.910944, 1343121.744237, 1343135.924156, 1343135.924156, 1343141.733117, 1343141.733117, 1343175.780456, 1343180.52731, 1343200.793203, 1343224.15601, 1343224.15601, 1343229.448967, 1343231.482124, 1343240.660328, 1343270.995414, 1343281.450023, 1343303.800241, 1343332.289288, 1343332.289288, 1343354.247512, 1343354.247512, 1343354.247512, 1343369.27253, 1343371.514336, 1343410.688385, 1343410.688385, 1343410.688385, 1343433.853926, 1343445.815587, 1343445.815587, 1343445.815587, 1343477.936986, 1343504.841769, 1343518.443489, 1343520.831769, 1343520.831769, 1343548.846038, 1343548.846038, 1343548.846038, 1343548.961215, 1343577.425832, 1343612.98098, 1343635.010473, 1343635.010473, 1343639.873738, 1343665.160124, 1343673.64631, 1343673.64631, 1343686.145934, 1343704.468222, 1343726.145334, 1343726.145334, 1343726.145334, 1343751.938657, 1343751.938657, 1343751.938657, 1343759.429383, 1343796.793345, 1343839.857865, 1343839.857865, 1343839.857865, 1343856.206647, 1343872.37551, 1343872.37551, 1343878.899234, 1343923.162487, 1343923.162487, 1343923.162487, 1343942.736898, 1343971.116994, 1343971.116994, 1343971.116994, 1343975.004409, 1343983.490566, 1343983.490566, 1343983.490566, 1344013.785319, 1344057.924359, 1344067.161192, 1344067.161192, 1344093.742772, 1344095.30889, 1344106.638789, 1344106.638789, 1344109.264909, 1344139.671977, 1344153.53285, 1344153.53285, 1344172.969568, 1344189.30381, 1344217.986216, 1344217.986216, 1344217.986216, 1344223.695813, 1344223.695813, 1344262.065107, 1344262.065107, 1344267.540342, 1344286.063428, 1344293.989825, 1344309.085318, 1344353.540924, 1344353.540924, 1344353.540924, 1344372.101922, 1344395.021426, 1344395.021426, 1344395.021426, 1344397.2494, 1344434.258714, 1344434.258714, 1344434.258714, 1344435.915403, 1344459.526833, 1344474.599082, 1344492.368026, 1344522.315286, 1344538.015949, 1344562.317929, 1344562.317929, 1344562.317929, 1344562.317929, 1344562.317929, 1344573.77094, 1344591.587091, 1344609.113264, 1344634.315958, 1344634.315958, 1344654.773156, 1344659.859231, 1344659.859231, 1344659.859231, 1344707.293796, 1344707.293796, 1344726.831319, 1344726.831319, 1344749.734786, 1344758.985416, 1344772.114242, 1344772.114242, 1344787.842703, 1344787.842703, 1344818.695082, 1344818.695082, 1344844.600535, 1344869.327827, 1344869.327827, 1344869.327827, 1344904.870611, 1344904.870611, 1344921.518092, 1344942.770849, 1344942.770849, 1344942.770849, 1344956.205484, 1344971.560307, 1344986.491239, 1344996.142438, 1345001.53624, 1345001.53624, 1345025.200642, 1345025.200642, 1345053.144018, 1345061.990542, 1345096.663074, 1345096.663074, 1345101.055866, 1345122.705082, 1345131.328055, 1345131.328055, 1345150.992108, 1345163.954746, 1345194.793288, 1345194.793288, 1345194.793288, 1345198.412772, 1345225.750496, 1345225.750496, 1345238.907952, 1345258.5751, 1345265.29132, 1345269.559903, 1345312.309813, 1345331.771526, 1345331.771526, 1345341.710168, 1345360.371668, 1345362.057476, 1345374.421124, 1345374.421124, 1345391.022046, 1345391.022046, 1345399.885911, 1345428.248203, 1345458.841891, 1345458.841891, 1345464.281032, 1345467.039465, 1345467.039465, 1345474.547468, 1345485.676332, 1345485.676332, 1345514.064985, 1345526.339999, 1345556.315474, 1345561.399912, 1345595.244608, 1345611.996427, 1345611.996427, 1345611.996427, 1345625.02019, 1345625.02019, 1345654.429162, 1345654.429162, 1345675.975561, 1345675.975561, 1345693.816096, 1345693.816096, 1345724.934153, 1345741.418906, 1345741.418906, 1345741.418906, 1345783.291893, 1345785.915085, 1345785.915085, 1345785.915085, 1345809.63991, 1345811.402387, 1345811.402387, 1345864.534355, 1345864.534355, 1345892.04454, 1345895.358339, 1345912.543848, 1345912.543848, 1345912.543848, 1345951.079893, 1345951.079893, 1345967.332525, 1345967.332525, 1345974.880888, 1345989.367442, 1345992.167848, 1346010.563566, 1346010.563566, 1346043.691262, 1346043.691262, 1346076.37898, 1346092.042803, 1346092.042803, 1346095.182081, 1346095.182081, 1346135.987549, 1346135.987549, 1346144.143612, 1346144.143612, 1346148.973045, 1346167.531871, 1346226.763897, 1346226.763897, 1346242.649941, 1346242.649941, 1346242.649941, 1346242.649941, 1346263.734847, 1346264.404516, 1346310.444525, 1346310.444525, 1346310.444525, 1346310.444525, 1346329.468778, 1346337.876704, 1346356.373528, 1346356.373528, 1346368.975264, 1346375.861797, 1346388.230396, 1346413.001669, 1346425.460789, 1346431.716104, 1346463.023778, 1346463.023778, 1346463.153143, 1346467.919561, 1346484.48648, 1346518.209756, 1346520.975479, 1346539.955125, 1346558.627, 1346567.771503, 1346567.771503, 1346574.441153, 1346595.711155, 1346595.711155, 1346628.04121, 1346628.04121, 1346644.362101, 1346644.362101, 1346672.559277, 1346672.559277, 1346672.559277, 1346695.754644, 1346714.753369, 1346714.753369, 1346731.400021, 1346742.195229, 1346742.195229, 1346754.836476, 1346788.270226, 1346788.270226, 1346802.811413, 1346802.811413, 1346813.027314, 1346842.779662, 1346852.516054, 1346872.600812, 1346872.600812, 1346872.600812, 1346925.240458, 1346925.240458, 1346925.240458, 1346925.240458, 1346955.087088, 1346955.087088, 1346963.993767, 1346970.99252, 1346981.110263, 1347016.329158, 1347028.715638, 1347028.715638, 1347038.031757, 1347038.031757, 1347071.671993, 1347071.671993, 1347081.923007, 1347081.923007, 1347085.845516, 1347123.828417, 1347132.385925, 1347147.788902, 1347150.546183, 1347154.663896, 1347183.691955, 1347183.691955, 1347203.88481, 1347222.201426, 1347222.201426, 1347222.201426, 1347222.201426, 1347252.94698, 1347261.262209, 1347261.262209, 1347266.144854, 1347287.032725, 1347292.371084, 1347301.102262, 1347363.196995, 1347363.196995, 1347363.196995, 1347384.630555, 1347384.630555, 1347390.381625, 1347429.829697, 1347429.829697, 1347431.818, 1347450.150972, 1347451.048499, 1347468.522222, 1347468.522222, 1347499.001319, 1347499.001319, 1347499.001319, 1347501.896634, 1347538.663807, 1347538.663807, 1347559.892481, 1347566.987052, 1347609.986699, 1347609.986699, 1347609.986699, 1347609.986699, 1347624.338329, 1347624.338329, 1347653.218512, 1347653.218512, 1347690.679132, 1347690.679132, 1347706.613877, 1347706.613877, 1347721.829008, 1347738.393268, 1347739.875606, 1347758.721331, 1347767.019093, 1347767.019093, 1347804.891985, 1347804.891985, 1347806.260418, 1347826.312377, 1347826.312377, 1347836.310879, 1347860.515735, 1347864.716155, 1347875.655909, 1347876.145951, 1347904.193319, 1347927.084547, 1347933.988196, 1347933.988196, 1347933.988196, 1347942.334521, 1347959.783109, 1348004.055221, 1348015.384384, 1348015.384384, 1348015.384384, 1348023.002943, 1348068.205184, 1348068.205184, 1348068.205184, 1348079.462624, 1348091.725503, 1348096.404867, 1348121.686536, 1348121.686536, 1348121.686536, 1348132.747732, 1348132.747732, 1348181.590558, 1348181.590558, 1348198.987978, 1348210.282589, 1348227.474499, 1348227.474499, 1348227.474499, 1348250.588602, 1348250.588602, 1348250.945733, 1348268.557107, 1348295.351681, 1348318.027729, 1348318.027729, 1348326.571455, 1348328.304326, 1348328.304326, 1348365.258801, 1348374.528607, 1348374.528607, 1348406.698999, 1348406.698999, 1348406.698999, 1348436.028405, 1348436.028405, 1348442.319635, 1348443.083629, 1348445.154372, 1348461.629258, 1348487.056127, 1348493.081823, 1348493.081823, 1348520.793035, 1348526.846065, 1348573.702164, 1348573.702164, 1348573.702164, 1348587.845966, 1348587.845966, 1348615.857264, 1348615.857264, 1348615.857264, 1348634.949747, 1348663.547744, 1348663.547744, 1348678.590014, 1348678.590014, 1348686.44713, 1348686.44713, 1348720.681258, 1348732.534483, 1348742.640368, 1348742.640368, 1348758.684497, 1348761.610331, 1348765.384248, 1348774.130736, 1348824.08354, 1348824.08354, 1348825.414396, 1348835.375298, 1348854.539488, 1348854.539488, 1348859.789039, 1348872.88899, 1348901.766838, 1348929.434424, 1348929.434424, 1348946.176049, 1348946.176049, 1348946.176049, 1348953.172921, 1348953.172921, 1348963.891695, 1348982.831869, 1349006.228821, 1349006.228821, 1349006.228821, 1349030.725199, 1349045.894963, 1349055.253344, 1349064.905404, 1349072.840897, 1349094.209569, 1349120.523822, 1349120.523822, 1349120.523822, 1349153.764605, 1349165.218144, 1349165.218144, 1349170.930423, 1349181.699622, 1349199.367276, 1349219.819736, 1349219.819736, 1349268.253637, 1349268.253637, 1349268.253637, 1349268.253637, 1349268.323362, 1349280.183237, 1349280.183237, 1349305.416054, 1349318.760631, 1349318.760631, 1349322.145967, 1349328.173353, 1349329.463514, 1349358.751074, 1349377.244344, 1349382.017082, 1349382.017082, 1349425.300725, 1349425.300725, 1349426.516861, 1349444.911779, 1349444.911779, 1349462.588975, 1349479.633929, 1349501.482192, 1349501.482192, 1349501.482192, 1349522.322346, 1349545.730972, 1349545.730972, 1349545.730972, 1349545.730972, 1349545.730972, 1349572.901392, 1349603.87765, 1349614.983324, 1349617.891592, 1349621.688214, 1349631.28942, 1349662.047693, 1349677.697147, 1349688.070671, 1349693.426373, 1349693.426373, 1349720.512729, 1349720.512729, 1349728.328215, 1349729.088544, 1349765.058077, 1349773.061752, 1349773.061752, 1349773.061752, 1349786.062802, 1349786.062802, 1349811.113636, 1349811.113636, 1349811.113636, 1349848.547228, 1349874.701746, 1349874.701746, 1349885.97199, 1349889.477039, 1349894.361533, 1349919.042717, 1349919.042717, 1349919.042717, 1349938.380997, 1349942.875554, 1349961.13998, 1350006.034146, 1350006.034146, 1350006.034146, 1350014.897926, 1350014.897926, 1350049.202613, 1350049.202613, 1350049.202613, 1350077.592248, 1350077.592248, 1350077.592248, 1350083.096722, 1350102.482274, 1350113.150708, 1350120.850717, 1350124.333669, 1350154.206071, 1350162.330491, 1350173.009667, 1350197.140704, 1350197.140704, 1350197.140704, 1350220.142438, 1350220.142438, 1350242.927039, 1350269.518963, 1350269.518963, 1350269.518963, 1350269.518963, 1350301.213114, 1350303.562638, 1350320.726128, 1350334.690012, 1350371.804416, 1350371.804416, 1350371.804416, 1350371.804416, 1350371.804416, 1350389.425045, 1350406.368491, 1350406.368491, 1350413.593792, 1350418.400522, 1350428.832698, 1350428.832698, 1350472.028917, 1350472.028917, 1350511.290613, 1350521.700262, 1350521.700262, 1350525.537523, 1350542.48236, 1350542.48236, 1350546.824123, 1350546.824123, 1350556.14845, 1350595.703295, 1350598.985008, 1350613.619823, 1350636.040489, 1350641.353933, 1350641.353933, 1350641.353933, 1350660.600282, 1350660.600282, 1350687.122872, 1350695.406547, 1350695.406547, 1350719.734974, 1350724.55197, 1350725.73698, 1350764.325706, 1350764.325706, 1350764.325706, 1350764.325706, 1350769.447625, 1350769.447625, 1350818.573734, 1350818.573734, 1350827.648966, 1350855.428859, 1350855.428859, 1350857.612935, 1350872.332971, 1350895.238044, 1350917.160135, 1350936.246997, 1350936.246997, 1350936.246997, 1350959.042751, 1350959.042751, 1350959.042751, 1350974.124942, 1350974.124942, 1350986.590961, 1351003.893055, 1351012.977192, 1351028.980905, 1351028.980905, 1351053.915449, 1351059.822496, 1351059.822496, 1351062.86501, 1351095.991504, 1351095.991504, 1351111.107703, 1351114.923728, 1351114.923728, 1351139.914926, 1351165.948815, 1351165.948815, 1351184.818173, 1351184.818173, 1351188.796399, 1351192.611104, 1351211.594742, 1351241.332818, 1351241.332818, 1351241.332818, 1351263.337293, 1351301.535934, 1351301.535934, 1351301.535934, 1351349.652855, 1351349.652855, 1351349.652855, 1351349.652855, 1351349.652855, 1351364.443188, 1351364.443188, 1351378.195054, 1351383.407046, 1351416.7961, 1351423.908357, 1351423.908357, 1351458.29316, 1351458.29316, 1351458.29316, 1351458.29316, 1351491.320128, 1351491.320128, 1351497.280924, 1351498.710932, 1351521.930714, 1351521.930714, 1351522.134075, 1351564.62474, 1351564.62474, 1351564.62474, 1351569.121989, 1351616.850628, 1351616.850628, 1351616.850628, 1351634.990924, 1351635.366063, 1351664.294576, 1351664.294576, 1351678.844027, 1351685.636721, 1351694.551201, 1351698.708271, 1351715.609614, 1351719.29036, 1351755.069522, 1351760.345928, 1351760.345928, 1351760.345928, 1351760.345928, 1351773.121673, 1351774.006656, 1351804.476585, 1351830.425527, 1351830.425527, 1351847.476126, 1351847.476126, 1351899.359208, 1351899.359208, 1351899.359208, 1351900.825614, 1351900.825614, 1351900.825614, 1351903.001054, 1351914.804357, 1351936.825138, 1351957.048781, 1351981.791514, 1351985.105584, 1351996.410364, 1351996.410364, 1352003.201881, 1352028.831228, 1352028.831228, 1352038.911366, 1352042.493591, 1352058.601888, 1352077.919554, 1352077.919554, 1352089.681853, 1352089.681853, 1352111.636713, 1352121.658268, 1352133.4542, 1352141.595433, 1352141.595433, 1352173.499086, 1352173.499086, 1352173.499086, 1352173.499086, 1352207.797173, 1352207.797173, 1352231.394992, 1352250.146695, 1352250.146695, 1352250.146695, 1352282.794076, 1352282.794076, 1352295.172159, 1352322.466655, 1352322.466655, 1352324.901698, 1352324.901698, 1352324.901698, 1352346.388907, 1352346.388907, 1352360.646161, 1352360.646161, 1352393.932391, 1352393.932391, 1352409.920191, 1352422.695992, 1352444.293072, 1352444.293072, 1352461.47044, 1352461.47044, 1352463.947176, 1352480.196497, 1352491.481061, 1352491.481061, 1352511.175255, 1352511.175255, 1352512.039635, 1352533.400195, 1352539.316868, 1352568.848479, 1352568.848479, 1352594.05219, 1352594.05219, 1352607.012825, 1352612.770945, 1352612.770945, 1352612.770945, 1352647.242248, 1352670.542358, 1352682.388919, 1352682.388919, 1352705.961131, 1352723.823977, 1352723.823977, 1352724.413142, 1352725.465839, 1352728.701584, 1352735.698515, 1352743.468658, 1352752.924829, 1352783.587526, 1352783.587526, 1352788.698174, 1352799.455682, 1352812.075277, 1352826.163175, 1352856.256791, 1352856.256791, 1352903.324316, 1352903.324316, 1352903.324316, 1352903.324316, 1352906.922053, 1352914.589207, 1352914.589207, 1352925.306084, 1352945.724425, 1352955.133154, 1352963.065374, 1352990.759804, 1352990.759804, 1352995.319177, 1352998.448822, 1353018.180495, 1353042.672903, 1353042.672903, 1353042.672903, 1353047.62532, 1353055.933244, 1353091.737786, 1353091.737786, 1353109.435036, 1353109.435036, 1353109.850054, 1353120.701597, 1353120.701597, 1353155.083724, 1353168.496856, 1353170.686634, 1353177.665387, 1353183.666964, 1353213.112739, 1353223.506134, 1353235.774506, 1353242.97326, 1353242.97326, 1353242.97326, 1353242.97326, 1353289.558304, 1353294.848143, 1353316.703439, 1353316.703439, 1353316.703439, 1353324.762581, 1353354.410716, 1353372.336978, 1353372.336978, 1353372.336978, 1353382.87491, 1353401.259875, 1353401.259875, 1353401.259875, 1353401.589731, 1353401.589731, 1353401.589731, 1353433.175809, 1353469.056224, 1353487.088563, 1353487.088563, 1353488.55106, 1353488.734495, 1353530.832646, 1353530.832646, 1353537.09023, 1353537.09023, 1353555.111999, 1353555.111999, 1353555.111999, 1353613.594451, 1353613.594451, 1353617.290648, 1353617.905865, 1353617.905865, 1353617.905865, 1353628.219211, 1353641.229366, 1353649.226101, 1353661.04992, 1353664.255317, 1353681.386326, 1353693.258642, 1353717.114573, 1353717.114573, 1353731.864691, 1353734.213131, 1353758.310163, 1353758.310163, 1353778.438501, 1353778.438501, 1353796.981836, 1353796.981836, 1353798.957663, 1353811.992229, 1353815.688629, 1353815.829232, 1353852.141781, 1353863.485323, 1353899.626896, 1353899.695277, 1353899.695277, 1353901.904062, 1353903.580935, 1353904.804325, 1353945.944478, 1353945.944478, 1353945.944478, 1353956.436096, 1353977.262051, 1353977.262051, 1354038.154001, 1354038.154001, 1354042.10917, 1354042.10917, 1354042.10917, 1354047.284239, 1354051.951527, 1354069.6547, 1354069.6547, 1354071.685124, 1354121.702136, 1354121.702136, 1354121.702136, 1354122.970548, 1354146.950671, 1354168.536018, 1354188.38363, 1354188.38363, 1354190.318005, 1354190.318005, 1354193.810457, 1354193.810457, 1354227.738402, 1354235.476665, 1354243.401568, 1354243.401568, 1354246.087598, 1354287.559957, 1354287.559957, 1354287.559957, 1354287.559957, 1354310.892001, 1354310.892001, 1354332.744262, 1354332.744262, 1354332.744262, 1354336.60315, 1354360.496565, 1354372.913458, 1354386.179872, 1354421.702422, 1354421.702422, 1354428.159939, 1354440.035394, 1354440.035394, 1354458.184225, 1354465.154845, 1354475.103919, 1354482.701086, 1354482.701086, 1354505.113255, 1354505.113255, 1354505.113255, 1354505.113255, 1354523.281187, 1354542.971463, 1354570.52928, 1354570.52928, 1354572.424904, 1354587.997042, 1354588.939236, 1354596.704333, 1354632.466888, 1354637.924062, 1354640.821883, 1354640.821883, 1354663.245628, 1354677.26594, 1354677.26594, 1354700.544043, 1354700.544043, 1354700.544043, 1354722.057845, 1354722.057845, 1354732.083841, 1354732.083841, 1354732.083841, 1354752.608074, 1354776.567204, 1354776.567204, 1354821.027283, 1354821.027283, 1354821.027283, 1354829.026891, 1354829.026891, 1354860.680576, 1354866.362467, 1354866.362467, 1354866.362467, 1354875.30469, 1354879.378682, 1354896.195284, 1354922.108092, 1354925.282035, 1354953.866169, 1354953.866169, 1354953.866169, 1354963.278343, 1354989.079613, 1354997.826751, 1354998.138534, 1355012.884119, 1355012.884119, 1355015.41347, 1355029.876637, 1355035.617564, 1355077.984602, 1355077.984602, 1355086.142739, 1355086.142739, 1355086.142739, 1355089.87435, 1355126.984759, 1355126.984759, 1355148.286627, 1355148.286627, 1355148.286627, 1355156.39174, 1355183.551692, 1355183.551692, 1355215.303267, 1355215.303267, 1355228.845525, 1355228.845525, 1355228.845525, 1355248.960338, 1355267.842994, 1355267.842994, 1355267.842994, 1355267.842994, 1355287.907488, 1355301.058943, 1355309.350817, 1355309.350817, 1355344.757043, 1355344.757043, 1355352.192223, 1355372.017173, 1355372.017173, 1355397.49485, 1355404.159357, 1355419.400542, 1355426.901161, 1355426.901161, 1355441.327926, 1355441.327926, 1355441.327926, 1355441.327926, 1355480.656505, 1355480.656505, 1355493.11169, 1355515.646317, 1355515.646317, 1355545.690721, 1355545.690721, 1355545.690721, 1355546.346105, 1355567.10453, 1355573.488734, 1355573.488734, 1355579.784727, 1355597.384219, 1355604.755157, 1355635.79592, 1355635.79592, 1355635.79592, 1355635.79592, 1355662.720397, 1355664.059895, 1355664.059895, 1355680.017603, 1355709.628328, 1355718.820325, 1355749.706574, 1355749.706574, 1355762.912922, 1355762.912922, 1355762.912922, 1355783.409536, 1355783.409536, 1355797.804092, 1355797.804092, 1355797.804092, 1355818.913203, 1355818.913203, 1355825.933828, 1355830.218117, 1355853.147723, 1355871.476402, 1355876.184684, 1355876.184684, 1355885.581125, 1355894.74945, 1355916.170813, 1355921.994954, 1355956.492917, 1355976.291195, 1355976.291195, 1355976.291195, 1355976.291195, 1355976.291195, 1355981.316381, 1356013.95822, 1356013.95822, 1356013.95822, 1356039.865701, 1356039.865701, 1356055.503685, 1356055.503685, 1356099.883506, 1356099.883506, 1356099.883506, 1356126.960591, 1356126.960591, 1356126.960591, 1356145.152828, 1356168.71663, 1356168.71663, 1356168.71663, 1356172.444793, 1356175.038045, 1356191.487391, 1356191.8461, 1356197.827486, 1356213.761525, 1356222.094732, 1356242.190348, 1356251.678245, 1356258.985585, 1356278.942709, 1356280.297578, 1356298.08468, 1356337.639591, 1356337.639591, 1356337.639591, 1356341.118898, 1356350.907039, 1356356.834203, 1356369.794837, 1356382.766137, 1356382.766137, 1356382.766137, 1356411.864925, 1356415.114665, 1356415.114665, 1356415.317269, 1356427.572293, 1356433.64147, 1356480.220436, 1356480.220436, 1356480.220436, 1356521.77546, 1356521.77546, 1356529.008788, 1356529.008788, 1356529.008788, 1356529.008788, 1356538.806716, 1356558.33222, 1356558.33222, 1356572.759993, 1356581.893078, 1356614.55757, 1356614.55757, 1356635.302635, 1356635.302635, 1356672.318396, 1356672.318396, 1356672.318396, 1356672.318396, 1356685.234607, 1356728.036438, 1356728.036438, 1356728.036438, 1356728.036438, 1356728.036438, 1356764.153193, 1356764.153193, 1356764.153193, 1356775.403471, 1356779.170323, 1356779.170323, 1356791.017688, 1356799.114993, 1356811.121383, 1356827.407406, 1356855.804664, 1356863.000983, 1356863.000983, 1356863.122776, 1356863.122776, 1356864.607398, 1356901.219102, 1356901.219102, 1356949.262027, 1356949.262027, 1356964.634121, 1356978.451099, 1356978.451099, 1356978.451099, 1356978.451099, 1356978.451099, 1356983.847105, 1356991.254184, 1357027.313023, 1357027.313023, 1357032.940248, 1357035.554402, 1357066.553361, 1357066.553361, 1357082.541835, 1357087.350034, 1357096.346543, 1357096.346543, 1357096.346543, 1357110.332116, 1357110.500956, 1357110.500956, 1357154.252163, 1357167.658665, 1357180.271847, 1357198.103897, 1357198.103897, 1357213.061881, 1357213.061881, 1357242.308711, 1357242.308711, 1357256.022872, 1357256.022872, 1357256.022872, 1357278.428882, 1357299.229022, 1357299.229022, 1357299.229022, 1357299.229022, 1357311.271776, 1357311.271776, 1357326.455882, 1357359.654871, 1357359.654871, 1357359.654871, 1357409.922926, 1357409.922926, 1357409.922926, 1357409.922926, 1357409.922926, 1357447.825082, 1357447.825082, 1357451.388141, 1357453.241944, 1357456.571071, 1357472.304162, 1357482.16892, 1357490.458621, 1357517.679626, 1357517.679626, 1357530.014787, 1357530.014787, 1357530.014787, 1357536.863419, 1357576.070726, 1357576.070726, 1357576.070726, 1357588.730008, 1357588.730008, 1357609.671024, 1357624.708561, 1357633.23292, 1357662.318329, 1357662.318329, 1357675.477754, 1357675.477754, 1357675.477754, 1357675.477754, 1357710.143299, 1357710.143299, 1357744.287019, 1357744.287019, 1357744.287019, 1357767.105356, 1357774.767167, 1357774.767167, 1357793.066553, 1357793.066553, 1357813.453231, 1357813.453231, 1357813.453231, 1357838.001432, 1357860.35763, 1357860.35763, 1357860.35763, 1357867.068555, 1357867.068555, 1357869.089348, 1357914.893069, 1357914.893069, 1357914.893069, 1357919.655484, 1357955.856376, 1357955.856376, 1357955.856376, 1357974.783369, 1357983.277697, 1357983.277697, 1357988.452207, 1358004.615045, 1358011.836331, 1358011.836331, 1358024.286216, 1358042.833543, 1358042.833543, 1358053.03032, 1358053.03032, 1358057.470559, 1358074.869896, 1358106.732538, 1358106.732538, 1358106.732538, 1358111.24176, 1358128.631259, 1358152.048037, 1358166.340194, 1358174.825055, 1358174.825055, 1358180.955498, 1358180.955498, 1358180.955498, 1358215.828457, 1358224.740772, 1358224.740772, 1358234.720205, 1358234.720205, 1358234.720205, 1358283.492569, 1358301.754707, 1358302.068989, 1358302.068989, 1358302.068989, 1358314.67417, 1358333.381686, 1358333.381686, 1358335.200058, 1358363.013588, 1358363.013588, 1358364.768712, 1358394.505074, 1358408.270381, 1358408.30075, 1358417.12247, 1358417.12247, 1358431.397072, 1358437.583372, 1358454.914843, 1358454.914843, 1358461.78473, 1358473.664284, 1358492.665527, 1358495.748907, 1358506.855591, 1358530.575273, 1358565.601003, 1358565.601003, 1358565.601003, 1358565.601003, 1358565.601003, 1358578.933199, 1358593.734351, 1358594.872018, 1358594.872018, 1358606.128522, 1358623.551007, 1358623.551007, 1358650.219255, 1358650.219255, 1358673.353268, 1358673.353268, 1358701.739148, 1358701.739148, 1358703.470645, 1358740.197668, 1358740.197668, 1358740.197668, 1358740.197668, 1358744.171828, 1358744.171828, 1358783.879402, 1358783.879402, 1358799.234704, 1358811.593652, 1358811.593652, 1358811.593652, 1358830.002947, 1358845.404859, 1358845.404859, 1358845.404859, 1358847.11515, 1358883.999631, 1358893.691242, 1358918.980169, 1358920.946208, 1358926.301294, 1358926.301294, 1358926.301294, 1358937.622066, 1358937.622066, 1358943.876436, 1358976.363632, 1358976.363632, 1358976.363632, 1358984.031603, 1359020.565156, 1359020.565156, 1359020.565156, 1359040.24919, 1359054.115605, 1359054.115605, 1359062.142961, 1359074.589647, 1359095.46284, 1359095.46284, 1359108.186078, 1359122.670049, 1359122.670049, 1359143.694115, 1359143.694115, 1359148.166153, 1359149.919047, 1359197.610283, 1359197.610283, 1359197.610283, 1359197.610283, 1359216.016371, 1359234.60696, 1359249.158757, 1359249.158757, 1359304.694004, 1359304.694004, 1359304.694004, 1359304.694004, 1359304.694004, 1359304.694004, 1359304.694004, 1359304.694004, 1359304.694004, 1359304.694004, 1359345.407847, 1359365.486602, 1359371.680978, 1359374.702323, 1359375.06612, 1359383.83881, 1359409.266307, 1359409.266307, 1359409.266307, 1359452.588033, 1359452.588033, 1359455.708455, 1359458.699566, 1359487.846223, 1359487.846223, 1359520.887947, 1359520.887947, 1359520.887947, 1359520.887947, 1359520.887947, 1359520.887947, 1359528.810689, 1359528.810689, 1359540.318844, 1359565.710916, 1359576.648778, 1359578.463019, 1359584.040615, 1359635.899868, 1359635.899868, 1359635.899868, 1359635.899868, 1359665.6867, 1359665.6867, 1359677.615394, 1359677.615394, 1359722.710066, 1359722.710066, 1359722.710066, 1359722.710066, 1359722.710066, 1359722.710066, 1359742.924933, 1359742.924933, 1359802.808261, 1359802.808261, 1359802.808261, 1359802.808261, 1359819.385419, 1359819.385419, 1359825.32806, 1359827.801515, 1359827.801515, 1359845.158419, 1359845.158419, 1359846.131993, 1359880.874872, 1359880.927024, 1359904.310706, 1359904.310706, 1359914.731243, 1359914.731243, 1359927.741894, 1359945.517103, 1359970.545236, 1359970.545236, 1359990.489291, 1359997.93235, 1359997.93235, 1359999.1109, 1359999.1109, 1360017.177639, 1360045.529834, 1360045.529834, 1360045.529834, 1360045.529834, 1360046.330297, 1360047.742343, 1360060.451913, 1360060.451913, 1360101.031275, 1360106.997227, 1360106.997227, 1360122.35798, 1360125.149931, 1360133.216474, 1360136.550844, 1360175.294473, 1360204.175849, 1360205.706973, 1360205.706973, 1360214.045869, 1360214.045869, 1360219.224201, 1360219.224201, 1360238.940314, 1360250.78379, 1360250.78379, 1360270.316003, 1360270.316003, 1360270.316003, 1360286.466212, 1360286.466212, 1360301.806934, 1360323.103326, 1360334.035418, 1360345.520378, 1360370.472732, 1360370.472732, 1360370.472732, 1360377.588574, 1360377.588574, 1360399.811123, 1360407.544891, 1360407.544891, 1360428.972569, 1360428.972569, 1360437.747338, 1360469.527036, 1360469.527036, 1360474.195568, 1360487.68521, 1360487.68521, 1360515.558372, 1360515.558372, 1360529.394522, 1360529.394522, 1360537.003887, 1360537.003887, 1360563.950573, 1360578.874997, 1360578.874997, 1360578.874997, 1360615.048958, 1360615.048958, 1360615.048958, 1360615.048958, 1360628.192192, 1360634.038445, 1360659.609642, 1360659.609642, 1360659.609642, 1360681.824852, 1360709.268374, 1360709.268374, 1360728.402219, 1360728.402219, 1360728.402219, 1360729.287426, 1360746.850035, 1360746.850035, 1360776.054663, 1360784.648502, 1360805.270161, 1360805.270161, 1360805.270161, 1360805.270161, 1360825.349942, 1360825.349942, 1360825.349942, 1360825.349942, 1360852.839308, 1360864.08645, 1360864.08645, 1360864.08645, 1360899.093539, 1360903.37505, 1360903.37505, 1360923.016218, 1360930.958859, 1360952.560908, 1360952.560908, 1360973.110104, 1360982.358264, 1360982.358264, 1360982.358264, 1360987.080992, 1361023.810052, 1361023.810052, 1361026.395327, 1361026.395327, 1361060.943976, 1361065.188214, 1361084.988632, 1361084.988632, 1361102.685654, 1361102.685654, 1361102.685654, 1361102.685654, 1361113.719851, 1361113.719851, 1361114.9092, 1361132.175983, 1361142.764223, 1361163.856884, 1361168.775254, 1361182.016324, 1361225.299658, 1361225.299658, 1361225.299658, 1361225.299658, 1361247.625458, 1361247.625458, 1361247.625458, 1361271.430163, 1361271.430163, 1361271.430163, 1361291.611301, 1361291.611301, 1361316.970639, 1361316.970639, 1361316.970639, 1361325.07737, 1361354.797453, 1361354.797453, 1361372.01503, 1361372.01503, 1361379.083313, 1361383.780885, 1361383.780885, 1361384.898861, 1361432.09703, 1361432.09703, 1361451.999942, 1361451.999942, 1361451.999942, 1361451.999942, 1361461.558583, 1361467.671546, 1361467.671546, 1361492.047797, 1361493.18127, 1361529.908854, 1361529.908854, 1361550.419913, 1361550.419913, 1361550.419913, 1361550.419913, 1361577.292385, 1361578.133414, 1361595.648655, 1361595.648655, 1361620.431454, 1361620.431454, 1361622.464331, 1361631.239196, 1361631.239196, 1361645.784015, 1361667.414165, 1361672.313298, 1361695.20281, 1361696.891054, 1361718.007331, 1361719.276849, 1361730.761762, 1361730.947591, 1361730.947591, 1361741.216279, 1361744.95446, 1361744.95446, 1361758.867358, 1361808.497235, 1361808.497235, 1361809.559299, 1361809.559299, 1361835.087734, 1361839.258053, 1361856.291866, 1361856.291866, 1361856.291866, 1361856.291866, 1361858.083878, 1361891.378156, 1361896.753072, 1361916.591925, 1361916.591925, 1361926.614354, 1361929.834842, 1361939.821142, 1361939.821142, 1361954.381789, 1361974.149444, 1361978.929007, 1362004.052964, 1362004.052964, 1362004.052964, 1362004.944308, 1362022.672595, 1362024.185551, 1362024.185551, 1362024.185551, 1362040.739212, 1362066.460523, 1362093.048726, 1362093.048726, 1362093.048726, 1362108.393559, 1362108.393559, 1362113.629001, 1362136.766881, 1362143.507708, 1362143.507708, 1362172.15347, 1362172.15347, 1362174.539855, 1362179.785322, 1362209.582469, 1362225.067932, 1362225.067932, 1362225.067932, 1362225.067932, 1362242.554825, 1362263.689844, 1362263.689844, 1362290.585398, 1362290.585398, 1362290.585398, 1362291.116687, 1362315.898776, 1362319.273266, 1362319.273266, 1362334.126162, 1362334.126162, 1362348.495849, 1362376.464067, 1362376.464067, 1362395.249643, 1362395.249643, 1362403.90249, 1362407.348756, 1362457.090466, 1362457.090466, 1362457.090466, 1362457.090466, 1362470.497348, 1362470.497348, 1362482.487275, 1362491.171519, 1362491.171519, 1362499.268332, 1362527.435934, 1362527.435934, 1362529.452883, 1362529.708617, 1362545.396794, 1362548.204255, 1362562.244842, 1362568.657384, 1362600.470291, 1362600.470291, 1362600.470291, 1362614.78221, 1362629.829827, 1362650.522677, 1362650.522677, 1362657.209113, 1362663.32403, 1362664.666712, 1362664.666712, 1362675.106153, 1362678.223551, 1362697.849714, 1362748.627995, 1362748.627995, 1362748.627995, 1362750.070753, 1362761.632583, 1362778.524595, 1362778.524595, 1362778.524595, 1362778.524595, 1362785.386999, 1362823.10455, 1362823.10455, 1362834.508825, 1362834.508825, 1362844.019259, 1362844.019259, 1362881.084273, 1362881.084273, 1362881.084273, 1362894.656774, 1362894.656774, 1362916.597072, 1362916.597072, 1362923.061725, 1362933.187697, 1362943.516084, 1362958.588088, 1362958.588088, 1362964.744943, 1362983.309318, 1362997.606994, 1363011.756995, 1363012.238397, 1363024.026723, 1363024.026723, 1363034.05872, 1363034.05872, 1363043.639036, 1363061.042822, 1363074.779901, 1363074.779901, 1363074.779901, 1363088.022055, 1363106.086723, 1363106.086723, 1363148.580586, 1363148.580586, 1363148.580586, 1363158.958055, 1363179.916149, 1363179.916149, 1363190.064848, 1363190.064848, 1363193.043344, 1363197.279658, 1363227.875227, 1363227.875227, 1363233.567787, 1363251.092433, 1363256.576019, 1363270.512814, 1363270.512814, 1363272.750088, 1363275.028574, 1363289.403226, 1363302.751229, 1363302.751229, 1363315.738268, 1363339.672618, 1363339.672618, 1363341.943492, 1363380.943859, 1363380.943859, 1363380.943859, 1363395.271028, 1363395.271028, 1363405.799746, 1363411.238705, 1363411.238705, 1363441.728327, 1363455.462102, 1363457.130305, 1363467.017802, 1363467.017802, 1363492.709468, 1363510.273654, 1363510.273654, 1363510.273654, 1363532.376102, 1363532.376102, 1363534.668916, 1363539.863125, 1363562.031276, 1363562.031276, 1363570.921654, 1363573.921711, 1363594.495344, 1363594.495344, 1363599.063928, 1363608.324561, 1363608.324561, 1363646.211954, 1363646.211954, 1363666.186859, 1363666.186859, 1363682.950886, 1363682.950886, 1363682.950886, 1363690.908576, 1363729.504388, 1363729.504388, 1363729.504388, 1363736.063689, 1363736.063689, 1363754.897529, 1363767.416359, 1363776.627362, 1363783.496281, 1363783.496281, 1363792.571161, 1363792.571161, 1363820.879653, 1363820.879653, 1363825.90465, 1363825.90465, 1363827.435397, 1363865.865717, 1363865.865717, 1363876.54377, 1363879.615804, 1363888.278538, 1363903.734857, 1363903.734857, 1363936.979138, 1363940.39833, 1363940.39833, 1363940.39833, 1363943.201924, 1363971.477704, 1363975.908522, 1363979.311526, 1364005.948042, 1364005.948042, 1364032.46798, 1364032.46798, 1364037.193766, 1364037.193766, 1364052.697829, 1364052.697829, 1364052.697829, 1364073.49946, 1364081.171802, 1364099.757377, 1364099.757377, 1364099.757377, 1364143.304805, 1364143.304805, 1364162.384388, 1364162.384388, 1364162.384388, 1364167.645831, 1364175.182914, 1364175.182914, 1364177.445992, 1364178.747656, 1364197.252132, 1364216.430256, 1364242.692809, 1364243.037348, 1364243.037348, 1364269.571563, 1364269.708085, 1364269.708085, 1364280.575026, 1364285.608584, 1364303.916543, 1364303.916543, 1364306.204025, 1364327.074318, 1364327.074318, 1364339.918186, 1364369.389967, 1364369.389967, 1364369.389967, 1364395.736763, 1364395.736763, 1364398.907734, 1364398.907734, 1364398.907734, 1364439.606247, 1364439.606247, 1364439.606247, 1364470.000928, 1364470.000928, 1364470.000928, 1364487.481231, 1364487.481231, 1364509.867032, 1364509.867032, 1364509.867032, 1364532.41708, 1364533.391124, 1364555.758562, 1364555.758562, 1364555.758562, 1364569.066972, 1364576.836022, 1364580.171555, 1364580.171555, 1364598.101347, 1364605.798341, 1364629.404496, 1364629.404496, 1364629.404496, 1364652.775629, 1364669.53735, 1364669.53735, 1364674.997339, 1364675.281216, 1364687.256307, 1364698.473457, 1364717.690402, 1364717.690402, 1364717.690402, 1364733.05752, 1364749.234119, 1364749.234119, 1364784.029689, 1364784.029689, 1364784.029689, 1364797.323072, 1364805.376898, 1364805.376898, 1364805.376898, 1364819.497693, 1364850.889432, 1364850.889432, 1364850.889432, 1364850.889432, 1364876.003404, 1364886.820226, 1364886.820226, 1364886.820226, 1364905.713931, 1364919.176417, 1364919.176417, 1364919.176417, 1364923.848548, 1364923.848548, 1364935.374085, 1364948.968787, 1364965.101022, 1364965.101022, 1364978.589838, 1364998.506549, 1365023.622653, 1365023.622653, 1365023.622653, 1365028.012523, 1365028.207401, 1365046.050377, 1365046.050377, 1365056.628309, 1365067.37805, 1365067.37805, 1365081.822077, 1365099.069422, 1365106.121053, 1365106.121053, 1365113.903268, 1365141.11327, 1365141.11327, 1365173.787551, 1365173.787551, 1365176.852574, 1365176.852574, 1365176.852574, 1365188.047291, 1365188.047291, 1365224.393793, 1365224.393793, 1365224.393793, 1365231.982417, 1365257.599297, 1365257.599297, 1365279.906078, 1365279.906078, 1365279.906078, 1365281.482401, 1365305.4559, 1365305.4559, 1365305.4559, 1365334.75033, 1365345.514951, 1365345.514951, 1365345.514951, 1365353.4257, 1365353.4257, 1365384.083546, 1365398.111406, 1365398.111406, 1365413.394412, 1365422.265312, 1365429.59199, 1365429.59199, 1365446.748922, 1365446.748922, 1365460.211973, 1365460.211973, 1365466.175761, 1365491.638875, 1365491.638875, 1365496.181853, 1365521.834048, 1365521.834048, 1365521.834048, 1365521.834048, 1365534.499549, 1365534.499549, 1365573.313395, 1365573.313395, 1365573.313395, 1365577.531403, 1365583.489616, 1365597.480396, 1365597.480396, 1365597.480396, 1365638.372272, 1365638.372272, 1365638.372272, 1365662.88324, 1365665.640898, 1365665.640898, 1365675.158029, 1365675.158029, 1365689.492651, 1365689.492651, 1365700.54107, 1365718.801077, 1365719.929226, 1365747.639309, 1365770.073178, 1365770.073178, 1365770.073178, 1365770.073178, 1365771.792968, 1365779.6727, 1365795.533171, 1365795.533171, 1365800.603479, 1365816.359559, 1365834.942158, 1365834.942158, 1365841.288722, 1365844.433149, 1365873.833486, 1365873.833486, 1365873.833486, 1365900.269924, 1365900.269924, 1365919.032579, 1365919.032579, 1365919.032579, 1365942.685534, 1365942.685534, 1365942.685534, 1365943.807969, 1365979.061709, 1365979.061709, 1365981.825587, 1365981.825587, 1365981.825587, 1366000.852859, 1366007.181856, 1366018.391612, 1366018.391612, 1366018.391612, 1366018.391612, 1366024.122495, 1366069.695935, 1366070.356092, 1366093.067052, 1366093.067052, 1366093.067052, 1366102.282441, 1366122.341814, 1366135.653474, 1366135.653474, 1366135.653474, 1366135.653474, 1366145.359812, 1366148.721863, 1366148.721863, 1366161.595267, 1366164.204738, 1366206.829025, 1366206.829025, 1366206.829025, 1366220.435756, 1366226.159425, 1366226.159425, 1366238.106387, 1366250.312413, 1366252.111046, 1366252.111046, 1366268.384245, 1366281.639766, 1366292.813715, 1366292.813715, 1366305.843475, 1366305.843475, 1366328.643145, 1366333.259214, 1366333.259214, 1366336.956664, 1366372.523885, 1366372.523885, 1366393.867064, 1366393.867064, 1366393.867064, 1366393.867064, 1366393.867064, 1366408.802091, 1366421.422742, 1366421.422742, 1366448.470948, 1366448.470948, 1366454.067042, 1366454.067042, 1366457.820096, 1366457.820096, 1366457.820096, 1366471.87666, 1366471.87666, 1366507.682494, 1366518.936273, 1366518.936273, 1366531.183137, 1366548.682482, 1366548.682482, 1366573.631501, 1366573.631501, 1366573.631501, 1366581.70082, 1366581.70082, 1366598.134623, 1366598.134623, 1366606.240039, 1366632.011684, 1366632.011684, 1366632.011684, 1366632.011684, 1366642.498761, 1366676.916289, 1366676.916289, 1366676.916289, 1366697.335766, 1366705.62976, 1366707.975964, 1366707.975964, 1366725.957112, 1366725.957112, 1366735.23813, 1366746.930358, 1366749.349444, 1366770.129691, 1366770.129691, 1366770.129691, 1366789.910195, 1366789.910195, 1366825.934698, 1366825.934698, 1366825.934698, 1366838.71381, 1366838.71381, 1366845.624296, 1366845.624296, 1366857.841798, 1366861.413276, 1366872.09755, 1366883.132247, 1366883.132247, 1366894.94311, 1366898.814676, 1366898.814676, 1366901.341493, 1366913.098547, 1366922.06625, 1366946.272676, 1366954.572105, 1366962.454854, 1366962.890772, 1367000.53179, 1367000.53179, 1367000.53179, 1367007.467578, 1367007.87111, 1367014.021935, 1367014.021935, 1367046.138107, 1367054.03341, 1367054.03341, 1367064.991241, 1367082.673203, 1367082.673203, 1367086.585243, 1367086.585243, 1367086.585243, 1367086.585243, 1367103.707549, 1367115.619629, 1367157.233031, 1367157.233031, 1367157.233031, 1367157.233031, 1367184.403031, 1367184.403031, 1367192.358082, 1367192.358082, 1367204.126665, 1367204.126665, 1367220.923705, 1367220.923705, 1367220.923705, 1367228.062816, 1367252.607562, 1367252.607562, 1367271.409609, 1367271.409609, 1367275.374807, 1367290.17915, 1367295.260497, 1367295.260497, 1367295.959167, 1367304.852017, 1367346.199122, 1367346.199122, 1367349.829898, 1367360.241647, 1367362.368174, 1367362.368174, 1367365.645025, 1367368.924142, 1367403.266483, 1367403.266483, 1367403.266483, 1367403.266483, 1367415.369227, 1367423.498535, 1367423.919365, 1367423.919365, 1367455.960899, 1367458.409918, 1367470.995482, 1367470.995482, 1367506.664058, 1367506.664058, 1367518.365155, 1367518.365155, 1367518.365155, 1367518.365155, 1367521.206766, 1367529.951635, 1367563.247339, 1367563.247339, 1367601.848394, 1367601.848394, 1367601.848394, 1367601.848394, 1367601.848394, 1367613.622118, 1367613.622118, 1367614.633168, 1367622.077176, 1367622.077176, 1367642.339878, 1367655.648022, 1367667.835943, 1367667.835943, 1367695.027727, 1367695.027727, 1367695.027727, 1367702.066534, 1367709.866086, 1367716.870914, 1367718.586678, 1367718.586678, 1367736.909359, 1367742.050478, 1367761.623418, 1367764.38664, 1367782.534063, 1367782.534063, 1367782.534063, 1367791.266097, 1367819.811788, 1367830.090218, 1367830.090218, 1367848.578215, 1367848.578215, 1367848.578215, 1367874.524564, 1367874.524564, 1367874.524564, 1367874.524564, 1367897.00409, 1367897.00409, 1367902.71341, 1367902.71341, 1367902.71341, 1367912.803361, 1367933.985281, 1367949.439461, 1367955.475291, 1367975.600025, 1367975.600025, 1367975.600025, 1367984.503689, 1368011.020938, 1368011.020938, 1368015.24666, 1368024.605843, 1368024.605843, 1368040.237684, 1368040.237684, 1368040.237684, 1368043.447508, 1368069.333899, 1368069.333899, 1368069.333899, 1368072.35904, 1368110.729605, 1368110.729605, 1368131.116952, 1368131.116952, 1368131.116952, 1368131.116952, 1368144.759865, 1368144.759865, 1368158.021814, 1368158.021814, 1368174.73221, 1368188.625686, 1368188.625686, 1368188.625686, 1368208.382414, 1368220.999893, 1368220.999893, 1368229.624702, 1368236.616552, 1368256.442479, 1368256.442479, 1368257.535809, 1368266.035148, 1368279.156993, 1368283.839263, 1368297.777092, 1368297.777092, 1368307.247469, 1368317.179175, 1368317.179175, 1368341.199888, 1368341.199888, 1368342.184932, 1368342.184932, 1368383.288747, 1368383.288747, 1368383.288747, 1368383.288747, 1368383.288747, 1368403.055274, 1368447.13523, 1368447.13523, 1368447.13523, 1368447.13523, 1368447.13523, 1368472.689924, 1368472.689924, 1368472.689924, 1368482.684662, 1368489.157192, 1368492.384638, 1368492.384638, 1368515.335056, 1368515.335056, 1368515.335056, 1368524.529427, 1368539.751116, 1368547.669091, 1368547.669091, 1368547.669091, 1368560.102077, 1368560.729573, 1368590.536471, 1368591.800132, 1368597.222114, 1368601.688545, 1368612.831971, 1368623.183529, 1368625.692191, 1368633.062788, 1368660.759177, 1368661.323972, 1368665.953541, 1368669.666625, 1368669.666625, 1368680.366559, 1368695.524919, 1368695.524919, 1368702.033541, 1368702.033541, 1368738.360091, 1368752.01895, 1368752.01895, 1368752.01895, 1368758.490643, 1368778.535283, 1368778.535283, 1368778.647052, 1368799.909675, 1368807.477297, 1368807.477297, 1368812.356155, 1368843.54535, 1368843.54535, 1368843.54535, 1368843.54535, 1368852.224065, 1368852.224065, 1368852.224065, 1368863.586799, 1368863.586799, 1368896.64986, 1368896.64986, 1368909.672414, 1368922.833561, 1368922.833561, 1368931.067181, 1368935.31924, 1368944.11171, 1368967.594861, 1368967.594861, 1368976.378094, 1368980.589034, 1368986.339803, 1368990.760554, 1368996.062824, 1369007.476039, 1369015.196265, 1369046.039603, 1369046.039603, 1369046.039603, 1369053.069659, 1369063.995152, 1369063.995152, 1369067.664856, 1369076.251867, 1369093.676391, 1369103.208065, 1369103.208065, 1369110.335089, 1369122.830087, 1369131.009801, 1369131.009801, 1369143.880762, 1369149.355693, 1369170.377725, 1369170.377725, 1369188.950569, 1369188.950569, 1369193.600819, 1369193.600819, 1369201.810208, 1369210.7816, 1369227.121933, 1369244.034815, 1369258.404997, 1369258.404997, 1369258.404997, 1369258.404997, 1369258.404997, 1369293.610643, 1369293.610643, 1369304.735961, 1369304.735961, 1369321.633124, 1369321.633124, 1369321.633124, 1369338.810902, 1369338.810902, 1369362.253452, 1369363.70855, 1369372.073901, 1369397.529134, 1369397.529134, 1369397.529134, 1369397.529134, 1369412.749119, 1369414.761964, 1369414.761964, 1369449.578466, 1369452.013216, 1369454.47312, 1369454.47312, 1369465.466141, 1369465.466141, 1369465.466141, 1369465.466141, 1369476.542173, 1369488.64039, 1369508.970923, 1369508.970923, 1369517.851007, 1369520.558144, 1369539.200117, 1369542.868744, 1369546.776833, 1369546.776833, 1369559.071103, 1369566.548554, 1369583.289302, 1369594.144814, 1369603.191962, 1369603.191962, 1369612.732204, 1369639.182489, 1369651.866353, 1369671.271065, 1369671.271065, 1369671.271065, 1369671.271065, 1369677.849888, 1369701.202013, 1369701.202013, 1369701.202013, 1369701.202013, 1369701.202013, 1369701.202013, 1369706.422589, 1369706.422589, 1369706.560534, 1369727.470119, 1369751.216948, 1369771.827945, 1369771.827945, 1369781.156199, 1369781.156199, 1369784.91624, 1369791.797889, 1369831.122034, 1369831.122034, 1369831.122034, 1369855.419524, 1369862.888999, 1369862.888999, 1369870.729107, 1369875.191431, 1369875.191431, 1369888.357245, 1369888.357245, 1369888.357245, 1369905.188632, 1369922.541788, 1369922.541788, 1369922.541788, 1369928.035231, 1369928.035231, 1369944.435125, 1369950.87306, 1369962.146994, 1369973.337714, 1369973.337714, 1369983.430255, 1370000.593165, 1370000.593165, 1370019.897039, 1370019.897039, 1370019.897039, 1370044.448344, 1370046.849862, 1370046.849862, 1370056.464775, 1370056.464775, 1370104.952877, 1370104.952877, 1370118.654838, 1370118.654838, 1370121.261323, 1370121.261323, 1370121.261323, 1370126.730041, 1370149.433781, 1370157.723075, 1370157.723075, 1370157.723075, 1370157.723075, 1370157.723075, 1370194.571663, 1370194.571663, 1370220.104392, 1370220.104392, 1370220.104392, 1370224.222945, 1370224.222945, 1370250.460205, 1370251.081459, 1370251.813109, 1370264.332896, 1370273.562653, 1370288.145388, 1370288.145388, 1370291.85967, 1370300.938332, 1370314.107666, 1370314.107666, 1370319.922585, 1370324.522378, 1370352.145496, 1370352.145496, 1370365.952684, 1370365.952684, 1370375.061323, 1370375.061323, 1370382.905909, 1370382.905909, 1370386.925962, 1370406.806153, 1370417.473358, 1370436.725567, 1370436.725567, 1370436.725567, 1370484.422563, 1370484.422563, 1370484.422563, 1370484.422563, 1370484.422563, 1370484.422563, 1370489.16151, 1370504.817496, 1370504.817496, 1370505.270535, 1370534.182456, 1370534.182456, 1370534.182456, 1370548.930037, 1370548.930037, 1370573.387028, 1370579.315281, 1370579.315281, 1370579.315281, 1370600.728725, 1370600.728725, 1370617.888097, 1370622.453009, 1370622.453009, 1370633.739092, 1370640.105619, 1370660.470654, 1370660.470654, 1370670.983739, 1370689.420285, 1370694.714826, 1370694.714826, 1370698.027313, 1370698.027313, 1370727.303313, 1370727.303313, 1370737.41898, 1370737.41898, 1370749.964203, 1370749.964203, 1370761.175437, 1370761.175437, 1370772.00076, 1370787.762181, 1370787.762181, 1370799.281276, 1370835.884606, 1370835.884606, 1370835.884606, 1370835.884606, 1370859.838208, 1370859.838208, 1370859.838208, 1370864.065684, 1370868.97141, 1370868.97141, 1370923.860093, 1370923.860093, 1370923.860093, 1370923.860093, 1370923.860093, 1370928.678766, 1370930.559138, 1370933.073617, 1370940.97504, 1370940.97504, 1370961.41823, 1370974.543565, 1370974.543565, 1371011.070573, 1371011.070573, 1371011.070573, 1371011.070573, 1371011.070573, 1371016.034697, 1371016.034697, 1371019.632641, 1371019.632641, 1371040.392016, 1371063.508624, 1371063.508624, 1371064.836099, 1371077.110788, 1371088.733643, 1371102.715285, 1371102.715285, 1371102.715285, 1371102.715285, 1371137.399517, 1371137.399517, 1371150.742993, 1371150.742993, 1371168.947861, 1371168.947861, 1371183.689338, 1371183.689338, 1371183.689338, 1371189.315019, 1371238.2002, 1371238.2002, 1371238.2002, 1371238.2002, 1371260.253955, 1371260.253955, 1371260.253955, 1371284.079598, 1371284.079598, 1371284.079598, 1371300.401227, 1371310.353257, 1371310.353257, 1371310.353257, 1371311.172807, 1371325.416812, 1371325.416812, 1371325.416812, 1371338.427123, 1371338.427123, 1371362.304245, 1371362.304245, 1371362.304245, 1371362.304245, 1371397.350048, 1371397.350048, 1371397.350048, 1371397.350048, 1371407.806792, 1371424.653426, 1371432.222332, 1371447.92346, 1371447.92346, 1371449.458282, 1371449.458282, 1371468.854225, 1371468.854225, 1371468.854225, 1371506.408786, 1371506.408786, 1371511.889242, 1371514.19894, 1371514.19894, 1371532.683578, 1371532.683578, 1371532.958254, 1371539.643134, 1371540.301537, 1371573.519594, 1371573.519594, 1371608.97445, 1371608.97445, 1371608.97445, 1371624.744041, 1371624.744041, 1371624.744041, 1371633.029337, 1371636.752268, 1371649.659093, 1371649.659093, 1371681.969697, 1371681.969697, 1371694.756913, 1371694.756913, 1371694.756913, 1371697.935538, 1371710.764389, 1371734.503855, 1371743.748928, 1371743.748928, 1371743.748928, 1371743.748928, 1371743.748928, 1371743.748928, 1371758.823323, 1371792.298854, 1371792.298854, 1371792.298854, 1371792.55361, 1371818.682528, 1371818.682528, 1371819.062521, 1371819.062521, 1371843.904337, 1371857.456528, 1371857.456528, 1371857.456528, 1371857.456528, 1371857.456528, 1371874.468775, 1371874.468775, 1371876.671804, 1371905.506972, 1371929.712175, 1371939.442659, 1371939.442659, 1371939.442659, 1371939.442659, 1371947.503539, 1371950.318266, 1371950.318266, 1371953.018721, 1371979.882457, 1371979.882457, 1371979.882457, 1371982.290891, 1371988.827983, 1372029.482387, 1372029.482387, 1372029.482387, 1372038.246041, 1372066.751216, 1372066.751216, 1372066.751216, 1372073.648314, 1372081.808501, 1372084.999273, 1372097.361023, 1372097.361023, 1372116.89074, 1372118.550958, 1372122.55435, 1372150.459563, 1372150.459563, 1372150.459563, 1372165.439883, 1372165.439883, 1372188.926789, 1372188.926789, 1372188.926789, 1372188.926789, 1372188.926789, 1372197.44124, 1372202.54252, 1372220.902694, 1372220.902694, 1372234.309914, 1372248.272611, 1372268.753122, 1372269.688691, 1372269.688691, 1372269.688691, 1372293.094485, 1372293.094485, 1372293.094485, 1372293.094485, 1372321.628645, 1372321.628645, 1372332.78022, 1372332.78022, 1372344.120987, 1372344.120987, 1372360.277244, 1372360.277244, 1372377.856352, 1372377.856352, 1372396.631134, 1372396.631134, 1372398.845145, 1372398.845145, 1372403.320109, 1372429.493068, 1372429.493068, 1372432.138825, 1372435.383774, 1372452.560158, 1372452.560158, 1372471.79651, 1372471.79651, 1372471.79651, 1372492.50719, 1372507.780194, 1372507.780194, 1372507.780194, 1372526.571533, 1372526.571533, 1372538.271482, 1372538.271482, 1372541.356465, 1372543.831469, 1372600.970757, 1372600.970757, 1372600.970757, 1372600.970757, 1372600.970757, 1372616.900966, 1372616.900966, 1372629.199282, 1372629.199282, 1372629.199282, 1372629.239591, 1372652.71233, 1372652.71233, 1372664.409001, 1372682.125149, 1372682.125149, 1372682.125149, 1372694.510798, 1372696.513793, 1372696.513793, 1372696.513793, 1372696.513793, 1372720.883827, 1372753.529318, 1372753.529318, 1372753.529318, 1372753.529318, 1372764.57097, 1372764.57097, 1372764.57097, 1372782.251584, 1372800.443502, 1372837.907985, 1372837.907985, 1372837.907985, 1372837.907985, 1372837.907985, 1372860.818161, 1372860.818161, 1372860.818161, 1372860.818161, 1372865.793698, 1372874.177352, 1372883.842338, 1372883.842338, 1372883.842338, 1372900.392881, 1372905.379337, 1372905.379337, 1372935.207921, 1372947.813328, 1372953.035078, 1372953.035078, 1372953.035078, 1372982.678083, 1372982.678083, 1372984.33473, 1372985.542975, 1373012.968382, 1373012.968382, 1373030.612216, 1373030.612216, 1373030.612216, 1373032.79432, 1373034.666841, 1373053.500581, 1373053.500581, 1373073.674279, 1373073.674279, 1373078.150818, 1373078.150818, 1373078.150818, 1373093.448475, 1373111.30308, 1373112.507659, 1373130.023967, 1373130.023967, 1373130.023967, 1373130.023967, 1373162.200294, 1373162.200294, 1373162.200294, 1373168.322013, 1373169.03845, 1373181.544748, 1373212.532484, 1373229.546686, 1373240.07764, 1373240.07764, 1373240.07764, 1373240.07764, 1373241.30126, 1373241.30126, 1373241.30126, 1373260.953577, 1373260.953577, 1373275.369271, 1373275.369271, 1373301.81216, 1373316.57782, 1373330.12448, 1373330.12448, 1373330.12448, 1373336.787918, 1373336.787918, 1373342.627041, 1373352.996753, 1373361.426474, 1373391.341775, 1373391.341775, 1373391.341775, 1373391.341775, 1373391.341775, 1373417.582222, 1373417.582222, 1373420.395585, 1373420.395585, 1373447.056753, 1373457.015616, 1373470.52982, 1373470.52982, 1373470.52982, 1373470.52982, 1373485.765409, 1373485.765409, 1373485.765409, 1373501.947819, 1373501.947819, 1373518.850892, 1373522.596633, 1373522.596633, 1373534.976749, 1373536.786719, 1373547.232987, 1373559.389216, 1373564.0147, 1373576.39789, 1373582.379925, 1373610.590652, 1373610.590652, 1373610.590652, 1373610.590652, 1373618.327185, 1373632.453095, 1373653.201449, 1373653.201449, 1373653.201449, 1373653.201449, 1373653.201449, 1373675.802429, 1373677.73901, 1373686.0555, 1373691.657461, 1373697.107676, 1373697.107676, 1373702.005664, 1373702.005664, 1373708.123572, 1373721.840878, 1373721.840878, 1373731.917339, 1373753.318611, 1373780.315824, 1373798.392225, 1373798.392225, 1373798.392225, 1373798.404623, 1373802.069527, 1373802.069527, 1373803.037599, 1373820.622498, 1373820.622498, 1373834.948637, 1373860.607155, 1373860.607155, 1373860.607155, 1373870.238279, 1373870.238279, 1373884.417508, 1373899.730586, 1373900.610226, 1373900.610226, 1373930.000035, 1373935.519742, 1373938.778053, 1373947.455057, 1373947.455057, 1373947.65607, 1373947.65607, 1373965.339868, 1373967.477073, 1373967.477073, 1373983.493256, 1373994.558362, 1373994.558362, 1373996.65224, 1374023.260183, 1374023.260183, 1374025.317327, 1374028.289644, 1374047.071084, 1374072.331693, 1374072.331693, 1374072.331693, 1374077.288498, 1374077.288498, 1374084.585552, 1374092.725311, 1374099.836782, 1374105.98842, 1374116.139524, 1374134.072768, 1374138.625783, 1374138.625783, 1374166.721369, 1374166.721369, 1374166.721369, 1374166.721369, 1374174.73316, 1374174.73316, 1374201.292273, 1374202.037302, 1374206.75509, 1374206.75509, 1374209.318746, 1374223.803524, 1374241.785692, 1374250.835741, 1374255.261567, 1374257.423295, 1374264.064357, 1374266.304281, 1374285.420511, 1374285.420511, 1374285.420511, 1374285.420511, 1374313.543948, 1374313.543948, 1374315.972511, 1374315.972511, 1374321.67073, 1374344.662401, 1374351.703778, 1374351.703778, 1374351.703778, 1374379.291997, 1374379.291997, 1374389.112849, 1374390.711368, 1374409.006802, 1374409.006802, 1374420.28652, 1374442.648124, 1374442.648124, 1374444.474355, 1374444.474355, 1374479.127513, 1374479.127513, 1374479.127513, 1374479.127513, 1374488.884631, 1374511.536967, 1374511.536967, 1374511.536967, 1374511.536967, 1374520.672638, 1374545.344278, 1374545.344278, 1374545.344278, 1374545.344278, 1374563.98509, 1374563.98509, 1374563.98509, 1374565.39259, 1374585.365819, 1374585.365819, 1374590.565765, 1374590.565765, 1374604.918166, 1374638.895718, 1374638.895718, 1374654.489332, 1374654.489332, 1374659.842527, 1374659.842527, 1374659.842527, 1374665.217021, 1374673.205466, 1374675.023984, 1374709.676583, 1374709.676583, 1374735.022184, 1374735.022184, 1374735.022184, 1374735.022184, 1374756.325993, 1374756.325993, 1374756.325993, 1374756.325993, 1374756.325993, 1374765.502649, 1374765.502649, 1374788.209889, 1374788.209889, 1374792.852203, 1374801.853332, 1374844.4923, 1374844.4923, 1374844.4923, 1374849.313883, 1374852.731005, 1374871.716455, 1374871.716455, 1374872.583469, 1374872.583469, 1374872.583469, 1374893.241119, 1374893.241119, 1374893.241119, 1374910.152166, 1374917.305895, 1374917.305895, 1374918.874522, 1374919.283692, 1374936.896187, 1374936.896187, 1374962.69475, 1374962.69475, 1374973.981275, 1374984.966524, 1374984.966524, 1375021.328575, 1375021.328575, 1375021.328575, 1375023.290621, 1375023.290621, 1375059.532888, 1375059.532888, 1375065.028642, 1375065.028642, 1375065.028642, 1375067.547623, 1375098.415848, 1375099.637739, 1375099.637739, 1375099.637739, 1375099.637739, 1375099.883078, 1375099.883078, 1375122.980461, 1375127.459585, 1375167.310716, 1375167.310716, 1375167.310716, 1375167.310716, 1375167.310716, 1375174.794951, 1375183.423284, 1375183.423284, 1375184.975807, 1375210.374257, 1375210.374257, 1375213.105461, 1375243.567923, 1375243.567923, 1375243.567923, 1375243.567923, 1375246.26088, 1375257.496538, 1375257.496538, 1375289.369047, 1375289.369047, 1375310.291405, 1375310.291405, 1375310.291405, 1375310.291405, 1375320.732557, 1375336.461123, 1375337.952752, 1375344.763086, 1375344.763086, 1375344.871999, 1375349.09301, 1375377.22526, 1375406.492474, 1375412.456742, 1375412.456742, 1375412.456742, 1375413.294987, 1375439.029158, 1375440.631229, 1375440.631229, 1375443.827786, 1375443.827786, 1375443.827786, 1375443.827786, 1375451.626913, 1375459.099765, 1375459.099765, 1375495.983604, 1375495.983604, 1375513.713693, 1375513.713693, 1375513.713693, 1375523.520744, 1375523.520744, 1375542.890552, 1375544.699287, 1375548.717378, 1375548.717378, 1375548.717378, 1375548.876321, 1375571.127413, 1375573.092107, 1375592.870476, 1375624.453756, 1375624.453756, 1375624.453756, 1375624.453756, 1375628.542707, 1375643.678389, 1375643.678389, 1375643.678389, 1375646.737775, 1375669.277477, 1375669.277477, 1375669.277477, 1375669.277477, 1375717.365145, 1375717.365145, 1375717.365145, 1375717.365145, 1375717.365145, 1375741.091839, 1375748.147009, 1375748.147009, 1375754.377289, 1375755.02215, 1375755.02215, 1375769.427384, 1375773.745293, 1375783.99629, 1375783.99629, 1375783.99629, 1375808.600583, 1375808.600583, 1375813.471934, 1375834.726097, 1375834.726097, 1375860.596179, 1375870.1006, 1375870.1006, 1375870.1006, 1375870.1006, 1375870.1006, 1375872.549642, 1375876.59788, 1375876.59788, 1375882.69624, 1375882.69624, 1375920.923761, 1375937.838341, 1375946.244599, 1375946.244599, 1375946.244599, 1375946.244599, 1375974.99141, 1375974.99141, 1375974.99141, 1375974.99141, 1375994.065763, 1375994.065763, 1375998.334425, 1376013.525026, 1376013.525026, 1376014.657429, 1376030.894423, 1376035.874519, 1376060.366251, 1376077.498543, 1376077.498543, 1376077.498543, 1376077.498543, 1376077.498543, 1376077.498543, 1376090.354938, 1376090.354938, 1376090.354938, 1376105.009814, 1376131.15394, 1376131.15394, 1376131.15394, 1376134.145875, 1376134.145875, 1376164.075232, 1376164.075232, 1376184.955106, 1376184.955106, 1376196.507113, 1376196.507113, 1376202.238033, 1376219.937824, 1376219.937824, 1376219.937824, 1376231.446649, 1376259.207904, 1376259.207904, 1376259.207904, 1376259.207904, 1376259.207904, 1376259.207904, 1376267.94824, 1376295.118893, 1376295.118893, 1376296.631855, 1376296.631855, 1376305.409477, 1376305.409477, 1376305.409477, 1376336.670261, 1376336.670261, 1376350.05999, 1376350.05999, 1376351.06164, 1376362.315729, 1376378.555294, 1376378.555294, 1376378.555294, 1376378.555294, 1376387.231589, 1376391.615089, 1376398.757982, 1376413.175621, 1376423.317061, 1376434.817815, 1376448.405975, 1376459.388064, 1376459.388064, 1376459.388064, 1376463.954953, 1376479.555252, 1376479.555252, 1376500.28219, 1376500.28219, 1376500.28219, 1376503.399035, 1376503.94042, 1376503.94042, 1376518.61933, 1376528.347063, 1376559.425876, 1376559.425876, 1376559.425876, 1376602.288022, 1376602.288022, 1376602.288022, 1376602.288022, 1376602.288022, 1376614.981777, 1376614.981777, 1376628.532212, 1376628.532212, 1376640.987194, 1376641.280298, 1376641.280298, 1376641.280298, 1376641.280298, 1376655.599579, 1376660.947863, 1376691.974054, 1376691.974054, 1376691.974054, 1376691.974054, 1376698.208076, 1376698.208076, 1376736.188288, 1376736.188288, 1376736.188288, 1376736.188288, 1376740.969575, 1376740.969575, 1376753.581156, 1376761.630942, 1376761.630942, 1376785.177866, 1376785.177866, 1376798.091965, 1376802.206317, 1376802.206317, 1376802.206317, 1376811.841859, 1376842.19742, 1376842.19742, 1376842.19742, 1376842.19742, 1376842.19742, 1376859.565064, 1376869.478582, 1376899.101084, 1376905.028722, 1376905.028722, 1376906.432761, 1376914.071895, 1376914.071895, 1376924.061876, 1376924.061876, 1376924.061876, 1376924.061876, 1376946.550036, 1376946.550036, 1376951.614976, 1376976.582629, 1376981.366368, 1376990.004623, 1376990.004623, 1376995.051965, 1376995.051965, 1377000.521949, 1377007.753468, 1377022.752053, 1377022.752053, 1377035.695551, 1377040.681488, 1377049.251268, 1377049.251268, 1377063.260069, 1377066.060966, 1377066.060966, 1377074.994564, 1377074.994564, 1377093.903628, 1377099.09878, 1377101.896443, 1377101.896443, 1377117.462518, 1377131.29576, 1377132.680304, 1377159.29223, 1377159.29223, 1377159.29223, 1377159.29223, 1377184.711641, 1377184.711641, 1377184.711641, 1377184.711641, 1377184.711641, 1377184.711641, 1377188.503036, 1377218.356953, 1377229.451058, 1377229.451058, 1377230.9622, 1377264.229335, 1377264.229335, 1377264.229335, 1377264.229335, 1377266.288626, 1377277.977359, 1377280.369343, 1377291.724153, 1377317.401954, 1377333.653427, 1377333.653427, 1377333.653427, 1377342.269002, 1377350.467843, 1377350.467843, 1377350.467843, 1377372.878718, 1377372.878718, 1377372.878718, 1377372.878718, 1377406.873628, 1377406.873628, 1377406.873628, 1377406.873628, 1377426.107766, 1377426.107766, 1377428.457832, 1377442.858436, 1377456.42628, 1377456.42628, 1377456.42628, 1377456.42628, 1377456.42628, 1377456.42628, 1377490.229148, 1377490.229148, 1377521.424278, 1377521.424278, 1377521.424278, 1377521.424278, 1377521.424278, 1377521.424278, 1377521.424278, 1377522.907652, 1377534.034538, 1377534.034538, 1377534.034538, 1377535.926284, 1377553.896555, 1377554.792312, 1377574.909306, 1377605.261828, 1377605.261828, 1377622.201201, 1377622.201201, 1377626.930673, 1377647.83934, 1377647.83934, 1377647.83934, 1377663.757368, 1377667.624236, 1377667.624236, 1377672.082572, 1377688.059939, 1377689.969156, 1377689.969156, 1377696.039212, 1377703.288252, 1377718.11272, 1377718.11272, 1377718.11272, 1377747.041718, 1377747.041718, 1377747.041718, 1377747.041718, 1377778.974245, 1377778.974245, 1377780.645357, 1377780.645357, 1377780.645357, 1377780.645357, 1377793.756539, 1377812.073631, 1377812.073631, 1377819.088548, 1377821.201697, 1377824.155642, 1377839.918091, 1377842.857722, 1377862.103057, 1377870.390068, 1377895.578796, 1377895.578796, 1377895.578796, 1377895.578796, 1377895.578796, 1377895.578796, 1377895.578796, 1377917.970981, 1377920.473686, 1377921.659707, 1377934.86841, 1377935.560717, 1377939.245339, 1377967.055918, 1377967.055918, 1377986.248039, 1377986.248039, 1377986.248039, 1377989.642293, 1378002.265859, 1378002.265859, 1378007.996655, 1378007.996655, 1378045.44734, 1378046.680022, 1378046.680022, 1378046.680022, 1378063.835595, 1378063.835595, 1378063.835595, 1378077.392824, 1378077.392824, 1378095.711876, 1378100.578959, 1378100.578959, 1378100.578959, 1378100.578959, 1378144.771675, 1378144.771675, 1378161.897212, 1378161.897212, 1378161.897212, 1378161.897212, 1378161.897212, 1378170.251551, 1378170.251551, 1378170.251551, 1378170.251551, 1378206.153511, 1378206.153511, 1378228.723874, 1378228.723874, 1378228.723874, 1378228.723874, 1378228.723874, 1378244.199929, 1378244.199929, 1378252.932012, 1378258.086906, 1378272.556214, 1378290.851947, 1378290.851947, 1378290.851947, 1378290.851947, 1378306.632661, 1378312.072744, 1378312.072744, 1378315.617926, 1378334.655587, 1378334.655587, 1378334.655587, 1378355.579754, 1378355.579754, 1378381.603761, 1378381.603761, 1378381.603761, 1378383.858399, 1378410.714543, 1378410.714543, 1378410.714543, 1378412.879353, 1378412.879353, 1378412.879353, 1378426.119081, 1378426.119081, 1378470.116703, 1378470.116703, 1378470.116703, 1378470.116703, 1378492.166885, 1378492.166885, 1378507.10307, 1378515.666979, 1378515.666979, 1378515.666979, 1378534.51386, 1378534.51386, 1378546.834045, 1378546.834045, 1378546.834045, 1378547.861784, 1378551.147739, 1378551.147739, 1378554.153156, 1378554.153156, 1378573.464812, 1378579.653879, 1378595.80578, 1378595.80578, 1378608.610509, 1378608.610509, 1378617.107646, 1378623.59563, 1378623.59563, 1378667.882234, 1378671.608785, 1378671.608785, 1378686.810719, 1378686.810719, 1378686.810719, 1378688.586796, 1378693.598822, 1378693.598822, 1378693.598822, 1378726.533714, 1378737.979794, 1378737.979794, 1378737.979794, 1378746.306991, 1378746.306991, 1378763.54187, 1378763.54187, 1378772.876096, 1378773.836783, 1378773.836783, 1378784.261985, 1378800.082385, 1378808.014205, 1378837.143824, 1378837.143824, 1378837.143824, 1378837.143824, 1378837.143824, 1378837.143824, 1378837.143824, 1378837.143824, 1378837.143824, 1378837.143824, 1378860.018086, 1378877.286521, 1378877.286521, 1378886.498184, 1378919.097973, 1378919.097973, 1378922.713121, 1378951.018422, 1378951.018422, 1378951.018422, 1378951.018422, 1378951.018422, 1378967.174837, 1378967.174837, 1378977.756581, 1378977.756581, 1378990.464692, 1378991.524514, 1379007.252238, 1379007.252238, 1379031.475883, 1379031.475883, 1379031.475883, 1379041.927728, 1379041.927728, 1379041.927728, 1379061.989271, 1379061.989271, 1379064.827047, 1379065.428293, 1379077.873006, 1379089.570615, 1379115.29041, 1379115.29041, 1379115.29041, 1379121.764153, 1379126.747863, 1379126.747863, 1379154.155075, 1379154.155075, 1379154.155075, 1379154.155075, 1379154.155075, 1379166.773133, 1379166.773133, 1379166.773133, 1379166.773133, 1379201.067288, 1379201.391546, 1379201.391546, 1379221.813299, 1379225.746086, 1379225.746086, 1379252.051656, 1379252.051656, 1379258.88358, 1379258.88358, 1379258.88358, 1379295.046309, 1379295.046309, 1379295.046309, 1379295.046309, 1379304.856038, 1379311.948109, 1379311.948109, 1379311.948109, 1379311.948109, 1379343.937985, 1379343.937985, 1379344.611699, 1379353.52438, 1379357.111195, 1379357.111195, 1379360.079588, 1379387.323126, 1379392.587441, 1379392.587441, 1379392.587441, 1379392.587441, 1379392.587441, 1379424.369788, 1379424.369788, 1379424.369788, 1379439.886021, 1379439.886021, 1379459.503865, 1379466.321407, 1379476.573859, 1379476.573859, 1379479.254653, 1379479.254653, 1379495.827165, 1379495.827165, 1379496.178761, 1379496.178761, 1379522.44609, 1379522.44609, 1379522.44609, 1379554.510322, 1379568.076329, 1379568.076329, 1379568.076329, 1379568.076329, 1379568.076329, 1379568.076329, 1379575.839528, 1379575.839528, 1379594.659807, 1379594.659807, 1379617.622438, 1379622.961304, 1379643.997596, 1379643.997596, 1379643.997596, 1379643.997596, 1379653.763579, 1379670.298817, 1379670.298817, 1379670.298817, 1379676.412269, 1379676.412269, 1379686.15671, 1379686.15671, 1379699.948561, 1379699.948561, 1379736.647876, 1379736.647876, 1379744.737316, 1379744.737316, 1379748.196295, 1379748.196295, 1379761.191576, 1379761.191576, 1379772.189667, 1379772.189667, 1379774.290921, 1379801.467092, 1379801.467092, 1379801.467092, 1379801.467092, 1379815.526717, 1379835.442974, 1379835.442974, 1379835.442974, 1379839.289257, 1379851.554945, 1379851.554945, 1379869.380282, 1379869.380282, 1379870.824366, 1379870.824366, 1379896.942555, 1379896.942555, 1379896.942555, 1379896.942555, 1379926.790784, 1379926.790784, 1379926.790784, 1379926.790784, 1379926.790784, 1379926.790784, 1379961.276411, 1379961.276411, 1379961.276411, 1379961.276411, 1379961.276411, 1379971.243536, 1379971.368981, 1379993.00853, 1380000.470394, 1380018.737179, 1380018.737179, 1380018.737179, 1380052.288152, 1380052.288152, 1380052.288152, 1380052.288152, 1380052.288152, 1380056.560629, 1380056.560629, 1380072.645637, 1380079.303702, 1380081.968432, 1380102.432027, 1380102.432027, 1380126.949341, 1380126.949341, 1380126.949341, 1380126.949341, 1380153.517871, 1380153.517871, 1380154.191182, 1380154.191182, 1380154.191182, 1380156.357015, 1380176.941199, 1380176.941199, 1380176.941199, 1380176.941199, 1380207.43445, 1380220.003161, 1380220.003161, 1380227.610116, 1380230.176729, 1380253.319671, 1380253.319671, 1380253.319671, 1380253.319671, 1380253.319671, 1380256.64988, 1380273.530158, 1380273.530158, 1380273.530158, 1380294.714826, 1380294.714826, 1380294.714826, 1380294.714826, 1380314.14289, 1380341.68173, 1380341.68173, 1380341.68173, 1380341.68173, 1380343.302693, 1380353.046823, 1380364.603058, 1380368.677593, 1380389.243847, 1380389.243847, 1380412.874198, 1380412.874198, 1380412.874198, 1380412.874198, 1380420.00052, 1380420.00052, 1380420.00052, 1380421.709048, 1380428.479624, 1380436.76734, 1380439.965287, 1380439.965287, 1380463.261434, 1380465.627738, 1380474.958592, 1380474.958592, 1380474.958592, 1380498.382926, 1380498.382926, 1380498.382926, 1380526.83316, 1380526.83316, 1380527.928249, 1380550.467333, 1380550.467333, 1380583.533951, 1380583.533951, 1380583.533951, 1380583.533951, 1380583.533951, 1380583.533951, 1380583.533951, 1380590.189764, 1380603.486225, 1380603.486225, 1380631.67475, 1380631.67475, 1380631.67475, 1380631.67475, 1380631.67475, 1380638.498045, 1380666.42557, 1380666.42557, 1380670.790318, 1380670.790318, 1380670.889009, 1380672.540142, 1380688.085188, 1380688.085188, 1380697.082205, 1380697.082205, 1380726.415866, 1380726.415866, 1380746.170773, 1380746.170773, 1380748.078087, 1380748.078087, 1380748.078087, 1380756.236491, 1380789.414141, 1380789.414141, 1380789.414141, 1380789.414141, 1380798.909472, 1380798.909472, 1380830.194229, 1380830.194229, 1380830.194229, 1380830.194229, 1380841.607323, 1380841.607323, 1380874.567859, 1380874.567859, 1380874.567859, 1380874.567859, 1380874.567859, 1380874.567859, 1380885.81457, 1380885.81457, 1380885.81457, 1380885.81457, 1380911.650381, 1380911.650381, 1380929.682691, 1380929.682691, 1380940.067866, 1380957.293366, 1380957.293366, 1380957.293366, 1380971.137134, 1380977.733468, 1380977.733468, 1380977.733468, 1381006.533693, 1381006.533693, 1381028.121866, 1381037.446678, 1381037.446678, 1381037.446678, 1381037.446678, 1381037.446678, 1381041.130997, 1381041.130997, 1381077.666614, 1381077.666614, 1381077.666614, 1381077.666614, 1381077.666614, 1381098.396206, 1381116.814397, 1381116.814397, 1381116.814397, 1381116.814397, 1381120.890947, 1381136.130411, 1381136.130411, 1381136.130411, 1381143.086732, 1381143.086732, 1381171.566322, 1381171.566322, 1381171.566322, 1381171.566322, 1381171.566322, 1381173.384934, 1381187.225102, 1381187.225102, 1381207.834327, 1381207.834327, 1381214.651295, 1381214.651295, 1381239.84413, 1381239.84413, 1381244.660984, 1381262.440195, 1381263.637936, 1381263.800177, 1381263.800177, 1381263.800177, 1381270.552008, 1381282.151534, 1381296.352401, 1381302.484976, 1381310.86431, 1381312.780616, 1381319.76009, 1381319.76009, 1381319.76009, 1381326.476824, 1381345.713378, 1381345.713378, 1381347.412281, 1381359.079575, 1381359.079575, 1381359.43361, 1381359.43361, 1381380.705895, 1381407.54415, 1381407.54415, 1381407.54415, 1381416.909805, 1381424.546468, 1381443.153127, 1381443.153127, 1381447.661964, 1381447.661964, 1381447.661964, 1381448.335951, 1381456.434009, 1381481.630632, 1381481.630632, 1381481.820863, 1381494.823285, 1381494.823285, 1381494.823285, 1381514.669728, 1381514.669728, 1381524.079663, 1381524.079663, 1381548.44863, 1381560.237997, 1381561.716926, 1381561.716926, 1381561.716926, 1381561.716926, 1381595.558607, 1381595.558607, 1381595.558607, 1381595.558607, 1381595.558607, 1381609.848641, 1381620.552634, 1381625.335895, 1381626.916893, 1381636.982574, 1381636.982574, 1381654.073459, 1381654.073459, 1381654.073459, 1381654.073459, 1381665.086038, 1381665.086038, 1381668.632211, 1381672.006586, 1381709.130829, 1381709.130829, 1381709.130829, 1381709.130829, 1381709.130829, 1381729.626949, 1381729.626949, 1381729.626949, 1381729.626949, 1381748.67789, 1381766.910598, 1381766.910598, 1381776.30025, 1381785.767318, 1381785.767318, 1381793.371639, 1381794.600488, 1381795.475977, 1381809.687781, 1381819.016909, 1381826.961179, 1381826.961179, 1381826.961179, 1381826.961179, 1381861.546454, 1381863.969468, 1381863.969468, 1381863.969468, 1381868.222545, 1381873.198882, 1381899.148558, 1381899.148558, 1381906.919239, 1381906.919239, 1381906.919239, 1381923.605111, 1381923.605111, 1381934.267706, 1381934.267706, 1381934.318775, 1381948.016771, 1381963.423583, 1381963.423583, 1381978.348519, 1381978.348519, 1381978.348519, 1381982.961383, 1381990.5721, 1382004.975542, 1382004.975542, 1382004.975542, 1382025.671434, 1382025.671434, 1382025.671434, 1382025.927594, 1382041.439632, 1382054.165963, 1382059.911734, 1382059.911734, 1382072.900322, 1382072.900322, 1382072.900322, 1382085.403877, 1382092.543291, 1382098.623499, 1382113.152874, 1382113.152874, 1382113.152874, 1382128.075557, 1382128.075557, 1382144.24132, 1382157.281704, 1382157.281704, 1382157.281704, 1382157.281704, 1382187.013206, 1382187.013206, 1382187.013206, 1382187.013206, 1382188.46483, 1382188.46483, 1382201.865263, 1382201.891728, 1382222.969923, 1382230.555312, 1382268.487811, 1382268.487811, 1382268.487811, 1382268.487811, 1382275.270998, 1382275.270998, 1382275.270998, 1382275.270998, 1382289.955743, 1382289.955743, 1382308.33808, 1382308.33808, 1382308.33808, 1382308.33808, 1382313.307269, 1382313.307269, 1382336.706531, 1382336.706531, 1382359.889292, 1382359.889292, 1382359.889292, 1382365.196839, 1382373.329088, 1382373.329088, 1382376.370524, 1382393.84626, 1382400.000833, 1382400.000833, 1382420.093661, 1382422.067472, 1382438.317329, 1382438.317329, 1382461.436902, 1382461.436902, 1382461.436902, 1382461.436902, 1382461.436902, 1382461.436902, 1382461.436902, 1382461.436902, 1382464.769382, 1382480.069192, 1382506.655674, 1382521.496101, 1382529.920983, 1382530.758648, 1382530.758648, 1382550.112187, 1382550.112187, 1382550.112187, 1382556.601374, 1382580.535531, 1382580.535531, 1382580.535531, 1382580.535531, 1382580.535531, 1382580.535531, 1382588.859123, 1382609.08657, 1382609.08657, 1382618.724886, 1382628.588453, 1382628.588453, 1382628.588453, 1382631.698074, 1382644.703603, 1382653.929219, 1382653.929219, 1382656.782034, 1382676.246202, 1382697.085903, 1382697.085903, 1382715.746553, 1382715.746553, 1382719.346833, 1382719.346833, 1382726.803642, 1382730.687251, 1382734.079832, 1382734.168954, 1382742.22239, 1382742.22239, 1382742.22239, 1382756.177236, 1382756.177236, 1382756.177236, 1382760.7019, 1382770.125216, 1382792.303231, 1382792.303231, 1382792.303231, 1382799.432581, 1382822.894556, 1382845.21305, 1382845.21305, 1382850.277023, 1382850.277023, 1382852.86822, 1382876.743856, 1382876.743856, 1382876.743856, 1382876.743856, 1382876.743856, 1382876.743856, 1382898.731606, 1382915.822005, 1382915.822005, 1382915.822005, 1382915.822005, 1382922.028993, 1382922.028993, 1382928.885235, 1382933.117827, 1382933.117827, 1382942.133827, 1382986.666015, 1382986.666015, 1382986.666015, 1382991.362115, 1382991.362115, 1382991.362115, 1382993.013315, 1382999.27104, 1383006.096259, 1383006.096259, 1383014.549717, 1383014.549717, 1383038.78701, 1383038.78701, 1383038.78701, 1383040.78185, 1383074.875695, 1383074.875695, 1383074.875695, 1383074.875695, 1383074.875695, 1383084.216859, 1383105.44382, 1383118.041128, 1383121.391206, 1383121.391206, 1383128.223725, 1383144.304156, 1383144.304156, 1383144.304156, 1383144.304156, 1383153.002826, 1383176.532353, 1383176.532353, 1383176.532353, 1383176.532353, 1383176.532353, 1383183.726007, 1383183.726007, 1383188.681827, 1383188.681827, 1383215.304795, 1383226.942328, 1383226.942328, 1383226.942328, 1383247.0926, 1383247.0926, 1383247.0926, 1383247.0926, 1383252.264765, 1383280.504187, 1383290.26071, 1383290.26071, 1383303.227929, 1383321.61765, 1383321.61765, 1383321.61765, 1383321.61765, 1383324.187121, 1383327.65784, 1383355.470334, 1383355.470334, 1383355.470334, 1383365.154504, 1383365.154504, 1383365.154504, 1383380.922484, 1383402.164616, 1383402.164616, 1383420.81764, 1383420.81764, 1383420.81764, 1383420.81764, 1383430.968042, 1383430.968042, 1383430.968042, 1383447.842153, 1383447.842153, 1383447.842153, 1383447.842153, 1383458.752924, 1383474.276431, 1383474.276431, 1383474.276431, 1383474.76199, 1383501.730296, 1383501.730296, 1383501.730296, 1383501.730296, 1383511.386661, 1383511.386661, 1383511.386661, 1383539.850215, 1383539.850215, 1383546.279979, 1383547.075847, 1383547.075847, 1383557.775879, 1383569.514777, 1383569.514777, 1383577.269324, 1383579.47492, 1383579.47492, 1383579.718815, 1383612.405202, 1383612.405202, 1383640.511308, 1383640.511308, 1383640.511308, 1383640.511308, 1383652.786099, 1383665.041073, 1383671.362713, 1383671.362713, 1383671.362713, 1383701.258607, 1383701.258607, 1383701.258607, 1383701.258607, 1383704.90824, 1383704.90824, 1383730.502038, 1383730.502038, 1383754.502931, 1383754.502931, 1383754.502931, 1383754.502931, 1383754.502931, 1383773.961323, 1383773.961323, 1383775.076074, 1383775.076074, 1383775.076074, 1383775.076074, 1383811.882895, 1383838.274488, 1383838.274488, 1383838.274488, 1383838.274488, 1383840.184597, 1383840.184597, 1383872.07731, 1383872.07731, 1383872.07731, 1383872.07731, 1383872.07731, 1383889.561423, 1383889.561423, 1383889.561423, 1383889.561423, 1383889.561423, 1383889.561423, 1383898.041626, 1383921.538565, 1383921.538565, 1383936.839975, 1383936.839975, 1383936.839975, 1383942.49593, 1383942.49593, 1383959.168804, 1383959.168804, 1383962.442135, 1383967.604627, 1383976.129046, 1383976.129046, 1383987.17389, 1383987.17389, 1383997.913885, 1384024.433826, 1384024.433826, 1384024.433826, 1384024.433826, 1384033.740159, 1384033.740159, 1384046.699917, 1384046.699917, 1384057.565909, 1384057.565909, 1384057.565909, 1384064.163954, 1384075.194232, 1384086.628586, 1384115.889478, 1384115.889478, 1384115.889478, 1384115.889478, 1384115.889478, 1384120.585805, 1384123.723084, 1384160.323706, 1384160.323706, 1384160.323706, 1384160.323706, 1384160.323706, 1384176.238795, 1384176.597505, 1384197.727501, 1384197.727501, 1384197.727501, 1384216.118425, 1384216.801033, 1384216.801033, 1384216.801033, 1384251.821297, 1384251.821297, 1384251.821297, 1384251.821297, 1384251.821297, 1384251.821297, 1384268.077466, 1384272.426274, 1384276.219818, 1384289.188651, 1384300.720189, 1384300.720189, 1384300.720189, 1384300.720189, 1384300.720189, 1384330.145066, 1384352.995435, 1384352.995435, 1384356.160568, 1384356.160568, 1384356.160568, 1384361.343922, 1384369.241037, 1384369.241037, 1384369.241037, 1384369.241037, 1384380.746949, 1384389.956842, 1384403.142519, 1384403.142519, 1384403.142519, 1384414.893472, 1384417.143741, 1384434.660472, 1384437.406367, 1384452.936083, 1384471.902307, 1384471.902307, 1384471.902307, 1384471.902307, 1384471.902307, 1384485.92702, 1384498.114861, 1384498.114861, 1384498.114861, 1384501.303756, 1384502.765753, 1384502.765753, 1384544.709923, 1384544.709923, 1384544.709923, 1384544.709923, 1384544.709923, 1384547.736628, 1384556.481831, 1384556.481831, 1384560.821897, 1384560.821897, 1384585.119489, 1384585.119489, 1384601.195072, 1384601.195072, 1384619.707516, 1384621.677843, 1384621.677843, 1384621.677843, 1384649.363713, 1384649.363713, 1384649.363713, 1384649.363713, 1384665.357673, 1384665.357673, 1384665.357673, 1384695.948055, 1384695.948055, 1384697.266399, 1384699.840031, 1384699.840031, 1384699.840031, 1384699.840031, 1384712.791607, 1384712.791607, 1384720.392863, 1384720.392863, 1384742.701092, 1384765.636314, 1384765.636314, 1384765.636314, 1384765.636314, 1384775.12597, 1384775.12597, 1384775.12597, 1384775.12597, 1384789.254122, 1384795.066345, 1384795.066345, 1384816.269844, 1384821.367373, 1384830.767898, 1384830.767898, 1384832.601176, 1384854.561949, 1384854.561949, 1384854.561949, 1384854.561949, 1384860.649311, 1384877.615874, 1384877.615874, 1384903.95, 1384903.95, 1384903.95, 1384903.95, 1384914.766255, 1384922.720508, 1384922.720508, 1384925.710486, 1384925.710486, 1384939.327841, 1384958.398477, 1384958.398477, 1384959.959342, 1384959.959342, 1384959.959342, 1384959.959342, 1384972.966598, 1384977.818841, 1384982.129974, 1385013.426507, 1385013.426507, 1385013.426507, 1385013.426507, 1385018.077255, 1385021.429588, 1385030.878134, 1385030.878134, 1385033.27787, 1385042.070947, 1385042.070947, 1385064.544247, 1385086.898785, 1385086.898785, 1385087.305513, 1385089.619468, 1385095.792871, 1385095.792871, 1385096.926141, 1385124.805776, 1385139.525491, 1385139.525491, 1385139.525491, 1385143.056228, 1385143.056228, 1385156.321077, 1385156.321077, 1385156.321077, 1385156.321077, 1385187.345589, 1385187.345589, 1385208.40912, 1385208.40912, 1385211.864821, 1385211.864821, 1385211.864821, 1385211.864821, 1385211.864821, 1385221.394297, 1385221.394297, 1385224.60199, 1385245.181225, 1385245.181225, 1385253.377486, 1385258.587154, 1385262.505937, 1385291.794601, 1385291.794601, 1385291.794601, 1385291.794601, 1385291.794601, 1385291.794601, 1385292.904758, 1385304.839522, 1385304.839522, 1385318.257725, 1385329.046096, 1385332.907769, 1385332.907769, 1385378.743449, 1385378.743449, 1385378.743449, 1385378.743449, 1385392.734882, 1385392.734882, 1385392.734882, 1385392.734882, 1385393.095251, 1385393.095251, 1385399.449758, 1385406.133886, 1385411.900297, 1385411.900297, 1385417.709097, 1385441.787607, 1385441.787607, 1385452.353798, 1385452.353798, 1385458.358887, 1385458.358887, 1385458.499455, 1385474.929105, 1385474.929105, 1385510.870389, 1385524.747374, 1385524.747374, 1385524.747374, 1385524.747374, 1385524.747374, 1385530.456049, 1385548.841619, 1385548.841619, 1385572.978253, 1385572.978253, 1385572.978253, 1385572.978253, 1385572.978253, 1385572.978253, 1385587.571506, 1385587.571506, 1385616.11519, 1385616.11519, 1385616.11519, 1385616.788279, 1385616.788279, 1385616.788279, 1385616.788279, 1385643.179336, 1385643.179336, 1385648.99377, 1385657.678584, 1385662.330643, 1385677.355802, 1385678.84698, 1385678.84698, 1385678.84698, 1385681.21586, 1385681.21586, 1385686.252787, 1385698.724533, 1385703.420963, 1385707.175914, 1385711.929464, 1385711.929464, 1385721.920715, 1385721.920715, 1385755.288637, 1385755.288637, 1385765.848744, 1385773.658177, 1385773.658177, 1385778.802698, 1385778.802698, 1385778.802698, 1385784.206759, 1385810.911445, 1385810.911445, 1385810.911445, 1385827.380311, 1385827.380311, 1385831.675545, 1385852.803457, 1385854.698901, 1385854.698901, 1385854.698901, 1385872.970271, 1385872.970271, 1385872.970271, 1385872.970271, 1385872.970271, 1385882.078573, 1385896.250899, 1385912.823658, 1385912.823658, 1385912.823658, 1385919.791455, 1385947.443124, 1385947.443124, 1385947.443124, 1385947.443124, 1385947.443124, 1385947.443124, 1385949.762351, 1385949.762351, 1385964.228505, 1385964.228505, 1385986.450989, 1385986.450989, 1385986.450989, 1385986.450989, 1385996.023765, 1385996.023765, 1386005.170659, 1386030.412986, 1386030.412986, 1386030.412986, 1386060.499527, 1386060.499527, 1386060.499527, 1386060.499527, 1386060.499527, 1386060.499527, 1386074.296035, 1386088.23492, 1386100.617005, 1386100.617005, 1386100.617005, 1386104.089072, 1386111.950314, 1386119.196358, 1386119.196358, 1386127.65003, 1386127.65003, 1386127.65003, 1386134.509233, 1386136.305901, 1386161.4583, 1386161.4583, 1386173.073714, 1386188.428674, 1386188.428674, 1386221.233239, 1386221.233239, 1386221.233239, 1386221.233239, 1386221.233239, 1386221.233239, 1386221.233239, 1386221.233239, 1386221.233239, 1386224.860594, 1386254.486608, 1386254.486608, 1386254.486608, 1386269.331422, 1386277.488212, 1386277.626196, 1386288.433988, 1386288.433988, 1386288.433988, 1386301.361773, 1386308.518573, 1386308.518573, 1386308.518573, 1386308.518573, 1386319.728037, 1386320.339224, 1386320.339224, 1386320.339224, 1386341.023876, 1386353.411171, 1386366.354861, 1386366.354861, 1386366.354861, 1386366.354861, 1386372.092147, 1386395.76372, 1386402.41697, 1386402.41697, 1386402.41697, 1386417.082246, 1386417.082246, 1386433.899734, 1386433.899734, 1386433.899734, 1386433.899734, 1386433.899734, 1386459.054542, 1386459.054542, 1386467.368317, 1386467.368317, 1386481.185177, 1386488.545438, 1386491.429475, 1386491.429475, 1386503.911995, 1386503.911995, 1386508.312562, 1386527.161121, 1386527.161121, 1386527.161121, 1386532.076693, 1386556.57134, 1386575.636319, 1386575.636319, 1386575.636319, 1386575.636319, 1386575.636319, 1386580.824914, 1386580.824914, 1386580.824914, 1386596.779794, 1386596.779794, 1386596.779794, 1386599.285607, 1386599.285607, 1386604.854293, 1386609.014256, 1386631.422041, 1386637.256735, 1386640.503856, 1386640.503856, 1386640.503856, 1386678.779582, 1386678.779582, 1386678.779582, 1386678.779582, 1386679.385162, 1386683.285976, 1386705.386015, 1386705.386015, 1386705.386015, 1386712.790948, 1386712.790948, 1386712.790948, 1386723.392625, 1386728.477759, 1386728.590697, 1386748.762532, 1386749.178338, 1386757.651618, 1386757.651618, 1386775.568034, 1386775.568034, 1386781.87382, 1386781.87382, 1386802.696467, 1386802.696467, 1386812.260016, 1386812.260016, 1386820.604229, 1386820.604229, 1386820.604229, 1386822.624727, 1386845.819014, 1386845.819014, 1386845.819014, 1386845.819014, 1386848.129691, 1386851.512989, 1386873.809961, 1386873.809961, 1386886.616962, 1386886.616962, 1386886.616962, 1386886.616962, 1386906.969414, 1386920.987513, 1386930.798264, 1386930.798264, 1386930.798264, 1386935.034204, 1386935.034204, 1386935.034204, 1386935.824098, 1386950.929742, 1386973.304005, 1386973.304005, 1386973.304005, 1386973.304005, 1386985.078076, 1386985.078076, 1386985.078076, 1386989.704588, 1386990.113924, 1387000.860723, 1387002.349229, 1387014.367405, 1387014.367405, 1387019.342518, 1387019.387733, 1387055.355867, 1387055.355867, 1387061.660168, 1387061.660168, 1387069.023467, 1387083.157566, 1387083.157566, 1387083.157566, 1387088.650328, 1387088.650328, 1387088.650328, 1387116.094894, 1387116.094894, 1387118.560601, 1387118.560601, 1387130.471453, 1387130.471453, 1387130.471453, 1387136.767654, 1387136.767654, 1387145.494848, 1387155.484676, 1387176.893395, 1387176.893395, 1387176.893395, 1387180.01858, 1387180.01858, 1387188.092311, 1387210.95502, 1387212.293876, 1387212.293876, 1387234.732479, 1387234.732479, 1387239.230588, 1387239.230588, 1387239.230588, 1387246.115177, 1387251.747217, 1387257.573332, 1387257.573332, 1387257.573332, 1387269.350195, 1387277.196491, 1387277.196491, 1387289.286319, 1387308.030319, 1387308.030319, 1387328.90326, 1387328.90326, 1387330.987464, 1387330.987464, 1387352.014074, 1387352.014074, 1387352.014074, 1387352.014074, 1387354.815118, 1387369.333097, 1387369.333097, 1387369.333097, 1387380.837102, 1387380.837102, 1387382.087396, 1387382.087396, 1387395.851421, 1387395.851421, 1387409.819984, 1387430.352546, 1387430.352546, 1387430.352546, 1387434.470896, 1387445.492691, 1387445.492691, 1387455.809192, 1387465.157041, 1387465.157041, 1387465.157041, 1387468.62042, 1387468.62042, 1387482.211302, 1387488.935409, 1387488.935409, 1387489.453682, 1387493.716024, 1387493.716024, 1387543.992008, 1387543.992008, 1387543.992008, 1387543.992008, 1387544.189984, 1387544.189984, 1387544.189984, 1387549.932878, 1387551.86769, 1387564.228331, 1387571.693365, 1387581.548288, 1387581.548288, 1387591.062268, 1387591.062268, 1387606.447016, 1387606.447016, 1387606.447016, 1387610.90377, 1387634.123768, 1387634.123768, 1387634.123768, 1387634.123768, 1387643.578393, 1387658.948975, 1387658.948975, 1387658.948975, 1387671.775588, 1387684.395221, 1387684.395221, 1387684.395221, 1387696.998893, 1387696.998893, 1387696.998893, 1387696.998893, 1387714.723243, 1387722.017825, 1387722.017825, 1387725.465003, 1387733.885772, 1387733.885772, 1387733.885772, 1387745.738368, 1387751.317744, 1387769.742188, 1387769.742188, 1387788.320485, 1387788.320485, 1387788.320485, 1387788.320485, 1387788.320485, 1387789.821265, 1387816.581611, 1387816.581611, 1387821.714687, 1387821.714687, 1387839.09337, 1387839.09337, 1387841.590582, 1387841.590582, 1387841.590582, 1387850.584776, 1387850.584776, 1387850.584776, 1387878.781926, 1387890.386683, 1387890.386683, 1387890.386683, 1387894.589409, 1387911.086568, 1387921.345768, 1387921.345768, 1387921.345768, 1387921.345768, 1387921.345768, 1387941.32003, 1387941.32003, 1387941.32003, 1387955.656608, 1387956.80874, 1387956.80874, 1387965.755583, 1387965.755583, 1387965.755583, 1387984.24593, 1387994.020711, 1387994.020711, 1387997.784421, 1388013.615126, 1388013.615126, 1388013.615126, 1388013.615126, 1388013.615126, 1388019.311717, 1388019.311717, 1388035.849771, 1388038.269422, 1388065.367094, 1388065.367094, 1388065.367094, 1388065.367094, 1388094.362889, 1388094.362889, 1388094.362889, 1388094.362889, 1388094.362889, 1388094.586077, 1388104.706676, 1388104.706676, 1388121.159878, 1388121.159878, 1388121.159878, 1388131.176346, 1388145.601754, 1388146.613864, 1388173.932348, 1388173.932348, 1388173.932348, 1388173.932348, 1388173.932348, 1388188.621761, 1388188.621761, 1388189.251967, 1388192.802231, 1388219.309837, 1388230.297641, 1388230.297641, 1388230.297641, 1388230.297641, 1388230.297641, 1388230.932007, 1388241.275781, 1388241.275781, 1388241.275781, 1388263.710013, 1388269.906608, 1388269.906608, 1388281.699471, 1388281.699471, 1388281.699471, 1388281.699471, 1388294.223495, 1388294.223495, 1388296.691695, 1388314.13858, 1388352.53781, 1388352.53781, 1388352.53781, 1388352.53781, 1388352.53781, 1388352.53781, 1388352.53781, 1388356.070366, 1388356.070366, 1388356.070366, 1388358.646869, 1388365.310557, 1388369.622765, 1388390.62405, 1388403.431012, 1388404.493376, 1388404.493376, 1388404.493376, 1388410.475219, 1388411.732052, 1388430.273158, 1388430.273158, 1388433.833604, 1388433.836327, 1388440.200673, 1388455.041522, 1388461.92837, 1388461.92837, 1388461.92837, 1388478.703599, 1388478.703599, 1388485.983949, 1388495.649999, 1388495.649999, 1388495.649999, 1388514.164294, 1388514.164294, 1388514.164294, 1388514.164294, 1388514.164294, 1388537.934176, 1388548.538323, 1388548.538323, 1388560.71353, 1388560.71353, 1388578.877014, 1388588.092962, 1388588.092962, 1388590.308949, 1388590.308949, 1388590.308949, 1388602.023738, 1388602.023738, 1388604.258471, 1388604.258471, 1388616.072735, 1388625.157277, 1388643.689243, 1388648.22121, 1388648.22121, 1388648.22121, 1388653.896738, 1388653.896738, 1388663.704832, 1388663.704832, 1388673.359305, 1388673.359305, 1388673.359305, 1388689.627859, 1388706.551727, 1388706.551727, 1388706.551727, 1388706.551727, 1388712.869139, 1388719.291092, 1388719.291092, 1388755.480857, 1388755.480857, 1388755.480857, 1388755.480857, 1388755.480857, 1388762.490453, 1388762.490453, 1388776.369546, 1388776.369546, 1388794.257243, 1388794.257243, 1388794.257243, 1388798.682185, 1388798.682185, 1388818.191446, 1388818.191446, 1388818.191446, 1388818.191446, 1388818.191446, 1388818.191446, 1388823.518555, 1388841.763176, 1388841.763176, 1388863.522658, 1388877.144501, 1388877.621074, 1388877.621074, 1388877.621074, 1388877.621074, 1388877.621074, 1388888.463397, 1388907.413608, 1388907.413608, 1388925.416367, 1388925.416367, 1388937.573812, 1388941.448086, 1388941.448086, 1388941.448086, 1388941.448086, 1388941.448086, 1388941.448086, 1388944.767276, 1388973.340857, 1388973.340857, 1388974.497953, 1388994.66563, 1388994.66563, 1388994.66563, 1388994.66563, 1388999.591835, 1389001.85283, 1389007.300637, 1389007.300637, 1389028.197975, 1389028.197975, 1389054.85122, 1389054.85122, 1389074.784783, 1389074.784783, 1389074.784783, 1389074.784783, 1389094.12482, 1389094.12482, 1389094.12482, 1389097.563701, 1389097.563701, 1389097.563701, 1389101.598561, 1389101.598561, 1389101.598561, 1389101.598561, 1389112.335881, 1389139.883746, 1389139.883746, 1389139.883746, 1389139.883746, 1389139.883746, 1389148.059331, 1389150.725358, 1389161.364866, 1389181.878675, 1389181.878675, 1389181.878675, 1389185.051039, 1389196.272129, 1389201.135732, 1389201.135732, 1389216.417448, 1389216.417448, 1389216.417448, 1389235.415658, 1389235.419102, 1389253.153525, 1389253.153525, 1389260.979353, 1389260.979353, 1389260.979353, 1389260.979353, 1389285.272204, 1389285.272204, 1389301.525591, 1389301.525591, 1389301.525591, 1389301.525591, 1389301.525591, 1389308.702414, 1389308.702414, 1389308.702414, 1389316.730963, 1389316.730963, 1389316.730963, 1389316.730963, 1389350.567625, 1389351.906886, 1389351.906886, 1389389.27161, 1389389.27161, 1389389.783992, 1389389.783992, 1389389.783992, 1389389.783992, 1389393.153335, 1389414.696106, 1389421.517982, 1389421.517982, 1389421.517982, 1389421.517982, 1389421.517982, 1389454.469657, 1389454.469657, 1389454.469657, 1389454.469657, 1389460.033836, 1389485.761553, 1389485.761553, 1389485.761553, 1389486.876406, 1389486.876406, 1389487.198665, 1389487.198665, 1389487.198665, 1389503.54978, 1389503.54978, 1389503.54978, 1389503.54978, 1389524.903331, 1389524.903331, 1389549.952513, 1389549.952513, 1389555.27368, 1389555.27368, 1389555.27368, 1389555.27368, 1389565.948501, 1389565.948501, 1389575.961338, 1389575.961338, 1389585.851472, 1389585.851472, 1389585.851472, 1389585.851472, 1389624.61059, 1389628.995378, 1389630.376835, 1389630.376835, 1389630.376835, 1389632.851751, 1389647.439789, 1389647.439789, 1389647.439789, 1389653.804415, 1389653.804415, 1389658.129906, 1389668.239881, 1389668.239881, 1389691.343763, 1389691.343763, 1389691.343763, 1389691.343763, 1389691.343763, 1389691.343763, 1389717.167706, 1389721.193133, 1389733.913124, 1389737.17198, 1389737.17198, 1389737.17198, 1389760.001024, 1389760.001024, 1389760.001024, 1389767.338107, 1389778.977482, 1389778.977482, 1389794.093757, 1389794.093757, 1389794.093757, 1389794.848499, 1389794.848499, 1389818.052197, 1389818.052197, 1389818.052197, 1389818.052197, 1389818.052197, 1389818.052197, 1389823.848799, 1389854.829442, 1389854.829442, 1389854.829442, 1389854.829442, 1389882.686546, 1389882.686546, 1389882.686546, 1389882.686546, 1389895.125105, 1389895.125105, 1389895.125105, 1389918.873078, 1389918.873078, 1389918.873078, 1389918.873078, 1389918.873078, 1389918.873078, 1389933.276861, 1389947.108904, 1389947.108904, 1389952.852593, 1389965.292898, 1389965.292898, 1389965.292898, 1389976.712642, 1389976.712642, 1389976.712642, 1389976.712642, 1390008.516114, 1390008.516114, 1390021.866703, 1390021.866703, 1390021.866703, 1390021.866703, 1390057.561369, 1390057.561369, 1390057.561369, 1390057.561369, 1390057.561369, 1390064.38456, 1390064.38456, 1390064.38456, 1390066.618385, 1390066.618385, 1390077.150951, 1390077.150951, 1390077.150951, 1390077.505538, 1390081.802968, 1390100.050733, 1390130.731383, 1390130.731383, 1390130.731383, 1390137.106033, 1390138.10925, 1390139.920631, 1390149.378527, 1390149.378527, 1390149.378527, 1390156.3482, 1390162.493826, 1390170.978297, 1390170.978297, 1390171.551187, 1390178.764775, 1390205.708628, 1390205.708628, 1390205.708628, 1390206.36517, 1390206.36517, 1390209.647906, 1390234.903434, 1390234.903434, 1390234.903434, 1390234.903434, 1390234.903434, 1390234.903434, 1390272.361845, 1390272.361845, 1390272.361845, 1390272.361845, 1390272.361845, 1390281.165508, 1390289.949829, 1390289.949829, 1390299.542027, 1390299.542027, 1390299.542027, 1390313.690607, 1390324.26979, 1390324.26979, 1390344.958183, 1390351.145365, 1390351.145365, 1390351.145365, 1390364.240787, 1390364.240787, 1390364.240787, 1390373.321797, 1390373.709979, 1390386.135517, 1390386.135517, 1390396.656422, 1390396.656422, 1390405.590412, 1390405.590412, 1390409.891991, 1390409.891991, 1390409.891991, 1390421.151897, 1390421.151897, 1390439.065267, 1390448.292884, 1390467.522678, 1390467.522678, 1390467.522678, 1390467.522678, 1390467.522678, 1390467.522678, 1390469.775312, 1390488.64079, 1390488.64079, 1390503.969017, 1390503.969017, 1390503.969017, 1390503.969017, 1390520.123046, 1390538.433649, 1390538.433649, 1390538.433649, 1390546.12692, 1390546.12692, 1390546.12692, 1390546.12692, 1390548.539389, 1390604.246591, 1390604.246591, 1390604.246591, 1390604.246591, 1390604.246591, 1390604.246591, 1390604.246591, 1390609.509396, 1390609.509396, 1390609.509396, 1390609.509396, 1390609.509396, 1390609.509396, 1390630.982965, 1390630.982965, 1390641.137812, 1390651.802605, 1390662.126168, 1390662.2865, 1390667.907987, 1390684.650655, 1390684.650655, 1390684.650655, 1390703.6582, 1390703.6582, 1390703.6582, 1390703.6582, 1390706.833984, 1390706.833984, 1390718.532579, 1390718.532579, 1390739.073735, 1390739.073735, 1390739.073735, 1390739.073735, 1390739.073735, 1390752.911899, 1390752.911899, 1390800.810276, 1390800.810276, 1390800.810276, 1390800.810276, 1390800.810276, 1390802.350581, 1390802.350581, 1390802.350581, 1390802.350581, 1390802.350581, 1390808.476335, 1390836.447063, 1390836.447063, 1390836.447063, 1390841.796693, 1390855.774681, 1390855.774681, 1390855.774681, 1390855.774681, 1390867.529428, 1390878.358317, 1390878.358317, 1390878.358317, 1390878.358317, 1390885.303011, 1390901.460542, 1390901.460542, 1390901.460542, 1390901.460542, 1390901.460542, 1390906.247883, 1390924.724725, 1390931.657416, 1390939.69782, 1390939.69782, 1390960.784092, 1390960.784092, 1390960.784092, 1390968.100584, 1390985.562104, 1390985.562104, 1390985.562104, 1390986.085177, 1391011.091217, 1391011.091217, 1391011.091217, 1391011.091217, 1391011.091217, 1391013.507387, 1391027.381475, 1391027.381475, 1391047.617584, 1391047.617584, 1391047.617584, 1391047.617584, 1391047.617584, 1391049.501905, 1391049.501905, 1391049.501905, 1391054.581715, 1391076.434653, 1391096.355202, 1391096.355202, 1391102.125232, 1391102.125232, 1391102.125232, 1391111.856601, 1391151.088605, 1391151.088605, 1391151.088605, 1391151.088605, 1391151.088605, 1391151.088605, 1391162.885274, 1391162.885274, 1391168.879978, 1391168.879978, 1391188.029646, 1391188.029646, 1391192.772398, 1391192.772398, 1391192.772398, 1391192.772398, 1391198.273171, 1391205.167152, 1391205.167152, 1391225.81851, 1391225.81851, 1391225.81851, 1391225.81851, 1391226.136533, 1391243.849884, 1391243.849884, 1391262.401727, 1391262.401727, 1391281.976374, 1391281.976374, 1391284.69616, 1391284.69616, 1391287.440664, 1391287.440664, 1391287.440664, 1391303.121698, 1391303.121698, 1391303.121698, 1391309.138263, 1391309.138263, 1391327.559968, 1391336.929071, 1391336.929071, 1391336.929071, 1391346.111682, 1391346.111682, 1391346.111682, 1391356.074497, 1391356.074497, 1391356.074497, 1391380.60705, 1391380.60705, 1391410.256926, 1391410.256926, 1391410.256926, 1391410.256926, 1391410.256926, 1391414.775729, 1391419.874793, 1391419.874793, 1391420.730982, 1391432.603998, 1391435.246358, 1391435.246358, 1391437.134911, 1391456.395144, 1391458.1217, 1391459.35084, 1391476.230649, 1391476.230649, 1391476.230649, 1391500.71548, 1391500.71548, 1391500.71548, 1391520.921584, 1391520.921584, 1391520.921584, 1391520.921584, 1391523.337403, 1391523.985479, 1391542.141061, 1391552.415974, 1391556.511123, 1391556.511123, 1391561.338468, 1391562.324937, 1391562.324937, 1391562.324937, 1391562.324937, 1391580.857894, 1391580.857894, 1391599.377079, 1391599.377079, 1391599.377079, 1391606.881141, 1391606.881141, 1391622.611247, 1391622.611247, 1391622.611247, 1391623.0186, 1391645.610026, 1391645.610026, 1391645.610026, 1391661.116781, 1391661.116781, 1391661.116781, 1391681.86479, 1391681.86479, 1391681.86479, 1391681.86479, 1391701.194584, 1391701.194584, 1391701.194584, 1391701.194584, 1391705.897246, 1391705.897246, 1391722.127602, 1391722.127602, 1391725.706042, 1391725.706042, 1391735.724654, 1391735.724654, 1391735.724654, 1391735.724654, 1391773.892036, 1391773.892036, 1391773.892036, 1391777.358846, 1391777.358846, 1391782.304396, 1391782.304396, 1391807.155816, 1391817.92067, 1391817.92067, 1391817.92067, 1391817.92067, 1391817.92067, 1391844.176563, 1391844.176563, 1391844.176563, 1391846.704081, 1391846.704081, 1391859.056402, 1391859.056402, 1391874.088888, 1391874.088888, 1391874.088888, 1391905.910435, 1391905.910435, 1391905.910435, 1391922.468319, 1391929.537967, 1391929.537967, 1391929.537967, 1391929.537967, 1391929.537967, 1391934.962646, 1391934.962646, 1391935.988747, 1391935.988747, 1391954.048111, 1391955.425289, 1391955.425289, 1391955.425289, 1391986.906984, 1391986.906984, 1391986.906984, 1391986.906984, 1392012.640503, 1392024.028127, 1392024.028127, 1392024.028127, 1392024.028127, 1392024.028127, 1392037.039726, 1392038.068566, 1392038.70207, 1392038.70207, 1392051.70756, 1392051.70756, 1392051.70756, 1392051.70756, 1392063.18934, 1392076.311429, 1392086.058448, 1392087.549779, 1392087.549779, 1392087.549779, 1392092.776693, 1392092.776693, 1392124.294943, 1392124.294943, 1392124.294943, 1392124.294943, 1392129.22708, 1392129.22708, 1392129.22708, 1392129.22708, 1392134.601272, 1392145.5735, 1392145.5735, 1392169.461982, 1392183.244622, 1392183.244622, 1392183.244622, 1392183.244622, 1392203.892888, 1392203.892888, 1392203.892888, 1392203.892888, 1392203.892888, 1392203.892888, 1392203.892888, 1392206.734836, 1392214.70651, 1392243.018138, 1392244.153821, 1392251.065795, 1392276.795372, 1392276.795372, 1392276.795372, 1392276.795372, 1392276.795372, 1392276.795372, 1392279.771965, 1392298.910581, 1392298.910581, 1392298.910581, 1392298.910581, 1392319.99351, 1392319.99351, 1392323.318606, 1392323.318606, 1392327.95873, 1392327.95873, 1392327.95873, 1392346.348649, 1392352.21149, 1392353.13818, 1392353.13818, 1392390.166873, 1392390.166873, 1392394.141776, 1392407.339384, 1392407.339384, 1392407.339384, 1392407.339384, 1392407.339384, 1392407.339384, 1392412.451182, 1392412.451182, 1392412.495987, 1392412.495987, 1392429.341468, 1392429.341468, 1392429.341468, 1392449.632584, 1392457.170031, 1392462.31051, 1392469.928379, 1392477.078743, 1392477.078743, 1392477.078743, 1392479.464821, 1392479.464821, 1392486.07445, 1392486.07445, 1392506.790822, 1392524.076542, 1392524.076542, 1392524.076542, 1392524.076542, 1392529.204831, 1392534.620181, 1392546.698282, 1392546.698282, 1392556.224135, 1392557.566179, 1392573.364692, 1392573.364692, 1392573.364692, 1392573.364692, 1392573.364692, 1392595.784261, 1392602.727067, 1392602.727067, 1392602.727067, 1392611.863936, 1392614.753919, 1392632.607152, 1392632.607152, 1392632.607152, 1392634.850356, 1392635.596355, 1392635.596355, 1392648.818341, 1392648.818341, 1392648.818341, 1392648.818341, 1392705.894337, 1392705.894337, 1392705.894337, 1392705.894337, 1392705.894337, 1392705.894337, 1392705.894337, 1392705.894337, 1392722.15492, 1392733.999549, 1392733.999549, 1392733.999549, 1392763.583015, 1392763.583015, 1392763.583015, 1392763.583015, 1392763.583015, 1392763.583015, 1392773.038782, 1392773.038782, 1392773.038782, 1392773.038782, 1392780.333593, 1392791.779916, 1392791.779916, 1392791.779916, 1392791.779916, 1392801.436905, 1392821.806444, 1392828.504446, 1392828.504446, 1392828.504446, 1392848.525399, 1392848.525399, 1392863.170794, 1392863.170794, 1392863.170794, 1392863.170794, 1392888.097992, 1392888.097992, 1392888.097992, 1392888.097992, 1392909.192475, 1392909.192475, 1392909.192475, 1392909.192475, 1392909.192475, 1392912.307248, 1392919.289469, 1392919.289469, 1392932.732858, 1392932.732858, 1392934.311491, 1392934.311491, 1392934.311491, 1392934.311491, 1392942.542118, 1392953.315563, 1392974.648258, 1392978.476741, 1392978.476741, 1393004.320739, 1393004.320739, 1393004.320739, 1393018.885176, 1393018.885176, 1393018.885176, 1393018.885176, 1393018.885176, 1393018.885176, 1393018.885176, 1393019.597237, 1393029.930937, 1393033.772569, 1393049.324861, 1393049.324861, 1393070.645075, 1393070.645075, 1393070.645075, 1393070.645075, 1393085.948969, 1393085.948969, 1393091.178445, 1393091.178445, 1393109.91281, 1393113.837559, 1393115.021379, 1393115.021379, 1393115.021379, 1393123.48032, 1393123.48032, 1393123.48032, 1393123.48032, 1393137.801527, 1393144.95829, 1393147.582034, 1393179.614331, 1393182.238244, 1393182.238244, 1393182.238244, 1393193.379049, 1393193.379049, 1393193.379049, 1393209.268041, 1393209.268041, 1393209.268041, 1393209.268041, 1393217.403469, 1393217.403469, 1393224.260969, 1393224.260969, 1393225.210268, 1393236.926824, 1393236.926824, 1393236.926824, 1393257.675074, 1393266.463499, 1393280.513307, 1393280.513307, 1393280.513307, 1393282.2631, 1393301.972822, 1393301.972822, 1393301.972822, 1393301.972822, 1393301.972822, 1393301.972822, 1393332.254671, 1393332.616923, 1393332.616923, 1393332.616923, 1393336.948244, 1393336.948244, 1393336.948244, 1393346.276764, 1393376.587773, 1393376.587773, 1393376.587773, 1393376.587773, 1393378.445001, 1393385.624379, 1393398.452124, 1393398.452124, 1393407.291056, 1393407.291056, 1393415.04604, 1393415.04604, 1393415.04604, 1393426.845275, 1393426.845275, 1393434.535643, 1393434.535643, 1393434.535643, 1393434.535643, 1393456.16564, 1393456.16564, 1393465.369158, 1393465.369158, 1393465.369158, 1393478.030294, 1393483.98587, 1393488.821552, 1393505.511266, 1393505.511266, 1393515.267397, 1393515.267397, 1393515.267397, 1393520.250613, 1393524.997496, 1393538.347461, 1393539.86664, 1393539.86664, 1393539.86664, 1393551.89943, 1393576.673308, 1393576.673308, 1393576.673308, 1393576.673308, 1393583.823662, 1393583.823662, 1393610.790393, 1393610.790393, 1393615.313084, 1393615.313084, 1393615.313084, 1393615.313084, 1393632.285721, 1393632.285721, 1393638.294057, 1393638.294057, 1393639.912281, 1393639.912281, 1393669.924882, 1393669.924882, 1393690.227697, 1393690.227697, 1393690.227697, 1393690.227697, 1393690.227697, 1393690.227697, 1393690.293756, 1393701.535849, 1393701.535849, 1393711.718956, 1393733.240776, 1393740.213404, 1393740.213404, 1393740.213404, 1393740.213404, 1393760.383434, 1393760.383434, 1393760.383434, 1393760.383434, 1393767.787096, 1393785.806111, 1393785.806111, 1393793.017433, 1393793.017433, 1393793.017433, 1393808.648721, 1393808.648721, 1393808.648721, 1393815.597536, 1393815.597536, 1393823.574849, 1393850.95064, 1393850.95064, 1393850.95064, 1393850.95064, 1393850.95064, 1393852.333591, 1393852.333591, 1393859.03977, 1393859.03977, 1393859.03977, 1393867.359052, 1393867.852365, 1393881.056948, 1393921.253657, 1393921.253657, 1393921.253657, 1393921.253657, 1393923.775826, 1393923.775826, 1393923.775826, 1393923.775826, 1393923.775826, 1393930.478167, 1393930.478167, 1393941.746509, 1393943.763857, 1393943.763857, 1393946.126194, 1393967.116463, 1393967.116463, 1393974.16475, 1393984.671617, 1393988.512203, 1394002.015486, 1394002.015486, 1394002.015486, 1394009.620468, 1394009.620468, 1394009.620468, 1394013.266475, 1394013.266475, 1394021.421573, 1394021.421573, 1394039.264818, 1394039.264818, 1394039.264818, 1394079.989357, 1394079.989357, 1394079.989357, 1394079.989357, 1394079.989357, 1394079.989357, 1394079.989357, 1394111.293122, 1394111.293122, 1394111.293122, 1394123.106225, 1394123.106225, 1394123.106225, 1394124.920368, 1394131.1221, 1394131.1221, 1394131.1221, 1394131.1221, 1394163.443436, 1394163.443436, 1394163.443436, 1394169.984299, 1394174.672662, 1394174.672662, 1394190.241566, 1394190.241566, 1394190.241566, 1394208.794259, 1394209.98532, 1394209.98532, 1394209.98532, 1394222.251362, 1394222.251362, 1394224.113131, 1394224.113131, 1394224.113131, 1394224.113131, 1394241.887559, 1394260.372973, 1394260.372973, 1394268.792043, 1394268.792043, 1394268.792043, 1394278.002957, 1394283.393256, 1394283.393256, 1394289.557485, 1394316.596916, 1394316.596916, 1394316.596916, 1394316.596916, 1394316.596916, 1394319.77586, 1394323.723006, 1394323.723006, 1394323.723006, 1394323.723006, 1394323.723006, 1394347.244565, 1394361.783574, 1394361.783574, 1394361.783574, 1394375.311067, 1394388.453231, 1394388.453231, 1394388.453231, 1394391.582728, 1394391.582728, 1394391.799668, 1394394.541866, 1394406.707281, 1394406.707281, 1394424.534932, 1394427.704372, 1394427.704372, 1394432.961275, 1394448.912009, 1394448.912009, 1394448.912009, 1394448.912009, 1394465.925383, 1394465.925383, 1394465.925383, 1394467.258696, 1394488.702382, 1394488.702382, 1394488.702382, 1394488.702382, 1394499.550846, 1394502.633222, 1394502.633222, 1394531.704621, 1394531.704621, 1394531.704621, 1394548.590959, 1394550.993239, 1394550.993239, 1394550.993239, 1394550.993239, 1394550.993239, 1394580.719832, 1394580.719832, 1394580.719832, 1394584.439345, 1394584.439345, 1394596.297239, 1394596.297239, 1394596.297239, 1394603.875467, 1394607.429201, 1394607.429201, 1394619.944504, 1394619.944504, 1394622.274703, 1394637.16225, 1394655.255154, 1394666.93946, 1394666.93946, 1394666.93946, 1394666.93946, 1394666.93946, 1394666.93946, 1394666.93946, 1394670.942858, 1394688.805764, 1394688.805764, 1394705.862761, 1394705.862761, 1394705.862761, 1394711.805915, 1394746.222816, 1394746.222816, 1394746.222816, 1394746.222816, 1394746.222816, 1394746.222816, 1394746.222816, 1394746.222816, 1394761.95421, 1394774.052883, 1394781.867581, 1394781.867581, 1394781.867581, 1394781.867581, 1394781.867581, 1394781.867581, 1394781.867581, 1394782.970429, 1394802.98875, 1394811.726991, 1394811.726991, 1394814.244744, 1394827.009351, 1394827.009351, 1394836.224468, 1394836.224468, 1394836.224468, 1394836.942411, 1394840.41034, 1394840.41034, 1394855.389711, 1394865.047166, 1394874.936528, 1394883.853152, 1394883.853152, 1394916.175353, 1394935.035771, 1394935.035771, 1394935.035771, 1394935.035771, 1394935.035771, 1394935.035771, 1394935.035771, 1394935.035771, 1394935.035771, 1394936.213011, 1394936.213011, 1394936.213011, 1394964.256039, 1394964.256039, 1394964.256039, 1394971.252253, 1394987.852136, 1394987.852136, 1394997.491778, 1394997.491778, 1395006.278705, 1395006.278705, 1395006.712747, 1395006.712747, 1395031.909736, 1395031.909736, 1395036.552377, 1395041.70911, 1395041.70911, 1395041.70911, 1395045.650149, 1395045.650149, 1395045.650149, 1395045.650149, 1395045.972838, 1395053.315259, 1395062.56096, 1395069.133664, 1395069.133664, 1395072.389556, 1395105.86829, 1395105.86829, 1395118.58745, 1395118.58745, 1395119.98929, 1395124.774561, 1395132.506428, 1395132.506428, 1395132.801312, 1395146.20075, 1395146.20075, 1395146.20075, 1395152.8259, 1395161.085425, 1395172.336253, 1395172.336253, 1395172.336253, 1395179.775463, 1395179.775463, 1395179.775463, 1395189.339546, 1395199.878188, 1395215.005087, 1395215.005087, 1395215.005087, 1395230.43538, 1395230.43538, 1395230.43538, 1395248.461079, 1395248.461079, 1395248.461079, 1395248.461079, 1395248.461079, 1395249.88008, 1395249.88008, 1395260.080184, 1395263.653962, 1395270.860908, 1395273.685003, 1395296.444882, 1395296.444882, 1395296.444882, 1395296.444882, 1395301.212883, 1395311.861389, 1395319.232404, 1395319.232404, 1395319.232404, 1395319.232404, 1395326.767447, 1395334.072658, 1395334.072658, 1395334.072658, 1395359.727742, 1395362.695709, 1395368.547418, 1395368.547418, 1395368.547418, 1395368.547418, 1395385.217595, 1395390.378322, 1395390.378322, 1395390.378322, 1395403.16482, 1395415.177723, 1395418.76229, 1395418.76229, 1395426.355555, 1395430.504219, 1395452.27635, 1395453.969014, 1395453.969014, 1395453.969014, 1395453.969014, 1395468.244179, 1395470.218486, 1395470.218486, 1395472.222705, 1395475.003076, 1395475.003076, 1395478.088715, 1395478.088715, 1395492.866318, 1395492.866318, 1395515.608362, 1395515.608362, 1395515.608362, 1395515.608362, 1395515.608362, 1395538.941271, 1395547.071679, 1395571.813197, 1395571.813197, 1395571.813197, 1395571.813197, 1395590.546948, 1395590.546948, 1395590.546948, 1395590.546948, 1395590.546948, 1395590.546948, 1395590.546948, 1395590.546948, 1395590.546948, 1395614.733806, 1395614.733806, 1395627.456471, 1395627.456471, 1395627.456471, 1395627.456471, 1395648.681232, 1395648.681232, 1395676.726845, 1395676.726845, 1395676.726845, 1395676.726845, 1395676.726845, 1395678.286235, 1395678.286235, 1395690.71812, 1395690.71812, 1395691.467532, 1395691.467532, 1395708.138724, 1395716.064182, 1395722.351975, 1395722.351975, 1395722.351975, 1395722.351975, 1395722.351975, 1395722.351975, 1395741.684909, 1395741.684909, 1395741.684909, 1395745.262475, 1395763.870918, 1395763.870918, 1395763.870918, 1395768.730746, 1395768.730746, 1395777.639021, 1395786.827775, 1395786.827775, 1395787.467808, 1395796.944674, 1395806.591647, 1395822.886783, 1395836.166468, 1395836.166468, 1395839.613142, 1395850.246563, 1395850.246563, 1395850.246563, 1395850.246563, 1395860.875365, 1395876.545271, 1395876.545271, 1395876.545271, 1395876.545271, 1395876.545271, 1395877.423018, 1395877.423018, 1395883.190333, 1395889.109377, 1395889.109377, 1395897.626499, 1395909.325182, 1395909.325182, 1395909.325182, 1395915.245184, 1395943.708034, 1395943.708034, 1395943.708034, 1395943.708034, 1395945.654728, 1395960.435396, 1395960.435396, 1395978.198168, 1395978.198168, 1395978.198168, 1395981.545638, 1395981.545638, 1395995.345595, 1395995.345595, 1396003.14461, 1396005.616958, 1396009.821572, 1396009.821572, 1396016.708798, 1396016.708798, 1396028.553798, 1396028.553798, 1396049.869049, 1396049.869049, 1396049.869049, 1396049.869049, 1396065.213317, 1396065.213317, 1396075.221535, 1396075.221535, 1396080.072407, 1396097.636916, 1396097.636916, 1396108.654733, 1396108.654733, 1396108.654733, 1396108.654733, 1396108.654733, 1396108.654733, 1396109.870311, 1396131.266303, 1396152.496261, 1396158.01903, 1396159.363731, 1396159.363731, 1396159.363731, 1396159.363731, 1396159.363731, 1396159.363731, 1396159.363731, 1396181.522591, 1396181.522591, 1396181.522591, 1396198.537523, 1396207.554067, 1396207.554067, 1396207.554067, 1396207.554067, 1396224.366335, 1396225.537782, 1396225.537782, 1396225.537782, 1396225.537782, 1396225.903672, 1396243.71623, 1396250.333717, 1396250.333717, 1396250.333717, 1396250.800158, 1396291.728109, 1396291.728109, 1396291.728109, 1396291.728109, 1396291.728109, 1396291.728109, 1396295.537375, 1396303.134927, 1396303.134927, 1396314.845089, 1396314.845089, 1396330.007139, 1396330.494574, 1396331.747421, 1396331.747421, 1396352.774025, 1396352.774025, 1396352.774025, 1396352.774025, 1396355.07002, 1396355.07002, 1396370.370339, 1396370.370339, 1396370.370339, 1396382.82887, 1396383.662564, 1396400.138503, 1396400.138503, 1396416.373783, 1396416.373783, 1396416.373783, 1396416.373783, 1396435.521429, 1396435.521429, 1396443.022043, 1396443.022043, 1396443.022043, 1396443.022043, 1396443.022043, 1396443.022043, 1396458.76905, 1396458.76905, 1396463.688946, 1396466.754682, 1396466.754682, 1396480.824363, 1396481.697958, 1396486.141284, 1396486.141284, 1396520.555859, 1396520.555859, 1396520.555859, 1396520.555859, 1396520.555859, 1396537.801001, 1396537.801001, 1396541.108117, 1396541.885273, 1396570.15254, 1396570.15254, 1396570.15254, 1396581.997161, 1396581.997161, 1396582.517955, 1396596.307087, 1396596.307087, 1396596.307087, 1396596.307087, 1396603.989415, 1396603.989415, 1396605.02191, 1396614.921953, 1396623.625916, 1396623.625916, 1396623.625916, 1396628.089031, 1396628.089031, 1396628.089031, 1396658.359916, 1396659.613532, 1396659.613532, 1396659.613532, 1396659.613532, 1396659.613532, 1396675.716358, 1396698.584409, 1396707.446351, 1396707.446351, 1396707.446351, 1396707.446351, 1396707.446351, 1396707.446351, 1396707.446351, 1396708.854747, 1396713.431489, 1396716.457059, 1396725.937319, 1396728.131628, 1396737.81387, 1396757.273873, 1396757.273873, 1396757.273873, 1396769.520786, 1396769.520786, 1396780.520334, 1396780.520334, 1396789.814233, 1396789.814233, 1396790.166009, 1396797.636652, 1396797.636652, 1396797.636652, 1396833.690807, 1396833.690807, 1396849.625685, 1396849.625685, 1396849.625685, 1396849.625685, 1396849.625685, 1396849.625685, 1396849.625685, 1396849.625685, 1396849.625685, 1396865.090367, 1396865.922118, 1396885.779207, 1396885.779207, 1396885.779207, 1396886.500147, 1396923.561626, 1396923.561626, 1396923.561626, 1396923.561626, 1396923.561626, 1396923.561626, 1396923.561626, 1396923.822837, 1396923.822837, 1396944.938272, 1396944.938272, 1396944.938272, 1396948.629669, 1396948.629669, 1396954.91557, 1396959.53081, 1396967.797069, 1396967.797069, 1397000.280143, 1397000.280143, 1397000.280143, 1397000.280143, 1397000.280143, 1397009.068708, 1397012.793784, 1397012.793784, 1397012.793784, 1397012.793784, 1397022.48995, 1397036.877138, 1397036.877138, 1397036.877138, 1397051.895927, 1397051.895927, 1397054.925258, 1397055.895539, 1397090.479644, 1397095.789289, 1397095.789289, 1397095.789289, 1397095.789289, 1397095.789289, 1397095.789289, 1397095.789289, 1397095.789289, 1397104.751362, 1397104.751362, 1397104.751362, 1397115.971531, 1397115.971531, 1397130.013642, 1397139.223296, 1397139.223296, 1397139.223296, 1397152.922044, 1397157.850016, 1397157.850016, 1397163.600392, 1397183.970355, 1397183.970355, 1397191.827156, 1397191.827156, 1397196.714603, 1397196.714603, 1397196.714603, 1397208.071168, 1397226.685155, 1397226.685155, 1397236.729272, 1397236.729272, 1397236.729272, 1397236.729272, 1397239.911767, 1397239.911767, 1397249.924197, 1397249.924197, 1397249.924197, 1397265.050849, 1397279.228249, 1397279.228249, 1397279.228249, 1397310.338391, 1397310.338391, 1397310.338391, 1397311.99194, 1397311.99194, 1397311.99194, 1397311.99194, 1397312.608894, 1397319.98478, 1397319.98478, 1397326.47532, 1397335.185128, 1397335.185128, 1397335.185128, 1397340.922219, 1397364.508019, 1397364.508019, 1397369.663723, 1397369.713439, 1397390.048219, 1397390.048219, 1397396.878699, 1397396.878699, 1397396.878699, 1397396.878699, 1397420.880154, 1397420.880154, 1397436.689322, 1397436.689322, 1397436.689322, 1397436.689322, 1397436.79653, 1397436.79653, 1397436.79653, 1397445.694139, 1397445.694139, 1397453.354204, 1397480.49809, 1397480.49809, 1397480.49809, 1397481.805191, 1397481.805191, 1397486.527881, 1397486.527881, 1397486.527881, 1397507.383356, 1397516.710106, 1397516.710106, 1397554.070449, 1397554.070449, 1397554.070449, 1397554.070449, 1397554.070449, 1397554.070449, 1397554.070449, 1397554.070449, 1397554.070449, 1397556.619, 1397556.619, 1397556.619, 1397584.274927, 1397584.274927, 1397593.503386, 1397594.369496, 1397596.61973, 1397596.61973, 1397600.925407, 1397600.925407, 1397600.925407, 1397609.655706, 1397625.476361, 1397625.476361, 1397629.093873, 1397629.093873, 1397629.093873, 1397637.836444, 1397640.313977, 1397657.66329, 1397672.720672, 1397672.720672, 1397672.720672, 1397672.720672, 1397675.671554, 1397675.671554, 1397679.200157, 1397711.413998, 1397711.413998, 1397711.413998, 1397711.413998, 1397711.413998, 1397711.413998, 1397716.490133, 1397716.490133, 1397727.628135, 1397727.628135, 1397740.785548, 1397740.785548, 1397756.655194, 1397765.876308, 1397775.412849, 1397779.772201, 1397779.772201, 1397779.772201, 1397787.625347, 1397788.981427, 1397788.981427, 1397788.981427, 1397808.573691, 1397808.573691, 1397808.573691, 1397808.573691, 1397826.240515, 1397826.240515, 1397826.240515, 1397826.240515, 1397832.03942, 1397848.985339, 1397848.985339, 1397848.985339, 1397848.985339, 1397851.274273, 1397851.274273, 1397863.380123, 1397863.380123, 1397880.546463, 1397880.546463, 1397880.546463, 1397880.546463, 1397880.546463, 1397892.092504, 1397902.673391, 1397913.680027, 1397913.680027, 1397931.438584, 1397931.438584, 1397931.438584, 1397931.438584, 1397931.438584, 1397937.017811, 1397937.017811, 1397962.36705, 1397962.36705, 1397962.36705, 1397962.36705, 1397962.36705, 1397967.069864, 1397970.983823, 1397975.115036, 1397975.115036, 1398001.138449, 1398002.104511, 1398002.104511, 1398004.759916, 1398004.759916, 1398020.6094, 1398024.617022, 1398036.06732, 1398036.06732, 1398036.850234, 1398036.867495, 1398036.867495, 1398050.556735, 1398050.556735, 1398050.556735, 1398050.556735, 1398050.556735, 1398051.763274, 1398051.763274, 1398077.958019, 1398077.958019, 1398096.664348, 1398096.664348, 1398111.084821, 1398111.084821, 1398111.084821, 1398114.590424, 1398138.328835, 1398141.096175, 1398141.096175, 1398141.096175, 1398141.096175, 1398141.096175, 1398141.096175, 1398151.142226, 1398172.916685, 1398176.711947, 1398176.711947, 1398183.501769, 1398183.501769, 1398183.501769, 1398188.530772, 1398188.530772, 1398188.530772, 1398189.682476, 1398200.296594, 1398211.78821, 1398235.323831, 1398235.323831, 1398235.323831, 1398237.801427, 1398239.640634, 1398263.497682, 1398263.497682, 1398263.497682, 1398263.497682, 1398263.497682, 1398263.497682, 1398263.497682, 1398285.905115, 1398285.905115, 1398299.119844, 1398299.119844, 1398299.119844, 1398299.119844, 1398299.119844, 1398299.119844, 1398326.543545, 1398326.543545, 1398326.543545, 1398327.444497, 1398327.444497, 1398329.313061, 1398329.313061, 1398348.574974, 1398348.92335, 1398363.401079, 1398372.808367, 1398372.808367, 1398372.808367, 1398372.808367, 1398372.808367, 1398372.808367, 1398391.250929, 1398391.250929, 1398391.250929, 1398391.250929, 1398391.250929, 1398399.777874, 1398399.777874, 1398399.777874, 1398433.713845, 1398433.713845, 1398433.713845, 1398447.630178, 1398455.062442, 1398455.062442, 1398455.062442, 1398455.062442, 1398461.84091, 1398461.84091, 1398461.84091, 1398466.256006, 1398481.589008, 1398481.589008, 1398481.589008, 1398496.284906, 1398496.284906, 1398496.284906, 1398496.284906, 1398496.284906, 1398496.284906, 1398496.284906, 1398507.46097, 1398535.57231, 1398535.57231, 1398535.57231, 1398548.894189, 1398566.075705, 1398566.075705, 1398566.075705, 1398566.075705, 1398566.075705, 1398587.870453, 1398587.870453, 1398587.870453, 1398587.870453, 1398594.786402, 1398594.786402, 1398594.786402, 1398594.786402, 1398596.58939, 1398625.60584, 1398625.60584, 1398625.60584, 1398625.60584, 1398631.277414, 1398636.496533, 1398643.732747, 1398643.732747, 1398643.732747, 1398673.94951, 1398673.94951, 1398673.94951, 1398673.94951, 1398673.94951, 1398673.94951, 1398690.044127, 1398690.044127, 1398690.044127, 1398690.044127, 1398718.504114, 1398718.504114, 1398718.504114, 1398718.504114, 1398718.504114, 1398718.504114, 1398718.504114, 1398720.148326, 1398725.983599, 1398739.06188, 1398758.42398, 1398758.42398, 1398758.42398, 1398758.42398, 1398776.609515, 1398776.609515, 1398776.609515, 1398776.609515, 1398776.609515, 1398789.40492, 1398797.849455, 1398797.849455, 1398797.849455, 1398802.35481, 1398802.35481, 1398811.940325, 1398811.940325, 1398811.940325, 1398824.868383, 1398836.722331, 1398836.722331, 1398836.722331, 1398836.722331, 1398836.722331, 1398852.57209, 1398852.57209, 1398854.315268, 1398864.188342, 1398864.188342, 1398885.590136, 1398885.590136, 1398885.590136, 1398885.590136, 1398885.590136, 1398886.640916, 1398899.107087, 1398901.234514, 1398912.513382, 1398918.934118, 1398949.41279, 1398949.41279, 1398949.41279, 1398949.41279, 1398949.41279, 1398949.41279, 1398959.93839, 1398959.93839, 1398959.93839, 1398959.93839, 1398964.29151, 1398965.631036, 1398999.840727, 1398999.840727, 1398999.840727, 1398999.840727, 1398999.840727, 1398999.840727, 1399011.122456, 1399016.583442, 1399016.583442, 1399016.583442, 1399019.408799, 1399019.408799, 1399019.408799, 1399025.745497, 1399045.418834, 1399050.970322, 1399050.970322, 1399057.97331, 1399070.811993, 1399070.811993, 1399087.968187, 1399087.968187, 1399087.968187, 1399087.968187, 1399096.377382, 1399107.147131, 1399107.147131, 1399107.147131, 1399108.010685, 1399108.010685, 1399113.555536, 1399117.771643, 1399121.646429, 1399129.606561, 1399158.975124, 1399158.975124, 1399158.975124, 1399158.975124, 1399158.975124, 1399170.617333, 1399170.617333, 1399170.617333, 1399170.617333, 1399170.617333, 1399190.587866, 1399190.587866, 1399190.587866, 1399190.587866, 1399204.310937, 1399204.310937, 1399204.310937, 1399224.584624, 1399224.584624, 1399224.584624, 1399226.230108, 1399226.230108, 1399226.230108, 1399236.398738, 1399260.00116, 1399260.00116, 1399280.492659, 1399280.492659, 1399280.492659, 1399280.492659, 1399299.437016, 1399299.437016, 1399299.437016, 1399299.437016, 1399299.437016, 1399299.437016, 1399299.437016, 1399299.437016, 1399299.437016, 1399299.437016, 1399313.67373, 1399313.67373, 1399313.67373, 1399323.858344, 1399337.442265, 1399337.442265, 1399349.131842, 1399349.131842, 1399356.459132, 1399356.459132, 1399356.459132, 1399356.459132, 1399378.495757, 1399378.495757, 1399378.495757, 1399392.934696, 1399392.934696, 1399392.934696, 1399403.715263, 1399403.715263, 1399410.12556, 1399410.12556, 1399410.12556, 1399410.12556, 1399442.861695, 1399442.861695, 1399442.861695, 1399442.861695, 1399442.861695, 1399442.861695, 1399452.290581, 1399462.459948, 1399462.459948, 1399462.459948, 1399470.360746, 1399489.224583, 1399489.224583, 1399489.224583, 1399500.540939, 1399507.477014, 1399507.477014, 1399507.477014, 1399510.394019, 1399510.394019, 1399525.352438, 1399525.352438, 1399531.836989, 1399531.836989, 1399546.214078, 1399546.214078, 1399546.214078, 1399546.214078, 1399551.222515, 1399567.328241, 1399567.328241, 1399567.328241, 1399575.916322, 1399575.916322, 1399583.786902, 1399583.786902, 1399602.557177, 1399602.557177, 1399606.282709, 1399606.282709, 1399645.061727, 1399645.061727, 1399645.061727, 1399645.061727, 1399645.061727, 1399645.061727, 1399656.934909, 1399656.934909, 1399656.934909, 1399656.934909, 1399656.934909, 1399656.934909, 1399656.934909, 1399656.934909, 1399692.550349, 1399692.550349, 1399713.859549, 1399713.859549, 1399716.049135, 1399716.049135, 1399716.049135, 1399716.049135, 1399717.398462, 1399717.398462, 1399734.296968, 1399734.296968, 1399734.296968, 1399734.296968, 1399755.144418, 1399755.144418, 1399755.144418, 1399755.144418, 1399760.462508, 1399766.990907, 1399766.990907, 1399766.990907, 1399772.566016, 1399776.164646, 1399778.848715, 1399778.848715, 1399791.296332, 1399791.296332, 1399811.348978, 1399813.398559, 1399828.41237, 1399828.41237, 1399828.41237, 1399828.41237, 1399828.41237, 1399828.41237, 1399835.191986, 1399835.191986, 1399835.191986, 1399835.191986, 1399835.191986, 1399844.768528, 1399844.768528, 1399854.830157, 1399871.584583, 1399879.641077, 1399892.835789, 1399892.835789, 1399899.535636, 1399921.645686, 1399925.993442, 1399925.993442, 1399925.993442, 1399925.993442, 1399925.993442, 1399932.717851, 1399937.321013, 1399937.321013, 1399937.321013, 1399937.321013, 1399938.891238, 1399958.959076, 1399958.959076, 1399958.959076, 1399959.891713, 1399959.891713, 1399969.338271, 1399969.338271, 1399983.918037, 1399983.918037, 1400001.771501, 1400001.771501, 1400001.771501, 1400004.027445, 1400004.027445, 1400024.40623, 1400029.839885, 1400052.070843, 1400052.070843, 1400052.070843, 1400059.103616, 1400059.103616, 1400059.103616, 1400059.103616, 1400070.712827, 1400070.712827, 1400072.093417, 1400072.093417, 1400072.093417, 1400072.093417, 1400072.093417, 1400083.812297, 1400083.812297, 1400083.812297, 1400089.473689, 1400092.459522, 1400112.874125, 1400112.874125, 1400120.261837, 1400120.261837, 1400120.261837, 1400125.37343, 1400125.37343, 1400125.37343, 1400149.387737, 1400149.387737, 1400150.621218, 1400161.535684, 1400161.535684, 1400161.535684, 1400164.268639, 1400164.268639, 1400191.521421, 1400191.521421, 1400197.434931, 1400197.434931, 1400210.532365, 1400210.532365, 1400223.12331, 1400223.12331, 1400230.627946, 1400230.627946, 1400230.627946, 1400247.650955, 1400247.650955, 1400247.650955, 1400247.650955, 1400247.650955, 1400255.186634, 1400255.186634, 1400279.733004, 1400279.733004, 1400279.733004, 1400279.733004, 1400279.733004, 1400283.834531, 1400283.834531, 1400283.834531, 1400317.455717, 1400317.455717, 1400317.455717, 1400317.455717, 1400317.455717, 1400317.637858, 1400317.637858, 1400319.829931, 1400327.478771, 1400327.478771, 1400350.88015, 1400350.88015, 1400356.550357, 1400356.550357, 1400356.550357, 1400357.370312, 1400357.69153, 1400385.299781, 1400385.299781, 1400385.299781, 1400405.937871, 1400406.838507, 1400406.838507, 1400406.838507, 1400406.838507, 1400406.838507, 1400413.203008, 1400413.203008, 1400413.203008, 1400439.457003, 1400444.357202, 1400444.357202, 1400444.357202, 1400452.793436, 1400452.793436, 1400459.005116, 1400466.433992, 1400466.433992, 1400480.757213, 1400480.757213, 1400480.757213, 1400480.757213, 1400499.017277, 1400499.017277, 1400499.017277, 1400499.017277, 1400519.141482, 1400519.141482, 1400522.734683, 1400522.734683, 1400527.157732, 1400527.157732, 1400527.157732, 1400535.390919, 1400544.433925, 1400544.433925, 1400550.752306, 1400551.364879, 1400560.595176, 1400560.595176, 1400560.595176, 1400583.667835, 1400583.667835, 1400590.968334, 1400590.968334, 1400590.968334, 1400610.04497, 1400610.04497, 1400612.600445, 1400612.95093, 1400615.139179, 1400615.139179, 1400618.715979, 1400618.715979, 1400644.037562, 1400644.037562, 1400644.037562, 1400649.83351, 1400653.228146, 1400653.228146, 1400653.228146, 1400655.856055, 1400668.525082, 1400668.525082, 1400675.376448, 1400675.376448, 1400675.376448, 1400675.376448, 1400701.636796, 1400701.636796, 1400701.636796, 1400701.636796, 1400717.442395, 1400721.377458, 1400725.406719, 1400725.406719, 1400728.761073, 1400739.342938, 1400742.341606, 1400742.341606, 1400747.843489, 1400747.843489, 1400772.838077, 1400773.229865, 1400785.405683, 1400785.405683, 1400785.405683, 1400785.405683, 1400793.607125, 1400793.607125, 1400793.607125, 1400793.607125, 1400795.353336, 1400823.84621, 1400823.84621, 1400830.020648, 1400830.020648, 1400830.020648, 1400839.906948, 1400839.906948, 1400840.640151, 1400840.640151, 1400857.932531, 1400857.932531, 1400857.932531, 1400857.932531, 1400864.505573, 1400864.505573, 1400864.505573, 1400864.505573, 1400870.618627, 1400872.474208, 1400872.474208, 1400872.474208, 1400893.256341, 1400893.870761, 1400894.336549, 1400894.336549, 1400923.80547, 1400925.66511, 1400925.66511, 1400948.061093, 1400948.061093, 1400948.061093, 1400948.061093, 1400948.061093, 1400958.013186, 1400960.701231, 1400966.923942, 1400966.923942, 1400981.891353, 1400981.891353, 1400984.70351, 1400984.70351, 1400985.267872, 1401009.200198, 1401009.200198, 1401009.200198, 1401009.200198, 1401009.200198, 1401011.694492, 1401014.567944, 1401014.567944, 1401020.227394, 1401030.074554, 1401030.074554, 1401041.517973, 1401045.717097, 1401045.717097, 1401046.835182, 1401049.4858, 1401052.060691, 1401052.060691, 1401080.590906, 1401080.590906, 1401081.896853, 1401091.326553, 1401091.326553, 1401108.059931, 1401108.059931, 1401108.216087, 1401108.216087, 1401118.192212, 1401119.914663, 1401131.225605, 1401131.225605, 1401131.225605, 1401131.225605, 1401131.225605, 1401131.225605, 1401146.051321, 1401146.410892, 1401151.128133, 1401169.552551, 1401169.552551, 1401169.552551, 1401176.727708, 1401176.727708, 1401202.033429, 1401202.033429, 1401202.033429, 1401202.033429, 1401213.017873, 1401214.925495, 1401224.673475, 1401226.194853, 1401226.194853, 1401240.376169, 1401240.376169, 1401240.376169, 1401240.376169, 1401240.376169, 1401240.376169, 1401243.840949, 1401243.840949, 1401263.726958, 1401263.726958, 1401271.002524, 1401271.002524, 1401282.488709, 1401285.9881, 1401310.437699, 1401310.437699, 1401310.437699, 1401310.437699, 1401310.437699, 1401310.437699, 1401310.437699, 1401312.221762, 1401312.221762, 1401319.022078, 1401338.299125, 1401338.299125, 1401346.012714, 1401346.012714, 1401353.195661, 1401354.605661, 1401372.442148, 1401372.442148, 1401372.442148, 1401372.442148, 1401372.442148, 1401378.240892, 1401378.240892, 1401395.513052, 1401406.079098, 1401406.079098, 1401406.079098, 1401414.477413, 1401419.785898, 1401419.785898, 1401419.785898, 1401420.395471, 1401420.395471, 1401420.395471, 1401434.5383, 1401434.5383, 1401455.238729, 1401456.264684, 1401456.264684, 1401459.962532, 1401459.962532, 1401470.691072, 1401470.691072, 1401476.555301, 1401485.447769, 1401485.447769, 1401500.123905, 1401500.123905, 1401500.123905, 1401500.123905, 1401500.123905, 1401500.123905, 1401503.183334, 1401532.412487, 1401533.805142, 1401533.805142, 1401533.805142, 1401545.574965, 1401545.574965, 1401545.574965, 1401545.574965, 1401552.170702, 1401555.81437, 1401562.580043, 1401562.580043, 1401562.580043, 1401565.16818, 1401583.341493, 1401583.341493, 1401602.474484, 1401602.474484, 1401602.474484, 1401602.474484, 1401602.474484, 1401609.149306, 1401609.149306, 1401614.350816, 1401628.533065, 1401640.213657, 1401654.542783, 1401662.70494, 1401662.70494, 1401662.70494, 1401662.70494, 1401664.191877, 1401664.191877, 1401664.191877, 1401664.191877, 1401679.9221, 1401679.9221, 1401679.9221, 1401683.037943, 1401709.748724, 1401709.748724, 1401709.748724, 1401709.748724, 1401732.026014, 1401732.026014, 1401732.026014, 1401734.886232, 1401734.886232, 1401734.886232, 1401734.886232, 1401754.114136, 1401754.114136, 1401761.64304, 1401768.072765, 1401768.072765, 1401778.04654, 1401778.04654, 1401778.04654, 1401778.04654, 1401778.04654, 1401778.04654, 1401778.04654, 1401778.04654, 1401807.406831, 1401807.406831, 1401814.965958, 1401814.965958, 1401814.965958, 1401814.965958, 1401814.965958, 1401814.965958, 1401825.120183, 1401835.612674, 1401852.732878, 1401852.732878, 1401860.51498, 1401872.1296, 1401873.652958, 1401873.652958, 1401880.924848, 1401880.924848, 1401895.03369, 1401895.03369, 1401895.03369, 1401895.03369, 1401895.03369, 1401895.03369, 1401911.340371, 1401911.340371, 1401911.340371, 1401911.340371, 1401911.340371, 1401912.803667, 1401912.803667, 1401922.888595, 1401922.888595, 1401936.173386, 1401944.039226, 1401949.816664, 1401990.263612, 1401990.263612, 1401990.263612, 1401990.263612, 1401990.263612, 1401990.263612, 1401995.483774, 1401995.483774, 1401995.483774, 1401995.483774, 1401999.924582, 1401999.924582, 1402003.579358, 1402009.107848, 1402011.203598, 1402023.219407, 1402033.810091, 1402033.810091, 1402033.810091, 1402040.339529, 1402040.339529, 1402040.339529, 1402050.621661, 1402050.621661, 1402075.328709, 1402075.328709, 1402075.328709, 1402077.497377, 1402091.765143, 1402091.765143, 1402095.451777, 1402095.451777, 1402110.44341, 1402110.44341, 1402110.44341, 1402110.44341, 1402116.116791, 1402117.375686, 1402117.375686, 1402135.025828, 1402135.025828, 1402145.963987, 1402145.963987, 1402145.963987, 1402145.963987, 1402145.963987, 1402180.781648, 1402180.781648, 1402180.781648, 1402180.781648, 1402180.781648, 1402180.781648, 1402187.941564, 1402187.941564, 1402191.92656, 1402191.92656, 1402227.561085, 1402227.561085, 1402227.561085, 1402227.561085, 1402229.890493, 1402229.890493, 1402229.890493, 1402229.890493, 1402236.336688, 1402258.337782, 1402258.337782, 1402258.337782, 1402258.337782, 1402260.360644, 1402269.346842, 1402269.346842, 1402269.346842, 1402269.346842, 1402276.15777, 1402276.15777, 1402278.768189, 1402291.781205, 1402294.819931, 1402294.819931, 1402324.911471, 1402324.911471, 1402324.911471, 1402324.911471, 1402328.409738, 1402328.409738, 1402328.409738, 1402354.884086, 1402354.884086, 1402354.884086, 1402354.884086, 1402354.884086, 1402363.823454, 1402372.445405, 1402372.445405, 1402391.865969, 1402397.298582, 1402397.298582, 1402397.298582, 1402397.298582, 1402397.298582, 1402397.298582, 1402405.907478, 1402405.907478, 1402423.609744, 1402428.419354, 1402428.419354, 1402428.419354, 1402438.236614, 1402438.236614, 1402440.150779, 1402440.150779, 1402446.205582, 1402446.205582, 1402473.731981, 1402473.731981, 1402473.731981, 1402473.731981, 1402473.731981, 1402473.731981, 1402473.731981, 1402473.731981, 1402509.098063, 1402509.098063, 1402509.098063, 1402509.098063, 1402520.351535, 1402520.351535, 1402520.351535, 1402528.152709, 1402532.436691, 1402534.277983, 1402534.277983, 1402547.663598, 1402547.663598, 1402547.663598, 1402547.663598, 1402547.663598, 1402549.940791, 1402549.940791, 1402549.940791, 1402559.901133, 1402572.166869, 1402578.623709, 1402578.623709, 1402590.991357, 1402611.154418, 1402611.154418, 1402611.154418, 1402611.154418, 1402611.154418, 1402611.154418, 1402648.348241, 1402648.348241, 1402648.348241, 1402648.348241, 1402663.880999, 1402663.880999, 1402663.880999, 1402666.083349, 1402668.735858, 1402668.735858, 1402677.853409, 1402677.853409, 1402677.853409, 1402677.853409, 1402692.343572, 1402698.895505, 1402698.895505, 1402698.895505, 1402698.895505, 1402698.895505, 1402715.466378, 1402715.466378, 1402715.466378, 1402715.466378, 1402720.705726, 1402720.705726, 1402722.746541, 1402726.785726, 1402732.942042, 1402760.281918, 1402760.281918, 1402760.281918, 1402760.281918, 1402760.871413, 1402783.306502, 1402783.306502, 1402783.306502, 1402783.306502, 1402783.306502, 1402788.347389, 1402805.185709, 1402805.185709, 1402816.956008, 1402816.956008, 1402816.956008, 1402816.956008, 1402816.956008, 1402816.956008, 1402816.956008, 1402819.095123, 1402844.183224, 1402844.183224, 1402844.183224, 1402844.183224, 1402865.536927, 1402865.536927, 1402865.536927, 1402865.536927, 1402865.536927, 1402865.536927, 1402872.098046, 1402872.098046, 1402872.098046, 1402872.098046, 1402894.515228, 1402894.515228, 1402910.08233, 1402926.800804, 1402927.926813, 1402927.926813, 1402927.926813, 1402927.926813, 1402929.951969, 1402947.532025, 1402953.792589, 1402953.792589, 1402953.792589, 1402953.792589, 1402953.792589, 1402953.792589, 1402953.792589, 1402972.246164, 1402972.246164, 1402980.122973, 1402980.122973, 1402980.122973, 1402991.023873, 1402999.510187, 1402999.510187, 1402999.510187, 1403013.319361, 1403013.319361, 1403014.981818, 1403014.981818, 1403049.055001, 1403049.055001, 1403049.055001, 1403049.055001, 1403049.055001, 1403049.055001, 1403050.112519, 1403050.112519, 1403050.112519, 1403050.112519, 1403060.07923, 1403060.07923, 1403062.882923, 1403062.882923, 1403088.87419, 1403088.87419, 1403099.431025, 1403099.431025, 1403099.431025, 1403109.640117, 1403118.026945, 1403118.026945, 1403118.026945, 1403138.923899, 1403138.923899, 1403142.235327, 1403142.235327, 1403142.235327, 1403150.809446, 1403150.809446, 1403150.809446, 1403150.809446, 1403178.106094, 1403178.106094, 1403199.876301, 1403199.876301, 1403199.876301, 1403199.876301, 1403199.876301, 1403199.876301, 1403199.876301, 1403199.876301, 1403207.668619, 1403207.668619, 1403217.08965, 1403217.08965, 1403220.672994, 1403220.672994, 1403228.49637, 1403237.721346, 1403237.721346, 1403238.352161, 1403238.352161, 1403238.352161, 1403238.352161, 1403238.352161, 1403269.789535, 1403269.789535, 1403274.797337, 1403274.797337, 1403297.148344, 1403297.148344, 1403297.148344, 1403297.148344, 1403310.378045, 1403311.517169, 1403323.245329, 1403323.245329, 1403323.245329, 1403323.245329, 1403323.245329, 1403325.121593, 1403347.085018, 1403347.085018, 1403347.085018, 1403347.085018, 1403347.085018, 1403349.549665, 1403357.819521, 1403362.427955, 1403362.427955, 1403362.427955, 1403367.799162, 1403373.614577, 1403373.614577, 1403387.550719, 1403404.57493, 1403405.80466, 1403405.80466, 1403405.80466, 1403405.80466, 1403420.159614, 1403420.159614, 1403420.159614, 1403420.159614, 1403454.968806, 1403454.968806, 1403454.968806, 1403454.968806, 1403454.968806, 1403454.968806, 1403454.968806, 1403454.968806, 1403479.552436, 1403479.552436, 1403479.552436, 1403497.657261, 1403497.657261, 1403497.657261, 1403497.657261, 1403497.657261, 1403497.657261, 1403499.515543, 1403499.515543, 1403499.515543, 1403521.39589, 1403521.39589, 1403521.39589, 1403527.932264, 1403530.860448, 1403541.307882, 1403541.307882, 1403541.307882, 1403554.174241, 1403554.174241, 1403559.153251, 1403559.153251, 1403562.659484, 1403562.659484, 1403563.013426, 1403572.745614, 1403588.421664, 1403588.421664, 1403588.421664, 1403588.421664, 1403588.421664, 1403588.421664, 1403590.351699, 1403590.351699, 1403594.704491, 1403612.840632, 1403612.840632, 1403613.369814, 1403618.577751, 1403626.724873, 1403626.724873, 1403632.239219, 1403644.518008, 1403652.843539, 1403652.843539, 1403665.38492, 1403691.830546, 1403691.830546, 1403691.830546, 1403691.830546, 1403691.830546, 1403691.830546, 1403691.830546, 1403703.523438, 1403703.523438, 1403703.523438, 1403703.523438, 1403720.152523, 1403724.126983, 1403724.126983, 1403724.126983, 1403727.802937, 1403757.323565, 1403757.323565, 1403757.323565, 1403763.686987, 1403763.686987, 1403763.686987, 1403763.686987, 1403763.686987, 1403766.589682, 1403766.589682, 1403782.214866, 1403782.214866, 1403782.214866, 1403782.214866, 1403797.60563, 1403799.571102, 1403799.571102, 1403799.571102, 1403819.157953, 1403826.656694, 1403826.656694, 1403826.656694, 1403828.620094, 1403828.620094, 1403831.529558, 1403848.479618, 1403848.479618, 1403848.479618, 1403848.479618, 1403869.215121, 1403869.215121, 1403869.215121, 1403869.215121, 1403869.215121, 1403872.724467, 1403904.483759, 1403904.483759, 1403904.483759, 1403904.483759, 1403904.483759, 1403904.483759, 1403904.483759, 1403904.483759, 1403913.154316, 1403913.154316, 1403924.628024, 1403924.628024, 1403924.628024, 1403924.966683, 1403942.673587, 1403942.673587, 1403957.368245, 1403957.368245, 1403957.368245, 1403957.368245, 1403957.368245, 1403957.368245, 1403966.406736, 1403981.509553, 1403981.509553, 1403986.861371, 1403986.861371, 1403986.861371, 1403987.600346, 1404000.644246, 1404000.644246, 1404000.644246, 1404000.644246, 1404005.429826, 1404033.954193, 1404033.954193, 1404033.954193, 1404037.036484, 1404037.39403, 1404037.39403, 1404037.39403, 1404037.39403, 1404050.613962, 1404050.613962, 1404065.961734, 1404065.961734, 1404079.467021, 1404079.467021, 1404079.467021, 1404079.467021, 1404079.467021, 1404093.161732, 1404099.098378, 1404099.098378, 1404099.098378, 1404109.714949, 1404117.680219, 1404118.201933, 1404118.201933, 1404123.557275, 1404123.557275, 1404123.8661, 1404148.006138, 1404148.006138, 1404148.006138, 1404148.006138, 1404148.621982, 1404157.709084, 1404157.709084, 1404157.709084, 1404157.709084, 1404157.709084, 1404187.609989, 1404187.609989, 1404187.609989, 1404187.609989, 1404187.609989, 1404191.421097, 1404192.096654, 1404203.206107, 1404206.098659, 1404206.098659, 1404217.636478, 1404217.636478, 1404226.952204, 1404226.952204, 1404226.952204, 1404233.429368, 1404260.358835, 1404260.358835, 1404260.358835, 1404260.358835, 1404260.358835, 1404260.358835, 1404260.358835, 1404271.497722, 1404271.497722, 1404278.63752, 1404278.63752, 1404278.63752, 1404295.957736, 1404299.426272, 1404304.571209, 1404304.571209, 1404312.339066, 1404312.339066, 1404312.339066, 1404326.60282, 1404326.60282, 1404340.618784, 1404364.887593, 1404364.887593, 1404364.887593, 1404364.887593, 1404364.887593, 1404364.887593, 1404369.155845, 1404369.155845, 1404369.155845, 1404377.398139, 1404383.690274, 1404383.690274, 1404383.690274, 1404383.690274, 1404410.149712, 1404410.149712, 1404410.149712, 1404410.149712, 1404414.406309, 1404430.459853, 1404430.459853, 1404445.568372, 1404445.568372, 1404445.568372, 1404445.568372, 1404445.568372, 1404445.568372, 1404445.568372, 1404449.005836, 1404449.005836, 1404449.005836, 1404452.111277, 1404452.111277, 1404487.482168, 1404487.482168, 1404487.482168, 1404487.482168, 1404487.869648, 1404500.860969, 1404500.860969, 1404500.860969, 1404500.860969, 1404504.522692, 1404515.667405, 1404518.488654, 1404518.488654, 1404522.386468, 1404526.403245, 1404526.403245, 1404526.403245, 1404538.830033, 1404550.17346, 1404550.17346, 1404550.17346, 1404551.053227, 1404559.421502, 1404561.120447, 1404570.204351, 1404575.749308, 1404575.749308, 1404575.749308, 1404575.749308, 1404586.748822, 1404599.494766, 1404605.741703, 1404605.741703, 1404613.512085, 1404613.512085, 1404615.126946, 1404615.126946, 1404615.126946, 1404628.839514, 1404642.982426, 1404650.377861, 1404687.592446, 1404687.592446, 1404687.592446, 1404687.592446, 1404687.592446, 1404687.592446, 1404687.592446, 1404687.592446, 1404692.604953, 1404692.604953, 1404702.672383, 1404702.672383, 1404702.672383, 1404702.672383, 1404702.672383, 1404702.672383, 1404702.672383, 1404702.672383, 1404732.989453, 1404732.989453, 1404732.989453, 1404732.989453, 1404732.989453, 1404732.989453, 1404741.206106, 1404760.438505, 1404760.438505, 1404760.438505, 1404762.06421, 1404762.06421, 1404769.422694, 1404769.422694, 1404778.303702, 1404778.303702, 1404792.867795, 1404792.867795, 1404796.74912, 1404796.74912, 1404796.74912, 1404796.74912, 1404822.903054, 1404829.283187, 1404829.283187, 1404829.283187, 1404829.283187, 1404829.283187, 1404829.283187, 1404829.283187, 1404829.283187, 1404829.283187, 1404839.862737, 1404867.179579, 1404867.179579, 1404867.179579, 1404867.179579, 1404898.747972, 1404898.747972, 1404902.149532, 1404902.149532, 1404902.149532, 1404902.149532, 1404902.149532, 1404902.149532, 1404902.149532, 1404907.621991, 1404907.621991, 1404915.40051, 1404915.40051, 1404928.126469, 1404931.457098, 1404931.457098, 1404931.457098, 1404941.417802, 1404953.152934, 1404957.04366, 1404957.04366, 1404957.04366, 1404957.04366, 1404973.353578, 1404977.682941, 1404977.682941, 1404987.452314, 1404987.452314, 1404989.394044, 1404989.394044, 1404997.144596, 1404997.144596, 1405018.772277, 1405018.772277, 1405018.772277, 1405018.772277, 1405018.772277, 1405018.772277, 1405018.772277, 1405018.772277, 1405024.137631, 1405037.707752, 1405061.532062, 1405061.532062, 1405061.532062, 1405061.532062, 1405061.532062, 1405061.532062, 1405063.411907, 1405063.787632, 1405063.787632, 1405089.291038, 1405089.291038, 1405102.045277, 1405102.045277, 1405102.579268, 1405107.899347, 1405124.515343, 1405124.515343, 1405124.515343, 1405124.515343, 1405137.673386, 1405137.673386, 1405137.673386, 1405137.673386, 1405137.673386, 1405144.882457, 1405153.758505, 1405153.758505, 1405153.758505, 1405177.516261, 1405177.516261, 1405177.516261, 1405177.516261, 1405177.516261, 1405180.062963, 1405180.062963, 1405184.077374, 1405184.077374, 1405184.730841, 1405200.267148, 1405200.267148, 1405223.758722, 1405223.758722, 1405223.758722, 1405223.758722, 1405223.758722, 1405223.758722, 1405223.758722, 1405243.005252, 1405243.005252, 1405252.630318, 1405252.630318, 1405252.630318, 1405255.498494, 1405273.103854, 1405291.040916, 1405291.040916, 1405291.040916, 1405291.040916, 1405291.040916, 1405291.040916, 1405291.040916, 1405291.362034, 1405291.362034, 1405303.18634, 1405303.18634, 1405303.18634, 1405303.18634, 1405316.163815, 1405329.625595, 1405338.449611, 1405338.449611, 1405338.449611, 1405338.449611, 1405338.449611, 1405338.449611, 1405361.68028, 1405361.68028, 1405361.68028, 1405361.68028, 1405382.633157, 1405382.633157, 1405382.633157, 1405382.633157, 1405382.633157, 1405392.205825, 1405392.205825, 1405392.205825, 1405416.064905, 1405416.064905, 1405416.064905, 1405416.064905, 1405436.503445, 1405436.503445, 1405436.503445, 1405436.503445, 1405440.959514, 1405440.959514, 1405458.398556, 1405458.398556, 1405458.398556, 1405458.398556, 1405458.398556, 1405458.398556, 1405458.398556, 1405458.398556, 1405469.349272, 1405469.349272, 1405497.243784, 1405497.243784, 1405497.243784, 1405497.243784, 1405497.243784, 1405497.243784, 1405518.516516, 1405526.123676, 1405527.560858, 1405527.560858, 1405527.560858, 1405527.560858, 1405527.560858, 1405527.560858, 1405527.560858, 1405532.385582, 1405539.391152, 1405539.391152, 1405545.139648, 1405545.139648, 1405545.139648, 1405545.139648, 1405557.532521, 1405561.293929, 1405576.905332, 1405576.905332, 1405576.905332, 1405595.63536, 1405595.63536, 1405595.63536, 1405598.394129, 1405598.394129, 1405600.601763, 1405602.762338, 1405612.624652, 1405627.831627, 1405627.831627, 1405629.971807, 1405629.971807, 1405629.971807, 1405629.971807, 1405637.662407, 1405637.662407, 1405658.349116, 1405658.349116, 1405670.106737, 1405670.106737, 1405677.954018, 1405692.793922, 1405692.793922, 1405692.793922, 1405713.10529, 1405713.10529, 1405713.10529, 1405713.10529, 1405713.10529, 1405718.896362, 1405718.896362, 1405718.896362, 1405725.805518, 1405746.30074, 1405746.30074, 1405746.30074, 1405746.30074, 1405746.30074, 1405746.30074, 1405746.30074, 1405748.429057, 1405756.998909, 1405756.998909, 1405762.140093, 1405762.140093, 1405765.947497, 1405767.360227, 1405791.767575, 1405791.767575, 1405808.011906, 1405808.011906, 1405810.174472, 1405810.174472, 1405810.174472, 1405810.174472, 1405811.219383, 1405811.219383, 1405825.53069, 1405825.53069, 1405825.53069, 1405826.480229, 1405831.794175, 1405831.794175, 1405833.504622, 1405833.504622, 1405849.046256, 1405849.046256, 1405851.609523, 1405851.609523, 1405888.005063, 1405888.005063, 1405888.005063, 1405888.005063, 1405906.760601, 1405906.760601, 1405906.760601, 1405906.760601, 1405906.760601, 1405924.614318, 1405924.614318, 1405924.900195, 1405924.900195, 1405924.900195, 1405924.900195, 1405926.895678, 1405926.895678, 1405951.368012, 1405951.368012, 1405951.901189, 1405951.901189, 1405964.782638, 1405968.965753, 1405968.965753, 1405968.965753, 1405968.965753, 1405969.988724, 1405982.235203, 1405982.235203, 1405982.235203, 1405999.342932, 1405999.342932, 1405999.342932, 1405999.342932, 1406001.79212, 1406013.650667, 1406013.650667, 1406013.650667, 1406022.261939, 1406030.768546, 1406040.885681, 1406040.885681, 1406040.885681, 1406043.279408, 1406047.801797, 1406047.801797, 1406047.801797, 1406070.205996, 1406078.602965, 1406078.602965, 1406078.602965, 1406078.602965, 1406078.602965, 1406085.435333, 1406092.871711, 1406092.871711, 1406096.550954, 1406096.550954, 1406110.969401, 1406110.969401, 1406110.969401, 1406126.160234, 1406129.833275, 1406129.833275, 1406134.096424, 1406134.096424, 1406134.096424, 1406140.952946, 1406143.657686, 1406153.201501, 1406153.201501, 1406153.201501, 1406153.201501, 1406153.201501, 1406159.833729, 1406163.751237, 1406175.809096, 1406175.809096, 1406182.282593, 1406189.306156, 1406189.306156, 1406189.306156, 1406204.483312, 1406204.483312, 1406219.929731, 1406219.929731, 1406219.929731, 1406219.929731, 1406219.929731, 1406219.929731, 1406232.320155, 1406232.320155, 1406253.731916, 1406253.731916, 1406253.731916, 1406253.731916, 1406253.731916, 1406253.731916, 1406253.731916, 1406255.771583, 1406255.771583, 1406258.494713, 1406272.471297, 1406283.242969, 1406283.242969, 1406284.293743, 1406284.293743, 1406285.185054, 1406299.370688, 1406301.005832, 1406301.053086, 1406305.184227, 1406305.184227, 1406305.184227, 1406318.490555, 1406318.490555, 1406321.197206, 1406328.085711, 1406348.046526, 1406348.046526, 1406348.046526, 1406348.046526, 1406348.046526, 1406375.132292, 1406375.132292, 1406375.132292, 1406375.132292, 1406376.97036, 1406381.33546, 1406381.33546, 1406401.889691, 1406401.889691, 1406401.889691, 1406401.889691, 1406418.396769, 1406418.396769, 1406418.396769, 1406418.396769, 1406418.396769, 1406418.396769, 1406418.396769, 1406418.396769, 1406447.265547, 1406447.265547, 1406447.265547, 1406461.845786, 1406461.845786, 1406461.845786, 1406468.910297, 1406468.910297, 1406470.239199, 1406470.239199, 1406483.645795, 1406483.645795, 1406483.645795, 1406493.2183, 1406504.965661, 1406504.965661, 1406504.965661, 1406504.965661, 1406504.965661, 1406504.965661, 1406514.815516, 1406525.832826, 1406525.832826, 1406525.832826, 1406525.832826, 1406530.354967, 1406546.236571, 1406546.236571, 1406546.236571, 1406546.236571, 1406568.052085, 1406570.096015, 1406580.462834, 1406580.462834, 1406580.462834, 1406583.848876, 1406583.848876, 1406590.078847, 1406590.078847, 1406590.078847, 1406606.436159, 1406606.436159, 1406608.849454, 1406608.849454, 1406629.191468, 1406629.191468, 1406636.377237, 1406636.377237, 1406636.377237, 1406636.377237, 1406636.377237, 1406645.453039, 1406645.453039, 1406645.453039, 1406645.453039, 1406670.465518, 1406689.162313, 1406689.162313, 1406689.162313, 1406689.162313, 1406689.162313, 1406689.162313, 1406689.162313, 1406694.224587, 1406694.224587, 1406694.224587, 1406709.076401, 1406709.076401, 1406709.076401, 1406709.076401, 1406725.978387, 1406725.978387, 1406739.811197, 1406739.811197, 1406739.811197, 1406739.811197, 1406762.189735, 1406762.189735, 1406762.189735, 1406773.989271, 1406786.852897, 1406786.852897, 1406786.852897, 1406786.852897, 1406788.858631, 1406788.858631, 1406788.858631, 1406788.858631, 1406795.511543, 1406795.511543, 1406795.511543, 1406804.374125, 1406804.374125, 1406804.374125, 1406804.374125, 1406804.374125, 1406809.325235, 1406809.325235, 1406821.538235, 1406843.857448, 1406843.857448, 1406851.956974, 1406851.956974, 1406886.505923, 1406886.505923, 1406886.505923, 1406886.505923, 1406886.505923, 1406886.505923, 1406886.505923, 1406886.505923, 1406886.505923, 1406895.538245, 1406895.538245, 1406895.538245, 1406895.538245, 1406895.538245, 1406895.538245, 1406897.38455, 1406898.400605, 1406919.275527, 1406919.275527, 1406923.624954, 1406923.624954, 1406923.624954, 1406947.060875, 1406947.060875, 1406951.435139, 1406951.435139, 1406951.435139, 1406951.435139, 1406951.435139, 1406965.117748, 1406969.154194, 1406969.154194, 1406983.207661, 1406983.774216, 1406983.774216, 1406983.774216, 1406983.774216, 1406983.774216, 1406983.774216, 1406990.605658, 1406990.605658, 1406998.981622, 1406998.981622, 1407010.395417, 1407010.395417, 1407032.50099, 1407032.50099, 1407041.550913, 1407041.550913, 1407041.550913, 1407041.550913, 1407041.550913, 1407041.550913, 1407055.537107, 1407076.903412, 1407076.903412, 1407076.903412, 1407076.903412, 1407076.903412, 1407076.903412, 1407076.903412, 1407092.369522, 1407092.369522, 1407092.369522, 1407092.369522, 1407099.660525, 1407099.660525, 1407099.660525, 1407101.547066, 1407102.013957, 1407114.255855, 1407140.31064, 1407140.31064, 1407141.766767, 1407141.766767, 1407141.766767, 1407152.46527, 1407152.46527, 1407152.46527, 1407152.46527, 1407152.46527, 1407152.46527, 1407160.095244, 1407161.963814, 1407168.223647, 1407168.223647, 1407171.948634, 1407171.948634, 1407181.101661, 1407203.129463, 1407203.129463, 1407203.129463, 1407203.129463, 1407207.228642, 1407210.142538, 1407210.142538, 1407210.142538, 1407220.540585, 1407249.220558, 1407249.220558, 1407249.220558, 1407249.220558, 1407249.220558, 1407249.220558, 1407249.220558, 1407249.220558, 1407250.379823, 1407260.609681, 1407260.609681, 1407277.244168, 1407277.244168, 1407277.244168, 1407277.244168, 1407294.195245, 1407309.112374, 1407309.112374, 1407309.112374, 1407309.112374, 1407309.112374, 1407309.112374, 1407309.112374, 1407309.112374, 1407309.112374, 1407331.273779, 1407331.273779, 1407338.930313, 1407340.074116, 1407340.074116, 1407340.074116, 1407340.074116, 1407343.844973, 1407343.844973, 1407343.844973, 1407344.457944, 1407365.419489, 1407365.419489, 1407373.191405, 1407373.191405, 1407391.434697, 1407409.435487, 1407409.435487, 1407409.435487, 1407409.435487, 1407409.435487, 1407409.435487, 1407409.435487, 1407409.435487, 1407411.085082, 1407411.085082, 1407426.34713, 1407426.34713, 1407451.915639, 1407451.915639, 1407451.915639, 1407451.915639, 1407451.915639, 1407451.915639, 1407451.915639, 1407451.915639, 1407464.49665, 1407469.607111, 1407469.607111, 1407487.253015, 1407487.253015, 1407487.253015, 1407493.50228, 1407493.50228, 1407493.50228, 1407493.50228, 1407500.705275, 1407500.705275, 1407500.705275, 1407502.033972, 1407502.033972, 1407502.033972, 1407512.585186, 1407512.585186, 1407518.614748, 1407518.614748, 1407531.747147, 1407531.747147, 1407537.26391, 1407540.887631, 1407553.26577, 1407577.56384, 1407577.56384, 1407577.56384, 1407577.855581, 1407577.855581, 1407577.855581, 1407598.904276, 1407602.370515, 1407602.370515, 1407602.370515, 1407604.688204, 1407604.688204, 1407604.688204, 1407614.295832, 1407616.11922, 1407621.37403, 1407621.717991, 1407638.431648, 1407638.431648, 1407638.431648, 1407638.431648, 1407647.001427, 1407647.001427, 1407647.001427, 1407647.001427, 1407662.622891, 1407662.622891, 1407662.622891, 1407662.622891, 1407664.27213, 1407672.235825, 1407684.437548, 1407684.437548, 1407694.91356, 1407694.91356, 1407694.91356, 1407695.39823, 1407695.39823, 1407695.39823, 1407702.127342, 1407702.127342, 1407702.127342, 1407707.837146, 1407716.614195, 1407737.132308, 1407737.132308, 1407737.132308, 1407743.414304, 1407743.414304, 1407755.255372, 1407755.920381, 1407758.798734, 1407758.798734, 1407759.994656, 1407759.994656, 1407771.810726, 1407771.810726, 1407771.810726, 1407771.810726, 1407771.810726, 1407771.810726, 1407802.483463, 1407802.483463, 1407802.483463, 1407807.844295, 1407807.844295, 1407807.844295, 1407807.844295, 1407807.844295, 1407821.477351, 1407839.98518, 1407839.98518, 1407839.98518, 1407840.657493, 1407840.657493, 1407840.657493, 1407840.657493, 1407866.833024, 1407866.833024, 1407866.833024, 1407866.833024, 1407866.833024, 1407869.229111, 1407872.502456, 1407872.502456, 1407872.502456, 1407872.502456, 1407879.634449, 1407879.634449, 1407897.951331, 1407897.951331, 1407897.951331, 1407897.951331, 1407897.951331, 1407914.46196, 1407914.46196, 1407914.46196, 1407940.320692, 1407945.261298, 1407945.261298, 1407945.261298, 1407945.261298, 1407945.261298, 1407945.261298, 1407945.261298, 1407962.570908, 1407962.570908, 1407972.040839, 1407972.040839, 1407972.040839, 1407972.040839, 1407995.545733, 1407995.545733, 1407999.265177, 1407999.265177, 1408003.669389, 1408003.669389, 1408003.669389, 1408003.669389, 1408013.196277, 1408013.196277, 1408030.702352, 1408030.702352, 1408030.702352, 1408046.240863, 1408046.240863, 1408046.32593, 1408046.32593, 1408046.32593, 1408074.341947, 1408074.341947, 1408074.341947, 1408074.341947, 1408074.341947, 1408074.341947, 1408074.341947, 1408074.341947, 1408080.28825, 1408080.28825, 1408080.28825, 1408080.28825, 1408083.325609, 1408085.083232, 1408087.729139, 1408092.643691, 1408101.691703, 1408117.448275, 1408117.448275, 1408120.908617, 1408128.54621, 1408134.749303, 1408134.749303, 1408150.244276, 1408150.244276, 1408150.244276, 1408150.244276, 1408150.244276, 1408150.244276, 1408181.859976, 1408181.859976, 1408181.859976, 1408181.859976, 1408181.859976, 1408181.859976, 1408181.859976, 1408181.859976, 1408181.859976, 1408182.689051, 1408208.521398, 1408208.521398, 1408213.716073, 1408213.716073, 1408213.716073, 1408213.716073, 1408213.716073, 1408218.699271, 1408234.377264, 1408240.853354, 1408240.853354, 1408240.853354, 1408250.13939, 1408255.170976, 1408255.170976, 1408255.170976, 1408255.384719, 1408255.384719, 1408255.384719, 1408275.994544, 1408290.761304, 1408290.761304, 1408290.761304, 1408290.761304, 1408290.761304, 1408290.761304, 1408290.761304, 1408294.105563, 1408294.105563, 1408294.105563, 1408300.862622, 1408300.862622, 1408326.204128, 1408333.855392, 1408333.855392, 1408333.855392, 1408343.074132, 1408343.074132, 1408344.048387, 1408344.048387, 1408344.048387, 1408359.069928, 1408359.069928, 1408367.483717, 1408367.483717, 1408377.232073, 1408377.232073, 1408377.232073, 1408377.232073, 1408388.260401, 1408388.260401, 1408391.945967, 1408391.945967, 1408391.945967, 1408391.945967, 1408416.979796, 1408416.979796, 1408416.979796, 1408416.979796, 1408416.979796, 1408416.979796, 1408416.979796, 1408446.434502, 1408446.434502, 1408446.434502, 1408446.434502, 1408461.221041, 1408461.221041, 1408461.221041, 1408465.115334, 1408477.0594, 1408477.0594, 1408477.0594, 1408477.0594, 1408477.0594, 1408477.478505, 1408477.478505, 1408477.478505, 1408477.478505, 1408496.373524, 1408497.093666, 1408509.788286, 1408516.440039, 1408516.440039, 1408518.909666, 1408524.385627, 1408529.889376, 1408540.34573, 1408540.34573, 1408540.34573, 1408540.34573, 1408555.268134, 1408559.564823, 1408559.564823, 1408559.564823, 1408559.564823, 1408559.564823, 1408571.145875, 1408571.145875, 1408571.145875, 1408571.145875, 1408579.994448, 1408585.729576, 1408585.729576, 1408588.288902, 1408588.288902, 1408588.288902, 1408588.288902, 1408604.899043, 1408612.753574, 1408627.093572, 1408627.093572, 1408628.303814, 1408628.303814, 1408631.623724, 1408634.370276, 1408634.370276, 1408634.370276, 1408634.370276, 1408638.359575, 1408660.452923, 1408661.460075, 1408661.460075, 1408666.107249, 1408673.670857, 1408677.723922, 1408677.723922, 1408679.0321, 1408685.148112, 1408700.635745, 1408700.635745, 1408700.635745, 1408700.635745, 1408700.635745, 1408700.635745, 1408700.635745, 1408731.044083, 1408731.044083, 1408731.044083, 1408731.044083, 1408731.044083, 1408731.044083, 1408731.044083, 1408743.480479, 1408746.389375, 1408746.389375, 1408749.505467, 1408749.505467, 1408754.673714, 1408754.673714, 1408761.991055, 1408761.991055, 1408772.661286, 1408802.134893, 1408802.134893, 1408802.134893, 1408802.134893, 1408802.134893, 1408802.134893, 1408802.134893, 1408809.705083, 1408809.705083, 1408826.496081, 1408826.496081, 1408826.496081, 1408826.496081, 1408833.204205, 1408833.204205, 1408839.278551, 1408839.278551, 1408839.278551, 1408839.278551, 1408843.267406, 1408848.718546, 1408848.718546, 1408848.718546, 1408874.168801, 1408874.168801, 1408886.844335, 1408886.844335, 1408890.915065, 1408890.915065, 1408890.915065, 1408890.915065, 1408904.925998, 1408904.925998, 1408904.925998, 1408917.155645, 1408917.155645, 1408923.563665, 1408923.994348, 1408923.994348, 1408923.994348, 1408923.994348, 1408923.994348, 1408923.994348, 1408923.994348, 1408942.399673, 1408942.399673, 1408983.085706, 1408983.085706, 1408983.085706, 1408983.085706, 1408983.085706, 1408983.085706, 1408984.121963, 1408984.121963, 1408987.027704, 1408987.027704, 1409003.614469, 1409003.614469, 1409003.614469, 1409003.614469, 1409003.614469, 1409003.614469, 1409017.972303, 1409018.071364, 1409018.071364, 1409018.071364, 1409019.067681, 1409019.067681, 1409033.873821, 1409033.873821, 1409033.873821, 1409033.873821, 1409051.455871, 1409051.455871, 1409068.343533, 1409068.343533, 1409082.759261, 1409082.759261, 1409082.759261, 1409082.759261, 1409082.759261, 1409082.759261, 1409107.623657, 1409110.658468, 1409122.28353, 1409122.28353, 1409122.28353, 1409122.28353, 1409122.28353, 1409122.28353, 1409122.28353, 1409122.28353, 1409122.28353, 1409123.246461, 1409134.658335, 1409134.658335, 1409144.676172, 1409144.676172, 1409144.676172, 1409144.676172, 1409165.517329, 1409165.517329, 1409165.517329, 1409165.517329, 1409165.517329, 1409165.517329, 1409182.908263, 1409197.324368, 1409197.324368, 1409197.324368, 1409197.324368, 1409197.324368, 1409197.324368, 1409198.545769, 1409200.917509, 1409200.917509, 1409200.917509, 1409242.517002, 1409242.517002, 1409242.517002, 1409242.517002, 1409242.517002, 1409242.517002, 1409250.493133, 1409250.493133, 1409250.493133, 1409252.369475, 1409252.369475, 1409258.588003, 1409258.588003, 1409258.588003, 1409264.248316, 1409278.502393, 1409278.502393, 1409278.502393, 1409278.502393, 1409285.681349, 1409285.681349, 1409285.681349, 1409285.681349, 1409293.876818, 1409328.029646, 1409328.029646, 1409328.029646, 1409328.029646, 1409328.029646, 1409328.029646, 1409328.029646, 1409328.029646, 1409328.857606, 1409328.857606, 1409352.2913, 1409352.814285, 1409352.814285, 1409352.814285, 1409352.814285, 1409381.545443, 1409381.545443, 1409381.545443, 1409381.545443, 1409381.545443, 1409381.545443, 1409381.545443, 1409381.545443, 1409381.545443, 1409397.0952, 1409415.654081, 1409415.654081, 1409415.654081, 1409415.654081, 1409423.891151, 1409423.891151, 1409423.891151, 1409423.891151, 1409423.891151, 1409436.997033, 1409436.997033, 1409436.997033, 1409436.997033, 1409442.554546, 1409442.554546, 1409462.692681, 1409462.692681, 1409470.353855, 1409490.545946, 1409495.279551, 1409495.279551, 1409495.279551, 1409495.279551, 1409495.279551, 1409495.279551, 1409495.279551, 1409497.356302, 1409502.480247, 1409519.721794, 1409519.721794, 1409519.721794, 1409519.721794, 1409519.721794, 1409523.617977, 1409525.843336, 1409525.843336, 1409525.843336, 1409530.788836, 1409546.641483, 1409559.587165, 1409567.242964, 1409567.242964, 1409567.242964, 1409582.691566, 1409582.691566, 1409582.691566, 1409582.691566, 1409582.691566, 1409588.022947, 1409595.177971, 1409595.177971, 1409595.6585, 1409606.57952, 1409606.57952, 1409606.57952, 1409606.57952, 1409609.900889, 1409609.900889, 1409636.886237, 1409636.886237, 1409636.912999, 1409636.912999, 1409638.066819, 1409638.066819, 1409639.953239, 1409639.953239, 1409639.953239, 1409639.953239, 1409639.953239, 1409641.963339, 1409668.328717, 1409676.615767, 1409676.615767, 1409678.754641, 1409688.888665, 1409688.888665, 1409688.888665, 1409688.888665, 1409690.46641, 1409690.46641, 1409690.46641, 1409692.144125, 1409692.144125, 1409694.21602, 1409701.625177, 1409707.696785, 1409707.696785, 1409727.010375, 1409727.010375, 1409727.010375, 1409750.128822, 1409750.128822, 1409750.128822, 1409750.128822, 1409750.128822, 1409777.55936, 1409777.55936, 1409783.083645, 1409783.083645, 1409789.256918, 1409789.256918, 1409789.256918, 1409789.256918, 1409789.256918, 1409789.256918, 1409789.987704, 1409789.987704, 1409797.202692, 1409797.202692, 1409797.202692, 1409797.202692, 1409825.472628, 1409825.472628, 1409825.472628, 1409825.472628, 1409825.472628, 1409826.084948, 1409826.084948, 1409829.662205, 1409847.18707, 1409851.630514, 1409851.630514, 1409851.630514, 1409853.259689, 1409853.259689, 1409853.259689, 1409853.259689, 1409853.259689, 1409885.248159, 1409885.248159, 1409885.248159, 1409885.248159, 1409896.156294, 1409896.156294, 1409896.156294, 1409901.049262, 1409901.049262, 1409905.241477, 1409908.604407, 1409913.202298, 1409913.202298, 1409916.658998, 1409943.88021, 1409943.88021, 1409943.88021, 1409943.88021, 1409943.88021, 1409943.88021, 1409943.88021, 1409943.88021, 1409943.88021, 1409952.930616, 1409952.930616, 1409952.930616, 1409966.05651, 1409980.963012, 1409981.170599, 1409985.17119, 1410002.748312, 1410014.780482, 1410014.780482, 1410014.780482, 1410014.780482, 1410014.780482, 1410014.780482, 1410014.780482, 1410014.780482, 1410014.780482, 1410014.780482, 1410027.570578, 1410034.606074, 1410034.606074, 1410034.606074, 1410034.606074, 1410034.606074, 1410034.701512, 1410034.701512, 1410034.701512, 1410047.729985, 1410064.033878, 1410064.033878, 1410064.033878, 1410064.033878, 1410072.461134, 1410077.474846, 1410077.474846, 1410091.739248, 1410106.21582, 1410106.21582, 1410106.21582, 1410106.21582, 1410106.21582, 1410106.21582, 1410106.21582, 1410106.21582, 1410115.789297, 1410115.789297, 1410120.334377, 1410125.889139, 1410125.889139, 1410125.889139, 1410130.689854, 1410130.689854, 1410149.455159, 1410149.455159, 1410152.814633, 1410152.814633, 1410156.318784, 1410156.318784, 1410177.907198, 1410177.907198, 1410177.907198, 1410177.907198, 1410177.907198, 1410177.907198, 1410203.205344, 1410203.205344, 1410203.205344, 1410203.205344, 1410206.234686, 1410206.234686, 1410206.234686, 1410206.234686, 1410206.234686, 1410209.757146, 1410233.553313, 1410233.553313, 1410233.553313, 1410233.553313, 1410247.277649, 1410247.277649, 1410255.884131, 1410255.884131, 1410255.884131, 1410255.884131, 1410255.884131, 1410258.62347, 1410270.721885, 1410270.721885, 1410288.492699, 1410291.752673, 1410291.752673, 1410291.752673, 1410291.752673, 1410299.458741, 1410299.458741, 1410299.458741, 1410299.458741, 1410299.458741, 1410319.518163, 1410319.518163, 1410323.906188, 1410323.906188, 1410326.901223, 1410326.901223, 1410326.901223, 1410326.901223, 1410332.119877, 1410332.119877, 1410336.657611, 1410352.675358, 1410352.675358, 1410352.675358, 1410355.791674, 1410355.791674, 1410377.444381, 1410377.444381, 1410377.444381, 1410377.444381, 1410377.444381, 1410377.444381, 1410377.444381, 1410377.444381, 1410402.042065, 1410402.042065, 1410402.042065, 1410402.042065, 1410415.899171, 1410415.899171, 1410415.899171, 1410415.899171, 1410415.899171, 1410437.534939, 1410437.578989, 1410437.578989, 1410437.578989, 1410442.013079, 1410442.013079, 1410442.013079, 1410442.013079, 1410451.601403, 1410470.775297, 1410470.775297, 1410470.775297, 1410473.160632, 1410473.160632, 1410478.716468, 1410478.716468, 1410479.022655, 1410479.022655, 1410495.420881, 1410496.54821, 1410502.352916, 1410502.352916, 1410502.352916, 1410502.352916, 1410502.352916, 1410504.588766, 1410528.787532, 1410528.787532, 1410528.787532, 1410528.787532, 1410528.787532, 1410538.395523, 1410538.395523, 1410547.795841, 1410551.448282, 1410551.448282, 1410557.333828, 1410563.176575, 1410563.176575, 1410563.176575, 1410563.176575, 1410563.176575, 1410563.858049, 1410568.426926, 1410584.63078, 1410584.63078, 1410595.817635, 1410595.817635, 1410595.817635, 1410595.817635, 1410603.756523, 1410603.756523, 1410603.756523, 1410611.948613, 1410611.948613, 1410611.948613, 1410622.325309, 1410623.134432, 1410623.134432, 1410629.59628, 1410629.59628, 1410629.59628, 1410647.913056, 1410647.913056, 1410647.913056, 1410647.913056, 1410647.913056, 1410685.648617, 1410685.648617, 1410685.648617, 1410685.648617, 1410685.648617, 1410686.919449, 1410686.919449, 1410686.919449, 1410686.919449, 1410695.97626, 1410695.97626, 1410695.97626, 1410708.469633, 1410712.696871, 1410712.696871, 1410715.827581, 1410715.827581, 1410715.827581, 1410730.326476, 1410730.326476, 1410735.473673, 1410735.473673, 1410735.473673, 1410746.646418, 1410746.646418, 1410753.629788, 1410753.629788, 1410779.704159, 1410779.704159, 1410779.704159, 1410779.704159, 1410779.704159, 1410779.704159, 1410779.704159, 1410779.704159, 1410779.704159, 1410779.704159, 1410812.374902, 1410812.374902, 1410824.485312, 1410824.485312, 1410824.485312, 1410829.963758, 1410829.963758, 1410829.963758, 1410833.473212, 1410833.473212, 1410871.360317, 1410871.360317, 1410871.360317, 1410871.360317, 1410871.360317, 1410871.360317, 1410871.360317, 1410871.360317, 1410871.360317, 1410871.360317, 1410871.360317, 1410871.360317, 1410871.360317, 1410871.360317, 1410871.360317, 1410871.360317, 1410871.360317, 1410891.760561, 1410903.470244, 1410903.470244, 1410908.272312, 1410908.272312, 1410936.272211, 1410936.272211, 1410936.272211, 1410936.272211, 1410936.272211, 1410936.272211, 1410936.272211, 1410936.272211, 1410943.153702, 1410950.235264, 1410960.243775, 1410961.764054, 1410961.764054, 1410961.764054, 1410961.764054, 1410961.764054, 1410964.809218, 1410969.463101, 1410969.463101, 1410969.463101, 1410969.463101, 1410969.463101, 1410988.005359, 1410988.005359, 1410988.131237, 1410988.131237, 1410988.131237, 1410988.131237, 1410995.213349, 1410995.213349, 1410995.459488, 1410997.574241, 1411017.078236, 1411017.078236, 1411021.094943, 1411021.094943, 1411021.094943, 1411042.564687, 1411042.564687, 1411042.564687, 1411049.017294, 1411049.017294, 1411049.017294, 1411066.96659, 1411066.96659, 1411087.874384, 1411087.874384, 1411087.874384, 1411087.874384, 1411087.874384, 1411087.874384, 1411087.874384, 1411087.874384, 1411089.237043, 1411089.237043, 1411089.237043, 1411096.246762, 1411110.932673, 1411110.932673, 1411114.223354, 1411114.223354, 1411119.456155, 1411156.582079, 1411156.582079, 1411156.582079, 1411156.582079, 1411156.582079, 1411156.582079, 1411156.582079, 1411170.087784, 1411170.087784, 1411170.087784, 1411170.087784, 1411170.087784, 1411170.087784, 1411170.087784, 1411170.087784, 1411180.513825, 1411180.513825, 1411180.513825, 1411180.513825, 1411180.513825, 1411194.1273, 1411194.1273, 1411194.1273, 1411224.576776, 1411224.576776, 1411224.576776, 1411229.764263, 1411249.507283, 1411249.507283, 1411249.507283, 1411249.507283, 1411249.507283, 1411249.507283, 1411249.507283, 1411249.507283, 1411249.507283, 1411253.687468, 1411253.687468, 1411270.963789, 1411270.963789, 1411271.275811, 1411280.02772, 1411280.02772, 1411280.02772, 1411280.02772, 1411280.02772, 1411281.120462, 1411281.120462, 1411288.305611, 1411306.320473, 1411306.320473, 1411306.320473, 1411306.320473, 1411320.185056, 1411330.745171, 1411330.745171, 1411330.745171, 1411330.745171, 1411332.323941, 1411354.774778, 1411354.774778, 1411354.774778, 1411354.774778, 1411354.774778, 1411354.774778, 1411355.443982, 1411379.86816, 1411379.86816, 1411379.86816, 1411379.86816, 1411379.86816, 1411394.349617, 1411394.349617, 1411394.349617, 1411403.658304, 1411403.658304, 1411403.658304, 1411403.658304, 1411413.071351, 1411413.071351, 1411413.071351, 1411413.071351, 1411438.873653, 1411438.873653, 1411438.873653, 1411438.873653, 1411438.873653, 1411438.873653, 1411438.873653, 1411446.040665, 1411450.580336, 1411450.580336, 1411450.580336, 1411455.486149, 1411455.486149, 1411455.486149, 1411455.486149, 1411455.486149, 1411467.056825, 1411467.132007, 1411483.358518, 1411483.358518, 1411483.358518, 1411483.358518, 1411483.358518, 1411505.506158, 1411505.506158, 1411505.506158, 1411505.506158, 1411510.282828, 1411510.282828, 1411510.282828, 1411510.282828, 1411536.805101, 1411536.805101, 1411543.285351, 1411543.285351, 1411543.285351, 1411543.285351, 1411546.522718, 1411548.632368, 1411570.165409, 1411570.165409, 1411570.165409, 1411570.165409, 1411570.165409, 1411571.493754, 1411571.493754, 1411578.346275, 1411578.346275, 1411592.194926, 1411592.194926, 1411592.194926, 1411599.393651, 1411599.393651, 1411601.38105, 1411626.201607, 1411626.201607, 1411636.792742, 1411636.792742, 1411636.792742, 1411636.792742, 1411636.792742, 1411636.792742, 1411636.792742, 1411636.792742, 1411640.885655, 1411650.024374, 1411650.024374, 1411650.024374, 1411652.573162, 1411652.573162, 1411665.363822, 1411665.363822, 1411665.363822, 1411671.003831, 1411671.003831, 1411671.003831, 1411704.778816, 1411704.778816, 1411704.778816, 1411704.778816, 1411704.778816, 1411704.778816, 1411704.778816, 1411704.778816, 1411704.778816, 1411704.778816, 1411711.11062, 1411719.744316, 1411719.744316, 1411736.167715, 1411736.167715, 1411736.167715, 1411738.933428, 1411745.951057, 1411745.951057, 1411764.493562, 1411764.493562, 1411775.825665, 1411775.825665, 1411775.825665, 1411775.825665, 1411784.653263, 1411784.653263, 1411784.653263, 1411784.653263, 1411784.653263, 1411788.052713, 1411809.860762, 1411809.860762, 1411809.860762, 1411813.967018, 1411813.967018, 1411813.967018, 1411813.967018, 1411813.967018, 1411813.967018, 1411817.239, 1411817.239, 1411817.239, 1411817.239, 1411819.536134, 1411845.4057, 1411845.4057, 1411845.4057, 1411845.4057, 1411853.692437, 1411853.692437, 1411855.662384, 1411855.662384, 1411865.527183, 1411876.835826, 1411876.835826, 1411876.835826, 1411881.858817, 1411897.70913, 1411897.70913, 1411902.067578, 1411921.805995, 1411921.805995, 1411921.805995, 1411921.805995, 1411921.805995, 1411921.805995, 1411921.887001, 1411921.887001, 1411921.887001, 1411931.721456, 1411931.721456, 1411954.074127, 1411954.074127, 1411954.074127, 1411954.074127, 1411954.074127, 1411955.042193, 1411955.042193, 1411955.042193, 1411974.938387, 1411974.938387, 1411974.938387, 1411974.938387, 1411974.938387, 1411974.938387, 1411995.866175, 1411995.866175, 1412000.872473, 1412000.872473, 1412000.872473, 1412005.827812, 1412007.053517, 1412007.053517, 1412007.053517, 1412007.053517, 1412007.053517, 1412018.091349, 1412022.896595, 1412026.590978, 1412027.280692, 1412027.280692, 1412027.280692, 1412027.280692, 1412040.890296, 1412040.890296, 1412040.890296, 1412040.890296, 1412064.069797, 1412064.069797, 1412064.069797, 1412069.86357, 1412069.86357, 1412081.073235, 1412081.073235, 1412081.073235, 1412099.328756, 1412099.328756, 1412099.328756, 1412099.328756, 1412099.328756, 1412107.054658, 1412107.054658, 1412107.054658, 1412116.762415, 1412116.762415, 1412116.762415, 1412134.578017, 1412134.578017, 1412134.578017, 1412134.578017, 1412134.578017, 1412134.578017, 1412134.578017, 1412139.716153, 1412151.199972, 1412157.255974, 1412168.94904, 1412168.94904, 1412168.94904, 1412172.494996, 1412180.434145, 1412180.434145, 1412208.509353, 1412208.509353, 1412208.509353, 1412208.509353, 1412208.509353, 1412208.509353, 1412208.509353, 1412208.509353, 1412208.509353, 1412208.509353, 1412208.509353, 1412208.509353, 1412210.364248, 1412210.364248, 1412220.654506, 1412241.552957, 1412241.552957, 1412252.446322, 1412252.446322, 1412252.446322, 1412266.495578, 1412266.495578, 1412269.7796, 1412269.7796, 1412269.7796, 1412287.685772, 1412287.685772, 1412287.685772, 1412291.413913, 1412291.413913, 1412291.413913, 1412291.413913, 1412309.09393, 1412309.09393, 1412309.09393, 1412312.068148, 1412312.068148, 1412312.068148, 1412312.068148, 1412316.483651, 1412327.650377, 1412327.650377, 1412327.650377, 1412327.650377, 1412327.650377, 1412333.559548, 1412333.559548, 1412334.04063, 1412334.04063, 1412347.373778, 1412347.373778, 1412356.279566, 1412361.874961, 1412367.45603, 1412367.45603, 1412367.45603, 1412367.45603, 1412372.074441, 1412383.68733, 1412383.68733, 1412383.68733, 1412394.052699, 1412394.052699, 1412399.880436, 1412402.453744, 1412402.453744, 1412411.146304, 1412411.146304, 1412411.146304, 1412414.979863, 1412418.589507, 1412430.402161, 1412430.402161, 1412430.402161, 1412430.402161, 1412434.249744, 1412443.554541, 1412461.901291, 1412461.901291, 1412461.901291, 1412472.593568, 1412472.593568, 1412472.593568, 1412472.593568, 1412472.593568, 1412472.593568, 1412482.807499, 1412482.807499, 1412482.807499, 1412482.807499, 1412482.807499, 1412487.753699, 1412495.029661, 1412495.029661, 1412495.76174, 1412495.76174, 1412497.261692, 1412497.261692, 1412519.890149, 1412519.890149, 1412542.210177, 1412542.210177, 1412542.210177, 1412548.427312, 1412548.427312, 1412548.427312, 1412548.427312, 1412552.90906, 1412557.442287, 1412573.827544, 1412573.827544, 1412573.827544, 1412573.827544, 1412573.827544, 1412573.827544, 1412584.319229, 1412595.704956, 1412595.704956, 1412595.704956, 1412595.704956, 1412595.704956, 1412595.704956, 1412595.704956, 1412604.542182, 1412604.542182, 1412608.974225, 1412608.974225, 1412608.974225, 1412621.451032, 1412621.451032, 1412621.451032, 1412621.451032, 1412629.868117, 1412629.868117, 1412630.762811, 1412632.585116, 1412639.317311, 1412639.317311, 1412682.486997, 1412682.486997, 1412682.486997, 1412682.486997, 1412682.486997, 1412682.486997, 1412682.486997, 1412695.699979, 1412701.296727, 1412701.296727, 1412701.296727, 1412701.296727, 1412701.296727, 1412701.296727, 1412701.296727, 1412701.296727, 1412701.296727, 1412708.982035, 1412708.982035, 1412739.907291, 1412739.907291, 1412739.907291, 1412743.977956, 1412743.977956, 1412743.977956, 1412743.977956, 1412745.104364, 1412745.104364, 1412745.104364, 1412757.586063, 1412759.02571, 1412759.944813, 1412759.944813, 1412759.944813, 1412762.90809, 1412783.539949, 1412783.539949, 1412783.539949, 1412783.539949, 1412783.539949, 1412783.539949, 1412792.254884, 1412804.676763, 1412804.676763, 1412810.790028, 1412818.747181, 1412818.747181, 1412818.747181, 1412818.747181, 1412830.744834, 1412830.744834, 1412830.744834, 1412830.744834, 1412833.474604, 1412833.474604, 1412839.639444, 1412839.639444, 1412841.493729, 1412849.831587, 1412859.411863, 1412878.228737, 1412878.228737, 1412878.228737, 1412878.228737, 1412878.228737, 1412878.228737, 1412878.228737, 1412878.228737, 1412896.710668, 1412896.710668, 1412901.120648, 1412901.120648, 1412901.120648, 1412901.120648, 1412923.271336, 1412923.271336, 1412923.271336, 1412923.271336, 1412923.271336, 1412923.271336, 1412923.271336, 1412923.271336, 1412923.271336, 1412925.727653, 1412942.07148, 1412944.580616, 1412944.580616, 1412946.558397, 1412946.558397, 1412972.237011, 1412972.237011, 1412972.237011, 1412972.237011, 1412972.237011, 1412974.860275, 1412984.659005, 1412984.659005, 1412984.659005, 1412987.291262, 1412987.291262, 1412987.291262, 1412998.128231, 1413005.045564, 1413005.045564, 1413021.27686, 1413021.27686, 1413021.27686, 1413021.27686, 1413021.27686, 1413021.27686, 1413038.36758, 1413038.36758, 1413038.36758, 1413044.752259, 1413063.188043, 1413063.188043, 1413063.188043, 1413063.188043, 1413063.188043, 1413063.188043, 1413063.188043, 1413066.703816, 1413092.059718, 1413092.059718, 1413092.059718, 1413092.059718, 1413092.059718, 1413096.732483, 1413096.732483, 1413096.732483, 1413115.848815, 1413121.756882, 1413121.756882, 1413121.756882, 1413121.756882, 1413121.756882, 1413121.756882, 1413121.756882, 1413128.463355, 1413129.299382, 1413149.363339, 1413149.363339, 1413151.593136, 1413151.593136, 1413152.075148, 1413152.075148, 1413152.075148, 1413152.075148, 1413165.534936, 1413168.094877, 1413168.094877, 1413168.094877, 1413168.094877, 1413169.390787, 1413179.926743, 1413179.926743, 1413190.484032, 1413203.45157, 1413205.168603, 1413207.208094, 1413208.079888, 1413208.079888, 1413218.651577, 1413218.651577, 1413218.651577, 1413218.651577, 1413234.575284, 1413234.575284, 1413234.575284, 1413234.575284, 1413249.078501]\n", + "1413249.078501\n" ] } ], "source": [ - "file = open(\"lowerbounds.txt\",\"r\")\n", + "file = open(\"var.txt\",\"r\")\n", "maxiter = file.readline()\n", - "print(f)\n", + "print(maxiter)\n", "# niter = (float(f))\n", "# print(niter)\n", "g = [0]*int(maxiter)\n", @@ -64,7 +55,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 11, "metadata": { "scrolled": true }, @@ -73,36 +64,30 @@ "name": "stdout", "output_type": "stream", "text": [ - "[ 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18\n", - " 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36\n", - " 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54\n", - " 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72\n", - " 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90\n", - " 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108\n", - " 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125]\n" + "[ 1 2 3 ... 18988 18989 18990]\n" ] } ], "source": [ "p= np.arange(1,int(maxiter)+1)\n", "print(p)\n", - "u=[92]*int(maxiter)\n", + "u=[1524190.4518713]*int(maxiter)\n", "b = u[0]+g[0]\n", "c=[max]*int(maxiter)" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 12, "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "(125, 1)" + "(18990, 1)" ] }, - "execution_count": 18, + "execution_count": 12, "metadata": {}, "output_type": "execute_result" } @@ -115,22 +100,22 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 35, "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "Text(0.5, 1.0, '6flights, four sectors, opt using lagrangian r.')" + "Text(0.5, 1.0, 'using lagrangian learning rate=1')" ] }, - "execution_count": 19, + "execution_count": 35, "metadata": {}, "output_type": "execute_result" }, { "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAYgAAAEWCAYAAAB8LwAVAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/MnkTPAAAACXBIWXMAAAsTAAALEwEAmpwYAAAyi0lEQVR4nO3deZxd8/3H8ddbgsYeYquEWEKFEjp2JUU1UUv7oxFFRWlQS7WovbXTll9RlCBi+yGCCrUvoVVLJhUhCBEhC1klEgmSzOf3x/dcc2fmzsydZO7cyeT9fDzuY+4537N8zrl3zud+v9+zKCIwMzOrbblyB2BmZq2TE4SZmRXkBGFmZgU5QZiZWUFOEGZmVpAThJmZFeQEUQaSTpA0RdJcSWtJCkmbZWU3Sjq/yOUMknRJaaP9Zl01Ym6JdVrpSDpH0i0lWvY33+eliaTHJR1V7jhaE/k6iNKQ1Bf4I7Ah8CnQLyL+JWl54HNg54h4I5s2gG4RMbaJ6xgETIyI8+opX6zlFlhOnZiXNs21L1qSpK7Ah8DyEbGwzOEUbWnc11ZY+3IH0BZJ+iHwJ+BQ4DVg/bzidYFvAaPLENriKlnMktq39oPf0hDjsqCtfA5L03a4iak0LgQuiohXIqIqIiZFxCRJmwNjsmlmSXqu9oy1m40k/V7SJ5ImSzq2QPW9o6R/Spoj6VVJm2bzvZiVv5E1Cx0qqZOkRyXNkjRT0r8kNfgdqC9mSbtKGi5pdvZ317x5xkvaJ2/4Akl3Ze+7ZttwjKSPgUL7oN44JX1b0gOSpkn6UNIpefO1y5pOPsj2xwhJXQrti2z6X0kam61jqKRv5y0rJJ0o6X3gfSV/lTRV0ueS3pS0dUP7Lm9ZDe2rYZIul/RattyHJa2ZFefinpXFvUuBZdf+vvSUNDFv+ExJk7L9MUbS3g18JkdJ+ljSdEnn5i2jg6TbJX0m6Z3sOzmRIkj6saTXs22bIOmCWuW/kPSRpBmSzs//7mQxDpF0l6TPgX6SdpT0cvbd+ETSdZJWyFteSDpe0vvZNNdLUlbWTtJV2fZ9KOmkbPr2eZ/Fsdn7TSU9l8U1XdLdktbIW894SadLGpV9rvdJ+lY9+6CfpJey788M4IJC07VKEeFXM76AdsDXwFnAWGAicB3QISvvCgTQPm+eADbL3g8CLsne9yI1T20FrATcVWDaGcCOpNrg3cC9hZabDV8O3Agsn72+T9bM2Mg21YgZWBP4DDgyW+9h2fBaWfl4YJ+8+S8A7qq1rDuAlXP7pdb6CsZJ+kEzAvgDsAKwCTAO+FE23xnAm8AW2fTb5sVUe1/sBUwHtgdWBP4GvFhr3z2dbWsH4EfZutfIlr0lsH4R+66xfTUMmARsne2PBwrsq/YNLP+b70s23JPU7Ei2HyYA385b3qYNfCY3Z9u6LfAVsGVWfgXwAtAR6AyMyq2jnpjyv6M9ge9mn902wBTgJ1lZd2AusHv2eV4JLCD77mQxLgB+ks3fAfgesHO2L7sC7wCn1lr3o9nntCEwDeiVlR0PvJ1tQ0fgGWp+r4cBx2bvNwN+SPpurE1K1lfnrWc8qXXg29ln/A5wfD37ox+wEDg5i7vOd761vtpcDULSwOxX3ltFTt9H0tuSRkv6v2YIYV3SQe0Q0oGtB7AdULCfoBF9gNsiYnREzKPwL4+HIuK1SFXWu7P11WcBqblro4hYEBH/iuwb3EQ/Bt6PiDsjYmFE3AO8CxzQhGVcEBFfRMT8JsS5A7B2RFwUEV9HxDjSQa1vNt+xwHkRMSaSNyJiRj3rPxwYGBH/jYivgLOBXZTa/XMuj4iZWYwLgFWB75CS6jsR8UkR21nMvrozIt6KiC+A84E+ktoVsezGLCId4LpLWj4ixkfEBw1Mf2FEzI/Uz/QGKVFA+h5eFhGfRcRE4NpiA4iIYRHxZqSa9CjgHmDPrPgQ4JGI+HdEfE1K/LW/jy9HxD+y+edHxIhINfOFETEeuClveTlXRMSsiPgYeJ7q/4k+wDURMTEiPiMlvvriHhsRT0fEVxExDfjfAuu5NiImR8RM4BEa/t+bHBF/y+Iu9J1vldpcgiD9oupVzISSupEODLtFxFbAqc2w/tyH/7eI+CQippO+XPstxrK+TfoFmDOhwDSf5r2fB6zSwPL+QqrVPCVpnKSzFiOmXFwf1Rr3EbBBE5ZRaFty6otzI+DbWdPBLEmzgHNISRmgC9DQATBfjW2IiLmk2lj+NkzIK3+OVBO8HpgqaYCk1Zq6nkztfTWhVtnyQKcilt2gSJ3Ep5J+WEyVdG9+M1oB9X2XivkeFiRpJ0nPKzUJzib9is9tW43lZj+Caif0GuuStLlS8+OnWbPTZdTdV0u8HZLWzfbXpGw9dzVhPYUUvc9akzaXICLiRWBm/risPfEJpTbpf0n6Tlb0K+D67NcEETG1Gdb/GalZKf+X0OKeKvYJqTqc02Vx4wKIiDkRcVpEbAIcCPwu1ybdRJNJB+t8G5KaSgC+IDWJ5axXKJzFiHMC8GFErJH3WjUicsl3ArDp4myDpJWBtfK2oU6MEXFtRHyP1DSyOalJq0nryeTvK6j5uW5Iqq1Mr73+ejS4ryPi/yJi9yyGIJ080VRL8j38P2Ao0CUiVic1HarQciV1IH0G+Wrvg7+TamDdImI10g8EUZymbMdl2bq/m63niCasp5Cl8nTRNpcg6jEAODn75z4duCEbvzmwedaB9IqkomoeRbgNOFnSOpI6Ar8ltYs21WDgaElbSlqJ1PzQFFNI7fQASNpf0mZZp91sUhNEVVY2SOm02WI8RtpvP5fUXqnTtzvV2zgS6CtpeUkVpKaEojUQ52vAHKWO1w5Zp+PWknbIZr0FuFhSNyXbqPqajRr7gtTUcbSkHpJWJB0QXs2aLQrFtEP2a3h50kH5S6r3XT9JBecrYl8BHCGpe/YZXwQMiYhFpPbzqlpx1zYS2E/SmpLWI68WLGkLSXtl2/clqXZb1cCy6jMYOFtSR0kbACc1Yd5VgZkR8aWkHYGf55UNAQ5Q6sRfgVTTaewgvCrplOu52Q+9E5oQy2DgN5I2yDqcz2xkPXOB2dk2F/NjoM1p8wlC0irArsD9kkaS2ixzp522B7qROtIOA27OP1NhCVwMDAfeI3VevQ5c2tSFRMTjpPbe50lNLq9kRV8VuYgLgNuz5pg+pG19hvTFfxm4ISKez6btArxUZFwzgP2B00hNAr8H9s+a0yAlsk1JnbEXkn5FNkXBOLOD5v6ktt4PSb+ybwFWz+b7X9JB4CnSQeRWUscm1NoXEfFMFucDpF+Wm1Ldl1HIaqT+js9IzUAzSE1h0MC+K2JfAdxJahr9lHQ68SnZvPNI35uXsrh3LrCKO0n9BeOz7b4vr2xFUjv79GzZ65CaVJvqIlKt+EPS5zKE4r+DvwYukjSH1McwOFcQEaNJHbf3kj6DucDURpZ9OinJzCF9Hvc1MG1tN5P20SjS/+RjpM7jRQWmvZB0AsNs4J/Ag01YT4MkHS5pqTjNvU1eKJd1ND4aEVtn7cRjImL9AtPdSPrVeFs2/CxwVkQMb9GAiyRpS+AtYMVoxvOos19vbwDbRMSC5lruskLSU8BvIuKdxZh3GOlsopJc1VwKkk4A+kZE7U7bJV3uKsAsUvPRh8257HrW1xu4MSJqNwFaps3XICLic+BDST8DyJoecmdn/INUe0BSJ1KT07gyhFkvST+VtGLWVPUn0lkfzXqRTXZG0JZODosnIvZdnOSwtJC0vqTdJC0naQtSbeihZlr2AZJWyvqAriSdpjy+OZZdYF0dJO2XNfVtQLrTQbNsR1vV5hKEpHtIzRJbSJoo6RjSKY3HSHqDdDXwQdnkTwIzJL1NasY5o4HTIsvlOFK1+wNSVbgpba5mzWEFUtPsHNKFjQ9T3Y+3pA4ideRPJjUt9o3SNWuI1HT0GamJ6R1Ss5fVo2RNTJIGktpep0ZEnStOJZ1BOnBD6gvYknSO+8ysw28O6YC4MCIqShKkmZnVq5QJYg9Sp9MdhRJErWkPAH4bEXtlw+OBilodeWZm1oJKdrO+iHhRNa9KbchhpNMOl0inTp2ia9diV2lmZiNGjJgeEWsXKiv73Vyzc797UfPc6iBdRRvATRExoIH5+wP9ATbccEMqKytLGa6ZWZsiqfaV/t9oDZ3UBwAvZfczydk9IrYHegMnZs1VBUXEgIioiIiKtdcumATNzGwxtIYE0ZdazUsRMSn7O5V0GtqOZYjLzGyZVtYEIWl10h0SH84bt7KkVXPvgX1JF4eZmVkLKlkfRHY9Qk+gk9LDRf5IukslEXFjNtlPgaey2xznrAs8lG7DQ3vg/yLiiVLFaWZmhZXyLKbDiphmEOkeNPnjxlF9H3ozMyuT1tAHYWZmrZAThJmZFVT26yBai56DetYZ12erPvx6h18zb8E89ru77gPh+vXoR78e/Zg+bzqHDM575MHXX8Pnn3PCwh4c2vsMJnRdkyMfOrLO/KftchoHbHEAY6aP4bhHj6tTft4e57HPJvsw8tORnPrEqXXKL9v7Mnbtsiv/mfAfznn2nDrlV/e6mh7r9eCZcc9wyYuX1Cm/af+b2KLTFjwy5hGuevmqOuV3/vROuqzehfveuo+/V/69TvmQPkPotFInBo0cxKCRg+qUP3b4Y6y0/ErcMPwGBo8eXKd8WL9hAFz5nyt59L2aj8vosHwHHj/8cQAufuFinv3w2Rrla620Fg/0eQCAs585m5cnvlyjvPNqnbnrf+4C4NQnTmXkpyNrlG++1uYMOCBdXtP/kf68N+O9GuU91uvB1b2uBuCIB49g4ucTa5Tv0nkXLt/ncgAOHnwwM+bVvIXX3hvvzfl7psd39L67N/MX1HzK5P6b78/pu54ONPN3L3NCxQkcuvWhTJg9wd+9ZeC7l9ue5uYEUQozZsB778Hw0fDoePjnEl8kbmbW4trU8yAqKiqiVVxJPWUKTJgA//gHXHopfPQRbLhhuaMyM6tD0oj6bojqPojm9M47cMstsNpqUFEBRx+dxt97b3njMjNbDE4Qzemaa+Dkk2HevDS86aZw883ws5+VNy4zs8XgBNFcZs+Gu+6Cvn1hrbWqxx97LGy8cXq/aBFcd12qaZiZtXLupG4ud9wBX3wBJ55Yt+yBB2DuXHjwQRg6FO6/H7bcsuVjNDNrAieI5nLbbanfoaJAX89118GwYSCl94fUPS3RzKy1cRNTc/jyS2jfvv4D/wknpI7rBx9MNYxPPoFPP23ZGM3MmsinuTaniFRLKKSqCpZbDubMgTXXhLPOgosvTmUvvJDGbb11/fObmZWAT3MttUWL0t+GDu7LZbt61VVhp53giewGtS+/DD17wjbbwC67lDRMM7OmcIJYUgsWQOfOcPXVxc/TqxeMGAHTpsEZZ8B666XTYXPXTVRVpVqFmVkZOUEsqZdfTv0JTblSulev1Bx10knw0ktwwQXpdNjjsnvi3HNPqlUMHFiKiM3MiuIEsaQefzx1UO+zT/HzbL89dOqUahBnnQXHHFOz/Gc/gz33hNNOq+7MHjEC9tgD+vSBq66Ct99uvm0wMyvACWJJPf447LZbOkupWMstB/fdB7ffDpdfnhJMvhVWgAEDYP58OPXUNO6hh2DMGHjtNTj9dNhqK/j5z5ttM8zManOCWBIffwxvvAH71b0dc6P22gu6dKm/fPPN4bzzUiL55z/TGU+jR8P48TB5Mlx2GeywQ5p20SK48EKYNKl6/oULU5/Gj3+cmq5uvTU1a+XMmJGuyTjgAHjqqabHb2Ztni+UWxJduqSD76GHlmb5v/89PPccrL56OkOqU6c0fv314eyzq6cbNQouuQTuvhsqK1Nt5vrrYdCgVNN47bVUI/n0Uzj33PR3zz3TLck33RRmzUrLGTEidZhvsEFptsfMliquQTRVVRX84Q/wwQfpoH3jjbDRRqVZ1worwJAh1fdyqs9228Gzz8K4camzOwL69YMbboA334SpU1OH+Pe/n/o99t471Taefx7Gjk39GosWweGHp4Ry7bWpBpJv1qxUm/EFfmbLjohoM6/vfe97UVJffx3xi19EQMQVV5R2XYvjz39Osf3lL/VPM2RIxMorRzz/fN2yMWMifvjDtIzvfjfi/vsjFi6MmDo1YuON0/j27SMOOSTitddqzjtxYsTs2U2Lt6qq4fIHH4yYP79pyzSzJgEqo55jaskO1sBAYCrwVj3lPYHZwMjs9Ye8sl7AGGAscFax6yxpgli0KOLAA9Muu/DCxg9u5VBVFbHPPhHf+lbDB+spUxpexoMPRmy2WdrWf/4zjTvttIgHHoj43e8i1lwzQop4/fWI6dMjjjwyDXfoEHHEEREPPRTx2WdpefPnFz7IL1gQ8T//E3HvvYXjePvttP5NN424+OKIm26KeO651rnfzZZi5UoQewDbN5IgHi0wvh3wAbAJsALwBtC9mHWWNEG88UZ1cmjN5s2LePnlJV/OwoURjzySEmNts2dH3HhjOljPnx+x+eYRp58ecfzxEautlvZTroZxyy1puGvXiP/93zT+3XcjZs2K2H33VHbZZdUH/rlzI37wg4hnn414+umI7t3TNLnXU08t+XYtjltvTTWnzz9fsvWbtTJlSRBpvXRdjASxC/Bk3vDZwNnFrK+kCeLhh2se+Kza119Xv583L+KVVyLmzEnDr78ecemlEXvsUX2Q3267lBC+/DLi5z9P4wYNStPfc08aHjasepnz56cmrMGD03xffZVqFH/7W0pUzz0X8cknhZNZvmnTIpZfPuI3vymu6erLLyO++CK9f/DBFNePflRzexszd25KdLfeGvHXv6bX5MkNz/PSSxGnnFJdCzMrodacIGZkNYTHga2y8YcAt+RNdyRwXQPr6A9UApUbbrhhiXZhpIPSe++5TXxJvPpqOji/+271uEWLInbeOWKddVKtYv/9IzbYoOGD/Rdf1KxV5F4XXJDKq6qqm9jGjYs499zq5f3qV2narbeOuPnmiOuvr17uRx9FfPBBdZLr3j0dqHNytaFf/rJuU1dVVcTQoWlbVlkl4uqr0/hXXqkb5worRDzzTCq/6aaIo49O257bto02im+a10aNasoerl7GdddF/PSnERMmFJ6mqU11VVWNJ2BbKrXWBLEasEr2fj/g/ViMBJH/KnkntZVGZWVEt26pJtC+fWquakhVVcSkSalG8PHHqdnpb39LB+OIiL//PaJz59TJ3rlzRMeOER9+WD3/Y49FrLtu9QE71+zUr1/NA3nnzqkPJt/556eynXaqHverX0VssUV805R28snVCeCrryKefDKtf+bM9CPj1FNTzSIiJah27SIOOCAdgBctSrWiv/41Yr31IlZaKW1bROq3GTEiJdhCB+s//zmiT5+ITp1SLMstF3HRRTWnGT481dpOOKF6XEVFxEEHpebT4cPrJo+vv47o1Stiyy0jxo9v+LNpaVVVaZ889pj7pxZTq0wQBaYdD3RqtU1Mt90WcfvtpVv+sm7hwnRgh9QstST++9+IDTdMy1p77YiRI+tO88UXqXYxfXr1gWX48PQ5X3ppxOWXF+7or6qKGDAg4qqrqscdfXTEvvtGDBzYtOannL/9LcX6hz/UHD95cur3yNVGpk2rTl5dukSceWZKTrk4Tz45JdoDDoh48cWI99+v3raXXqo+Q23VVSPOPrt6ew47LCU4KZVvsUXEnXdWl/fvn8avvHLa9nxTp6ZaVrduEY8+WndfDR0a0aNHxDXXpHHz5qXkmasx1fbWW9Uxf/11xDvvVC/rmWfqJoF99qneJ8cdV504J0xoWtLI/UiYOjVi223TSRn58y5alPb/W29Vx9RcPvpo8eYbM6a6CXQJtMoEAaxH9fModgQ+BkS6eG8csHFeJ/VWxayvpAlihx3SQcBK5+GH0xlRzfFLcMqU9E/+9ttLvqxSq6pKSQZSLaA+8+dH/OMfqalrv/1SzaNDh9TH0ZCXXkrLXmedtPz6znCbOTM1u+2xR/XJAH/5S5r3nHNqnv3Wr1+qdayySopjt92qm7OGDEknHuy7b3zTVJbrU/r3v6sP6FtskU4b79079be8+27Eiium78CDD6aTH3r1SvM99FCa59pra8Z8550pMZ9xRio/4ohU0xo3LtWgTjghJZqPP65OAu++m2IdNSrV4PbcM51gEZGmyZ08ceml1evJ/XjJvQ4/vHp/vP9+xPe/nz6bYr+7uelGj05Njr/8ZcSMGekzfv/9lEgbc+KJEZtsUrO/bjGU6yyme4BPgAXAROAY4Hjg+Kz8JGB0lgBeAXbNm3c/4L3sbKZzi11nSRPEOuukX2tmpTB/fsRRR6UDYbGmTUs1oMZcd12q8eSatZri17+OOPjguk1aBx2U+mj69Kn7i7p373RoWXPNVPvJr1XNmZOSz8UXp5rOOuukprxc09bFF9dMILkmvkWL0jrbtUv9WOecU/dgfOml6eD+5Zdp+pNPTsvZeedUa/rTn9J0P/pRzYP9pptW13Ai0nIPPzyV3XFH9bhbbkmnZZ93XjrZYe+9U0KpqkrNdBCxyy5p+9dbL+LTT9O8AwemuPr2Tcvdc8+I7bdPv/7nzYs466y0XSuuGN/0UeX30+X22803R+y4Y8QLL6Rxr76aYoeUUBdT2WoQLf0qWYLIdYpecklplm/WWj3/fNNPzJgzJ81TzK/pqqq60z3+eDoY1m6u+/zzdHIBRPTsmfp3anviiZq/vm+9NfVrff/71f0nH3yQEtHtt6f3heKcPz8lFki/6GsbPTrVfnLrWrAg9R1tsknENtukslzT0eDBKd5NN019VLvvnmpJ+U1Lr7+eEtpFF6XTy3NOPDE13y23XIplq61STTtn7tzUd7QETU0NJQg/crQY774LW24Jd94JRxzR/Ms3s+J89FG6vc2ZZ8IaaxQ3z4wZ0LFj9VMdizV1arrjcv/+6X5oLW38+PSc+65d0/Gnd+/01MlmfixxQ48c9c36ijF5cvpbqnsumVlxNtoo3SK/KdZaa/HWtc466YmP5dK1a7r5Zhk5QRRjr71g3ry6z20wM2vDfDfX+tx4I0ycWD3coQMsv3z54jEza2FOEIVMnw4nnJDa/yDd/vqyy8obk5lZC3OCKGTKlPT3t79Nf++/H558snzxmJmVgRNEIVOnpr/rrpv+fvSRO6jNbJnjXtdCcjWI/v3Ta9IkJwgzW+a4BlHIwoWp9rBgAVx9dXrMqBOEmS1jnCAKOeKI9Ozlo45KtQcpnZNsZrYMcYJoyI9/nP7ecQfsvXd5YzEza2FOEIWceSb87nfwve+lpqZHH232y9vNzFo7d1IXMmxYuvfKcsvBvvvCuHHljsjMrMU5QRQydSpsvnl6f/PN6TYbZmbLGCeIQqZOTTfqAlhxxfQyM1vGuA+itrlzU40hd5GcmdkyygmitrlzYfvtYZNNyh2JmVlZuYmptvXWgxEjyh2FmVnZuQZhZmYFOUHUdu+9sMMO6TGFZmbLsJIlCEkDJU2V9FY95YdLGiXpTUn/kbRtXtn4bPxISS37zL2xY9Nj/lZZpUVXa2bW2pSyBjEI6NVA+YfAnhHxXeBiYECt8h9ERI/6HqZdMlOmpIeh+9RWM1vGlayTOiJelNS1gfL/5A2+AnQuVSxNkn8NhJnZMqy19EEcAzyeNxzAU5JGSOrf0IyS+kuqlFQ5bdq0JY9kyhRfA2FmRis4zVXSD0gJYve80btHxCRJ6wBPS3o3Il4sNH9EDCBrnqqoqIglDmjrrdN9mMzMlnFFJwhJGwPbAW9HxLvNsXJJ2wC3AL0j4pvThiJiUvZ3qqSHgB2Bggmi2V13XYusxsystau3iUnSP/LeHwQ8BxwAPCyp35KuWNKGwIPAkRHxXt74lSWtmnsP7AsUPBPKzMxKp6E+iPxnbJ4J7BURRwO7Ab9tbMGS7gFeBraQNFHSMZKOl3R8NskfgLWAG2qdzrou8G9JbwCvAf+MiCeatlmL6ZNP4NvfhsGDW2R1ZmatWUNNTPnt+e0j4kOAiJguqaqxBUfEYY2UHwscW2D8OGDbunO0gClTUpJoX/auGTOzsmvoSLitpM8BAStKWj8iPpG0AtCuZcJrYVOmpL8+zdXMrP4EERH1JYGVgONKE06ZTZ2a/vo0VzOzpp/mGhGzSH0LbY9rEGZm31isC+Uk1b4tRtuw2Wbws5/BaquVOxIzs7Jb3N7Ym5o1itbiJz9JLzMzW7waRES0zSfqVDV6cpaZ2TKjoQvlVpd0haR3Jc2UNEPSO9m4NVowxpbTvTscW+fMWzOzZVJDNYjBwGdAz4hYMyLWAn6QjWubV5JNmgSrrlruKMzMWoWGEkTXiPhTRHyaGxERn0bEn6h5lXXbMGcOzJ2brqQ2M7MGE8RHkn4v6ZuLAiStK+lMYELpQ2thkyenv04QZmZAwwniUNK9kl6Q9JmkmcAwYE2gTwvE1rKcIMzMamjoSurPSDfpO7PlwimjddeFU06Bbt3KHYmZWatQ1GmukvbK/9smde8O11wDnVvHk0/NzMqt2Osgrqz1t+2ZNQu++qrcUZiZtRpNvVBOJYmiNTjuONhmm3JHYWbWaizWldRt0uTJ7qA2M8vjBJHjBGFmVoMTBECEE4SZWS3FJoi52d85pQqkrGbPhi+/hPXXL3ckZmatRlEJIiL2yP/b5iy3HPz5z9CzZ7kjMTNrNRp8HoSkdsDoiPhOC8VTHqutBmecUe4ozMxalQZrEBGxCBgjacPFWbikgZKmSnqrnnJJulbSWEmjJG2fV3aUpPez11GLs/6iTZ0K48b5eRBmZnmKaWLqCIyW9KykoblXkcsfBPRqoLw30C179Qf+DiBpTeCPwE7AjsAfJXUscp1NN3AgbLopzJ9fslWYmS1tinnk6PmLu/CIeFFS1wYmOQi4IyICeEXSGpLWB3oCT0fETABJT5MSzT2LG0uDJk+G1VeHlVcuyeLNzJZGjSaIiHihhOvfgJq3Dp+YjatvfB2S+pNqH2y44WK1hPkUVzOzAupNEJLmAFGoCIiIWK1kUTVBRAwABgBUVFQUirdxThBmZnXU2wcREatGxGoFXqs2Y3KYBHTJG+6cjatvfGk4QZiZ1VHuK6mHAr/IzmbaGZgdEZ8ATwL7SuqYdU7vm40rjSuvhF/9qmSLNzNbGhXTSb3YJN1D6nDuJGki6cyk5QEi4kbgMWA/YCwwDzg6K5sp6WJgeLaoi3Id1iVxyCElW7SZ2dKqpAkiIg5rpDyAE+spGwgMLEVcZmbWuHI3MZmZWSvV5AQh6RlJj0vavxQBmZlZ67A4TUy/ANYHdm7mWMzMrBVpcoKIiMnAZGBE84djZmatRUMXyr1J4QvlAIgIP8DZzKwNa6gGketjyJ1ldGf29wgaSBxmZtY21JsgIuIjAEk/jIjt8orOlPRf4KxSB2dmZuVTzFlMkrRb3sCuRc5nZmZLsWI6qY8BBkpanXSjvs+AX5Y0KjMzK7tibvc9Atg2SxBExOySR2VmZmXXaIKQtCJwMNAVaC8JgIi4qKSRmZlZWRXTxPQwMJt03cNXpQ3HzMxai2ISROeIaOi50mZm1gYVczbSfyR9t+SRmJlZq1JMDWJ3oJ+kD0lNTLlHjvpKajOzNqyYBNG75FGYmVmrU0yC8G01zMyWQcUkiH+SkoSAbwEbA2OArUoYl5mZlVkxF8rV6KCWtD3w65JFZGZmrUKT76kUEf8FdipBLGZm1ooUcyX17/IGlwO2Jz0wqFGSegHXAO2AWyLiilrlfwV+kA2uBKwTEWtkZYuAN7OyjyPiwGLWaWZmzaOYPohV894vJPVJPNDYTJLaAdcDPwQmAsMlDY2It3PTRMRv86Y/Gci/rfj8iOhRRHxmZlYCxfRBXAggaZVseG6Ry94RGBsR47L57wUOAt6uZ/rDgD8WuWwzMyuxRvsgJG0t6XVgNDBa0ghJWxex7A2ACXnDE7NxhdaxEensqOfyRn9LUqWkVyT9pIH4+mfTVU6bNq2IsMzMrBjFdFIPAH4XERtFxEbAadm45tQXGBIRi/LGbRQRFcDPgaslbVpoxogYEBEVEVGx9tprN3NYZmbLrmISxMoR8XxuICKGASsXMd8koEvecOdsXCF9gXvyR0TEpOzvOGAYNfsnzMysxIpJEOMknS+pa/Y6DxhXxHzDgW6SNpa0AikJDK09kaTvAB2Bl/PGdcyeQ4GkTsBu1N93YWZmJVBMgvglsDbwYPZamyIeORoRC4GTgCeBd4DBETFa0kWS8k9Z7QvcGxH5t/TYEqiU9AbwPHBF/tlPZmZWeqp5XG5gwvTI0aqImFPakBZfRUVFVFZWljsMM7OlhqQRWX9vHcWcxbSDpDeBN4A3Jb0h6XvNHaSZmbUuxVwodyvw64j4F4Ck3YHbAD8PwsysDSumD2JRLjkARMS/SVdUm5lZG1ZvDSK7ayvAC5JuIp2GGsChpNNOzcysDWuoiemqWsP5t8HwQ4TMzNq4ehNERPygvjIzM2v7mvw8CDMzWzY4QZiZWUENJghJy0nataWCMTOz1qPBBBERVaSH/piZ2TKmmCamZyUdLEklj8bMzFqNYhLEccD9wNeSPpc0R9LnJY7LzMzKrJhHjq7a2DRmZtb2FHOzPkk6QtL52XAXSTuWPjQzMyunYpqYbgB2IT36E2Au7rg2M2vzirmb604Rsb2k1wEi4rPsCXFmZtaGFVODWCCpHdn9lyStDVSVNCozMyu7YhLEtcBDwDqSLgX+DVxW0qjMzKzsijmL6W5JI4C9AQE/iYh3Sh6ZmZmVVaMJQtLFwIvAoIj4ovQhmZlZa1BME9M44DCgUtJrkq6SdFCJ4zIzszJrNEFExG0R8UvgB8BdwM+yv42S1EvSGEljJZ1VoLyfpGmSRmavY/PKjpL0fvY6qvhNMjOz5lBME9MtQHdgCvAv4BDgv0XM1450vcQPgYnAcElDI+LtWpPeFxEn1Zp3TdIT7CpIZ0+NyOb9rPFNMjOz5lBME9NaQDtgFjATmB4RC4uYb0dgbESMi4ivgXuBYpumfgQ8HREzs6TwNNCryHnNzKwZFNPE9NOI2An4M7AG8LykiUUsewNgQt7wxGxcbQdLGiVpiKQuTZwXSf0lVUqqnDZtWhFhmZlZMYppYtof+D6wBylBPEdqamoOjwD3RMRXko4Dbgf2asoCImIAMACgoqIimikuM7NlXjG32uhFSgjXRMTkJix7EtAlb7hzNu4bETEjb/AWUi0lN2/PWvMOa8K6zcxsCRXTxHQS6eC8vaT9Ja1T5LKHA90kbZzdu6kvMDR/Aknr5w0eCOQuwHsS2FdSR0kdgX2zcWZm1kKKud33z4DXSKe39gFelXRIY/NlHdknkQ7s7wCDI2K0pIskHZhNdoqk0ZLeAE4B+mXzzgQuJiWZ4cBF2TgzM2shimi42T47eP8wIqZmw2sDz0TEti0QX5NUVFREZWVlucMwM1tqSBoRERWFyoo5zXW5XHLIzChyPjMzW4oV00n9hKQngXuy4UOBx0oXkpmZtQbF3M31DEkHA7tlowZExEOlDcvMzMqtmBoEEfEA8ECJYzEzs1ak3gQhaQ7ZU+RqFwEREauVLCozMyu7ehNERKzakoGYmVnr4rORzMysICcIMzMryAnCzMwKcoIwM7OCnCDMzKwgJwgzMyvICcLMzApygjAzs4KcIMzMrCAnCDMzK8gJwszMCnKCMDOzgpwgzMysICcIMzMrqKQJQlIvSWMkjZV0VoHy30l6W9IoSc9K2iivbJGkkdlraCnjNDOzuop6otzikNQOuB74ITARGC5paES8nTfZ60BFRMyTdALwZ9IzrwHmR0SPUsVnZmYNK2UNYkdgbESMi4ivgXuBg/IniIjnI2JeNvgK0LmE8ZiZWROUMkFsAEzIG56YjavPMcDjecPfklQp6RVJP6lvJkn9s+kqp02btkQBm5lZtZI1MTWFpCOACmDPvNEbRcQkSZsAz0l6MyI+qD1vRAwABgBUVFQUeoa2mZkthlLWICYBXfKGO2fjapC0D3AucGBEfJUbHxGTsr/jgGHAdiWM1czMaillghgOdJO0saQVgL5AjbORJG0H3ERKDlPzxneUtGL2vhOwG5DfuW1mZiVWsiamiFgo6STgSaAdMDAiRku6CKiMiKHAX4BVgPslAXwcEQcCWwI3SaoiJbErap39ZGZmJaaIttNsX1FREZWVleUOw8xsqSFpRERUFCrzldRmZlaQE4SZmRXkBGFmZgU5QZiZWUFOEGZmVpAThJmZFeQEYWZmBTlBmJlZQU4QZmZWkBOEmZkV5ARhZmYFOUGYmVlBThBmZlaQE4SZmRXkBGFmZgU5QZiZWUFOEGZmVpAThJmZFeQEYWZmBTlBmJlZQU4QZmZWUEkThKReksZIGivprALlK0q6Lyt/VVLXvLKzs/FjJP2olHGamVldJUsQktoB1wO9ge7AYZK615rsGOCziNgM+Cvwp2ze7kBfYCugF3BDtjwzM2sh7Uu47B2BsRExDkDSvcBBwNt50xwEXJC9HwJcJ0nZ+Hsj4ivgQ0ljs+W9XKpge/asO65PH/j1r2HePNhvv7rl/fql1/TpcMghdctPOAEOPRQmTIAjj6xbftppcMABMGYMHHdc3fLzzoN99oGRI+HUU+uWX3YZ7Lor/Oc/cM45dcuvvhp69IBnnoFLLqlbftNNsMUW8MgjcNVVdcvvvBO6dIH77oO//71u+ZAh0KkTDBqUXrU99histBLccAMMHly3fNiw9PfKK+HRR2uWdegAjz+e3l98MTz7bM3ytdaCBx5I788+G16u9c3o3Bnuuiu9P/XUtA/zbb45DBiQ3vfvD++9V7O8R4+0/wCOOAImTqxZvssucPnl6f3BB8OMGTXL994bzj8/ve/dG+bPr1m+//5w+unpvb97dcv93Uvvi/3u5banuZWyiWkDYELe8MRsXMFpImIhMBtYq8h5AZDUX1KlpMpp06Y1U+hmZqaIKM2CpUOAXhFxbDZ8JLBTRJyUN81b2TQTs+EPgJ1ItYpXIuKubPytwOMRMaShdVZUVERlZWUpNsfMrE2SNCIiKgqVlbIGMQnokjfcORtXcBpJ7YHVgRlFzmtmZiVUygQxHOgmaWNJK5A6nYfWmmYocFT2/hDguUhVmqFA3+wsp42BbsBrJYzVzMxqKVkndUQslHQS8CTQDhgYEaMlXQRURsRQ4FbgzqwTeiYpiZBNN5jUob0QODEiFpUqVjMzq6tkfRDl4D4IM7OmKVcfhJmZLcWcIMzMrCAnCDMzK8gJwszMCmpTndSSpgEfNWGWTsD0EoXTUtrCNkDb2A5vQ+vgbWiajSJi7UIFbSpBNJWkyvp675cWbWEboG1sh7ehdfA2NB83MZmZWUFOEGZmVtCyniAGlDuAZtAWtgHaxnZ4G1oHb0MzWab7IMzMrH7Leg3CzMzq4QRhZmYFLbMJQlIvSWMkjZV0VrnjKYakLpKel/S2pNGSfpONX1PS05Lez/52LHesjZHUTtLrkh7NhjeW9Gr2edyX3SK+1ZK0hqQhkt6V9I6kXZa2z0HSb7Pv0VuS7pH0rdb+OUgaKGlq9rCx3LiC+13Jtdm2jJK0ffkir6me7fhL9n0aJekhSWvklZ2dbccYST9qqTiXyQQhqR1wPdAb6A4cJql7eaMqykLgtIjoDuwMnJjFfRbwbER0A57Nhlu73wDv5A3/CfhrRGwGfAYcU5aoincN8EREfAfYlrQtS83nIGkD4BSgIiK2Jt2Svy+t/3MYBPSqNa6+/d6b9CyZbkB/oMDTrctmEHW342lg64jYBngPOBsg+x/vC2yVzXNDdgwruWUyQQA7AmMjYlxEfA3cCxxU5pgaFRGfRMR/s/dzSAelDUix355Ndjvwk7IEWCRJnYEfA7dkwwL2AnKPlG3V2yBpdWAP0vNMiIivI2IWS9nnQHoeTIfsaY4rAZ/Qyj+HiHiR9OyYfPXt94OAOyJ5BVhD0votEmgjCm1HRDwVEQuzwVdIT9KEtB33RsRXEfEhMJZ0DCu5ZTVBbABMyBuemI1bakjqCmwHvAqsGxGfZEWfAuuWK64iXQ38HqjKhtcCZuX9c7T2z2NjYBpwW9ZMdouklVmKPoeImARcCXxMSgyzgREsXZ9DTn37fWn+P/8l8Hj2vmzbsawmiKWapFWAB4BTI+Lz/LLska2t9txlSfsDUyNiRLljWQLtge2Bv0fEdsAX1GpOWgo+h46kX6YbA98GVqZuk8dSp7Xv92JIOpfUnHx3uWNZVhPEJKBL3nDnbFyrJ2l5UnK4OyIezEZPyVWds79TyxVfEXYDDpQ0ntS0txepPX+NrKkDWv/nMRGYGBGvZsNDSAljafoc9gE+jIhpEbEAeJD02SxNn0NOfft9qfs/l9QP2B84PKovUivbdiyrCWI40C07Y2MFUgfQ0DLH1Kisrf5W4J2I+N+8oqHAUdn7o4CHWzq2YkXE2RHROSK6kvb7cxFxOPA8cEg2WWvfhk+BCZK2yEbtTXp++lLzOZCalnaWtFL2vcptw1LzOeSpb78PBX6Rnc20MzA7rymq1ZHUi9T0emBEzMsrGgr0lbSipI1Jne6vtUhQEbFMvoD9SGcKfACcW+54iox5d1L1eRQwMnvtR2rDfxZ4H3gGWLPcsRa5PT2BR7P3m2Rf+rHA/cCK5Y6vkdh7AJXZZ/EPoOPS9jkAFwLvAm8BdwIrtvbPAbiH1GeygFSTO6a+/Q6IdLbiB8CbpDO2yr4NDWzHWFJfQ+5/+8a86c/NtmMM0Lul4vStNszMrKBltYnJzMwa4QRhZmYFOUGYmVlBThBmZlaQE4SZmRXkBGFWgKT/ZH+7Svp5My/7nELrMmttfJqrWQMk9QROj4j9mzBP+6i+n1Gh8rkRsUozhGdWUq5BmBUgaW729grg+5JGZs9PaJfdt394dt/+47Lpe0r6l6ShpCuSkfQPSSOyZy70z8ZdQbqD6khJd+evK7vi9y/Z8xnelHRo3rKHqfr5E3dnVz+blVT7xicxW6adRV4NIjvQz46IHSStCLwk6als2u1J9/P/MBv+ZUTMlNQBGC7pgYg4S9JJEdGjwLr+h3SF9rZAp2yeF7Oy7UjPA5gMvES6b9K/m3tjzfK5BmHWNPuS7u8zknSr9bVI98YBeC0vOQCcIukN0r39u+RNV5/dgXsiYlFETAFeAHbIW/bEiKgi3YahazNsi1mDXIMwaxoBJ0fEkzVGpr6KL2oN7wPsEhHzJA0DvrUE6/0q7/0i/L9rLcA1CLOGzQFWzRt+Ejghu+06kjbPHhZU2+rAZ1ly+A7pEbE5C3Lz1/Iv4NCsn2Nt0lPrWuaunWYF+FeIWcNGAYuypqJBpGdXdAX+m3UUT6PwYzmfAI6X9A7pDpyv5JUNAEZJ+m+kW53nPATsArxBumvv7yPi0yzBmLU4n+ZqZmYFuYnJzMwKcoIwM7OCnCDMzKwgJwgzMyvICcLMzApygjAzs4KcIMzMrKD/BxdGEgVf7mssAAAAAElFTkSuQmCC", + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAYIAAAEWCAYAAABrDZDcAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/MnkTPAAAACXBIWXMAAAsTAAALEwEAmpwYAAAsi0lEQVR4nO3dd5wV5fXH8c+hCCgg6CIgUkRBxYLgqiiKGHvvsZCgYkSNjahR0hRboon+YsEEiQWNSuxojChWsOuCoCiKYANFQDoIwsL5/fHMunfZdpfd2dm7832/Xve1c+fMnTkz9+6cO8/MfcbcHRERSa8GSScgIiLJUiEQEUk5FQIRkZRTIRARSTkVAhGRlFMhEBFJORWClDKzj8ysfwzzPcPMXq/p+cbNzDqZ2XIzaxjDvF81s1/V9HyzWG5s6yT1iwpBSrn7ju7+atJ51BXu/rW7N3f3tUnnUlPq0jqZWRczczNrFMO8rzWzD82s0MyG1fT800CFQHJCHDuQXFeXtknCRx0zgMuB/yWYQ05TIchx0besbTOejzKz66LhPDN7xswWm9lCM3vNzBpEsS/N7MBoeJiZPWJm95vZsqjZKD9jnr3N7P0o9qiZPVy0jCzyu9XMZpnZUjObaGb7ZsSamdl9ZrbIzKaZ2eVmNjsj/qWZXWFmHwArzKyRmQ01s5lRLh+b2XEZ059hZq+b2U3RPL8ws8My4lub2YTotS+a2R1m9kAUK/GN1czOjHJaZmafm9k5GfPpb2azzexSM5tnZnPM7MwqvGeDonkvMrPnzaxzlttrmJk9ZmYPmNlS4Iyo2elaM3sjynWcmeWVs07lThvFB5rZV2a2wMz+lPkZKWMdRpnZP83sWTNbAexvZkdEn5Ol0ToMy3jJhOjvYgvNVXtVti2y5e73uftYYFlVXyuBCkH9dikwG2gDtAV+D5TXp8jRwH+AVsDTwHAAM9sIeBIYBWwGjAaOK3MOZXsP2DV67UPAo2bWNIpdBXQBugIHAb8o4/WnAkcArdy9EJgJ7AtsClwNPGBm7TOm3xP4FMgD/grcbWYWxR4C3gU2B4YBv6wg73nAkUBL4Ezg72bWOyPeLsqhA3AWcIeZta5gfgCY2TGE9+F4wvvyGmGbFqloewEcAzxGeJ8ejMadFuW4BbARcFkFKZQ5rZn1AP4BDADaZ6xbRU4DrgdaAK8DK4CBUW5HAOeZ2bHRtP2iv62i5qq3KtsWZvaBhS8xZT3+UUluUhXunnMP4B7CP+rULKf/OfAx8BHwUNL51/C2cGDbjOejgOui4WuApzLjGdN9CRwYDQ8DXsyI9QBWRsP9gG8Ay4i/XrSMMuZ7BvB6BfkuAnpGw58Dh2TEfgXMXi/HQZWs/2TgmIxlz8iIbRxtn3ZAJ6AQ2Dgj/gDwQDTcJZq2UTnLGQNcHA33B1ZmTht9HvuU89pXgV9Fw2OBszJiDYAfgM5ZbK9hwIQy5v3HjOe/Bp4ra50qmfZKYPR622510WekjLxGAfdX8t7cAvy9vO1b1W2Rxf/CA8Cw6vw/pfWRq0cEo4BDs5nQzLoBvwP6uvuOwJD40qpz/kZoPx0XNW8MrWDa7zKGfwCaRk0KWwLfePSfFpmVbQJmdll06L/EzBYTvmkWNUdsud68yppviXFR88Xkom+GwE4Z8yuxHu7+QzTYPFrWwoxxFa6HmR1mZm9baFJbDBy+3nIWeDhCKfJDtJzKdAZuzch/IWBE374r2V7l5bz+e1dRHuVNW+K9iLbTgkrWZf33Zk8ze8XM5pvZEuDc9XJfX4XbQmpPThYCd59A+ND8xMy2MbPnonbV18xs+yh0NnCHuy+KXjuvltON2w+Eb29F2hUNuPsyd7/U3bsSmn4uMbMDqjj/OUCHjOYVgI7ZvDBq376ccETW2t1bAUsI/+xF896qkvn+VICi9uN/ARcAm0fzm5oxv8rWYzMzy9xWZa6HmTUBHgduAtpGy3k2y+VUZhZwjru3yng0c/c3s9heUH7TXnWVeC/MrBmhCa0i6+fyEKFZsaO7bwqMoDj3svIud1tEOXwUnU8o6zFiA9ZRypGThaAcI4EL3X03QrtnURtid6B7dILsbTPL6kgih0wGTjOzhtG67VcUMLMjzWzbaCe+BFgLrKvi/N+KXneBhZO1xwB7ZPnaFoTmmPlAIzO7ktDmXuQR4Hdm1trMOhB28BXZhLBDmQ/hhC7hiKBS7v4VUAAMM7ONopOVR5Uz+UZAk2g5hRZOOB+czXKyMIKwzjsCmNmmZnZSFKtse8XpMeAoM9s7Oi80jKoXvhaEo65VZrYH4RxCkfmEz17XjHEVbQs8XOLcvJzHuUXTmVnj6DxKA8J2a2r67USV1ItCYGbNgb0JJ9YmA3cSTngBNAK6Edp1TwX+ZWataj/L2FxM2KEtJpzoG5MR6wa8CCwn7ND/4e6vVGXm7r6acDLvrGgZvwCeAX7M4uXPA88B04GvgFWUbE64hnAy+4soz8cqmq+7fwzcHK3LXGBn4I0qrM4AYC9Ck8d1wMNlLc/dlwEXEQrVIsIO7ekqLKdc7v4kcCPwHwtX/kwFiq5sqmx7xcbdPwIuJFwwMIfwmZlHdu9zkV8D15jZMsI5h0cy5v8D4cTyG1FTUJ9KtkVV/ItwzuZU4A/RcEUXAsh6rGTTb+4wsy7AM+6+k5m1BD519/ZlTDcCeMfd742evwQMdff3ajXhesTM3gFGFG3TGpzvecAp7r5fpRPXzPIeBj5x96tqY3m5JPpytRjo5u5fJJyOxKxeHBG4+1Lgi6LDSgt6RuExhKMBLFwz3Z1wtYpkycz2M7N2UdPQ6cAuhG+u1Z1vezPra2YNzGw7wuWuT1Z3vhUsb/foXFKDqBntGEoeQaWamR1lZhub2SaE8yMfEq7cknouJwuBmY0mNA9sZ+GHPWcRDvvPMrMphMtEj4kmfx5YYGYfA68Av3X3yq6GkJK2A6YQviFeCpzo7nNqYL4bEZrxlgEvEy51jfP68HaESyiXA7cB57n7+zEuL9ccA3wbPboRjs5ys8lAqiRnm4ZERKRm5OQRgYiI1Jw602lVtvLy8rxLly5JpyEiklMmTpz4vbu3KSuWc4WgS5cuFBQUJJ2GiEhOMbOvyoupaUhEJOVUCEREUk6FQEQk5VQIRERSToVARCTlVAhERFJOhUBEJOVy7ncE1fHMM/DuuyXHNWoEV14Zhh9/HKZMKRnfeGMYGt3Xa/RomDatZLx1a/jNb8LwfffBzJkl423bwvnnh+GRI2H27JLxjh3h7LPD8O23w/z5JePbbgsDB4bhm2+GJUtKxnfcEU4+OQz/+c+walXJeK9ecFx0h+Fhw2Ddencj6NMHDj8c1qyBa6+llH794MADYcUKuPHG0vGDDoJ994WFC+GWW0rHjzgC9twTvvsO/lFGL0LHHw+77gpffw133VU6fsop0KMHfPYZ/PvfpeMDB4ZtNHUqPPJI6fjZZ4dtPGkSjBlTOn7BBbDFFvDWWzB2bOn4JZdAq1Ywfjy89FLp+O9+B82awbhx8PrrpeNXXQUNG+qzp89e6XhVP3tbbQWDB5eerkYkfa/Mqj52220331Dnn+9uVvLRtGlxfODA0vE2bYrjxx1XOt61a3H8oINKx3v2LI736VM63rdvcXzHHUvHDz20ON6pU+n4SScVx1u3Lh0fNKg43rhx6fjFF4fYypWlY2buf/hDiM+bV3b8L38J8Zkzy44PHx7ikyeXHb/vvhB//fWy4088EeJjx5YdHzcuxB95pOz4W2+F+N13lx2fOjXEb7ml7PhXX4X4ddeVHV+4MMSHDi07vnq1Pnv67NXMZ69PH68WoMDL2a+a51inc/n5+a5fFouIVI2ZTXT3/LJiOkcgIpJyKgQiIimnQiAiknIqBCIiKRdbITCze8xsnplNLSfe38yWmNnk6HFlXLmIiEj54vwdwShgOHB/BdO85u5HxpiDiIhUIrYjAnefACyMa/4iIlIzkj5HsJeZTTGzsWa2Y3kTmdlgMysws4L56//8UUREqiXJQjAJ6OzuPYHbgTHlTejuI909393z27Qp85abIiKygRIrBO6+1N2XR8PPAo3NLC+pfERE0iqxQmBm7czMouE9olwWJJWPiEhaxXbVkJmNBvoDeWY2G7gKaAzg7iOAE4HzzKwQWAmc4rnW8ZGISD0QWyFw91MriQ8nXF4qIiIJSvqqIRERSZgKgYhIyqkQiIiknAqBiEjKqRCIiKScCoGISMqpEIiIpJwKgYhIyqkQiIiknAqBiEjKqRCIiKScCoGISMqpEIiIpJwKgYhIyqkQiIiknAqBiEjKqRCIiKScCoGISMqpEIiIpJwKgYhIyqkQiIiknAqBiEjKqRCIiKScCoGISMo1SjqB2nTx2Iu5c+KdJcY1adSEJUOXAHDWU2fx4IcPlojnbZzH7EtmA/DzR3/O058+XSLepVUXPrngEwAOf/BwXv7i5RLxndvuzHtnvwdAv3v78e4375aI79VxL145/RUAet3Zi2nzp5WIH7TNQfz31P8C0O32bsxaMqtE/PgdjuehEx4CoN1N7Vi8anGJ+MCeAxl51EgAmv+5OYXrCkvEz9/9fG4+5GZWFa6i1Q2tWN8Vfa/g6v2vZv6K+XT8e8dS8Wv3v5bf9v0tXyz6gh3u2KFU/JZDb+Hc/HP5YO4H7PGvPUrF7zr6Ln6xyy94c9ab/Oy+n5WKP3ziwxyz/TGMmzmOo0cfXSr+v9P+xwFdD+Dxjx9nwBMDSsXHnzGePbfak/sm38c5z5xTKj7pnEn0aNOD4e8O57Jxl5WKT79wOp027cQNr9/AsFeHlYrPuXQOrZu15o8v/5Gb3rypVHzZ75bRuGFjffb02SsVnzToHXrYFgx/53Yu+/BmMAuBtWvBnelfHkWn71ZyQ6upDNv+O/bovDcTzpxQaj41IVWFYP+t96dZ42YlxjVqULwJDt7mYNps0qZEfJPGm/w0fFT3o+jaumuJ+GbNNvtp+PgdjmeXtruUiLdr3u6n4ZN3PJm9O+5dIt55084/Df9yl18yb8W8EvHum3f/aXjQroNY8uOSEvGdt9j5p+Hz8s9jZeHKEvH8LfN/Gr5oz4tY5+tKxIvyaWgNGdJnCOsrijdr3KzM+O4ddgegZZOWZcZ7tu0JQJuN25QZ79GmBwBbttiyzPg2m20DhO1UVrzTpp0A6LZ5tzLj7Vu0/2k5ZcU3b7Y5AL3a9Soz3rJJSwD26LBHmfEmjZoA0LdjXwr7FJaKN7Bw0K3PXoo+ewsXwuLFtH/hTVj4Oj0WfMiQjXaDffYN8TFj4Msv2fyGXWEF9OoIQ/ZrB6efHuKj7oVFi2k5YxK0ascerTowpEFXOu54cqkcaoq5ezwzNrsHOBKY5+47VTDd7sBbwCnu/lhl883Pz/eCgoKaS1REpCzusHQpzJ0L338Pe0eF9NFH4YUXYN688Jg/H9atg5kzQ/yEE+CJJ4rn07gx7LwzTJwYnv/tb/D115CXB1tsEf527Ah9+oT42rXQsGGNr46ZTXT3/LJicR4RjAKGA/eXN4GZNQRuBMbFmIeISLGiHfy338I33xT//c1voGlTuPVW+PvfQwFYtar4datWQZMm8Oab8NRTYSfeti3k50P79mG+ZnDllXDppSGWlwctWxY3+wD89rcV5xdDEahMbIXA3SeYWZdKJrsQeBzYPa48RCRlFi2CqVOLd/JFjxtvDN+8b7sNhgwp/bqTT4auXWHLLWHffaFdu7AzL/rbILq25v/+LxSK8vTsGctqxSmxcwRm1gE4DtgfFQIRqciaNeEb90YbhR38mDHFO/iiHf6IEbDPPqHZ5uSM9vSmTaFDh9C807Ej9OsXmmc6dAg7/Q4dwjf6TaJzMiedFB7lyfx2X08kebL4FuAKd19nlWxYMxsMDAbo1KlT/JmJSO1Ytw4WLAg78ry8sFP+9lu45pqS3+jnzoVRo2DgQPjqK7jggtCE0r592Jl37x6abQD22w/GjSveyW+6acmdd69e4SE/ie1kMUDUNPRMWSeLzewLoOjdyQN+AAa7+5iK5qmTxSI5wh0WLw477lmzwo55t93CuKOPDuO+/RZWrw7TX389/P73YfxuuxXvyLfcMjyOPTbswH/8McwjLy+R9vRcldTJ4gq5+9ZFw2Y2ilAwxiSVj4hU0dq1YUf+1Vfw5ZfQpg0cckgoALvuCp9/DsuXF09/7rlhB9+8efiG3rcvbLVV8c5+113DdB07hqtxytOkSWizlxoTWyEws9FAfyDPzGYDVwGNAdx9RFzLFZEa4h6abWbOhBkzwrfvU04Jsb594d13oTDjtxNHHBEKgRnsvjv07w+dOkHnzmHnvk24Lp9GjWD8+FpfHSlfrE1DcVDTkEgNWrcutMXPnBmaW449Now//fRwQnbp0uJpd9kFpkwJw1dfHZpoOneGLl3Co2NH2HjjWk1fslcnm4ZEpJasWVPcfHPggWHcDTfA/feH5psffwzjWrUqLgQ77ggtWsC224Zv8ttuC1tvXTzPq66qxRWQuKkQiNQHRd/s27cPTS9PPAH/+hd8+mn4FevatWG6pUvDDn7jjWG77UJzTtGOfpttin8Udfnlya6P1CoVApFc9Mkn8MgjMG1aGP7sM1ixAj7+GHbYITTzzJ0Le+wBAwYU7+yLLrG86KLwEEGFQKRuWr067OQ/+ijs3D/+OAz/85/ws5+FHf+wYeFk7A47hGvnt98+XFIJMGhQeIhkQYVAJElr14YTtR9+GHb0/fqFq22mTg2XWkK4Wqdbt9Bu3yzqwfTgg8OlmTo5KzVAhUCktnz/PfzwQ/gWv3w57L9/2PmvjLpvNoPrrguFoEcP+M9/wt/MX80WWf+5SDWoEIjE5fnn4Z13oKAA3n8fZs+GU0+Fhx4K/dp06hQ6N9t55/Do0aP4G37TpiX7yxGJkQqBSHUtXAjvvRceP/4I114bxl9xBXzwQbg6p1+/0D1C374hZgaPP55cziIZVAhEqqKwMFyeCeFa/LvuKr4hCYSrdIoKwaOPhi6MW7So/TxFqkCFQKQ87qEDtLffLn5MmRIuy2zePLTT9+wJZ58dulTYbbfQ02WRbt2Sy12kClQIRIqsXh3a8rfbLvzK9s474bzzQqxp03Anql//OtypqnnzcEer3/wm0ZRFaoIKgaTXjz/CG2+EDtDGjw8ndletCj/UOumkcL3+7bfDXnuFfnYaN046Y5FYqBBIeqxaBW+9Fdrs8/NDlwwHHBBuQdirV+gmuW/fcFknhMs2u3dPNmeRWqBCIPVbQQG8+GJ4vPFGKAYDBsADD4RO1J5/Hvbcs2TbvkjKqBBI/TJrVuia4eCDw/OBA8PznXcO3/gPOCBcuw/hEs6i6URSTIVActuqVTBhAowdG77dT5sWvt0vWBC6ZnjggXD3q3btks5UpM5SIZDc89VX4faGjRqFm5z/5S/hUs5+/eCss8Jdsho0CNP27p1sriI5QIVA6r5168JtEf/7X3j66dAh24svhmae00+HffYJ/fOoAzaRDaJCIHXbjBnhSp5580JTzz77wE03hWv9IfwtGhaRDaJCIHXHypXw7LOha4Zu3UJXDVtvDUceGb79H3YYtG6ddJYi9Y4KgSRv/Hi4995we8Vly6BNm+Jv+Q0bwt13J5ufSD1XbiEwsw8BLy/u7rvEkpHUf+6hH/6ddgrP774bnnoKTjwxXOO/337FHbuJSOwq+m87Mvp7fvT339HfAfGlI/XaF1+EvvgfeCDcZ3fKlNB1w9/+Fvr1Kbr7lojUqnILgbt/BWBmB7l7r4zQUDObBAyNOzmpJ6ZPD/fPfeON8HzffWHIEOjcOTxv2zax1EQku3MEZmZ93f2N6MneQIN405Kc5g6vvx5+7HXQQeEHXWvWwJ//DKedVlwARKROyKYQnAXcY2abAgYsAgbFmpXkpu+/h/vvDzdrmTYt9Np50EGhy+Z33kk6OxEpR6WFwN0nAj2jQoC7L4k9K8k9118ffuW7enUoAPfcAz//edJZiUgWKi0EZtYEOAHoAjQyMwDc/ZpKXncP4YTzPHffqYz4McC1wDqgEBji7q9XMX9JyvLl4aTvCSeEyz179IBzzoHBg4uvBhKRnJBN09BTwBJgIvBjFeY9ChgO3F9O/CXgaXd3M9sFeATYvgrzlyTMmQO33AIjRsDSpaFPn8GD4bjjwkNEck42hWArdz+0qjN29wlm1qWC+PKMp5tQwW8WpA5YuzbcpnHUqHAD9xNPDFf+9OmTdGYiUk3ZXP3zppntHMfCzew4M/sE+B8VnIA2s8FmVmBmBfPnz48jFSnP55+Hvw0bwqJF4TLQ6dPh4YfDuYCoqVBEcpe5V/xF3Mw+BrYFviA0DRng2fyyODoieKascwTrTdcPuNLdD6xsnvn5+V5QUFDZZFId7jBuHNx4Y+j+Yfp02GabMF47fpGcZGYT3T2/rFg2TUOH1XA+pUTNSF3NLM/dv497eVKOwkJ47LFQACZPDtf///WvsMUWIa4iIFIvZVMIYmm7N7NtgZnRyeLeQBNgQRzLkizNnx/6999669D/z4AB4YYvIlKvZVMI/kcoBgY0BbYGPgV2rOhFZjYa6A/kmdls4CqgMYC7jyBckjrQzNYAK4GTvbJ2KqlZq1bByJHw9tuhD6D27cNwz57Fd/gSkXovmx+UlThRHH17/3UWrzu1kviNwI2VzUdiUFgYun2+5hqYPTvc3WvFCthkE+jVq9KXi0j9UuWvfe4+CdgzhlykNnz4Yejxc/Bg2GqrcMvHV14JRUBEUimbXxZfkvG0AdAb+Da2jCQeK1eGbp67dAknga+/Ho49VieARSSrcwQtMoYLCecMHo8nHalxCxbA738fegOdPBlatAhHASIikWzOEVwNYGbNo+fLK36F1Anr1oUrf4YODV1BXHBB6Aq6ceOkMxOROiabpqGdCHcn2yx6/j1wurtPjTk32VDz5oV+f958E/r1gzvuUEdwIlKubJqGRgKXuPsrAGbWPxq3d3xpSbVstlloAho1CgYO1HkAEalQNlcNbVJUBADc/VVCJ3FSl7zxRvj2v2BBuPH7c8+FH4epCIhIJbIpBJ+b2Z/MrEv0+CPwedyJSZZWrICLLgr3Af76a5g1K+mMRCTHZFMIBgFtgCeiRxt0q8q6oaAAeveG22+H88+HqVNh112TzkpEckw2Vw0tAi6KblW5zt2XxZ+WZOUvf4EffoCXX4b99086GxHJUdlcNbQ7cA/R7wnMbAkwKLqXsdS2WbPCpaGdO8Odd4Y+gTbbLOmsRCSHZdM0dDfwa3fv4u5dgPOBe2PNSsr2zDOh6eecc8LzvDwVARGptmwKwVp3f63oSXSD+cL4UpJSCgvDD8OOOgo6dYLhw5POSETqkXKbhqJeRgHGm9mdwGhCd9QnA6/Gn5oA8P334f7A48eHjuJuvRWaNk06KxGpRyo6R3Dzes+vyhjWfQNqy0YbhS4i7r8ffvnLpLMRkXqo3ELg7roMJUnPPQf77QctW8J774Wbx4uIxEC3oapr3EMX0YcdBjfdFMapCIhIjLLpa0hqy+rVcPbZoRlowAC4/PKkMxKRFKjwiMDMGpiZOperDUuXwuGHhyJw9dXw73/rxvEiUisqPCJw93VmdgegG9nG7dtvQxcRo0aFzuJERGpJNk1DL5nZCcAT7q6rhWraokXQqhVsvz3MnKl7B4tIrcvmZPE5wKPAajNbambLzGxpzHmlw2efhV8K33BDeK4iICIJyKbTuRaVTSMb4KOP4IADYO1aOOSQpLMRkRSr9IjAgl+Y2Z+i5x3NbI/4U6vHpk6F/v1Dh3ETJoSupEVEEpJN09A/gL2A06Lny4E7Ysuovlu+HA46KPxiePx42GGHpDMSkZTL5mTxnu7e28zeh3B/AjPbKOa86q/mzcONZHbZBbp1SzobEZGsjgjWmFlDov6FzKwNsC7WrOqjb76BF14IwyeeCN27J5uPiEgkm0JwG/AksIWZXQ+8Dvy5sheZ2T1mNs/MppYTH2BmH5jZh2b2ppn1rFLmuWTp0tBlxCmnwDLd4E1E6pZsrhp60MwmAgcABhzr7tOymPcoYDhwfznxL4D9oqamw4CRwJ5ZZZ1LCgtDAfj449CRXAtdhCUidUs2t6q8FpgAjHL3FdnO2N0nmFmXCuJvZjx9G9gq23nnlEsugbFjYeRIOPDApLMRESklm6ahz4FTgQIze9fMbjazY2o4j7OAseUFzWywmRWYWcH8+fNreNExGjcunBi+9NLQmZyISB1k2fYaYWbtgJ8DlwGts/mhWXRE8Iy771TBNPsTLlHdx90XVDbP/Px8LygoyCrnxLnDww/DSSepK2kRSZSZTXT3/LJi2TQN3QX0AOYCrwEnApNqKLFdgLuAw7IpAjnjo49Cz6HbbhvOD4iI1GHZ/I5gc6AhsBhYCHzv7tW+eb2ZdQKeAH7p7tOrO786Y9EiOPro0G/Q5Mnh18MiInVYNlcNHQdgZjsAhwCvmFlDd6/w5K6ZjQb6A3lmNptwz+PG0TxHAFcSisw/zAygsLzDlpzhDoMGwddfh64jVAREJAdk0zR0JLAv0A9oBbxMaCKqkLufWkn8V8CvssoyV9xzD4wZAzffDHvtlXQ2IiJZyaZp6FDCjv9Wd/825nxy1+efw8UXw/77w5AhSWcjIpK1Stsu3P0C4FWgt5kdaWZbxJ5VLmrTJjQLjRqlJiERySnZdEN9EvAucBLh8tF3zOzEuBPLKe7hF8O33QadOiWdjYhIlWTz1fWPwO7ufrq7DwT2AP4Ub1o5ZNIk6NULptefC59EJF2yOUfQwN3nZTxfQHYFpP5buRJ+8QtYvBjy8pLORkRkg2RTCJ4zs+eB0dHzk4Fn40sph/zudzBtGjz/PGy2WdLZiIhskGx+R/BbMzsB6BuNGunuT8abVg548UW49Va48EI4+OCksxER2WDZHBHg7o8Dj8ecS2654w7Yfnu44YakMxERqZZyC4GZLSO6K9n6IcDdvWVsWeWCRx6BOXNg442TzkREpFrKLQTZ9C6aSjNmwOabQ+vWulRUROqFrJqGJLJ2behNtLAQ3n8fQh9JIiI5TYWgKu66CyZOhIceUhEQkXpDvwfI1uLF8Mc/wr776h4DIlKvqBBk67rrYMGCcMmojgZEpB5RIciGO3z5JZxxRuhOQkSkHtE5gmyYwWOPwerVSWciIlLjdERQmenTYebMMLzRRsnmIiISAxWCygwZAvvsA2vWJJ2JiEgsVAgq8tZbMHZsKAaNGyedjYhILFQIKnLddaF76fPPTzoTEZHYqBCUZ8oUePbZcDTQvHnS2YiIxEaFoDzvvKOjARFJBRWC8gweDF9/Da1aJZ2JiEisVAjKMndu+NusWbJ5iIjUAhWC9a1YATvsAFddlXQmIiK1QoVgfY8+CosWwYEHJp2JiEitiK0QmNk9ZjbPzKaWE9/ezN4ysx/N7LK48qiye++Fbt3Cj8hERFIgziOCUcChFcQXAhcBN8WYQ9XMmAETJsCZZ6qHURFJjdgKgbtPIOzsy4vPc/f3gLrTd8N990GDBjBwYNKZiIjUmpzofdTMBgODATrFeZ/gyy6DPn2gQ4f4liEiUsfkxMlidx/p7vnunt+mTZv4FrTppnDEEfHNX0SkDsqJQlArrroKRo1KOgsRkVqnQgCwahXcfDO8/XbSmYiI1LrYzhGY2WigP5BnZrOBq4DGAO4+wszaAQVAS2CdmQ0Berj70rhyKtdLL4Ufkh13XK0vWkQkabEVAnc/tZL4d8BWcS2/SsaMgZYtYf/9k85ERKTWqWlo7Vp4+mk47DDdilJEUkmF4PvvoUcPOOGEpDMREUlETvyOIFZt28IrrySdhYhIYnRE8MMPSWcgIpKodBeCBQvCjWfuvjvpTEREEpPuQvDqq7BmTThHICKSUukuBC+/HG5Mn5+fdCYiIolJdyF46SXo1w8aN046ExGRxKS3EHzzDXz6KfzsZ0lnIiKSqPRePtq0Kfz97+ptVERSL72FYPPNYciQpLMQEUlcepuGXngB5sxJOgsRkcSlsxCsXBn6FrrjjqQzERFJXDoLwZQpobM5XTYqIpLSQlBQEP6qEIiIpLgQtG2rm9SLiJDmQrDbbmCWdCYiIolL5+WjTzwBhYVJZyEiUieksxB07550BiIidUb6mobefx+GD4dly5LORESkTkhfIfjf/+DCC3V+QEQkkr5C8Omn0LFj6H5aRERSWAi+/BK6dk06CxGROiOdhaBLl6SzEBGpM9JVCNasCfch6Nw56UxEROqMdF0+2rgxLFkS+hkSEREgbYUAoEWLpDMQEalTYmsaMrN7zGyemU0tJ25mdpuZzTCzD8ysd1y5/GT8eLjiCv2GQEQkQ5znCEYBh1YQPwzoFj0GA/+MMZfgrbfgr3+Fhg1jX5SISK6IrRC4+wRgYQWTHAPc78HbQCszax9XPgDMnRt+P7DxxrEuRkQklyR51VAHYFbG89nRuFLMbLCZFZhZwfz58zd8ifPmwRZbbPjrRUTqoZy4fNTdR7p7vrvnt2nTZsNnNHduuA+BiIj8JMlC8A3QMeP5VtG4+CxfriMCEZH1JHn56NPABWb2H2BPYIm7z4l1iW+/rfsQiIisJ7ZCYGajgf5AnpnNBq4CGgO4+wjgWeBwYAbwA3BmXLmU0Ch9P50QEalIbHtFdz+1krgD58e1/FJWroSzz4bTT4eDDqq1xYqI1HU5cbK4RixeDA8+CDNnJp2JiEidkp5CsHRp+NuyZbJ5iIjUMSoEIiIpl55CUNS/kDqdExEpIT2FoLAQ8vJg002TzkREpE5Jz7WUBx8M1emeQkSknkrPEYGIiJRJhUBEJOVUCEREUk6FQEQk5VQIRERSToVARCTlVAhERFJOhUBEJOVUCEREUs7CbQFyh5nNB77awJfnAd/XYDo1ra7nB3U/R+VXPcqveupyfp3dvcybvudcIagOMytw9/yk8yhPXc8P6n6Oyq96lF/11PX8yqOmIRGRlFMhEBFJubQVgpFJJ1CJup4f1P0clV/1KL/qqev5lSlV5whERKS0tB0RiIjIelQIRERSLjWFwMwONbNPzWyGmQ2txeV2NLNXzOxjM/vIzC6Oxg8zs2/MbHL0ODzjNb+L8vzUzA6Jex3M7Esz+zDKoyAat5mZvWBmn0V/W0fjzcxui3L4wMx6Z8zn9Gj6z8zs9BrKbbuMbTTZzJaa2ZAkt5+Z3WNm88xsasa4GtteZrZb9H7MiF5rNZDf38zskyiHJ82sVTS+i5mtzNiOIyrLo7x1rWZ+NfZ+mtnWZvZONP5hM9uoBvJ7OCO3L81sclLbLxbuXu8fQENgJtAV2AiYAvSopWW3B3pHwy2A6UAPYBhwWRnT94jyawJsHeXdMM51AL4E8tYb91dgaDQ8FLgxGj4cGAsY0Ad4Jxq/GfB59Ld1NNw6hvfxO6BzktsP6Af0BqbGsb2Ad6NpLXrtYTWQ38FAo2j4xoz8umROt958ysyjvHWtZn419n4CjwCnRMMjgPOqm9968ZuBK5PafnE80nJEsAcww90/d/fVwH+AY2pjwe4+x90nRcPLgGlAhwpecgzwH3f/0d2/AGYQ8q/tdTgGuC8avg84NmP8/R68DbQys/bAIcAL7r7Q3RcBLwCH1nBOBwAz3b2iX5bHvv3cfQKwsIzlVnt7RbGW7v62hz3F/Rnz2uD83H2cuxdGT98GtqpoHpXkUd66bnB+FajS+xl96/4Z8Fgc+UXz/zkwuqJ5xLn94pCWQtABmJXxfDYV74xjYWZdgF7AO9GoC6JD9XsyDg/LyzXOdXBgnJlNNLPB0bi27j4nGv4OaJtgfkVOoeQ/YF3ZflBz26tDNBxXngCDCN9Qi2xtZu+b2Xgz2zcj7/LyKG9dq6sm3s/NgcUZRa+mt9++wFx3/yxjXF3ZfhssLYUgcWbWHHgcGOLuS4F/AtsAuwJzCIebSdnH3XsDhwHnm1m/zGD0jSbR64yjdt6jgUejUXVp+5VQF7ZXeczsD0Ah8GA0ag7Qyd17AZcAD5lZy2znV4PrWmffz/WcSskvI3Vl+1VLWgrBN0DHjOdbReNqhZk1JhSBB939CQB3n+vua919HfAvwqFuRbnGtg7u/k30dx7wZJTL3Ojwtugwd15S+UUOAya5+9wo1zqz/SI1tb2+oWSzTY3laWZnAEcCA6IdEFGTy4JoeCKh3b17JXmUt64brAbfzwWE5rdGZeRdLdE8jwcezsi7Tmy/6kpLIXgP6BZdTbARoYnh6dpYcNSmeDcwzd3/L2N8+4zJjgOKrlB4GjjFzJqY2dZAN8JJp1jWwcw2MbMWRcOEk4pTo3kXXclyOvBURn4DLegDLIkOc58HDjaz1tFh/cHRuJpS4ptYXdl+GWpke0WxpWbWJ/rsDMyY1wYzs0OBy4Gj3f2HjPFtzKxhNNyVsL0+rySP8ta1OvnVyPsZFbhXgBNrMr/IgcAn7v5Tk09d2X7VlvTZ6tp6EK7emE6o2H+oxeXuQzj0+wCYHD0OB/4NfBiNfxpon/GaP0R5fkrGFSNxrAPhqosp0eOjovkS2lpfAj4DXgQ2i8YbcEeUw4dAfsa8BhFO5s0AzqzBbbgJ4ZvephnjEtt+hII0B1hDaPs9qya3F5BP2BHOBIYT9QBQzfxmENrUiz6DI6JpT4je98nAJOCoyvIob12rmV+NvZ/RZ/rdaJ0fBZpUN79o/Cjg3PWmrfXtF8dDXUyIiKRcWpqGRESkHCoEIiIpp0IgIpJyKgQiIimnQiAiknIqBJJaZvZm9LeLmZ1Ww/P+fVnLEqmLdPmopJ6Z9Sf0fHlkFV7TyIv7sykrvtzdm9dAeiKx0xGBpJaZLY8GbwD2tdCf/G/MrKGF/vvfizpBOyeavr+ZvWZmTwMfR+PGRJ31fVTUYZ+Z3QA0i+b3YOayol8Y/83Mplroq/7kjHm/amaPWbhvwIPRL1JFYteo8klE6r2hZBwRRDv0Je6+u5k1Ad4ws3HRtL2BnTx0iQwwyN0Xmlkz4D0ze9zdh5rZBe6+axnLOp7QsVpPIC96zYQo1gvYEfgWeAPoC7xe0ysrsj4dEYiUdjChf6DJhC7DNyf0IQPwbkYRALjIzKYQ+vjvmDFdefYBRnvoYG0uMB7YPWPesz10vDaZcNMTkdjpiECkNAMudPcSneZF5xJWrPf8QGAvd//BzF4FmlZjuT9mDK9F/59SS3REIALLCLcRLfI8cF7UfThm1j3qmXV9mwKLoiKwPeG2hEXWFL1+Pa8BJ0fnIdoQbov4bo2shcgG0jcOkdDj5dqoiWcUcCuhWWZSdMJ2PmXfTvA54Fwzm0boGfPtjNhI4AMzm+TuAzLGPwnsRejt1YHL3f27qJCIJEKXj4qIpJyahkREUk6FQEQk5VQIRERSToVARCTlVAhERFJOhUBEJOVUCEREUu7/Ae/RNOdxyW30AAAAAElFTkSuQmCC", "text/plain": [ "<Figure size 432x288 with 1 Axes>" ] @@ -143,12 +128,88 @@ ], "source": [ "plt.plot(p,g,'r--',p,c,'g--',p,u,'b--')\n", - "plt.ylabel('lower bound, lr=0.5')\n", + "plt.ylabel('lower bound')\n", "plt.xlabel('iteration')\n", "# yticks = np.arange(1,20,1)\n", "# plt.yticks(yticks, yticks**2)\n", "# plt.title('Lagrangian Relaxation for problem problem_t_pricer_0_2.lp, with 26,000 variables')\n", - "plt.title('6flights, four sectors, opt using lagrangian r.')\n", + "plt.title('using lagrangian learning rate=1')\n", + "# plt.figure(p,g,'r-')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "18990\n", + "\n" + ] + } + ], + "source": [ + "file = open(\"time.txt\",\"r\")\n", + "maxiter = file.readline()\n", + "print(maxiter)\n", + "# niter = (float(f))\n", + "# print(niter)\n", + "t = [0]*int(maxiter)\n", + "max = 0.0000\n", + "for i in range (0, int(maxiter)):\n", + " t[i]= file.readline()\n", + " t[i]=float(g[i])\n", + " if t[i]>max:\n", + " max=t[i]\n", + "file.close()\n" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Text(0.5, 1.0, 'using lagrangian stepsize=1')" + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAYIAAAEWCAYAAABrDZDcAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/MnkTPAAAACXBIWXMAAAsTAAALEwEAmpwYAAAqOklEQVR4nO3de7xVc/7H8denK0pq6pBUUkKJpENI5BJpkJQhEYVo3G+DHyoyjMFoXBMSYzQYuQwyjWulDCcTQiXlErroXpKOPr8/vuuwT+e2q7P3Oues9/Px2I/2Xp+91/rs1T77s9f3u9b3a+6OiIgkV7W4ExARkXipEIiIJJwKgYhIwqkQiIgknAqBiEjCqRCIiCScCoFsEjP72My6ZmC9Z5rZ5PJeb6aZWXMzW21m1ePOpbyZWRczmxV3HpJ5KgSySdx9T3d/M+48Kgp3/8rd67r7z9naZraKprtPcvfdM70dADOrZWb/NLMvzMwz8WNDSqZCIFWamdWIOwdJ22TgNGBB3IkkjQpBQkW/unZNeTzGzG6K7jcysxfNbLmZLTWzSWZWLYp9YWZHRveHmdlTZvaYma2Kmo1yU9a5r5n9L4o9bWZPFmwjjfz+amZfm9lKM5tmZl1SYlub2aNmtszMPjWzP5jZ/JT4F2Z2lZl9CKwxsxpmdrWZfR7l8omZ9Up5/plmNtnMbo/WOc/MjkmJ72JmE6PXvmpm95rZ41GsRbQva0SPB0Q5rTKzuWZ2bsp6uprZfDO73MwWmdl3ZjaglH1wZrSOVVFO/cysDTASODBqkloePbd2lP9XZrbQzEaa2dYbbff/zOz7aP/0S9lOj2ifrDKzb8zsitTXRfdPjrZXcFtnZm+Wte10uftP7j7C3ScDWTu6kkCFQIpzOTAfyAF2AP4PKGkskuOBfwD1gReAeyAc6gPPAmOA3wBjgV7FrqF47wH7RK99AnjazLaKYkOBFkBLoBvhV+TG+gK/Beq7ez7wOdAF2A64AXjczHZMeX4nYBbQCPgz8LCZWRR7AngXaAgMA04vJe9FwLFAPWAAcKeZ7ZsSbxzlsBNwFnCvmTXYeCVmVge4CzjG3bcFDgKmu/unwHnA1KhJqn70kj8BuxH22a7R+odstN1G0fIzgFFmVtDs8zBwbrSddsDrG+fj7k9G26sLNAHmEv5PS922hT6U5aXcTi1lX0q2uHuluwGjCX9wM9J8/u+AT4CPgSfizr8i3Ahf7LumPB4D3BTdvxF4PjWe8rwvgCOj+8OAV1NibYG10f1DgG8AS4lPLthGMes9E5hcSr7LgPbR/bnA0Smxs4H5G+U4sIz3Px3ombLtOSmxbaL90xhoDuQD26TEHwcej+63iJ5bo4TtPAdcHN3vCqxNfW70OT6gmNfVAZYDvYGtS9tXgAFrgFYpyw4E5qVsNx+okxJ/Crg+uv8VcC5Qb6PtdE3dr9GyasCLwP3pbHszP5vzga5x/40k6VZZjwjGAN3TeaKZtQauATq7+57AJZlLq8q4DZgDTIiaJq4u5bmp7bk/AFtFzSRNgG88+suOfJ1uAmZ2RdTEsiJq/tiO8IuWaN2p6ypuvYWWmVl/M5te8EuU8Mu3UcpTfnkf7v5DdLfg1+/SlGWlvg8zO8bM3rHQpLYc6LHRdpZ4OEIp8EO0nULcfQ1wMuHX/3dm9pKZ7VHCZnMIxWtayvt7JVpeYFm0zgJfRu8NQrHpAXxpZm+Z2YElvT/gj8C2wEWbsG2p4CplIXD3icDS1GVm1srMXrHQnjwp5Y/mHOBed18WvXZRltOtqH4g/AEXaFxwx91Xufvl7t6S0PRzmZkdsYnr/w7YKaV5BaBZOi+00B/wB8KRXAMPzR8rCL8+C9bdtIz1/lKAzGxn4EHgAqBhtL4ZKesr6338xsxS91Wx78PMagPPALcDO0TbeTnN7RTh7v92927AjsDM6D1A0Wa67wlHGnu6e/3otp2HZpwCDaLmpgLNgW+j7bzn7j2B7QlHME+V8P5OITS59XH39els2349vbakW7/itiXZVSkLQQlGARe6e0fgCuC+aPluwG5m9nb0Sy2tI4kEmA6cambVo31yaEHAzI41s12jL/EVhM67DZu4/qnR6y6w0FnbE9g/zdduS2jKWAzUMLMhhDb3Ak8B15hZAzPbifAFX5o6hC/PxRA6dAlHBGVy9y+BPGCYhVMcDwSOK+HptYDa0XbyLXQ4H5XOdjZmZjuYWc/oy3sdsJpf/w8WAk2jfhjcfQOhSNxpZttHr9/JzI7eaLU3RO+hC6Ef4+nocT8z2y76cl9JMf/XZtYBuBs4wd0XFywva9v+6+m1Jd3+nrKN2in9QLXMbKuNfkhIhlSJQmBmdQmdaU+b2XTgAcKvKIAaQGtCe2df4EEzq5/9LCuciwlfaMuBfoRfggVaA68SvnymAve5+xubsnJ3/wk4kdAhupzQofsi4UutLP8mNC/MJjRh/Ejh5pgbCe3I86I8/1naet39E+CO6L0sBPYC3t6Et9OP0O69BLgJeLK47bn7KkKTyVOEPo1TCR3om6MacBnhV/tSQqEeHMVeJ/R3LTCz76NlVxGa894xs5WE/ZJ6DcCCKKdvgb8D57n7zCh2OvBF9Lrzove7sZ5AA2Byyq/58WluO12zCEcXOxE+A2uBnTdjPbKJrHATbuVhZi2AF929nZnVA2a5+47FPG8k8F93fyR6/Bpwtbu/l9WEBTP7LzCy4P+iHNc7GDjF3Q8t88nls70ngZnuPjQb29tSFi7Oetzdm5bxVEmoKnFE4O4rgXlmdhKABe2j8HOEowHMrBGhqWhuDGkmjpkdamaNo6ahM4C9Cb/0t3S9O5pZZzOrZuEUyMsJp6pmhJntF/VBVYua0XpS+AhKpFKrlFddmtlYwpd7IwsXvAwlHM7eb2bXATUJ57Z/QDjEPMrMPiG0WV/p7ktiSTx5dic0k9QhFN8+7v5dOay3FqH5bxdCs9M/+LVPKBMaA+MI1xHMBwa7+/8yuD2RrKq0TUMiIlI+qkTTkIiIbL5K1zTUqFEjb9GiRdxpiIhUKtOmTfve3Yu90K/SFYIWLVqQl5cXdxoiIpWKmX1ZUkxNQyIiCadCICKScCoEIiIJp0IgIpJwKgQiIgmnQiAiknAqBCIiCVfpriPYEi++CO++W3hZjRowJJrZ9Zln4IMPCse32QaujubnGjsWPv20cLxBA7j00nD/0Ufh888Lx3fYAc4/P9wfNQrmzy8cb9YMzjkn3L/7bli8uHB8112hf/9w/447YMWKwvE994STTw73b74ZfvyxcLxDB+gVzRQ8bBhs2Gik+QMOgB49YP16GD6cIg45BI48EtasgVtvLRrv1g26dIGlS2HEiKLx3/4WOnWCBQvgvmJGAzrxRNhnH/jqK3jooaLxU06Btm3hs8/gb38rGu/fP+yjGTPgqWKmUznnnLCP338fnnuuaPyCC2D77WHqVBg/vmj8ssugfn146y147bWi8Wuuga23hgkTYPLkovGhQ6F6dX329NkrGt/Uz17TpjBoUNHnlYu458rc1FvHjh19c51/vrtZ4dtWW/0a79+/aDwn59d4r15F4y1b/hrv1q1ovH37X+MHHFA03rnzr/E99ywa797913jz5kXjJ530a7xBg6LxgQN/jdesWTR+8cUhtnZt0ZiZ+7XXhviiRcXHb7klxD//vPj4PfeE+PTpxccffTTEJ08uPj5uXIiPH198fMKEEH/qqeLjU6eG+MMPFx+fMSPER4woPv7llyF+003Fx5cuDfGrry4+/tNP+uzps1c+n70DDvAtAuR5Cd+r5pVs0Lnc3FzXlcUiIpvGzKa5e25xMfURiIgknAqBiEjCqRCIiCScCoGISMJlrBCY2WgzW2RmM0qIdzWzFWY2PboNyVQuIiJSskxeRzAGuAd4rJTnTHL3YzOYg4iIlCFjRwTuPhFYmqn1i4hI+Yi7j+BAM/vAzMab2Z4lPcnMBplZnpnlLd748kcREdkicRaC94Gd3b09cDfwXElPdPdR7p7r7rk5OcVOuSkiIpsptkLg7ivdfXV0/2Wgppk1iisfEZGkiq0QmFljM7Po/v5RLkviykdEJKkydtaQmY0FugKNzGw+MBSoCeDuI4E+wGAzywfWAqd4ZRv4SESkCshYIXD3vmXE7yGcXioiIjGK+6whERGJmQqBiEjCqRCIiCScCoGISMKpEIiIJJwKgYhIwqkQiIgknAqBiEjCqRCIiCScCoGISMKpEIiIJJwKgYhIwqkQiIgknAqBiEjCqRCIiCScCoGISMKpEIiIJJwKgYhIwqkQiIgknAqBiEjCqRCIiCScCoGISMKpEIiIJJwKgYhIwtWIO4Fsunj8xTww7YFCy2rXqM2Kq1cAcNbzZ/H3j/5eKN5om0bMv2w+AL97+ne8MOuFQvEW9Vsw84KZAPT4ew9en/d6ofheO+zFe+e8B8AhjxzCu9+8Wyh+YLMDeeOMNwDo8EAHPl38aaF4t1bd+FfffwHQ+u7WfL3i60LxE9ucyBO9nwCg8e2NWf7j8kLx/u37M+q4UQDUvbku+RvyC8XP3+987jj6Dn7M/5H6f6rPxq7qfBU3HHYDi9csptmdzYrEhx82nCs7X8m8ZfNoc2+bIvER3UdwXu55fLjwQ/Z/cP8i8YeOf4jT9j6NKV9P4fBHDy8Sf7LPk/TcoycTPp/A8WOPLxJ/6dSXOKLlETzzyTP0G9evSPytM9+iU9NOPDr9Uc598dwi8ffPfZ+2OW255917uGLCFUXisy+cTfPtmvOnyX9i2JvDisS/u/w7GmzdgOtev47bp9xeJL7qmlXUrF5Tnz199orEN+mz9/oQ9s/fgYk3fl3keeUhUYXgsF0OY+uaWxdaVqPar7vgqFZHkVMnp1C8Ts06v9w/brfjaNmgZaH4b7b+zS/3T2xzInvvsHeheOO6jX+5f/KeJ3NQs4MKxXfebudf7p++9+ksWrOoUHy3hrv9cn/gPgNZsW5Fofhe2+/1y/3BuYNZm7+2UDy3Se4v9y/qdBEbfEOheEE+1a06lxxwCRsriG9dc+ti4/vttB8A9WrXKzbefof2AORsk1NsvG1OWwCabNuk2Hir37QCwn4qLt58u+YAtG7Yutj4jtvu+Mt2ios33LohAB0adyg2Xq92PQD232n/YuO1a9QGoHOzzuQfkF8kXs3CQbc+e/rsbazMz16NOrB0afjs7XEmzZ5/A376CWrVKvLcLWXuXu4rBTCz0cCxwCJ3b1fK8/YDpgKnuPs/y1pvbm6u5+XllV+iIiIViTuMGwdDhsBuu8Gzz5bLas1smrvnFhfLZB/BGKB7aU8ws+rArcCEDOYhIlLxucP48ZCbC336wIYNcOqpWdl0xgqBu08ElpbxtAuBZ4BFZTxPRKRqu/de6NEDli6FMWPgo4/gpJOysunY+gjMbCegF3AYsF9ceYiIxOa998Iv/06doG9fqFEDBg7MSD9AaeI8fXQEcJX7Rj1IxTCzQWaWZ2Z5ixcvznxmIiKZ9NFHcMIJsP/+oS8AoGFDOO+8rBcBiLcQ5AL/MLMvgD7AfWZ2QnFPdPdR7p7r7rk5OTnFPUVEpOL77LPQ7t++PbzxBtx4I/yzzHNkMi62piF336XgvpmNAV509+fiykdEJOMmTIDnn4erroIrr4Tf/Kbs12RBxgqBmY0FugKNzGw+MBSoCeDuIzO1XRGRCmPhQrj5ZthnHxgwAM45B3r3hsaNy3xpNmWsELh730147pmZykNEJOuWLoXbboO77oJ16+Dqq8PyWrUqXBGAhF1ZLCKScY88ApdcAqtWwSmnwA03QOvWcWdVKhUCEZEttXYt/Pwz1K0LOTlw2GEwfDjstVfZr60ANPqoiMjm+uknuP9+aNUKbrklLDv2WHjuuUpTBECFQERk0+Xnw6OPwu67w+9/HwpB91JH1KnQVAhERDbVRRfBmWeGi8DGj4eJE6FLl7iz2mzqIxARKYs7vPQStG0LLVuGo4Ajj4RevcAs7uy2mI4IRERK8/rr0LkzHHcc3H13WNauHZx4YpUoAqBCICJSvHfegSOOCLevvoIHHoA//znurDJCTUMiIsV5/PEwONydd4bB4LbaKu6MMkZHBCIiALNmhQvAJk0Kj4cPh7lzw8VhVbgIgAqBiCTdF1+EOQDatoUXX4Q5c8LyBg3CBWIJoEIgIsl1/fVhXuAnnoCLLw5HAAMGxJ1V1qmPQESSZckSqF8fqlcPw0APHAjXXQdNm8adWWx0RCAiybByJQwbBrvsAmPHhmWXXgojRya6CICOCESkqvvhB7jnHrj11jA8dO/e0LFj3FlVKCoEIlK19egBb70FxxwTzgRSEShChUBEqpb8/HANQJ8+4ayfIUPChDAHHxx3ZhWWCoGIVA0bNsCTT8LQoWGS+PXrw9SQhx8ed2YVnjqLRaRycw8Twu+zD5x6KtSuHeYDOPvsuDOrNHREICKVmxn89a/w44/heoCTT4Zq+o27KbS3RKTymTIlTAQzf354/MQT8Mkn0LevisBmKPGIwMw+ArykuLvvnZGMRERK8r//hYu/Xn4ZdtgBZs8O1wA0bhx3ZpVaaU1Dx0b/nh/9+7fo336ZS0dEpBgbNoT2/yefDGMA/elPcMEFUKdO3JlVCSUWAnf/EsDMurl7h5TQ1Wb2PnB1ppMTkYRbtAi23z4092y/fTgV9LLLYLvt4s6sSkmnMc3MrHPKg4PSfJ2IyOb55hsYPDg0+0ybFpbddRfccIOKQAakc9bQWcBoM9sOMGAZMDCjWYlIMi1eHJp97rsPfv45nALapEncWVV5ZRYCd58GtI8KAe6+IuNZiUjyrF8frgVYsAD69w/NQLvsEndWiVBmITCz2kBvoAVQw6LJmt39xjJeN5rQ4bzI3dsVE+8JDAc2APnAJe4+eRPzF5HKbM2acOrn2WdDzZrheoB27WCPPeLOLFHSaet/HuhJ+LJek3Iryxigeynx14D27r4PoanpoTTWKSJVwY8/wogR0LIlDBoUrguAMD6QikDWpdNH0NTdS/tCL5a7TzSzFqXEV6c8rEMp1yyISBWRnw+PPAI33hguBjvssDAcxIEHxp1ZoqVzRDDFzPbKxMbNrJeZzQReopQOaDMbZGZ5Zpa3ePHiTKQiItnw889w003hbKDXXoPXX1cRqADSKQQHA9PMbJaZfWhmH5nZh+WxcXd/1t33AE4g9BeU9LxR7p7r7rk5OTnlsWkRyQZ3ePbZMBzEjz+GAeGmTAk3jQpaYaTTNHRMppOImpFamlkjd/8+09sTkQxzhwkTwnAQeXmw++7w1Vdhoviddoo7O9lIOkcEXsJti5jZrhadgmRm+wK1gSVbul4RidmyZXDooeEo4PvvQ5/AjBmhCEiFlM4RwUuEL34DtgJ2AWYBe5b2IjMbC3QFGpnZfGAoUBPA3UcSTkntb2brgbXAye6uDmORymrhwjAQXP360KgR3HtvOC20Vq24M5My2KZ+90a/3n/v7rHM+pCbm+t5eXlxbFpEivPxx3D99fCf/8Dnn4cxgaTCMbNp7p5bXGyTxwxy9/eBTluclYhUbnPmwGmnwV57wauvwhVXwNZbx52VbIZ0riy+LOVhNWBf4NuMZSQiFd8330DbtlCjBlx5JfzhD9CwYdxZyWZKp49g25T7+YQ+g2cyk46IVFgLF4Zf/v36hTN/Ro6EY46BHXeMOzPZQukMOncDgJnVjR6vLv0VIlKlLFsGt90WxgFavx6OOCLMCDZQgxBXFWX2EZhZOzP7H/Ax8LGZTTOzIoPIiUgVs3p1uAp4l13gllvg+OPDaaCaFrLKSaezeBRwmbvv7O47A5dHy0SkKlu5Em6+OVwT8MEHMHasrgWootLpI6jj7m8UPHD3N81ME4WKVDU//QSjR8Nbb4WhoZs0gc8+05XACZDOEcFcM7vezFpEt+uAuZlOTESy5Oef4bHHwvDPgweHoSBWrgwxFYFESKcQDARygHHRLQdNVSlSNcycGa4DOOMMaNAAXn4ZJk/WvMAJk85ZQ8uAi6KpKje4+6rMpyUiGeMOixaF4SCaNQudv8OHw4knQjQDoSRLOheU7QeMJrqewMxWAAOjuYxFpDJ5880wIujChfDJJ1CnTpgTQBItnaahhwljC7Vw9xbA+cAjGc1KRMrXu+9Ct25hRrB58+Dyy+POSCqQdM4a+tndJxU8cPfJZpafwZxEpDy99RZ07RpGBL3jjtAhrDGBJEWJhSAaZRTgLTN7ABhLGI76ZODNzKcmIptt9uzQEXz88dClC9xzD/TvD9tuW/ZrJXFKOyK4Y6PHQ1Pua94AkYroyy/DxPCPPhrGAOrRIwwMd/75cWcmFViJhcDdD8tmIiKyBRYsgD/+ER54IJz5c8EFcM01oQiIlEGfEpGqYO7cMBrogAFhkphmzeLOSCoRFQKRymjlSrjzTlizBv78ZzjooNAs1KRJ3JlJJVTq6aNmVs3MDspWMiJShh9+CENCt2wJw4aF4SAKpptVEZDNVGohcPcNwL1ZykVESvPaa9CqVZgNbL/9IC8P/vEPXQ0sWyydC8peM7PeZvq0iWRdfj4sXhzut2wJe+4JEyfC+PHQsWO8uUmVkU4hOBd4GvjJzFaa2SozW5nhvESSbcMGePJJaNcuDAgHYYKYV18N1wWIlKMyC4G7b+vu1dy9prvXix7Xy0ZyIonjDv/6F+y7L5xyCtSsCYMGxZ2VVHHpTFVpZnaamV0fPW5mZvtnPjWRBBo5MlwNvHo1/P3vMH06nHBC3FlJFZfO6aP3ARuAw4HhwGpCB/J+GcxLJDmmTg2Twxx8MPTtG44Czjgj/CuSBen0EXRy9/OBH+GX+QlqZTQrkSSYPh2OPTZcAzBsWFhWvz6cfbaKgGRVOoVgvZlVJxpfyMxyCEcIIrI5Zs2C3/0OOnSAt98OE8Q/91zcWUmCpVMI7gKeBbY3sz8Ck4Gby3qRmY02s0VmNqOEeD8z+9DMPjKzKWbWfpMyF6msJk0Kp39ed12YG+Caa6Bu3bizkgQz97IHEjWzPYAjAANec/dP03jNIYT+hMfcvV0x8YOAT919mZkdAwxz905lrTc3N9fz8vLKzFmkwvj2W7jppjA38ODB4dqAZcsgJyfuzCRBzGyau+cWF0vnrKHhQDNgjLvfk04RAHD3icDSUuJTov4GgHeApumsV6TS+P57uOKKcDXwgw+GggBhRFAVAalA0jlraC7QF7jLzFYBk4CJ7v58OeZxFjC+pKCZDQIGATRv3rwcNyuSIaNHw8UXh7GBTj8dhg4NF4SJVEDpXFD2iLsPBA4DHgdOiv4tF2Z2GKEQXFVKDqPcPdfdc3P0S0oqqjVrwqigAM2bQ/fuMGMGjBmjIiAVWjpNQw+Z2RTgfsIRRB+gQXls3Mz2Bh4Cerr7kvJYp0jWrVsHd98dmoBuvDEsO/JIePppaNMm3txE0pDOWUMNgerAckKb//fuvsWT15tZc2AccLq7z97S9YlkXX4+PPQQtG4NF10UvvRPPDHurEQ2WZl9BO7eC8DM2gBHA2+YWXV3L7Vz18zGAl2BRmY2nzDncc1onSOBIYQic180sGl+ST3aIhXSpZeGSeE7dYJHHoHDD9eQ0FIplVkIzOxYoAtwCFAfeJ3QYVwqd+9bRvxs4Oy0shSpCNzh+efDL//ddw/zAh91VLg6WAVAKrF0moa6A+8Dvd29jbsPcPfRGc5LpOJwhwkTwi//Xr3g3miupt13h+OOUxGQSi+ds4YuAN4E9jWzY81s+4xnJVJRvP02dO0KRx8NCxfCww/DX/4Sd1Yi5Sqds4ZOAt4lnDb6O+C/ZtYn04mJVAjjxsHs2eGsoNmzYeDAcEGYSBVS5hATZvYB0M3dF0WPc4BX3T2WsYE0xIRk1Mcfw5AhcN550K1buC6gRg3YZpu4MxPZIls0xARQraAIRJak+TqRyuPzz8MVwHvtBf/5D8yfH5bXq6ciIFVeOse4r5jZv4Gx0eOTgZczl5JIll17Lfz5z2EOgCuugKuugoYN485KJGvSuY7gSjPrDXSOFo1y92czm5ZIhi1eDA0ahGafpk3h3HNDQdhxx7gzE8m6tHq93P0Z4JkM5yKSecuXw+23w4gR8Ne/wllnhaGhRRKsxEIQjTRaXE+yAe7u9TKWlUh5W70a7roLbrstFIOTT4YuXeLOSqRCKLEQuPu22UxEJKN69oTXXw8XgA0fDu01IZ5IAZ39I1XT+vVhMpjly8PjG26AqVPhhRdUBEQ2oitjpGr5+Wd44gkYNgzmzg2PzzsPDj447sxEKiwdEUjVMW4c7L039O8fzv9/8cVwNpCIlEpHBFJ1PPggbNgATz0FvXtDNf3OEUmH/lKk8nrrrTAHwLx54fFjj8FHH8FJJ6kIiGwC/bVI5fPee2EegK5dYdasXwtBTo4GhBPZDCoEUnm4h1/7++8P778fLgybMyccFYjIZtPPJ6n4vv0WmjQJE8C0bBkmiL/kEthWl7qIlAcdEUjF9dVXcM450Lw5TJkSlt16K1x/vYqASDnSEYFUPAsXws03w8iR4fH550OrVvHmJFKFqRBIxZKfDx07woIFMGBA+PXfvHncWYlUaSoEEr9Vq8Kpn4MHh7N+7rsP2rSB1q3jzkwkEVQIJD5r14Yv/VtugSVLoF07OPRQOP74uDMTSRR1Fkv2rV8P998Pu+4aZgTr2BHefTcUARHJOh0RSDzuuCOcCjp2LBxySNzZiCSajggk8wrG/+naFdasCXMDv/02TJyoIiBSAWSsEJjZaDNbZGYzSojvYWZTzWydmV2RqTwkRu5hBNCOHcOMYIsXw9dfh9gOO4QLxEQkdpk8IhgDdC8lvhS4CLg9gzlIXJYvh86dw4xgK1fC3/4GH34Ie+wRd2YispGMFQJ3n0j4si8pvsjd3wPWZyoHicE334R/t9sOWrSABx6AmTPhtNOgevVYUxOR4lWKPgIzG2RmeWaWt3jx4rjTkeJMnx5+/bduHcYGMgszhQ0aFPoERKTCqhSFwN1HuXuuu+fm5OTEnY6kmjkztP936ACTJ8N114XZwUSk0tDpo7L5FiwIU0PWqgXXXhuuCahfP+6sRGQTqRDIpvnuOxg/HgYOhMaN4ZFHoFs32H77uDMTkc2UsUJgZmOBrkAjM5sPDAVqArj7SDNrDOQB9YANZnYJ0NbdV2YqJ9kCS5aEIaDvuScMDHf00bDTTtCvX9yZicgWylghcPe+ZcQXAE0ztX0pJ6tWhauA//IXWL06fPEPGxaKgIhUCWoaktKtXRsKwVFHhZnB9twz7oxEpJypEEhh69bBgw/Ca6/BuHGh7X/OnHAlsIhUSZXi9FHJgvx8ePhh2G03uPBCWLo0XB0MKgIiVZwKgcCsWaHJ5+yzw5f+v/8Nb74JDRrEnZmIZIEKQVK5w/z54f7OO4choZ99Fv7739AfoAHhRBJDfQRJ4w6vvhquAF6wAGbPhq22CtcGiEgi6YggSd5+Gw47LPzi/+47GDJEA8GJiI4IEmPyZOjSJfQB3HVXGAyudu24sxKRCkCFoCr79FP4+GPo0yfMDfDgg9C3L9SpE3dmIlKBqGmoKpo7F844A9q1g0suCZPFm4WzglQERGQjKgRVyXffweDBsPvuYY7gyy4L8wRoPgARKYWahqqSb7+F0aND+/+110KTJnFnJCKVgApBZbZ8eRgHaMWK0AHcsWO4NkCT94jIJlDTUGW0ejXccgvssgvcdBN8/z1s2BBiKgIisolUCCqb11+HVq3g//4vnAn0/vthbuBq+q8Ukc2jb4/KYP360BEMYVC4Dh1gyhR48cVwX0RkC6gQVGQ//wyPPw5t2sBpp4VlTZvCK6/AgQfGm5uIVBkqBBWRe5gLoH17OP10qFsXLr00LBcRKWcqBBXRQw9B795hjoAnnwz9AMceqxFBRSQjdPpoRTFpUugLOPzwMAxErVphfuAa+i8SkczSEUHc8vKge3c45BAYPjwsq1s3DBGhIiAiWaBCEJdPPw3NP/vtF4rBbbfBSy/FnZWIJJB+csbl/ffhP/+BG24IA8PVqxd3RiKSUCoE2fL116Hpp02bcAbQKaeEJqGGDePOTEQSTk1DmbZwYfjFv+uuMGYMLFsWllevriIgIhWCjggy6ZFH4IILYN260Pk7ZEiYKF5EpAJRIShvq1aF8/8bNAhHAccfH/oBdtst7sxERIqVsaYhMxttZovMbEYJcTOzu8xsjpl9aGb7ZiqXrFi7Fv7yF2jZEq6/Pizr0gXGjlUREJEKLZN9BGOA7qXEjwFaR7dBwP0ZzCVzfvoJRo4Mv/4vvxz22ScMCyEiUklkrBC4+0RgaSlP6Qk85sE7QH0z2zFT+WTMVVeF6SFbtIA33ginhHbqFHdWIiJpi/OsoZ2Ar1Mez4+WFWFmg8wsz8zyFi9enJXkSrRhAzzzDMyIWrwuvDBcCDZ5MnTtGmtqIiKbo1KcPuruo9w9191zc+KagcsdXn4ZcnOhTx+4P2rJatkSevTQgHAiUmnFWQi+AZqlPG4aLat4Jk0KHb+//W2YH/ixx8IcwSIiVUCcheAFoH909tABwAp3/y7GfEr2yiswb17oFJ45M3QGV68ed1YiIuUik6ePjgWmArub2XwzO8vMzjOz86KnvAzMBeYADwK/z1Qum+zDD6FnzzAVJMA118CcOXDuuVCzZry5iYiUs4xdUObufcuIO3B+pra/WWbPhqFDw2Qw9erBCSeE5XXrxpqWiEgmVYrO4qy47jpo2xZeeAGuvhrmzoUBA+LOSkQk45I9xMSCBWEoiNq1oVWrMC7QNdfADjvEnZmISNYk84hgyZJwIVjLlvDww2HZgAEwYoSKgIgkTrKOCFauhDvvDGMCrVoFp54KRx0Vd1YiIrFKViE46SSYMAF69YIbb4R27eLOSEQkdskqBMOHwx//GK4OFhERIGmFYP/9485ARKTCSWZnsYiI/EKFQEQk4VQIREQSToVARCThVAhERBJOhUBEJOFUCEREEk6FQEQk4SxMC1B5mNli4Mu480jRCPg+7iQqGO2TwrQ/itI+KSrT+2Rndy920vdKVwgqGjPLc3eNWZFC+6Qw7Y+itE+KinOfqGlIRCThVAhERBJOhWDLjYo7gQpI+6Qw7Y+itE+Kim2fqI9ARCThdEQgIpJwKgQiIgmnQpAGMxttZovMbEYJcTOzu8xsjpl9aGb7ZjvHbEtjn+xhZlPNbJ2ZXZHt/OKQxj7pF30+PjKzKWbWPts5ZlMa+6NntD+mm1memR2c7Ryzrax9kvK8/cws38z6ZCMvFYL0jAG6lxI/Bmgd3QYB92chp7iNofR9shS4CLg9K9lUDGMofZ/MAw51972A4VT9DtMxlL4/XgPau/s+wEDgoSzkFLcxlL5PMLPqwK3AhGwkBCoEaXH3iYQvtpL0BB7z4B2gvpntmJ3s4lHWPnH3Re7+HrA+e1nFK419MsXdl0UP3wGaZiWxmKSxP1b7r2er1AGq/JkraXyXAFwIPAMsynxGgQpB+dgJ+Drl8fxomUhJzgLGx51E3Mysl5nNBF4iHBUkmpntBPQiy60KKgQiWWZmhxEKwVVx5xI3d3/W3fcATiA0lyXdCOAqd9+QzY3WyObGqrBvgGYpj5tGy0QKMbO9CW3hx7j7krjzqSjcfaKZtTSzRu6e5MHocoF/mBmEQeh6mFm+uz+XyY3qiKB8vAD0j84eOgBY4e7fxZ2UVCxm1hwYB5zu7rPjziduZrarRd940Zl2tYFEF0d338XdW7h7C+CfwO8zXQRARwRpMbOxQFegkZnNB4YCNQHcfSTwMtADmAP8AAyIJ9PsKWufmFljIA+oB2wws0uAtu6+Mp6MMy+Nz8kQoCFwX/T9l1+VR+BMY3/0JvyAWg+sBU5O6TyuktLYJ/HkVcX3u4iIlEFNQyIiCadCICKScCoEIiIJp0IgIpJwKgQiIhVYugPVpTz/d2b2iZl9bGZPpPMaFQKRMphZfTP7fXS/iZn9M+6cJFHGUMZAdQXMrDVwDdDZ3fcELknndSoEImWrD/wewN2/dfesDA0sAsUPVGdmrczsFTObZmaTzGyPKHQOcG/B4IbuntbAdbqgTKRsfwJamdl04DOgjbu3M7MzCWPk1CEMQX47UAs4HVgH9HD3pWbWCrgXyCFccHiOu8/M9puQKmUUcJ67f2ZmnYD7gMOB3QDM7G2gOjDM3V8pa2UqBCJluxpo5+77mFkL4MWUWDugA7AV4cryq9y9g5ndCfQnDCJW0h+tyCYzs7rAQcDT0RXqEIbngPCd3ppw9XJTYKKZ7eXuy0tbpwqByJZ5w91XAavMbAXwr2j5R8DeZfzRimyOasDyaEKfjc0H/uvu64F5ZjabUBjeK2uFIrL51qXc35DyeAPhh9Yvf7QptzbZTlKqjmi8rnlmdhL8MlVuwbSnzxGOBjCzRoSmorllrVOFQKRsq4BtN+eFZfzRipQpGqhuKrC7mc03s7OAfsBZZvYB8DFhlkSAfwNLzOwT4A3gynSGO1fTkEgZ3H2Jmb0dncf96Wasoh9wv5ldRxhp8h/AB+WZo1Rd7t63hFCRU0qj0Vsvi25p0+ijIiIJp6YhEZGEUyEQEUk4FQIRkYRTIRARSTgVAhGRhFMhEBFJOBUCEZGE+38bALz5vG5KswAAAABJRU5ErkJggg==", + "text/plain": [ + "<Figure size 432x288 with 1 Axes>" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "plt.plot(t,g,'r--',t,c,'g--',t,u,'b--')\n", + "plt.ylabel('lower bound')\n", + "plt.xlabel('time')\n", + "# yticks = np.arange(1,20,1)\n", + "# plt.yticks(yticks, yticks**2)\n", + "# plt.title('Lagrangian Relaxation for problem problem_t_pricer_0_2.lp, with 26,000 variables')\n", + "plt.title('using lagrangian stepsize=1')\n", "# plt.figure(p,g,'r-')" ] }, @@ -157,8 +218,79 @@ "execution_count": null, "metadata": {}, "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Text(0, 0.5, 'lowerbound')" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAYIAAAERCAYAAAB2CKBkAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/MnkTPAAAACXBIWXMAAAsTAAALEwEAmpwYAAApvElEQVR4nO3deXxU5d338c8vIeybAq6o4M4eBARkqVpbUeu+lWJ7a7V4q8UqtygoT3s/t4hgVVzqRl0ot+uDS6utVquCbAIGEYpKRXCLqEAQWQMk+T1/zAyNkGVI5syZmfN9v155JZNz5pxvJsn5zXVd51zH3B0REYmuvLADiIhIuFQIREQiToVARCTiVAhERCJOhUBEJOJUCEREIi4rC4GZPWpmq81saZLrX2BmH5jZ+2b2ZND5RESyiWXjdQRmNhjYBEx19661rHsE8P+AE939WzPbx91XpyOniEg2yMoWgbvPBNZV/p6ZHWZmfzezhWY2y8yOji/6FXCfu38bf66KgIhIJVlZCKoxGRjh7r2A64D7498/EjjSzOaY2TwzGxJaQhGRDNQg7ACpYGbNgeOAaWaW+Haj+OcGwBHA8UB7YKaZdXP39WmOKSKSkXKiEBBr2ax398IqlhUD8919B/CJmX1ErDC8k8Z8IiIZKye6htx9A7GD/PkAFtMjvvjPxFoDmFlbYl1FK0OIKSKSkbKyEJjZU8DbwFFmVmxmlwLDgEvNbDHwPnBmfPVXgRIz+wCYDoxy95IwcouIZKKsPH1URERSJytbBCIikjpZN1jctm1b79ChQ9gxRESyysKFC9e6e7uqlmVdIejQoQNFRUVhxxARySpm9ll1y9Q1JCIScSoEIiIRp0IgIhJxWTdGUJUdO3ZQXFxMaWlp2FGyVuPGjWnfvj0FBQVhRxGRNMuJQlBcXEyLFi3o0KEDleYakiS5OyUlJRQXF9OxY8ew44hImuVE11BpaSlt2rRREagjM6NNmzZqUYlEVE4UAkBFoJ70+olktvKK8sC2nTOFYI+VlMCyZbBmTdhJRERqtHHbRg6/93BufONGdpTvSPn2o1sItm6FTZugrKzem1q/fj3333//zserVq3ivPPOq/d26+PTTz+la9ca7+IpIlniwaIH+XT9p8z8bCYN8lI/tBvdQrBtW+xzw4b13tSuheCAAw7g2Wefrfd2RUS27tjKHW/fAcDYwWMD6caNbiHYvj32uVGjmtdLwujRo1mxYgWFhYWMGjXqe+/Gp0yZwllnncWPfvQjOnTowB/+8AfuvPNOevbsSb9+/Vi3Lnbr5RUrVjBkyBB69erFoEGDWLZs2W77eeuttygsLKSwsJCePXuyceNG3J1Ro0bRtWtXunXrxjPPPFPvn0dEMscjix7hm83f0Gv/Xpx82MmB7COw00fN7FHgJ8Bqd6+2j8LM+hC7t8BP3b3eb6Pt/+5htfxbcqv576qfrnvChAksXbqU9957D4h1y1S2dOlSFi1aRGlpKYcffjgTJ05k0aJFXHvttUydOpVrrrmG4cOH8+CDD3LEEUcwf/58rrzySt58883vbef222/nvvvuY8CAAWzatInGjRvz/PPP895777F48WLWrl1Lnz59GDx48J68AiKSobaXb2finIkA3DTopsBO6gjyOoIpwB+AqdWtYGb5wETgtQBzhO6EE06gRYsWtGjRglatWnH66acD0K1bN5YsWcKmTZuYO3cu559//s7nbEt0XVUyYMAARo4cybBhwzjnnHNo3749s2fPZujQoeTn57Pvvvvygx/8gHfeeYfu3bun7ecTkWBMXTyV4g3FdGnXhTOPPrP2J9RRYIXA3WeaWYdaVhsBPAf0Sdl+a3jnvtPWrfD++7FuoW7dUrXrajWq1P2Ul5e383FeXh5lZWVUVFTQunXrnS2K6owePZrTTjuNl19+mQEDBvDqq68GGVtEQlRWUcats28FYq2BPAuuJz+0MQIzOxA4G3ggiXWHm1mRmRWtScXpnjvip1+lYKAYoEWLFmzcuLHOz2/ZsiUdO3Zk2rRpQOxK38WLF++23ooVK+jWrRs33HADffr0YdmyZQwaNIhnnnmG8vJy1qxZw8yZMzn22GPrnEVEMsMzS59h5bcrOXzvw7mgywWB7ivMweK7gBvcvaK2Fd19srv3dvfe7dpVeV+FPZMYKE7RvDpt2rRhwIABdO3alVGjRtVpG0888QSPPPIIPXr0oEuXLvzlL3/ZbZ277rqLrl270r17dwoKCjjllFM4++yz6d69Oz169ODEE0/ktttuY7/99vve81atWsWpp55ap1wikn4VXsEts24BYMzAMeTn5Qe6v0DvWRzvGvprVYPFZvYJkBj5aAtsAYa7+59r2mbv3r191xvTfPjhh3Tq1Cn5YF99BV9+CfvuCwcdlPzzctwev44iEojnPniO86adx8GtDmb5iOU0zK9/74WZLXT33lUtC23SOXffObuZmU0hVjD+nJadJy4i00ybIpJh3H1na+CGATekpAjUJsjTR58Cjgfamlkx8DugAMDdHwxqv0lJjBE0yInJV0Ukh7zy8Sss+noR+zXfj1/2/GVa9hnkWUND92Ddi4PKUSW1CEQkA7k7N8+8GYDr+l9H4waN07LfaF5ZnCgEahGISAaZ/ul05hXPo02TNlze+/K07TeahUBdQyKSgcbNHAfAtf2upXnD5mnbb/QKgbtaBCKSceZ+MZfpn06nZaOWXHXsVWndd/QKQUVFrBjk5UF+6s7NPe6444DYPENPPvlkyrYLMH78+Cr3JSK5I3Gm0IhjR9C6ceu07jt6hSCg1sDcuXOBuhWCslruibBrIUjsS0Ryw7tfvcvLy1+maUFTrul3Tdr3H71CUB6/3VsKWwMAzZvH+vNGjx7NrFmzKCwsZNKkSZSXlzNq1Cj69OlD9+7deeihhwCYMWMGgwYN4owzzqBz584AnHXWWfTq1YsuXbowefLkndvbunUrhYWFDBs27Hv7qm4K6hkzZnD88cdz3nnncfTRRzNs2DCCvHBQROon0Rq4ovcVtG3aNv0B3D2rPnr16uW7+uCDD/79INbxk/qPWjRr1szd3adPn+6nnXbazu8/9NBDfvPNN7u7e2lpqffq1ctXrlzp06dP96ZNm/rKlSt3rltSUuLu7lu2bPEuXbr42rVrv7ftXff17LPP+kknneRlZWX+9ddf+0EHHeSrVq3y6dOne8uWLf2LL77w8vJy79evn8+aNavWn+F7r6OIpMXSb5Y6/403urmRr9qwKrD9AEVezXE1ei2CNHvttdeYOnUqhYWF9O3bl5KSEpYvXw7AscceS8eOOy+w5p577qFHjx7069ePL774Yud61aluCurEttu3b09eXh6FhYW73SNBRDJDYobRS3teyv4t9g8lQ+6dNlNbF8jatfDpp9CmDVQ6CAcXx7n33ns5+eTv31loxowZNGvW7HuPX3/9dd5++22aNm3K8ccfT2lpaZ33W3nq6/z8/FrHIUQk/T5e9zFPLX2KBnkNuH7A9aHliF6LIKAxgoRdp6Q++eSTeeCBB9gRv3bho48+YvPmzbs977vvvmOvvfaiadOmLFu2jHnz5u1cVlBQsPP5lWkKapHsNmH2BCq8gl90/wWHtD4ktBwqBCnWvXt38vPz6dGjB5MmTeKyyy6jc+fOHHPMMXTt2pXLL7+8ynfnQ4YMoaysjE6dOjF69Gj69eu3c9nw4cPp3r37zsHihGSmoN7Vb3/7W1588cXU/LAiUmeff/c5UxdPJc/yGD1wdKhZAp2GOgj1noa6uBi+/hoOPBD2D6c/LlNpGmqR9Bnx8gj+8M4fGNp1KE+em9prj6pS0zTU0WsRVMTvg5MXvR9dRDLD15u+5o/v/hGAGwfdGHIaFQIRkbS7Y+4dbCvfxtlHn03XfXa7b1fa5czRMOkursR6ZjWvFzHZ1kUokq1KtpTwQFHsVu03Dbop5DQxOVEIGjduTElJSXIHM7UIduPulJSU0LhxeuY+F4myu+ffzeYdmxly+BB6HdAr7DhAjlxH0L59e4qLi1mzZk3tK69eDVu3xloE33wTfLgs0bhxY9q3bx92DJGc9l3pd9wz/x4Axg4aG3Kaf8uJQlBQUPC9K3RrdPXV8Prr8Npr0CszqrGIRMN979zHd9u+4/gOxzPg4AFhx9kpev0jiat11Q0iImm0eftmJs2bBGTO2ECCCoGISBpMXjiZtVvW0vfAvvyw4w/DjvM90SsEW7fGPjdpEm4OEYmM0rJSfj/39wCMHTwWy7CzFqNXCNQiEJE0e2zRY3y16St67NuD0444Lew4u1EhEBEJ0I7yHUycMxGIjQ1kWmsAVAhERAL1xD+f4LPvPuPotkdzTqdzwo5TpegVgsQYgQqBiASsvKKc8bNi9xy/ceCN5OcFM+txfUWrELirRSAiaTPtg2ksX7ecjq07MrTb0LDjVCtahaCsLDbFRIMGsQ8RkYBUeMXOm9KPHjiaBnmZe8yJViFQa0BE0uSlf73E0tVLObDFgfxHj/8IO06NVAhERFLM3Rk3axwA1w+4nkYNGtXyjHBFqxBooFhE0uC1Fa9RtKqIfZrtw2XHXBZ2nFpFqxAkWgS6qlhEApQYGxjZbyRNC5qGnKZ20SwEahGISEBmfjaTWZ/PYq/Ge3FFnyvCjpMUFQIRkRQaNzM2NvCbvr+hZaOWIadJTrQKgcYIRCRAC75cwD9W/oMWDVswou+IsOMkLVqFQGMEIhKgxNjAlX2uZO8me4ecJnnRLARqEYhIii3+ejEv/utFmjRowsj+I8OOs0cCKwRm9qiZrTazpdUsP9PMlpjZe2ZWZGYDg8qykwqBiARk/OzYnELDew1nn2b7hJxmzwTZIpgCDKlh+RtAD3cvBH4JPBxglhiNEYhIAJatXca096fRML8h1x13Xdhx9lhghcDdZwLrali+yd09/rAZ4NWtmzJqEYhIACbMnoDjXNzjYtq3bB92nD0W6hiBmZ1tZsuAvxFrFVS33vB491HRmjVr6r5DDRaLSIp98u0nPL7kcfItnxsG3hB2nDoJtRC4+wvufjRwFnBzDetNdvfe7t67Xbt2dd+hWgQikmIT50yk3MsZ1n0Yh+51aNhx6iQjzhqKdyMdamZtA92RCoGIpNCXG77ksfcewzDGDBwTdpw6C60QmNnhFr95p5kdAzQCSgLdqQaLRSSFbp97O9vLt3Ne5/M4uu3RYceps8DulGBmTwHHA23NrBj4HVAA4O4PAucCvzCzHcBW4MJKg8fBUItARFJk9ebVPLTwISB2U/psFlghcPca78vm7hOBiUHtv0oaLBaRFJn09iS2lm3l9CNPp8d+PcKOUy8ZMUaQNmoRiEgKfLv1W+575z4g+1sDELVCoDECEUmBexfcy8btGznp0JPo275v2HHqLVqFQC0CEamnjds2cte8uwAYO2hsuGFSJFqFYPv22OeGDcPNISJZ64GiB/i29FsGHjyQwYcMDjtOSkSrEJSXxz43CGyMXERy2NYdW7nj7TuAWGsgfgZ81otWISgri31WIRCROnj43YdZvXk1vfbvxY8P+3HYcVJGhUBEJAnbyrZx29zbABg7OHdaAxDVQpCfH24OEck6UxdPpXhDMV336coZR50RdpyUilYh0BiBiNRBWUUZE+ZMAGLXDeRZbh06c+unqY26hkSkDp5e+jQrv13JEXsfwfmdzw87TsqpEIiI1KDCK3belH7MwDHk5+Ve13I0C4HGCEQkSc9/+DzL1i7j4FYHc1H3i8KOE4hoFQKNEYjIHnB3xs0cB8DoAaMpyC8IOVEwolUI1DUkInvg5eUvs/ibxezffH8u6XlJ2HECo0IgIlIFd+fmmbE76F533HU0bpC7c5RFsxBojEBEavHmJ28y/8v5tGnShst7XR52nEDV+NbYzF4Cqr1rmLtn11UVGiMQkSSNmxUbGxjZfyTNGjYLOU2wajsi3h7/fA6wH/B4/PFQ4JugQgVGXUMikoQ5n89hxqczaNWoFVf1uSrsOIGr8Yjo7m8BmNkd7t670qKXzKwo0GRBUCEQkSQkrhsYcewIWjVuFXKa4CU7RtDMzA5NPDCzjkD2tZU0RiAitVi4aiGvfPwKzQqa8Zt+vwk7Tlok+9b4WmCGma0EDDgEyL7RE40RiEgtEq2BK3pfQdumbUNOkx5JHRHd/e9mdgRwdPxby9x9W3CxAqKuIRGpwfur3+eFZS/QKL8RI/uPDDtO2uzJEbEX0CH+nB5mhrtPDSRVENzVNSQiNRo/ezwAlx1zGfu32D/kNOmTVCEws/8FDgPeA+L9KziQPYWgoiL22QzyonX5hIjUbnnJcp5e+jQN8hpw/YDrw46TVsm2CHoDnd292msKMp7GB0SkBhNmT6DCK7ik8BIObnVw2HHSKtm3xkuJXUeQvTQ+ICLV+Py7z5m6ZCp5lsfogaPDjpN2yR4V2wIfmNkCYOcgcVZdWaxCICLVuG3ObZRVlPGzbj/j8L0PDztO2iV7VPzvIEOkhQaKRaQKX238iofffRiAGwfeGHKacCR7+uhbQQcJXGKMQIVARCq54+072Fa+jXM6nUOXfbqEHScUyZ41tJF/Tz7XECgANrt7y6CCpVzirCEVAhGJW7tlLQ8WPQhEtzUAybcIWiS+NjMDzgT6BRUqEIlCoFNHRSTu7nl3s3nHZk45/BR6HdAr7Dih2eOjosf8GTg59XECpEIgIpWsL13PPQvuAWDs4LEhpwlXsl1D51R6mEfsuoLSQBIFRYVARCq5b8F9bNi2gRM6nMBxBx0XdpxQJXvW0OmVvi4DPiXWPZQ9VAhEJG7z9s1MmjcJgJsG3RRymvAlO0aQ/XdtViEQkbiHFj5EydYS+rXvx4kdTww7TuiSOiqaWXsze8HMVsc/njOz9rU859H4ukurWT7MzJaY2T/NbK6Z9ajLD5A0FQIRAUrLSvn93N8DMHbQWGLnv0RbskfFx4AXgQPiHy/Fv1eTKcCQGpZ/AvzA3bsBNwOTk8xSNyoEIgI8tugxvt70NYX7FXLqEaeGHScjJHtUbOfuj7l7WfxjCtCupie4+0xgXQ3L57r7t/GH84AaWxj1Vnn2URGJpB3lO5gwZwIQGxtQayAm2UJQYmYXmVl+/OMioCSFOS4FXqluoZkNN7MiMytas2ZN3faQmDhVLQKRyHp8yeN8/t3ndGrbiXM6nVP7EyIi2aPiL4ELgK/jH+cBKRlANrMTiBWCG6pbx90nu3tvd+/drl2NDZHqqWtIJNLKK8q5dfatANw46EbyTMeChGTPGvoMSPlMo2bWHXgYOMXdU9nC2J0KgUikTftgGsvXLefQvQ7lp11/GnacjJLsWUOHmtlLZrYmfibQX8zs0Prs2MwOBp4Hfu7uH9VnW0lRIRCJrAqv2HlT+tEDRtMgT9PRV5bsq/EkcB9wdvzxT4GngL7VPcHMngKOB9qaWTHwO2KT1eHuDwK/BdoA98cHbMrcvfee/whJUiEQiawX//UiS1cvpX3L9vyixy/CjpNxki0ETd39fys9ftzMRtX0BHcfWsvyy4DLktx//akQiESSuzNu5jgArj/ueho1aBRyosxTYyEws73jX75iZqOBp4lNR30h8HLA2VJLhUAkkl5b8RoLv1rIPs324bJj0vfeM5vU1iJYSOzAnzjZ9vJKyxwYE0SoQKgQiESOu3PzzJsB+K/+/0WTgiYhJ8pMNRYCd+9oZnlAf3efk6ZMwVAhEImcmZ/NZM4Xc9ir8V5c0fuKsONkrFqPiu5eAfwhDVmCpSuLRSJn3KzY2MA1/a6hRaMWtawdXcm+PX7DzM61bL4eW1cWi0TK/OL5vL7ydVo0bMGIY0eEHSejJXtUvByYBmw3sw1mttHMNgSYK/XUNSQSKYnrBq7qcxV7Ndkr5DSZbY/vWZy1VAhEIuO9r9/jpY9eokmDJlzb/9qw42S8ZK8stvikc/8n/vggMzs22GgppkIgEhnjZ40H4PJel7NPs31CTpP5kj0q3g/0B34Wf7yJ2JXG2UOFQCQSlq1dxrMfPEvD/IZcd9x1YcfJCsleWdzX3Y8xs0UA7v6tmTUMMFfqqRCIRMKts2/FcS4pvIQDWx4YdpyskOxRcYeZ5RO7iAwzawdUBJYqCCoEIjlv5bcreWLJE+RbPjcMqHZme9lFskfFe4AXgH3M7BZgNjA+sFRBUCEQyXkTZ0+k3Mu5qPtFdNyrY9hxskayZw09YWYLgR8Sm27iLHf/MNBkqaZCIJLTijcUM2XxFAxjzMDsmf0mEyRVCMzsZmAmMMXdNwcbKSAqBCI57fa5t7O9fDsXdLmAo9oeFXacrJLsUXElMBQoMrMFZnaHmZ0ZYK7U0xQTIjnrm03fMHnhZCB2U3rZM0kVAnd/zN1/CZwAPA6cH/+cPTTFhEjOmjRvElvLtnLGUWfQfd/uYcfJOsl2DT0MdAa+AWYRu3n9uwHmSj11DYnkpHVb13HfO7HLmtQaqJtkj4ptgHxgPbAOWOvuZUGFCoQKgUhOunf+vWzavokfHfojjj0wuyY8yBTJnjV0NoCZdQJOBqabWb67tw8yXEqpEIjknA3bNnD3/LsBGDt4bMhpsleyXUM/AQYBg4HWwJvEuoiyhwqBSM554J0H+Lb0WwYdPIjBhwwOO07WSnaKiSHEDvx3u/uqAPMER4VAJKds2bGFO+fdCag1UF/Jdg392sz2BfqY2THAAndfHWy0FFMhEMkpD7/7MKs3r6b3Ab350aE/CjtOVkt2GurzgQXEThu9AJhvZucFGSzlVAhEcsa2sm3cNuc2AMYOGks23zwxEyTbNTQW6JNoBcQnnXsdeDaoYCmnQiCSM/60+E98ufFLuu3TjdOPOj3sOFkv2aNi3i5dQSV78NzMoCuLRXJCWUUZE2ZPAGLXDeRZdh2KMlGyLYK/m9mrwFPxxxcCLwcTKSC6slgkJzz1z6f4ZP0nHNnmSM7rnF091Jkq2cHiUWZ2LjAg/q3J7v5CcLECoK4hkaxXXlHO+NmxGfDHDBxDfl5+yIlyQ7ItAtz9OeC5ALMES4VAJOs9/+HzLFu7jENaHcKwbsPCjpMzaiwEZraR+F3Jdl0EuLu3DCRVEFQIRLKau3PLrFsAGD1wNAX5BSEnyh01FgJ3b5GuIIFTIRDJan9b/jcWf7OY/Zvvz8WFF4cdJ6dE56ioQiCStdydcTPHATDquFE0btA45ES5JTpHRRUCkaz1xidvMP/L+bRt2pbhvYaHHSfnROeoqEIgkrUSYwMj+42kWcNmIafJPdE5KuqCMpGsNPvz2cz4dAatGrXiyj5Xhh0nJ0WnECSoEIhklURr4Oq+V9OqcauQ0+Sm6BQCr+osWBHJZEWrivj7x3+nWUEzftP3N2HHyVmBFQIze9TMVpvZ0mqWH21mb5vZNjO7LqgcVew4bbsSkfoZPyt2FfGVfa6kTdM2IafJXUG2CKYQu6FNddYBVwO3B5jh39QiEMkqS1cv5YVlL9AovxEj+48MO05OC6wQuPtMYgf76pavdvd3gB1BZdhlh7HPahGIZIVEa+BXx/yK/ZrvF3Ka3JYVYwRmNtzMisysaM2aNfXdWGpCiUhglpcs55n3n6Egr4BRA0aFHSfnZUUhcPfJ7t7b3Xu3a9eurhtJbSgRCcyE2ROo8Ar+o8d/cHCrg8OOk/OyohCklFoEIhnts/WfMXXJVPIsjxsG3hB2nEiITiFQi0AkK9w25zbKKsoY2nUoh+99eNhxIiHp+xHsKTN7CjgeaGtmxcDvgAIAd3/QzPYDioCWQIWZXQN0dvcNQWWKBwt08yJSd19t/IpHFj0CwI2Dbgw5TXQEVgjcfWgty78G2ge1/yp2mLZdiUjd3PH2HWwr38a5nc6lc7vOYceJjOh0DSWoRSCSkdZuWcsDRQ8AsZvSS/pEpxCoRSCS0e6adxdbdmzh1CNOpef+PcOOEynRKQQJahGIZJz1peu5d8G9AIwdNDbkNNETnUKgFoFIxrpvwX1s2LaBEzueSP+D+ocdJ3KiVwjUIhDJKJu2b2LSvEmAxgbCEp1CkKBCIJJRHip6iJKtJfRv358TOpwQdpxIik4hUNeQSMYpLSvl9rdjExCPHTwW0xu1UESnECToD00kYzy66FG+3vQ1PffrySmHnxJ2nMiKTiFQi0Ako2wv387EORMBtQbCFp1CkKA/NpGM8PiSx/n8u8/p3K4zZx19VthxIi06hUAtApGMUVZRxq2zbwXgxoE3kmfRORRloui9+moRiIRu2vvT+Hjdxxy212Fc2PXCsONEXnQKgVoEIhmhwiu4ZdYtAIwZOIYGeYHNfSlJik4hSFCLQCRUf1n2F95f8z4HtTyIn/f4edhxhCgVArUIRELn7oybNQ6A6wdcT8P8hiEnEohSIUhQi0AkNK+ueJV3v3qXfZvty6U9Lw07jsRFpxCoRSASKnfn5pk3A3DdcdfRpKBJyIkkIXqFQC0CkVC89dlbzP1iLns32Zv/7P2fYceRSqJTCBJUCERCMW5mbGzgmr7X0Lxh85DTSGXRKQTqGhIJzbziebzxyRu0bNSSEX1HhB1HdhGdQpCgFoFI2iWuG/h1n1/TunHrcMPIbqJTCNQiEAnFoq8W8deP/krTgqZc0++asONIFaJTCBLUIhBJq/GzxwNwea/LadesXchppCrRKQRqEYik3YdrPuS5D56jYX5DrjvuurDjSDWiUwgS1CIQSZtbZ9+K41za81IOaHFA2HGkGtEpBGoRiKTVinUrePKfT5Jv+Vw/4Pqw40gNolMIEtQiEEmLiXMmUu7l/LzHz+nQukPYcaQG0SkEahGIpE3xhmKmvDcFwxgzcEzYcaQW0SsEahGIBO73c37PjoodXNj1Qo5sc2TYcaQW0SkECSoEIoH6ZtM3TH53MhC7DaVkvugUAnUNiaTFnW/fSWlZKWcedSbd9u0WdhxJQnQKQYJaBCKBWbd1HfcX3Q/ATYNuCjmNJCs6hUAtApHA3TP/HjZt38TJh51MnwP7hB1HkhSdQpCgFoFIIDZs28Dd8+8G1BrINtEpBGoRiATq/nfuZ33pegYfMphBhwwKO47sgcAKgZk9amarzWxpNcvNzO4xs4/NbImZHRNUll12nJbdiETJlh1buPPtOwEYO2hsyGlkTwXZIpgCDKlh+SnAEfGP4cADAWZRi0AkQH9c+EfWbFnDsQcey0mHnhR2HNlDgRUCd58JrKthlTOBqR4zD2htZvsHlWcntQhEUmpb2TZum3sbEBsbMP2PZZ0wxwgOBL6o9Lg4/r3dmNlwMysys6I1a9bUbW9qEYgEYsp7U1i1cRXd9+3OT478SdhxpA6yYrDY3Se7e293792uXT1vbKF3KyIps6N8BxPmTABirYE8y4pDiuwizN/al8BBlR63j38vGGoRiKTcU0uf4tP1n3JUm6M4t9O5YceROgqzELwI/CJ+9lA/4Dt3/yqwvWnSOZGUKq8oZ/ys2G0oxwwcQ35efsiJpK4aBLVhM3sKOB5oa2bFwO+AAgB3fxB4GTgV+BjYAlwSVJZdgqVlNyK57rkPn+NfJf+iQ+sO/Kzbz8KOI/UQWCFw96G1LHfgqqD2X8UO07YrkVzn7twy6xYARg8YTUF+QciJpD6iN7KjFoFIvf31o7+y5JslHNDiAC4uvDjsOFJP0SkEahGIpIS7M27WOABGHTeKRg0ahZxI6is6hSBBLQKRenl95ess+HIB7Zq241fH/CrsOJIC0SkEahGIpERibGBk/5E0a9gs5DSSCtEpBAlqEYjU2azPZvHWZ2/RunFrruxzZdhxJEWiUwjUIhCpt0Rr4Opjr6Zlo5Yhp5FUiU4hSFCLQKRO3vnyHV5d8SrNGzbn6r5Xhx1HUig6hUAtApF6GT87dhXxlb2vpE3TNiGnkVSKTiFo3hzatYMmTcJOIpJ1yirKyLd8mhY0ZWT/kWHHkRQzz7J3yr179/aioqKwY4hE0prNa2jXrJ4zAEsozGyhu/euall0WgQiUm8qArlJhUBEJOJUCEREIk6FQEQk4lQIREQiToVARCTiVAhERCJOhUBEJOKy7oIyM1sDfFbHp7cF1qYwTpCyKStkV15lDYayBiNVWQ9x9yovBMm6QlAfZlZU3ZV1mSabskJ25VXWYChrMNKRVV1DIiIRp0IgIhJxUSsEk8MOsAeyKStkV15lDYayBiPwrJEaIxARkd1FrUUgIiK7UCEQEYm4nCwEZjbEzP5lZh+b2egqljcys2fiy+ebWYcQYiay1JZ1pJl9YGZLzOwNMzskjJzxLDVmrbTeuWbmZhba6XnJZDWzC+Kv7ftm9mS6M1bKUdvfwMFmNt3MFsX/Dk4NI2c8y6NmttrMllaz3MzsnvjPssTMjkl3xkpZass6LJ7xn2Y218x6pDtjpSw1Zq20Xh8zKzOz81IawN1z6gPIB1YAhwINgcVA513WuRJ4MP71T4FnMjjrCUDT+NdXZHLW+HotgJnAPKB3pmYFjgAWAXvFH++TwVknA1fEv+4MfBpG1vj+BwPHAEurWX4q8ApgQD9gfgZnPa7S7/+UTM5a6W/lTeBl4LxU7j8XWwTHAh+7+0p33w48DZy5yzpnAn+Kf/0s8EMzszRmTKg1q7tPd/ct8YfzgPZpzpiQzOsKcDMwEShNZ7hdJJP1V8B97v4tgLuvTnPGhGSyOtAy/nUrYFUa830/iPtMYF0Nq5wJTPWYeUBrM9s/Pem+r7as7j438fsn3P+tZF5XgBHAc0DK/1ZzsRAcCHxR6XFx/HtVruPuZcB3QJu0pKsmR1xVWSu7lNi7rTDUmjXeDXCQu/8tncGqkMzreiRwpJnNMbN5ZjYkbem+L5ms/w1cZGbFxN4NjkhPtDrZ07/pTBHm/1atzOxA4GzggSC23yCIjUrqmdlFQG/gB2FnqYqZ5QF3AheHHCVZDYh1Dx1P7J3gTDPr5u7rwwxVjaHAFHe/w8z6A/9rZl3dvSLsYLnAzE4gVggGhp2lBncBN7h7RRCdF7lYCL4EDqr0uH38e1WtU2xmDYg1t0vSE6/KHAlVZcXMTgJuAn7g7tvSlG1XtWVtAXQFZsT/UPcDXjSzM9y9KG0pY5J5XYuJ9QnvAD4xs4+IFYZ30hNxp2SyXgoMAXD3t82sMbGJyMLqzqpJUn/TmcLMugMPA6e4exjHgGT1Bp6O/2+1BU41szJ3/3NKth7W4EiAgy4NgJVAR/49+NZll3Wu4vuDxf8vg7P2JDaYeESmv667rD+D8AaLk3ldhwB/in/dllh3RpsMzfoKcHH8607ExggsxL+FDlQ/AHsa3x8sXhBWziSyHgx8DBwXZsZksu6y3hRSPFiccy0Cdy8zs18DrxIbZX/U3d83s/8Bitz9ReARYs3rj4kN0Pw0g7P+HmgOTIu/G/jc3c/I0KwZIcmsrwI/NrMPgHJglIfwjjDJrP8F/NHMriU2cHyxx48I6WZmTxHrTmsbH7P4HVAA4O4PEhvDOJXYAXYLcEkYOSGprL8lNjZ4f/x/q8xDmpE0iazB7j+kvycREckQuXjWkIiI7AEVAhGRiFMhEBGJOBUCEZGIUyEQEclgyU5IV2n9PZ5MUYVAIsnMWpvZlfGvDzCzZ1O47f3N7LXK2zWzwjBnDZWsNoX4BYW1MbMjgDHAAHfvAlyTzPNUCCSqWhObhRZ3X+XuqZzWdwjw6i7bLSR2fn3S4le9S8R5FRPSmdlhZvZ3M1toZrPM7Oj4ojpNpqhCIFE1ATjMzN4zs2mJZreZXWxmfzazf5jZp2b2a4vdE2JRfHK6vePrVfePCLFC8IqZdTCzpWbWEPgf4ML4/i40s2bxJv+C+LbPrLT/F83sTeCN9L4kkkUmAyPcvRdwHXB//Pt1mkxR7zgkqkYDXd290GI3JvprpWVdiU3t0ZjYFbI3uHtPM5sE/ILYBGCTgf909+Vm1pfYP+KJZpYPHOXuH8S3i7tvN7PfEpty49cAZjYeeNPdf2lmrYEFZvZ6fP/HAN3dvbZpiSWCzKw5sXspJGYbAGgU/1ynyRRVCER2N93dNwIbzew74KX49/8JdK/lH7EvMD+JffwYOMPMros/bkxs7huAf6gISA3ygPXuXljFsjpNpqiuIZHdVZ7htaLS4wpib552/iNW+ugUX+cU4O9J7MOAcys9/2B3/zC+bHMKfgbJUe6+gdhB/nzYeXvQxG02/0ysNYCZtSXWVbSytm2qEEhUbSQ2dfYeq+Uf8YfA61U8bdf9vQqMsHiTwsx61iWL5L74hHRvA0eZWbGZXQoMAy41s8XA+/z7rnavAiXxyRSnk+Rkiuoakkhy95L4gNpS4MNan7C7YcADZjaW2CyRT5vZKqA03q20q+nAaDN7D7iV2C097wKWWOymPp8AP6lDDslx7j60mkW7DQTHZ6UdGf9ImmYfFUkRi91Frr27Twg7i8ieUCEQEYk4jRGIiEScCoGISMSpEIiIRJwKgYhIxKkQiIhEnAqBiEjE/X+GjD2O2LHPVQAAAABJRU5ErkJggg==", + "text/plain": [ + "<Figure size 432x288 with 1 Axes>" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], "source": [ - "t = [412, 417, 420, 423, 425,429, 430,431, 432,433, 435, 437,464]" + " fig = plt.figure(1)\n", + " #h1=plt.plot(x,u0,linewidth=2, c=[0.3, 0.5, 0.2], label='init. cond.')\n", + " h2=plt.plot(t,g,linewidth=2, c='green', label='time sol.')\n", + " h3=plt.plot(p,g,linewidth=2, c='red', label='iteration.')\n", + " #h4=plt.plot(x,uslm,linewidth=2, c='blue', label='Semi-Lagr.')\n", + " plt.legend(loc='upper left')\n", + " #plt.title('Linear Advection, DX=' + '%6.4f' % (dx) + ', DT=' + '%6.4f' % (dt) + ', DTS=' + '%6.4f' % (dts))\n", + " plt.xlabel('time/iter')\n", + " plt.ylabel('lowerbound')" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAQoAAAD0CAYAAABjJGgUAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/MnkTPAAAACXBIWXMAAAsTAAALEwEAmpwYAABpKklEQVR4nO2dd3yb5dX+v7ck2/HeduI4iZ04ezmLWVZLyyYpZZemZRTKpm+Bl/G2hZZfKaWlwEvL20HLKJA2CRBmS8soUEYCJHbsLBLbcTziIclbljXu3x/y/SDL2tZK0PX5+BNH0jNk6bmec59znesIKSVJJJFEEv6gi/cJJJFEEomPJFEkkUQSAZEkiiSSSCIgkkSRRBJJBESSKJJIIomASBJFEkkkERCGAM8na6dJJBF9iHifQCAkI4okkkgiIJJEkUQSSQREkiiSSCKJgEgSRRJJJBEQSaJIIokkAiJJFEkkkURAJIkiiSSSCIgkUSSRRBIBkSSKJJJIIiCSRJFEEkkERJIokkgiiYBIEkUSSSQREEmiSCKJJAIiSRRJJJFEQCSJIokkkgiIQH4USUQBTqeT4eFhdDodBoMBvV6PEAlvSZDEFxhJooghpJQ4HA5sNhs2mw2n06kRhMFgICUlBb1enySOJBIOIsAAoKTDVYQgpWRkZEQjB5vNNuY59QNgMpkoKCggPT0dg8GATqdLEsfhjYT/cJMRRQzgdDoZGRlBSun1ghdCjHn84MGDZGRkjHneYDBoP0niSCLWSBJFFCGlxG63Y7fbEUKg07lyx06nk76+PjIzM9Hr9eO2U8ShnlP7UVFIkjiSiDWSRBElSCkxm810dnZSUVGhXch2u526ujpGRkY0AsnPzyc/P5+cnBy/xOG+7yRxJBFLJIkiClAXsd1up7+/X7toe3t7qa+vp6KigsLCQi1X0dPTQ1dXF3v37sVgMDAyMkJfXx+TJk3SohB3eCMOlSBVz7snR5PEkcREkUxmRhCeS43BwUEaGhpYvHgx+/fv5+DBgyxZsoT09HRGRkYAxl3AIyMjbN++nbS0NIaGhkhNTSUvL4+CggKysrK8Eoe383A6ndr/hRCkpKRoEYcn0SQRdyT8h5EkigjB6XSOKXkKIRgYGGDPnj1IKcnMzGTOnDnahe4vubljxw6mT59OVlYWVqsVs9mM2Wymv7+ftLQ0bamSlZUV1AWviEN91jqdjpSUFC3iSBJH3JHwf/zk0mOCcNdGAGPu+H19fZhMJpYsWUJJSUlY+09LS2Py5MlMnjwZAIvFgtlsprm5mcHBQdLT08nLyyM/P5/MzEyfVRX3xCi4iMpqtbJ//35mzpw5bqmSRBLuSBLFBKByAw6HY8xd2el0sm/fPoxGI3l5eSGThBACX5Feeno66enplJWVIaXUiKOpqYnBwUEyMzO1iCM9PX0ccaj/K+IwGo3MnDmTkZERbTmkFKNJ4khCIUkUYcJTG6EuwOHhYWpraykoKGDp0qXs2LEjaucghCAjI4OMjAymTp2KlJLBwUHMZjP79u3DYrGMIw5v+/AVcSSJIwmFJFGECF/aCIDOzk4+++wz5s+fT0FBAVarNaxj+IsoAm2XlZVFVlYW06ZNQ0rJwMAAZrOZPXv2YLVayc7O1ogjLS3N6z6AMcShVKXuxKGSo0ni+GIgSRQhwFOG7b7U2L17NxaLhVWrVpGamgq4Ljr36kOwiFRiUQhBdnY22dnZTJ8+HafTycDAACaTiZ07d2p5io6ODvLz87Xz9tyHZylWSonVatWI0J04VFUlicMLSaIIEiqK8FxqDA4Osn37diZPnsy8efPGXCThRgZA2Nv5g06nIycnh5ycHMBFcB999BFDQ0O0tbVht9vJzc0lPz+fvLw8UlJSxu0jGOLQ6/XaMiVJHIcHkkQRAGrd393dzeTJk8eE2W1tbTQ1NbFw4UJyc3PHbTuRJUQsoHIPlZWVADgcDvr6+rSqipRyDHEYDOO/Lt6IQ7XRKyjiSLbUH7pIEoUfKG2ExWKhs7OTKVOmAK7oYufOnTidTo444givFxAkXkQRCHq9XstfgOt99vb2Yjab2b9/P8AY4ghWbq6I4+DBg2RlZZGbm5skjkMMSaLwAk9thF6v1y7cvr4+6urqmDFjBmVlZX6/5BOJKOJBFJ4wGAwUFhZSWFgIuIijp6cHk8lEY2MjOp1O03AE06cyNDRERkYGTqcTi8UyJnGaJI7ERpIoPOBNG6HT6XA4HDQ3N9Pa2sqSJUvIysoKuK9EueAjBYPBQFFREUVFRQDYbDbMZvOYPhV34vCshkgp0el02o96LEkciY8kUbjBlzZCheDp6ekcccQRXu+c3hButHGoEExKSgolJSWaoGxkZASz2czBgwfZs2cPqampY+Tm3iTr7mQM3onDvTM2SRzxQZIo8K+NMJvN1NfXk5qayoIFC+J4lomP1NRUSktLKS0tBVziM7PZTGtrK/39/dhsNq2T1VefijfiUMtAT9vAZEt97PCFJwpf2ggpJQ0NDXR3d7N06VJ27twZs3M6VCKKQJg0aRJTpkzRksC1tbUYDAaam5sZGBggIyNDS4z661PxRhx2u1173n2pkiSO6OALTRTqTuW51LBardTW1pKbm8uqVavGtW0nER70ej0lJSVkZmaG1acC3qsqnsSRNPGJPL6QROFvqdHd3c3u3buZO3eulrRzN76NBQ6XiMIT7jkKf30qe/fuxWKxkJWV5bdPRe3Hl/tXd3c3GRkZ5ObmJoljgvjCEYU33wj1+GeffUZ/fz8rV64c0wcR6Qu3v7+f7du3o9PpyM/Pp6CggOzs7MO+Z8KX/wZEpk9F7Ucdo7+/n5SUlKT7VwTwhSEKT22EZ31/+/btFBcXs2LFiqh+cVpaWmhubmbBggXo9XrMZjNtbW309/czadIk8vPzNSI73KDKo8HAW59Kf38/ZrOZHTt2YLPZyMnJ0YjDW5+K0+nU5qS4n4MncXg2uCWJYzy+EEShwtGamhoqKirIzs7Wnjt48CD79u1j4cKF5OXlRe0cHA4HO3bsQErJEUccoeU9lCmN+5q9p6cHo9FIV1cXBQUF5OfnM2nSpKidW6zgPvAoVOh0OnJzc8nNzaWiokJzMldVFYfDMa5PxeFwjCMm95Z6+DyZ7a/BLUkcXwCicNdGwOfSaIfDwa5duxgZGeGII47w2gAVKQwMDLB9+3amTZvG1KlTNVNdd7iv2W02G+np6WRkZGAymbTzVBdCfn5+VM83WvC39AgVShWal5dHZWUlDoeD3t5eenp6tD4Vu91Odna2NkjJG/wRhyKJw8U2UAghZJhr6MOWKDzr70oNqFqtt2/fztSpU5k2bVpUP3ibzUZtbS2LFi3SujaDgXvoPWPGDJxOp9Z3ceDAAaSUGmnk5uYGLQJzR6wTppEkCk/o9XoKCgooKCgA0CLIgYEBtm3bBqBFG776VMC3beDhYOITLknAYUoUvrQRQgg6OjowGo0sXrx4zBIk0nA6nezcuRObzcaxxx477o4WqmpTJT7dG7Z6enro7u5m3759GAyGMYnRRLzrRZMoPKGWDpWVlaSlpY3pU2loaBjz9/TXpwIcFsQhhMgFZgDbpZRSCFEALAHSgG1Syg5/2x92ROFPhm00GjUZtq9QNBIYGhqitraWKVOm+Ax7J9pM5tl3ody6W1tb6evrIz09XctvZGRkeD3e4RRReIPT6dQuXM+/18jICD09PXR2dgbVpwKhuX91dHQwefLkRMotLQe+J6W8QAhRCtwOnAwcBLKFENdJKbf42viwIQp/2gg1eCczM5Py8vKokkRHRwd79+7VkqOtra0+zzeScHfrVolRdfccGhrSSosFBQXjSr+xQjyJwhOpqalj+lSsVis9PT0++1SCHcSkTHz+67/+i5/97GfMmzcvOm8udEwG1Js4AZgspVwEIIS4CPg+cLGvjQ8LovAnw25qaqKjo4Pq6mra29ujVnZ0Op3s2bOHwcHBMXZ46jxCuUAmqttwT4yWl5cjpRxXWszLyyM3NzfmUUXUiUK9HyFCqrKkpaV57VNpaWlhYGAgqHkqniX3YDqMY4hOACHEdFzzejqEEHoppQPIBgb9bXzIE4XnDE71QamJW5mZmRxxxBFjkpnhwtcFPzw8TE1NDcXFxcydO3fMaxIhVyCE0CzwZsyYoTlZGY1GhoaG+OSTT7SwO9zEaFDnYbMhDhxAdHQguroQJpPrx2x2/fT0IIaGwGJBWCyuf4eGYHgYrFbEyAjY7a4fmw3h57OUej0n6HToUlMhJQVpMMCkSZCaipw0CdLTkdnZyKwsyMpCZmUhs7Nh9DFDdjZZWVmUZ2XhzM3FqtdjHB4Ouk9lcHAw0Yji38A84JfAp8Bs4E9CiM+AxcCT/jY+ZInCc6nh/kEZjUZ27drFnDlzKC4u1h6fCFGou7znF6Krq4s9e/Zoztu+ztVXjsDXnSmad3rlZJWTk0NPTw9LliwZlxhV+Y2QEqNDQ+gaG9E1NiL270d34ADiwAHXvy0tnNTd7XUzqdcj8/IgL891waanIzMykIWFkJ4OkyYh09IgNRUMBtdFbzCAO6G5n6OU4HBwsKWFKUVFYLOB3Y4YJRysVhcBDQ6i6+5G9PdDfz9iYMBFRl6QBWTeey9Trr0WKSVDQ0N++1SGhobIzMwM7u+mvQXxJ+BMoFMtC3y8bhXwAXChlHJDMPuWUtqB3wghPgDOAmqADKAbuFZK6f3DGcUhSRT+ZNj79u2jp6eHFStWjEskTYQo1LbuXYx79+6lp6dnnOTb33aJBqUTKC4u1kjVarViMploaWmhv79fu3sWFBRozVqiuxvdtm3oa2o+/7epacy+ZUYGzunTkdOm4Vi+nBaHg7KVK3GWlCCLipCFhS4yyMkZe6FHCPu2bKFg1arQNrJaEQMDnxNHfz/09iJ6enAuWwa4/maZmZlazsuzT+WWW26ht7eXp556iq985SvMmDEj2KM/DjyCn7u7EEIP3Ae8HtobAyGETkr5qRCiHiiRUh4YfTwgDxxSROHe8OOZsHQfvLNy5Uqvd0GdTjdO6BQs3O/yqrs0Pz/f57Hct5vIseKBtLQ0rT1cSslwczPWf/8b68cfo9u5k5x9+0jr+Lya5qysxLFsGbaLL8ZZVYWzshJZUYEsKBhDAE1btlAc6oUba6SluaKXwsKgB+969qm8/PLLnHDCCZhMJm655RbWrVsX7HDpd4QQFQFedj2wEQjpDzkqtnIKIRYCa4GbhBBXSimfAG4WQrwrpfyPr+0PGaJQGn0lw3YXL3kO3vGFSEQUaiaGe3epPwgR3myPWMCnw1ZnJ/p330X/3nvo332XnD17XK8XAmdVFdajjqK9qorO8nJ6KyvJLC+noKDAp1P3Fw2qb+Tmm2+O6H6FEFOBrwMnESJR4Kp4OICbgVeAR/l8OPICoB04tInCXRuh1+u1C8/X4B1f0Ov1OByOsM+jqamJ3t5er8saXwgnOogluQghQEp027ZhePVVDP/4B/pRJaPMzsZxzDEMf+tbOFeuxLFkCYyK1LJGf5R0Wq3XhRBjFKOJuuQ6RPEg8N+jkUG4+0gH9gDH4spPgEt01eNvo4QmCm/aCGV062/wji+EewGOjIzQ19fHpEmTWLlyZUhf/ngvI3zC6UT/4YfMeuwxMjdvRnfgAFKnw7lqFdYf/Qj7SSfhXLrUlTT0A0/ptM1m04RMn332maZHKCgoiOnfIZ5/85GRkYA3rTCxElg3+l0vAk4XQtillC8Esa364n+ES5F5BPChEOJYXORxwN/GCUsUvrQRer2erq4uTCaTz8E7vhDO0qOnp4f6+noyMjKorKwM+Q7piygmqswMC1Kiq6khZf16DM89h661layUFJwnn4z1jjtwnHqqK7k4AXgmRpUeobm5WWvnVxUVXy5WkUA8E8iDg4NkZGREfL9Sykr1uxDiceDlIElCbaOXUv5aCHE3roDwXqAPuFFK+am/bROSKHyN77Pb7XR1dWEwGMKSYet0uqAvQCkl+/fv5+DBgyxbtoy9e/eGPUc03hGFMBoxPPssKX/5C/odO5ApKThOPpmhH/6QbdOns/RLX4rasd19Mzdv3szMmTMxmUzs3buX4eHhMYrRSN6F40kUAwMDYWkohBDPAicCRUKIFuDHQAqAlPL/JnJOow1hjtHffzy6b3Xc7wgh6v2VSBOKKPzJsNXgnczMTIqLi8NKmgUbUdhsNurq6khLS9PEWuFe8OHmKCJBLrpPPiH1d7/D8PzzCKsVx8qVDP/619i+/nUoKHCVmOvqJnycYKBIX5UVp02bNsaMpq6uDofDoQm/JpoYjXdEEQ5RSCkvCuG13wll30KIE/lcgWkBBkb/bQJ+BLzD5zmLcUgYovCljZBS0tzcTFtbG0uWLMFkMoWd6AsmmakIqbKyUnOPhvArJt4uelVetVqt2t3UX+tzSJAS/T/+QeqDD2J4/31kdja2tWuxXX45zgQbN+BpRuNwOOjp6RmXGC0oKPDZqOUL8SSKcMRWMcAzwC5gBJfQKhVXtOIEKnAtQXwi7kThaVHn/uF63tn1ej09PT1hVy78XexSSlpaWmhpaWHp0qXjPuhIRRQq5zF79mwyMzM1l6aGhgatVTwsOBwYXniB1F/9Cn1dHc7p0xn+2c+wrV3rEjR5QSyXRMFcuHq9fswIQzWJrKOjgz179gTVbxHK8aKFgYGBhCKK0W7RYVxirk8BKy6CcOCKLD4bfd4n4koUShvhPr5PQTUwVVVVaY064PoyjfiQ2QaCL6Kw2+3s2LEDnU7ncxLYRCMKKSUHDhygra2N5cuXk5qais1mG3NhqFbxtrY2hoaGGBgY0CoKPsuxDgeGjRtJ+/nP0e3di2POHCz/93/YzzsPgnDBilUvSjido56TyJRVoOq3ULJppRh1R7yJIsH6PBYBXcDluLpEHUA/Lm1FPi6iSMymMF++EdJt8M7y5cvHfQFUeTQceLvYBwYGqK2tZcaMGUydOtXntuGWVoUQ2O12zXV71apVPpdAqlVcp9MxODhIcXHxGCu8vLy8z4VNej2Gl14i9Z570O/ahWPhQixPPon97LMhAbULkWgxT09PJz09nbKysjGyaeXS7W62G++lR4IRxRbgDOArwGnA+6M/JwBfBX4fyP0q5kThL2HpOXjH2wftLrgKFZ5E0dbWRlNTU1BuV6FUTNyhTHVnzJjBtGnTgtpGXVBKFjx9+nRN2GQymTC/9BJV//d/pO/cia2qCuvjj+NYsyYhCUIh0l4UnrJplRg1mUy0trYyMjKCXq/HaDRqcz1iBdUklkDoH3W1WgbUSSl/P/p4nRAiH1f36Kv+dhBTopBS0tfXR3t7OxUVFWO+OKoLM5A0OhIRhcPhYOfOndjt9qDLrOEQRVdXF93d3cyZMydokvAFvV5PYV8fZXffTcqmTTgnT6bjZz+j6fjj6bdYyKiv15YpvobleCKWRjLRPpZ7YrSyspLOzk46OzsxmUw0NjaOs76LZrQxMDAwZrmcAFDy7S5gjhBiFmAGbMBcYHOgHcSMKFTC0uFwYDabqax0aUf8Dd7xholEFEIIHA4HmzdvDtlYN5Slh5SSffv2YTabKS0tDafdeCwpWSyk/vrXpD74IOh0WO+8k5HrriMjM5MFo8cbGhrCZDJpYXhubq4mbEqE/otYu1upUqz6nnlOWk9LS9P+Pr7mnoaLRPOiGDWnAVd/xy9xNZUdwKXQfAZ4ItA+ov4N8lxqqHkL8PngnZKSkqAH70ykX6Ojo4OhoSGOPPLIkBSdEHxEoVy3s7OzWblyJbt37w5ZmekO/RtvMOn730fX1ITtG9/Aes89SI9cijd9glqm7N+/HyGEFm3EayJZrHMGDodjTFLac9K659zTYMYXBosEzFEAIKUcAq4RQhQCZUCjlHIgmG2jShTetBHqQg938E441Qf35rHMzMyQSQKCiyiUBmPWrFnaFzJcwZXObGbSVVeR8uyzOKuqGHrpJRwnnBDU9p6O3epu2tbWRl9fHxkZGRQUFET8TuoPieSXCd4To+4RWU5OjhZxhDpDJQFzFACM5iNOAMpxlUePEkKkARullO3+to0KUXhqIzyrGoODgxw8eDCswTuhRhQWi4Xa2lpKSkqYN28eH3zwQUjHUwhEUG1tbezfv3+cBiMcokh//XWm3n47hr4+rLfcwsgtt7hs3MKE+93UfZnS2NhIX18fu3fv1qop0RoslGhE4Q73xKgaX9jX16eZ9zidzjGK0UDCuERbeowa1jhx9XbMB7biUmUacDWXvRJoHxEnCn8WdWrwjl6vZ+nSpWF9cUKJKFQH44IFC8IXMo3CV0ThdDq18uWqVau8zu8ImigsFtJuvZXsJ55gaO5cRl56CefixRM6b0+4L1OKi4vZvXs3JSUlY5Yp4aoh/SEeRBFubsZ9ChkwbiaIshL0tZRLNKJwQxUu+zy/0YM3RJQo/GkjWltbaW5uZvHixWzfvj3sL00wEYXT6WTv3r309fUF5VMRDLy5YylT3dLSUubPn+/TVSsYohCffUb62rXo6+vpveYaGr/9bWbNnz/h8/YHOTo02H2ZotSQKuk3adKkMdWUcD+3RI4oAsHbTBBvw6ULCgrIyMhgcHAw5OFSIoBfphBiNfBTXEsGO3CTlPK9IHevvoAHgFOEEP8ChnBFFdbRaMMvIkYUqi0cxsqw7XY7dXV1GAwGjjzyyAn3MwS6QytLvMLCwohOJvc8rnK6CuSqBYGl0oYNG5h0ww3I1FSGNm6kd+VKnD6MaKMNdzWkdJsPoro9w127H8pE4QnPpZxKjDY2NnLXXXfR3NzMpk2bOPPMM0Mpiz+Of7/MN4AXR/UQS4C/4XLVDgg3MZUV+AWwE5d02wlkCiHOkVL2+NtHxIjCc5kBnw/e8WywgvC/OP62Ue7b8+bN02TR3hDOsdWSR47OCuns7AzK6cpvRDE8TNqdd5L62GPYjzqK4T//2VXRMJtDOrdoQYix80Hc1+4HDrh8ToJ1s4p11SNWx3P/G02dOpW//vWvnHjiifT393P11Vezfv36oKoogfwyPaoTmRC0pac7/gf4IS4vinRg0ujv/YE2jOjSw/NiUoN3PE081N05UncYpVswmUwBL151jqFGNkqDUVNTQ2pqqk/lqLftvJZHm5rIuvBC9LW1jNx4I9Yf/UjrzYiVh0Wox/Bcu6tlisoFeYbg7p/v4RRR+IOaeH7LLbdw6623RnTfQoiv40pIluCSZIeKubh6OnoBI6Ot5jFdeih4G7zjCb1ej91uj0juYGRkhNraWnJycoKyqQuXKEZGRmhtbWXevHmUlZWFtK1nElS8+y6pF14IdjtDf/0rjtNOG/t8jIVJ4cKzaUvNumhoaMBisZCdna0tU74oRKEaAKO07+eB54UQx+PKV5wc7LbC9cd/HFdr+SRcUUkmLrLw3l7shogShdFoZMeOHeMG73hioia3CqrDNNDx3BGODqOjo4OGhgaKiopCJgnPL6vuqacwXHMNcuZMBp95BmbP9rpdvF2xwoF7CO7ee9HS0oLNZiMlJQWz2RwT0914z1KJJimOLlNmCiGK/LlSeWwjcU0H0yCEOA04OpjtI0oUIyMjQa3bJ0oUUkoaGxvp7Oz02mHqD6EQhZKXDwwMMH/+fLq6ukI+V62sKiX6u+/G8POf4zzpJKxPP43MzMTb1ymWIqhowbP34uDBg3R3d2vLFCWh9rZMiQTiGVFEA0KIKmDfaDJzOS7nbGOI+8jDVTFx4qp4bMUVmfwo0LYRJYqysrKgCMBgMIRNFDabDYvFoln0h/plCJYoRkZGqKmpIT8/n+XLl9Pb2xu2cY3TasXw3e+i/8tfcHz729gfeQSb00lPT4/Pu2usIopYkZJOpyMrK4uKigoAr9PWFXFEYkkaL6IYGRkJepSDO4Lwy/wGsFYIYcN1kV8QqDXcY/85wLW4nKxGcCVDjwRag9k+Lt1C4UYUvb291NXVMWnSJGbPnh3WFyEYolAuVO5LmnCNa3TDw5Reey36f/8b+//8D44776Svv5/t27eTlZWlJQELCgooLCzUtAqH4tLDHzwv3PT0dKZOncrUqVORo9PWjUYjdXV1mhKyoKAg7KHJ8SIKNcA4VATyy5RS3odrlGC4SAUKAD2uioceeBdYF8zGESWKoBudQiQK5Q7V2trKsmXL2LlzJw6HIyy5cbB2eMuWLRvzgYd18fb1MeXSS0n7+GNsjzyC84oraG9vp7GxkSVLlpCamooQYlznZ0ZGhtZpG63J4rGGv2SmEJ9PW6+srNSUkGpockpKihZtBNufEk+iSERV5mgu4wdCiGJcE8KGgMFgo5KEjyiUYCslJUWzqYvEaEBPKIMZwKsdXsjHNBpJOftsRE0NbfffT+Hll7Nn924GBwe1atDIyIhXrcLBgwc5cOAAn376KQaDgcLCwqg0ccUyagml6uGphBweHsZkMmmdnu7VFF+2BPEiikTtHBVCZAEXAd8DJuPKVfxVCPFjKaUl0PYJTRT9oyF6RUXFmGrDRJKh3i74oaEhamtrKSsr8+lREVJE0dVFymmnIT77jK7f/x7TypXs//RTcnJyWLZsmZbg9CX5zsnJITs7mwULFmC1WjEajTQ1NWlr+cLCwrC6Gr3hUOgenTRpEmVlZVqnp6qm7NixA7vdrom+3Bu2Yl2OVYjW8J9w4dYQdjxwAXCGlPKgEGISLk3GT4BbAu0nYZceLS0tNDc3s2TJknEMHcmIQjlrBWp3D/qYiiT27sX23HOYZ82itbGRBQsWjHE98ve3cieltLS0MReJpzJSheQ5OTlxuTCCheormSjclynK4t9sNmuJUYPBQEFBQUTK7+EgUZceQCFwQEp5EEBKOSyE+ARXAjUg4hZRWK1Wr8+pJYCU0qdNXSQiCmXiazKZgnLWCqq5S5HEvn3YnnuOgwsXsn/XLkpKSiJijSaEGFNytNlsmEwm2tra2L17NxkZGdoyJdD7gcRdeoQCvV4/ZplitVoxmUyMjIywefNmsrKyNDIN5m8yUSQgUagPuQlIF0JciGvYz1Rcgq36YHYSF6IwGAwMDo53B1dt6OXl5ZSXl/v8Yk3UN9Nms7F161YyMzNZsWJF0FJsvxGFyUTKGWdokcRn06fTc+AAc+bMob8/oJR+3LGCuYhTUlLGNCcNDg5qojcVkiufCV/v8VBYeoSCtLQ0pkyZQktLCytXrmRgYGDMMsXdyTwaieJEy1GoZKWU8l0hRApwO/AzXGXSh4E/B7OfhMlRqGrAokWLyPExsMZ9+3CXHiMjIzQ3NzNv3jwmT54c9HZ+I4q+PlJWr0bs2oX1b39jW34+GQ4HK1aswGg0xuTO7W6+MmPGjDGVg717945pF4/HGjoeyUUhBNnZ2WRnZzNjxgxtEpn7MiU/P5/CwsKAA4WCRaIN//HA+8CFuHQUFimlPdgN456jUMYvVquVVatWBZWgC3fp0dbWxsGDBykvLw+JJMBPRDE8TMq55yI+/ZSBJ57gk9xcKiZP1rplw7XCmyi5eFYOVAlWtYvn5uaSkZERNuGGinglF93hOYlMLVPcBwoFHLgUAIODg37nw8QaQggxquachUtwdSau3o5eIcT9wJ/i0hQWDNSFrqoNkydP9mn84g2hJjOVZ+bw8LDmyhwqvF68djuGtWsR776L6aGHqJkyhcULF46JiBJFPOVZgu3t7aW9vR2TycTWrVs1wVe0fDRjPRogGKhlypQpU8b4Zu7atQubzaY5mYcyMDkB547qcZVC7wT6pJRzAIQQZcBfcNn2bwy0k7gRxeDgIFu3bg3ZXFdtH2xEoVyolGdme3u7z0SqP4z7kkuJ4cYb0b/4IgfvuIO9y5axaunScfLjeEUU/qBcrZQmpbKycoxOQZnTFBQURMxDM9ZEEeoyx9M3033gUmNjI3q9foyTua/3Eo67VTThtrwwAv8BEEIYpJRtQogDBOlrEfOlh9PppLGxkaGhIY477riwdP3ebOm8QblQuRvZTKS06g79ffehf+wx2taupfO881gxd67XL2e4RBFLeN5ZlZy6paUFQFvHT6QEG0ui8KVRCQXuxACu3JbqhO3v79eWKZ72/uE4cAdhg/dN4L9xKSr7gaullDVB7vvrQDauRrDvCCFygW1CiBNx5Spqg9lPxCMKfxeGururEDfc5p9AEYWUkv3799PR0TGumzUSRKHbtAnDXXdx8KtfxfLDHzLfj91ZuNFBrIxrPC8oTzm1Mqdpa2tj165d2gVSWFgYUrkx1kQR6YpGamoqkydPZvLkyWOWKbt379bmwvb09NDf3x9O1eNx/NvgNQInSCnNo63hv8fV0BUMluNqJbfhWoZcC2TgWo7MAH4TzE5itvTo7u5m9+7dzJ8/n/z8fDo7O8Pel7/yqN1up76+npSUFK/dpRMlCrFjB/rLLqN33jzEH/5AeYCk6KEQUfiDp4emukBCKcFC5ARXwcDhcET1WJ7LFOdoJ/CmTZt4//33ueqqqzjrrLO44YYbgpohE4QN3vtu//0Q11yOYM5TSCl/OPr76VJKv/NF/SEmk8L27t1LT09PUMKmYOCrPDo4OEhtbS3Tp0/3mXmeCFHoe3vhO9/BlpaG7vnnyQuicpLIEUWo8LaON5vNWgk2LS1NE3x5OnZHYjkQLGJditXpdBQUFHDLLbfw/vvv8+CDD1JXVxctgdflwGvBvHC02pEipbThaghrkFLuCuegUV16qOnkeXl5rFy5MmJfFG9Lj46ODvbt2xdQhxFuadUxMsL8n/4UQ1sbttdfJzXI6kkiJjMjBU9VpMViwWg0jinBxsMKL57uVoODg1RUVLBo0bhUw4QhhDgJF1F8KYTNVDKzAbhWCPEUcBCXd+aglHI4mJ1ELaJQicRA08nDgXtUIKXUhhwHo8MIJ6IYHh6m73vfY9qnn2L77W/hmGOC3jaRL/pIX7zp6emaqtZz/unw8LCWN4iUuMkX4kkUw8PDE55d6g3CZdH/R+A0KWXQzlZubeQVwHTgHFzXvR7IFULkSSnHy6Q9EJVJYQ0NDXR1dQVlixcOVFSgjHXz8vJYvnx5UF++gFJsD5jNZoyPPMLCdetoPftsii67LKRz9UcUvi7URCaXYOE5WKi2tpbU1FRN3BRpRyt3xNsvM9LHFkJMB54DviWl3BPOPqSUX53IOUScKHbu3IkQIqBNnbpgw3WpslqtbNmyJSRjXbVtsBfhgQMH6H37bZY/8ADOY4/ls2uvpTDEu7C34ynPz+bmZq2Rq7CwMObS6liSkU6no6SkhIyMjHGOVlJKrQQbiWnrh5oDdxA2eD/C1f3529Hvnl1KuTLEY8wHzgPKpJTfE0LMBKZKKd8NZvuIE8XcuXODupBUVBDOB9rR0UF/fz/HHntsyBdXMEsPp9PpIryuLpb95CdQUIDt2Wdh376wwnX3L4/D4aC+vh69Xs+RRx6JzWYbs65Xw3BjJa2OR1OYvxJsf38/6enpWlI0nIg03hFFGN+PQDZ4VwBXTOB80oH7gU/4PL9hB34NBEU4ESeKYI1zFVGEovxzOByaDV5mZmZYd+BAyUyr1cq2bdsoLShg9v/7f4iuLmxvvgklJYiGhrCG5qiLXu17ypQpTJs2TTNiVd6RqszW3d3NwMCApjlRXpqHMvxdvJ4l2KGhIW3qm81mIy8vj8LCwqD9M+MZUSRSadsNeUC+lPLHQohTRx8bJoRpY3GRcEPo1QeLxUJNTQ1lZWWUl5fz4YcfhnVcfxGFMu+dN28epffcg+7dd7H96U/I5cvHbBuKmEd9cfr6+ti+fbumEvVGOKrMlpeXR19fH3PmzMFoNLJnzx5N1FNYWBhQs5CICPYiEuLzaeuqBOvun5mamjrOiNgT8SKK4eHhqOTkIgABtAkhjsOVxARYgmv4T1CISnk0GIRCFEqstWDBAi05Fi58EYWatr5s2TKy/vY39I8+iv3GG3FefLH2mnBLncPDw9TV1VFdXR2SvNe9iuB+wai2cRVthPvlPBSMazw7Pj2HJruXYFXjVjyNdROsIUzhIPAYo/M7hBC/A1YA1wS7g4SOKFTSr7u7O2JiLc8vq+os1drc6+sx3Hgjzi9/Gcf/+39jXhtqaVWdv9Vq5YQTTgh6meWNkDwvGM/wXCUDQ53CdagZ17jb/HuWYFVEZrPZ4nLBJqC7lYIB2AZciUvSbQFullIG7agUV6Kw2337ZthsNrZv305GRkZQM0XDgRryU1hYyLx58xCDgxguuQQKC7E98QR4tBaHUjFxOBxs376dtLQ0MjIyvJLERC4c1TY+bdo0TSGppnCpZGCo/RjRRDTW754lWNW41dnZSWdnJz09PVErwXpDAraYK8wEbgL+AXwKdOHKUQSNuC09/CU9lfv2zJkzQzaYCRYqZ+BeXjXcdJPLyu6118BLyTVYDcbw8DDbtm2jvLycqVOn8sEHH4x7jdPpxG63axeQTqfTyDDUC8pdIemeDFT9GGpNn5OTM4ZwD4WlRyhQjVsWi4XMzEwmTZqEyWTShgq5GxFH48YTTudojNAK/B04Fbgb1zTzD4QQG6SUm4PZQcItPdwH5AQK48L98tlstnE5A90zz6D/y1+w33478sQTvW4XTEShEqLz58/XWpQ9z9npdOJ0OjEYDJrRr8PhwOFwIKVEr9eHfRF7JgPtdjtms5mDBw+yZ8+eMQa86vWxQDy6R93duu12OyaTSfs7pKenawQaqQRkAi89HMBm4N+41JmXAzfjaj8/tIjC3YXKl/u2O9Q6PpQvn5SSPXv2YLPZOPbYYz8/xr59GG64Aecxx+C4806/x/QXUbS3t9PU1DRuypj78RVJqChCVVDcCaO3txchBCMjI1qkEe4d0GAwUFxcTHFx8bjuT6vVisFgoLe3NyZ2//Hs9TAYDONKsO5uVpEw3R0cHEwoohCfz/T4MvA7wAq8h8vR6s645ihCqXoopymr1UpNTQ1FRUWuXEEUBFs2m43a2lpycnJIT0//nCRsNlIuvRQMBmyPPz4uL+EOX1UP1SGr+k28kZwiAUVunu9RvY/u7m6amppYvHixFnGoaEO9TpFMqPDs/uzo6KCzs3Oc3X9hYWFM1vTRQqCqh3vUpXI87qa7KSkpWtQVyqT1RCMKNy/MLuBFXGMED+AyrMnFZYITFOIeUZjNZnbs2DHGhSoYhFKBGBgYoLa2llmzZlFaWkpXV5d2wep/8Qt0mzdj+8tfYPr0kI9pt9u1pKuaAuaJQCShXtPU1ITZbGb58uVjkp/u0YY6viLJcEkDXJ9BZmYmM2fO1KKN7u7uMbLqoqIiv9ZviYhQy6O+SrANDQ1YLBZycnK06Wz+It1EzVFIKT8CPhqVbR8HfB84WQhxnZTyt8HsI25EodPpMJlMdHd3s3z58pCVh8HqMFT7+eLFizUvQxUZ6LZtQ3/vvTguvBDnuecG3Jfn0sNisbBt2za//hdK/79r1y6KioooKCgYF9oqybhOp6O6utqr2Y56z+5EoZYx6u+gPDDDgXu0UVFRocmqW1tb6evrIysrS7uYIuWjGS1MVEfhWYLt6+vDaDSOKcF6884cHBwM6WZ32WWX8fLLL9PV1VXnwwJvHq65G8txLRV+Gcr7GDWukUKIrwCn4zK8mQY048pRBOVrAXEiCrvdTlNTEyMjIxxzzDFhN4b5iyiklOzbt4+enp5x7ec6nQ6nxULa5ZdDSQn2X/866GOqpYeKhHyJwNzzEUcccQS9vb10dXWxb98+0tLSKCoqori4GJ1Ox/bt2ykuLvY599TzHNz/dSeLSC1RYLysemBgAKPRSG2ty2JRJQITMdqIpOBKp9ORl5enGUCrEuyBAwe05KVSy4ZaHv3Od77Dddddx4oVK3y9xATcAKwJ59zdWswnAR8Dv5BSdoSzr5jnKJQLVVFREcPDwxMKm/3Z4dXW1mqTwLzlAwz33INuxw5smzZBkGpPRRRKxekrEvKWtHQ3ah0aGqK7u5vt27fT19enhffhVAZUotO9guIeZTgcjnHlV/fzDAbCbZCOijbcjWbV4ORIunZPBNHwzFTw9M5UBHrPPffw0ksv0djYSHFxMUcffXTAv8Xxxx9PU1OTz+ellJ1ApxDijImcs5TyFSHEYuB0IUQGsBP4UEo5FOw+ohJR+Er6KUHQokWLMBgMfPbZZ2Efw5dv5uDgIDU1NVRWVmpDeDyRs2MHqQ89hOPSS3GeckpIxz1w4IDWRu8raelOEt4u/IyMDLKysmhra2PFihWMjIxo5rVZWVmaJiLUi859iZKSkqIRhrfyq3snZ6jwHGXo7tothNCijWgb1PhCtD0zFdwJ9J577sFsNjN//nyeffZZSktLmTt3btTPIcD5qaXHRcD1uEx6G4GrgX8IIe4KtvIRk6WHqgr09vayatUqUlNTGR4entDEaW++mWoy+eLFi33b4Q0NMfuee3BOnYr9vvuCPp7dbufgwYNkZWVRXV0ddtISXH0lbW1tLFu2TFNOqhC/v7+f7u5utm3bBqCRRjgXnXsU4S0harPZNFKbSG7DvWVchebNzc3ajAtfTXDRQrx6PUZGRjj99NNZunRpzI/tAzpcGoobge9KKbePPv4/Qoi3gAXAR8HsKOpEoVyocnNzxywDDAaDXwl3ILhHFKqnwmg0akTkC/of/pC0Awfoff55JgWYcaowNDRETU0NOTk5FBcX+yQJ9X58fUkVYVosFpYvXz4uPHa/6GbOnMnIyAjd3d00NjYyODhIXl6ez4RoILhHG+BSpra0tDBnzhyv0Ua4F5pnaK4SgUNDQ3z66adaQjRaE8kgfu3eQ0NDCTX8h8/byDuAOUKIBkA3GkXoiWf3KHy+9FAqxdmzZ1NSUjLmNeGa3Lpvr2TQyvE40GRy8e67GH7zGzouuADdsccSjB5PeX8uWrSInp6ecVFMMEsNcIXDdXV1ZGZmsnjx4qC+yKmpqZSVlVFWVjbGq0K1WxcXF1NUVBRyxchsNrN7924WL15MVlaW12jDbrdPWOwlhCA3N5fc3FyMRiOLFi3CaDTS1NTE0NBQ0GXHcI8dayRgeVT9ER7DNc9jGdA+mvOoxVX9CApRiyhaWlo4cOCAz9bqiX6QOp0Oi8XCli1b/JYnNQwPY7jmGmRFBe3XX8+UIDQYLS0ttLS0aN6fvb29Y0LoYElieHiY2tpaysvLKSsrC+l9KngmRC0WC11dXezcuZORkREKCwspKioK2D3a0dHB/v37qa6u1qTLntGGym1ESuyl/mapqanaRDLPsqO7liEUkVMiQXmBBouLLrqIt99+G2CuNws8IcRkXNWKHMAphLgJWCCl7Atm/1JKx+i/LwohPgbOAvKBB6SU/wr6RIkSUezatQuLxeIz4RcJWCwWDh48yLJly4KaXaq/9150n33GyMsvQ2am39KqZ+u5uoA8lzvBkERfXx/19fXMmzdvwl4a7khPT2f69OmauYvRaKS9vV2b5qVyG+7LsP3792M0Glm+fLnfz8Uzt+H+497EFixpeFsKeJYdrVYrRqNREznl5uZq0Ua0KhiRxsjISEjdus8++6z61WvWWkp5kCCH/XiDEOJ7uGz5B4BO4M3R/48IIXKCJRyIElFUVFSQkpISlbuCHB0X2N3dTXl5eVAkIerq0P/qVzguuQR58snodu/2SRQ2m42amhry8/PHycnVkirYpGVnZycNDQ0sXbo0qsa5er1+nOahu7ubmhrXeMrCwkIGB12O7N4EXf7gLSHqThx2u92lcPUj9gomZ5CWljZmmdXb24vRaKSxsVGTVPtztUoEyBhOQwsSqUAJriiiYPQnH1eEkieEmCFlcFnmqBBFenr6hPIPvqCMaXU6HbNmzcJisQTeyOnEcN11kJ+vVTl8ibVUadVXe7vaLpikZXNzM93d3axYsSKm2gL3kl1lZSUWi4Xa2lpNT6EUooWFhRNOiAYr9go1uejpMzE8PDzOgFiJnBIl2ohlVSdYSCkfjtS+4ibhhtA6QJXHQ1lZGdOnT6erq4uBgcBJW93jj6P78ENsf/wj+Jlortyi/JVWhRB0d3eTlZXlcxnhdDrZtcs1tW3ZsmVxvcPYbDZ27NhBWVkZ06ZN0+7U3d3dNDQ0kJqaqi1Rwol4ghV7qX/DhTcDYrVMSU1NHRNtxPuCTdRoZ6KIK1GoNX+gPIY3ubQvwdUYdHdj+J//wfmlL+H85jfHHNedKJqbm2lvb/dpt6cuAJVI7OzsZM+ePePEUcqVq6CggBkzZsT1S6MiicrKSq3i5H6nnj17NhaLRfMjtVqtFBQUUFRUFJZ5rz+x18DAgNY2P9Hyq7ekrtFo5LPPPtOiDRXdxDLaiPeIgGgjauXRoA4+6nLljyiam5s1BaO7wYivQcVj9n/HHdDXh/3hh8HtnBRRqLu/3W73ObDIfU2u0+nGeDv09/fT1dXF1q1bAVfUU1lZybRp04J6/9FCf3+/Zp7jL4eTnp7OtGnTtFZrk8lER0cHu3fv9pkQDRYq2jCZTNpMWM+mNl/S8lDgaUBsNBrp6uri008/JS0tbYxjdzRhsVgO+ZEK/hDXiMKflkJ1VDocjjGVh2C2BRD/+Q/6J5/EfvPNyAULxjyn0+mw2Wx88sknFBUVUVFREbLS0l0cVVBQoIX4RqOR1tbWCd2dJwJ1d12yZElINX29Xj+GBN0TolJKjTRCaQLr6uqioaGB5cuXj4nUIl1+dX8PeXl5ZGZmUl1drZnTxGLcQQI7cEcEcScKb+pMbQhPaanPEN5v96jDgeG//gs5dSqO228f9/TIyAjNzc0sXLhwnBBMIRilJbhcrQ4cODAm4lF354MHD7J79+4J9W+EAnUu7tLwcOCZELXZbHR3d7N//34GBgY0hWpBQYHPaLC9vZ2WlpZx3hoQWFput9vDXqK4LwGUAXG0xh24I9FMayKNuC49vEUF7kN4/PX2+4sodH/6E7qaGpcZjQfLd3V10dLSwuTJk32ShPrS+it9qjb2gYGBcboEz7uz+xJFLV+KiooidgdSpjc9PT2sWLEi4mvzlJQUTSilFLddXV00NjZqVnvuCVFV8fEmU/eEP7GXp9eG++t9wVeuwF3QJaXUchsTHXegkCSKKMLzYncfwhMoC+8zojCZMNx1F87jjsP5jW9oDyv9RWdnJ1VVVV5Lq6HIsevr65k0aRJLly71S4zuS5RZs2YxPDxMd3c3e/bsmXACUZ3zrl27kFKydOnSqC9zhBBjhFLq/aiEqFo+LFu2LCzC8iX2cq+k+FuiBJNUFEJEfNzB4OBgzIdMxxIJQRSeSshg1Jy+IgrDT38KZjP2Bx7QEphOp5MdO3YAsHLlSoxGoyZAUnAv7akvojdYrVZqa2uZMmUK5eWhi+YmTZo0JvnmuUQpLi4O2kVK9Y9kZWUxc+bMuFRZ1PuZOnUqO3fuZHh4mPT0dLZs2UJGRoa25ApnKRRI7OUtIRpO9cHfuAOHw6FFG/5s/hPYgTsiiPvSw2q18sknn3w+hCfIbb1FFKK+Ht3vf4/zu99FLl4MuPIR27Zto6SkRMt3eG7rnrT0RxIDAwNak1solme+4GuJ0tzcHHCJooYXlZWVBe5ziTKcTqcWYc2fP1/TxygPzu3bt+N0OrV+lHAcv4PtR1FK0XAhRHDjDjwNiIeGhkIiCmWDV1JSQl1dnbfzEMBDuCzshoDvSCk/DfuNTRBxjShsNhv79+9n4cKF2hCeYDHuyyAlhltugZwc7D/6EfD5IKHZs2eP2b87UQQrx1ZJsMWLF0clux3MEqW4uJjc3FytyayqqoqioqKIn0socDgc1NbWkp+fT0VFhfa4Nw9Oo9HIgQMH6O/vJycnR1OIhtMP5CshajQaSU1NxWazRaT86m3cgdFoHDNUKCMjg76+vrBs8NauXevrJacBs0d/jgQeHf03LogbUbS3t9Pe3k5ZWVnIJOENutdeQ/fmm9h/+UsoLKSzs5O9e/d6HSSkiMI9aenvy9Tc3ExnZyfLly+PmY29tyVKe3s79fX12Gw2KioqyM3Njcm5+ILqi5kyZUrAqCYlJWWMT4VSiKrOURX6h0PCyqKwsbERh8PB7Nmzx5CHql5NVOzlTn4zZszQhgq98sor/PKXv2Ty5MlMmTKFM844I2ADYCAbPGA18ORoL8aHQog8IcQUKWV7WCc/QcR86SFHh/AMDg5SVVXF8HBIIxC9w2ZDf9ttOGfPxn7llTQ2NGA0Glm5cqXXC1upOgMlLZ1OJ3v27MFut7N8+fK4Ke/UEkUIQW9vL3PnzqWvr4+tW7dO+CILF2oWy4wZMygtLQ1pW18JUaWuVGMC8vPzg+5O/eyzz7Db7SxYsEBrUgPf5deJem3A50OFLr30UsxmM3q9nubmZhoaGvwZ5gaLqbhmcCi0jD52+BCFL6ghPLm5uSxbtozu7u6g+jUCQfeHP6Dbswfr+vVs37ULg8Hg08RGSklKSorWAKbCSs9km5rXkZuby9y5c+Ou4Vf2eStWrNBMawItUaJFbBaLhZqamojlatyjJ6fTidlspquri88++4xJkyZpROhN7yClZPfu3QBafsQd0fbaULBYLBx11FGsWbMmrO0THVEjCk+DXZUvUEN4wP+g4qDR14fhZz/DfvzxfFRczJS8PKb7GOSj7ix6vZ4jjjhCM3/Zvn27pj50t9CfMWNG1IYkBwspJQ0NDZpew7Pk6GuJoox6Q6miBIOBgQG2b9/OggULorL00el0Y/QOQ0NDdHV1UV9fj8Ph0IhQNe7t3LkTg8HA7NmzgyLzQGKvcAcrRcHdqhXXDA6F8tHH4oKYRBRqCI9nvmCidnhCCHQPPIDo7mbrhRdS5ecO5y1pmZGRwYwZM5gxY4bmT7lr1y56e3spKSkhLS0trs0+qhdFp9OxZMmSgBeCvyqKWqIUFxeHXe/v7e1lx44dmoVetOFegfAcE9DX14fD4SArK4uqqqqwIj73aCPQYCX313tDFMqjLwLXCSHW4Upi9sYrPwFRJgplJtvX1zduCA9MnCjSzGb0Dz1Ex0knMeuCC3wyuvsdw9eHnZqaquUujjrqKIaGhrQ7c3Z2tnZnjpZjlyfU0icvL89nL4o/+KqiuHeKhrJEUT0k1dXVcWt+UmMCiouLqaurw2AwkJaWxrZt29DpdGNyNeGWX8MVe4VaHlU2eN3d3XizwQNexVUa3YurPHppSG8owhAB+vfDbu5XztWZmZnMmTPH6wc3PDxMfX19WIkfKSVd553H1Ndew/LJJxjmzfP6mmCUlipj3tvbqw0Hdn+ur6+Prq4urfSm9A2R6BHwBpUonDZtms/ZJBOBWqJ0dXXR29sbcInS2dlJU1MTS5cunVAPSSTgdDqpq6vT+lAUrFYr3d3ddHd3MzQ0NCYhOlFJuzevDWBM+fWiiy7ikUceGVMiDgEJb2IRtdtjfX291h/gC+FGFA6Hg89eeYXFr77KyKWXTogklGrTYDB4lUC7O0lXVVWNWzMXFRVRUlISMfv5wcFBTfsRiUShN4SyRGltbaW9vZ1ly5bFfQqY0+nUNBszZswY81xaWtoYcxuz2TymAcxfQjQQ/HltqITogQMHDukJ8IEQNaJYunRpQLehcIhCOV2t+POfkWlpDP3gB3guOIIlCTVzpLS0NGgPCfe8huqqbGhoYHBwUAvnw+3b6Onp0UYDxGo+hL8lSn9/Pzqdjnnz5sXdck4Ju4qKigJ+Vu4JUUBTiNbX12O328c4loeb23Bfojz11FMASQl3OAjGgUoJZYKF6ixdMjxM1muv0fbd72LwuOsGq7RUd+6JqBvduyqdTucY45dQ8xqdnZ00NjbGNQcAn9vODQ8Po9frmTx5stYsFY0qSjBwOBzU1NRQWloallxdJUSVSEp5huzcuZPs7GxNIRrOe1q3bh0bNmzggw8+SDaFJQLa29tpampiWXU1uV//OrK4mK61ayn16NkIxkNCJeYWLVoUsbuAezJNhfNqbZ+SkqKF+t5C3wMHDmjKz3iH91JKdu7ciU6n0wYVuY87jGQVJRjY7XZN/RnuTBR3GAyGcXNT3ftrCgsLKS4uDmopuWHDBp566ileeeWVw5okIIrJTLvdHtSy4v333+eYY47xfQKjlZP+/n6WLFlCyptvknr22dh+/Wt2nHSSdjcIZqkBrqE+7e3tLFmyJGaJOaXX6Orq0vIa6su4b98+LBYLixYtirvnokoUZmZmBuxGVUuUrq6uqAm9bDYb27ZtY9q0aTHRs6gSeXd3d8ARjps2beK3v/0tL7/8ciT0JAmfzIwaUbhr7P3BH1GoEmFGRoarcgKkHHccorOTkbo6Ptu/X2suCqayoSTCCxcujNuaW+U1Ojs7MZlMTJo0iTlz5gQtV44WVHhfVFTkU7Dmb9tQqijBQJHEjBkzfBoMRRPuIxxNJhNpaWkUFhYyMjLCnj17eOCBB3jllVciNdQp4YkiIZYe3iz7LRYL27ZtGzMuUPfaa+g+/hjbb38Lo7oHu90ekCTUfNKsrKyg535GC2oZ0t7eTmVlJdnZ2doU9njlANRFOXXq1LDC+0gLvZQ1QGVlZUQaBsOBp9v30NAQDQ0NfO9736OpqYm1a9fS2NgY0elviYy4E4WqfLgn/LzZ8yMl+p/+FFlRgfNb30JKSVZWFnv27KG7u5vS0lKvIaJqyY6WJiFUqPNxb6ZScmXPC0xdfNFMbip/Undb/4kgkNAr0IxUdT5VVVVRKw+Hg4yMDLq7u9Hr9XzyySfU1tbS1NTE8uXL431qMUHclx4ff/wxixcv1vIFyg7PM/uve/llUs49F9vvfodj7Vpt36qjsrOzE6PRSEZGBiUlJRQVFWGxWKIy9zNcKOObuXPnBjyf4eFhLa+hSnrFxcUhuWAHwtDQELW1tcyZM0e7c0YTnksUz4qDKn3H6nxCwbvvvssdd9zBK6+8Eo18ScIvPaJGFE6nE5vNFvB1W7duZe7cuaSnp7Nnzx6GhobGqSORkpSjj4a+Poa3bsU5KqP1vGCUsUhnZyft7e1YrVZmzJjB1KlTo6aiDBZms5ndu3eHVWlRpi9qOlp+fj7FxcUTymuo2R8LFy70ORktmlCK1+7uboxGI0IILBYLs2fPTojIzx0ffvghN998My+99FK03MSSRBEIalnQ2NhIdna21wYf3YsvknL++Vh/9ztsF18cMGm5f/9+TCYTs2fP1lqWHQ6HFsrHWhjT0dHB/v37WbJkyYQJy70N22w2k5mZqUnKg81rKGFXqLM/ogWLxcLWrVspLi5mYGAgqCVKrPDxxx9zww038OKLL4ac5A0BSaIIhJqaGvr6+qiqqvJ+J3E6STnqKBgaYmjLFoSfKelqaJAQgnnz5o35gqnSV2dnJ8PDw1ooH646L1js378fo9HIkiVLIt5Qpgb1dHV1aevnQHkN9+aueEdZ4BK+1dbWjolsAi1RYoVt27Zx9dVX8/zzzzNz5sxoHuqLSxRSSkZGRvy+xmQysXXrVmbPnu2TrcVzz5F68cUM/+EPOC66yOdFrUxxVHnP38WvvBU7Ozvp7+8nLy+PkpKSiJYolZOXzWZjwYIFMbkruuc1bDabRobKzFZFNtXV1QnRl6C8LfxJ1j2XKIoMwx2sHCzq6ur47ne/y/r165kzZ07UjjOKJFH4QktLCy0tLeTm5lJYWOg14y4dDlKOOAIxMsLwJ5+AD+2DSsrNnDkz5My9qpd3dnZiNpvJysqipKRkQi3lSriUkZHBrFmz4lKOVVLlrq4u+vv7MRgM2O12zSEr3lAkEaq3hafQSy1R8vLyIvZ33rlzJ5deeinr1q1jgcc4yighSRSecJ/hsXjxYpqbm0lLSxtXv3c4HIjnnyf9kkuw/ulPOC64wOtxzGYzu3btikgjlbv02r2lvKSkJOiLS0U2JSUlcR9WDJ+30Hd3d5OTk4PZbB5TGYqHZLyvr4/6+voJ50hUZNjd3R2xJcqePXtYu3YtTz/9NItHRz7EAF9cogBXTdwdyrU5Pz9fkwg3NzcjhNAuKq3z0+Eg/YQTEKOVDm/RRFtbGy0tLRFJEnrD0NAQnZ2ddHV1AVBSUuJXODQ8PExNTU3ENAkThVKj2mw25s+frzXhqcqQymvEomdDobe3V0ukRvJ4kViiNDY2cvHFF/P444+zbNmyiJ1bEEgShYIys505c+aYOnRra6tmP+9uDpLy5ptMWrMG629/i+Pb3x57UqP9H0NDQyxatCgmcmyr1aqt/0dGRrSLS+kaVLlx/vz5mrt0PKESuwaDwadxEIwN5UdGRsblNSKJnp4edu3axdKlS6PeIRvqEqW5uZkLL7yQP/zhD6xatSqq5+YFX2yiGBkZQUqpDYNdvHjxuJr9wYMHGRwcZObMmWPawyedeiqisZHhujpwC/vVGL2MjIywvRInCrvdrn0JBwYGyMjIoL+/n+rq6oTwJHA6nWzfvl1zgQr2b+SZ18jNzdWmlk+UjE0mE3v27IlLtcXbEsXdAqC1tZXzzz+f3/zmN34bFKOIJFHs37+f9vZ2qqurvXZrKj3AzJkztZF+uvffZ9JXv8rI/fdjv+Ya7bVq7mcijNFTaG1tZf9oc5qagKW+hPFoPFNt2RPNkTidTk3xajabSU9P10L5UJOhRqORvXv3+vwOxBLuS5QdO3bwi1/8gv7+fu6++24uuuiieJ3WF5copJTU1NRgs9n8tlCbTCZ27drFrFmzKCgoQKfTkbZmDbqtW7Hs3Amj68v+/n7q6+sTRt4rpaSpqYmenh6WLFmCXq/XJmApf011cRUXF8ckaajmkZaXl0dU3ajyGkqvIYTQLAADrf+7uro0Q55EqLa4o7Ozk4suuogjjjiCvXv3ctRRR/HDH/4wrH0FmiWqsGXLFo4++mjWrVvHueeeqx7+4hIFuL4kvnoT3PMR7neu0tZWFn3721h//GMct96q7Wffvn1Rm/sZKtTQGafTOU7Y5f4az6ShqqBEI/RWidSZM2dGvePSPV+j1v/exGvKuCcR/DY9YTQaOeecc/jpT3/KqaeeOuH9vfPOO2RlZbF27VqfROFwOPjqV7/KpEmTuOyyy5JEoWCz2cZNHAffnpZSSnQXXEDqv//Ne08/TWpxMXq9nuHhYZYsWZIQdySVI8nKygpo7uKO4eFhrYLiLiePhCmvsvULptks0lDr/66uLvr6+rS8ht1up6Wlherq6oQjCbPZzDe+8Q3uvPNOzjrrrIjtt6mpiTPPPNMnUTz44IOkpKSwZcsWzjzzzEOKKGLeZu7P01K3ezeTXn0V+y23sPykk6ivr2dgYAAhBPX19Vp5Ml6EoUL7cHIkkyZNYvr06UyfPh2bzaZFSRaLZUJyclVtiaUhrzv0ej0lJSWaXV5PTw9NTU2YzWby8/Pp7OyM62fmid7eXs4//3xuvfXWiJJEILS2tvL888/z1ltvsWXLlpgdN1KIKlF46+70Z3yb8qtfQXo6liuvpHZUb6GMZtQaedu2bWO+nLG0s6upqZmQGa9CSkoKZWVllJWVaXdkZfaam5tLSUmJlq/xB9WRunTp0oTwbBRCMDQ0hNPp5IQTTtAk5TU1NQBjoqh4oL+/nwsuuIAbbriBc845J6bHvummm7jvvvvibncYLqK69HD3zQw4PdxqZdLRR2M98UQ+vOACKioqfE7JVmF8Z2cnUkqKi4spLS2NWm1eKQmj3ZKt5ORdXV2YTCYyMzM1BaWnnLyrq4uGhgaWLl2aEM1d4JLld3Z2snTp0nEVn5GRES2vEcumPIXBwUHOP/98LrvsMr71rW9F5Rj+lh6VlZWa43x3dzcZGRn8/ve/V0ONE37pEXWiUFZ1wRjf9nR3s6e2lrkrVgRtWDoyMqKRht1u17LxkdIzqCEysRAJucPd8aq7u1uTkxcXF2vzNxNp/d/c3Kx1yQYqC6vu0M7OTvr6+qJeUrZYLFxwwQVcdNFFXH755RHfv0KgHIXCd77znWSOwhPBkkR7ezsHDhxgyTHHhHSHTE1N1aZ5K+NatfZXpBGuK1RrayttbW0sX7485mtsT0s5NaFsy5Yt2Gw2bQBRIhBFU1MTvb29XieteYOnx6YqKTc0NJCWlqZFUZFYVg4PD/PNb36Tc889l8suu2zC+/MF91mi5eXl3H333ZrNwve+970J7VsIoZNSjq8KxBBRjShuueUWysrKWL16NaWlpT7LpA0NDfT19Y13tpoAHA6H5j8xMDBAQUEBpaWlQYW66pwGBgZiJhEPBNXc1d/fz9y5c8fJridCiBOB+98pEutvd72GlHLMaINQ39vIyAjf+ta3+OpXv8r1118fV1PlAPB6YkKIrwP/lFIOxPh8xp9LNImioaGBjRs38sILL6DX6znrrLNYs2YNZWVlCCFwOBzs2LGD1NRUv/0IE4XT6dT8J/r6+vz6TzidTnbt2oVOp2Pu3LkJ8eVS3hZ2u50FCxaMOSclu1aEmJ+fT0lJSdhjDUM5p3379mnjD6Lxd1JmQ11dXVgsljEjGwMdz2azcemll3LMMcfwgx/8ICE+Rz8Yd3JCiJ8AxwLfkVIeiP0peZxPNIlC24mUtLS0sHHjRp5//nnsdjtf/vKXeeutt3jkkUdiYQyiwdN/IicnR6sygMuaLy8vj4qKioT4cqkhymlpaQF7W5RNXmdnJz09PWRnZ2veGpGMilRTnupKjcXfyZvrla+RjXa7ne9+97ssXbqU22+/PSE+xwAYc4JCiGOAh4DjpJTDQggDrms1sGVclBATohizQyl55513uOSSS5g1axYWi4UzzjiD1atXx7zJS62Plf+E1Wpl8uTJVFVVRdy2Lhw4HA62b9+uEVcoUD0N6r1FSk6uohspZdwiLs/3lpaWpkUa6enpXH311cyaNYu77rrrUCAJGE8UJwLXSym/IYQ4GzgLmAXcD/wrHoQRc6IAePTRRznhhBNYsGABXV1dvPDCC2zcuBGj0chpp53G2WefHbM7FXzu21heXq6FuyqpFqs+DU+o5q7S0lLKy8snvD/lrdnV1RW2nFxKqS3LorlUDBUq0fvzn/+cd999l2nTpvHII4+waNGihDnHAPAkilzgV8BzwB3AD4Bq4CLgp1LKN2J+gvEgCl8wmUy8+OKLbNy4kZaWFk455RTWrFkT1bmcvb297NixY5yyUfVpqAsrlgIvNSnLfUhQJKGEUJ2dndos1JKSEr8JQymllk+KV3u/PzidTn7wgx+g1+s56qijeOmll/j1r389IZIN1Oi1adMmfvjDH6LT6TAYDDz44IN86UtfCudQQlU2hOsPmwn8P6AA6JZSfn/0RdcA84AbZYALN9JIKKJwR29vLy+//DLPPfcce/fu5eSTT2bNmjUsW7YsYqTR2dlJY2MjS5Ys8auRUEOGlcBLkUY0dBVKATp79uyYTMpyn4WqEoYlJSVjqkMqT5Kenh5Sf0us4HQ6uf3225FS8vDDD0fs+xGo0WtgYEAj19raWs4//3x27doV8nGEEHpV/hRClAM9gAN4BJgO3CulfFMI8WvAIqW8YwJvKywkLFG4Y2BggFdffZWNGzeyY8cOTjrpJNasWcOqVavCTtIdOHCAzs5O14T0EJYWqnNSCbxUCB8JWbJaAsXLJctTCJWbm0tRURHt7e3k5ORQWVkZ83MKBKfTyY9//GP6+/v5v//7v4hHnsGKqD744AMuu+wydu7cGc5hBIAQ4n5gGpADvAU8CtwK5OMijBTgzHhoKg4JonCHxWLh9ddfZ8OGDWzdupXjjjuONWvWcPTRRweVgFRlPWWjN5EvlmruUrNCioqKKC0tJSsrK+S7rpKJh+pKHS2oCsrOnTtxOBxa2dWbnDxekFJyzz330N7ezmOPPRYVvUsgonj++ee5/fbb6ezs5JVXXuHoo48Oaf8OhwO9Xi+EENcDxwGXAOtwLTmuHK14GIAFQI2U0jGhNxQmDjmicIfVauWNN95g/fr1miHImjVr+NKXvuQ1SlAhdEpKSsSTcUrP0NHRweDgoCaCCkbgpWziYi0T9weHw6HNSSkvL2dgYEDz1khJSdESvfFyrJJS8otf/IK9e/fyxBNPRI28go0o3nnnHX7yk5/wr3/9K6j9NjQ0uA8VEkKIC4GdwMXANCnlxUKILGCplPI/4b+DyOCQJgp32Gw23n77bTZs2MB//vMfVq5cyerVqznxxBNJS0vDarVSX19PYWEhM2bMiOq5eIbweXl5lJaWehVBKXOXpUuXxt0mTsHhcGh2et6SgarK0NXVpTXlBeN2FSlIKXnooYfYunUrzzzzTFSrUsESBcDMmTPZvHlzwO7ijRs38u1vf5urrrqKX/3qV+AiiuuBe4EXpJSXjD54N5AN3BKvSELhsCEKd9jtdt577z02bNjA22+/zZw5c9ixYwd/+MMfWLFiRUzPxVMEpQRehYWFHDx4kLa2NpYuXZoQPRvweVl2ypQp42ateIPqCu3s7MRqtU64vyYQpJQ8+uijvPfee/ztb3+Leg+OP6LYu3evNuDp008/5ayzzqKlpcXv+zaZTKxZs4YLL7yQ1157jZkzZ/LQQw+pHMVDwPHAjcAZuJYiZ0gpzVF5cyHgsCQKd9TV1XHOOeewcuVKtm/fzrx581izZg1f+9rXYu6L4C7wOnjwIACzZ8+muLg4Idb9drudbdu2UV5ePmakQijbR1NOLqXkscce4/XXX2fjxo1Rj8DcG71KS0vHNXrdd999PPnkk6SkpJCens79998fVHl09+7dVFRU0N7ezlVXXcXrr7/+Oynl9wCEEHfiSmZmAndJKbuj+BaDxmFPFG+88QaTJ09m4cKFOJ1OPv74YzZs2MA//vEPZs6cyerVqznttNNi5g6lkqmDg4NUVFRoDVCTJk2Kq8DLZrOxbds2pk+fHhHtRjTk5I8//jibNm1i06ZNCePBMVG0tLQwbdq0vwMtUsrvCiGWAj1Syv3xPjd3HPZE4QtOp5Pa2lrWr1/Pa6+9pnW5nnHGGVErTSplI8C8efPGhKjuykmDwaBpNWLR3q4EXpWVlVEx5vWUXCtSDMX6/+mnn2bdunW89NJLCeHmFUkIIabiUmKuBGy4ejyM8T2rsfjCEoU7pJTU19ezYcMGXnnlFQoKClizZg1nnHHGhG3vFJxOJ/X19aSnpwccXGyxWDQzHiGERhrRuIuOjIywdetWZs2aFbH3Ggju7uQ6nU7rQfFV8Vm/fj1//vOfefnllxOidBwFCCHEbcB1wAlSyn3xPiFPJInCA6rpacOGDdrda/Xq1Zx99tmUlJSElaBTpcaCgoKQKy5Wq1UjDeXeHSmBl9VqZdu2bcyePTtus1KUnLyrq2uMQ5lSPL7wwgs8+uijvPzyy0G7nh1qEEIUAX8FrpNShi7tjAGSROEHyixGeWoYDAbNU2PKlClBkYYazKzMdCcCJfDq6OjQ5p8q279QCWx4eJht27bFxeLfF9zl5E888QRtbW00NDTw9ttvxyzaiROEEGKSlHI43ifiC0miCBKenhoOh4MzzzyTNWvWMG3aNK8XqtVqpaamhoqKiohPN1fzTzs7OxkaGtIcvIIZLqz6SebNm5cQA5W94aWXXuKBBx5g9uzZ1NTU8PTTT7NkyZKw9xeowevpp5/mvvvuQ0pJdnY2jz76KEuXLp3IWwgFidU84wVRI4q///3v3HjjjTgcDq644gpuu+22cHeVcJBScvDgQZ577jmef/55BgYGNE8NlX8YGhqitrY2JiMQleV/Z2cn/f39fsuS6rwWLFgQVUfxieCtt97irrvu4pVXXqGkpEQb8TCREnKgBq/333+f+fPnk5+fz2uvvcZdd93FRx99NJG3EQq+mEThcDiYM2cO//znPykvL2fVqlU8++yzLFiwILyzTHB0dXXx/PPP89xzz2E0Gjn66KP54IMPeOGFF2Ie1nuWJd3nhFgsFmpra+M2LCgYvPvuu9xxxx288sorYWk5/CFYlaXZbGbRokW0trZG9Ph+kPBEERWVz+bNm6mqqtK07BdeeCGbNm06bImiuLiYK6+8kiuvvJJ//vOfXHHFFSxatIizzjpL89RYuHBhTIa/6HQ6CgsLKSws1CZ3dXZ2snv3bkZGRpg5c2bClhc/+OADbrvtNl5++eWIk0QoeOyxxzjttNPidvxERFSIorW1lWnTpmn/Ly8vj2UYF1fs3r2bd999l+nTp9Pb28tLL73EfffdR0NDg+apUV1dHRPSEEKQn5+PwWDAaDSyYMEC+vv72bJlC+np6ZqWIRHk4x9//DE/+MEPePHFF0Me1xhJvPXWWzz22GO89957cTuHRET8dcOHGa677jrt99zcXC655BIuueQSzVPj4YcfZteuXWM8NaJJGr29vezcuZPq6moyMjIoLS2lqqpK6wbdunVrzAVenti2bRvXX389L7zwAtOnT4/58RVqa2u54ooreO2112JiGnQoISpEMXXqVA4c+NxhvKWlJa53iURAVlYW559/Pueffz4Wi4V//OMfPPbYY1x//fUcf/zxmqdGJD0Venp62LVrl9f29aysLG0i+9DQEJ2dndTU1ERd4OWJuro6rr76atavXx9XY5zm5mbOOeccnnrqqZi6wh8qiEoy0263M2fOHN544w2mTp3KqlWreOaZZ1i4cGF4Z3kYw2q18q9//YsNGzawZcsWjjnmGNasWcOxxx47oSWBGmBcXV0d0gXv7qfpdDqj2kK+c+dOLr30Uv76178yf/78iO/fHYEavK644go2btyoCeIMBgMff/xxVM/JDQmfzIxaefTVV1/lpptuwuFwcNlll3HnnXeGu6svDGw2G2+99RYbN27kP//5D6tWrdI8NUJZEhiNRvbu3Ut1dfWEOizdW8iVwKu0tDSsqV2e2LNnD2vXruXpp59m8eLFE9rXYYAvLlEkMTEoT43169fz73//m+rqalavXs1XvvIVvxGCmr26bNmyiOYb7Ha7RhoWi0Vz8ApG4OWJxsZGLr74Yh5//HGWLVsWsXM8hJEkiomioqKC7Oxs9Hq9Fg6aTCYuuOACmpqaqKio4G9/+xv5+flIKbnxxht59dVXycjI4PHHH2f58uUAPPHEE9xzzz0A/M///A/f/va34/m2QoLD4eCDDz5gw4YNvPnmm2M8NdyXBMotq7q6OqpJSW8CL+XgFYg0mpubueCCC/jjH//IqlWronaOhxiSRDFRVFRU8PHHH4/R+t96660UFBRw22238fOf/xyz2cx9993Hq6++yv/+7//y6quv8tFHH3HjjTfy0UcfYTKZWLlyJR9//DFCCFasWMEnn3ySMD0OoUB5aqxfv55//vOfmqeGyWQiLS2Nb37zmzEtdzqdTs32r7e3d4zAy7Oa09raynnnncdvf/tbjjnmmJidYyjo6enhmWee4ZprrqGtrY0bbriBDRs2RPuwSaKYKLwRxdy5c3n77beZMmUK7e3tnHjiiezevZurrrqKE088kYsuumjM69TP7373O4BxrztU4XQ6qamp4e677+ajjz7SfEJPP/30uPRwuAu8TCaTZlaTk5NDT08P5557Lg8++CDHH398zM8tWITikRlBJDxRRF/1M0EIIfja177GihUr+P3vfw9AR0cHU6ZMAWDy5Ml0dHQA3oVera2tPh8/1KHT6cjNzcVisbBnzx7uvfdeWlpaWL16Neeccw5PPvkkRmPs/E+UwGvu3LkcddRRTJs2je7ubo4++mhOOukkTjvtNKqrqyNyrMsuu4ySkhIWLVrk9fldu3Zx9NFHk5aWxi9/+cug93vbbbexb98+qqurOe+887T9P/7446xZs4avfvWrVFRU8Mgjj/DAAw+wbNkyjjrqKEwmEwD79u3j1FNPZcWKFRx33HFhDQRKRCQ8Ubz33nt8+umnvPbaa/zmN7/hnXfeGfO8ECLhJlfFEjNnzuS1114jOzubRYsWcdddd7F582YeeughjEYj5513HmeffTZ//OMf6ejoIFaT6IQQ2jIkOzub2267jbS0NK644oqI7P873/kOf//7330+X1BQwMMPP8zNN98c0n5//vOfM2vWLLZt28b9998/5rm6ujqee+45tmzZwp133klGRgZbt27l6KOP5sknnwTgyiuv5H//93/55JNP+OUvf8k111wT+ptLQCS8MlMJtUpKSvj617/O5s2bKS0tpb29XVt6qBZuX0KvqVOn8vbbb495/MQTT4zl24gqPHMBQgjmzp3LnXfeyR133EFDQwMbN27kkksuISUlhbPOOovVq1cH7akRLsxmM+eddx533XUXZ555ZkT3ffzxx9PU1OTzeSUae+WVVyJ2zJNOOons7Gyys7PJzc3lrLPOAmDx4sXU1tYyMDDA+++/z3nnnadtY7VaI3b8eCKhI4rBwUH6+/u1319//XUWLVrE2WefzRNPPAG4qhmrV68G4Oyzz+bJJ59ESsmHH35Ibm4uU6ZM4ZRTTuH111/HbDZjNpt5/fXXOeWUU+L2vmIJIQSzZs3i1ltv5b333uOpp55Cp9Nx+eWXc8opp/Dwww/T3Nwc8Uijt7eX8847j9tuuy3iJBEvuGtSdDqd9n+dTofdbsfpdJKXl8e2bdu0nzBHDCYcEjqi6Ojo4Otf/zrgquNffPHFnHrqqaxatYrzzz+fxx57jBkzZvC3v/0NgNNPP51XX32VqqoqMjIy+POf/wy4wtAf/vCHWjnuRz/6Udys3+IJIQTTpk3j+9//PjfddBPt7e0899xzXHvttQwODnLmmWeyevXqCQ8i7u/v5/zzz+fGG2/UPr9DBdnZ2drNKVSo+azr16/nvPPOQ0pJbW1tLA1wooaEJoqZM2dSU1Mz7vHCwkLeeOONcY8LIfjNb37jdV+XXXYZl112WcTP8VCFEIKysjKuu+46rrvuOjo7O3nhhRe4+eabMZlMnH766axevZq5c+eGRBqDg4NceOGFXHnllVxwwQVRfAfRQWFhIcceeyyLFi0KS1b+9NNPc/XVV3PPPfdgs9m48MILDwuiSPjyaBKxh8lkYtOmTWzcuJH29nbNU2PBggV+O10tFgvnn38+3/zmN2NCysGUMu+66y6ysrJCTmrGGImfjZdS+vs57HHppZfK4uJiuXDhQu0xo9EoTz75ZFlVVSVPPvlkaTKZpJRSOp1Oef3118tZs2bJxYsXy08++UTb5vHHH5dVVVWyqqpKPv7449rjH3/8sVy0aJGcNWuWvP7666XT6Yzdm4sAenp65FNPPSW//vWvy+rqannzzTfL9957T/b398vBwUHtx2g0ylNOOUU++uijMXmPF154oZw8ebI0GAxy6tSp8o9//KN89NFH5aOPPiqllLK9vV1OnTpVZmdny9zcXDl16lTZ29sb9fMKE4Guw7j/fOGJ4t///rf85JNPxhDFLbfcIu+9914ppZT33nuvvPXWW6WUUr7yyivy1FNPlU6nU37wwQfyiCOOkFK6iKWyslIajUZpMplkZWWlRi6rVq2SH3zwgXQ6nfLUU0+Vr776aozfYeTQ19cn161bJ8877zy5ZMkSeeONN8q33npLGo1GecYZZ8iHHnrokCPCBEHciSDQzxeeKKSUsrGxcQxRzJkzR7a1tUkppWxra5Nz5syRUkp55ZVXymeeeWbc65555hl55ZVXao+r17W1tcm5c+dqj3u+7lDG0NCQfP755+U3v/lNWVRUJO+4444kSYSPuBNBoJ+ETmbGC5FSfra2tlJeXj7u8cMB6enprFmzhjVr1mhT2r/IwrfDHUmiCIAvuvIzGCTqbJAkIoeEFlzFC0r5CQSt/PT1eEtLy7jHk0jiUMNhQRTKgzJSiJTyc8qUKeTk5PDhhx8ipeTJJ5/U9pVEEocUAiQxDgm0tbXJdevWSSmlrKur0yoOwcBbma27u1t++ctfllVVVfIrX/mKNBqNUkpXefSaa66RM2fOlIsWLZJbtmzR9vPYY4/JWbNmyVmzZsk//elP2uNbtmyRCxculDNnzpTXXnttMuHnAW/laXf4K0kfRoh7sjLQz2FBFH/+85+llFI2NzfLW265RTY3N8f3hJIIGt7K0+7wVZI+zBB3Igj0c8gvPQYGBrjqqqsA19Jg3bp17N+/H3CRoIKaXxlvePNRuOuuu5g6dSrV1dVUV1fz6quvas/de++9VFVVMXfu3DHLq7///e/MnTuXqqoqfv7zn2uPNzY2cuSRR1JVVcUFF1zAyMhIbN5YmDj++OP99t1s2rSJtWvXIoTgqKOOoqenR8sfJRE7HPJE8frrr3P11VcDcPTRRzNr1iweeeQR/v73vyOE0IxD9Hr9mOqF0+mMy/n68lH4/ve/r3Ucnn766QDs2LGDdevWUV9fz9///neuueYaHA4HDoeDa6+9ltdee40dO3bw7LPPsmPHDgD++7//m+9///vs3buX/Px8HnvssZi+v0jjcDUdOtRwyBPF/fffz6WXXorRaMRkMvGrX/2KdevWUVpaylNPPcVPfvIT5s+fz09+8hOGh4e17VTPQqwJI9Ad1B2bNm3iwgsvJC0tjcrKSqqqqti8efOY2a6pqanabFcpJW+++SbnnnsuAN/+9rd54YUXovhukvii4JAmCovFQltbG0uXLmXLli0MDQ1RVVUFuLr4nnjiCW6//XZ27txJc3MzDQ0N9Pf3s379ejZv3uxae7k1OTmdzrhFGo888ghLlizhsssuw2w2A6ELvIxGI3l5eRgMhjGPH8pITp1LDBzSRPGPf/yDFStWAK4htwsWLCAnJ4e9e/eyY8cO5s2bx+WXX87XvvY11q1bR29vLy0tLVx77bX87Gc/o7y8nD179tDY2IjD4UCn06HT6bRchtlsxmKxRP19XH311ezbt49t27YxZcoUfvCDH0T9mIcKfJWkk4gtDmll5gknnMCRRx4JuGzW33//fXbv3s3IyAgFBQXccccdlJWVsXnzZurq6sjJyeHTTz+lvLycF154AbPZTH5+Pv/93//NG2+8QVlZGffffz9VVVXo9Xp+8YtfcOqpp3LCCScArvbrgoICpJQRVWuWlpZqv3/3u9/VHKH83U29PV5YWEhPTw92ux2DwXBI3H3dR/2Vl5ePG/Xny4woiRgjQFnkkEFvb6/83e9+Jx966CFps9nkTTfdJO+7774xrzGZTPL73/++/PWvf609Njw8LA8ePCillPIvf/mLvPvuu6WUUj788MNSCCEbGxu1165du1a+8847Ez5XzyY01YAmpZQPPPCAvOCCC6SULk3IkiVL5PDwsGxoaJCVlZXSbrdLm80mKysrZUNDg7RarXLJkiWyrq5OSinlueeeK5999lkppZRXXXWV/M1vfjPh800i6oh7+TPQT9xPIGpvDFYAm4Ba4DmgGFg8+vui0dcUAj8E3gb+Pfrz4uhzPwZ6gc3AjbjMRfQex9B5PhbEeT0LtAM2oAW4HHgK2D56ri8CU9xefyewD9gNnOb2+OnAntHn7nR7fOboOe8F1gNp8f4skj+H/k8gh6tDHkKILKBaSvmeEOJi4FIp5VdHn1sD/Beuiy4FeB14Vkr5gBDieeBNKeX/CiFSgFuAU6SUJwghDECqlHIoHu8piSRijUM6mRkMpJQDUsr3Rv/7N+Bat6eHAKuUcgAoALKAD0afOx54aXQfNuB84MHR524FXhZCvC+E+JrnMYUL+ki/lySSiBcO6WRmqJBS2nGF6wo7gXYhxJu4SGJQSvmBEOIMoFtK2QQghCgEKqSUzwshbsa1rFkLzAeuEEJ8hCsimQfslFIaAUes3lcSSUQbXyii8ISU8gCuCx4hxCogZ/SpUmCnECJNSmkFvgO8LYTIxEUOD0kpW4QQJuC3wCRgFq6I5UMhRB7wB2CdPNzXdkl8IXDYLz2ChZRyi5RSzQB4DVfCUY2Z+h4uEsgC0oG+0cePHH3NFGAlsF9KeQ7wCHAVh4K7chJJBIEvdEThC1LKduBqcOUbgH/gIgoHkAHkjr70BuA/gB2YDfxu9PEeoBtXZJLsYErikEcyoggA6cJ1Ukr76DLib8AjQoh3gGHgj7iWHtOBf41uthxXqTM+evAkkogwkhFFiJBSPgM8I4SYDRyQUg4LIY4DnKN5iyxgBi4tQ2c8zzWJJCKFJFGECSnlZ27/XY9rCQJwFC5x1/5kIjOJwwWHveAq1hgtpVYDdVLKjjifThJJRARJokgiiSQCIpnMTCKJJAIiSRRJJJFEQCSJIokkkgiIJFEkkUQSAZEkiiSSSCIgkkSRRBJJBESSKJJIIomASBJFEkkkERD/Hwgesz8uAg2uAAAAAElFTkSuQmCC", + "text/plain": [ + "<Figure size 432x288 with 1 Axes>" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "ax = plt.axes(projection='3d')\n", + "\n", + "# Data for a three-dimensional line\n", + "zline = g\n", + "xline = p\n", + "yline = t\n", + "ax.plot3D(xline, yline, zline, 'red')\n", + "\n", + "\n", + "ax.set_xlabel('iteration')\n", + "ax.set_ylabel('time')\n", + "ax.set_zlabel('lowerbound');" ] }, { @@ -312,7 +444,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.11" + "version": "3.7.10" } }, "nbformat": 4, diff --git a/lowerbounds.txt b/lowerbounds.txt index 7a0ebb3509515837251046f984130fc3aed36cff..a4bd7e634028cae076c3893e901bab0399a43f35 100644 --- a/lowerbounds.txt +++ b/lowerbounds.txt @@ -1,21 +1,18991 @@ 969553.451655 969553.451655 norm=50.109879 -965031.326405 1002756.326405 norm=62.521996 -946254.378222 1005129.378222 norm=64.404969 -961185.072033 1023735.072033 norm=62.920585 -966882.184601 1032957.184601 norm=65.023073 -975054.507198 1034529.507198 norm=63.198101 -990029.733667 1040354.733667 norm=64.807407 -994288.881020 1046113.881020 norm=64.830548 -1000589.510165 1045664.510165 norm=64.311741 -1008794.095190 1057244.095190 norm=64.303966 -1013181.306891 1060506.306891 norm=64.249514 -1022669.479794 1059194.479794 norm=63.482281 -1027274.212503 1067999.212503 norm=65.053824 -1168335.072033 1023735.072033 norm=62.920585 -1060782.184601 1032957.184601 norm=65.023073 -1196279.733667 1040354.733667 norm=64.807407 -1215381.326405 1002756.326405 norm=62.521996 -1198453.451655 969553.451655 norm=50.109879 -1323824.212503 1067999.212503 norm=65.053824 -1315260.072033 1023735.072033 norm=62.920585 -725524.911328 1157374.911328 norm=81.725149 +970758.779461 969627.779461 norm=48.569538 +971924.200775 969727.200775 norm=48.383882 +972984.307895 969836.307895 norm=47.644517 +974050.286894 970011.286894 norm=46.968074 +975016.061762 970255.061762 norm=46.508064 +975976.214386 970287.214386 norm=46.486557 +976857.818754 970665.818754 norm=45.650849 +977760.629360 970793.629360 norm=45.387223 +978588.055560 971071.055560 norm=45.133136 +979411.139985 971268.139985 norm=44.933284 +980186.094698 971485.094698 norm=44.977772 +980974.414410 971658.414410 norm=44.090815 +981721.176878 971869.176878 norm=44.966654 +982444.613921 971979.613921 norm=44.418465 +983171.021030 972256.021030 norm=44.418465 +983879.968084 972567.968084 norm=44.508426 +984576.545759 972610.545759 norm=44.022721 +985258.471322 972812.471322 norm=44.328321 +985936.788115 973078.788115 norm=44.407207 +986588.141280 973063.141280 norm=44.079474 +987246.815095 973534.815095 norm=43.714986 +987895.734428 973501.734428 norm=43.588989 +988524.128863 973738.128863 norm=44.022721 +989129.449336 974069.449336 norm=43.657760 +989736.924508 974711.924508 norm=43.886217 +990336.499391 974460.499391 norm=43.965896 +990914.031479 974834.031479 norm=43.485630 +991506.303444 974958.303444 norm=43.623388 +992061.210680 975523.210680 norm=43.451122 +992637.047976 974805.047976 norm=43.474130 +993178.099834 975797.099834 norm=43.737855 +993740.792991 975572.792991 norm=44.260592 +994261.129073 976051.129073 norm=43.806392 +994835.624788 975578.624788 norm=43.243497 +995367.463174 976454.463174 norm=43.174066 +995920.928944 976464.928944 norm=43.428102 +996420.301898 976330.301898 norm=43.600459 +996951.877113 976902.877113 norm=43.497126 +997463.084155 977095.084155 norm=43.520110 +997974.436039 977058.436039 norm=43.220366 +998482.457267 977516.457267 norm=42.906876 +999002.691491 977047.691491 norm=43.543082 +999467.191883 977976.191883 norm=42.941821 +999981.788417 977934.788417 norm=42.731721 +1000453.968108 978063.968108 norm=43.000000 +1000938.153018 978219.153018 norm=43.104524 +1001405.492442 978739.492442 norm=43.150898 +1001886.591025 978488.591025 norm=42.743421 +1002336.026325 978510.026325 norm=43.162484 +1002801.355711 979190.355711 norm=43.081318 +1003254.969040 978815.969040 norm=43.000000 +1003732.835645 979324.835645 norm=42.567593 +1004183.951977 979574.951977 norm=42.555846 +1004626.296423 979541.296423 norm=42.918527 +1005064.204365 979990.204365 norm=43.382024 +1005498.457882 979341.457882 norm=42.684892 +1005950.678120 980178.678120 norm=43.393548 +1006384.873797 980196.873797 norm=42.895221 +1006840.841636 979921.841636 norm=42.473521 +1007268.752472 980840.752472 norm=42.555846 +1007693.878602 980421.878602 norm=42.355637 +1008110.248807 980133.248807 norm=42.673177 +1008533.624709 981684.624709 norm=42.883563 +1008948.165899 981138.165899 norm=42.988371 +1009335.501422 981396.501422 norm=43.185646 +1009761.032886 981917.032886 norm=42.225585 +1010161.821032 981817.821032 norm=42.579338 +1010555.515498 981258.515498 norm=42.696604 +1010938.708109 982762.708109 norm=42.544095 +1011354.698029 981972.698029 norm=42.355637 +1011737.349062 982651.349062 norm=42.673177 +1012124.672395 983124.672395 norm=42.626283 +1012491.698884 982360.698884 norm=43.000000 +1012899.018327 982620.018327 norm=42.142615 +1013277.181281 983378.181281 norm=41.761226 +1013668.447685 983427.447685 norm=42.602817 +1014016.736144 983572.736144 norm=42.883563 +1014385.509320 983622.509320 norm=42.825226 +1014775.580053 983332.580053 norm=42.449971 +1015151.035720 984095.035720 norm=41.868843 +1015525.211372 983607.211372 norm=42.532341 +1015860.274163 984328.274163 norm=43.139309 +1016246.506218 984284.506218 norm=42.426407 +1016599.670996 984645.670996 norm=43.081318 +1016958.492361 984021.492361 norm=42.485292 +1017340.393463 984945.393463 norm=42.154478 +1017678.426981 984944.426981 norm=42.930176 +1018042.027186 984797.027186 norm=42.497059 +1018401.860922 984776.860922 norm=42.402830 +1018746.625939 986185.625939 norm=42.379240 +1019098.243497 985566.243497 norm=42.190046 +1019457.089440 986020.089440 norm=42.261093 +1019763.685542 987127.685542 norm=42.497059 +1020121.623034 985254.623034 norm=41.605288 +1020480.034263 987224.034263 norm=42.296572 +1020791.693755 986819.693755 norm=42.497059 +1021118.490274 986935.490274 norm=42.449971 +1021444.545959 987014.545959 norm=41.797129 +1021795.434624 987321.434624 norm=41.833001 +1022127.257340 986547.257340 norm=42.673177 +1022404.702147 988304.702147 norm=42.555846 +1022744.538535 987803.538535 norm=42.178193 +1023079.111143 988484.111143 norm=41.255303 +1023405.337037 987551.337037 norm=42.118879 +1023675.540364 988518.540364 norm=42.801869 +1024004.720538 988798.720538 norm=41.868843 +1024331.240105 988625.240105 norm=41.797129 +1024638.748000 988784.748000 norm=42.402830 +1024928.272157 988955.272157 norm=41.952354 +1025249.072402 988524.072402 norm=41.928511 +1025562.331831 989817.331831 norm=42.000000 +1025854.480702 989674.480702 norm=42.190046 +1026155.358645 989306.358645 norm=41.496988 +1026452.839006 989555.839006 norm=42.544095 +1026745.500403 990218.500403 norm=41.761226 +1027073.222303 990005.222303 norm=41.976184 +1027360.663652 989605.663652 norm=41.701319 +1027643.729054 990345.729054 norm=42.261093 +1027932.986969 990594.986969 norm=41.773197 +1028250.188502 989962.188502 norm=41.833001 +1028528.374674 991403.374674 norm=41.689327 +1028810.517238 990004.517238 norm=41.279535 +1029144.046824 991871.046824 norm=41.761226 +1029377.889133 991450.889133 norm=42.414620 +1029669.767399 992142.767399 norm=41.496988 +1029960.237006 992243.237006 norm=42.284749 +1030229.370867 992858.370867 norm=41.303753 +1030538.706498 991613.706498 norm=40.521599 +1030810.172786 992502.172786 norm=42.449971 +1031041.876915 992395.876915 norm=42.320208 +1031365.216847 993089.216847 norm=41.060930 +1031627.626269 992462.626269 norm=41.725292 +1031896.559198 993583.559198 norm=41.484937 +1032176.137505 993287.137505 norm=42.035699 +1032424.128313 993210.128313 norm=41.976184 +1032717.347129 993837.347129 norm=41.279535 +1032964.547221 993312.547221 norm=41.182521 +1033251.117530 994207.117530 norm=41.665333 +1033491.147443 994262.147443 norm=42.461747 +1033743.714293 994790.714293 norm=41.460825 +1034036.859497 992913.859497 norm=41.581246 +1034279.429383 995639.429383 norm=42.284749 +1034542.392835 994512.392835 norm=41.928511 +1034800.614165 994032.614165 norm=41.412558 +1035097.951182 994589.951182 norm=41.773197 +1035311.356403 995020.356403 norm=42.320208 +1035571.343546 995149.343546 norm=41.315857 +1035839.227069 994938.227069 norm=41.856899 +1036102.203184 995508.203184 norm=41.689327 +1036329.980631 995761.980631 norm=41.952354 +1036606.539953 994649.539953 norm=41.641326 +1036850.104217 996439.104217 norm=41.158231 +1037103.914519 994217.914519 norm=42.154478 +1037345.981562 996572.981562 norm=42.178193 +1037601.072029 995621.072029 norm=41.060930 +1037885.520819 995856.520819 norm=41.243181 +1038110.883815 995849.883815 norm=41.928511 +1038328.753119 997715.753119 norm=42.023803 +1038597.275097 995789.275097 norm=41.940434 +1038827.826814 997211.826814 norm=41.821047 +1039076.970857 996861.970857 norm=40.693980 +1039334.642483 998354.642483 norm=41.988094 +1039549.958919 996077.958919 norm=41.581246 +1039813.726400 998493.726400 norm=41.267421 +1040036.667717 996625.667717 norm=42.142615 +1040260.024156 997698.024156 norm=42.320208 +1040508.371467 997363.371467 norm=41.629317 +1040752.644956 998844.644956 norm=41.303753 +1041004.575394 997962.575394 norm=41.581246 +1041213.923873 998064.923873 norm=42.154478 +1041434.296929 998369.296929 norm=42.023803 +1041697.595955 998483.595955 norm=41.737274 +1041903.836127 997898.836127 norm=41.593269 +1042146.642475 999156.642475 norm=42.825226 +1042355.383488 998587.383488 norm=42.626283 +1042605.304539 998661.304539 norm=41.761226 +1042849.941208 998622.941208 norm=41.821047 +1043062.743321 999118.743321 norm=42.284749 +1043308.815165 999386.815165 norm=41.364236 +1043547.107389 998157.107389 norm=41.436699 +1043769.447410 999491.447410 norm=41.460825 +1043992.443556 999805.443556 norm=41.725292 +1044229.950052 999449.950052 norm=42.284749 +1044423.992615 998810.992615 norm=42.011903 +1044671.021366 999681.021366 norm=40.865633 +1044900.836716 1000917.836716 norm=41.964271 +1045114.799988 999151.799988 norm=41.916584 +1045335.537207 1000126.537207 norm=41.340053 +1045589.622798 1000220.622798 norm=41.327957 +1045774.661200 1000357.661200 norm=42.508823 +1046000.548459 999726.548459 norm=41.593269 +1046240.140954 1000731.140954 norm=41.785165 +1046450.827624 999807.827624 norm=41.243181 +1046694.428852 1001481.428852 norm=41.218928 +1046906.328658 999997.328658 norm=41.400483 +1047111.896961 1001608.896961 norm=41.291646 +1047346.777355 1000306.777355 norm=42.402830 +1047519.433647 1001125.433647 norm=42.035699 +1047781.347737 1001609.347737 norm=40.841156 +1047994.147574 1000705.147574 norm=41.146081 +1048214.590813 1000452.590813 norm=41.653331 +1048416.790279 1001891.790279 norm=41.785165 +1048620.591990 1001640.591990 norm=41.713307 +1048847.838973 1002211.838973 norm=41.725292 +1049072.195622 1001361.195622 norm=41.605288 +1049264.591675 1004029.591675 norm=41.521079 +1049506.396164 1000431.396164 norm=41.460825 +1049705.703059 1002025.703059 norm=41.593269 +1049911.209533 1001810.209533 norm=41.048752 +1050127.451644 1003276.451644 norm=42.579338 +1050307.412154 1001515.412154 norm=41.036569 +1050557.612680 1002876.612680 norm=41.158231 +1050764.245640 1003520.245640 norm=41.194660 +1050979.876318 1002978.876318 norm=41.605288 +1051185.336457 1002208.336457 norm=40.755368 +1051383.192064 1003547.192064 norm=42.142615 +1051554.476319 1003527.476319 norm=42.284749 +1051788.900714 1002896.900714 norm=40.853396 +1052008.713707 1003284.713707 norm=41.749251 +1052190.684768 1004788.684768 norm=42.225585 +1052394.379048 1002036.379048 norm=40.938979 +1052644.768685 1005062.768685 norm=40.422766 +1052833.602457 1004248.602457 norm=41.400483 +1053006.206735 1005069.206735 norm=41.701319 +1053207.406872 1003120.406872 norm=41.689327 +1053425.766496 1005229.766496 norm=40.938979 +1053639.488108 1004368.488108 norm=40.963398 +1053823.720603 1005325.720603 norm=42.095130 +1053998.840196 1004127.840196 norm=42.320208 +1054204.975795 1004994.975795 norm=41.073106 +1054419.413611 1004960.413611 norm=41.533119 +1054621.480431 1005878.480431 norm=41.206796 +1054810.261270 1005346.261270 norm=41.472883 +1055017.324733 1005171.324733 norm=41.484937 +1055201.659284 1005354.659284 norm=41.412558 +1055397.533342 1004668.533342 norm=41.170378 +1055601.115807 1006297.115807 norm=42.023803 +1055777.226652 1005274.226652 norm=41.484937 +1056007.142981 1005701.142981 norm=40.914545 +1056204.846523 1005657.846522 norm=41.279535 +1056384.797957 1005463.797957 norm=42.508823 +1056559.282381 1006077.282381 norm=40.804412 +1056791.821500 1004879.821500 norm=41.182521 +1056982.203923 1006698.203923 norm=41.121770 +1057175.522440 1005661.522440 norm=41.352146 +1057359.049810 1007068.049810 norm=41.412558 +1057531.754733 1005338.754733 norm=42.261093 +1057739.744992 1006164.744992 norm=41.689327 +1057921.659589 1005978.659589 norm=41.024383 +1058140.706298 1007112.706298 norm=42.011903 +1058296.211936 1006854.211936 norm=42.000000 +1058493.546014 1005604.546014 norm=41.024383 +1058716.195442 1007250.195442 norm=40.037482 +1058928.609273 1008044.609273 norm=40.644803 +1059083.996506 1005761.996506 norm=41.821047 +1059240.876925 1007530.876925 norm=42.544095 +1059441.926814 1005975.926814 norm=41.605288 +1059666.372497 1007791.372497 norm=40.336088 +1059841.173867 1007502.173867 norm=42.083251 +1060013.732747 1006943.732747 norm=42.142615 +1060189.087523 1007217.087523 norm=41.364236 +1060424.441499 1007205.441499 norm=40.373258 +1060602.723975 1007554.723975 norm=40.792156 +1060780.493345 1007865.493345 norm=41.460825 +1060948.066842 1007896.066842 norm=41.533119 +1061142.704486 1007620.704486 norm=40.435133 +1061356.456939 1007054.456939 norm=40.533936 +1061528.162696 1007025.162696 norm=42.225585 +1061686.381328 1008261.381328 norm=41.448764 +1061894.643505 1008899.643505 norm=40.435133 +1062100.074018 1007826.074018 norm=40.767634 +1062249.197985 1009360.197985 norm=41.569219 +1062441.723271 1007811.723271 norm=40.902323 +1062620.029708 1010438.029708 norm=41.279535 +1062781.128007 1008122.128007 norm=40.730824 +1062988.512814 1009420.512814 norm=40.951190 +1063146.002141 1010203.002141 norm=41.424630 +1063336.738353 1009227.738353 norm=40.779897 +1063523.563617 1010312.563617 norm=40.767634 +1063701.845334 1009836.845334 norm=40.767634 +1063861.227145 1009986.227145 norm=40.877867 +1064045.558133 1009394.558133 norm=40.987803 +1064219.655093 1010950.655093 norm=40.657103 +1064400.530328 1009442.530328 norm=40.890097 +1064563.994996 1010497.994996 norm=41.904654 +1064736.077386 1011237.077386 norm=40.951190 +1064922.447264 1009790.447264 norm=41.085277 +1065092.813697 1009833.813697 norm=41.109610 +1065254.341772 1010958.341772 norm=41.073106 +1065461.298410 1010733.298410 norm=40.816663 +1065611.762097 1011653.762097 norm=41.940434 +1065754.229555 1011139.229555 norm=42.142615 +1065949.173036 1010703.173036 norm=41.400483 +1066113.420756 1010998.420756 norm=41.400483 +1066301.885040 1012215.885040 norm=40.435133 +1066489.131811 1010657.131811 norm=39.974992 +1066677.590542 1011064.590542 norm=40.755368 +1066813.405603 1011455.405603 norm=40.792156 +1066996.387211 1011937.387211 norm=40.902323 +1067171.381613 1010500.381613 norm=40.890097 +1067329.031471 1013511.031471 norm=40.730824 +1067530.649338 1011362.649338 norm=40.558600 +1067673.186582 1011517.186582 norm=41.182521 +1067826.779902 1011264.779902 norm=41.303753 +1068023.047588 1011532.047588 norm=40.743098 +1068176.352927 1011775.352927 norm=40.124805 +1068376.077974 1013428.077974 norm=40.877867 +1068519.048590 1011646.048590 norm=40.841156 +1068687.770671 1011758.770671 norm=41.255303 +1068853.123983 1012247.123983 norm=41.677332 +1068994.749038 1011663.749038 norm=41.158231 +1069196.474914 1012496.474914 norm=41.231056 +1069343.005965 1011528.005965 norm=41.460825 +1069511.899619 1014224.899619 norm=41.327957 +1069683.621933 1011503.621933 norm=41.617304 +1069833.793179 1012704.793179 norm=40.902323 +1070052.641069 1011114.641069 norm=40.162171 +1070197.992900 1013750.992900 norm=40.828911 +1070342.345639 1013717.345639 norm=41.521079 +1070510.379192 1014130.379192 norm=40.890097 +1070674.557180 1013076.557180 norm=40.669399 +1070850.790479 1013423.790479 norm=40.644803 +1071023.983885 1013660.983885 norm=40.951190 +1071166.922930 1014066.922930 norm=40.681691 +1071350.655734 1014877.655734 norm=40.286474 +1071513.135796 1013147.135796 norm=40.211939 +1071672.016656 1014634.016656 norm=40.902323 +1071800.930773 1014619.930773 norm=40.595566 +1072009.462930 1014459.462930 norm=41.097445 +1072133.378132 1013255.378132 norm=41.352146 +1072292.607348 1015490.607348 norm=40.926764 +1072471.706700 1013731.706700 norm=40.211939 +1072633.732094 1014151.732094 norm=40.865633 +1072777.026215 1015610.026215 norm=40.681691 +1072960.662962 1014452.662962 norm=40.718546 +1073091.599814 1013748.599814 norm=40.951190 +1073273.375480 1015624.375480 norm=40.669399 +1073441.263977 1014094.263977 norm=40.162171 +1073584.883392 1015010.883392 norm=40.841156 +1073732.163736 1015754.163736 norm=40.595566 +1073926.362119 1015263.362119 norm=40.211939 +1074053.838954 1013481.838954 norm=40.841156 +1074220.538319 1016918.538319 norm=40.484565 +1074385.988312 1013741.988312 norm=41.170378 +1074520.794862 1016223.794862 norm=41.593269 +1074667.017757 1015913.017757 norm=41.048752 +1074838.430998 1014931.430998 norm=40.149720 +1075033.305697 1016013.305697 norm=41.000000 +1075144.646045 1016478.646045 norm=40.938979 +1075299.295124 1014281.295124 norm=41.073106 +1075468.388246 1016611.388246 norm=40.693980 +1075636.618455 1015678.618455 norm=40.236799 +1075786.498842 1015075.498842 norm=41.243181 +1075937.120515 1015007.120515 norm=40.816663 +1076088.829242 1016872.829242 norm=40.162171 +1076252.242747 1016683.242747 norm=40.865633 +1076405.102484 1016997.102484 norm=40.755368 +1076558.633085 1014892.633085 norm=41.133928 +1076692.575099 1016889.575099 norm=41.581246 +1076863.963442 1015795.963442 norm=40.422766 +1077037.734979 1018135.734979 norm=40.199502 +1077180.790034 1014235.790034 norm=40.435133 +1077325.680783 1018354.680783 norm=40.298883 +1077494.800688 1016683.800688 norm=40.484565 +1077630.189117 1016300.189117 norm=40.620192 +1077804.768062 1017616.768062 norm=39.949969 +1077961.816638 1015605.816638 norm=40.274061 +1078103.135698 1018113.135698 norm=40.975602 +1078218.749153 1015639.749153 norm=40.693980 +1078409.997138 1019480.997138 norm=40.865633 +1078540.685356 1016182.685356 norm=40.187063 +1078728.731674 1016214.731674 norm=40.199502 +1078850.031364 1020053.031364 norm=41.928511 +1078994.139220 1015125.139220 norm=40.755368 +1079150.338734 1019126.338734 norm=40.669399 +1079305.503522 1016415.503522 norm=40.877867 +1079457.744683 1017027.744683 norm=40.509258 +1079607.356678 1018761.356678 norm=39.874804 +1079768.410521 1019578.410521 norm=40.767634 +1079903.094993 1016134.094993 norm=41.170378 +1080061.038937 1017448.038937 norm=41.121770 +1080171.061499 1018568.061499 norm=40.987803 +1080378.159181 1018106.159181 norm=39.949969 +1080529.557506 1018841.557506 norm=39.899875 +1080672.987590 1017663.987590 norm=40.743098 +1080789.115697 1018650.115697 norm=40.459857 +1080971.208754 1017821.208754 norm=40.286474 +1081106.740439 1019006.740439 norm=40.447497 +1081261.660929 1016447.660929 norm=40.187063 +1081397.521427 1018694.521427 norm=41.653331 +1081542.369562 1019148.369562 norm=39.749214 +1081725.127315 1018601.127315 norm=40.037482 +1081855.153478 1019087.153478 norm=40.509258 +1081989.124623 1018461.124623 norm=40.533936 +1082159.533231 1017506.533231 norm=40.509258 +1082292.714794 1019042.714794 norm=41.073106 +1082406.747587 1019897.747587 norm=40.865633 +1082591.663664 1017788.663664 norm=39.849718 +1082741.471300 1020401.471300 norm=39.849718 +1082895.207023 1019053.207023 norm=40.546270 +1083004.937731 1019536.937731 norm=41.146081 +1083159.943844 1018140.943844 norm=41.364236 +1083303.237443 1020216.237443 norm=41.182521 +1083453.871198 1018403.871198 norm=40.261644 +1083585.719973 1020523.719973 norm=41.133928 +1083754.588273 1019532.588273 norm=40.595566 +1083881.592265 1017637.592265 norm=40.743098 +1084062.724251 1020033.724251 norm=40.137264 +1084169.717394 1019484.717394 norm=41.012193 +1084326.991849 1018235.991849 norm=40.459857 +1084490.440129 1020664.440129 norm=40.112342 +1084607.458493 1019827.458493 norm=41.170378 +1084751.881086 1019971.881086 norm=40.816663 +1084903.258976 1019471.258976 norm=40.828911 +1085038.100849 1020602.100849 norm=41.133928 +1085202.894268 1019516.894268 norm=40.644803 +1085332.545492 1020930.545492 norm=40.755368 +1085496.032125 1019929.032125 norm=40.533936 +1085622.529940 1020521.529940 norm=39.824616 +1085790.434477 1019311.434477 norm=39.623226 +1085932.431596 1021242.431596 norm=40.012498 +1086071.541320 1020935.541320 norm=40.373258 +1086194.621177 1020476.621177 norm=40.828911 +1086329.635750 1021272.635750 norm=41.484937 +1086460.934997 1020550.934997 norm=40.669399 +1086624.466645 1021246.466645 norm=40.706265 +1086757.156059 1020872.156059 norm=40.730824 +1086902.103145 1020299.103145 norm=39.686270 +1087067.515568 1021689.515568 norm=40.632499 +1087187.630012 1019091.630012 norm=41.158231 +1087318.563297 1021247.563297 norm=40.323690 +1087478.354729 1022373.354729 norm=40.000000 +1087625.023684 1021853.023684 norm=40.286474 +1087765.363425 1022692.363425 norm=40.496913 +1087898.361644 1018571.361644 norm=39.635842 +1088056.643178 1022302.643178 norm=40.336088 +1088163.673181 1022031.673181 norm=40.841156 +1088302.721527 1022132.721527 norm=40.546270 +1088454.118033 1021398.118033 norm=40.987803 +1088592.866868 1021898.866868 norm=40.484565 +1088735.552544 1022741.552544 norm=40.012498 +1088873.567483 1021377.567483 norm=40.149720 +1088998.088657 1020960.088657 norm=40.595566 +1089166.579581 1022425.579581 norm=40.348482 +1089277.574959 1022221.574959 norm=40.435133 +1089445.788556 1022467.788556 norm=39.837169 +1089577.581077 1022485.581077 norm=40.570926 +1089685.039179 1023468.039179 norm=40.558600 +1089844.889363 1021793.889363 norm=39.648455 +1090007.470004 1021242.470004 norm=39.661064 +1090124.484301 1024029.484301 norm=39.698866 +1090265.030342 1021379.030342 norm=41.133928 +1090374.905239 1023333.905239 norm=40.062451 +1090536.084781 1022692.084781 norm=40.657103 +1090652.781120 1023547.781120 norm=40.902323 +1090783.723154 1022275.723154 norm=40.385641 +1090924.706094 1024528.706094 norm=40.779897 +1091073.279076 1020663.279076 norm=39.987498 +1091219.971490 1025242.971490 norm=40.459857 +1091340.602410 1022772.602410 norm=40.669399 +1091469.213670 1024204.213670 norm=40.174619 +1091622.696884 1023045.696884 norm=39.293765 +1091774.386206 1025985.386206 norm=40.024992 +1091880.765852 1023203.765852 norm=40.037482 +1092021.254246 1024723.254246 norm=40.718546 +1092142.351832 1024206.351832 norm=40.298883 +1092276.624219 1024138.624219 norm=40.099875 +1092427.298763 1023664.298763 norm=40.360872 +1092523.729503 1024447.729503 norm=40.410395 +1092699.080008 1022691.080008 norm=40.000000 +1092812.977771 1027347.977771 norm=40.533936 +1092936.780856 1026064.780856 norm=39.849718 +1093080.377581 1024547.377581 norm=39.166312 +1093233.527605 1026537.527605 norm=39.560081 +1093348.749040 1024185.749040 norm=40.311289 +1093462.968786 1025824.968786 norm=40.174619 +1093583.569530 1024271.569530 norm=40.124805 +1093729.808315 1026331.808315 norm=39.912404 +1093866.211406 1024401.211406 norm=40.000000 +1093999.961012 1026664.961012 norm=39.912404 +1094109.166937 1026954.166937 norm=41.097445 +1094236.994507 1024280.994507 norm=40.459857 +1094375.744467 1024729.744467 norm=39.749214 +1094514.809384 1026614.809384 norm=39.862263 +1094645.132215 1025508.132215 norm=40.607881 +1094742.913352 1026754.913352 norm=40.410395 +1094890.419169 1024491.419169 norm=40.435133 +1094999.658716 1026670.658716 norm=41.036569 +1095129.141066 1027283.141066 norm=39.597980 +1095292.675897 1026272.675897 norm=40.174619 +1095412.297764 1025390.297764 norm=39.408121 +1095555.265043 1027493.265043 norm=40.037482 +1095638.100251 1027279.100251 norm=41.085277 +1095790.146505 1026636.146505 norm=39.686270 +1095937.041464 1026424.041464 norm=40.484565 +1096008.541877 1027837.541877 norm=41.000000 +1096170.968799 1026517.968799 norm=40.435133 +1096288.995359 1027074.995359 norm=40.533936 +1096424.229513 1026396.229513 norm=40.938979 +1096530.026216 1026448.026216 norm=39.962482 +1096694.142737 1028115.142737 norm=39.912404 +1096790.064128 1026828.064128 norm=40.274061 +1096932.060054 1028799.060054 norm=39.749214 +1097070.483359 1026233.483359 norm=40.804412 +1097163.037926 1027626.037926 norm=40.311289 +1097310.712674 1028400.712674 norm=40.012498 +1097437.362862 1026611.362862 norm=40.422766 +1097528.874229 1026809.874229 norm=40.162171 +1097703.873927 1028033.873927 norm=40.162171 +1097792.368984 1026675.368984 norm=40.583248 +1097936.962781 1028875.962781 norm=40.187063 +1098042.685539 1028434.685539 norm=40.644803 +1098172.356102 1029405.356102 norm=40.447497 +1098290.325572 1028218.325572 norm=41.206796 +1098392.038228 1029261.038228 norm=41.581246 +1098512.560825 1027946.560825 norm=40.435133 +1098670.695246 1028408.695246 norm=39.204592 +1098812.862441 1028967.862441 norm=40.062451 +1098906.939857 1029236.939857 norm=40.410395 +1099037.472394 1028783.472394 norm=40.074930 +1099152.851628 1029166.851628 norm=40.112342 +1099294.588431 1027167.588431 norm=39.686270 +1099419.704094 1029619.704094 norm=40.298883 +1099504.512057 1028946.512057 norm=39.937451 +1099656.810718 1029747.810718 norm=40.187063 +1099757.215779 1029614.215779 norm=40.398020 +1099880.695408 1027610.695408 norm=40.657103 +1099992.694548 1028872.694548 norm=40.385641 +1100134.145896 1031005.145896 norm=40.816663 +1100245.892971 1029177.892971 norm=40.472213 +1100360.400965 1031325.400965 norm=40.657103 +1100478.509003 1025842.509003 norm=40.261644 +1100619.798440 1030611.798440 norm=40.583248 +1100708.377712 1029324.377712 norm=40.632499 +1100853.110206 1030445.110206 norm=39.673669 +1100988.392796 1030251.392796 norm=40.336088 +1101073.029348 1028978.029348 norm=40.975602 +1101199.773382 1032483.773382 norm=40.743098 +1101315.476878 1027567.476878 norm=39.812058 +1101456.045078 1031236.045078 norm=40.112342 +1101569.883802 1028274.883802 norm=41.012193 +1101675.875212 1031801.875212 norm=40.062451 +1101811.661905 1031843.661905 norm=40.236799 +1101917.559044 1026944.559044 norm=39.799497 +1102063.036025 1031533.036025 norm=40.558600 +1102124.193249 1030913.193249 norm=41.364236 +1102268.882467 1030945.882467 norm=40.914545 +1102375.061584 1030305.061584 norm=40.087405 +1102534.035940 1029954.035940 norm=39.862263 +1102635.009613 1031677.009613 norm=40.521599 +1102753.846128 1030430.846128 norm=39.937451 +1102858.316899 1032353.316899 norm=40.298883 +1102983.503111 1030400.503111 norm=40.767634 +1103084.412294 1031502.412294 norm=40.730824 +1103211.792137 1029534.792137 norm=40.311289 +1103358.658117 1031837.658117 norm=40.211939 +1103448.934849 1030363.934849 norm=39.987498 +1103582.799297 1030186.799297 norm=40.062451 +1103688.871891 1031460.871891 norm=41.327957 +1103775.431508 1031008.431508 norm=40.841156 +1103920.612224 1030219.612224 norm=40.336088 +1104038.634396 1031353.634396 norm=39.673669 +1104166.905972 1033207.905972 norm=40.644803 +1104265.459924 1032296.459924 norm=40.024992 +1104387.396169 1029968.396169 norm=40.914545 +1104509.301197 1033053.301197 norm=40.447497 +1104601.128193 1031353.128193 norm=40.062451 +1104733.771686 1031231.771686 norm=39.635842 +1104872.946010 1031120.946010 norm=40.087405 +1104965.156910 1032208.156910 norm=39.974992 +1105092.785809 1031019.785809 norm=40.767634 +1105186.833571 1031963.833571 norm=39.824616 +1105313.949878 1033135.949878 norm=40.099875 +1105444.022131 1031565.022131 norm=40.112342 +1105535.049841 1032286.049841 norm=39.824616 +1105666.729737 1032325.729737 norm=40.149720 +1105771.828051 1030108.828051 norm=39.949969 +1105921.883563 1033256.883563 norm=39.698866 +1105997.561509 1031662.561509 norm=40.657103 +1106078.953979 1032100.953979 norm=40.644803 +1106223.642679 1032600.642679 norm=40.459857 +1106347.495491 1032178.495491 norm=39.887341 +1106469.698988 1033538.698988 norm=39.987498 +1106584.454137 1033316.454137 norm=39.522146 +1106710.480702 1031079.480702 norm=40.037482 +1106785.205332 1032745.205332 norm=40.743098 +1106915.915331 1032228.915331 norm=40.124805 +1107018.212822 1032975.212822 norm=39.937451 +1107155.065304 1033338.065304 norm=39.799497 +1107257.176793 1033132.176793 norm=40.037482 +1107373.453364 1032583.453364 norm=40.459857 +1107460.413413 1033247.413413 norm=39.887341 +1107613.835891 1031687.835891 norm=39.661064 +1107706.355604 1034796.355604 norm=39.887341 +1107814.042156 1033734.042156 norm=41.012193 +1107911.798612 1034098.798612 norm=39.974992 +1108046.439430 1032711.439430 norm=39.812058 +1108143.808783 1031805.808783 norm=39.974992 +1108274.015443 1033340.015443 norm=40.706265 +1108348.611030 1033612.611030 norm=41.048752 +1108491.463274 1034529.463274 norm=40.496913 +1108589.392071 1035172.392071 norm=38.871583 +1108738.738910 1033892.738910 norm=39.509493 +1108812.857176 1034296.857176 norm=40.755368 +1108924.876250 1033273.876250 norm=40.398020 +1109032.221219 1035194.221219 norm=39.937451 +1109149.269893 1035081.269893 norm=39.874804 +1109262.386827 1033050.386827 norm=39.761791 +1109371.366064 1032237.366064 norm=40.767634 +1109465.047628 1036566.047628 norm=40.804412 +1109581.685100 1033306.685100 norm=39.736633 +1109709.033198 1034519.033198 norm=39.306488 +1109826.041530 1033795.041530 norm=39.382737 +1109950.631160 1036882.631160 norm=39.937451 +1110012.210492 1030555.210492 norm=40.804412 +1110131.227851 1036716.227851 norm=40.792156 +1110232.745236 1034142.745236 norm=40.360872 +1110374.676438 1033375.676438 norm=39.974992 +1110459.865578 1034116.865578 norm=39.949969 +1110584.485863 1036000.485863 norm=39.887341 +1110685.508956 1035603.508956 norm=40.484565 +1110771.802409 1034026.802409 norm=39.949969 +1110943.579764 1033259.579764 norm=39.724048 +1110998.512707 1035715.512707 norm=40.049969 +1111140.611761 1033845.611761 norm=40.236799 +1111214.963031 1037723.963031 norm=40.681691 +1111333.150018 1033609.150018 norm=39.623226 +1111473.995885 1037190.995885 norm=41.024383 +1111520.937170 1034627.937170 norm=40.286474 +1111673.512897 1035295.512897 norm=39.509493 +1111793.391283 1034775.391283 norm=39.585351 +1111880.809331 1038643.809331 norm=40.459857 +1111977.956452 1036613.956452 norm=40.373258 +1112105.852838 1034648.852838 norm=39.736633 +1112200.147861 1035147.147861 norm=40.595566 +1112300.112924 1036419.112924 norm=39.799497 +1112415.931918 1034321.931918 norm=39.496835 +1112545.769532 1036687.769532 norm=39.534795 +1112656.127256 1035886.127256 norm=39.522146 +1112724.051643 1037005.051643 norm=41.533119 +1112811.215495 1034928.215495 norm=40.533936 +1112942.372115 1036540.372115 norm=39.711459 +1113083.145047 1036619.145047 norm=39.661064 +1113164.427192 1039818.427192 norm=40.087405 +1113270.879058 1034720.879058 norm=38.935845 +1113389.449514 1037871.449514 norm=40.000000 +1113491.431534 1037039.431534 norm=39.724048 +1113581.479164 1039339.479164 norm=40.224371 +1113684.771821 1034705.771821 norm=40.644803 +1113772.655866 1038659.655866 norm=41.194660 +1113872.329162 1037827.329162 norm=40.137264 +1114002.014994 1036757.014994 norm=40.669399 +1114076.746590 1037580.746590 norm=41.000000 +1114207.404497 1039159.404497 norm=40.274061 +1114326.007848 1036291.007848 norm=40.112342 +1114392.779545 1039633.779545 norm=40.657103 +1114512.656667 1036103.656667 norm=40.012498 +1114641.619475 1036401.619475 norm=39.572718 +1114732.852156 1039084.852156 norm=40.174619 +1114827.285953 1039191.285953 norm=40.286474 +1114927.391689 1036644.391689 norm=40.496913 +1115035.682229 1039590.682229 norm=39.774364 +1115140.156267 1038643.156267 norm=39.912404 +1115262.505727 1038992.505727 norm=40.533936 +1115323.697104 1036418.697104 norm=40.199502 +1115449.324639 1040017.324639 norm=39.204592 +1115575.471933 1037397.471933 norm=39.799497 +1115654.158775 1039714.158775 norm=40.632499 +1115735.178737 1039147.178737 norm=40.162171 +1115858.783653 1039722.783653 norm=40.336088 +1115963.717842 1035540.717842 norm=39.974992 +1116064.150446 1041122.150446 norm=39.331921 +1116164.358535 1036705.358535 norm=40.410395 +1116277.013971 1041024.013971 norm=40.099875 +1116362.509628 1038911.509628 norm=40.472213 +1116462.147399 1037551.147399 norm=40.521599 +1116567.401474 1039286.401474 norm=39.887341 +1116687.873836 1040144.873836 norm=40.286474 +1116784.388550 1036618.388550 norm=39.724048 +1116882.535084 1039461.535084 norm=39.395431 +1116998.705242 1038489.705242 norm=40.000000 +1117092.002848 1038000.002848 norm=39.560081 +1117186.760699 1039358.760699 norm=39.799497 +1117291.706282 1040984.706282 norm=41.012193 +1117362.815237 1037528.815237 norm=40.926764 +1117478.532842 1040715.532842 norm=40.024992 +1117576.204962 1038738.204962 norm=40.595566 +1117688.829776 1039601.829776 norm=39.962482 +1117797.395678 1037591.395678 norm=40.074930 +1117895.761115 1041147.761115 norm=40.224371 +1117988.466670 1036686.466670 norm=40.583248 +1118096.620948 1041578.620948 norm=40.000000 +1118200.305812 1037964.305812 norm=39.534795 +1118318.935928 1040271.935928 norm=39.711459 +1118416.630979 1039861.630979 norm=39.446166 +1118516.809915 1039952.809915 norm=39.786933 +1118595.957798 1039495.957798 norm=40.533936 +1118698.579275 1039353.579275 norm=39.306488 +1118818.207488 1038993.207488 norm=40.323690 +1118886.988022 1041153.988022 norm=40.236799 +1119004.898184 1040021.898184 norm=39.974992 +1119107.771927 1039135.771927 norm=40.187063 +1119207.656223 1039894.656223 norm=40.398020 +1119300.359285 1039091.359285 norm=40.398020 +1119411.505920 1039926.505920 norm=40.669399 +1119490.179543 1042830.179543 norm=40.360872 +1119619.628628 1039539.628628 norm=39.484174 +1119709.205887 1041145.205887 norm=40.583248 +1119786.809738 1038610.809738 norm=40.718546 +1119896.350910 1040806.350910 norm=39.899875 +1120011.237386 1039342.237386 norm=40.112342 +1120097.273600 1044560.273600 norm=40.373258 +1120193.536463 1039869.536463 norm=39.749214 +1120311.590219 1039357.590219 norm=39.761791 +1120407.848912 1039711.848912 norm=40.199502 +1120512.793198 1043189.793198 norm=40.249224 +1120598.178816 1039595.178816 norm=40.669399 +1120676.931603 1041331.931603 norm=40.792156 +1120782.900847 1042884.900847 norm=40.570926 +1120892.025865 1039554.025865 norm=40.000000 +1120970.745291 1039309.745291 norm=40.595566 +1121094.247245 1043111.247245 norm=40.435133 +1121159.071369 1040791.071369 norm=40.767634 +1121276.289918 1043205.289918 norm=40.816663 +1121370.275555 1041113.275555 norm=40.607881 +1121472.422914 1042099.422914 norm=40.062451 +1121578.197665 1040262.197665 norm=39.786933 +1121685.217203 1041038.217203 norm=39.887341 +1121776.035971 1040745.035971 norm=40.087405 +1121878.935816 1042173.935816 norm=40.298883 +1121966.171414 1040308.171414 norm=40.360872 +1122072.890041 1043799.890041 norm=40.398020 +1122133.453340 1039662.453340 norm=40.902323 +1122286.050850 1043028.050850 norm=39.597980 +1122353.249333 1039628.249333 norm=41.024383 +1122442.562000 1043128.562000 norm=40.385641 +1122546.219394 1042260.219394 norm=39.648455 +1122675.846300 1042820.846300 norm=40.174619 +1122720.942816 1041268.942816 norm=40.914545 +1122842.267212 1041678.267212 norm=40.373258 +1122939.342770 1041067.342770 norm=39.786933 +1123055.709222 1041864.709222 norm=40.718546 +1123117.704126 1041472.704126 norm=39.962482 +1123253.455677 1043690.455677 norm=40.174619 +1123326.318716 1039568.318716 norm=39.812058 +1123442.905179 1044863.905179 norm=40.360872 +1123513.866924 1040895.866924 norm=40.718546 +1123637.421375 1041835.421375 norm=39.242834 +1123742.784989 1043467.784989 norm=39.812058 +1123830.352703 1043065.352703 norm=40.024992 +1123907.411042 1041606.411042 norm=40.828911 +1124008.713692 1043426.713692 norm=39.924930 +1124122.914271 1040611.914271 norm=39.610605 +1124204.140895 1044200.140895 norm=40.583248 +1124299.141619 1040784.141619 norm=40.274061 +1124386.059807 1043662.059807 norm=40.951190 +1124465.846457 1040588.846457 norm=39.962482 +1124607.134228 1042993.134228 norm=39.661064 +1124707.569271 1042407.569271 norm=39.949969 +1124783.562645 1045464.562645 norm=41.036569 +1124865.352518 1038202.352518 norm=40.336088 +1124986.566100 1046641.566100 norm=39.382737 +1125091.335386 1041058.335386 norm=40.012498 +1125147.637192 1044264.637192 norm=40.311289 +1125276.095032 1041972.095032 norm=39.786933 +1125353.161700 1044334.161700 norm=40.902323 +1125444.930307 1043755.930307 norm=39.585351 +1125564.324941 1043061.324941 norm=39.686270 +1125643.794906 1043158.794906 norm=40.472213 +1125720.855462 1042823.855462 norm=40.398020 +1125827.386826 1044097.386826 norm=39.887341 +1125939.408205 1043787.408205 norm=40.509258 +1126013.396374 1041994.396374 norm=39.812058 +1126136.699100 1042878.699100 norm=39.357337 +1126218.178197 1045028.178197 norm=40.472213 +1126312.581894 1042925.581894 norm=40.743098 +1126366.462463 1042941.462463 norm=40.533936 +1126515.428526 1044828.428526 norm=40.099875 +1126602.803074 1041935.803074 norm=39.115214 +1126698.896037 1045820.896037 norm=39.698866 +1126796.042007 1042873.042007 norm=39.912404 +1126869.828298 1046551.828298 norm=40.087405 +1126961.898293 1044923.898293 norm=39.698866 +1127060.401287 1045242.401287 norm=39.874804 +1127161.030984 1044868.030984 norm=40.385641 +1127242.063824 1044309.063824 norm=39.862263 +1127334.820110 1045284.820110 norm=39.673669 +1127426.983762 1047209.983762 norm=40.509258 +1127512.433673 1044138.433673 norm=40.124805 +1127611.621661 1048571.621661 norm=40.162171 +1127703.767660 1043977.767660 norm=39.862263 +1127801.225446 1044494.225446 norm=39.924930 +1127878.913761 1046551.913761 norm=39.268308 +1128006.557167 1047555.557167 norm=39.824616 +1128045.693120 1044250.693120 norm=40.975602 +1128144.484170 1048811.484170 norm=39.585351 +1128269.637852 1045366.637852 norm=38.948684 +1128363.144049 1045652.144049 norm=39.547440 +1128441.114006 1047318.114006 norm=40.509258 +1128485.983197 1045352.983197 norm=40.435133 +1128617.667877 1046910.667877 norm=40.024992 +1128698.509894 1045582.509894 norm=38.884444 +1128835.363958 1047094.363958 norm=39.522146 +1128898.983479 1045236.983479 norm=39.509493 +1128984.949805 1046800.949805 norm=40.037482 +1129066.147744 1047119.147744 norm=40.459857 +1129155.444500 1044630.444500 norm=40.373258 +1129237.103319 1047487.103319 norm=39.987498 +1129339.360169 1047160.360169 norm=39.937451 +1129427.398520 1047386.398520 norm=39.610605 +1129529.738195 1044275.738195 norm=39.686270 +1129599.960489 1047914.960489 norm=40.459857 +1129699.953344 1045538.953344 norm=39.736633 +1129790.927102 1049310.927102 norm=39.912404 +1129882.786489 1045548.786489 norm=40.124805 +1129968.674368 1049134.674368 norm=40.162171 +1130070.936095 1046530.936095 norm=39.331921 +1130157.050985 1045793.050985 norm=39.408121 +1130236.300652 1045860.300652 norm=39.025633 +1130336.141477 1047266.141477 norm=40.546270 +1130394.886179 1048033.886179 norm=40.410395 +1130516.501324 1046652.501324 norm=39.458839 +1130592.049152 1049235.049152 norm=39.686270 +1130693.223546 1048137.223546 norm=40.037482 +1130769.682273 1047546.682273 norm=40.099875 +1130846.039941 1047637.039941 norm=41.303753 +1130936.520325 1049242.520325 norm=39.610605 +1131047.209132 1043588.209132 norm=39.420807 +1131133.494770 1048467.494770 norm=39.661064 +1131222.250279 1047946.250279 norm=40.000000 +1131293.715415 1047060.715415 norm=40.012498 +1131400.214583 1046923.214583 norm=40.385641 +1131460.825524 1048968.825524 norm=40.049969 +1131587.596203 1047040.596203 norm=40.049969 +1131636.766516 1048861.766516 norm=40.583248 +1131738.379312 1048103.379312 norm=40.298883 +1131848.952153 1047734.952153 norm=38.923001 +1131943.271988 1049458.271988 norm=40.274061 +1132008.628393 1048447.628393 norm=39.749214 +1132091.816058 1047336.816058 norm=40.632499 +1132173.662536 1047965.662536 norm=39.471509 +1132304.144404 1048201.144404 norm=39.496835 +1132368.405282 1049712.405282 norm=40.410395 +1132456.376592 1048166.376592 norm=39.686270 +1132542.785041 1049623.785041 norm=39.496835 +1132641.259133 1047699.259133 norm=40.099875 +1132676.144539 1049843.144539 norm=40.755368 +1132781.973255 1047591.973255 norm=39.610605 +1132903.996488 1050585.996488 norm=39.899875 +1132961.657225 1049284.657225 norm=40.249224 +1133058.918316 1049898.918316 norm=40.199502 +1133115.094607 1049031.094607 norm=40.149720 +1133244.570003 1050258.570003 norm=39.924930 +1133312.850498 1049194.850498 norm=39.471509 +1133406.503623 1050032.503623 norm=39.761791 +1133479.383009 1047930.383009 norm=39.899875 +1133570.790918 1051154.790918 norm=39.446166 +1133669.744546 1048561.744546 norm=39.306488 +1133752.011341 1047025.011341 norm=39.255573 +1133862.994976 1053019.994976 norm=39.572718 +1133900.359526 1048518.359526 norm=39.937451 +1134014.407571 1051590.407571 norm=39.382737 +1134111.810702 1049887.810702 norm=39.862263 +1134169.762116 1049600.762116 norm=39.484174 +1134258.941651 1048869.941651 norm=40.496913 +1134314.334146 1051240.334146 norm=40.199502 +1134432.859289 1049796.859289 norm=39.306488 +1134517.917436 1048279.917436 norm=39.849718 +1134622.323073 1052131.323073 norm=39.849718 +1134678.111140 1048712.111140 norm=39.749214 +1134766.168744 1049727.168744 norm=40.187063 +1134846.422381 1051601.422381 norm=40.360872 +1134920.712676 1048823.712676 norm=40.049969 +1135010.283825 1050803.283825 norm=39.774364 +1135104.677409 1050982.677409 norm=40.657103 +1135156.798739 1049719.798739 norm=40.877867 +1135257.583481 1052819.583481 norm=38.858718 +1135387.741790 1048528.741790 norm=39.446166 +1135444.606538 1054384.606538 norm=39.887341 +1135525.165576 1050068.165576 norm=40.236799 +1135609.721159 1048888.721159 norm=39.522146 +1135692.612086 1049804.612086 norm=39.585351 +1135786.651426 1049264.651426 norm=39.774364 +1135890.648798 1050417.648798 norm=40.199502 +1135934.505850 1051886.505850 norm=40.311289 +1136034.119881 1051082.119881 norm=39.496835 +1136110.869551 1051152.869551 norm=39.887341 +1136206.738082 1049243.738082 norm=39.661064 +1136278.213485 1052977.213485 norm=39.724048 +1136382.840264 1048232.840264 norm=39.837169 +1136447.378220 1053155.378220 norm=40.137264 +1136535.313434 1051673.313434 norm=39.786933 +1136617.870070 1052157.870070 norm=39.610605 +1136706.903617 1050329.903617 norm=40.174619 +1136785.496806 1050516.496806 norm=40.074930 +1136852.110689 1052079.110689 norm=40.398020 +1136952.154447 1050669.154447 norm=39.560081 +1137046.850951 1049177.850951 norm=39.924930 +1137130.923056 1053822.923056 norm=38.961519 +1137216.786776 1050948.786776 norm=39.255573 +1137283.031253 1051057.031253 norm=39.496835 +1137367.080572 1050026.080572 norm=39.837169 +1137446.804168 1051769.804168 norm=40.718546 +1137539.481440 1052806.481440 norm=39.547440 +1137624.811499 1050908.811499 norm=39.912404 +1137696.242317 1051295.242317 norm=40.521599 +1137768.042589 1050834.042589 norm=40.472213 +1137856.805620 1051352.805620 norm=39.560081 +1137953.787491 1053427.787491 norm=39.912404 +1138009.082696 1051999.082696 norm=40.336088 +1138126.586091 1051289.586091 norm=39.522146 +1138206.631946 1051983.631946 norm=39.686270 +1138282.556836 1050274.556836 norm=39.924930 +1138365.413172 1053081.413172 norm=39.749214 +1138463.830448 1053383.830448 norm=40.099875 +1138520.591750 1049116.591750 norm=40.099875 +1138620.463558 1055565.463558 norm=39.686270 +1138680.553580 1049728.553580 norm=40.398020 +1138765.943790 1052819.943790 norm=40.286474 +1138856.593573 1051647.593573 norm=40.644803 +1138920.671221 1053083.671221 norm=39.623226 +1139034.073287 1050236.073287 norm=39.395431 +1139120.755801 1050945.755801 norm=40.024992 +1139171.053093 1053727.053093 norm=40.137264 +1139290.493143 1053580.493143 norm=40.062451 +1139342.591962 1052192.591962 norm=39.293765 +1139445.715716 1053020.715716 norm=39.661064 +1139516.832792 1050061.832792 norm=39.357337 +1139622.201214 1054632.201214 norm=39.585351 +1139680.479134 1052480.479134 norm=39.597980 +1139751.274309 1054252.274309 norm=40.274061 +1139844.310883 1050356.310883 norm=40.718546 +1139906.013589 1053521.013589 norm=40.162171 +1140020.517678 1052516.517678 norm=39.000000 +1140111.471565 1050339.471565 norm=39.812058 +1140184.068298 1055449.068298 norm=39.012818 +1140273.581002 1051087.581002 norm=39.661064 +1140344.524159 1053259.524159 norm=40.224371 +1140411.555569 1053649.555569 norm=40.037482 +1140496.524456 1052817.524456 norm=40.074930 +1140581.335418 1050903.335418 norm=39.874804 +1140666.124987 1053647.124987 norm=39.949969 +1140749.902505 1053110.902505 norm=40.149720 +1140811.352603 1052029.352603 norm=41.097445 +1140879.485948 1054764.485948 norm=41.024383 +1140966.293950 1051452.293950 norm=40.841156 +1141050.728851 1052203.728851 norm=39.635842 +1141165.729010 1053566.729010 norm=39.115214 +1141235.941114 1054314.941114 norm=40.024992 +1141313.933165 1052378.933165 norm=40.037482 +1141396.238275 1056868.238275 norm=40.472213 +1141464.687433 1052968.687433 norm=40.558600 +1141549.084052 1050346.084052 norm=39.281039 +1141655.762789 1052287.762789 norm=39.191836 +1141719.022949 1053465.022949 norm=39.446166 +1141822.899274 1053132.899274 norm=39.433488 +1141885.414190 1052548.414190 norm=40.062451 +1141962.263828 1055755.263828 norm=40.472213 +1142035.884959 1051297.884959 norm=40.336088 +1142132.178251 1056016.178251 norm=39.496835 +1142230.800077 1055846.800077 norm=38.845849 +1142310.379672 1050846.379672 norm=39.140772 +1142376.442153 1055752.442153 norm=39.635842 +1142465.483216 1053696.483216 norm=39.661064 +1142529.559520 1055210.559520 norm=40.828911 +1142581.588728 1052335.588728 norm=40.087405 +1142687.809978 1053383.809978 norm=40.249224 +1142764.440308 1053525.440308 norm=40.877867 +1142834.012093 1056428.012093 norm=40.099875 +1142931.022257 1051694.022257 norm=40.099875 +1143014.444272 1055284.444272 norm=40.074930 +1143098.242553 1053919.242553 norm=39.623226 +1143151.529024 1056287.529024 norm=40.049969 +1143246.545589 1053378.545589 norm=40.509258 +1143323.238412 1052774.238412 norm=40.459857 +1143402.223830 1054513.223830 norm=39.874804 +1143505.851182 1054663.851182 norm=39.949969 +1143577.845006 1052482.845006 norm=40.087405 +1143647.761808 1056505.761808 norm=39.191836 +1143731.833212 1052264.833212 norm=40.496913 +1143800.207751 1054801.207751 norm=40.087405 +1143890.734039 1052606.734039 norm=40.360872 +1143950.228585 1056359.228585 norm=40.693980 +1144047.107779 1054554.107779 norm=39.974992 +1144136.418481 1054233.418481 norm=39.711459 +1144226.085092 1053236.085092 norm=39.673669 +1144287.494632 1055627.494632 norm=40.049969 +1144366.363289 1054987.363289 norm=40.422766 +1144453.941073 1055752.941073 norm=39.597980 +1144524.404833 1054438.404833 norm=40.187063 +1144621.320216 1054405.320216 norm=40.286474 +1144657.183652 1054812.183652 norm=40.037482 +1144767.585563 1054355.585563 norm=40.828911 +1144821.340949 1053516.340949 norm=40.755368 +1144916.232790 1055764.232790 norm=40.853396 +1144991.711490 1053937.711490 norm=40.348482 +1145091.275338 1056009.275338 norm=40.249224 +1145144.218910 1053858.218910 norm=39.987498 +1145260.094103 1055062.094103 norm=39.635842 +1145318.039177 1056233.039177 norm=40.398020 +1145398.115172 1055045.115172 norm=40.261644 +1145477.438411 1056041.438411 norm=40.274061 +1145542.947395 1052179.947395 norm=40.348482 +1145652.736321 1057132.736321 norm=39.673669 +1145723.903150 1053179.903150 norm=40.099875 +1145787.152332 1057085.152332 norm=39.824616 +1145882.765047 1054850.765047 norm=39.661064 +1145958.794834 1055674.794834 norm=40.211939 +1146013.688409 1055753.688409 norm=41.036569 +1146081.957993 1055633.957993 norm=40.730824 +1146195.424335 1055718.424335 norm=39.824616 +1146269.085372 1052240.085372 norm=39.962482 +1146358.000340 1057360.000340 norm=39.089641 +1146433.292594 1055741.292594 norm=39.849718 +1146518.938645 1058355.938645 norm=40.236799 +1146577.517161 1052951.517161 norm=40.435133 +1146647.598207 1057505.598207 norm=39.610605 +1146755.380571 1053765.380571 norm=40.311289 +1146810.773645 1055647.773645 norm=39.924930 +1146909.271501 1056413.271501 norm=40.224371 +1146961.372145 1058337.372145 norm=41.048752 +1147033.202352 1055427.202352 norm=40.583248 +1147113.874716 1058140.874716 norm=40.890097 +1147204.442208 1054511.442208 norm=40.261644 +1147277.500587 1055392.500587 norm=40.533936 +1147346.856520 1055785.856520 norm=39.761791 +1147458.950830 1057900.950830 norm=39.661064 +1147538.062196 1052793.062196 norm=39.610605 +1147595.558612 1060229.558612 norm=39.774364 +1147686.951612 1054769.951612 norm=40.211939 +1147756.116211 1056661.116211 norm=40.657103 +1147833.386207 1057945.386207 norm=40.037482 +1147929.731493 1054618.731493 norm=39.153544 +1148009.705239 1058895.705239 norm=39.306488 +1148087.901202 1054497.901202 norm=40.435133 +1148105.190193 1056737.190193 norm=40.841156 +1148209.098126 1053233.098126 norm=39.736633 +1148319.649961 1056306.649961 norm=39.522146 +1148381.707687 1057458.707687 norm=40.509258 +1148465.486903 1056295.486903 norm=39.648455 +1148507.907912 1059326.907912 norm=40.410395 +1148626.556119 1055824.556119 norm=39.749214 +1148696.249388 1056059.249388 norm=40.286474 +1148760.014672 1057884.014672 norm=40.174619 +1148853.051033 1054435.051033 norm=40.607881 +1148886.875331 1055995.875331 norm=41.436699 +1148991.748651 1056848.748651 norm=39.912404 +1149089.919555 1057140.919555 norm=39.812058 +1149156.748865 1056812.748865 norm=40.447497 +1149228.557091 1057786.557091 norm=39.824616 +1149320.947400 1057784.947400 norm=40.224371 +1149366.110491 1054935.110491 norm=41.048752 +1149441.261800 1057707.261800 norm=40.521599 +1149532.311008 1053968.311008 norm=39.962482 +1149617.009015 1058587.009015 norm=40.224371 +1149703.040562 1056068.040562 norm=39.344631 +1149772.290034 1058922.290034 norm=40.484565 +1149859.093329 1058351.093329 norm=39.661064 +1149932.422771 1058297.422771 norm=40.087405 +1150010.109614 1058186.109614 norm=39.051248 +1150090.667114 1057646.667114 norm=39.912404 +1150159.097803 1059347.097803 norm=39.458839 +1150237.296633 1059830.296633 norm=40.447497 +1150282.754743 1057265.754743 norm=40.509258 +1150388.072085 1060081.072085 norm=40.595566 +1150441.394951 1055393.394951 norm=39.774364 +1150530.235505 1060158.235505 norm=39.458839 +1150644.386818 1057772.386818 norm=39.484174 +1150675.965971 1061244.965971 norm=40.484565 +1150741.577326 1058299.577326 norm=40.620192 +1150807.217348 1059302.217348 norm=41.315857 +1150862.723011 1057395.723011 norm=41.303753 +1150975.817472 1058716.817472 norm=40.199502 +1151067.561217 1057964.561217 norm=40.926764 +1151095.354370 1060613.354370 norm=40.828911 +1151198.354190 1056786.354190 norm=39.799497 +1151288.583572 1060044.583572 norm=39.824616 +1151359.406618 1058549.406618 norm=39.937451 +1151439.149544 1060255.149544 norm=39.949969 +1151490.818485 1059321.818485 norm=40.570926 +1151577.716096 1061429.716096 norm=40.211939 +1151649.715351 1057324.715351 norm=39.837169 +1151728.944898 1059173.944898 norm=39.837169 +1151809.701882 1058851.701882 norm=40.496913 +1151878.990378 1060501.990378 norm=40.459857 +1151942.679281 1060321.679281 norm=40.410395 +1152025.477258 1056844.477258 norm=40.410395 +1152086.023635 1059812.023635 norm=40.348482 +1152191.677642 1060211.677642 norm=39.242834 +1152266.020899 1060160.020899 norm=40.286474 +1152335.920750 1056193.920750 norm=39.661064 +1152382.203122 1060823.203122 norm=42.000000 +1152428.427918 1061662.427918 norm=41.060930 +1152554.604786 1058079.604786 norm=39.962482 +1152629.903001 1059963.903001 norm=40.533936 +1152709.250058 1057371.250058 norm=39.837169 +1152781.843248 1062625.843248 norm=39.140772 +1152873.837795 1054692.837795 norm=39.661064 +1152932.061219 1060395.061219 norm=39.698866 +1153000.195064 1058178.195064 norm=40.360872 +1153061.047488 1063519.047488 norm=40.484565 +1153141.203455 1058386.203455 norm=39.837169 +1153221.375754 1058976.375754 norm=40.261644 +1153310.405808 1058386.405808 norm=40.162171 +1153365.328192 1062884.328192 norm=40.311289 +1153430.473572 1057994.473572 norm=40.373258 +1153515.970360 1060178.970360 norm=40.062451 +1153605.223588 1059374.223588 norm=39.761791 +1153663.019729 1061346.019729 norm=39.887341 +1153766.940331 1056096.940331 norm=39.000000 +1153818.977681 1061705.977681 norm=40.570926 +1153891.152645 1058139.152645 norm=40.632499 +1153953.908361 1061921.908361 norm=39.924930 +1154046.018315 1061724.018315 norm=40.644803 +1154104.050051 1057898.050051 norm=40.211939 +1154197.989537 1059712.989537 norm=39.610605 +1154273.606096 1060962.606096 norm=40.286474 +1154331.851466 1059654.851466 norm=39.962482 +1154421.515127 1059847.515127 norm=39.899875 +1154462.125337 1060890.125337 norm=40.311289 +1154575.566295 1057484.566295 norm=39.458839 +1154646.516959 1061358.516959 norm=40.174619 +1154708.240417 1058736.240417 norm=39.962482 +1154780.763218 1058512.763218 norm=40.112342 +1154856.686962 1062149.686962 norm=40.472213 +1154914.641483 1059953.641483 norm=41.327957 +1154964.237323 1060019.237323 norm=40.236799 +1155080.860805 1058590.860805 norm=39.281039 +1155166.906832 1062979.906832 norm=39.281039 +1155231.768503 1058489.768503 norm=40.546270 +1155280.264873 1062994.264873 norm=40.211939 +1155374.324177 1059358.324177 norm=40.049969 +1155448.511202 1061933.511202 norm=40.124805 +1155533.383417 1060120.383417 norm=39.949969 +1155559.895530 1059754.895530 norm=40.249224 +1155678.799014 1059802.799014 norm=40.360872 +1155721.310759 1061328.310759 norm=40.410395 +1155797.765276 1058169.765276 norm=40.000000 +1155904.284936 1062493.284936 norm=40.583248 +1155951.498985 1059176.498985 norm=39.433488 +1156053.283604 1061353.283604 norm=39.217343 +1156124.321356 1056377.321356 norm=39.433488 +1156187.975197 1064507.975197 norm=39.761791 +1156265.426956 1057663.426956 norm=39.962482 +1156338.412984 1062857.412984 norm=40.037482 +1156375.217071 1059969.217071 norm=40.975602 +1156458.275615 1060938.275615 norm=40.323690 +1156552.525805 1058083.525805 norm=39.924930 +1156604.133168 1063353.133168 norm=40.841156 +1156676.366498 1061707.366498 norm=40.435133 +1156754.964169 1059903.964169 norm=40.459857 +1156849.893984 1061600.893984 norm=39.937451 +1156912.301217 1060057.301217 norm=40.174619 +1156986.039138 1057796.039138 norm=39.962482 +1157053.808512 1064756.808512 norm=41.267421 +1157079.920536 1058014.920536 norm=40.410395 +1157210.276553 1063594.276553 norm=40.236799 +1157251.577377 1060435.577377 norm=40.767634 +1157335.657251 1061634.657251 norm=39.962482 +1157434.614784 1059775.614784 norm=39.623226 +1157503.080646 1059340.080646 norm=40.336088 +1157554.602912 1063327.602912 norm=40.373258 +1157646.075478 1057670.075478 norm=40.938979 +1157686.165466 1063114.165466 norm=39.319207 +1157823.463449 1064354.463449 norm=39.127995 +1157863.166151 1057344.166151 norm=40.286474 +1157940.163855 1063917.163855 norm=40.398020 +1157982.294857 1058701.294857 norm=40.681691 +1158074.877785 1063190.877785 norm=39.937451 +1158157.174028 1060245.174028 norm=39.974992 +1158218.141309 1061817.141309 norm=40.323690 +1158281.398587 1060981.398587 norm=40.398020 +1158362.226624 1063973.226624 norm=40.323690 +1158433.132010 1058530.132010 norm=40.311289 +1158499.476258 1062183.476258 norm=40.274061 +1158576.394695 1061360.394695 norm=40.607881 +1158646.739583 1061807.739583 norm=40.087405 +1158736.733517 1063046.733517 norm=40.274061 +1158786.657159 1061820.657159 norm=40.187063 +1158865.609848 1064355.609848 norm=41.121770 +1158938.334110 1059848.334110 norm=40.298883 +1159004.637163 1058096.637163 norm=39.862263 +1159085.091524 1062899.091524 norm=39.924930 +1159167.226612 1061443.226612 norm=40.459857 +1159209.495711 1063311.495711 norm=40.336088 +1159310.026146 1061344.026146 norm=40.149720 +1159366.420997 1062695.420997 norm=39.420807 +1159472.833827 1060076.833827 norm=39.484174 +1159498.550972 1065410.550972 norm=41.448764 +1159550.850547 1057902.850547 norm=41.364236 +1159648.934286 1062684.934286 norm=39.874804 +1159742.503851 1062050.503851 norm=39.547440 +1159818.651826 1062567.651826 norm=39.610605 +1159888.478731 1063354.478731 norm=40.311289 +1159922.655221 1060720.655221 norm=40.792156 +1160009.723437 1064494.723437 norm=40.385641 +1160075.670348 1061476.670348 norm=40.298883 +1160142.750449 1061533.750449 norm=40.693980 +1160215.667210 1061793.667210 norm=39.255573 +1160330.801400 1063759.801400 norm=40.533936 +1160334.349755 1062675.349755 norm=40.902323 +1160452.565589 1060783.565589 norm=39.420807 +1160493.566800 1062247.566800 norm=40.533936 +1160600.886202 1062115.886202 norm=39.623226 +1160675.687450 1062589.687450 norm=39.736633 +1160752.146922 1062550.146922 norm=38.897301 +1160800.206613 1064477.206613 norm=40.360872 +1160856.577441 1064157.577441 norm=40.853396 +1160927.650415 1061851.650415 norm=40.373258 +1160995.121010 1062917.121010 norm=39.255573 +1161110.542275 1061645.542275 norm=40.620192 +1161134.471817 1061629.471817 norm=40.323690 +1161232.854467 1066135.854467 norm=40.211939 +1161295.562995 1060926.562995 norm=39.357337 +1161393.520355 1064714.520355 norm=40.199502 +1161428.136988 1062571.136988 norm=40.261644 +1161497.703594 1060888.703594 norm=39.610605 +1161606.989940 1065711.989940 norm=39.255573 +1161674.503687 1061774.503687 norm=39.255573 +1161722.604055 1064567.604055 norm=40.718546 +1161762.455781 1060590.455781 norm=41.073106 +1161836.454055 1066842.454055 norm=40.890097 +1161938.674342 1059614.674342 norm=39.774364 +1162015.076412 1063361.076412 norm=40.323690 +1162057.134200 1064407.134200 norm=40.174619 +1162154.223692 1061606.223692 norm=39.635842 +1162224.984049 1067429.984049 norm=39.331921 +1162291.381364 1060848.381364 norm=40.348482 +1162352.510139 1066902.510139 norm=40.509258 +1162414.557505 1060043.557505 norm=39.509493 +1162512.615246 1065997.615246 norm=40.037482 +1162570.985777 1062643.985777 norm=39.899875 +1162644.838926 1065202.838926 norm=40.037482 +1162702.321132 1064267.321132 norm=40.149720 +1162791.841944 1062337.841944 norm=39.597980 +1162846.112795 1064044.112795 norm=39.837169 +1162911.836191 1064851.836191 norm=39.724048 +1162994.790891 1063474.790891 norm=39.887341 +1163056.433122 1062735.433122 norm=39.987498 +1163123.010143 1064481.010143 norm=40.472213 +1163190.061163 1065660.061163 norm=40.718546 +1163243.783066 1064059.783066 norm=40.000000 +1163332.645399 1062997.645399 norm=40.224371 +1163382.734961 1064566.734961 norm=40.632499 +1163466.221441 1066186.221441 norm=39.899875 +1163522.337085 1064097.337085 norm=40.804412 +1163583.800446 1065510.800446 norm=40.521599 +1163666.800595 1062855.800595 norm=40.000000 +1163740.354828 1063496.354828 norm=40.149720 +1163817.391765 1063871.391765 norm=39.812058 +1163876.205842 1062906.205842 norm=40.336088 +1163943.628611 1064543.628611 norm=40.211939 +1164022.750390 1065408.750390 norm=39.140772 +1164096.758937 1064899.758937 norm=39.331921 +1164174.518558 1067964.518558 norm=40.261644 +1164206.708146 1061220.708146 norm=40.422766 +1164281.648350 1067919.648350 norm=40.521599 +1164333.340951 1062400.340951 norm=40.385641 +1164435.818800 1066387.818800 norm=40.509258 +1164476.321934 1060822.321934 norm=41.218928 +1164538.542618 1069586.542618 norm=40.558600 +1164648.908597 1062991.908597 norm=38.755645 +1164711.007548 1064181.007548 norm=39.635842 +1164783.072552 1066247.072552 norm=39.761791 +1164835.494759 1064264.494759 norm=39.899875 +1164910.957974 1064813.957974 norm=39.824616 +1164984.246050 1066081.246050 norm=39.799497 +1165046.400397 1062832.400397 norm=40.987803 +1165102.589070 1066434.589070 norm=39.635842 +1165187.736142 1063951.736142 norm=40.037482 +1165263.731162 1065827.731162 norm=39.899875 +1165335.350069 1063041.350069 norm=40.174619 +1165377.316943 1065532.316943 norm=39.837169 +1165463.171980 1065784.171980 norm=39.736633 +1165530.223559 1066103.223559 norm=39.420807 +1165619.194178 1064673.194178 norm=40.410395 +1165624.909103 1067313.909103 norm=40.472213 +1165746.883027 1065578.883027 norm=39.331921 +1165803.710281 1066042.710281 norm=39.899875 +1165870.565213 1065086.565213 norm=41.255303 +1165896.696352 1065289.696352 norm=40.062451 +1166016.441624 1066275.441624 norm=39.724048 +1166064.478602 1066007.478602 norm=39.837169 +1166142.244018 1062282.244018 norm=39.623226 +1166207.755925 1067211.755925 norm=39.370039 +1166293.023983 1063690.023983 norm=40.779897 +1166312.154737 1065116.154737 norm=41.412558 +1166385.306736 1067490.306736 norm=40.410395 +1166482.452175 1064094.452175 norm=39.255573 +1166554.447134 1066724.447134 norm=40.804412 +1166587.144282 1066768.144282 norm=40.546270 +1166686.231282 1064324.231282 norm=40.124805 +1166740.623932 1068408.623932 norm=40.583248 +1166789.239640 1064971.239640 norm=40.323690 +1166880.126209 1065220.126209 norm=40.174619 +1166945.835202 1065471.835202 norm=39.887341 +1167034.620644 1067023.620644 norm=39.698866 +1167095.240737 1066410.240737 norm=40.236799 +1167152.170167 1065941.170167 norm=39.862263 +1167230.377090 1066567.377090 norm=39.179076 +1167305.880631 1064884.880631 norm=40.187063 +1167350.240299 1067867.240299 norm=40.012498 +1167426.500265 1064452.500265 norm=39.446166 +1167506.320565 1067610.320565 norm=39.635842 +1167562.267500 1066085.267500 norm=40.435133 +1167612.271985 1068056.271985 norm=39.912404 +1167705.958095 1061925.958095 norm=38.987177 +1167787.044531 1069672.044531 norm=40.099875 +1167819.809657 1068605.809657 norm=39.382737 +1167903.288026 1064929.288026 norm=39.987498 +1167978.854185 1065610.854185 norm=38.935845 +1168045.784282 1066619.784282 norm=40.224371 +1168066.443803 1064601.443803 norm=40.496913 +1168170.696216 1068702.696216 norm=39.837169 +1168220.959246 1068173.959246 norm=40.447497 +1168267.149290 1068336.149290 norm=41.617304 +1168342.735587 1066696.735587 norm=39.774364 +1168433.367894 1063914.367894 norm=39.899875 +1168502.517760 1069456.517760 norm=40.012498 +1168571.051235 1066629.051235 norm=40.024992 +1168639.675299 1066387.675299 norm=39.268308 +1168715.152994 1066185.152994 norm=39.306488 +1168775.601509 1068296.601509 norm=39.420807 +1168844.296436 1067993.296436 norm=40.024992 +1168898.854231 1067952.854231 norm=40.024992 +1168952.494068 1067364.494068 norm=40.348482 +1169026.937286 1066197.937286 norm=39.597980 +1169102.207982 1067078.207982 norm=40.632499 +1169145.778348 1070842.778348 norm=40.360872 +1169224.837148 1064524.837148 norm=39.887341 +1169287.521635 1067450.521635 norm=39.408121 +1169380.332326 1066101.332326 norm=39.585351 +1169432.011506 1070718.011506 norm=40.074930 +1169504.170888 1064660.170888 norm=38.535698 +1169609.148217 1067073.148217 norm=39.924930 +1169610.595914 1068393.595914 norm=40.311289 +1169670.394882 1067714.394882 norm=40.890097 +1169751.267974 1070216.267974 norm=39.648455 +1169836.649866 1066461.649866 norm=39.824616 +1169886.094762 1069387.094762 norm=40.459857 +1169938.840413 1066237.840413 norm=39.115214 +1170053.320993 1068391.320993 norm=39.319207 +1170096.030348 1067802.030348 norm=40.062451 +1170137.149023 1068042.149023 norm=39.458839 +1170234.442927 1069767.442927 norm=39.899875 +1170290.662419 1066804.662419 norm=40.274061 +1170347.919047 1066465.919047 norm=39.799497 +1170415.777291 1067253.777291 norm=40.669399 +1170470.010242 1069058.010242 norm=40.509258 +1170535.076917 1066733.076917 norm=39.331921 +1170643.763637 1067913.763637 norm=39.534795 +1170681.414579 1068129.414579 norm=40.435133 +1170736.519228 1068523.519228 norm=40.484565 +1170807.916781 1068567.916781 norm=40.174619 +1170864.526242 1067030.526242 norm=40.049969 +1170947.737072 1067819.737072 norm=39.749214 +1171025.778807 1068838.778807 norm=39.025633 +1171086.418631 1068885.418631 norm=39.987498 +1171154.576105 1065716.576105 norm=39.874804 +1171191.246018 1068569.246018 norm=41.048752 +1171243.949933 1068657.949933 norm=40.112342 +1171347.656526 1069590.656526 norm=39.661064 +1171409.166081 1066891.166081 norm=39.179076 +1171486.124059 1069677.124059 norm=39.408121 +1171533.017285 1068912.017285 norm=39.115214 +1171628.463529 1066168.463529 norm=39.799497 +1171645.127413 1067955.127413 norm=40.261644 +1171728.947979 1069241.947979 norm=39.217343 +1171824.207847 1072165.207847 norm=39.242834 +1171860.076146 1065034.076146 norm=39.987498 +1171928.301984 1069714.301984 norm=39.761791 +1171994.546962 1070796.546962 norm=40.087405 +1172054.196894 1068467.196894 norm=40.336088 +1172110.013045 1067854.013045 norm=39.306488 +1172202.177401 1071045.177401 norm=40.236799 +1172248.610723 1065429.610723 norm=39.698866 +1172343.757491 1068266.757491 norm=39.698866 +1172347.356710 1071434.356710 norm=41.327957 +1172440.391229 1068002.391229 norm=39.937451 +1172514.914247 1069118.914247 norm=39.874804 +1172569.343204 1069890.343204 norm=39.924930 +1172660.988683 1069169.988683 norm=39.824616 +1172693.022973 1066393.022973 norm=39.924930 +1172774.903422 1069770.903422 norm=39.306488 +1172853.268829 1071552.268829 norm=39.849718 +1172897.955548 1067606.955548 norm=40.236799 +1172956.787517 1070767.787517 norm=39.623226 +1173042.678276 1065857.678276 norm=40.012498 +1173087.231596 1070763.231596 norm=38.884444 +1173187.281269 1066236.281269 norm=39.166312 +1173247.400065 1070346.400065 norm=39.293765 +1173294.627163 1070669.627163 norm=40.162171 +1173349.493859 1071180.493859 norm=39.799497 +1173440.460963 1068647.460963 norm=39.471509 +1173485.986267 1071036.986267 norm=39.255573 +1173554.473052 1070233.473052 norm=39.204592 +1173613.535209 1070143.535209 norm=40.657103 +1173669.267170 1069706.267170 norm=39.484174 +1173763.240803 1072858.240803 norm=39.610605 +1173795.176549 1068493.176549 norm=40.373258 +1173858.541752 1074024.541752 norm=39.179076 +1173954.022821 1066841.022821 norm=40.693980 +1173969.435951 1070348.435951 norm=39.849718 +1174065.789279 1068485.789279 norm=39.281039 +1174135.571444 1070184.571444 norm=40.099875 +1174181.395781 1068664.395781 norm=39.812058 +1174261.217498 1073727.217498 norm=39.686270 +1174320.147231 1067802.147231 norm=39.837169 +1174391.206264 1074715.206264 norm=39.319207 +1174451.507698 1066676.507698 norm=39.076847 +1174546.721638 1069199.721638 norm=39.597980 +1174563.775799 1068481.775799 norm=39.623226 +1174659.967981 1072063.967981 norm=38.613469 +1174721.392250 1069320.392250 norm=40.570926 +1174733.228584 1072011.228584 norm=40.546270 +1174834.544633 1072675.544633 norm=40.174619 +1174890.029619 1070224.029619 norm=39.522146 +1174971.086806 1067864.086806 norm=39.862263 +1175018.691201 1070031.691201 norm=39.874804 +1175079.871336 1071563.871336 norm=39.862263 +1175164.308019 1073006.308019 norm=39.962482 +1175199.657953 1072541.657953 norm=39.458839 +1175285.709909 1068111.709909 norm=38.884444 +1175356.449303 1068961.449303 norm=39.433488 +1175396.351436 1071903.351436 norm=40.472213 +1175473.199418 1069239.199418 norm=39.597980 +1175511.580116 1073164.580116 norm=39.874804 +1175606.410770 1068548.410770 norm=39.749214 +1175642.615446 1073706.615446 norm=39.661064 +1175753.835461 1068230.835461 norm=38.691084 +1175791.340203 1071412.340203 norm=40.062451 +1175843.193887 1070093.193887 norm=40.249224 +1175913.837352 1071875.837352 norm=39.268308 +1175983.041066 1070083.041066 norm=39.812058 +1176025.770431 1071293.770431 norm=40.496913 +1176094.352934 1074819.352934 norm=40.706265 +1176126.640265 1071399.640265 norm=39.522146 +1176265.155834 1068823.155834 norm=39.471509 +1176288.826539 1071190.826539 norm=38.691084 +1176387.307082 1069889.307082 norm=38.742741 +1176425.105830 1073276.105830 norm=40.049969 +1176459.849391 1073658.849391 norm=40.816663 +1176536.312782 1070447.312782 norm=39.937451 +1176611.108038 1073109.108038 norm=39.382737 +1176665.248985 1069659.248985 norm=39.509493 +1176748.963259 1069618.963259 norm=38.483763 +1176835.688237 1076042.688237 norm=40.087405 +1176833.987281 1067420.987281 norm=40.792156 +1176897.245094 1074877.245094 norm=40.187063 +1176980.414670 1070087.414670 norm=39.761791 +1177059.146523 1073606.146523 norm=39.849718 +1177103.867795 1068806.867795 norm=40.348482 +1177156.521235 1074822.521235 norm=39.319207 +1177262.995748 1069168.995748 norm=39.306488 +1177281.752578 1073359.752578 norm=40.914545 +1177347.973934 1071749.973934 norm=39.874804 +1177417.245502 1075918.245502 norm=40.298883 +1177481.193760 1069595.193760 norm=39.572718 +1177553.197883 1073149.197883 norm=39.000000 +1177620.292133 1069478.292133 norm=39.217343 +1177676.408018 1073873.408018 norm=39.547440 +1177743.774254 1069721.774254 norm=39.319207 +1177819.078281 1072324.078281 norm=39.319207 +1177867.866955 1069891.866955 norm=39.597980 +1177938.101459 1077697.101459 norm=40.311289 +1177956.814837 1070034.814837 norm=39.862263 +1178051.244998 1074116.244998 norm=38.832976 +1178134.677859 1073072.677859 norm=39.686270 +1178178.920746 1072648.920746 norm=39.191836 +1178254.139313 1072880.139313 norm=39.724048 +1178284.921337 1072787.921337 norm=40.174619 +1178368.454597 1073514.454597 norm=39.496835 +1178421.746998 1071779.746998 norm=39.012818 +1178514.216719 1072817.216719 norm=38.794329 +1178552.635300 1071736.635300 norm=39.370039 +1178611.073539 1074627.073539 norm=39.698866 +1178679.746682 1071700.746682 norm=39.089641 +1178752.522420 1073314.522420 norm=39.242834 +1178814.648639 1072366.648639 norm=39.204592 +1178841.139312 1072961.139312 norm=40.311289 +1178913.108501 1071553.108501 norm=39.736633 +1178990.038395 1072501.038395 norm=39.862263 +1179046.838202 1074617.838202 norm=38.755645 +1179124.488107 1070883.488107 norm=39.051248 +1179186.353588 1073027.353588 norm=39.534795 +1179228.559039 1075151.559039 norm=39.471509 +1179299.702390 1071020.702390 norm=40.360872 +1179335.815231 1074361.815231 norm=40.435133 +1179398.846922 1074156.846922 norm=39.522146 +1179475.895446 1071803.895446 norm=39.127995 +1179557.488227 1071420.488227 norm=39.471509 +1179593.128260 1075262.128260 norm=40.298883 +1179660.125621 1071843.125621 norm=40.336088 +1179706.062772 1073664.062772 norm=40.199502 +1179780.064610 1073134.064610 norm=39.115214 +1179855.763171 1072258.763171 norm=40.693980 +1179886.107741 1074405.107741 norm=38.948684 +1179993.650289 1074200.650289 norm=39.458839 +1180039.046182 1069858.046182 norm=40.286474 +1180085.582130 1075242.582130 norm=39.673669 +1180144.552148 1073156.552148 norm=39.484174 +1180224.804025 1076086.804025 norm=39.648455 +1180275.151123 1071128.151123 norm=39.786933 +1180324.989188 1072259.989188 norm=39.484174 +1180406.825745 1072569.825745 norm=39.610605 +1180461.154083 1074997.154083 norm=41.412558 +1180489.017309 1071311.017309 norm=40.149720 +1180580.549097 1073471.549097 norm=39.293765 +1180666.129398 1071573.129398 norm=38.923001 +1180717.825719 1076699.825719 norm=39.064050 +1180779.348663 1072771.348663 norm=39.547440 +1180833.914081 1074837.914081 norm=39.293765 +1180887.521446 1072807.521446 norm=39.698866 +1180959.123049 1078305.123049 norm=39.420807 +1181026.945428 1070000.945428 norm=39.420807 +1181057.856669 1076092.856669 norm=39.987498 +1181141.418119 1075561.418119 norm=39.433488 +1181210.893628 1072822.893628 norm=38.665230 +1181279.727027 1074058.727027 norm=38.652296 +1181329.027257 1074186.027257 norm=40.570926 +1181354.515633 1074785.515633 norm=39.306488 +1181465.732232 1074823.732232 norm=38.600518 +1181524.477669 1073696.477669 norm=39.534795 +1181569.679848 1074555.679848 norm=39.812058 +1181604.710505 1076199.710505 norm=39.217343 +1181702.834550 1071106.834550 norm=39.025633 +1181751.623989 1076241.623989 norm=39.849718 +1181790.447689 1075433.447689 norm=39.127995 +1181869.293448 1077591.293448 norm=40.274061 +1181903.260865 1073686.260865 norm=39.698866 +1182006.717360 1075970.717360 norm=39.484174 +1182025.708764 1074634.708764 norm=39.293765 +1182118.523367 1077491.523367 norm=38.807216 +1182181.128564 1074617.128564 norm=38.948684 +1182233.894273 1075527.894273 norm=40.162171 +1182265.200827 1076262.200827 norm=40.583248 +1182327.769865 1072550.769865 norm=39.522146 +1182413.265915 1077318.265915 norm=39.217343 +1182464.833628 1078950.833628 norm=39.204592 +1182532.788690 1070710.788690 norm=40.558600 +1182566.912528 1075910.912528 norm=40.521599 +1182618.346969 1073408.346969 norm=39.849718 +1182733.982860 1077101.982860 norm=38.561639 +1182781.542570 1072356.542570 norm=39.597980 +1182809.128568 1077660.128568 norm=40.249224 +1182867.161477 1074591.161477 norm=40.459857 +1182916.858882 1079232.858882 norm=40.187063 +1183007.651165 1073436.651165 norm=38.652296 +1183092.618963 1075595.618963 norm=38.392708 +1183156.334434 1074113.334434 norm=38.871583 +1183196.035114 1075860.035114 norm=38.871583 +1183245.514884 1074026.514884 norm=40.583248 +1183284.261518 1076483.261518 norm=40.049969 +1183350.276569 1073258.276569 norm=39.862263 +1183422.173293 1078812.173293 norm=39.420807 +1183496.569614 1075656.569614 norm=39.281039 +1183544.899287 1076827.899287 norm=38.897301 +1183621.684905 1074105.684905 norm=39.382737 +1183672.879230 1075316.879230 norm=39.000000 +1183732.705672 1074767.705672 norm=39.038443 +1183797.392940 1080348.392940 norm=38.935845 +1183838.471842 1074035.471842 norm=40.274061 +1183888.700278 1074856.700278 norm=38.961519 +1183971.194584 1075116.194584 norm=38.768544 +1184035.944016 1078229.944016 norm=39.293765 +1184072.517648 1077587.517648 norm=40.149720 +1184123.373855 1075598.373855 norm=39.038443 +1184232.269437 1076153.269437 norm=39.000000 +1184254.609447 1076491.609447 norm=39.357337 +1184328.062051 1074652.062051 norm=39.534795 +1184365.348334 1077856.348334 norm=40.162171 +1184415.170496 1070866.170496 norm=39.849718 +1184494.008481 1082048.008481 norm=38.858718 +1184572.746112 1072924.746112 norm=39.025633 +1184617.719599 1080580.719599 norm=39.000000 +1184691.900221 1071686.900221 norm=38.262253 +1184762.988582 1079902.988582 norm=38.820098 +1184808.457071 1075670.457071 norm=39.458839 +1184861.018786 1077572.018786 norm=39.509493 +1184896.247884 1071786.247884 norm=39.724048 +1184968.919780 1078094.919780 norm=39.522146 +1185038.292105 1077469.292105 norm=40.000000 +1185086.196470 1075750.196470 norm=39.761791 +1185157.042506 1077655.042506 norm=38.832976 +1185221.918763 1075985.918763 norm=39.736633 +1185273.610513 1075603.610513 norm=39.395431 +1185335.052215 1074837.052215 norm=38.314488 +1185408.331647 1078719.331647 norm=39.949969 +1185419.346835 1077445.346835 norm=39.230090 +1185529.454120 1078829.454120 norm=38.832976 +1185575.836093 1075329.836093 norm=39.446166 +1185614.553074 1074640.553074 norm=40.236799 +1185660.512128 1080082.512128 norm=39.924930 +1185721.441853 1077217.441853 norm=39.937451 +1185804.889533 1072562.889533 norm=39.319207 +1185848.043188 1078945.043188 norm=40.062451 +1185913.150474 1076200.150474 norm=38.935845 +1185988.627787 1081303.627787 norm=39.446166 +1186021.591132 1074972.591132 norm=40.261644 +1186076.801229 1077474.801229 norm=39.698866 +1186140.262114 1079256.262114 norm=40.012498 +1186213.507465 1076930.507465 norm=39.420807 +1186275.426976 1077204.426976 norm=39.153544 +1186314.599893 1074974.599893 norm=39.610605 +1186389.965697 1077586.965697 norm=39.153544 +1186437.506440 1076507.506440 norm=40.398020 +1186482.018544 1078856.018544 norm=40.398020 +1186557.157633 1074009.157633 norm=39.370039 +1186613.864899 1078014.864899 norm=39.204592 +1186680.317114 1078448.317114 norm=39.736633 +1186727.730265 1077844.730265 norm=39.522146 +1186805.546129 1076919.546129 norm=39.471509 +1186837.932797 1078136.932797 norm=39.899875 +1186907.669107 1080908.669107 norm=39.799497 +1186957.211865 1075404.211865 norm=39.597980 +1187039.066137 1079511.066137 norm=40.274061 +1187059.334166 1076029.334166 norm=39.446166 +1187177.522341 1077651.522341 norm=39.076847 +1187210.085793 1076379.085793 norm=39.597980 +1187262.356360 1076835.356360 norm=39.560081 +1187329.368149 1078925.368149 norm=38.923001 +1187389.976715 1075618.976715 norm=39.749214 +1187439.831876 1077983.831876 norm=39.370039 +1187486.128532 1079134.128532 norm=40.274061 +1187542.733462 1079784.733462 norm=40.049969 +1187593.327589 1076027.327589 norm=39.887341 +1187668.925969 1078248.925969 norm=39.912404 +1187724.085466 1077782.085466 norm=39.281039 +1187799.366324 1077991.366324 norm=38.716921 +1187858.674564 1076859.674564 norm=39.281039 +1187916.633680 1080417.633680 norm=39.344631 +1187964.256828 1075347.256828 norm=39.799497 +1188001.403222 1081996.403222 norm=40.074930 +1188068.540732 1079493.540732 norm=39.962482 +1188132.283660 1074654.283660 norm=39.382737 +1188184.345889 1077661.345889 norm=39.522146 +1188238.025934 1080275.025934 norm=40.558600 +1188301.912484 1080080.912484 norm=39.102430 +1188383.424722 1077864.424722 norm=39.153544 +1188414.236118 1077074.236118 norm=40.435133 +1188464.598664 1079985.598664 norm=38.897301 +1188552.093890 1076690.093890 norm=40.024992 +1188591.176653 1079519.176653 norm=39.572718 +1188663.329389 1078737.329389 norm=39.446166 +1188700.163668 1078962.163668 norm=40.755368 +1188732.810974 1079192.810974 norm=39.698866 +1188846.137209 1081036.137209 norm=38.781439 +1188886.222290 1076790.222290 norm=40.000000 +1188923.000637 1080466.000637 norm=40.049969 +1188991.662916 1076372.662916 norm=39.987498 +1189052.350740 1078837.350740 norm=38.820098 +1189142.220657 1080707.220657 norm=39.597980 +1189168.074480 1077370.074480 norm=39.522146 +1189233.052475 1082280.052475 norm=39.255573 +1189293.670686 1077061.670686 norm=39.420807 +1189341.335798 1082160.335798 norm=39.281039 +1189416.542352 1076845.542352 norm=39.446166 +1189455.734325 1080830.734325 norm=39.585351 +1189509.466676 1080711.466676 norm=39.319207 +1189573.048457 1078134.048457 norm=40.755368 +1189598.201060 1080926.201060 norm=39.597980 +1189685.609628 1080489.609628 norm=39.319207 +1189742.775641 1080095.775641 norm=40.062451 +1189780.024941 1079589.024941 norm=40.632499 +1189827.802419 1082297.802419 norm=40.583248 +1189893.570137 1078069.570137 norm=39.484174 +1189967.147897 1081525.147897 norm=39.281039 +1190030.614039 1078295.614039 norm=40.099875 +1190063.036973 1082390.036973 norm=39.837169 +1190140.580460 1079194.580460 norm=39.635842 +1190184.472499 1079326.472499 norm=39.874804 +1190238.995126 1079905.995126 norm=39.648455 +1190314.064937 1081715.064937 norm=38.768544 +1190373.220055 1078563.220055 norm=39.547440 +1190421.692051 1082983.692051 norm=39.987498 +1190468.555625 1077511.555625 norm=39.038443 +1190553.202659 1082876.202659 norm=40.099875 +1190589.610262 1082416.610262 norm=38.935845 +1190634.096782 1079898.096782 norm=40.311289 +1190693.516797 1079781.516797 norm=39.408121 +1190743.502578 1083408.502578 norm=40.024992 +1190818.622890 1077176.622890 norm=38.729833 +1190893.578470 1081221.578470 norm=39.127995 +1190927.776899 1079906.776899 norm=40.938979 +1190936.080934 1082129.080934 norm=40.049969 +1191040.453935 1081892.453935 norm=39.648455 +1191095.432189 1080241.432189 norm=39.395431 +1191165.474503 1078963.474503 norm=39.382737 +1191195.590507 1083413.590507 norm=39.382737 +1191271.736929 1080658.736929 norm=39.673669 +1191284.973008 1083090.973008 norm=39.281039 +1191393.343381 1080292.343381 norm=39.812058 +1191413.713489 1082230.713489 norm=39.924930 +1191484.314412 1081747.314412 norm=39.281039 +1191546.293650 1084259.293650 norm=39.433488 +1191591.494282 1077976.494282 norm=40.087405 +1191628.871733 1083406.871733 norm=40.914545 +1191682.074162 1082864.074162 norm=40.062451 +1191742.780077 1080174.780077 norm=39.268308 +1191822.479551 1083185.479551 norm=39.560081 +1191883.850207 1084791.850207 norm=38.781439 +1191930.186883 1079946.186883 norm=39.912404 +1191971.273108 1082375.273108 norm=39.899875 +1192032.045954 1080982.045954 norm=39.749214 +1192078.117022 1081772.117022 norm=39.962482 +1192148.449146 1085042.449146 norm=39.987498 +1192189.841916 1082490.841916 norm=39.686270 +1192278.581053 1079477.581053 norm=38.987177 +1192310.796658 1086774.796658 norm=39.912404 +1192352.002408 1078304.002408 norm=38.910153 +1192454.083850 1082343.083850 norm=39.522146 +1192483.040599 1080519.040599 norm=39.610605 +1192534.732933 1083801.732933 norm=39.255573 +1192573.802519 1082452.802519 norm=40.112342 +1192640.510308 1083713.510308 norm=39.102430 +1192721.944184 1081576.944184 norm=39.686270 +1192740.426499 1084051.426499 norm=39.862263 +1192806.608988 1079771.608988 norm=39.974992 +1192863.763475 1085750.763475 norm=39.319207 +1192925.250559 1080293.250559 norm=39.166312 +1192979.243667 1085928.243667 norm=39.204592 +1193034.107932 1079718.107931 norm=39.547440 +1193089.261126 1084174.261126 norm=39.610605 +1193142.308543 1081795.308543 norm=39.140772 +1193174.921296 1084630.921296 norm=39.786933 +1193265.904950 1081281.904950 norm=39.987498 +1193300.784125 1081216.784125 norm=39.127995 +1193367.774014 1084030.774014 norm=40.187063 +1193398.850377 1085729.850377 norm=39.344631 +1193490.455233 1076968.455233 norm=38.897301 +1193537.723336 1084042.723336 norm=39.281039 +1193587.731739 1085536.731739 norm=39.799497 +1193628.309560 1082581.309560 norm=40.087405 +1193682.929418 1081984.929418 norm=39.420807 +1193753.193289 1083144.193289 norm=39.370039 +1193795.093148 1080652.093148 norm=39.585351 +1193845.969867 1085003.969867 norm=39.115214 +1193930.374661 1082120.374661 norm=38.405729 +1193982.970971 1085247.970971 norm=38.561639 +1194047.990632 1078564.990632 norm=39.962482 +1194048.014700 1083530.014700 norm=39.749214 +1194124.628551 1083543.628551 norm=39.204592 +1194200.061616 1081668.061616 norm=39.230090 +1194253.999256 1085928.999256 norm=39.949969 +1194261.689774 1084247.689774 norm=40.632499 +1194319.681750 1085544.681750 norm=39.812058 +1194414.715648 1079988.715648 norm=39.089641 +1194463.797613 1082964.797613 norm=39.025633 +1194517.543151 1085858.543151 norm=38.910153 +1194559.012701 1085720.012701 norm=39.484174 +1194618.364636 1079439.364636 norm=40.323690 +1194654.862093 1082269.862093 norm=39.255573 +1194739.027608 1087980.027608 norm=39.458839 +1194771.181992 1083403.181992 norm=39.306488 +1194841.680483 1082997.680483 norm=39.306488 +1194879.681081 1084947.681081 norm=39.319207 +1194955.530175 1083429.530175 norm=39.433488 +1194998.924212 1084218.924212 norm=40.099875 +1195037.877089 1082404.877089 norm=39.268308 +1195118.287066 1083931.287066 norm=39.230090 +1195170.174870 1082438.174870 norm=39.597980 +1195212.049481 1084459.049481 norm=39.786933 +1195267.227894 1083311.227894 norm=40.274061 +1195274.168793 1084866.168793 norm=39.949969 +1195379.885276 1084776.885276 norm=39.293765 +1195427.352085 1085194.352085 norm=39.382737 +1195491.511819 1086515.511819 norm=39.949969 +1195502.846065 1081682.846065 norm=40.743098 +1195563.741091 1084631.741091 norm=39.597980 +1195635.829174 1082158.829174 norm=39.597980 +1195706.059609 1086388.059609 norm=38.548671 +1195768.996952 1083751.996952 norm=39.509493 +1195793.697382 1086110.697382 norm=39.597980 +1195853.435881 1082585.435881 norm=39.597980 +1195910.598298 1082639.598298 norm=39.661064 +1195944.349054 1086717.349054 norm=39.420807 +1196034.750085 1085400.750085 norm=39.420807 +1196062.622208 1082387.622208 norm=39.458839 +1196149.963492 1085880.963492 norm=38.652296 +1196191.904019 1084150.904019 norm=39.344631 +1196238.034982 1084633.034982 norm=39.761791 +1196278.577703 1083600.577703 norm=38.639358 +1196357.806205 1084402.806205 norm=39.686270 +1196368.927134 1083570.927134 norm=39.623226 +1196437.588697 1085032.588697 norm=39.974992 +1196488.802438 1087300.802438 norm=39.357337 +1196554.231019 1083112.231019 norm=40.336088 +1196585.791415 1087256.791415 norm=39.862263 +1196637.025453 1084952.025453 norm=39.812058 +1196714.605934 1085219.605934 norm=39.433488 +1196772.940189 1084896.940189 norm=38.832976 +1196824.637687 1085179.637687 norm=40.099875 +1196854.570897 1084141.570897 norm=39.408121 +1196950.418401 1080826.418401 norm=38.974351 +1196964.082977 1085198.082977 norm=39.064050 +1197040.432843 1085376.432843 norm=39.949969 +1197074.034608 1084955.034608 norm=39.166312 +1197173.513763 1087094.513763 norm=38.742741 +1197200.024939 1086317.024939 norm=39.179076 +1197269.209457 1082889.209457 norm=39.064050 +1197290.212703 1087204.212703 norm=39.534795 +1197356.335494 1084199.335494 norm=40.112342 +1197392.504661 1081984.504661 norm=39.140772 +1197467.228170 1082544.228170 norm=39.962482 +1197492.165438 1091274.165438 norm=40.583248 +1197545.509080 1082318.509080 norm=39.140772 +1197617.313137 1085015.313137 norm=39.509493 +1197684.674755 1085779.674755 norm=38.948684 +1197731.385341 1086288.385341 norm=38.613469 +1197797.652785 1084282.652785 norm=39.012818 +1197837.502331 1085313.502331 norm=39.547440 +1197880.503034 1081801.503034 norm=39.698866 +1197930.094021 1088714.094021 norm=39.420807 +1198014.428308 1085094.428308 norm=39.089641 +1198037.092497 1085362.092497 norm=39.127995 +1198093.728829 1082528.728829 norm=39.585351 +1198154.863778 1090482.863778 norm=39.736633 +1198196.898198 1083100.898198 norm=38.755645 +1198276.222085 1084944.222085 norm=39.242834 +1198306.368767 1084986.368767 norm=39.331921 +1198369.417474 1088845.417474 norm=38.832976 +1198413.424100 1084211.424100 norm=39.281039 +1198481.880024 1085632.880024 norm=38.923001 +1198530.191905 1084667.191905 norm=39.597980 +1198554.411846 1086142.411846 norm=40.558600 +1198608.289328 1087256.289328 norm=39.987498 +1198664.950538 1084551.950538 norm=39.458839 +1198737.381911 1082893.381911 norm=39.230090 +1198789.043745 1089249.043745 norm=39.395431 +1198841.597931 1082858.597931 norm=38.948684 +1198905.184319 1088343.184319 norm=39.382737 +1198943.818918 1085718.818918 norm=39.446166 +1198991.607133 1083056.607133 norm=39.382737 +1199049.700773 1087597.700773 norm=39.051248 +1199109.889422 1087322.889422 norm=39.698866 +1199137.379965 1085915.379965 norm=39.534795 +1199194.403642 1087939.403642 norm=39.281039 +1199279.003728 1082654.003728 norm=38.704005 +1199333.834211 1086317.834211 norm=38.639358 +1199382.818779 1088573.818779 norm=39.230090 +1199402.557918 1086487.557918 norm=40.024992 +1199449.598569 1084768.598569 norm=39.420807 +1199519.332133 1083673.332133 norm=39.153544 +1199571.704694 1089493.704694 norm=39.204592 +1199630.599637 1086805.599637 norm=40.224371 +1199663.243744 1084435.243744 norm=39.673669 +1199721.358427 1086155.358427 norm=40.024992 +1199764.040631 1087567.040631 norm=39.382737 +1199847.172693 1085624.172693 norm=39.331921 +1199872.529905 1088644.529905 norm=39.547440 +1199957.299184 1082273.299184 norm=39.281039 +1199995.451469 1089552.451469 norm=39.862263 +1200015.630226 1086446.630226 norm=40.211939 +1200094.606675 1086882.606675 norm=39.433488 +1200162.523581 1084545.523581 norm=37.986840 +1200217.138528 1087698.138528 norm=39.319207 +1200254.130203 1086366.130203 norm=39.862263 +1200306.052299 1080863.052299 norm=39.038443 +1200368.370539 1087524.370539 norm=38.704005 +1200431.685844 1086845.685844 norm=39.837169 +1200425.206409 1090652.206409 norm=39.987498 +1200517.496923 1084926.496923 norm=39.344631 +1200573.854412 1085571.854412 norm=39.025633 +1200629.657219 1085643.657219 norm=39.179076 +1200667.824517 1091929.824517 norm=39.025633 +1200739.561180 1084240.561180 norm=38.742741 +1200794.245292 1087454.245292 norm=38.858718 +1200836.759677 1084434.759677 norm=39.974992 +1200861.577069 1088843.577069 norm=39.230090 +1200948.130148 1086419.130148 norm=39.025633 +1200990.413590 1086063.413590 norm=38.691084 +1201055.316881 1089537.316881 norm=39.484174 +1201077.886884 1083823.886884 norm=39.140772 +1201166.550962 1086354.550962 norm=39.089641 +1201196.136553 1086546.136553 norm=38.613469 +1201255.946959 1088542.946959 norm=39.509493 +1201295.961621 1086929.961621 norm=39.736633 +1201359.503788 1085614.503788 norm=38.587563 +1201412.959695 1088174.959695 norm=38.820098 +1201472.377993 1085729.377993 norm=39.698866 +1201504.548213 1088665.548213 norm=38.561639 +1201565.876414 1086673.876414 norm=39.382737 +1201611.661107 1086555.661107 norm=40.632499 +1201632.202838 1086033.202838 norm=39.585351 +1201699.250640 1088473.250640 norm=39.736633 +1201757.727184 1086307.727184 norm=39.179076 +1201825.332969 1089442.332969 norm=38.820098 +1201903.997186 1083057.997186 norm=39.102430 +1201901.854011 1087933.854011 norm=38.794329 +1201991.977311 1090013.977311 norm=39.585351 +1202003.600412 1088127.600412 norm=41.024383 +1202037.986771 1086585.986771 norm=39.522146 +1202128.501149 1086402.501149 norm=38.496753 +1202202.074827 1086142.074827 norm=38.639358 +1202253.845244 1092544.845244 norm=38.561639 +1202292.818995 1084885.818995 norm=39.153544 +1202323.266323 1090922.266323 norm=40.074930 +1202376.023381 1086727.023381 norm=38.781439 +1202437.545787 1087090.545787 norm=39.038443 +1202492.566174 1088054.566174 norm=39.281039 +1202553.385051 1089714.385051 norm=39.420807 +1202558.804441 1088839.804441 norm=39.987498 +1202624.834282 1085357.834282 norm=38.974351 +1202720.181085 1087756.181085 norm=38.794329 +1202744.308723 1087339.308723 norm=38.587563 +1202797.675384 1090237.675384 norm=40.422766 +1202832.825927 1090958.825927 norm=39.433488 +1202882.871805 1084743.871805 norm=39.623226 +1202957.642347 1091957.642347 norm=39.012818 +1203015.802435 1086283.802435 norm=38.275318 +1203069.640911 1089555.640911 norm=38.884444 +1203100.932310 1086460.932310 norm=38.716921 +1203155.329679 1088142.329679 norm=39.268308 +1203201.101390 1087460.101390 norm=39.560081 +1203242.522533 1090292.522533 norm=39.899875 +1203285.081924 1086980.081924 norm=39.887341 +1203344.741418 1091362.741418 norm=39.446166 +1203404.575680 1086695.575680 norm=39.268308 +1203447.658078 1085740.658078 norm=39.140772 +1203505.981142 1090422.981142 norm=39.887341 +1203537.333742 1090648.333742 norm=40.137264 +1203599.108612 1089136.108612 norm=39.331921 +1203667.132794 1085495.132794 norm=39.268308 +1203701.430326 1088774.430326 norm=39.786933 +1203746.400037 1092278.400037 norm=39.774364 +1203813.657662 1085706.657662 norm=39.534795 +1203840.142892 1090672.142892 norm=38.845849 +1203944.970419 1086019.970419 norm=39.204592 +1203948.203282 1090202.203282 norm=39.102430 +1204013.984148 1091067.984148 norm=39.446166 +1204055.302849 1088259.302849 norm=40.459857 +1204088.716519 1089936.716519 norm=40.348482 +1204136.368595 1087499.368595 norm=40.211939 +1204202.410772 1092166.410772 norm=39.064050 +1204274.486862 1086628.486862 norm=39.509493 +1204290.611505 1090548.611505 norm=40.012498 +1204364.129745 1090821.129745 norm=39.370039 +1204423.045355 1086824.045355 norm=38.794329 +1204461.819835 1089683.819835 norm=38.910153 +1204536.460508 1088845.460508 norm=39.217343 +1204552.316801 1089663.316801 norm=38.948684 +1204639.035422 1089864.035422 norm=38.858718 +1204653.212794 1087713.212794 norm=39.786933 +1204725.704090 1090195.704090 norm=39.484174 +1204752.759972 1090104.759972 norm=39.774364 +1204823.570279 1088144.570279 norm=38.923001 +1204874.953986 1088068.953986 norm=38.820098 +1204931.680883 1087210.680883 norm=38.144462 +1204989.833369 1090931.833369 norm=38.340579 +1205031.236730 1089726.236730 norm=39.585351 +1205074.333567 1089184.333567 norm=39.648455 +1205115.861946 1092790.861946 norm=39.319207 +1205163.193437 1086961.193437 norm=39.522146 +1205224.261212 1089691.261212 norm=38.781439 +1205287.189150 1087755.189150 norm=39.127995 +1205322.038101 1088425.038101 norm=39.509493 +1205352.089112 1092879.089112 norm=39.585351 +1205432.778800 1088029.778800 norm=38.065733 +1205492.931051 1087016.931051 norm=38.820098 +1205505.991149 1093411.991149 norm=39.102430 +1205581.347748 1091609.347748 norm=39.560081 +1205600.354937 1090301.354937 norm=40.828911 +1205637.800005 1091507.800005 norm=39.204592 +1205750.776260 1090778.776260 norm=38.548671 +1205784.511376 1092002.511376 norm=39.217343 +1205813.401723 1092352.401723 norm=38.935845 +1205872.068109 1088488.068109 norm=39.191836 +1205941.999898 1087940.999898 norm=38.509739 +1205956.406000 1091908.406000 norm=39.344631 +1206002.731691 1092134.731691 norm=39.000000 +1206068.955759 1091441.955759 norm=38.496753 +1206132.441461 1091814.441461 norm=39.242834 +1206145.689183 1092454.689183 norm=40.024992 +1206210.021421 1088367.021421 norm=39.673669 +1206246.708248 1094804.708248 norm=39.522146 +1206323.119761 1090267.119761 norm=38.470768 +1206362.251833 1095062.251833 norm=39.255573 +1206417.634079 1086279.634079 norm=38.496753 +1206480.640432 1091653.640432 norm=39.560081 +1206480.746694 1090596.746694 norm=40.509258 +1206534.120641 1091461.120641 norm=39.899875 +1206611.640976 1095473.640976 norm=38.314488 +1206684.008669 1088509.008669 norm=38.871583 +1206706.352653 1088937.352653 norm=39.025633 +1206742.552194 1092676.552194 norm=39.025633 +1206814.987722 1092190.987722 norm=38.470768 +1206863.296615 1092905.296615 norm=39.179076 +1206879.412250 1090585.412250 norm=39.912404 +1206956.650494 1090971.650494 norm=38.910153 +1207006.793277 1091832.793277 norm=39.736633 +1207040.936544 1093135.936544 norm=39.331921 +1207100.044718 1088915.044718 norm=39.115214 +1207136.107723 1091334.107723 norm=38.548671 +1207221.426626 1092970.426626 norm=38.470768 +1207245.976281 1090990.976281 norm=39.597980 +1207291.319413 1091839.319413 norm=39.319207 +1207330.461487 1092241.461487 norm=38.858718 +1207419.634460 1088644.634460 norm=39.127995 +1207436.582701 1093523.582701 norm=38.794329 +1207483.003353 1092579.003353 norm=39.648455 +1207538.402314 1091883.402314 norm=38.781439 +1207593.886626 1092415.886626 norm=38.678159 +1207643.641576 1086835.641576 norm=39.572718 +1207674.196296 1095102.196296 norm=40.435133 +1207707.813967 1092113.813967 norm=39.812058 +1207783.026478 1090627.026478 norm=39.025633 +1207817.603180 1092325.603180 norm=40.187063 +1207863.748231 1089955.748231 norm=39.949969 +1207896.434150 1092547.434150 norm=39.179076 +1207981.320999 1091232.320999 norm=38.781439 +1208032.974103 1093272.974103 norm=38.781439 +1208076.988381 1092621.988381 norm=39.127995 +1208112.600636 1091297.600636 norm=39.089641 +1208177.188053 1093445.188053 norm=38.078866 +1208259.797689 1092514.797689 norm=38.639358 +1208250.716747 1091125.716747 norm=40.049969 +1208301.737288 1091895.737288 norm=39.306488 +1208371.792480 1094915.792480 norm=38.807216 +1208419.661376 1095127.661376 norm=39.293765 +1208431.884820 1091785.884820 norm=39.899875 +1208511.815110 1089093.815110 norm=38.948684 +1208553.062207 1093536.062207 norm=39.623226 +1208603.236188 1094233.236188 norm=39.522146 +1208638.987795 1093979.987795 norm=39.446166 +1208686.592173 1092224.592173 norm=39.635842 +1208728.206401 1090566.206401 norm=39.786933 +1208799.405820 1090615.405820 norm=40.024992 +1208827.493703 1093333.493703 norm=39.522146 +1208891.387616 1091781.387616 norm=38.948684 +1208961.216722 1094615.216722 norm=38.768544 +1208973.095888 1094145.095888 norm=39.749214 +1209046.473373 1093577.473373 norm=38.236109 +1209109.767954 1091894.767954 norm=38.483763 +1209141.091587 1090016.091587 norm=39.560081 +1209169.029226 1091949.029226 norm=39.242834 +1209227.270979 1094516.270979 norm=38.691084 +1209301.104749 1092733.104749 norm=39.051248 +1209342.952255 1093547.952255 norm=39.635842 +1209345.645871 1089865.645871 norm=39.962482 +1209410.330054 1093458.330054 norm=39.585351 +1209453.654907 1096313.654907 norm=39.560081 +1209517.290718 1094600.290718 norm=38.794329 +1209573.772761 1093996.772761 norm=38.897301 +1209622.363979 1091037.363979 norm=39.471509 +1209659.462079 1093270.462079 norm=39.127995 +1209727.418825 1093794.418825 norm=38.039453 +1209773.270471 1094365.270471 norm=39.610605 +1209794.623411 1092685.623411 norm=39.698866 +1209853.220361 1094000.220361 norm=39.774364 +1209884.909624 1093343.909624 norm=39.496835 +1209960.603808 1093990.603808 norm=38.961519 +1210002.392017 1092660.392017 norm=39.382737 +1210042.485309 1094431.485309 norm=39.924930 +1210073.164896 1092805.164896 norm=39.862263 +1210144.404588 1093365.404588 norm=39.496835 +1210175.913866 1093574.913866 norm=39.230090 +1210254.925619 1095307.925619 norm=39.862263 +1210259.914216 1093125.914216 norm=39.433488 +1210328.987688 1095113.987688 norm=39.331921 +1210388.143265 1092125.143265 norm=39.102430 +1210421.544898 1097226.544898 norm=39.293765 +1210471.153492 1092579.153492 norm=38.522721 +1210548.000538 1091276.000538 norm=39.686270 +1210545.392201 1096603.392201 norm=39.433488 +1210622.321828 1093758.321828 norm=38.961519 +1210676.457139 1092877.457139 norm=38.483763 +1210731.335916 1094098.335916 norm=38.755645 +1210760.438593 1094611.438593 norm=39.153544 +1210799.002279 1096031.002279 norm=40.422766 +1210828.455897 1094257.455897 norm=40.000000 +1210891.505515 1090270.505515 norm=39.038443 +1210965.495639 1095894.495639 norm=38.678159 +1211003.681036 1094341.681036 norm=39.585351 +1211048.433055 1095465.433055 norm=38.884444 +1211098.406837 1089044.406837 norm=38.742741 +1211149.218131 1094732.218131 norm=39.025633 +1211194.803705 1096624.803705 norm=39.204592 +1211233.708827 1096423.708827 norm=38.807216 +1211294.060122 1090108.060122 norm=39.522146 +1211332.586741 1096432.586741 norm=38.755645 +1211390.163614 1094386.163614 norm=38.807216 +1211423.233724 1096248.233724 norm=39.179076 +1211457.598701 1094123.598701 norm=39.711459 +1211515.821918 1092699.821918 norm=38.845849 +1211570.057299 1096912.057299 norm=38.858718 +1211618.566999 1094917.566999 norm=39.293765 +1211662.923614 1092634.923614 norm=39.179076 +1211698.003859 1093376.003859 norm=39.736633 +1211753.325602 1095458.325602 norm=39.344631 +1211789.370488 1101168.370488 norm=39.849718 +1211838.192442 1092379.192442 norm=39.242834 +1211882.854760 1092459.854760 norm=39.509493 +1211944.180521 1091083.180521 norm=39.025633 +1212016.087285 1094850.087285 norm=38.052595 +1212053.735848 1097626.735848 norm=39.331921 +1212077.949334 1094593.949334 norm=39.635842 +1212112.427688 1095242.427688 norm=40.099875 +1212174.292705 1097355.292705 norm=39.686270 +1212213.212923 1094219.212923 norm=39.824616 +1212260.265760 1094216.265760 norm=39.509493 +1212310.812882 1094548.812882 norm=38.483763 +1212382.169807 1097781.169807 norm=38.665230 +1212409.183555 1093835.183555 norm=39.420807 +1212445.246860 1094868.246860 norm=39.382737 +1212514.164642 1091625.164642 norm=38.691084 +1212573.305057 1094958.305057 norm=38.275318 +1212609.775075 1096676.775075 norm=38.535698 +1212659.418979 1098071.418979 norm=38.961519 +1212695.991711 1096858.991711 norm=39.547440 +1212740.420941 1092850.420941 norm=38.910153 +1212782.079314 1093439.079314 norm=39.673669 +1212814.488730 1097628.488730 norm=40.360872 +1212860.596439 1096277.596439 norm=39.204592 +1212941.355934 1094269.355934 norm=38.704005 +1212982.730343 1096612.730343 norm=39.912404 +1212987.053969 1095409.053969 norm=39.458839 +1213058.757715 1096317.757715 norm=39.102430 +1213112.737869 1095117.737869 norm=39.051248 +1213171.114861 1094589.114861 norm=39.076847 +1213196.444635 1098949.444635 norm=39.849718 +1213231.153138 1090510.153138 norm=38.948684 +1213307.500813 1095412.500813 norm=39.293765 +1213343.260447 1097203.260447 norm=39.344631 +1213383.501101 1094552.501101 norm=38.897301 +1213439.006880 1092554.006880 norm=39.179076 +1213494.938317 1095805.938317 norm=39.230090 +1213509.732653 1097724.732653 norm=39.837169 +1213560.384793 1096597.384793 norm=40.037482 +1213596.710943 1095472.710943 norm=39.204592 +1213672.547516 1094828.547516 norm=39.786933 +1213693.154608 1093921.154608 norm=39.281039 +1213749.352947 1098642.352947 norm=40.049969 +1213797.144509 1096798.144509 norm=39.000000 +1213861.554641 1098223.554641 norm=40.187063 +1213861.873067 1092176.873067 norm=39.849718 +1213944.309837 1094964.309837 norm=38.600518 +1213999.328027 1098582.328027 norm=39.446166 +1214050.472314 1094298.472314 norm=38.626416 +1214092.836789 1096409.836789 norm=40.099875 +1214112.280891 1099155.280891 norm=39.949969 +1214157.849691 1096120.849691 norm=39.799497 +1214203.943347 1094664.943347 norm=39.496835 +1214260.213140 1097153.213140 norm=39.153544 +1214338.485576 1096733.485576 norm=38.935845 +1214350.110886 1096502.110886 norm=38.923001 +1214439.692975 1096385.692975 norm=38.535698 +1214438.119032 1092957.119032 norm=39.293765 +1214491.985578 1098146.985578 norm=39.255573 +1214545.466023 1097237.466023 norm=38.470768 +1214616.921931 1097359.921931 norm=39.179076 +1214624.624606 1099911.624605 norm=39.987498 +1214645.276604 1099953.276604 norm=40.963398 +1214688.769698 1097895.769698 norm=39.724048 +1214770.478670 1096942.478670 norm=38.884444 +1214835.554883 1097429.554883 norm=38.522721 +1214883.926694 1098285.926694 norm=38.039453 +1214931.336075 1097061.336075 norm=39.357337 +1214928.723303 1102196.723303 norm=39.331921 +1214994.287712 1098310.287712 norm=39.115214 +1215034.902626 1096618.902626 norm=39.242834 +1215093.112481 1099980.112481 norm=38.858718 +1215132.522035 1097750.522035 norm=38.781439 +1215168.467906 1095551.467906 norm=39.572718 +1215222.462898 1102213.462898 norm=39.534795 +1215252.884692 1097390.884692 norm=39.635842 +1215297.933581 1101081.933581 norm=38.600518 +1215375.778777 1096738.778777 norm=38.652296 +1215401.992729 1100581.992729 norm=39.382737 +1215432.287978 1099310.287978 norm=39.962482 +1215465.784017 1102316.784017 norm=39.458839 +1215546.143859 1099613.143859 norm=38.729833 +1215589.909424 1096390.909424 norm=38.716921 +1215627.858288 1099159.858288 norm=39.357337 +1215659.148407 1101836.148407 norm=40.435133 +1215693.180189 1096126.180189 norm=39.076847 +1215744.195873 1099845.195873 norm=39.433488 +1215805.201849 1097955.201849 norm=39.711459 +1215845.852870 1099455.852870 norm=39.357337 +1215892.906809 1102416.906809 norm=39.025633 +1215942.280996 1096183.280996 norm=39.331921 +1215968.708080 1101021.708080 norm=39.395431 +1216021.824747 1096743.824747 norm=38.574603 +1216085.695027 1099993.695027 norm=39.446166 +1216094.704036 1103374.704036 norm=39.509493 +1216151.209095 1097600.209095 norm=39.711459 +1216185.429903 1100911.429903 norm=40.087405 +1216226.691492 1099913.691492 norm=39.912404 +1216286.034454 1098710.034454 norm=39.686270 +1216325.971345 1101879.971345 norm=40.074930 +1216367.102931 1098316.102931 norm=39.357337 +1216417.311473 1102251.311473 norm=38.987177 +1216491.785116 1095811.785116 norm=38.026307 +1216545.278439 1098629.278439 norm=38.820098 +1216565.515674 1102145.515674 norm=38.820098 +1216622.930101 1101416.930101 norm=39.000000 +1216648.762058 1100382.762058 norm=39.433488 +1216670.504186 1098855.504186 norm=40.012498 +1216734.109034 1096101.109034 norm=38.600518 +1216795.389194 1102913.389194 norm=39.862263 +1216807.694484 1098423.694484 norm=38.948684 +1216897.495904 1099727.495904 norm=38.961519 +1216897.162234 1100679.162234 norm=39.522146 +1216945.706584 1104880.706584 norm=40.311289 +1217000.073878 1097011.073878 norm=38.858718 +1217045.614861 1099967.614861 norm=39.962482 +1217066.045863 1098858.045863 norm=39.774364 +1217136.199370 1102048.199370 norm=39.038443 +1217182.434781 1098067.434781 norm=39.736633 +1217230.830592 1101143.830592 norm=38.768544 +1217253.688066 1099397.688066 norm=39.293765 +1217313.392131 1102497.392131 norm=39.949969 +1217348.623019 1096904.623019 norm=40.087405 +1217375.177144 1099299.177144 norm=39.496835 +1217458.016163 1100197.016163 norm=38.704005 +1217492.794170 1098332.794170 norm=38.897301 +1217537.866649 1103103.866649 norm=39.089641 +1217575.389312 1098552.389312 norm=39.572718 +1217635.362876 1100785.362876 norm=39.357337 +1217658.786227 1098527.786227 norm=39.025633 +1217714.443154 1101467.443154 norm=39.597980 +1217754.128824 1100524.128824 norm=39.484174 +1217801.233265 1102594.233265 norm=39.217343 +1217828.559874 1099372.559874 norm=39.924930 +1217875.712504 1101109.712504 norm=39.242834 +1217928.024113 1101092.024113 norm=40.236799 +1217955.541613 1101886.541613 norm=40.000000 +1218006.658808 1101208.658808 norm=38.716921 +1218073.447011 1100096.447011 norm=38.626416 +1218110.234025 1101837.234025 norm=38.961519 +1218158.135476 1098564.135476 norm=39.293765 +1218186.171540 1103501.171540 norm=39.102430 +1218262.428860 1100955.428860 norm=38.574603 +1218296.336710 1098528.336710 norm=38.755645 +1218333.980569 1100287.980569 norm=39.899875 +1218353.941022 1098746.941022 norm=40.062451 +1218414.131525 1102415.131525 norm=38.729833 +1218481.800182 1099304.800182 norm=39.255573 +1218502.171980 1101563.171980 norm=39.724048 +1218511.780819 1102211.780819 norm=39.076847 +1218611.164978 1102033.164978 norm=39.127995 +1218612.846916 1101568.846916 norm=39.191836 +1218693.511581 1099353.511581 norm=38.691084 +1218738.909411 1101404.909411 norm=38.118237 +1218777.082108 1099232.082108 norm=40.037482 +1218800.092433 1102646.092433 norm=40.657103 +1218814.116532 1099426.116532 norm=39.255573 +1218916.093223 1100201.093223 norm=39.648455 +1218939.357627 1100167.357627 norm=39.319207 +1218981.880925 1099823.880925 norm=39.597980 +1219026.000535 1100928.000535 norm=39.824616 +1219070.447685 1102806.447685 norm=39.749214 +1219103.082484 1099127.082484 norm=40.049969 +1219133.003744 1098941.003744 norm=39.837169 +1219198.645613 1103512.645613 norm=39.799497 +1219253.402608 1102449.402608 norm=39.000000 +1219302.337997 1102523.337997 norm=39.433488 +1219324.916741 1101662.916741 norm=39.000000 +1219385.610297 1099140.610297 norm=40.484565 +1219382.224583 1103836.224583 norm=39.837169 +1219461.862812 1103358.862812 norm=38.832976 +1219528.347944 1104357.347944 norm=39.306488 +1219526.804390 1098821.804390 norm=39.887341 +1219602.732941 1104919.732941 norm=39.089641 +1219633.096514 1100750.096514 norm=39.874804 +1219677.166840 1101195.166840 norm=39.408121 +1219728.280561 1102532.280561 norm=39.064050 +1219762.666238 1103034.666238 norm=39.012818 +1219808.391076 1103830.391076 norm=39.242834 +1219847.079176 1102136.079176 norm=39.597980 +1219895.593929 1102037.593929 norm=39.724048 +1219934.191584 1106147.191584 norm=39.038443 +1219996.697502 1099784.697502 norm=38.820098 +1220024.127425 1102645.127425 norm=40.037482 +1220055.432087 1099442.432087 norm=39.937451 +1220102.122910 1104096.122910 norm=38.987177 +1220166.689623 1102445.689623 norm=38.587563 +1220189.259784 1105090.259784 norm=40.012498 +1220224.869574 1101908.869574 norm=39.837169 +1220275.572336 1102843.572336 norm=39.089641 +1220326.228553 1100773.228553 norm=39.051248 +1220379.572817 1103288.572817 norm=39.115214 +1220407.986705 1100775.986705 norm=39.686270 +1220455.341111 1103318.341111 norm=39.446166 +1220498.384563 1105071.384563 norm=39.648455 +1220535.299597 1104425.299597 norm=39.153544 +1220592.866798 1103931.866798 norm=38.496753 +1220633.228756 1101971.228756 norm=39.025633 +1220680.113022 1101432.113022 norm=39.496835 +1220710.105232 1104170.105232 norm=39.204592 +1220770.983856 1101210.983856 norm=39.102430 +1220797.465776 1102969.465776 norm=39.420807 +1220827.743115 1104047.743115 norm=39.038443 +1220889.675153 1106524.675153 norm=38.340579 +1220940.460805 1100739.460805 norm=39.293765 +1220954.745860 1101169.745860 norm=40.000000 +1220999.969769 1103643.969769 norm=40.049969 +1221030.055548 1105999.055548 norm=40.174619 +1221087.805551 1100216.805551 norm=39.038443 +1221143.514161 1101847.514161 norm=39.395431 +1221174.418993 1102134.418993 norm=38.742741 +1221241.564938 1104924.564938 norm=38.366652 +1221281.975709 1103036.975709 norm=38.327536 +1221342.718619 1103565.718619 norm=38.858718 +1221350.496901 1102767.496901 norm=39.382737 +1221391.193662 1105228.193662 norm=40.112342 +1221424.844089 1104132.844089 norm=39.140772 +1221518.021385 1103791.021385 norm=38.118237 +1221535.284449 1102689.284449 norm=39.076847 +1221563.015625 1100020.015625 norm=39.166312 +1221640.523984 1106003.523984 norm=38.249183 +1221651.902771 1105914.902771 norm=39.711459 +1221691.045532 1100074.045532 norm=39.064050 +1221737.733992 1105130.733992 norm=38.652296 +1221791.533710 1101840.533710 norm=38.457769 +1221807.614428 1102584.614428 norm=40.274061 +1221846.106998 1105643.106998 norm=39.370039 +1221910.963235 1104773.963235 norm=39.166312 +1221950.418129 1106148.418129 norm=39.319207 +1222003.455588 1102255.455588 norm=39.204592 +1222044.118774 1103681.118774 norm=38.665230 +1222096.397839 1104366.397839 norm=38.794329 +1222117.543727 1103003.543727 norm=39.217343 +1222169.540411 1102917.540411 norm=39.000000 +1222200.320001 1107400.320001 norm=39.987498 +1222235.798830 1103933.798830 norm=39.673669 +1222269.464239 1103114.464239 norm=39.560081 +1222335.425280 1104863.425280 norm=38.807216 +1222379.055205 1104608.055205 norm=39.547440 +1222414.938142 1101788.938142 norm=39.446166 +1222443.324161 1099153.324161 norm=39.711459 +1222480.851252 1106804.851252 norm=39.862263 +1222536.232482 1103943.232482 norm=39.204592 +1222615.283829 1106300.283829 norm=38.871583 +1222627.469337 1099748.469337 norm=39.408121 +1222695.876170 1103870.876170 norm=38.496753 +1222722.772413 1104868.772413 norm=39.433488 +1222728.303618 1104927.303618 norm=39.230090 +1222795.561066 1105584.561066 norm=39.484174 +1222857.309416 1103295.309416 norm=39.344631 +1222872.655267 1103198.655267 norm=39.673669 +1222918.445178 1106981.445178 norm=38.897301 +1222987.786197 1103649.786197 norm=38.678159 +1223022.912553 1105273.912553 norm=38.587563 +1223084.424145 1103199.424145 norm=38.118237 +1223116.011154 1106668.011154 norm=39.610605 +1223105.232547 1102581.232547 norm=40.546270 +1223157.141217 1106682.141217 norm=39.648455 +1223218.533436 1103004.533436 norm=39.635842 +1223261.630292 1104479.630292 norm=39.306488 +1223304.205661 1100943.205661 norm=38.716921 +1223361.783428 1103427.783428 norm=39.000000 +1223396.543072 1103470.543072 norm=39.319207 +1223440.141950 1108112.141950 norm=38.144462 +1223505.220562 1101815.220562 norm=39.140772 +1223527.878389 1104320.878389 norm=39.509493 +1223552.861702 1104041.861702 norm=39.534795 +1223604.134525 1104827.134525 norm=40.049969 +1223621.644490 1103918.644490 norm=39.255573 +1223701.772042 1104801.772042 norm=39.038443 +1223716.164914 1104309.164914 norm=39.585351 +1223770.806967 1106495.806967 norm=39.799497 +1223821.292026 1104375.292026 norm=39.774364 +1223852.469783 1102967.469783 norm=39.433488 +1223885.852477 1106435.852477 norm=39.661064 +1223930.391820 1105171.391820 norm=39.281039 +1223981.263669 1108205.263669 norm=38.613469 +1224043.203875 1102682.203875 norm=39.089641 +1224036.183068 1104319.183068 norm=39.230090 +1224128.975615 1103169.975615 norm=38.871583 +1224141.556026 1106390.556026 norm=40.174619 +1224193.354260 1105089.354260 norm=39.446166 +1224222.386452 1104739.386452 norm=38.470768 +1224286.256933 1105098.256933 norm=39.025633 +1224324.634535 1105572.634535 norm=38.444766 +1224381.005020 1105242.005020 norm=39.000000 +1224388.602462 1105178.602462 norm=40.385641 +1224435.729801 1104109.729801 norm=38.858718 +1224490.767300 1105151.767300 norm=39.293765 +1224523.976236 1103849.976236 norm=39.661064 +1224566.857048 1106630.857048 norm=39.673669 +1224607.871879 1104545.871879 norm=38.987177 +1224657.079029 1105734.079029 norm=39.912404 +1224687.282306 1102130.282306 norm=37.960506 +1224784.791422 1104819.791422 norm=38.340579 +1224774.242576 1106847.242576 norm=39.572718 +1224829.650591 1106745.650591 norm=39.484174 +1224860.714233 1105476.714233 norm=38.613469 +1224943.528248 1104313.528248 norm=38.587563 +1224938.749654 1106390.749654 norm=39.458839 +1225007.028112 1106954.028112 norm=39.089641 +1225028.230498 1102921.230498 norm=39.408121 +1225087.766820 1105592.766820 norm=39.025633 +1225106.853429 1108135.853429 norm=39.661064 +1225151.430338 1102989.430338 norm=39.281039 +1225201.551645 1107283.551645 norm=39.204592 +1225227.674466 1103159.674466 norm=38.729833 +1225294.741417 1109898.741417 norm=39.837169 +1225302.059335 1104408.059335 norm=39.774364 +1225363.958542 1102805.958542 norm=39.102430 +1225412.383685 1102773.383685 norm=39.496835 +1225452.634446 1108288.634446 norm=39.899875 +1225478.513906 1105702.513906 norm=38.974351 +1225533.770554 1109187.770554 norm=40.037482 +1225555.661484 1105065.661484 norm=39.140772 +1225635.531345 1102134.531345 norm=38.742741 +1225655.000214 1105859.000214 norm=39.534795 +1225685.308456 1108324.308456 norm=39.496835 +1225747.457037 1107616.457037 norm=39.370039 +1225776.337966 1102402.337966 norm=39.560081 +1225821.458196 1105544.458196 norm=38.987177 +1225866.358114 1108058.358114 norm=39.937451 +1225896.580821 1104308.580821 norm=39.749214 +1225940.641813 1105910.641813 norm=39.395431 +1225994.489220 1106511.489220 norm=39.293765 +1226027.239197 1104981.239197 norm=38.236109 +1226106.800053 1107244.800053 norm=38.910153 +1226112.872559 1106055.872559 norm=39.572718 +1226166.367471 1104868.367471 norm=38.820098 +1226204.590914 1106769.590914 norm=38.600518 +1226250.347039 1102792.347039 norm=39.076847 +1226267.332199 1109023.332199 norm=40.620192 +1226293.899478 1105039.899478 norm=39.522146 +1226368.131488 1107405.131488 norm=38.340579 +1226412.980216 1102495.980216 norm=39.153544 +1226461.199609 1106260.199609 norm=39.089641 +1226488.082072 1103901.082072 norm=40.112342 +1226511.136939 1109640.136939 norm=40.174619 +1226552.230866 1104471.230866 norm=39.547440 +1226605.550974 1109768.550974 norm=39.281039 +1226661.062478 1100589.062478 norm=39.230090 +1226700.540025 1110395.540025 norm=39.357337 +1226730.490943 1103540.490943 norm=39.509493 +1226791.801007 1110262.801007 norm=38.910153 +1226808.226849 1104905.226849 norm=39.433488 +1226855.367239 1106269.367239 norm=38.781439 +1226920.236569 1105832.236569 norm=38.600518 +1226960.994237 1110030.994237 norm=38.275318 +1227003.465257 1102457.465257 norm=38.935845 +1227016.498531 1109961.498531 norm=39.887341 +1227064.296025 1104204.296025 norm=39.749214 +1227093.851443 1104045.851443 norm=39.357337 +1227134.055773 1106977.055773 norm=39.849718 +1227185.851916 1108672.851916 norm=39.127995 +1227248.471854 1103808.471854 norm=39.153544 +1227249.629754 1110921.629754 norm=39.874804 +1227324.977005 1105383.977005 norm=38.948684 +1227370.164037 1103894.164037 norm=39.127995 +1227393.702139 1101313.702139 norm=39.408121 +1227447.584451 1106986.584451 norm=39.458839 +1227469.167214 1108251.167214 norm=40.224371 +1227513.828546 1107511.828546 norm=39.534795 +1227548.250895 1105477.250895 norm=39.395431 +1227605.920933 1108223.920933 norm=39.051248 +1227666.473216 1105009.473216 norm=39.038443 +1227679.355083 1107688.355083 norm=40.706265 +1227687.791862 1103851.791862 norm=39.749214 +1227770.185155 1109866.185155 norm=38.183766 +1227852.001101 1108664.001101 norm=38.470768 +1227864.385327 1105621.385327 norm=38.832976 +1227902.790710 1108286.790710 norm=40.074930 +1227916.283838 1102961.283838 norm=40.124805 +1227953.559099 1106412.559099 norm=39.736633 +1228017.872553 1108129.872553 norm=39.025633 +1228067.011959 1108522.011959 norm=39.395431 +1228105.749139 1103718.749139 norm=38.665230 +1228172.251763 1109748.251763 norm=39.140772 +1228163.030594 1106464.030594 norm=39.962482 +1228216.568760 1108182.568760 norm=39.433488 +1228266.094523 1104475.094523 norm=38.884444 +1228311.931658 1107721.931658 norm=39.281039 +1228352.718070 1109847.718070 norm=39.153544 +1228376.511270 1108631.511270 norm=39.887341 +1228435.176973 1107439.176973 norm=38.974351 +1228444.141801 1107081.141801 norm=40.398020 +1228488.160037 1109130.160037 norm=39.534795 +1228565.681603 1108041.681603 norm=38.858718 +1228584.371708 1106265.371708 norm=38.418745 +1228650.577707 1106555.577707 norm=39.344631 +1228670.937976 1109815.937976 norm=39.344631 +1228710.316351 1108634.316351 norm=39.191836 +1228761.288450 1107038.288450 norm=39.370039 +1228769.186307 1106123.186307 norm=38.652296 +1228865.878664 1105976.878664 norm=38.405729 +1228880.628448 1113232.628448 norm=39.281039 +1228913.102508 1105997.102508 norm=40.360872 +1228911.913663 1107843.913663 norm=40.975602 +1228984.529332 1105740.529332 norm=39.344631 +1229027.843072 1108743.843072 norm=40.199502 +1229051.612077 1107968.612077 norm=39.949969 +1229111.003279 1107914.003279 norm=38.935845 +1229169.425886 1109452.425886 norm=39.000000 +1229177.733474 1111093.733474 norm=39.331921 +1229251.494360 1106507.494360 norm=39.089641 +1229261.779273 1107613.779273 norm=39.076847 +1229350.577188 1106022.577188 norm=39.115214 +1229329.815093 1108609.815093 norm=39.736633 +1229417.590046 1108468.590046 norm=39.089641 +1229417.829710 1110813.829710 norm=40.024992 +1229452.030009 1107930.030009 norm=40.274061 +1229508.426287 1107698.426287 norm=39.433488 +1229558.404991 1106953.404991 norm=39.724048 +1229580.880200 1110150.880200 norm=39.774364 +1229644.294548 1107687.294548 norm=39.534795 +1229668.910525 1107679.910525 norm=39.025633 +1229738.193812 1111161.193812 norm=38.535698 +1229772.587640 1104896.587640 norm=38.483763 +1229808.316917 1109062.316917 norm=38.691084 +1229858.715195 1103944.715195 norm=39.698866 +1229846.103338 1111381.103338 norm=39.924930 +1229923.648797 1109793.648797 norm=39.862263 +1229938.322342 1108968.322342 norm=39.635842 +1229993.761673 1111423.761673 norm=39.534795 +1230041.645622 1105766.645622 norm=38.794329 +1230087.716315 1106493.716315 norm=38.561639 +1230132.025517 1109827.025517 norm=39.012818 +1230185.953484 1108307.953484 norm=38.379682 +1230212.564051 1108283.564051 norm=39.471509 +1230246.991660 1111072.991660 norm=38.832976 +1230299.294390 1105382.294390 norm=38.392708 +1230332.901125 1109426.901125 norm=39.166312 +1230369.266361 1105386.266361 norm=40.149720 +1230378.306689 1112272.306689 norm=40.012498 +1230417.626510 1111450.626510 norm=39.899875 +1230484.736887 1109148.736887 norm=39.331921 +1230523.103398 1109167.103398 norm=39.051248 +1230579.287173 1107417.287173 norm=39.204592 +1230596.576769 1110148.576769 norm=39.000000 +1230655.910151 1107759.910151 norm=38.509739 +1230692.559391 1107254.559391 norm=38.910153 +1230709.910989 1106753.910989 norm=39.408121 +1230776.202028 1111240.202028 norm=38.652296 +1230819.472509 1108838.472509 norm=38.935845 +1230826.643831 1112973.643831 norm=40.681691 +1230855.122739 1108199.122739 norm=39.661064 +1230915.135961 1111839.135961 norm=38.923001 +1230972.107933 1109071.107933 norm=39.179076 +1230995.369717 1108192.369717 norm=39.585351 +1231055.160921 1107503.160921 norm=38.678159 +1231081.267621 1111936.267621 norm=38.935845 +1231132.881887 1108650.881887 norm=38.131352 +1231194.670984 1108651.670984 norm=39.025633 +1231178.106769 1107949.106769 norm=39.711459 +1231237.045174 1110812.045174 norm=39.140772 +1231281.385158 1108678.385158 norm=39.025633 +1231337.791884 1109366.791884 norm=38.961519 +1231357.452522 1109634.452522 norm=38.961519 +1231409.434232 1107348.434232 norm=38.755645 +1231436.544774 1111949.544774 norm=38.974351 +1231496.564702 1107711.564702 norm=38.884444 +1231527.732425 1110471.732425 norm=39.064050 +1231559.350421 1109609.350421 norm=39.887341 +1231595.630334 1108893.630334 norm=38.742741 +1231651.506111 1109081.506111 norm=38.832976 +1231678.717106 1109134.717106 norm=39.736633 +1231718.478141 1110240.478141 norm=39.446166 +1231743.359955 1109044.359955 norm=39.433488 +1231802.119504 1108830.119504 norm=39.140772 +1231848.295545 1111191.295545 norm=39.127995 +1231890.555558 1111003.555558 norm=39.937451 +1231899.262036 1108845.262036 norm=40.410395 +1231945.756606 1109443.756606 norm=38.871583 +1232020.297908 1109547.297908 norm=38.431758 +1232043.300236 1109897.300236 norm=38.884444 +1232073.513778 1114035.513778 norm=38.600518 +1232122.418319 1109138.418319 norm=39.344631 +1232153.966506 1111896.966506 norm=38.548671 +1232213.795947 1107160.795947 norm=39.191836 +1232226.223358 1112179.223358 norm=39.433488 +1232260.398188 1110341.398188 norm=39.899875 +1232293.095960 1109145.095960 norm=39.686270 +1232333.268920 1107942.268920 norm=40.236799 +1232382.142537 1113617.142537 norm=39.547440 +1232437.929412 1106859.929412 norm=39.255573 +1232461.109829 1113894.109829 norm=39.597980 +1232505.436980 1108831.436980 norm=39.509493 +1232535.353070 1112281.353070 norm=39.547440 +1232573.043168 1110799.043168 norm=39.204592 +1232625.545438 1111859.545438 norm=39.331921 +1232676.424241 1107216.424241 norm=38.935845 +1232695.413394 1110013.413394 norm=40.112342 +1232729.218460 1110615.218460 norm=39.179076 +1232796.961383 1112425.961383 norm=38.457769 +1232839.465940 1108507.465940 norm=39.306488 +1232844.651209 1111021.651209 norm=40.311289 +1232896.210356 1112653.210356 norm=38.144462 +1232969.505297 1105999.505297 norm=39.255573 +1232972.858488 1113234.858488 norm=39.560081 +1233033.007544 1113582.007544 norm=38.755645 +1233047.467994 1108796.467994 norm=38.884444 +1233126.186535 1109783.186535 norm=38.755645 +1233128.442576 1108390.442576 norm=40.236799 +1233164.145617 1114110.145617 norm=39.522146 +1233203.272274 1113685.272274 norm=39.736633 +1233236.595629 1111637.595629 norm=39.585351 +1233299.660656 1114434.660656 norm=38.275318 +1233352.199378 1111796.199378 norm=38.535698 +1233369.742728 1111901.742728 norm=39.724048 +1233424.358667 1106355.358667 norm=39.051248 +1233464.392777 1112013.392777 norm=38.091994 +1233510.440115 1107781.440115 norm=38.418745 +1233541.809684 1115624.809684 norm=38.613469 +1233582.083157 1110380.083157 norm=38.587563 +1233595.084276 1112424.084276 norm=39.724048 +1233627.799903 1111357.799903 norm=38.535698 +1233704.572951 1112162.572951 norm=39.051248 +1233712.704906 1111185.704906 norm=39.293765 +1233763.376435 1112049.376435 norm=39.025633 +1233778.942358 1115136.942358 norm=39.824616 +1233830.009495 1108974.009495 norm=39.230090 +1233890.605161 1113589.605161 norm=38.587563 +1233924.502052 1109038.502052 norm=40.162171 +1233922.608008 1116320.608008 norm=39.344631 +1234005.278297 1110450.278297 norm=39.076847 +1234022.699699 1115470.699699 norm=38.742741 +1234099.125611 1110637.125611 norm=38.470768 +1234106.054402 1111281.054402 norm=39.153544 +1234149.980601 1112182.980601 norm=39.319207 +1234197.516330 1110496.516330 norm=39.370039 +1234215.532040 1109006.532040 norm=39.560081 +1234254.918263 1113681.918263 norm=39.191836 +1234310.652668 1111054.652668 norm=39.115214 +1234346.515005 1114416.515005 norm=38.353618 +1234375.290084 1110961.290084 norm=38.987177 +1234411.015556 1113736.015556 norm=38.444766 +1234481.663492 1111332.663492 norm=38.639358 +1234488.180044 1109614.180044 norm=39.534795 +1234531.023529 1114912.023529 norm=39.395431 +1234568.295959 1111743.295959 norm=38.832976 +1234622.503362 1113361.503362 norm=39.012818 +1234626.023269 1109462.023269 norm=40.249224 +1234672.812372 1113528.812372 norm=39.127995 +1234716.973711 1112562.973711 norm=39.038443 +1234777.457471 1115978.457471 norm=38.742741 +1234805.672345 1111954.672345 norm=38.366652 +1234864.215517 1111549.215517 norm=38.923001 +1234896.557490 1114199.557490 norm=38.209946 +1234923.972970 1112896.972970 norm=39.076847 +1234964.517777 1111835.517777 norm=38.858718 +1234995.076530 1112135.076530 norm=39.115214 +1235014.897238 1118110.897238 norm=39.610605 +1235068.036049 1109888.036049 norm=38.820098 +1235115.720869 1111828.720869 norm=39.140772 +1235138.359094 1111625.359094 norm=39.433488 +1235166.713864 1115001.713864 norm=39.076847 +1235229.097843 1113060.097843 norm=38.509739 +1235291.659487 1109871.659487 norm=38.000000 +1235300.226206 1111679.226206 norm=39.255573 +1235319.527411 1116058.527411 norm=39.849718 +1235372.130910 1111878.130910 norm=38.379682 +1235425.384355 1115774.384355 norm=38.379682 +1235451.857650 1112636.857650 norm=39.370039 +1235483.123134 1113049.123134 norm=39.179076 +1235534.358621 1113017.358621 norm=38.444766 +1235575.177691 1114574.177691 norm=38.768544 +1235609.048193 1111780.048193 norm=38.013156 +1235666.074828 1115370.074828 norm=38.935845 +1235677.528815 1112571.528815 norm=38.820098 +1235724.902989 1113392.902989 norm=39.987498 +1235711.923329 1112309.923329 norm=40.570926 +1235770.738844 1113770.738844 norm=39.370039 +1235819.333315 1114080.333315 norm=38.691084 +1235886.346806 1112113.346806 norm=38.340579 +1235912.361496 1112891.361496 norm=38.910153 +1235926.707119 1113934.707119 norm=39.242834 +1235979.895367 1114286.895367 norm=39.610605 +1235998.094040 1112618.094040 norm=39.293765 +1236067.769864 1111809.769864 norm=38.209946 +1236109.645153 1114746.645153 norm=38.483763 +1236140.093604 1110740.093604 norm=38.716921 +1236181.280889 1111746.280889 norm=38.910153 +1236204.588325 1113682.588325 norm=39.025633 +1236247.260130 1112976.260130 norm=37.841776 +1236305.266063 1118016.266063 norm=39.025633 +1236316.638448 1113849.638448 norm=38.522721 +1236382.204132 1116130.204132 norm=38.379682 +1236405.280634 1110411.280634 norm=38.871583 +1236445.796575 1112466.796575 norm=39.648455 +1236463.919574 1114175.919574 norm=39.115214 +1236494.123426 1113728.123426 norm=40.000000 +1236497.367425 1115238.367425 norm=39.924930 +1236588.633627 1110547.633627 norm=39.623226 +1236611.315848 1117160.315848 norm=39.408121 +1236658.504209 1113790.504209 norm=39.102430 +1236694.835357 1112509.835357 norm=38.522721 +1236755.630167 1116248.630167 norm=38.639358 +1236777.373400 1113692.373400 norm=38.845849 +1236811.709333 1110687.709333 norm=39.076847 +1236841.116849 1116957.116849 norm=39.038443 +1236891.947448 1112144.947448 norm=39.230090 +1236917.645219 1111589.645219 norm=39.025633 +1236958.488347 1114298.488347 norm=39.673669 +1236993.971229 1116078.971229 norm=39.089641 +1237046.997014 1109714.997014 norm=38.820098 +1237081.265327 1116481.265327 norm=38.794329 +1237120.227390 1115430.227390 norm=38.807216 +1237178.424202 1109459.424202 norm=38.223030 +1237186.225811 1114984.225811 norm=38.366652 +1237241.749777 1118256.749777 norm=38.379682 +1237266.646920 1113354.646920 norm=39.281039 +1237286.182721 1114172.182721 norm=38.961519 +1237356.955626 1115823.955626 norm=38.470768 +1237385.342075 1112816.342075 norm=39.166312 +1237415.771327 1113371.771327 norm=39.786933 +1237442.426757 1115419.426757 norm=38.288379 +1237507.339365 1113827.339365 norm=38.781439 +1237520.630337 1111308.630337 norm=38.961519 +1237552.549564 1115259.549564 norm=39.509493 +1237597.154623 1112081.154623 norm=38.923001 +1237622.154388 1118708.154388 norm=40.211939 +1237649.043507 1112437.043507 norm=39.610605 +1237720.574778 1110546.574778 norm=38.613469 +1237746.016832 1115100.016832 norm=40.669399 +1237755.758046 1115721.758046 norm=39.673669 +1237815.664738 1114462.664738 norm=38.262253 +1237882.397955 1113058.397955 norm=38.961519 +1237897.994730 1115686.994730 norm=39.000000 +1237943.748338 1114798.748338 norm=38.729833 +1237983.457449 1112959.457449 norm=38.871583 +1238013.837747 1115913.837747 norm=38.845849 +1238050.389146 1111422.389146 norm=39.012818 +1238090.905514 1115665.905514 norm=39.038443 +1238126.019397 1116846.019397 norm=39.357337 +1238151.726217 1113932.726217 norm=39.255573 +1238190.271915 1112054.271915 norm=39.357337 +1238237.540416 1115343.540416 norm=38.871583 +1238283.877319 1117925.877319 norm=39.204592 +1238305.607025 1110455.607025 norm=39.038443 +1238355.906249 1114865.906249 norm=38.000000 +1238396.046371 1115566.046371 norm=38.535698 +1238449.263304 1115038.263304 norm=38.678159 +1238459.096068 1114192.096068 norm=39.140772 +1238522.471406 1115695.471406 norm=38.144462 +1238554.401650 1113061.401650 norm=38.832976 +1238567.420896 1113763.420896 norm=39.268308 +1238610.073238 1116680.073238 norm=38.639358 +1238658.915711 1110657.915711 norm=38.781439 +1238694.737038 1114917.737038 norm=39.000000 +1238715.606984 1115236.606984 norm=38.974351 +1238758.193852 1113789.193852 norm=39.191836 +1238816.726200 1113909.726200 norm=38.652296 +1238822.929324 1114255.929324 norm=39.140772 +1238869.177323 1116060.177323 norm=39.987498 +1238883.155381 1116230.155381 norm=38.910153 +1238961.577647 1116148.577647 norm=38.961519 +1238952.436564 1112740.436564 norm=40.074930 +1239002.430124 1113986.430124 norm=39.786933 +1239044.857691 1115583.857691 norm=38.987177 +1239106.170785 1115498.170785 norm=38.039453 +1239157.625658 1118543.625658 norm=38.716921 +1239164.065930 1114904.065930 norm=39.522146 +1239181.547039 1110893.547039 norm=40.570926 +1239212.146678 1117308.146678 norm=39.736633 +1239266.448525 1113462.448525 norm=38.665230 +1239335.518217 1117787.518217 norm=38.561639 +1239357.445473 1110347.445473 norm=38.794329 +1239389.371614 1117730.371614 norm=39.166312 +1239426.843396 1116183.843396 norm=38.794329 +1239493.582646 1113853.582646 norm=38.431758 +1239513.278159 1115743.278159 norm=38.858718 +1239522.170967 1114385.170967 norm=39.849718 +1239573.448075 1115648.448075 norm=39.623226 +1239595.356612 1114879.356612 norm=39.534795 +1239647.447855 1113333.447855 norm=38.820098 +1239688.012698 1116972.012698 norm=39.395431 +1239706.055405 1115611.055405 norm=40.211939 +1239730.497463 1114139.497463 norm=38.897301 +1239792.041307 1115524.041307 norm=39.191836 +1239856.152342 1114884.152342 norm=39.446166 +1239848.130093 1116561.130093 norm=39.395431 +1239886.387316 1113254.387316 norm=38.948684 +1239951.128502 1114087.128502 norm=39.344631 +1239963.471721 1119098.471721 norm=39.471509 +1240030.337690 1117704.337690 norm=38.574603 +1240065.276362 1114531.276362 norm=38.574603 +1240108.297661 1112860.297661 norm=38.288379 +1240146.470345 1114825.470345 norm=39.724048 +1240137.796326 1116488.796326 norm=39.887341 +1240189.535670 1113842.535670 norm=39.051248 +1240270.553896 1118553.553896 norm=38.170669 +1240278.480790 1113281.480790 norm=39.038443 +1240303.240632 1119109.240632 norm=38.729833 +1240366.735070 1114081.735070 norm=39.038443 +1240370.997464 1115924.997464 norm=39.597980 +1240401.031934 1115663.031934 norm=39.786933 +1240447.384261 1114339.384261 norm=38.157568 +1240524.799184 1119252.799184 norm=38.781439 +1240529.649760 1112722.649760 norm=39.382737 +1240575.982109 1115794.982109 norm=39.140772 +1240614.610497 1113978.610497 norm=39.874804 +1240621.021746 1114901.021746 norm=39.736633 +1240662.304955 1117136.304955 norm=39.673669 +1240725.815536 1114492.815536 norm=38.509739 +1240770.944155 1120098.944155 norm=39.255573 +1240779.942775 1113576.942775 norm=39.179076 +1240824.221599 1114852.221599 norm=40.074930 +1240850.191956 1113805.191956 norm=38.704005 +1240931.465223 1118389.465223 norm=39.012818 +1240928.786663 1116241.786663 norm=38.974351 +1240995.991524 1116402.991524 norm=39.064050 +1241010.842068 1116009.842068 norm=38.948684 +1241068.960191 1113503.960191 norm=38.392708 +1241101.181551 1113335.181551 norm=39.089641 +1241122.506994 1119684.506994 norm=39.204592 +1241172.861387 1114961.861387 norm=38.935845 +1241188.100019 1118344.100019 norm=39.179076 +1241237.698979 1111464.698979 norm=38.858718 +1241292.318785 1118573.318785 norm=39.102430 +1241296.110908 1115046.110908 norm=38.884444 +1241355.151567 1117425.151567 norm=38.781439 +1241381.658727 1113273.658727 norm=39.115214 +1241409.367663 1118976.367663 norm=40.049969 +1241447.934287 1114535.934287 norm=40.162171 +1241460.400206 1114862.400206 norm=39.799497 +1241525.100861 1115192.100861 norm=39.433488 +1241551.554237 1116898.554237 norm=39.761791 +1241592.409019 1116744.409019 norm=39.217343 +1241637.742530 1114296.742530 norm=39.038443 +1241665.337304 1116575.337304 norm=38.665230 +1241731.461510 1115985.461510 norm=38.639358 +1241755.821265 1111725.821265 norm=38.639358 +1241814.622686 1117974.622686 norm=37.947332 +1241833.850627 1115180.850627 norm=38.768544 +1241865.162498 1114760.162498 norm=39.382737 +1241888.625892 1116624.625892 norm=39.937451 +1241923.846854 1119618.846854 norm=39.420807 +1241975.210049 1115372.210049 norm=38.910153 +1241995.018477 1116802.018477 norm=39.179076 +1242061.215347 1114770.215347 norm=39.242834 +1242069.151194 1120579.151194 norm=38.832976 +1242113.273779 1112031.273779 norm=39.344631 +1242139.185948 1120616.185948 norm=38.548671 +1242222.020938 1113725.020938 norm=38.496753 +1242232.885254 1116644.885254 norm=38.223030 +1242301.109244 1118307.109244 norm=38.314488 +1242298.357887 1117279.357887 norm=38.496753 +1242371.807019 1117647.807019 norm=38.170669 +1242391.378790 1117082.378790 norm=39.255573 +1242393.325914 1116063.325914 norm=39.711459 +1242437.560354 1117281.560354 norm=38.548671 +1242492.550833 1115613.550833 norm=38.236109 +1242523.611587 1116386.611587 norm=39.661064 +1242537.638985 1117889.638985 norm=39.597980 +1242578.852214 1114659.852214 norm=38.026307 +1242638.835055 1115711.835055 norm=38.392708 +1242667.028801 1118073.028801 norm=39.458839 +1242703.912022 1118593.912022 norm=39.115214 +1242738.448338 1118978.448338 norm=39.446166 +1242764.844090 1113516.844090 norm=39.319207 +1242803.259575 1119326.259575 norm=39.370039 +1242842.876941 1116021.876941 norm=39.648455 +1242858.829466 1119243.829466 norm=39.370039 +1242910.587858 1112500.587858 norm=39.534795 +1242935.264171 1119763.264171 norm=39.191836 +1242991.998953 1116245.998953 norm=38.871583 +1243029.180247 1117881.180247 norm=38.755645 +1243055.386675 1114776.386675 norm=39.076847 +1243083.476945 1119443.476945 norm=39.698866 +1243122.277111 1119865.277111 norm=39.560081 +1243171.620950 1116137.620950 norm=38.897301 +1243207.573763 1118238.573763 norm=38.535698 +1243265.418269 1118238.418269 norm=38.845849 +1243270.274855 1115711.274855 norm=39.268308 +1243305.296059 1118918.296059 norm=39.306488 +1243350.222332 1114335.222332 norm=39.064050 +1243375.029215 1119142.029215 norm=38.935845 +1243443.160721 1118399.160721 norm=39.344631 +1243456.303758 1118016.303758 norm=39.051248 +1243509.866920 1119135.866920 norm=38.807216 +1243510.051476 1119786.051476 norm=39.824616 +1243549.809670 1115674.809670 norm=38.923001 +1243602.216600 1119651.216600 norm=38.405729 +1243647.634396 1115985.634396 norm=38.897301 +1243671.466118 1119372.466118 norm=39.899875 +1243682.171781 1120423.171781 norm=39.572718 +1243747.375672 1116554.375672 norm=38.170669 +1243780.720419 1114559.720419 norm=38.535698 +1243832.561137 1120523.561137 norm=38.236109 +1243876.294194 1115787.294194 norm=38.288379 +1243902.130780 1119249.130780 norm=39.242834 +1243924.643983 1114809.643983 norm=39.166312 +1243965.474286 1122496.474286 norm=39.204592 +1243978.217530 1120323.217530 norm=38.522721 +1244048.090338 1118550.090338 norm=38.026307 +1244077.297053 1114713.297053 norm=38.170669 +1244115.792798 1120697.792798 norm=39.736633 +1244130.864007 1116603.864007 norm=38.729833 +1244169.860169 1114284.860169 norm=39.382737 +1244212.938649 1120043.938649 norm=39.534795 +1244238.928260 1119361.928260 norm=39.331921 +1244282.676398 1116644.676398 norm=39.547440 +1244306.281295 1118422.281295 norm=39.204592 +1244367.242450 1118954.242450 norm=39.433488 +1244363.857262 1120196.857262 norm=38.781439 +1244440.705604 1116580.705604 norm=37.854986 +1244489.454185 1118138.454185 norm=38.600518 +1244506.248345 1118849.248345 norm=38.444766 +1244531.187968 1116847.187968 norm=38.340579 +1244567.140715 1120713.140715 norm=38.691084 +1244605.963875 1121050.963875 norm=39.344631 +1244628.897948 1116072.897948 norm=39.255573 +1244679.563106 1123226.563106 norm=39.749214 +1244679.757641 1119309.757641 norm=39.395431 +1244734.626794 1122595.626794 norm=39.038443 +1244786.837900 1121862.837900 norm=39.025633 +1244816.754525 1119815.754525 norm=38.157568 +1244859.695647 1118096.695647 norm=38.832976 +1244887.774538 1119597.774538 norm=38.223030 +1244925.566337 1119977.566337 norm=38.249183 +1244967.807370 1122419.807370 norm=39.293765 +1244974.769977 1117450.769977 norm=39.179076 +1245018.683189 1124801.683189 norm=39.153544 +1245064.695892 1117920.695892 norm=39.038443 +1245094.904535 1118753.904535 norm=39.064050 +1245119.637108 1119981.637108 norm=38.405729 +1245188.786354 1125196.786354 norm=38.587563 +1245202.090125 1119331.090125 norm=38.431758 +1245225.385974 1122480.385974 norm=39.837169 +1245242.823168 1119481.823168 norm=39.179076 +1245305.632981 1121793.632981 norm=37.907783 +1245357.013651 1120243.013651 norm=39.179076 +1245373.152205 1121807.152205 norm=39.242834 +1245393.729267 1117255.729267 norm=38.691084 +1245440.217673 1125196.217673 norm=38.987177 +1245475.533346 1116880.533346 norm=38.755645 +1245515.992392 1124694.992392 norm=38.910153 +1245543.324030 1118521.324030 norm=38.509739 +1245606.876980 1119124.876980 norm=38.561639 +1245606.105206 1122486.105206 norm=39.115214 +1245657.781669 1124165.781669 norm=39.912404 +1245671.701645 1118695.701645 norm=38.884444 +1245741.169893 1122168.169893 norm=38.691084 +1245747.784277 1121520.784277 norm=39.140772 +1245770.631651 1120683.631651 norm=38.832976 +1245837.178655 1121715.178655 norm=38.923001 +1245862.205662 1120302.205662 norm=38.157568 +1245903.378049 1120639.378049 norm=38.405729 +1245941.487038 1117653.487038 norm=38.832976 +1245961.530525 1122805.530525 norm=39.012818 +1246005.377932 1121368.377932 norm=38.948684 +1246036.740149 1123943.740149 norm=39.204592 +1246070.073308 1121373.073308 norm=38.678159 +1246113.920415 1120657.920415 norm=38.483763 +1246149.550139 1120898.550139 norm=38.105118 +1246178.637969 1122111.637969 norm=39.534795 +1246183.096911 1124578.096911 norm=39.179076 +1246266.116805 1118084.116805 norm=37.722672 +1246295.250335 1121898.250335 norm=38.170669 +1246337.860024 1119239.860024 norm=38.249183 +1246350.266098 1122220.266098 norm=38.379682 +1246390.563155 1120232.563155 norm=38.716921 +1246414.903422 1121762.903422 norm=38.522721 +1246471.532032 1124684.532032 norm=38.392708 +1246483.767792 1118557.767792 norm=38.948684 +1246528.345135 1121768.345135 norm=39.217343 +1246536.080741 1122508.080741 norm=39.242834 +1246593.864211 1117792.864211 norm=39.051248 +1246611.261590 1124002.261590 norm=39.635842 +1246633.268073 1118782.268073 norm=39.496835 +1246676.705616 1122337.705616 norm=39.471509 +1246734.222867 1121715.222867 norm=37.868192 +1246751.850490 1119632.850490 norm=38.548671 +1246804.684141 1122668.684141 norm=38.223030 +1246856.782659 1122084.782659 norm=38.444766 +1246858.230140 1125898.230140 norm=39.102430 +1246915.058271 1119849.058271 norm=38.755645 +1246924.142672 1118023.142672 norm=38.794329 +1246969.990791 1124394.990791 norm=40.062451 +1246980.973578 1120429.973578 norm=38.366652 +1247064.144916 1123210.144916 norm=38.026307 +1247081.938199 1121320.938199 norm=38.704005 +1247111.038829 1125842.038829 norm=38.665230 +1247142.833897 1118364.833897 norm=39.331921 +1247158.494042 1126694.494042 norm=39.433488 +1247176.497010 1122723.497010 norm=39.987498 +1247226.819239 1122188.819239 norm=38.678159 +1247286.228571 1118274.228571 norm=37.881394 +1247339.794061 1124434.794061 norm=37.802116 +1247354.246078 1122319.246078 norm=38.470768 +1247392.816756 1125626.816756 norm=37.802116 +1247420.726546 1119052.726546 norm=39.509493 +1247439.646273 1124988.646273 norm=39.115214 +1247465.928635 1116552.928635 norm=39.319207 +1247519.432936 1123158.432936 norm=39.166312 +1247528.420787 1124601.420787 norm=39.496835 +1247577.028302 1121527.028302 norm=38.587563 +1247629.819340 1119783.819340 norm=38.144462 +1247682.059503 1122206.059503 norm=38.183766 +1247701.085541 1120961.085541 norm=38.457769 +1247729.036502 1124566.036502 norm=38.522721 +1247760.041704 1120752.041704 norm=39.076847 +1247780.436437 1125043.436437 norm=38.639358 +1247827.264050 1122803.264050 norm=38.470768 +1247861.286462 1122696.286462 norm=39.000000 +1247897.331987 1119252.331987 norm=39.458839 +1247908.100931 1122076.100931 norm=39.076847 +1247948.946763 1121686.946763 norm=38.897301 +1247994.102639 1121569.102639 norm=39.458839 +1247998.441402 1126062.441402 norm=39.560081 +1248057.421489 1122715.421489 norm=38.923001 +1248099.241258 1123572.241258 norm=38.314488 +1248158.176102 1123919.176102 norm=38.418745 +1248158.904333 1118199.904333 norm=39.597980 +1248199.372331 1124272.372331 norm=38.781439 +1248231.123386 1121757.123386 norm=38.716921 +1248273.286401 1120106.286401 norm=38.961519 +1248302.159957 1125620.159957 norm=39.140772 +1248334.120015 1122037.120015 norm=39.560081 +1248352.464134 1123596.464134 norm=39.471509 +1248388.868057 1122595.868057 norm=39.140772 +1248441.591590 1122867.591590 norm=38.820098 +1248465.931459 1122508.931459 norm=38.457769 +1248530.302415 1119497.302415 norm=38.716921 +1248530.769934 1122549.769934 norm=38.639358 +1248587.016204 1127166.016204 norm=38.781439 +1248596.986190 1123564.986190 norm=39.230090 +1248641.512222 1121713.512222 norm=39.089641 +1248671.822805 1121253.822805 norm=38.483763 +1248729.439890 1125881.439890 norm=38.755645 +1248725.662313 1121150.662313 norm=38.288379 +1248795.846177 1123118.846177 norm=39.242834 +1248791.841658 1124154.841658 norm=39.255573 +1248851.551608 1122332.551608 norm=39.000000 +1248876.483292 1123114.483292 norm=38.652296 +1248923.681369 1123748.681369 norm=38.858718 +1248941.645315 1121243.645315 norm=38.704005 +1248993.609379 1122664.609379 norm=38.065733 +1249024.269731 1121029.269731 norm=39.824616 +1249026.789592 1124724.789592 norm=40.249224 +1249049.222128 1120364.222128 norm=39.724048 +1249112.884611 1122084.884611 norm=39.064050 +1249151.376862 1120812.376862 norm=38.353618 +1249196.405474 1125461.405474 norm=38.691084 +1249217.751692 1123365.751692 norm=39.127995 +1249243.131023 1124862.131023 norm=39.255573 +1249294.417379 1119900.417379 norm=38.678159 +1249318.339723 1128996.339723 norm=39.038443 +1249356.344620 1123773.344620 norm=38.275318 +1249396.689176 1118852.689176 norm=38.418745 +1249421.584790 1125401.584790 norm=39.774364 +1249434.810373 1123387.810373 norm=39.446166 +1249490.611490 1120119.611490 norm=39.089641 +1249519.524135 1124931.524135 norm=39.560081 +1249519.371616 1124633.371616 norm=39.281039 +1249599.387565 1122123.387565 norm=38.613469 +1249625.765497 1122617.765497 norm=38.910153 +1249638.138684 1125314.138684 norm=39.089641 +1249693.716146 1120567.716146 norm=38.755645 +1249736.919157 1125532.919157 norm=39.786933 +1249744.579896 1122090.579896 norm=38.820098 +1249803.744066 1127478.744066 norm=39.698866 +1249813.246743 1122585.246743 norm=38.431758 +1249873.587094 1123274.587094 norm=38.587563 +1249907.099848 1124117.099848 norm=38.483763 +1249936.547614 1122023.547614 norm=38.574603 +1249964.150444 1121336.150444 norm=39.012818 +1249993.782655 1127346.782655 norm=38.716921 +1250029.536021 1121521.536021 norm=38.794329 +1250059.265076 1125701.265076 norm=39.357337 +1250103.796342 1121769.796342 norm=38.678159 +1250131.509256 1121818.509256 norm=39.089641 +1250143.431887 1123519.431887 norm=39.924930 +1250189.090301 1126138.090301 norm=38.405729 +1250235.645476 1123599.645476 norm=39.115214 +1250266.410890 1128002.410890 norm=39.038443 +1250284.381905 1120533.381905 norm=40.037482 +1250300.365915 1124167.365915 norm=39.064050 +1250380.522330 1121187.522330 norm=38.755645 +1250413.313904 1123194.313904 norm=38.652296 +1250444.465624 1124491.465624 norm=39.471509 +1250439.269088 1121854.269088 norm=39.912404 +1250490.542143 1124361.542143 norm=38.574603 +1250554.156001 1121508.156001 norm=39.319207 +1250552.577941 1128337.577941 norm=39.357337 +1250593.516735 1125029.516735 norm=39.698866 +1250628.801119 1124474.801119 norm=38.301436 +1250672.042536 1123084.042536 norm=38.418745 +1250716.964341 1123187.964341 norm=38.065733 +1250757.366927 1123737.366927 norm=38.923001 +1250748.617766 1122686.617766 norm=39.268308 +1250797.998215 1123485.998215 norm=38.483763 +1250842.148776 1125565.148776 norm=39.560081 +1250858.609582 1123113.609582 norm=39.115214 +1250904.836851 1126922.836851 norm=38.729833 +1250951.098114 1126332.098114 norm=39.395431 +1250956.044425 1121534.044425 norm=39.064050 +1251001.011375 1126711.011375 norm=38.574603 +1251038.211482 1124492.211482 norm=38.665230 +1251089.893064 1123974.893064 norm=38.496753 +1251113.383166 1124816.383166 norm=38.535698 +1251144.849985 1121519.849985 norm=38.935845 +1251160.191032 1128902.191032 norm=39.306488 +1251210.753329 1123624.753329 norm=39.370039 +1251209.856472 1124665.856472 norm=38.832976 +1251265.488128 1127360.488128 norm=39.025633 +1251301.998735 1123041.998735 norm=39.076847 +1251336.857198 1124497.857198 norm=38.755645 +1251389.901102 1123472.901102 norm=38.807216 +1251400.798423 1125045.798423 norm=38.742741 +1251436.942202 1125922.942202 norm=39.560081 +1251470.265887 1123513.265887 norm=38.910153 +1251505.942375 1126109.942375 norm=38.431758 +1251555.118045 1123195.118045 norm=38.678159 +1251548.038171 1125580.038171 norm=38.548671 +1251628.726830 1121442.726830 norm=39.217343 +1251624.004618 1129241.004618 norm=38.768544 +1251679.420950 1122777.420950 norm=38.845849 +1251705.376342 1122933.376342 norm=38.431758 +1251753.573192 1128486.573192 norm=38.366652 +1251772.013415 1122364.013415 norm=39.268308 +1251782.320973 1125905.320973 norm=39.357337 +1251817.208985 1125519.208985 norm=39.635842 +1251859.816829 1128429.816829 norm=39.874804 +1251869.077145 1122157.077145 norm=39.937451 +1251912.204906 1122448.204906 norm=39.230090 +1251950.949359 1128244.949359 norm=39.382737 +1251996.810245 1125140.810245 norm=38.935845 +1252032.209438 1127146.209438 norm=39.255573 +1252055.548237 1126387.548237 norm=39.648455 +1252080.092965 1125604.092965 norm=39.255573 +1252113.134627 1125976.134627 norm=39.230090 +1252155.442266 1120675.442266 norm=38.807216 +1252204.633433 1127006.633433 norm=39.522146 +1252204.635315 1125752.635315 norm=38.729833 +1252277.829416 1129227.829416 norm=39.064050 +1252271.685319 1127757.685319 norm=39.319207 +1252321.856457 1124801.856457 norm=39.433488 +1252358.941702 1125964.941702 norm=38.587563 +1252393.352150 1122143.352150 norm=38.678159 +1252427.047517 1126066.047517 norm=39.064050 +1252454.248753 1126458.248753 norm=39.635842 +1252450.737925 1127310.737925 norm=40.012498 +1252489.884849 1126146.884849 norm=39.824616 +1252549.113375 1122236.113375 norm=39.597980 +1252572.681286 1131689.681286 norm=39.331921 +1252607.518300 1123393.518300 norm=40.261644 +1252641.002163 1125198.002163 norm=39.293765 +1252692.018403 1125805.018403 norm=37.749172 +1252739.127508 1124802.127508 norm=37.894591 +1252773.784782 1128352.784782 norm=39.012818 +1252760.024083 1126529.024083 norm=40.000000 +1252795.133693 1126667.133693 norm=39.924930 +1252818.805295 1127229.805295 norm=40.062451 +1252848.953585 1124299.953585 norm=38.183766 +1252949.355960 1125334.355960 norm=38.794329 +1252943.794472 1124271.794472 norm=38.470768 +1252991.562466 1125478.562466 norm=39.025633 +1253012.128716 1130890.128716 norm=39.420807 +1253059.018910 1121662.018910 norm=38.262253 +1253081.920543 1125934.920543 norm=39.000000 +1253101.275843 1126494.275843 norm=38.236109 +1253158.734264 1128218.734264 norm=39.572718 +1253164.513875 1127419.513875 norm=39.153544 +1253211.182942 1130024.182942 norm=39.000000 +1253228.505768 1125188.505768 norm=39.281039 +1253259.298170 1126787.298170 norm=39.446166 +1253303.919700 1122847.919700 norm=39.140772 +1253339.276588 1134233.276588 norm=38.897301 +1253374.199645 1122382.199645 norm=39.102430 +1253399.624783 1129269.624783 norm=38.884444 +1253438.820963 1126758.820963 norm=38.935845 +1253471.463201 1129525.463201 norm=39.331921 +1253495.376002 1121547.376002 norm=38.897301 +1253537.736335 1127672.736335 norm=38.457769 +1253585.449965 1127109.449965 norm=38.871583 +1253587.698694 1126103.698694 norm=40.087405 +1253608.498086 1129754.498086 norm=39.140772 +1253652.095737 1129319.095737 norm=39.051248 +1253685.137717 1124913.137717 norm=39.102430 +1253717.039193 1131838.039193 norm=39.217343 +1253758.940132 1121312.940132 norm=39.281039 +1253780.879898 1126159.879898 norm=39.547440 +1253813.111887 1129559.111887 norm=38.496753 +1253865.140443 1130002.140443 norm=38.935845 +1253872.821680 1126606.821680 norm=39.736633 +1253915.693148 1128547.693148 norm=39.064050 +1253948.609671 1124275.609671 norm=38.832976 +1253978.950525 1129694.950525 norm=40.187063 +1253974.207117 1126705.207117 norm=40.000000 +1254048.427583 1128387.427583 norm=38.091994 +1254117.092687 1120803.092687 norm=37.682887 +1254137.485853 1131751.485853 norm=38.170669 +1254165.590983 1123612.590983 norm=38.691084 +1254181.609083 1130830.609083 norm=38.716921 +1254220.229038 1128480.229038 norm=39.458839 +1254232.104558 1128884.104558 norm=39.306488 +1254270.562926 1127931.562926 norm=39.153544 +1254295.289447 1127282.289447 norm=39.837169 +1254332.279101 1128385.279101 norm=39.774364 +1254355.547477 1125351.547477 norm=39.899875 +1254390.511835 1124183.511835 norm=39.115214 +1254434.628141 1129732.628141 norm=38.678159 +1254473.444619 1122810.444619 norm=38.923001 +1254506.509435 1128888.509435 norm=39.408121 +1254526.636751 1129042.636751 norm=38.897301 +1254563.067441 1127470.067441 norm=39.179076 +1254598.621954 1128960.621954 norm=40.000000 +1254610.226063 1126982.226063 norm=39.471509 +1254646.759896 1131262.759896 norm=39.420807 +1254692.654288 1132293.654288 norm=38.974351 +1254723.599590 1121605.599590 norm=38.807216 +1254756.765599 1129713.765599 norm=39.382737 +1254777.844518 1123627.844518 norm=39.319207 +1254830.841424 1128513.841424 norm=38.366652 +1254843.199810 1130349.199810 norm=38.832976 +1254898.034549 1128306.034549 norm=38.209946 +1254936.769296 1125278.769296 norm=38.742741 +1254933.609216 1131591.609216 norm=40.112342 +1254982.927060 1128365.927060 norm=38.858718 +1255014.938699 1125863.938699 norm=39.064050 +1255044.171891 1129262.171891 norm=39.319207 +1255064.674478 1129758.674478 norm=38.405729 +1255124.021434 1128656.021434 norm=38.405729 +1255163.639254 1129325.639254 norm=37.973675 +1255177.196520 1124111.196520 norm=39.051248 +1255207.985468 1131126.985468 norm=38.574603 +1255245.166424 1127510.166424 norm=39.089641 +1255267.411583 1129020.411583 norm=38.884444 +1255298.604443 1130427.604443 norm=38.987177 +1255319.508209 1128304.508209 norm=38.832976 +1255387.557808 1129706.557808 norm=38.858718 +1255373.448972 1125581.448972 norm=39.293765 +1255429.178195 1130715.178195 norm=38.105118 +1255486.289896 1130770.289896 norm=38.574603 +1255496.827768 1126071.827768 norm=39.458839 +1255504.175088 1129724.175088 norm=39.560081 +1255560.117562 1129502.117562 norm=38.652296 +1255598.133562 1132727.133562 norm=38.000000 +1255636.377876 1124180.377876 norm=39.597980 +1255629.131963 1129608.131963 norm=38.845849 +1255691.608376 1126125.608376 norm=39.166312 +1255703.302877 1134460.302877 norm=38.118237 +1255775.023182 1127486.023182 norm=38.820098 +1255773.302369 1133513.302369 norm=38.652296 +1255834.353200 1123455.353200 norm=38.170669 +1255847.658100 1128982.658100 norm=38.755645 +1255882.710422 1125409.710422 norm=38.170669 +1255920.181826 1131711.181826 norm=39.242834 +1255923.999145 1130058.999145 norm=38.961519 +1255973.862222 1128447.862222 norm=38.639358 +1256007.588746 1127852.588746 norm=38.858718 +1256050.379053 1130953.379053 norm=37.549967 +1256076.395434 1126290.395434 norm=38.509739 +1256103.497214 1130785.497214 norm=38.923001 +1256126.134557 1135003.134557 norm=38.832976 +1256157.783970 1125430.783970 norm=39.064050 +1256182.874031 1126460.874031 norm=38.897301 +1256240.142861 1127966.142861 norm=37.828561 +1256267.301782 1127065.301782 norm=38.729833 +1256273.033522 1131142.033522 norm=38.574603 +1256326.944507 1127774.944507 norm=38.820098 +1256351.402098 1131383.402098 norm=38.987177 +1256376.672241 1127688.672241 norm=38.379682 +1256419.138558 1130457.138558 norm=38.626416 +1256458.123193 1130337.123193 norm=39.000000 +1256462.392059 1125328.392059 norm=39.673669 +1256500.116803 1132457.116803 norm=39.204592 +1256538.557784 1128315.557784 norm=38.509739 +1256579.373539 1130001.373539 norm=38.716921 +1256611.785239 1128010.785239 norm=38.522721 +1256623.903811 1131819.903811 norm=38.574603 +1256702.656045 1132651.656045 norm=38.026307 +1256700.724877 1126018.724877 norm=38.729833 +1256731.156481 1129926.156481 norm=39.268308 +1256738.903497 1129577.903497 norm=39.824616 +1256781.378049 1129860.378049 norm=38.755645 +1256833.725897 1129272.725897 norm=38.974351 +1256849.395087 1129732.395087 norm=39.572718 +1256879.686344 1130028.686344 norm=38.444766 +1256930.677620 1129261.677620 norm=38.483763 +1256952.071308 1128186.071308 norm=38.379682 +1257002.912793 1128671.912793 norm=38.078866 +1257024.328075 1131401.328075 norm=39.051248 +1257041.013653 1130334.013653 norm=39.140772 +1257077.405233 1128665.405233 norm=38.858718 +1257093.646459 1128722.646459 norm=39.496835 +1257144.346825 1133007.346825 norm=38.626416 +1257180.482957 1130496.482957 norm=38.704005 +1257188.912855 1130063.912855 norm=39.661064 +1257228.740547 1130418.740547 norm=38.974351 +1257246.157393 1129666.157393 norm=38.820098 +1257302.046376 1127371.046376 norm=39.012818 +1257332.662975 1131238.662975 norm=38.327536 +1257387.774599 1127188.774599 norm=37.509999 +1257398.247103 1131335.247103 norm=38.768544 +1257427.616140 1134033.616140 norm=38.470768 +1257452.957564 1125153.957564 norm=38.431758 +1257485.358963 1132356.358963 norm=38.262253 +1257533.862761 1126716.862761 norm=38.183766 +1257547.451947 1133818.451947 norm=39.408121 +1257564.135358 1129657.135358 norm=39.089641 +1257608.818628 1129838.818628 norm=39.837169 +1257610.866728 1126535.866728 norm=39.774364 +1257674.158047 1130802.158047 norm=38.910153 +1257689.203716 1128161.203716 norm=39.420807 +1257729.305238 1131572.305238 norm=38.561639 +1257775.232634 1128456.232634 norm=38.522721 +1257802.230572 1133295.230572 norm=38.131352 +1257836.119819 1132411.119819 norm=37.336309 +1257904.353719 1130311.353719 norm=38.091994 +1257887.619985 1128890.619985 norm=38.742741 +1257928.993071 1130231.993071 norm=38.858718 +1257943.395926 1130115.395926 norm=38.327536 +1257998.856097 1135465.856097 norm=38.574603 +1258023.334120 1129047.334120 norm=38.209946 +1258065.188965 1129366.188965 norm=38.768544 +1258075.852068 1129861.852068 norm=38.935845 +1258111.621425 1128456.621425 norm=39.153544 +1258136.833073 1132770.833073 norm=39.230090 +1258152.381659 1134143.381659 norm=39.344631 +1258182.209429 1129929.209429 norm=39.127995 +1258227.914693 1131669.914693 norm=39.000000 +1258251.049075 1130524.049075 norm=37.563280 +1258341.730335 1128283.730335 norm=37.576588 +1258334.108534 1132870.108534 norm=38.509739 +1258358.701531 1130383.701531 norm=38.548671 +1258391.457995 1127925.457995 norm=38.974351 +1258406.771898 1130669.771898 norm=38.794329 +1258457.192536 1132761.192536 norm=39.051248 +1258493.887867 1135773.887867 norm=37.762415 +1258527.167956 1128915.167956 norm=39.076847 +1258535.903707 1129155.903707 norm=39.268308 +1258567.941941 1128892.941941 norm=38.716921 +1258606.868556 1130937.868556 norm=38.236109 +1258639.954849 1132156.954849 norm=38.535698 +1258663.365418 1129501.365418 norm=38.157568 +1258723.628845 1131940.628845 norm=37.775654 +1258749.797993 1131749.797993 norm=37.986840 +1258779.029082 1129042.029082 norm=38.418745 +1258803.557442 1130939.557442 norm=38.652296 +1258826.796592 1134178.796592 norm=39.051248 +1258830.949655 1126921.949655 norm=39.281039 +1258871.107780 1133401.107780 norm=38.961519 +1258914.921448 1127231.921448 norm=38.974351 +1258941.788734 1136281.788734 norm=38.974351 +1258966.336537 1129948.336537 norm=39.051248 +1259017.213936 1133234.213936 norm=38.327536 +1259037.234302 1130577.234302 norm=38.170669 +1259083.924623 1130942.924623 norm=38.794329 +1259088.077690 1133061.077690 norm=38.613469 +1259145.392759 1131355.392759 norm=37.749172 +1259161.460793 1130068.460793 norm=38.392708 +1259221.039154 1132681.039154 norm=37.749172 +1259258.872685 1132032.872685 norm=37.947332 +1259263.424403 1131437.424403 norm=38.742741 +1259263.781852 1131654.781852 norm=39.191836 +1259304.742538 1129855.742538 norm=38.522721 +1259344.279035 1135327.279035 norm=38.535698 +1259393.466556 1130289.466556 norm=38.275318 +1259392.084171 1133767.084171 norm=39.038443 +1259438.630985 1133817.630985 norm=39.102430 +1259465.519744 1131379.519744 norm=39.306488 +1259486.785577 1131835.785577 norm=39.000000 +1259531.123579 1134201.123579 norm=38.170669 +1259561.090705 1134230.090705 norm=38.392708 +1259589.556832 1128442.556832 norm=39.076847 +1259625.307843 1130039.307843 norm=37.828561 +1259663.814702 1129919.814702 norm=38.392708 +1259689.419260 1134070.419260 norm=37.973675 +1259723.945273 1131460.945273 norm=37.563280 +1259765.835938 1127719.835938 norm=37.656341 +1259799.899665 1136135.899665 norm=38.431758 +1259802.358010 1128112.358010 norm=37.934153 +1259845.483434 1133774.483434 norm=39.204592 +1259842.084441 1137831.084441 norm=39.458839 +1259884.797082 1130976.797082 norm=39.370039 +1259917.716678 1132179.716678 norm=39.127995 +1259941.086876 1133587.086876 norm=39.509493 +1259968.662669 1128595.662669 norm=38.366652 +1260018.141183 1133744.141183 norm=39.331921 +1260043.299435 1133385.299435 norm=38.170669 +1260087.925330 1132445.925330 norm=37.509999 +1260129.143641 1131367.143641 norm=37.523326 +1260162.908620 1132457.908620 norm=38.626416 +1260155.904992 1134739.904992 norm=38.379682 +1260216.894147 1132505.894147 norm=38.574603 +1260217.011262 1136942.011262 norm=38.405729 +1260263.548700 1132787.548700 norm=38.652296 +1260293.777154 1130259.777154 norm=38.091994 +1260335.777977 1132836.777977 norm=38.353618 +1260328.931604 1131559.931604 norm=40.087405 +1260360.346569 1132223.346569 norm=38.262253 +1260422.873252 1135034.873252 norm=37.762415 +1260456.647872 1134675.647872 norm=38.574603 +1260452.579241 1133587.579241 norm=38.561639 +1260507.098647 1129827.098647 norm=38.884444 +1260513.651786 1132411.651786 norm=39.025633 +1260550.042238 1134492.042238 norm=38.742741 +1260580.258250 1132535.258250 norm=39.089641 +1260614.060646 1133028.060646 norm=38.652296 +1260643.089495 1132125.089495 norm=38.522721 +1260703.215598 1138616.215598 norm=37.536649 +1260718.662252 1128881.662252 norm=37.907783 +1260757.342700 1134312.342700 norm=39.166312 +1260756.801854 1129669.801854 norm=38.845849 +1260792.447293 1133756.447293 norm=38.948684 +1260816.876990 1133509.876990 norm=39.000000 +1260858.035663 1129409.035663 norm=38.170669 +1260896.915269 1133739.915269 norm=38.626416 +1260919.787451 1134904.787451 norm=38.820098 +1260951.547150 1129092.547150 norm=38.794329 +1260982.659742 1129819.659742 norm=38.884444 +1260999.376862 1136799.376862 norm=39.585351 +1261024.804664 1133783.804664 norm=38.262253 +1261075.178972 1132035.178972 norm=39.089641 +1261084.719221 1133135.719221 norm=38.884444 +1261139.756780 1132502.756780 norm=38.013156 +1261164.442635 1131635.442635 norm=38.052595 +1261222.833536 1137278.833536 norm=38.236109 +1261216.659162 1133167.659162 norm=38.249183 +1261282.420959 1133385.420959 norm=38.340579 +1261276.797872 1128742.797872 norm=38.807216 +1261310.531535 1137859.531535 norm=38.652296 +1261342.015215 1130187.015215 norm=38.794329 +1261357.109025 1137867.109025 norm=39.496835 +1261392.216467 1126839.216467 norm=39.166312 +1261415.640844 1134502.640844 norm=38.820098 +1261463.557055 1136684.557055 norm=38.457769 +1261493.268373 1134159.268373 norm=38.626416 +1261501.488171 1129806.488171 norm=38.665230 +1261558.202749 1135305.202749 norm=38.858718 +1261569.248348 1133439.248348 norm=38.353618 +1261626.604501 1135985.604501 norm=38.613469 +1261652.122688 1133160.122688 norm=37.841776 +1261701.759939 1133424.759939 norm=38.535698 +1261678.235569 1133591.235569 norm=38.845849 +1261746.363761 1134043.363761 norm=38.065733 +1261772.807272 1136779.807272 norm=37.828561 +1261818.402813 1131278.402813 norm=38.091994 +1261816.135143 1136137.135143 norm=39.051248 +1261841.415353 1135390.415353 norm=38.678159 +1261870.681727 1132211.681727 norm=38.768544 +1261900.978261 1133232.978261 norm=37.762415 +1261960.064750 1134420.064750 norm=37.788887 +1261988.696414 1133079.696414 norm=38.039453 +1262011.836586 1134695.836586 norm=37.894591 +1262050.161783 1139139.161783 norm=39.382737 +1262015.493262 1132040.493262 norm=38.314488 +1262114.259100 1136586.259100 norm=38.353618 +1262110.023712 1132553.023712 norm=38.183766 +1262147.714527 1133724.714527 norm=39.293765 +1262157.640848 1130761.640848 norm=38.716921 +1262216.392597 1137095.392597 norm=38.845849 +1262229.160328 1135023.160328 norm=38.613469 +1262274.801042 1135478.801042 norm=38.431758 +1262297.733745 1134138.733745 norm=38.729833 +1262330.054169 1132540.054169 norm=39.115214 +1262348.790763 1136125.790763 norm=38.366652 +1262395.843823 1135505.843823 norm=37.536649 +1262440.534068 1133936.534068 norm=38.170669 +1262438.906096 1135524.906096 norm=38.742741 +1262477.039686 1132922.039686 norm=38.091994 +1262505.537046 1136857.537046 norm=39.484174 +1262516.794756 1132403.794756 norm=38.768544 +1262565.411816 1137903.411816 norm=38.587563 +1262571.154758 1136554.154758 norm=39.051248 +1262615.391878 1131675.391878 norm=38.678159 +1262653.217660 1133102.217660 norm=38.039453 +1262680.540917 1136942.540917 norm=38.000000 +1262726.229016 1132530.229016 norm=37.722672 +1262744.229276 1137029.229276 norm=38.961519 +1262746.499436 1132592.499436 norm=39.597980 +1262789.322906 1134129.322906 norm=38.820098 +1262806.042022 1136800.042022 norm=39.012818 +1262873.993389 1135237.993389 norm=37.483330 +1262890.482657 1138772.482657 norm=38.639358 +1262923.700640 1130631.700640 norm=37.749172 +1262949.795023 1134566.795023 norm=37.986840 +1263005.004708 1136573.004708 norm=37.722672 +1263018.083239 1137484.083239 norm=37.709415 +1263065.347298 1130209.347298 norm=37.894591 +1263063.736178 1134153.736178 norm=38.691084 +1263094.496406 1139370.496406 norm=38.716921 +1263115.700865 1133170.700865 norm=38.897301 +1263136.917830 1132097.917830 norm=38.431758 +1263185.877777 1137084.877777 norm=38.483763 +1263216.634998 1134657.634998 norm=39.281039 +1263213.684019 1138506.684019 norm=38.987177 +1263262.874360 1133660.874360 norm=38.935845 +1263279.348384 1134585.348384 norm=38.288379 +1263335.809572 1133959.809572 norm=38.236109 +1263364.822251 1134204.822251 norm=38.561639 +1263382.462844 1135339.462844 norm=38.845849 +1263405.463427 1138791.463427 norm=37.722672 +1263463.194253 1137633.194253 norm=38.910153 +1263439.477703 1135275.477703 norm=38.948684 +1263511.655374 1131768.655374 norm=38.496753 +1263519.656682 1138630.656682 norm=38.910153 +1263550.161842 1133649.161842 norm=39.357337 +1263558.737489 1136757.737489 norm=38.884444 +1263630.550680 1133094.550680 norm=38.353618 +1263650.924140 1139159.924140 norm=39.127995 +1263665.808181 1131322.808181 norm=38.665230 +1263704.905250 1137515.905250 norm=38.327536 +1263754.072789 1137374.072789 norm=37.161808 +1263770.481429 1133953.481429 norm=38.639358 +1263791.751533 1135482.751533 norm=38.379682 +1263842.110264 1135889.110264 norm=37.828561 +1263850.534434 1137627.534434 norm=38.600518 +1263876.547933 1141064.547933 norm=39.509493 +1263868.015313 1133413.015313 norm=39.012818 +1263946.357530 1135295.357530 norm=38.170669 +1263980.028576 1136683.028576 norm=37.775654 +1264001.592558 1136897.592558 norm=38.431758 +1264031.536055 1134157.536055 norm=38.405729 +1264055.478036 1135562.478036 norm=39.255573 +1264076.006336 1130866.006336 norm=38.039453 +1264141.394321 1137305.394321 norm=38.249183 +1264116.458205 1138526.458205 norm=38.884444 +1264158.149902 1136538.149902 norm=39.255573 +1264177.032140 1136863.032140 norm=38.183766 +1264250.380068 1134331.380068 norm=38.716921 +1264251.172868 1136356.172868 norm=38.013156 +1264296.234058 1134382.234058 norm=38.470768 +1264304.784528 1140713.784528 norm=39.102430 +1264332.824525 1134171.824525 norm=39.076847 +1264346.637161 1136656.637161 norm=39.255573 +1264402.746508 1136568.746508 norm=38.131352 +1264429.130749 1137916.130749 norm=37.802116 +1264478.916275 1133076.916275 norm=38.366652 +1264499.923157 1138995.923157 norm=38.418745 +1264523.680692 1132422.680692 norm=37.722672 +1264562.061741 1139657.061741 norm=37.576588 +1264580.512170 1134058.512170 norm=38.665230 +1264603.455115 1138447.455115 norm=38.105118 +1264643.400122 1132390.400122 norm=38.496753 +1264665.917114 1140454.917114 norm=38.561639 +1264688.424427 1134420.424427 norm=39.115214 +1264705.745064 1137262.745064 norm=38.405729 +1264763.178918 1135426.178918 norm=38.052595 +1264779.722714 1141010.722714 norm=38.729833 +1264803.269905 1133089.269905 norm=38.327536 +1264825.406390 1139134.406390 norm=38.935845 +1264844.382039 1133628.382039 norm=39.331921 +1264903.983938 1138332.983938 norm=38.483763 +1264915.461236 1133356.461236 norm=39.230090 +1264949.344386 1135841.344386 norm=39.319207 +1264920.997118 1135315.997118 norm=38.691084 +1265018.161301 1141208.161301 norm=37.854986 +1265042.067202 1135785.067202 norm=38.091994 +1265080.296485 1133758.296485 norm=38.288379 +1265090.821763 1136536.821763 norm=37.894591 +1265129.987356 1136138.987356 norm=38.065733 +1265152.706361 1140669.706361 norm=38.755645 +1265188.410485 1136994.410485 norm=37.841776 +1265226.563353 1137000.563353 norm=38.574603 +1265237.776127 1136102.776127 norm=38.026307 +1265272.620555 1136004.620555 norm=39.204592 +1265280.051726 1138869.051726 norm=39.382737 +1265306.314234 1134342.314234 norm=38.987177 +1265362.200728 1137239.200728 norm=38.039453 +1265398.831569 1138244.831569 norm=37.986840 +1265409.558991 1134287.558991 norm=38.314488 +1265453.404951 1137875.404951 norm=38.392708 +1265457.449693 1137065.449693 norm=38.742741 +1265492.508057 1135623.508057 norm=38.013156 +1265529.603343 1133951.603343 norm=39.179076 +1265537.243653 1135151.243653 norm=38.704005 +1265594.195162 1137640.195162 norm=37.616486 +1265628.336880 1137778.336880 norm=38.522721 +1265642.718359 1139054.718359 norm=38.742741 +1265652.742921 1134224.742921 norm=39.433488 +1265687.412661 1138767.412661 norm=38.678159 +1265727.846982 1135953.846982 norm=37.854986 +1265776.442895 1138897.442895 norm=38.144462 +1265765.453305 1136083.453305 norm=39.191836 +1265805.564160 1138450.564160 norm=39.115214 +1265838.011301 1136352.011301 norm=38.755645 +1265859.300107 1138762.300107 norm=38.807216 +1265916.076541 1134258.076541 norm=38.052595 +1265936.432249 1136984.432249 norm=38.768544 +1265953.407993 1137330.407993 norm=38.039453 +1266004.324982 1137260.324982 norm=38.209946 +1266012.550341 1135725.550341 norm=39.281039 +1266043.474946 1140517.474946 norm=38.457769 +1266069.767752 1134595.767752 norm=38.392708 +1266110.357864 1139930.357864 norm=37.947332 +1266147.924905 1134841.924905 norm=37.762415 +1266181.606535 1138396.606535 norm=37.947332 +1266190.227207 1133049.227207 norm=38.781439 +1266203.844702 1140451.844702 norm=38.716921 +1266239.564397 1136625.564397 norm=38.884444 +1266262.590610 1134213.590610 norm=39.089641 +1266300.572052 1139304.572052 norm=38.729833 +1266317.248386 1142532.248386 norm=38.249183 +1266367.251935 1132340.251935 norm=38.236109 +1266403.738410 1140606.738410 norm=38.196859 +1266422.890769 1134420.890769 norm=38.327536 +1266455.717627 1138261.717627 norm=38.587563 +1266448.549474 1136946.549474 norm=39.395431 +1266519.596215 1134972.596215 norm=37.868192 +1266551.169944 1140235.169944 norm=37.643060 +1266567.741742 1137899.741742 norm=38.678159 +1266582.024518 1132350.024518 norm=38.665230 +1266626.492976 1143315.492976 norm=38.340579 +1266648.160385 1137031.160385 norm=38.742741 +1266682.862500 1135289.862500 norm=38.183766 +1266717.126219 1135908.126219 norm=37.802116 +1266747.807063 1137259.807063 norm=38.509739 +1266764.706007 1136797.706007 norm=39.166312 +1266767.259015 1138637.259015 norm=38.742741 +1266814.387760 1138748.387760 norm=38.548671 +1266849.521034 1139157.521034 norm=38.845849 +1266858.721049 1133842.721049 norm=38.781439 +1266889.608214 1142528.608214 norm=38.871583 +1266928.310263 1133696.310263 norm=39.382737 +1266950.598795 1141683.598795 norm=38.236109 +1267014.821819 1134969.821819 norm=37.682887 +1267040.859897 1136235.859897 norm=38.223030 +1267037.772988 1140289.772988 norm=38.183766 +1267101.415505 1135946.415505 norm=38.574603 +1267083.241245 1135678.241245 norm=39.824616 +1267115.649462 1139320.649462 norm=39.306488 +1267132.211061 1138204.211061 norm=38.974351 +1267212.184569 1135927.184569 norm=37.815341 +1267214.411799 1141230.411799 norm=38.340579 +1267264.232989 1137341.232989 norm=38.457769 +1267274.486221 1140164.486221 norm=38.910153 +1267311.799169 1134821.799169 norm=38.626416 +1267328.242614 1136342.242614 norm=38.236109 +1267364.953950 1139686.953950 norm=38.626416 +1267400.707302 1136484.707302 norm=38.561639 +1267420.742558 1135661.742558 norm=38.144462 +1267467.602955 1141353.602955 norm=38.039453 +1267493.787525 1138685.787525 norm=38.026307 +1267515.010445 1138927.010445 norm=38.561639 +1267534.650140 1133417.650140 norm=38.483763 +1267568.217921 1142825.217921 norm=37.986840 +1267593.109328 1136336.109328 norm=38.961519 +1267595.969931 1140543.969931 norm=38.897301 +1267632.988172 1136887.988172 norm=38.288379 +1267703.348619 1137254.348619 norm=37.469988 +1267722.280136 1138456.280136 norm=38.431758 +1267723.688141 1137824.688141 norm=38.574603 +1267775.684010 1135318.684010 norm=37.828561 +1267813.706565 1137663.706565 norm=37.868192 +1267811.577111 1143699.577111 norm=39.395431 +1267827.418738 1137962.418738 norm=39.547440 +1267853.924897 1137759.924897 norm=39.038443 +1267905.295583 1138441.295583 norm=38.807216 +1267930.960268 1139064.960268 norm=39.127995 +1267974.829458 1137436.829458 norm=37.282704 +1268020.598194 1137555.598194 norm=38.223030 +1268006.255967 1137966.255967 norm=38.379682 +1268055.152325 1137114.152325 norm=37.868192 +1268075.848548 1143545.848548 norm=38.987177 +1268100.919840 1134311.919840 norm=38.431758 +1268132.647191 1137726.647191 norm=38.613469 +1268145.935109 1141505.935109 norm=38.131352 +1268203.060349 1140221.060349 norm=37.841776 +1268238.909856 1132746.909856 norm=37.907783 +1268260.202058 1140512.202058 norm=39.268308 +1268246.736114 1137473.736114 norm=40.049969 +1268253.301365 1137968.301365 norm=40.422766 +1268302.737761 1134853.737761 norm=38.794329 +1268344.616614 1139670.616614 norm=38.548671 +1268404.988617 1135850.988617 norm=38.587563 +1268416.230417 1142952.230417 norm=38.742741 +1268436.117311 1138723.117311 norm=38.431758 +1268475.481735 1136456.481735 norm=39.547440 +1268478.154160 1140392.154160 norm=37.788887 +1268557.539682 1135210.539682 norm=37.603191 +1268561.813865 1141338.813865 norm=37.986840 +1268575.976568 1139443.976568 norm=38.535698 +1268603.538574 1136063.538574 norm=39.166312 +1268626.577658 1140412.577658 norm=38.587563 +1268681.356767 1136947.356767 norm=38.587563 +1268662.255081 1138060.255081 norm=39.774364 +1268721.336671 1138788.336671 norm=38.781439 +1268754.927746 1133516.927746 norm=38.858718 +1268791.354822 1142014.354822 norm=38.431758 +1268804.514679 1134406.514679 norm=38.379682 +1268844.895415 1140769.895415 norm=38.948684 +1268862.857037 1137782.857037 norm=38.131352 +1268896.170881 1139033.170881 norm=38.535698 +1268918.273615 1139547.273615 norm=38.897301 +1268935.691497 1139398.691497 norm=39.166312 +1268967.022751 1135976.022751 norm=38.704005 +1269013.776515 1143779.776515 norm=38.275318 +1269044.944741 1139547.944741 norm=38.223030 +1269057.637882 1138046.637882 norm=39.281039 +1269065.336984 1139517.336984 norm=38.742741 +1269141.306619 1139024.306619 norm=38.768544 +1269129.160696 1136977.160696 norm=39.064050 +1269178.844395 1139603.844395 norm=38.535698 +1269205.942481 1135012.942481 norm=37.696154 +1269246.505549 1144565.505549 norm=38.961519 +1269241.137347 1134709.137347 norm=39.064050 +1269272.064254 1142505.064254 norm=38.871583 +1269308.412990 1138420.412990 norm=38.548671 +1269332.345521 1138991.345521 norm=38.923001 +1269365.480057 1139932.480057 norm=38.729833 +1269409.460467 1139511.460467 norm=38.196859 +1269415.971586 1139672.971586 norm=38.755645 +1269472.772247 1139269.772247 norm=37.496667 +1269506.248975 1138781.248975 norm=38.223030 +1269505.776562 1139214.776562 norm=39.471509 +1269516.914087 1142541.914087 norm=38.845849 +1269584.598021 1140037.598021 norm=37.682887 +1269600.718056 1140599.718056 norm=38.935845 +1269620.256208 1139325.256208 norm=38.755645 +1269627.956836 1138276.956836 norm=39.686270 +1269677.721591 1142707.721591 norm=39.484174 +1269676.691071 1134616.691071 norm=38.392708 +1269769.812475 1142691.812475 norm=37.616486 +1269748.160624 1135379.160624 norm=39.166312 +1269790.289376 1142741.289376 norm=38.078866 +1269837.634924 1136522.634924 norm=38.845849 +1269839.996946 1139037.996946 norm=38.613469 +1269873.851944 1142353.851944 norm=38.716921 +1269908.268471 1138727.268471 norm=37.456642 +1269951.483372 1139892.483372 norm=38.405729 +1269956.554647 1139614.554647 norm=38.832976 +1269988.543897 1141244.543897 norm=39.191836 +1270003.066126 1142173.066126 norm=38.665230 +1270051.744454 1139042.744454 norm=38.742741 +1270082.148678 1144759.148678 norm=37.854986 +1270095.653824 1135547.653824 norm=38.509739 +1270119.749207 1140933.749207 norm=38.496753 +1270150.717605 1140656.717605 norm=39.140772 +1270161.968110 1140805.968110 norm=38.794329 +1270206.815567 1135994.815567 norm=39.749214 +1270211.674864 1145972.674864 norm=39.673669 +1270248.626273 1134969.626273 norm=38.065733 +1270288.671626 1142926.671626 norm=38.807216 +1270309.476769 1141500.476769 norm=38.884444 +1270334.500319 1137671.500319 norm=38.794329 +1270380.420541 1142746.420541 norm=37.947332 +1270422.307166 1140914.307166 norm=37.762415 +1270438.309489 1136472.309489 norm=38.196859 +1270450.032991 1143967.032991 norm=39.496835 +1270482.505620 1139657.505620 norm=37.947332 +1270538.664942 1139757.664942 norm=38.858718 +1270525.846685 1142207.846685 norm=39.012818 +1270564.980807 1146175.980807 norm=38.418745 +1270612.350682 1137234.350682 norm=37.722672 +1270638.788671 1140809.788671 norm=37.881394 +1270684.685473 1140864.685473 norm=37.629775 +1270681.899975 1141488.899975 norm=38.366652 +1270719.969171 1139855.969171 norm=38.078866 +1270752.244634 1141663.244634 norm=39.102430 +1270732.166697 1136242.166697 norm=40.286474 +1270751.315678 1138107.315678 norm=38.935845 +1270825.764416 1146793.764416 norm=39.572718 +1270805.898655 1140547.898655 norm=38.600518 +1270890.906709 1141012.906709 norm=38.522721 +1270898.624766 1139274.624766 norm=38.704005 +1270925.356692 1137908.356692 norm=38.807216 +1270953.144115 1140610.144115 norm=39.408121 +1270972.855788 1143217.855788 norm=39.217343 +1271003.622961 1142124.622961 norm=39.761791 +1271032.825773 1137127.825773 norm=38.196859 +1271073.388735 1140580.388735 norm=39.064050 +1271065.288121 1141662.288121 norm=38.884444 +1271143.968134 1139115.968134 norm=37.616486 +1271172.732624 1142098.732624 norm=38.249183 +1271186.118571 1137798.118571 norm=38.236109 +1271198.255636 1139781.255636 norm=38.781439 +1271241.041229 1142609.041229 norm=38.340579 +1271268.243772 1142091.243772 norm=37.643060 +1271299.177571 1139786.177571 norm=38.871583 +1271299.736357 1142866.736357 norm=39.191836 +1271330.424181 1143796.424181 norm=39.230090 +1271364.004391 1143439.004391 norm=38.444766 +1271396.793828 1140696.793828 norm=39.127995 +1271410.326240 1137098.326240 norm=38.431758 +1271453.342171 1140936.342171 norm=38.948684 +1271484.327127 1140390.327127 norm=37.563280 +1271533.588246 1143381.588246 norm=38.105118 +1271551.017202 1137350.017202 norm=38.548671 +1271569.710184 1146864.710184 norm=38.820098 +1271595.062761 1140827.062761 norm=38.405729 +1271619.846709 1138969.846709 norm=39.038443 +1271627.136560 1137518.136560 norm=38.587563 +1271697.777697 1145866.777697 norm=38.105118 +1271709.322482 1137739.322482 norm=37.589892 +1271750.647287 1141799.647287 norm=38.431758 +1271749.427025 1145679.427025 norm=39.217343 +1271770.237386 1139871.237386 norm=39.166312 +1271800.458599 1138439.458599 norm=38.600518 +1271832.817596 1141072.817596 norm=39.166312 +1271858.281397 1142397.281397 norm=38.742741 +1271911.462726 1141051.462726 norm=38.652296 +1271920.459013 1142032.459013 norm=38.026307 +1271971.575838 1140276.575838 norm=38.561639 +1271949.175170 1140862.175170 norm=38.626416 +1272015.429828 1139683.429828 norm=39.012818 +1272011.937741 1141248.937741 norm=39.824616 +1272051.101591 1140503.101591 norm=38.548671 +1272082.274741 1141993.274741 norm=37.589892 +1272155.218884 1144566.218884 norm=38.144462 +1272142.843067 1141938.843067 norm=38.405729 +1272179.528178 1139679.528178 norm=38.871583 +1272184.498347 1139236.498347 norm=39.064050 +1272224.082027 1141621.082027 norm=38.535698 +1272258.686415 1141373.686415 norm=38.078866 +1272308.858572 1143282.858572 norm=38.236109 +1272310.776976 1141562.776976 norm=38.209946 +1272349.364979 1143979.364979 norm=38.897301 +1272331.624938 1147505.624938 norm=39.560081 +1272380.895286 1135152.895286 norm=38.626416 +1272414.671260 1140032.671260 norm=38.470768 +1272457.052037 1139716.052037 norm=38.483763 +1272453.488802 1145601.488802 norm=39.102430 +1272503.381926 1141494.381926 norm=38.574603 +1272518.348701 1142860.348701 norm=38.353618 +1272563.090186 1141050.090186 norm=37.802116 +1272608.691501 1138849.691501 norm=38.781439 +1272593.973473 1142944.973473 norm=38.652296 +1272634.585419 1145958.585419 norm=38.340579 +1272679.220365 1136122.220365 norm=37.696154 +1272719.298676 1144554.298676 norm=37.894591 +1272725.107342 1142715.107342 norm=38.987177 +1272717.955926 1143855.955926 norm=39.140772 +1272781.138736 1139564.138736 norm=38.392708 +1272811.772508 1141678.772508 norm=38.249183 +1272831.096083 1144072.096083 norm=39.140772 +1272843.753821 1139255.753821 norm=38.418745 +1272881.815608 1140836.815608 norm=39.382737 +1272880.779043 1144750.779043 norm=38.910153 +1272944.339487 1136844.339487 norm=39.509493 +1272918.319014 1144396.319014 norm=38.923001 +1272981.698085 1139564.698085 norm=39.025633 +1273016.847111 1145065.847111 norm=38.013156 +1273044.350937 1143617.350937 norm=37.894591 +1273063.856710 1144994.856710 norm=39.635842 +1273097.590891 1139280.590891 norm=38.405729 +1273137.144750 1141322.144750 norm=37.881394 +1273181.439049 1141746.439049 norm=38.314488 +1273170.104589 1145724.104589 norm=39.357337 +1273191.424457 1141417.424457 norm=39.382737 +1273240.350024 1141326.350024 norm=38.691084 +1273248.042798 1145666.042798 norm=38.314488 +1273295.639428 1144500.639428 norm=38.884444 +1273303.709915 1142471.709915 norm=39.242834 +1273337.246900 1138793.246900 norm=38.704005 +1273379.249435 1145498.249435 norm=38.275318 +1273377.784292 1136242.784292 norm=38.948684 +1273418.253746 1144682.253746 norm=38.897301 +1273461.690248 1143082.690248 norm=38.587563 +1273481.917835 1143769.917835 norm=37.907783 +1273520.718145 1138799.718145 norm=38.820098 +1273516.649253 1144582.649253 norm=39.484174 +1273546.819875 1140744.819875 norm=38.884444 +1273582.181628 1143423.181628 norm=38.613469 +1273616.672467 1143605.672467 norm=38.223030 +1273659.159852 1140134.159852 norm=38.457769 +1273670.646872 1143446.646872 norm=38.275318 +1273687.376187 1142936.376187 norm=38.678159 +1273739.898048 1143278.898048 norm=38.301436 +1273753.524735 1141367.524735 norm=38.457769 +1273775.426169 1145248.426169 norm=39.255573 +1273788.005381 1143616.005381 norm=39.408121 +1273799.017653 1147002.017653 norm=38.613469 +1273862.175918 1136789.175918 norm=38.961519 +1273873.061018 1146131.061018 norm=39.115214 +1273904.764555 1137155.764555 norm=38.013156 +1273963.615653 1143642.615653 norm=37.669616 +1273982.966837 1143304.966837 norm=38.613469 +1273995.855346 1142603.855346 norm=38.288379 +1274026.424598 1145917.424598 norm=38.301436 +1274047.982231 1141114.982231 norm=38.665230 +1274063.680398 1141696.680398 norm=39.610605 +1274058.447002 1146678.447002 norm=38.832976 +1274117.976250 1135498.976250 norm=39.127995 +1274161.275244 1142498.275244 norm=38.871583 +1274177.470442 1143706.470442 norm=38.183766 +1274223.477896 1141929.477896 norm=37.934153 +1274236.108446 1144006.108446 norm=39.191836 +1274269.672107 1144654.672107 norm=38.457769 +1274283.905765 1143047.905765 norm=39.484174 +1274301.574070 1144524.574070 norm=38.013156 +1274374.875625 1147422.875625 norm=37.107951 +1274391.384932 1136832.384932 norm=39.076847 +1274378.191993 1146749.191993 norm=38.639358 +1274416.876373 1141543.876373 norm=38.327536 +1274444.250266 1142778.250266 norm=38.444766 +1274473.572848 1143039.572848 norm=38.961519 +1274505.587688 1142745.587688 norm=39.306488 +1274507.817705 1141900.817705 norm=38.910153 +1274555.842123 1145855.842123 norm=38.845849 +1274577.093576 1139056.093576 norm=38.144462 +1274626.198378 1142330.198378 norm=38.379682 +1274632.268231 1146357.268231 norm=39.686270 +1274621.095950 1145467.095950 norm=39.446166 +1274675.529333 1143173.529333 norm=38.884444 +1274717.522950 1143505.522950 norm=38.431758 +1274729.845508 1144494.845508 norm=37.960506 +1274801.992750 1143681.992750 norm=37.934153 +1274811.878289 1148534.878289 norm=38.353618 +1274827.124386 1145051.124386 norm=38.678159 +1274835.985540 1141231.985540 norm=38.729833 +1274875.523985 1141642.523985 norm=38.522721 +1274903.675750 1139218.675750 norm=38.288379 +1274926.604358 1147152.604358 norm=38.742741 +1274951.593426 1142235.593426 norm=38.379682 +1274984.954463 1147660.954463 norm=39.076847 +1275001.262249 1145338.262249 norm=39.484174 +1275024.994107 1143931.994107 norm=38.871583 +1275055.733720 1141649.733720 norm=39.370039 +1275065.873049 1145821.873049 norm=39.242834 +1275114.588497 1137609.588497 norm=38.496753 +1275150.171303 1143446.171303 norm=39.153544 +1275164.602746 1149334.602746 norm=38.845849 +1275190.582629 1144452.582629 norm=38.832976 +1275200.191669 1142469.191669 norm=39.153544 +1275239.834979 1140666.834979 norm=39.597980 +1275248.269853 1146276.269853 norm=38.600518 +1275322.872252 1143217.872252 norm=38.613469 +1275305.258540 1143957.258540 norm=38.897301 +1275374.261545 1146419.261545 norm=38.483763 +1275380.547502 1139994.547502 norm=37.616486 +1275441.818857 1149969.818857 norm=37.828561 +1275452.721170 1139001.721170 norm=38.496753 +1275447.771295 1147837.771295 norm=38.897301 +1275470.704257 1143450.704257 norm=38.444766 +1275536.129296 1144396.129296 norm=38.405729 +1275534.263494 1146426.263494 norm=39.433488 +1275554.124131 1143955.124131 norm=38.118237 +1275591.404309 1144732.404309 norm=38.418745 +1275629.010432 1143271.010432 norm=38.444766 +1275646.069793 1146319.069793 norm=38.832976 +1275669.497521 1144935.497521 norm=39.331921 +1275682.665924 1145454.665924 norm=38.626416 +1275715.429851 1145032.429851 norm=39.012818 +1275745.627111 1147057.627111 norm=38.897301 +1275787.680296 1142768.680296 norm=38.639358 +1275797.659741 1141736.659741 norm=38.052595 +1275852.406869 1147110.406869 norm=38.509739 +1275841.253885 1145658.253885 norm=39.534795 +1275875.239491 1148665.239491 norm=38.353618 +1275920.636645 1142160.636645 norm=38.392708 +1275915.487590 1150878.487590 norm=39.648455 +1275942.942051 1143413.942051 norm=39.089641 +1275970.832839 1146127.832839 norm=39.648455 +1275998.674333 1142197.674333 norm=38.639358 +1276035.618186 1147454.618186 norm=38.262253 +1276068.621760 1145480.621760 norm=38.327536 +1276097.848366 1142473.848366 norm=38.444766 +1276121.863442 1144077.863442 norm=38.496753 +1276136.304251 1146380.304251 norm=38.704005 +1276167.727164 1143300.727164 norm=39.370039 +1276177.189686 1146832.189686 norm=38.535698 +1276246.495809 1148827.495809 norm=37.854986 +1276255.331272 1145237.331272 norm=38.948684 +1276264.444737 1144289.444737 norm=38.781439 +1276294.532788 1145157.532788 norm=39.711459 +1276284.698631 1146360.698631 norm=39.344631 +1276351.637389 1147480.637389 norm=38.691084 +1276381.521284 1144332.521284 norm=38.845849 +1276392.591798 1144524.591798 norm=38.457769 +1276432.375820 1145536.375820 norm=38.561639 +1276459.348813 1147162.348813 norm=38.144462 +1276483.418599 1144444.418599 norm=38.392708 +1276519.095658 1143343.095658 norm=38.961519 +1276518.847031 1144077.847031 norm=39.089641 +1276544.159863 1148720.159863 norm=38.431758 +1276593.281826 1143111.281826 norm=38.444766 +1276625.140260 1145287.140260 norm=38.366652 +1276645.502548 1146175.502548 norm=38.223030 +1276668.394015 1153050.394015 norm=39.661064 +1276672.790016 1143201.790016 norm=38.665230 +1276723.069478 1144197.069478 norm=38.366652 +1276727.135875 1145916.135875 norm=39.140772 +1276762.259460 1150652.259460 norm=38.091994 +1276802.414283 1142699.414283 norm=37.960506 +1276827.245090 1146899.245090 norm=38.845849 +1276821.443139 1146320.443139 norm=39.471509 +1276853.693443 1152814.693443 norm=40.087405 +1276858.012946 1145083.012946 norm=39.899875 +1276926.296402 1143594.296402 norm=37.788887 +1276943.826613 1145976.826613 norm=38.626416 +1276967.557306 1144705.557306 norm=38.961519 +1276990.969232 1151831.969232 norm=38.405729 +1277034.378470 1145884.378470 norm=38.000000 +1277061.633288 1144106.633288 norm=38.118237 +1277087.948094 1147598.948094 norm=38.923001 +1277098.145646 1151301.145646 norm=39.446166 +1277101.214308 1151223.214308 norm=38.626416 +1277159.634926 1148051.634926 norm=39.076847 +1277162.468933 1143077.468933 norm=38.392708 +1277221.036735 1147409.036735 norm=39.064050 +1277219.135984 1149616.135984 norm=38.794329 +1277244.706334 1142162.706334 norm=38.366652 +1277287.533056 1149537.533056 norm=38.496753 +1277306.555203 1147690.555203 norm=38.961519 +1277320.409712 1146956.409712 norm=39.140772 +1277347.461121 1147686.461121 norm=39.217343 +1277372.092710 1148740.092710 norm=38.196859 +1277419.769737 1145019.769737 norm=38.000000 +1277443.368746 1149804.368746 norm=38.781439 +1277459.018102 1149177.018102 norm=38.314488 +1277481.510268 1146484.510268 norm=39.153544 +1277513.590135 1148133.590135 norm=38.223030 +1277537.270094 1149820.270094 norm=39.560081 +1277524.868988 1146012.868988 norm=39.255573 +1277588.357939 1146347.357939 norm=39.786933 +1277577.627324 1144768.627324 norm=38.897301 +1277642.837879 1150452.837879 norm=38.131352 +1277677.239286 1144416.239286 norm=38.496753 +1277690.192792 1149754.192792 norm=37.536649 +1277753.901694 1147872.901694 norm=37.389838 +1277751.107825 1151159.107825 norm=38.340579 +1277763.874606 1147799.874606 norm=38.353618 +1277786.440576 1150057.440576 norm=38.807216 +1277815.279136 1146040.279136 norm=39.127995 +1277827.482671 1148932.482671 norm=38.807216 +1277867.647877 1151085.647877 norm=38.131352 +1277906.684352 1147664.684352 norm=38.897301 +1277898.971312 1148795.971312 norm=38.223030 +1277953.128249 1148407.128249 norm=38.626416 +1277975.163685 1146639.163685 norm=38.768544 +1277997.352747 1149102.352747 norm=39.496835 +1277991.073902 1150121.073902 norm=38.091994 +1278065.048459 1148111.048459 norm=38.405729 +1278060.078798 1147406.078798 norm=38.729833 +1278097.171004 1150345.171004 norm=38.948684 +1278111.001964 1147528.001964 norm=38.444766 +1278155.692493 1148431.692493 norm=39.076847 +1278147.869912 1148746.869912 norm=39.038443 +1278193.128308 1150802.128308 norm=39.408121 +1278201.363876 1144726.363876 norm=39.912404 +1278221.719451 1151972.719451 norm=39.446166 +1278265.163257 1147909.163257 norm=38.131352 +1278334.358675 1148874.358675 norm=38.522721 +1278299.276256 1147848.276256 norm=39.204592 +1278342.930114 1147058.930114 norm=38.522721 +1278378.639999 1147852.639999 norm=38.832976 +1278397.945658 1149740.945658 norm=37.920970 +1278444.648606 1151911.648606 norm=38.249183 +1278448.543828 1147218.543828 norm=38.013156 +1278490.969322 1147604.969322 norm=39.268308 +1278488.362905 1152595.362905 norm=38.405729 +1278556.179506 1147729.179506 norm=37.749172 +1278548.606244 1148898.606244 norm=38.587563 +1278589.597397 1150706.597397 norm=38.236109 +1278599.941664 1145426.941664 norm=39.000000 +1278632.610803 1145625.610803 norm=38.236109 +1278668.483031 1150651.483031 norm=38.548671 +1278680.691349 1150767.691349 norm=39.635842 +1278680.498861 1147768.498861 norm=39.025633 +1278735.926432 1144373.926432 norm=38.974351 +1278732.546842 1150657.546842 norm=39.686270 +1278752.406696 1147337.406696 norm=38.157568 +1278839.225347 1150749.225347 norm=37.947332 +1278847.527030 1145807.527030 norm=38.548671 +1278850.073082 1153088.073082 norm=39.572718 +1278847.605707 1146896.605707 norm=39.496835 +1278885.729480 1149097.729480 norm=39.140772 +1278925.636047 1149073.636047 norm=38.858718 +1278948.732673 1156159.732673 norm=39.064050 +1278963.062362 1149462.062362 norm=38.535698 +1279020.170786 1150586.170786 norm=38.483763 +1279030.326650 1143726.326650 norm=38.457769 +1279079.029492 1151732.029492 norm=37.986840 +1279088.076137 1145843.076137 norm=38.353618 +1279106.196100 1152256.196100 norm=38.897301 +1279126.406272 1148276.406272 norm=38.691084 +1279157.315043 1154225.315043 norm=38.832976 +1279170.956404 1147046.956404 norm=39.331921 +1279187.565212 1151875.565212 norm=39.484174 +1279225.428634 1143002.428634 norm=39.140772 +1279235.151729 1151137.151729 norm=38.820098 +1279293.877434 1147440.877434 norm=38.807216 +1279296.139291 1150210.139291 norm=38.935845 +1279332.657411 1148101.657411 norm=39.217343 +1279332.590787 1151689.590787 norm=39.064050 +1279362.861237 1145570.861237 norm=39.089641 +1279400.006264 1153712.006264 norm=38.496753 +1279425.640612 1151564.640612 norm=38.923001 +1279445.473209 1148814.473209 norm=38.807216 +1279484.545432 1146810.545432 norm=38.716921 +1279495.861069 1152135.861069 norm=38.587563 +1279525.040074 1148101.040074 norm=38.678159 +1279545.890610 1150454.890610 norm=39.496835 +1279558.860346 1146621.860346 norm=38.742741 +1279615.698164 1152454.698164 norm=39.724048 +1279599.629691 1145603.629691 norm=39.496835 +1279673.535612 1155148.535612 norm=38.379682 +1279688.577997 1148110.577997 norm=38.000000 +1279727.152534 1152397.152534 norm=38.820098 +1279708.086105 1146191.086105 norm=38.639358 +1279772.032303 1150494.032303 norm=38.431758 +1279786.319360 1150583.319360 norm=38.340579 +1279796.183388 1151916.183388 norm=39.420807 +1279813.286073 1147491.286073 norm=39.127995 +1279871.886413 1150195.886413 norm=38.639358 +1279888.996643 1152271.996643 norm=39.089641 +1279885.664578 1152369.664578 norm=39.306488 +1279926.617051 1147761.617051 norm=38.781439 +1279945.804910 1149511.804910 norm=38.288379 +1280008.167901 1148597.167901 norm=39.344631 +1279980.156486 1153570.156486 norm=39.255573 +1280020.865185 1147158.865185 norm=38.379682 +1280078.261637 1152390.261637 norm=38.392708 +1280071.678422 1148162.678422 norm=39.471509 +1280101.744533 1151046.744533 norm=39.319207 +1280103.129169 1146756.129169 norm=39.166312 +1280154.634928 1149605.634928 norm=38.755645 +1280175.571780 1154923.571780 norm=39.217343 +1280184.631261 1153960.631261 norm=38.961519 +1280218.337430 1146803.337430 norm=39.115214 +1280243.047176 1152474.047176 norm=38.431758 +1280290.201740 1150697.201740 norm=39.089641 +1280279.317775 1151445.317775 norm=39.774364 +1280309.935007 1146670.935007 norm=38.418745 +1280362.181573 1154380.181573 norm=38.470768 +1280372.707949 1146758.707949 norm=38.561639 +1280400.819202 1153129.819202 norm=38.923001 +1280434.739521 1148714.739521 norm=38.183766 +1280467.194347 1152768.194347 norm=38.574603 +1280462.540303 1147057.540303 norm=39.824616 +1280469.401675 1157441.401675 norm=39.408121 +1280519.566628 1148868.566628 norm=39.166312 +1280541.422485 1147919.422485 norm=38.897301 +1280551.127550 1151158.127550 norm=39.217343 +1280588.140260 1153058.140260 norm=38.781439 +1280634.011142 1147368.011142 norm=38.262253 +1280664.097835 1151564.097835 norm=38.209946 +1280693.309186 1151209.309186 norm=38.716921 +1280693.820539 1155924.820539 norm=38.897301 +1280707.725053 1149059.725053 norm=39.395431 +1280723.882073 1150144.882073 norm=39.799497 +1280742.864044 1148678.864044 norm=38.845849 +1280799.872639 1151791.872639 norm=38.574603 +1280800.910607 1151705.910607 norm=39.191836 +1280858.854022 1153327.854022 norm=38.974351 +1280861.085593 1148639.085593 norm=39.166312 +1280882.888599 1150575.888599 norm=38.652296 +1280925.095909 1151231.095909 norm=38.157568 +1280963.750618 1150288.750618 norm=39.560081 +1280925.774420 1151029.774420 norm=40.298883 +1280982.023663 1149586.023663 norm=38.418745 +1281012.258344 1154281.258344 norm=38.781439 +1281025.947238 1152935.947238 norm=39.610605 +1281056.006434 1149539.006434 norm=39.230090 +1281098.371123 1150612.371123 norm=38.431758 +1281122.242506 1152040.242506 norm=38.910153 +1281125.210618 1152584.210618 norm=39.585351 +1281146.903151 1152573.903151 norm=39.395431 +1281174.613581 1151483.613581 norm=38.974351 +1281210.436463 1153736.436463 norm=38.613469 +1281244.416341 1150246.416341 norm=38.223030 +1281264.681011 1146232.681011 norm=38.118237 +1281322.720125 1150826.720125 norm=37.416574 +1281323.930769 1155333.930769 norm=37.616486 +1281361.040143 1146839.040143 norm=38.340579 +1281349.526235 1153487.526235 norm=38.716921 +1281386.330607 1155240.330607 norm=39.534795 +1281378.016448 1154114.016448 norm=39.899875 +1281418.762650 1151596.762650 norm=38.961519 +1281454.854644 1153117.854644 norm=38.858718 +1281469.417407 1155157.417407 norm=39.446166 +1281475.677047 1148338.677047 norm=39.153544 +1281516.644024 1151361.644024 norm=39.560081 +1281543.265295 1149618.265295 norm=39.076847 +1281566.358233 1152758.358233 norm=39.471509 +1281585.558910 1154136.558910 norm=38.742741 +1281641.223721 1153839.223721 norm=38.600518 +1281623.503025 1152491.503025 norm=39.281039 +1281696.820815 1148380.820815 norm=38.652296 +1281672.486163 1154278.486163 norm=38.845849 +1281740.512302 1153651.512302 norm=38.405729 +1281733.932075 1149396.932075 norm=38.144462 +1281798.912387 1154443.912387 norm=38.353618 +1281798.768746 1151389.768746 norm=38.613469 +1281829.033513 1152545.033513 norm=38.871583 +1281840.553878 1150244.553878 norm=38.052595 +1281899.506430 1151936.506430 norm=38.704005 +1281885.416434 1150078.416434 norm=39.496835 +1281896.716787 1153150.716787 norm=38.897301 +1281952.596933 1151649.596933 norm=38.039453 +1281978.009087 1153304.009087 norm=38.431758 +1282005.345930 1153774.345930 norm=39.293765 +1281981.430636 1153096.430636 norm=39.585351 +1282034.032131 1151059.032131 norm=39.471509 +1282044.915977 1158039.915977 norm=39.597980 +1282069.446112 1150873.446112 norm=39.433488 +1282109.267092 1154095.267092 norm=38.026307 +1282175.639805 1148329.639805 norm=37.656341 +1282173.264236 1155007.264236 norm=39.204592 +1282158.313659 1151589.313659 norm=38.820098 +1282216.951669 1157251.951669 norm=38.665230 +1282217.827952 1152383.827952 norm=38.807216 +1282283.119013 1155965.119013 norm=38.288379 +1282270.870401 1151047.870401 norm=38.522721 +1282315.181877 1155490.181877 norm=39.102430 +1282306.058579 1153481.058579 norm=39.076847 +1282346.765616 1154415.765616 norm=39.471509 +1282359.245203 1149949.245203 norm=39.949969 +1282369.443677 1151682.443677 norm=39.686270 +1282419.329166 1156191.329166 norm=38.987177 +1282453.175911 1153132.175911 norm=38.548671 +1282457.432924 1152424.432924 norm=38.262253 +1282525.134028 1154948.134028 norm=38.509739 +1282505.701042 1151203.701042 norm=38.832976 +1282554.918550 1153878.918550 norm=37.255872 +1282607.596237 1148340.596237 norm=38.561639 +1282596.255505 1153717.255505 norm=38.340579 +1282629.092034 1150744.092034 norm=39.268308 +1282638.766968 1156982.766968 norm=38.665230 +1282655.974891 1153384.974891 norm=39.255573 +1282687.369048 1151526.369048 norm=38.665230 +1282695.001056 1154331.001056 norm=39.484174 +1282741.449919 1155496.449919 norm=38.091994 +1282782.691237 1155571.691237 norm=38.974351 +1282763.538043 1150623.538043 norm=39.496835 +1282805.573071 1152355.573071 norm=38.781439 +1282841.224105 1153165.224105 norm=38.626416 +1282853.015308 1154973.015308 norm=38.691084 +1282898.999183 1156487.999183 norm=38.781439 +1282897.417991 1152101.417991 norm=38.923001 +1282923.561918 1157088.561918 norm=38.678159 +1282953.853300 1151896.853300 norm=40.162171 +1282932.357918 1153430.357918 norm=40.261644 +1282990.239079 1154635.239079 norm=38.626416 +1283026.132604 1155166.132604 norm=38.948684 +1283030.180026 1159568.180026 norm=39.281039 +1283090.699765 1148580.699765 norm=38.626416 +1283081.955972 1157863.955972 norm=39.204592 +1283128.547782 1150302.547782 norm=37.907783 +1283161.134311 1154046.134311 norm=39.191836 +1283151.494515 1156043.494515 norm=39.191836 +1283186.659692 1153604.659692 norm=38.236109 +1283229.614399 1156946.614399 norm=38.078866 +1283266.630708 1153106.630708 norm=38.444766 +1283263.849087 1155711.849087 norm=39.458839 +1283257.219460 1154729.219460 norm=38.935845 +1283323.511398 1155411.511398 norm=38.948684 +1283317.219087 1157655.219087 norm=38.961519 +1283367.674069 1155292.674069 norm=39.102430 +1283372.414351 1154709.414351 norm=39.217343 +1283394.599913 1154206.599913 norm=39.509493 +1283422.248491 1153484.248491 norm=38.807216 +1283441.311319 1151518.311319 norm=38.183766 +1283503.505183 1152057.505183 norm=38.327536 +1283513.963697 1159057.963697 norm=38.509739 +1283511.353973 1156602.353973 norm=39.446166 +1283553.394621 1154015.394621 norm=38.639358 +1283557.213400 1155308.213400 norm=39.102430 +1283594.186101 1155472.186101 norm=38.665230 +1283612.980757 1154745.980757 norm=38.366652 +1283646.027681 1152323.027681 norm=38.820098 +1283657.717746 1157051.717746 norm=39.560081 +1283672.110373 1155351.110373 norm=38.935845 +1283719.920984 1150575.920984 norm=38.652296 +1283731.603878 1156674.603878 norm=39.623226 +1283738.026622 1156178.026622 norm=39.166312 +1283783.571165 1156834.571165 norm=38.639358 +1283828.590765 1157208.590765 norm=38.183766 +1283834.574479 1155972.574479 norm=38.613469 +1283850.535304 1157002.535304 norm=38.974351 +1283875.207174 1158315.207174 norm=39.509493 +1283876.485025 1156806.485025 norm=38.794329 +1283933.915013 1149632.915013 norm=38.923001 +1283938.723922 1157402.723922 norm=39.547440 +1283952.276852 1158107.276852 norm=38.820098 +1283996.218067 1157348.218067 norm=39.191836 +1284023.538567 1153575.538567 norm=39.774364 +1284002.996237 1153945.996237 norm=39.458839 +1284068.157268 1152126.157268 norm=38.288379 +1284097.334383 1159043.334383 norm=38.768544 +1284102.927778 1150122.927778 norm=38.457769 +1284142.051740 1156707.051740 norm=39.230090 +1284157.938262 1153404.938262 norm=37.828561 +1284198.764256 1161743.764256 norm=37.960506 +1284216.981783 1152251.981783 norm=39.686270 +1284207.325059 1155266.325059 norm=39.204592 +1284237.365803 1159069.365803 norm=39.293765 +1284265.157045 1156456.157045 norm=38.832976 +1284292.369725 1156069.369725 norm=39.012818 +1284306.916840 1154183.916840 norm=38.716921 +1284367.861037 1156491.861037 norm=38.157568 +1284382.345667 1156584.345667 norm=37.722672 +1284406.621855 1154178.621855 norm=38.948684 +1284393.088700 1155297.088700 norm=39.306488 +1284443.624991 1158454.624991 norm=38.405729 +1284456.578104 1155636.578104 norm=38.105118 +1284508.902018 1157592.902018 norm=38.431758 +1284503.910953 1155895.910953 norm=38.600518 +1284521.101660 1159534.101660 norm=39.191836 +1284561.929087 1158534.929087 norm=38.626416 +1284581.905285 1155985.905285 norm=39.179076 +1284574.948633 1152532.948633 norm=39.585351 +1284607.175482 1158028.175482 norm=38.418745 +1284663.663640 1156971.663640 norm=38.768544 +1284666.536028 1155339.536028 norm=38.366652 +1284716.045501 1159667.045501 norm=39.357337 +1284689.782853 1157876.782853 norm=38.600518 +1284760.188638 1154125.188638 norm=38.353618 +1284764.566487 1156121.566487 norm=38.457769 +1284790.592572 1155208.592572 norm=38.288379 +1284805.106393 1157394.106393 norm=39.433488 +1284824.099353 1156946.099353 norm=38.522721 +1284874.092869 1159414.092869 norm=38.716921 +1284872.121927 1154509.121927 norm=38.961519 +1284911.476801 1157496.476801 norm=38.431758 +1284905.238217 1155236.238217 norm=38.470768 +1284956.783409 1159140.783409 norm=39.949969 +1284941.002824 1154257.002824 norm=38.574603 +1285008.220509 1157241.220509 norm=37.894591 +1285015.998136 1161118.998136 norm=38.366652 +1285057.812588 1157994.812588 norm=38.392708 +1285081.977341 1154216.977341 norm=38.039453 +1285087.593164 1159282.593164 norm=38.974351 +1285086.307802 1155897.307802 norm=38.974351 +1285154.595542 1156231.595542 norm=38.884444 +1285136.860427 1156350.860427 norm=38.418745 +1285209.969502 1157947.969502 norm=38.794329 +1285195.406394 1159721.406394 norm=39.076847 +1285205.470875 1156588.470875 norm=39.446166 +1285238.578626 1160892.578626 norm=39.711459 +1285281.476594 1154349.476594 norm=38.691084 +1285282.542369 1158091.542369 norm=38.987177 +1285321.287365 1152744.287365 norm=38.366652 +1285351.119676 1159783.119676 norm=38.431758 +1285364.783590 1155519.783590 norm=38.948684 +1285387.838745 1160131.838745 norm=39.127995 +1285399.565271 1152857.565271 norm=38.987177 +1285430.559453 1160493.559453 norm=39.038443 +1285475.218653 1155776.218653 norm=38.665230 +1285486.853028 1160076.853028 norm=38.794329 +1285497.383002 1156142.383002 norm=38.652296 +1285534.507464 1157802.507464 norm=39.064050 +1285540.463535 1153961.463535 norm=38.327536 +1285574.605275 1156764.605275 norm=38.807216 +1285604.183930 1155881.183930 norm=38.948684 +1285616.471144 1159898.471144 norm=39.102430 +1285624.527948 1157339.527948 norm=39.012818 +1285667.694740 1159638.694740 norm=38.275318 +1285705.795779 1159342.795779 norm=38.483763 +1285703.543309 1155083.543309 norm=39.560081 +1285705.236958 1155162.236958 norm=39.761791 +1285757.956314 1161194.956314 norm=38.327536 +1285784.663587 1157040.663587 norm=38.170669 +1285819.297499 1158465.297499 norm=38.288379 +1285834.581312 1155249.581312 norm=38.275318 +1285868.100722 1157522.100722 norm=38.457769 +1285880.845404 1156140.845404 norm=38.897301 +1285898.651480 1155471.651480 norm=39.051248 +1285904.001836 1163451.001836 norm=38.807216 +1285928.572635 1155217.572635 norm=39.255573 +1285967.433436 1156995.433436 norm=38.691084 +1285979.291654 1158377.291654 norm=39.686270 +1286003.458324 1159518.458324 norm=38.665230 +1286033.496774 1154620.496774 norm=38.600518 +1286061.540498 1159797.540498 norm=39.076847 +1286057.959406 1156663.959406 norm=38.470768 +1286134.662623 1159375.662623 norm=37.947332 +1286134.595828 1155573.595828 norm=38.807216 +1286143.810874 1159082.810874 norm=39.153544 +1286158.810049 1154972.810049 norm=38.768544 +1286186.597741 1156463.597741 norm=38.845849 +1286204.645641 1160970.645641 norm=38.948684 +1286227.674456 1156604.674456 norm=39.064050 +1286264.360269 1162523.360269 norm=37.775654 +1286323.776516 1157138.776516 norm=38.353618 +1286303.969381 1156318.969381 norm=39.281039 +1286326.325320 1159792.325320 norm=38.052595 +1286373.723766 1156230.723766 norm=38.755645 +1286389.217213 1158899.217213 norm=37.775654 +1286410.630986 1157535.630986 norm=38.275318 +1286423.120023 1154669.120023 norm=38.301436 +1286456.727619 1158254.727619 norm=38.871583 +1286463.904711 1160111.904711 norm=38.858718 +1286524.685243 1159251.685243 norm=38.288379 +1286500.351022 1158328.351022 norm=39.962482 +1286505.813325 1156437.813325 norm=39.496835 +1286545.973261 1160421.973261 norm=38.144462 +1286603.431190 1156313.431190 norm=38.923001 +1286600.267760 1155779.267760 norm=38.897301 +1286616.867072 1157295.867072 norm=39.382737 +1286650.150979 1161832.150979 norm=38.457769 +1286671.782544 1156241.782544 norm=38.613469 +1286711.990369 1162720.990369 norm=38.353618 +1286719.520743 1155346.520743 norm=39.064050 +1286733.482714 1160674.482714 norm=38.236109 +1286790.510990 1157789.510990 norm=38.131352 +1286794.353767 1158482.353767 norm=39.736633 +1286768.104384 1155162.104384 norm=39.025633 +1286848.535681 1160761.535681 norm=38.249183 +1286856.357939 1158118.357939 norm=38.457769 +1286881.470304 1157864.470304 norm=38.522721 +1286903.136592 1158737.136592 norm=38.626416 +1286931.342548 1154421.342548 norm=38.183766 +1286946.393912 1158716.393912 norm=38.262253 +1286984.364121 1159495.364121 norm=38.910153 +1286989.286666 1156168.286666 norm=38.820098 +1287028.079340 1156583.079340 norm=38.431758 +1287044.915445 1162981.915445 norm=38.871583 +1287074.043901 1154104.043901 norm=37.934153 +1287094.530382 1160648.530382 norm=38.366652 +1287114.180108 1159076.180108 norm=38.183766 +1287139.404940 1162360.404940 norm=39.204592 +1287126.036681 1155006.036681 norm=39.433488 +1287163.260076 1157932.260076 norm=39.509493 +1287171.799462 1158261.799462 norm=40.249224 +1287181.901789 1157942.901789 norm=39.166312 +1287263.300464 1156759.300464 norm=38.144462 +1287267.517595 1164156.517595 norm=38.613469 +1287303.685408 1155818.685408 norm=38.013156 +1287315.556478 1161426.556478 norm=38.755645 +1287336.322932 1156474.322932 norm=39.000000 +1287348.716500 1157772.716500 norm=38.157568 +1287396.102104 1157995.102104 norm=38.470768 +1287395.656128 1160365.656128 norm=39.000000 +1287433.084308 1158385.084308 norm=38.013156 +1287477.704681 1159565.704681 norm=38.379682 +1287478.614007 1157286.614007 norm=38.652296 +1287492.211247 1158802.211247 norm=39.191836 +1287510.840503 1161187.840503 norm=39.585351 +1287519.024614 1156841.024614 norm=39.496835 +1287540.393782 1156295.393782 norm=39.572718 +1287585.921187 1162544.921187 norm=38.794329 +1287620.471165 1156768.471165 norm=39.648455 +1287598.338219 1160132.338219 norm=39.255573 +1287671.313577 1157277.313577 norm=38.678159 +1287666.315279 1161946.315279 norm=38.470768 +1287705.440525 1156604.440525 norm=38.845849 +1287731.694833 1158967.694833 norm=38.587563 +1287746.693445 1157757.693445 norm=38.613469 +1287767.443442 1158490.443442 norm=37.669616 +1287805.929150 1158651.929150 norm=38.379682 +1287806.862472 1157231.862472 norm=38.716921 +1287837.560737 1161087.560737 norm=38.431758 +1287861.691177 1159050.691177 norm=38.574603 +1287909.132853 1161160.132853 norm=38.301436 +1287897.265902 1159015.265902 norm=38.392708 +1287955.547081 1158453.547081 norm=38.431758 +1287951.534240 1160533.534240 norm=38.858718 +1287970.080088 1160671.080088 norm=38.923001 +1287999.212189 1159574.212189 norm=38.496753 +1288014.813520 1154544.813520 norm=38.509739 +1288046.667703 1158913.667703 norm=38.781439 +1288070.173665 1159293.173665 norm=38.742741 +1288082.498052 1161126.498052 norm=38.897301 +1288102.130251 1158833.130251 norm=38.444766 +1288149.896598 1162167.896598 norm=38.858718 +1288147.873973 1157000.873973 norm=39.370039 +1288155.592780 1155290.592780 norm=38.496753 +1288200.721569 1159324.721569 norm=38.522721 +1288220.758619 1164953.758619 norm=39.153544 +1288225.244815 1155554.244815 norm=38.652296 +1288251.087258 1162056.087258 norm=38.897301 +1288278.764425 1161220.764425 norm=38.871583 +1288314.796275 1159006.796275 norm=38.418745 +1288347.997053 1156400.997053 norm=39.064050 +1288344.483565 1158898.483565 norm=38.845849 +1288382.271026 1159972.271026 norm=38.379682 +1288407.783219 1161543.783219 norm=38.183766 +1288431.528350 1159059.528350 norm=38.379682 +1288467.689168 1158208.689168 norm=38.561639 +1288463.370442 1159602.370442 norm=39.076847 +1288486.990016 1160977.990016 norm=37.589892 +1288534.721336 1159451.721336 norm=39.038443 +1288522.989299 1158426.989299 norm=39.242834 +1288565.124012 1160041.124012 norm=39.000000 +1288592.061433 1155705.061433 norm=38.379682 +1288607.278743 1158600.278743 norm=38.444766 +1288635.577904 1161443.577904 norm=37.854986 +1288673.470196 1158812.470196 norm=38.366652 +1288664.297705 1161255.297705 norm=38.366652 +1288692.484063 1159184.484063 norm=39.089641 +1288720.295245 1159871.295245 norm=38.781439 +1288745.054378 1159143.054378 norm=38.781439 +1288768.520041 1159217.520041 norm=39.089641 +1288774.651513 1156893.651513 norm=38.961519 +1288799.148787 1158948.148787 norm=39.064050 +1288839.941503 1162443.941503 norm=38.483763 +1288843.231889 1160093.231889 norm=39.025633 +1288875.636005 1159950.636005 norm=38.626416 +1288898.789007 1158628.789007 norm=38.987177 +1288923.120291 1159463.120291 norm=38.665230 +1288947.537317 1160036.537317 norm=38.561639 +1288961.462524 1155533.462524 norm=38.948684 +1288986.370793 1159286.370793 norm=38.470768 +1289005.557226 1164762.557226 norm=38.704005 +1289012.598726 1161761.598726 norm=39.242834 +1289065.109287 1157260.109287 norm=38.236109 +1289071.289407 1153890.289407 norm=38.196859 +1289124.540473 1165261.540473 norm=38.509739 +1289112.311840 1159317.311840 norm=38.379682 +1289153.771001 1160290.771001 norm=38.781439 +1289172.072359 1158579.072359 norm=38.170669 +1289195.511620 1161351.511620 norm=38.820098 +1289206.100438 1162366.100438 norm=38.223030 +1289258.678578 1156092.678578 norm=38.716921 +1289238.663398 1159847.663398 norm=39.661064 +1289272.626729 1159590.626729 norm=38.078866 +1289304.589152 1159992.589152 norm=38.418745 +1289348.959917 1162161.959917 norm=38.652296 +1289332.283362 1156717.283362 norm=38.768544 +1289382.234684 1160831.234683 norm=38.483763 +1289387.638651 1160029.638651 norm=37.986840 +1289450.320898 1161457.320898 norm=38.262253 +1289423.635233 1160395.635233 norm=39.089641 +1289448.462164 1162067.462164 norm=38.236109 +1289489.581818 1161747.581818 norm=39.357337 +1289493.700026 1160195.700026 norm=38.626416 +1289525.221233 1159263.221233 norm=39.230090 +1289528.943106 1157723.943106 norm=39.306488 +1289561.345396 1160430.345396 norm=39.076847 +1289585.491159 1161082.491159 norm=38.353618 +1289638.284402 1160698.284402 norm=38.000000 +1289632.668130 1158883.668130 norm=38.065733 +1289677.085988 1158095.085988 norm=37.973675 +1289700.840022 1159359.840022 norm=39.064050 +1289692.090873 1160822.090873 norm=38.301436 +1289746.317987 1158423.317987 norm=38.704005 +1289740.040885 1164441.040885 norm=38.665230 +1289787.566178 1160883.566178 norm=38.820098 +1289772.356574 1159378.356574 norm=39.102430 +1289810.068470 1160289.068470 norm=38.755645 +1289846.629492 1162133.629492 norm=38.444766 +1289849.148637 1156944.148637 norm=39.012818 +1289868.565574 1163516.565574 norm=38.832976 +1289905.751720 1160288.751720 norm=38.781439 +1289910.240293 1160772.240293 norm=37.854986 +1289992.334978 1159058.334978 norm=38.974351 +1289938.706087 1162278.706087 norm=38.884444 +1289995.882668 1157447.882668 norm=38.196859 +1290034.421624 1162021.421624 norm=38.444766 +1290063.346886 1157015.346886 norm=38.522721 +1290023.960075 1157999.960075 norm=39.937451 +1290071.358637 1159854.358637 norm=39.874804 +1290074.746522 1165258.746522 norm=38.691084 +1290166.623199 1157576.623199 norm=38.209946 +1290158.324014 1161402.324014 norm=38.961519 +1290156.033301 1161176.033301 norm=38.639358 +1290198.058990 1157576.058990 norm=37.589892 +1290253.589210 1158755.589210 norm=37.828561 +1290229.061832 1164642.061832 norm=37.616486 +1290294.972726 1159208.972726 norm=37.815341 +1290293.983231 1164236.983231 norm=38.039453 +1290310.072882 1156095.072882 norm=38.392708 +1290336.352691 1164743.352691 norm=39.102430 +1290323.523997 1158697.523997 norm=40.037482 +1290346.148986 1161973.148986 norm=39.293765 +1290402.286350 1158888.286350 norm=38.091994 +1290416.051730 1162744.051730 norm=38.065733 +1290441.332766 1159824.332766 norm=39.673669 +1290449.785607 1160543.785607 norm=38.897301 +1290484.578419 1161617.578419 norm=38.781439 +1290489.760024 1161159.760024 norm=39.204592 +1290499.390726 1159397.390726 norm=39.698866 +1290549.358764 1162113.358764 norm=38.871583 +1290552.059635 1160515.059635 norm=38.716921 +1290584.635329 1161580.635329 norm=38.923001 +1290627.658182 1161504.658182 norm=37.828561 +1290656.556640 1162101.556640 norm=38.249183 +1290654.293430 1162775.293430 norm=38.961519 +1290690.121072 1161566.121072 norm=38.118237 +1290709.476091 1163555.476091 norm=38.807216 +1290733.049406 1161831.049406 norm=38.561639 +1290737.620050 1162344.620050 norm=38.729833 +1290774.518066 1160686.518066 norm=38.755645 +1290780.092879 1160385.092879 norm=38.884444 +1290819.377497 1161821.377497 norm=38.223030 +1290856.907929 1160326.907929 norm=38.470768 +1290848.093615 1160657.093615 norm=38.781439 +1290874.636690 1163910.636690 norm=38.275318 +1290912.476617 1160710.476617 norm=39.038443 +1290914.137736 1160568.137736 norm=39.076847 +1290926.292539 1162313.292539 norm=38.897301 +1290968.963269 1164013.963269 norm=38.832976 +1290972.548816 1160993.548816 norm=39.051248 +1291025.373448 1163020.373448 norm=37.881394 +1291038.975852 1164328.975852 norm=39.000000 +1291037.526246 1160572.526246 norm=38.858718 +1291083.008024 1159550.008024 norm=37.549967 +1291106.334285 1160187.334285 norm=39.293765 +1291109.272352 1164807.272352 norm=38.910153 +1291141.681221 1162465.681221 norm=38.470768 +1291174.228699 1160134.228699 norm=38.561639 +1291198.272146 1162258.272146 norm=38.755645 +1291170.008976 1162512.008976 norm=40.087405 +1291232.138113 1163271.138113 norm=38.626416 +1291234.287305 1161593.287305 norm=38.613469 +1291287.267105 1161410.267105 norm=38.065733 +1291295.816202 1165337.816202 norm=38.781439 +1291307.888938 1162240.888938 norm=38.935845 +1291343.676378 1164939.676378 norm=38.587563 +1291346.532528 1159841.532528 norm=38.366652 +1291402.279116 1163311.279116 norm=38.183766 +1291397.297040 1161208.297040 norm=38.105118 +1291440.755288 1163826.755288 norm=37.788887 +1291466.082178 1162780.082178 norm=37.986840 +1291480.849734 1161903.849734 norm=38.013156 +1291508.322368 1163491.322368 norm=39.051248 +1291500.795007 1157327.795007 norm=39.025633 +1291527.483552 1162594.483552 norm=39.076847 +1291551.154929 1166088.154929 norm=38.561639 +1291568.111839 1164314.111839 norm=38.418745 +1291613.482334 1165957.482334 norm=38.223030 +1291600.807904 1161430.807904 norm=39.534795 +1291622.666273 1162567.666273 norm=38.935845 +1291658.909653 1160928.909653 norm=39.572718 +1291671.924974 1162829.924974 norm=39.281039 +1291707.527066 1163021.527066 norm=38.768544 +1291721.538548 1165523.538548 norm=38.496753 +1291764.783526 1159988.783526 norm=38.470768 +1291769.814731 1157717.814731 norm=38.600518 +1291792.711620 1162797.711620 norm=38.444766 +1291830.108557 1160750.108557 norm=38.716921 +1291823.399626 1161778.399626 norm=39.179076 +1291844.964186 1163002.964186 norm=39.382737 +1291879.055826 1164396.055826 norm=39.217343 +1291895.995681 1164797.995681 norm=38.026307 +1291938.126424 1166145.126424 norm=38.170669 +1291941.167760 1163318.167760 norm=38.781439 +1291977.084206 1161212.084206 norm=37.589892 +1292011.160400 1163695.160400 norm=38.144462 +1292007.992497 1166756.992497 norm=38.496753 +1292037.466294 1162537.466294 norm=37.920970 +1292081.441307 1161363.441307 norm=37.629775 +1292071.893023 1164849.893023 norm=38.157568 +1292110.418119 1162022.418119 norm=38.716921 +1292127.422269 1164882.422269 norm=38.183766 +1292151.208492 1162776.208492 norm=39.000000 +1292160.955891 1165671.955891 norm=40.199502 +1292154.877337 1162180.877337 norm=39.051248 +1292205.880987 1161760.880987 norm=39.115214 +1292198.201784 1162565.201784 norm=39.268308 +1292237.262108 1163827.262108 norm=38.923001 +1292284.838386 1162244.838386 norm=38.314488 +1292282.477103 1163983.477103 norm=37.828561 +1292341.747857 1160603.747857 norm=38.910153 +1292305.053707 1164969.053707 norm=39.306488 +1292350.624915 1163683.624915 norm=37.589892 +1292417.324507 1159134.324507 norm=37.973675 +1292396.008799 1163067.008799 norm=38.755645 +1292421.378718 1160093.378718 norm=39.204592 +1292407.582873 1165561.582873 norm=39.331921 +1292452.164407 1160774.164407 norm=38.470768 +1292511.654441 1165878.654441 norm=37.907783 +1292514.127980 1164454.127980 norm=38.039453 +1292536.753378 1166560.753378 norm=39.242834 +1292546.308857 1159415.308857 norm=38.755645 +1292575.505880 1162701.505880 norm=39.458839 +1292576.464376 1164655.464376 norm=39.038443 +1292611.630344 1165893.630344 norm=38.209946 +1292644.076435 1163232.076435 norm=38.301436 +1292671.068515 1160972.068515 norm=37.000000 +1292710.434678 1161364.434678 norm=37.148351 +1292731.192527 1165128.192527 norm=37.161808 +1292742.089688 1164018.089688 norm=38.665230 +1292754.003528 1164844.003528 norm=38.418745 +1292765.993630 1163154.993630 norm=39.012818 +1292784.279982 1164492.279982 norm=38.768544 +1292801.631060 1162795.631060 norm=38.820098 +1292822.035154 1161489.035154 norm=39.268308 +1292840.147730 1167045.147730 norm=39.217343 +1292859.256244 1166322.256244 norm=39.547440 +1292886.425173 1163881.425173 norm=39.547440 +1292879.616349 1164629.616349 norm=39.204592 +1292945.768063 1159026.768063 norm=38.884444 +1292937.324145 1164450.324145 norm=37.881394 +1293026.511955 1162793.511955 norm=37.215588 +1293017.633697 1168421.633697 norm=39.179076 +1293033.814144 1163761.814144 norm=38.183766 +1293034.260207 1163001.260207 norm=38.884444 +1293062.287796 1158388.287796 norm=38.716921 +1293101.469723 1168885.469723 norm=39.635842 +1293089.410077 1165658.410077 norm=39.446166 +1293100.336487 1162150.336487 norm=38.729833 +1293162.633857 1162626.633857 norm=38.587563 +1293159.471972 1165305.471972 norm=39.344631 +1293191.113315 1164861.113315 norm=38.170669 +1293230.548153 1160299.548153 norm=37.881394 +1293229.113263 1163013.113263 norm=39.686270 +1293246.659882 1165162.659882 norm=38.522721 +1293280.133360 1165688.133360 norm=39.962482 +1293277.305702 1166798.305702 norm=38.820098 +1293316.890741 1159572.890741 norm=37.709415 +1293362.566057 1164136.566057 norm=37.881394 +1293365.107505 1164667.107505 norm=39.064050 +1293389.226070 1163708.226070 norm=38.444766 +1293418.795914 1163108.795914 norm=38.340579 +1293442.745940 1167016.745940 norm=38.832976 +1293443.482324 1165745.482324 norm=38.613469 +1293485.754534 1162829.754534 norm=38.897301 +1293489.883364 1164634.883364 norm=39.458839 +1293485.936657 1163567.936657 norm=39.051248 +1293558.874793 1163813.874793 norm=37.643060 +1293572.370617 1164346.370617 norm=37.894591 +1293583.806282 1162713.806282 norm=37.336309 +1293640.967855 1165904.967855 norm=38.794329 +1293609.437955 1167363.437955 norm=39.395431 +1293633.622275 1164018.622275 norm=38.131352 +1293684.877390 1161043.877390 norm=37.881394 +1293693.183164 1167508.183164 norm=39.509493 +1293667.732942 1162854.732942 norm=39.012818 +1293738.035202 1160896.035202 norm=38.366652 +1293761.248028 1165555.248028 norm=38.678159 +1293760.359925 1164977.359925 norm=39.471509 +1293777.046055 1162490.046055 norm=39.736633 +1293786.135736 1165318.135736 norm=38.691084 +1293856.595313 1165581.595313 norm=38.026307 +1293851.092074 1166915.092074 norm=38.392708 +1293891.599683 1160487.599683 norm=38.196859 +1293919.727688 1161692.727688 norm=38.678159 +1293916.287704 1167400.287704 norm=39.051248 +1293961.518873 1162530.518873 norm=38.183766 +1293970.058063 1165554.058063 norm=38.678159 +1293960.096917 1165085.096917 norm=39.191836 +1293991.018214 1165189.018214 norm=38.587563 +1294036.030148 1164083.030148 norm=38.314488 +1294056.017898 1165142.017898 norm=39.038443 +1294044.059649 1165408.059649 norm=38.522721 +1294088.860373 1167420.860373 norm=38.091994 +1294123.070093 1163469.070093 norm=38.118237 +1294151.449391 1166420.449391 norm=38.131352 +1294167.469215 1164361.469215 norm=37.828561 +1294211.306567 1167388.306567 norm=38.183766 +1294191.538596 1164941.538596 norm=38.105118 +1294228.556103 1162221.556103 norm=39.102430 +1294233.186859 1171596.186859 norm=38.691084 +1294268.299694 1159617.299694 norm=38.392708 +1294276.759185 1167872.759185 norm=39.281039 +1294293.759185 1162269.759185 norm=38.704005 +1294336.045691 1168369.045691 norm=37.881394 +1294367.200439 1166646.200439 norm=38.781439 +1294368.248566 1162463.248566 norm=38.755645 +1294371.253545 1164989.253545 norm=38.288379 +1294412.544161 1165961.544161 norm=38.366652 +1294433.217519 1167117.217519 norm=38.509739 +1294456.643077 1166290.643077 norm=38.755645 +1294476.323852 1164082.323852 norm=37.947332 +1294504.283392 1170109.283392 norm=38.223030 +1294520.062704 1163942.062704 norm=37.986840 +1294548.495496 1167429.495496 norm=38.794329 +1294545.576353 1160798.576353 norm=38.832976 +1294581.851690 1168142.851690 norm=38.275318 +1294600.651920 1167753.651920 norm=38.716921 +1294621.449006 1169773.449006 norm=38.262253 +1294647.831432 1162885.831432 norm=38.948684 +1294641.267101 1164355.267101 norm=39.012818 +1294681.005125 1165685.005125 norm=38.366652 +1294700.517497 1167855.517497 norm=38.961519 +1294717.269250 1165436.269250 norm=38.236109 +1294749.187252 1164730.187252 norm=37.656341 +1294792.417663 1165722.417663 norm=37.188708 +1294812.129228 1164933.129228 norm=37.775654 +1294815.150341 1167255.150341 norm=39.344631 +1294804.791131 1165180.791131 norm=39.812058 +1294835.975724 1167199.975724 norm=38.845849 +1294869.749212 1164963.749212 norm=37.815341 +1294900.516266 1167756.516266 norm=39.064050 +1294902.822030 1164979.822030 norm=39.357337 +1294910.310256 1167413.310256 norm=39.217343 +1294943.088487 1163658.088487 norm=38.716921 +1294965.194450 1168268.194450 norm=39.420807 +1294994.996333 1169275.996333 norm=38.065733 +1295021.034458 1166379.034458 norm=37.907783 +1295029.994640 1162173.994640 norm=38.923001 +1295058.160165 1168374.160165 norm=38.418745 +1295095.078332 1165896.078332 norm=37.907783 +1295112.559978 1166186.559978 norm=37.656341 +1295145.169107 1170575.169107 norm=39.115214 +1295110.804252 1165918.804252 norm=38.923001 +1295173.975755 1164177.975755 norm=39.255573 +1295167.098887 1165313.098887 norm=38.613469 +1295216.031196 1165454.031196 norm=38.444766 +1295228.315143 1163316.315143 norm=37.576588 +1295279.288157 1169110.288157 norm=38.236109 +1295261.182846 1164247.182846 norm=38.470768 +1295279.953701 1165727.953701 norm=38.935845 +1295313.387381 1169230.387381 norm=38.509739 +1295330.416980 1167089.416980 norm=38.131352 +1295374.211079 1166660.211079 norm=36.945906 +1295398.169586 1171187.169586 norm=37.322915 +1295396.560200 1165397.560200 norm=39.038443 +1295378.287133 1164668.287133 norm=39.281039 +1295432.282990 1165061.282990 norm=39.051248 +1295433.623439 1167096.623439 norm=39.471509 +1295474.532681 1166407.532681 norm=38.223030 +1295488.173885 1164991.173885 norm=38.301436 +1295548.095840 1173779.095840 norm=37.828561 +1295546.429014 1165774.429014 norm=38.249183 +1295568.686845 1164851.686845 norm=38.910153 +1295578.286964 1163885.286964 norm=38.026307 +1295622.399517 1166211.399517 norm=37.682887 +1295650.074489 1164018.074489 norm=37.134889 +1295675.448940 1167511.448940 norm=37.828561 +1295658.636127 1172215.636127 norm=39.382737 +1295667.024767 1166416.024767 norm=39.127995 +1295686.284019 1166517.284019 norm=37.749172 +1295752.931608 1164005.931608 norm=37.696154 +1295756.480656 1170839.480656 norm=37.403208 +1295774.552516 1166663.552516 norm=38.535698 +1295787.545624 1163769.545624 norm=38.236109 +1295826.049316 1165548.049316 norm=38.948684 +1295826.776892 1170037.776892 norm=38.807216 +1295858.127444 1160534.127444 norm=38.652296 +1295855.603413 1169317.603413 norm=38.897301 +1295896.159711 1162988.159711 norm=38.729833 +1295908.337178 1167806.337178 norm=38.314488 +1295942.686777 1166854.686777 norm=37.934153 +1295972.272150 1170768.272150 norm=37.802116 +1296002.471308 1167786.471308 norm=38.327536 +1295984.365605 1169236.365605 norm=38.249183 +1296031.174584 1168879.174584 norm=38.600518 +1296034.965060 1165139.965060 norm=38.353618 +1296045.186996 1165411.186996 norm=38.626416 +1296093.625854 1166483.625854 norm=37.523326 +1296121.106291 1165503.106291 norm=37.269290 +1296149.676376 1169091.676376 norm=38.379682 +1296148.780649 1163192.780649 norm=38.078866 +1296166.965411 1166352.965411 norm=39.242834 +1296150.078333 1167963.078333 norm=39.166312 +1296218.194674 1167091.194674 norm=38.118237 +1296219.201766 1168054.201766 norm=37.749172 +1296271.430375 1170060.430375 norm=38.314488 +1296269.915682 1164517.915682 norm=37.722672 +1296310.840076 1165289.840076 norm=38.781439 +1296298.147349 1165744.147349 norm=39.610605 +1296300.322552 1169982.322552 norm=38.845849 +1296353.449648 1167361.449648 norm=37.788887 +1296384.709825 1168110.709825 norm=38.301436 +1296386.178010 1169172.178010 norm=38.052595 +1296415.080367 1165078.080367 norm=38.742741 +1296433.100297 1164870.100297 norm=38.807216 +1296448.482238 1167631.482238 norm=38.196859 +1296500.958732 1168605.958732 norm=37.309516 +1296498.006437 1170381.006437 norm=39.217343 +1296500.069414 1168135.069414 norm=38.470768 +1296536.462007 1164920.462007 norm=38.196859 +1296579.050750 1166172.050750 norm=38.275318 +1296559.410727 1168456.410727 norm=38.626416 +1296601.254905 1166415.254905 norm=38.405729 +1296625.523697 1166881.523697 norm=39.140772 +1296626.786728 1169805.786728 norm=38.288379 +1296670.494689 1167062.494689 norm=37.828561 +1296688.396455 1164008.396455 norm=38.871583 +1296679.837147 1169009.837147 norm=38.548671 +1296732.362077 1167532.362077 norm=38.535698 +1296750.229139 1164692.229139 norm=37.960506 +1296779.807306 1167241.807306 norm=38.039453 +1296802.291726 1167571.291726 norm=37.828561 +1296806.453610 1169838.453610 norm=39.623226 +1296798.955207 1170557.955207 norm=38.910153 +1296849.310922 1167698.310922 norm=38.118237 +1296880.842584 1167723.842584 norm=38.314488 +1296874.713312 1167292.713312 norm=38.768544 +1296900.926607 1169238.926607 norm=38.729833 +1296940.214007 1168491.214007 norm=38.223030 +1296960.472210 1165393.472210 norm=38.639358 +1296971.598802 1169040.598802 norm=38.807216 +1296994.971154 1168682.971154 norm=37.828561 +1297024.794375 1164514.794375 norm=37.629775 +1297054.658684 1166589.658684 norm=38.794329 +1297043.014219 1166360.014219 norm=37.802116 +1297093.428693 1170319.428693 norm=37.749172 +1297101.142591 1165735.142591 norm=37.920970 +1297131.509577 1171137.509577 norm=37.920970 +1297138.754944 1165944.754944 norm=38.262253 +1297171.755763 1169178.755763 norm=38.884444 +1297136.605333 1168181.605333 norm=39.572718 +1297201.058478 1169760.058478 norm=38.052595 +1297219.165414 1166240.165414 norm=38.496753 +1297235.567359 1164564.567359 norm=39.293765 +1297247.717650 1168842.717650 norm=38.288379 +1297298.053144 1167097.053144 norm=38.340579 +1297305.291972 1169320.291972 norm=38.548671 +1297341.250232 1167853.250232 norm=37.775654 +1297350.689845 1167990.689845 norm=37.040518 +1297393.125816 1166010.125816 norm=37.080992 +1297415.595466 1166117.595466 norm=37.456642 +1297426.611444 1165966.611444 norm=37.456642 +1297436.751784 1169575.751784 norm=38.535698 +1297438.667639 1169937.667639 norm=38.457769 +1297472.339906 1169836.339906 norm=38.496753 +1297498.536153 1165937.536153 norm=38.974351 +1297493.146080 1171663.146080 norm=39.102430 +1297530.152311 1167050.152311 norm=37.749172 +1297565.120553 1168911.120553 norm=38.496753 +1297557.121516 1166748.121516 norm=38.626416 +1297588.725988 1165709.725988 norm=38.987177 +1297600.693184 1170936.693184 norm=39.255573 +1297622.706816 1168061.706816 norm=38.691084 +1297639.804872 1165634.804872 norm=39.204592 +1297666.192835 1171309.192835 norm=38.897301 +1297692.302991 1169549.302991 norm=38.768544 +1297712.107778 1169899.107778 norm=38.379682 +1297732.405330 1167096.405330 norm=38.105118 +1297757.383544 1166581.383544 norm=38.000000 +1297776.225669 1166552.225669 norm=38.262253 +1297808.322622 1167864.322622 norm=38.948684 +1297809.271287 1167326.271287 norm=38.639358 +1297842.711062 1168114.711062 norm=39.306488 +1297833.289174 1170342.289174 norm=39.191836 +1297866.757365 1165515.757365 norm=39.242834 +1297879.618725 1167418.618725 norm=38.716921 +1297912.882953 1163950.882953 norm=37.881394 +1297952.806900 1169719.806900 norm=38.170669 +1297940.251180 1167529.251180 norm=39.191836 +1297965.855936 1171883.855936 norm=38.871583 +1298001.592259 1168255.592259 norm=38.196859 +1298027.003466 1172952.003466 norm=38.755645 +1298037.690944 1166451.690944 norm=39.012818 +1298055.495760 1170479.495760 norm=38.600518 +1298072.948041 1163792.948041 norm=37.349699 +1298128.247143 1167015.247143 norm=37.309516 +1298160.742849 1170326.742849 norm=37.469988 +1298155.869815 1168816.869815 norm=38.639358 +1298140.290854 1165728.290854 norm=39.724048 +1298168.264937 1171846.264937 norm=39.102430 +1298174.853664 1164366.853664 norm=38.262253 +1298238.885823 1172285.885823 norm=37.973675 +1298255.705115 1169164.705115 norm=38.418745 +1298254.937211 1168867.937211 norm=38.470768 +1298287.185117 1165779.185117 norm=38.353618 +1298316.091327 1170307.091327 norm=38.405729 +1298322.195235 1169198.195235 norm=38.470768 +1298342.600782 1170105.600782 norm=38.574603 +1298356.570429 1166886.570429 norm=38.729833 +1298386.208291 1168244.208291 norm=38.935845 +1298397.826006 1167636.826006 norm=38.974351 +1298417.201873 1171698.201873 norm=38.574603 +1298445.153538 1169751.153538 norm=38.183766 +1298471.241859 1170598.241859 norm=38.716921 +1298491.784269 1163320.784269 norm=37.616486 +1298522.392223 1170795.392223 norm=38.105118 +1298552.894748 1170180.894748 norm=38.105118 +1298551.990446 1170283.990446 norm=37.775654 +1298590.395920 1169837.395920 norm=38.131352 +1298597.118378 1168536.118378 norm=38.948684 +1298590.164961 1169362.164961 norm=39.597980 +1298618.068884 1164581.068884 norm=38.910153 +1298641.596642 1173150.596642 norm=38.301436 +1298691.288314 1167172.288314 norm=37.429935 +1298703.631439 1170702.631439 norm=38.470768 +1298732.824691 1170905.824691 norm=37.854986 +1298725.645616 1170922.645616 norm=39.887341 +1298725.662307 1167989.662307 norm=39.153544 +1298760.499925 1163889.499925 norm=38.716921 +1298784.487000 1170642.487000 norm=38.974351 +1298809.534232 1170892.534232 norm=38.832976 +1298832.058148 1170946.058148 norm=37.802116 +1298876.676268 1166633.676268 norm=38.483763 +1298854.098162 1170565.098162 norm=38.535698 +1298909.395280 1167824.395280 norm=37.749172 +1298929.148436 1171521.148436 norm=38.340579 +1298925.011988 1169115.011988 norm=38.561639 +1298949.200753 1170472.200753 norm=38.535698 +1298978.426762 1166718.426762 norm=38.561639 +1298999.948880 1174541.948880 norm=39.597980 +1299005.113061 1170796.113061 norm=39.140772 +1299023.402577 1169699.402577 norm=38.535698 +1299057.493433 1169511.493433 norm=37.682887 +1299113.221352 1169628.221352 norm=37.336309 +1299101.820332 1171665.820332 norm=38.366652 +1299132.035625 1168986.035625 norm=37.669616 +1299148.535688 1168738.535688 norm=37.828561 +1299184.776327 1172167.776327 norm=38.131352 +1299174.206777 1166894.206777 norm=38.170669 +1299198.879429 1171368.879429 norm=38.418745 +1299221.770531 1169583.770531 norm=39.281039 +1299219.315091 1165338.315091 norm=38.444766 +1299280.504261 1170415.504261 norm=37.616486 +1299306.349211 1174273.349211 norm=37.735925 +1299310.221740 1166853.221740 norm=38.935845 +1299297.769710 1168604.769710 norm=39.635842 +1299304.508600 1168824.508600 norm=38.639358 +1299373.512170 1168909.512170 norm=37.429935 +1299403.563295 1170996.563295 norm=37.363083 +1299419.682864 1172193.682864 norm=39.127995 +1299393.302365 1167084.302365 norm=39.064050 +1299450.481173 1173657.481173 norm=38.820098 +1299442.942091 1172261.942091 norm=38.781439 +1299488.078296 1165103.078296 norm=37.762415 +1299512.877500 1169418.877500 norm=38.405729 +1299530.540271 1166900.540271 norm=38.548671 +1299540.371327 1174185.371327 norm=38.600518 +1299577.047317 1170117.047317 norm=37.735925 +1299593.568754 1170064.568754 norm=38.052595 +1299609.665039 1168407.665039 norm=38.431758 +1299622.381972 1170322.381972 norm=37.363083 +1299681.972498 1169942.972498 norm=37.429935 +1299690.657365 1169998.657365 norm=38.052595 +1299683.795818 1170042.795818 norm=38.845849 +1299705.781093 1169923.781093 norm=38.301436 +1299744.276765 1168601.276765 norm=37.282704 +1299756.511075 1168683.511075 norm=38.807216 +1299746.054367 1171602.054367 norm=38.948684 +1299761.867203 1170295.867203 norm=39.102430 +1299804.390608 1167901.390608 norm=38.444766 +1299816.868112 1175132.868112 norm=38.131352 +1299852.824724 1171156.824724 norm=38.665230 +1299859.250074 1167230.250074 norm=37.802116 +1299910.348456 1170525.348456 norm=38.884444 +1299876.314001 1167265.314001 norm=38.704005 +1299928.615842 1174301.615842 norm=38.987177 +1299926.973326 1169521.973326 norm=38.832976 +1299970.429184 1170903.429184 norm=38.522721 +1299967.509657 1174448.509657 norm=38.548671 +1300026.284117 1170601.284117 norm=37.934153 +1300005.380219 1167371.380219 norm=39.051248 +1300048.144892 1169145.144892 norm=38.314488 +1300068.033785 1168868.033785 norm=38.379682 +1300083.505533 1170781.505533 norm=38.626416 +1300107.191850 1169790.191850 norm=37.947332 +1300142.465198 1171809.465198 norm=37.868192 +1300158.351136 1171656.351136 norm=37.483330 +1300193.637484 1167961.637484 norm=38.000000 +1300191.704869 1171300.704869 norm=37.696154 +1300247.820344 1168776.820344 norm=37.027017 +1300244.956298 1171784.956298 norm=37.934153 +1300246.966846 1173572.966846 norm=38.522721 +1300273.849136 1171881.849136 norm=38.639358 +1300270.265154 1166174.265154 norm=39.000000 +1300291.234716 1175019.234716 norm=38.131352 +1300343.754953 1171091.754953 norm=38.444766 +1300339.772544 1167647.772544 norm=38.288379 +1300369.293490 1170185.293490 norm=38.065733 +1300396.108386 1171023.108386 norm=39.102430 +1300392.581789 1170439.581789 norm=38.948684 +1300427.235771 1168377.235771 norm=39.166312 +1300444.065038 1170327.065038 norm=38.457769 +1300458.867661 1169833.867661 norm=38.496753 +1300485.311503 1174176.311503 norm=38.691084 +1300517.958679 1169463.958679 norm=37.709415 +1300549.813394 1174733.813394 norm=37.775654 +1300549.544358 1172461.544358 norm=37.536649 +1300582.787468 1171349.787468 norm=37.762415 +1300584.808013 1168711.808013 norm=38.535698 +1300610.465062 1173452.465062 norm=37.973675 +1300628.388481 1168870.388481 norm=37.656341 +1300673.210962 1171516.210962 norm=38.144462 +1300656.802747 1171138.802747 norm=38.275318 +1300692.086818 1172188.086818 norm=38.118237 +1300723.662966 1171634.662966 norm=37.828561 +1300741.614132 1170252.614132 norm=38.858718 +1300735.659255 1167151.659255 norm=38.535698 +1300770.966714 1170446.966714 norm=38.535698 +1300776.075164 1174904.075164 norm=39.051248 +1300793.693850 1169745.693850 norm=38.626416 +1300842.062242 1175715.062242 norm=37.656341 +1300866.886552 1173657.886552 norm=37.815341 +1300878.717588 1170553.717588 norm=37.121422 +1300907.867742 1172131.867742 norm=37.696154 +1300914.110970 1170760.110970 norm=38.196859 +1300941.126872 1170428.126872 norm=38.755645 +1300929.290066 1171548.290066 norm=38.379682 +1300969.556630 1171506.556630 norm=37.986840 +1300991.195241 1168429.195241 norm=38.026307 +1301019.470237 1169616.470237 norm=38.665230 +1301013.402805 1172431.402805 norm=38.131352 +1301061.156390 1170366.156390 norm=37.802116 +1301070.232980 1174381.232980 norm=38.522721 +1301067.257891 1171568.257891 norm=38.871583 +1301105.237724 1172635.237724 norm=38.678159 +1301111.070769 1173240.070769 norm=38.118237 +1301147.265413 1173720.265413 norm=38.118237 +1301172.768894 1173088.768894 norm=37.629775 +1301208.172648 1169535.172648 norm=38.444766 +1301199.025581 1170158.025581 norm=38.418745 +1301200.486898 1173974.486898 norm=39.051248 +1301247.177242 1172262.177242 norm=37.841776 +1301280.921283 1169703.921283 norm=36.823905 +1301319.223784 1172790.223784 norm=37.080992 +1301314.655772 1169478.655772 norm=38.652296 +1301313.025679 1172305.025679 norm=38.026307 +1301358.298762 1171266.298762 norm=38.013156 +1301366.285598 1175542.285598 norm=38.781439 +1301384.302397 1177036.302397 norm=37.881394 +1301414.436522 1172232.436522 norm=38.118237 +1301428.048501 1173879.048501 norm=38.065733 +1301449.198555 1172258.198555 norm=38.039453 +1301441.861304 1172565.861304 norm=38.223030 +1301493.118238 1172762.118238 norm=38.196859 +1301515.852854 1169791.852854 norm=37.469988 +1301531.966335 1167233.966335 norm=38.196859 +1301558.485338 1173941.485338 norm=37.188708 +1301580.509371 1168413.509371 norm=37.469988 +1301588.232203 1174407.232203 norm=38.013156 +1301620.504018 1171709.504018 norm=38.405729 +1301617.769345 1175003.769345 norm=38.026307 +1301630.103493 1170549.103493 norm=39.064050 +1301654.118901 1172361.118901 norm=38.314488 +1301685.237087 1171126.237087 norm=37.947332 +1301707.200888 1171504.200888 norm=38.548671 +1301709.575132 1173192.575132 norm=38.820098 +1301716.622841 1170632.622841 norm=37.986840 +1301770.226068 1172544.226068 norm=37.616486 +1301801.544304 1172038.544304 norm=37.682887 +1301802.638061 1174250.638061 norm=38.405729 +1301822.184134 1172187.184134 norm=37.894591 +1301849.903044 1172523.903044 norm=37.762415 +1301857.969337 1173062.969337 norm=37.775654 +1301888.009572 1170848.009572 norm=37.336309 +1301937.270728 1170893.270728 norm=37.523326 +1301916.729605 1173038.729605 norm=38.535698 +1301922.876594 1170983.876594 norm=38.431758 +1301953.784045 1176704.784045 norm=38.496753 +1301981.233288 1171454.233288 norm=37.669616 +1302013.953160 1172651.953160 norm=38.587563 +1302002.612203 1173221.612203 norm=38.275318 +1302045.071326 1171781.071326 norm=38.052595 +1302057.017942 1172889.017942 norm=37.973675 +1302095.421732 1170753.421732 norm=37.376463 +1302114.266022 1173739.266022 norm=37.000000 +1302147.335476 1172111.335476 norm=37.828561 +1302116.900228 1173688.900228 norm=38.535698 +1302143.691684 1172086.691684 norm=38.392708 +1302174.766428 1174422.766428 norm=38.470768 +1302192.577821 1173739.577821 norm=38.340579 +1302215.749593 1172182.749593 norm=37.828561 +1302253.173117 1170532.173117 norm=37.188708 +1302257.609206 1176043.609206 norm=37.841776 +1302288.028475 1169327.028475 norm=37.696154 +1302266.686400 1174018.686400 norm=39.673669 +1302301.712749 1173587.712749 norm=37.682887 +1302331.488963 1174151.488963 norm=37.509999 +1302371.532726 1177206.532726 norm=37.509999 +1302379.738433 1166782.738433 norm=37.749172 +1302395.646548 1175376.646548 norm=38.065733 +1302406.361950 1171409.361950 norm=37.868192 +1302426.882562 1179440.882562 norm=38.105118 +1302448.758881 1172887.758881 norm=38.366652 +1302454.608920 1173505.608920 norm=38.639358 +1302489.699143 1172871.699143 norm=38.052595 +1302498.117322 1170990.117322 norm=39.025633 +1302509.925481 1173441.925481 norm=39.012818 +1302529.806440 1171883.806440 norm=37.749172 +1302584.544374 1172031.544374 norm=37.881394 +1302569.522054 1174216.522054 norm=39.115214 +1302592.219185 1175584.219185 norm=38.223030 +1302606.373160 1172542.373160 norm=37.986840 +1302645.891644 1171595.891644 norm=37.934153 +1302650.681696 1173209.681696 norm=38.561639 +1302693.104263 1171086.104263 norm=37.749172 +1302705.994672 1175397.994672 norm=37.920970 +1302709.886214 1172204.886214 norm=38.496753 +1302750.419739 1172807.419739 norm=38.288379 +1302739.951116 1172049.951116 norm=38.652296 +1302769.566737 1173073.566737 norm=38.858718 +1302797.950568 1175795.950568 norm=38.131352 +1302829.209479 1171585.209479 norm=37.080992 +1302854.967555 1174003.967555 norm=37.643060 +1302865.294647 1174111.294647 norm=36.918830 +1302909.294179 1172857.294179 norm=37.134889 +1302912.158901 1172687.158901 norm=37.815341 +1302916.296801 1172316.296801 norm=38.587563 +1302923.945772 1172901.945772 norm=38.678159 +1302927.168659 1172807.168659 norm=39.242834 +1302967.968514 1171577.968514 norm=37.934153 +1303018.297152 1174147.297152 norm=37.563280 +1303020.026955 1171590.026955 norm=37.828561 +1303036.802903 1175461.802903 norm=38.768544 +1303032.424594 1172345.424594 norm=38.509739 +1303061.129136 1175780.129136 norm=38.288379 +1303092.219213 1173181.219213 norm=37.947332 +1303100.431417 1168607.431417 norm=38.665230 +1303130.330902 1172999.330902 norm=38.444766 +1303144.845601 1175955.845601 norm=38.118237 +1303174.373074 1172231.373074 norm=37.616486 +1303207.216142 1174947.216142 norm=37.603191 +1303218.551210 1174094.551210 norm=37.682887 +1303230.819551 1170976.819551 norm=38.340579 +1303238.058066 1174999.058066 norm=37.696154 +1303273.829408 1175942.829408 norm=37.841776 +1303287.622391 1176751.622391 norm=38.678159 +1303294.201806 1174348.201806 norm=38.065733 +1303312.511924 1173124.511924 norm=37.828561 +1303359.604525 1173546.604525 norm=38.209946 +1303360.187089 1172482.187089 norm=37.907783 +1303404.742034 1175316.742034 norm=37.229021 +1303419.963603 1171850.963603 norm=37.841776 +1303417.735595 1174690.735595 norm=37.722672 +1303450.095531 1173539.095531 norm=38.626416 +1303428.486516 1176125.486516 norm=38.535698 +1303488.424509 1173731.424509 norm=38.314488 +1303474.322235 1174547.322235 norm=38.262253 +1303525.860345 1177642.860345 norm=38.794329 +1303510.485013 1175398.485013 norm=39.000000 +1303545.372883 1173671.372883 norm=39.496835 +1303549.887207 1173576.887207 norm=38.418745 +1303592.131355 1179139.131355 norm=38.091994 +1303620.947396 1173810.947396 norm=36.715120 +1303673.801215 1175242.801215 norm=37.242449 +1303645.833946 1169171.833946 norm=38.353618 +1303686.155362 1175573.155362 norm=37.255872 +1303689.399159 1175159.399159 norm=37.403208 +1303736.426056 1175985.426056 norm=37.854986 +1303730.179205 1174039.179205 norm=38.431758 +1303747.512640 1175131.512640 norm=37.947332 +1303783.072651 1174924.072651 norm=37.576588 +1303800.962950 1175778.962950 norm=38.105118 +1303807.363867 1173483.363867 norm=38.974351 +1303810.930724 1177936.930724 norm=38.987177 +1303817.965856 1176717.965856 norm=38.548671 +1303865.581377 1175078.581377 norm=38.275318 +1303882.619981 1176837.619981 norm=37.775654 +1303912.901266 1173355.901266 norm=37.134889 +1303921.430537 1175615.430537 norm=38.131352 +1303956.247235 1178229.247235 norm=37.134889 +1303969.453889 1181344.453889 norm=37.854986 +1303982.811728 1177732.811728 norm=38.262253 +1303982.294003 1177969.294003 norm=37.775654 +1304031.160159 1174800.160159 norm=37.376463 +1304054.623133 1170573.623133 norm=37.322915 +1304053.860937 1181263.860937 norm=37.947332 +1304072.846102 1176354.846102 norm=37.854986 +1304107.734032 1175124.734032 norm=38.236109 +1304099.181750 1174854.181750 norm=39.051248 +1304096.684267 1176548.684267 norm=38.935845 +1304139.963283 1171090.963283 norm=39.127995 +1304147.578375 1181577.578375 norm=38.196859 +1304180.117502 1172293.117502 norm=37.749172 +1304201.366159 1179017.366159 norm=38.065733 +1304229.446558 1176211.446558 norm=37.429935 +1304258.825156 1176790.825156 norm=37.735925 +1304245.160529 1174620.160529 norm=38.755645 +1304267.474431 1179517.474431 norm=37.643060 +1304306.961584 1175032.961584 norm=37.563280 +1304347.083880 1179301.083880 norm=37.429935 +1304349.749266 1175749.749266 norm=37.336309 +1304370.837973 1176905.837973 norm=36.932371 +1304396.929927 1172425.929927 norm=36.918830 +1304413.990808 1180283.990808 norm=37.443290 +1304423.189952 1174241.189952 norm=38.366652 +1304433.232480 1179371.232480 norm=38.600518 +1304432.409391 1173925.409391 norm=38.639358 +1304449.619181 1174778.619181 norm=38.327536 +1304483.626180 1175619.626180 norm=38.781439 +1304490.506135 1178449.506135 norm=38.820098 +1304528.033817 1177904.033817 norm=38.600518 +1304540.417105 1180529.417105 norm=38.065733 +1304548.416217 1172386.416217 norm=38.961519 +1304566.027339 1176392.027339 norm=37.920970 +1304601.797383 1173589.797383 norm=38.118237 +1304614.301959 1177660.301959 norm=38.353618 +1304624.351455 1171085.351455 norm=37.947332 +1304679.349623 1179436.349623 norm=37.336309 +1304673.534187 1171836.534187 norm=38.249183 +1304699.180633 1176550.180633 norm=38.574603 +1304669.891156 1175971.891156 norm=39.547440 +1304729.309823 1176437.309823 norm=38.353618 +1304731.901939 1180538.901939 norm=38.639358 +1304760.403789 1174360.403789 norm=37.616486 +1304788.151073 1178285.151073 norm=37.960506 +1304797.434306 1176926.434306 norm=38.457769 +1304821.694575 1173437.694575 norm=38.013156 +1304866.126823 1176649.126823 norm=37.229021 +1304870.643385 1175624.643385 norm=37.363083 +1304889.892919 1176861.892919 norm=37.496667 +1304905.421282 1177314.421282 norm=38.509739 +1304901.590144 1178909.590144 norm=38.039453 +1304942.909108 1174928.909108 norm=37.576588 +1304968.747308 1176350.747308 norm=37.429935 +1305002.125368 1174724.125368 norm=37.175261 +1304995.132855 1175249.132855 norm=38.157568 +1305024.171738 1179823.171738 norm=38.548671 +1304995.726302 1175267.726302 norm=39.166312 +1305034.676947 1181195.676947 norm=38.652296 +1305056.570502 1172721.570502 norm=38.704005 +1305080.027648 1179872.027648 norm=37.589892 +1305128.466846 1174380.466846 norm=37.868192 +1305119.666098 1181341.666098 norm=38.729833 +1305151.867309 1175570.867309 norm=38.548671 +1305137.995542 1176553.995542 norm=38.431758 +1305190.783655 1179554.783655 norm=37.735925 +1305206.706811 1176547.706811 norm=37.175261 +1305235.003520 1176332.003520 norm=37.229021 +1305262.660647 1175353.660647 norm=37.696154 +1305251.491115 1174081.491115 norm=38.118237 +1305259.793258 1178247.793258 norm=37.643060 +1305305.518063 1176383.518063 norm=37.202150 +1305323.914747 1173561.914747 norm=38.013156 +1305331.375104 1181391.375104 norm=39.204592 +1305319.242573 1173706.242573 norm=39.344631 +1305361.026338 1179187.026338 norm=38.275318 +1305391.846541 1177160.846541 norm=38.923001 +1305396.397906 1176254.397906 norm=38.665230 +1305411.438402 1181148.438402 norm=38.548671 +1305438.273875 1173272.273875 norm=37.920970 +1305479.069028 1178512.069028 norm=38.457769 +1305482.810413 1177744.810413 norm=37.669616 +1305498.226029 1178764.226029 norm=37.483330 +1305536.591458 1172228.591458 norm=36.742346 +1305567.025802 1180585.025802 norm=37.080992 +1305567.259873 1178336.259873 norm=38.000000 +1305583.675547 1178296.675547 norm=37.229021 +1305615.217731 1174060.217731 norm=38.535698 +1305572.090549 1176953.090549 norm=39.127995 +1305603.694162 1176047.694162 norm=39.217343 +1305647.249283 1177653.249283 norm=38.548671 +1305655.527917 1176708.527917 norm=38.483763 +1305695.743990 1177290.743990 norm=38.131352 +1305698.471148 1175934.471148 norm=37.336309 +1305735.073741 1179201.073741 norm=37.934153 +1305744.764388 1175868.764388 norm=38.065733 +1305781.890899 1178654.890899 norm=38.379682 +1305752.366953 1176375.366953 norm=38.639358 +1305803.054119 1178408.054119 norm=37.920970 +1305828.301342 1175751.301342 norm=37.722672 +1305817.442934 1176935.442934 norm=38.444766 +1305870.356766 1184443.356766 norm=38.078866 +1305863.164207 1179088.164207 norm=37.894591 +1305897.799094 1176012.799094 norm=37.322915 +1305916.135180 1178133.135180 norm=38.301436 +1305913.626075 1175521.626075 norm=38.535698 +1305923.101841 1177756.101841 norm=39.686270 +1305914.669550 1173513.669550 norm=38.807216 +1305991.607967 1175916.607967 norm=38.262253 +1306009.850430 1174616.850430 norm=37.589892 +1306028.378209 1179810.378209 norm=37.749172 +1306037.276237 1177579.276237 norm=37.643060 +1306082.036393 1183141.036393 norm=37.854986 +1306073.811341 1174409.811341 norm=38.196859 +1306113.045781 1179785.045781 norm=37.788887 +1306123.897788 1171396.897788 norm=37.986840 +1306121.336266 1180751.336266 norm=38.652296 +1306145.098630 1176628.098630 norm=38.561639 +1306163.597289 1177916.597289 norm=38.170669 +1306167.894723 1180437.894723 norm=38.366652 +1306228.293208 1179276.293208 norm=38.223030 +1306202.977089 1174634.977089 norm=38.379682 +1306256.833129 1178683.833129 norm=39.191836 +1306217.785626 1174692.785626 norm=39.560081 +1306278.976197 1177888.976197 norm=38.340579 +1306296.371657 1179238.371657 norm=37.973675 +1306312.559218 1181894.559218 norm=38.118237 +1306355.259562 1174747.259562 norm=37.722672 +1306365.648722 1175553.648721 norm=38.574603 +1306355.345576 1175684.345576 norm=38.574603 +1306395.450439 1179438.450439 norm=37.815341 +1306437.752720 1177762.752720 norm=37.269290 +1306445.276604 1178985.276604 norm=37.934153 +1306448.025915 1178976.025915 norm=37.973675 +1306480.217829 1174821.217829 norm=37.389838 +1306499.236216 1182123.236216 norm=38.105118 +1306512.360046 1174137.360046 norm=37.709415 +1306515.996859 1176579.996859 norm=38.910153 +1306545.985950 1180742.985950 norm=38.587563 +1306540.854709 1177337.854709 norm=38.509739 +1306583.793236 1176336.793236 norm=38.091994 +1306586.851697 1178219.851697 norm=38.144462 +1306616.945986 1173880.945986 norm=38.340579 +1306647.268761 1177253.268761 norm=37.749172 +1306662.989571 1175790.989571 norm=38.639358 +1306666.974400 1176610.974400 norm=37.775654 +1306707.939226 1180980.939226 norm=38.301436 +1306702.658334 1180360.658334 norm=37.255872 +1306751.936022 1177005.936022 norm=37.094474 +1306760.140554 1174319.140554 norm=38.871583 +1306754.695602 1178712.695602 norm=38.340579 +1306785.562315 1179097.562315 norm=37.749172 +1306821.149998 1178589.149998 norm=37.349699 +1306830.532639 1179620.532639 norm=38.327536 +1306838.263507 1175769.263507 norm=38.065733 +1306868.007119 1180577.007119 norm=37.722672 +1306900.348787 1178001.348787 norm=38.209946 +1306873.939897 1179299.939897 norm=38.223030 +1306931.482861 1175455.482861 norm=37.643060 +1306947.189616 1178462.189616 norm=37.416574 +1306964.829456 1175105.829456 norm=37.509999 +1306972.995558 1179189.995558 norm=37.986840 +1307003.038217 1178184.038217 norm=37.403208 +1307019.265119 1177618.265119 norm=38.327536 +1307017.846647 1174657.846647 norm=39.268308 +1307018.452799 1180134.452799 norm=38.897301 +1307067.288257 1173757.288257 norm=38.561639 +1307061.347921 1181998.347921 norm=39.281039 +1307081.826518 1175850.826518 norm=37.722672 +1307134.576984 1179253.576984 norm=37.443290 +1307142.727213 1176400.727213 norm=37.589892 +1307162.556780 1179726.556780 norm=37.735925 +1307199.879195 1176832.879195 norm=37.881394 +1307195.537465 1175122.537465 norm=38.026307 +1307203.114104 1178770.114104 norm=38.405729 +1307244.143765 1176274.143765 norm=36.959437 +1307267.056961 1177746.056961 norm=37.629775 +1307258.383234 1179624.383234 norm=38.923001 +1307295.938860 1176802.938860 norm=37.536649 +1307297.767324 1178156.767324 norm=38.314488 +1307315.402176 1174714.402176 norm=39.012818 +1307334.166618 1182543.166618 norm=38.131352 +1307358.663645 1178733.663645 norm=38.301436 +1307360.529079 1176942.529079 norm=38.209946 +1307405.472302 1178083.472302 norm=38.483763 +1307422.327233 1177406.327233 norm=37.934153 +1307438.654431 1179919.654431 norm=37.934153 +1307447.016335 1179056.016335 norm=38.431758 +1307468.940181 1174606.940181 norm=38.052595 +1307488.828128 1179890.828128 norm=37.762415 +1307532.520701 1177254.520701 norm=37.629775 +1307541.903302 1178462.903302 norm=36.783148 +1307577.385475 1177773.385475 norm=37.322915 +1307577.929254 1180864.929254 norm=38.209946 +1307578.213250 1177374.213250 norm=38.183766 +1307596.880706 1178341.880706 norm=37.934153 +1307620.042409 1175356.042409 norm=38.704005 +1307631.524843 1181503.524843 norm=37.841776 +1307660.020073 1180497.020073 norm=37.656341 +1307693.317369 1175369.317369 norm=38.209946 +1307698.261365 1183691.261365 norm=38.144462 +1307712.784393 1180289.784393 norm=38.157568 +1307736.597636 1177273.597636 norm=37.000000 +1307772.349228 1175915.349228 norm=37.443290 +1307763.632742 1178074.632742 norm=38.000000 +1307783.784587 1175916.784587 norm=37.947332 +1307803.241887 1179118.241887 norm=37.841776 +1307841.004511 1178292.004511 norm=38.026307 +1307851.883478 1178899.883478 norm=38.131352 +1307850.780799 1178112.780799 norm=38.470768 +1307884.069783 1182988.069783 norm=38.026307 +1307898.811051 1174002.811051 norm=38.275318 +1307911.958065 1178684.958065 norm=39.051248 +1307933.625795 1176001.625795 norm=37.643060 +1307969.505734 1179231.505734 norm=37.603191 +1307983.259911 1176697.259911 norm=38.105118 +1308006.769792 1178430.769792 norm=37.986840 +1307984.871585 1178084.871585 norm=38.729833 +1308016.058231 1180298.058231 norm=38.768544 +1308042.615170 1176308.615170 norm=38.405729 +1308049.706451 1180401.706451 norm=37.881394 +1308087.014646 1181468.014646 norm=37.973675 +1308107.102110 1176589.102110 norm=37.907783 +1308104.832869 1180435.832869 norm=37.973675 +1308158.039611 1180345.039611 norm=37.709415 +1308160.279422 1175141.279422 norm=36.606010 +1308223.065487 1180656.065487 norm=37.416574 +1308199.649986 1174890.649986 norm=37.616486 +1308221.945227 1179681.945227 norm=37.509999 +1308231.846174 1177827.846174 norm=38.483763 +1308252.896451 1183214.896451 norm=38.249183 +1308261.511575 1173670.511575 norm=37.656341 +1308299.933383 1177596.933383 norm=38.561639 +1308261.831649 1182638.831649 norm=38.961519 +1308316.023105 1179454.023105 norm=37.775654 +1308350.558028 1179199.558028 norm=38.275318 +1308347.742932 1178859.742932 norm=38.196859 +1308383.425855 1177104.425855 norm=37.762415 +1308397.125756 1181451.125756 norm=37.868192 +1308405.428872 1174163.428872 norm=38.327536 +1308437.323991 1179976.323991 norm=37.973675 +1308465.075025 1180332.075025 norm=37.762415 +1308478.133699 1179614.133699 norm=37.603191 +1308505.348067 1179029.348067 norm=36.864617 +1308510.486600 1179810.486600 norm=39.051248 +1308499.481159 1182020.481159 norm=38.431758 +1308545.033218 1176893.033218 norm=37.589892 +1308546.535995 1181221.535995 norm=38.105118 +1308592.204182 1177166.204182 norm=38.301436 +1308581.606370 1178958.606370 norm=38.755645 +1308607.496778 1176905.496778 norm=38.131352 +1308628.316643 1177657.316643 norm=38.118237 +1308664.573156 1179089.573156 norm=37.469988 +1308685.506862 1178743.506862 norm=37.229021 +1308699.944304 1173598.944304 norm=37.696154 +1308711.557338 1180568.557338 norm=38.157568 +1308723.022219 1176913.022219 norm=38.691084 +1308704.792267 1184708.792267 norm=38.236109 +1308771.806767 1179801.806767 norm=37.229021 +1308791.768968 1179019.768968 norm=36.959437 +1308838.752892 1178992.752892 norm=38.105118 +1308786.024888 1180332.024888 norm=37.907783 +1308857.535501 1184256.535501 norm=37.403208 +1308862.960637 1177965.960637 norm=37.802116 +1308877.256238 1180046.256238 norm=38.483763 +1308858.601362 1180602.601362 norm=39.191836 +1308887.364052 1179891.364052 norm=38.444766 +1308918.932463 1179484.932463 norm=38.820098 +1308896.967892 1180082.967892 norm=39.395431 +1308952.302985 1178724.302985 norm=37.894591 +1308991.007727 1178151.007727 norm=36.769553 +1309024.250690 1175234.250690 norm=37.429935 +1309014.121878 1179887.121878 norm=37.762415 +1309043.031332 1179384.031332 norm=37.215588 +1309068.257551 1177563.257551 norm=37.282704 +1309081.867620 1179964.867620 norm=38.353618 +1309074.553494 1178443.553494 norm=38.000000 +1309120.861010 1183601.861010 norm=38.052595 +1309112.462281 1181538.462281 norm=37.828561 +1309169.408502 1175708.408502 norm=37.456642 +1309163.141907 1180849.141907 norm=38.209946 +1309173.490300 1184670.490300 norm=38.223030 +1309184.069770 1177674.069770 norm=37.762415 +1309232.165752 1179472.165752 norm=37.215588 +1309254.676331 1175012.676331 norm=37.416574 +1309256.902377 1181242.902377 norm=37.589892 +1309258.179558 1179632.179558 norm=37.523326 +1309295.556412 1181416.556412 norm=37.947332 +1309331.679190 1174014.679190 norm=37.496667 +1309303.698997 1180202.698997 norm=38.974351 +1309316.200612 1181449.200612 norm=38.691084 +1309365.208904 1176103.208904 norm=37.629775 +1309367.779845 1182207.779845 norm=38.392708 +1309375.032567 1181892.032567 norm=38.923001 +1309393.014224 1178162.014224 norm=38.026307 +1309442.709868 1181420.709868 norm=38.483763 +1309441.938536 1179745.938536 norm=37.603191 +1309468.353417 1181883.353417 norm=38.157568 +1309484.157778 1176458.157778 norm=38.522721 +1309483.537806 1179062.537806 norm=38.496753 +1309525.425786 1182404.425786 norm=37.629775 +1309556.382995 1179270.382995 norm=37.603191 +1309562.664113 1177913.664113 norm=38.639358 +1309554.269768 1180883.269768 norm=38.742741 +1309608.954855 1175515.954855 norm=36.619667 +1309639.955255 1183498.955255 norm=36.959437 +1309648.384698 1181873.384698 norm=36.810325 +1309696.691710 1178806.691710 norm=36.796739 +1309674.422723 1183205.422723 norm=37.563280 +1309686.115568 1179634.115568 norm=38.249183 +1309708.133467 1178267.133467 norm=37.202150 +1309743.604102 1180771.604102 norm=37.296112 +1309749.217030 1178505.217030 norm=37.749172 +1309748.029165 1173530.029165 norm=37.696154 +1309796.625794 1181580.625794 norm=37.841776 +1309786.804361 1178019.804361 norm=37.934153 +1309805.993065 1181694.993065 norm=39.153544 +1309807.524829 1181123.524829 norm=38.755645 +1309845.222844 1181788.222844 norm=37.881394 +1309866.379457 1178353.379457 norm=37.947332 +1309879.398726 1177596.398726 norm=38.639358 +1309869.931677 1180854.931677 norm=38.535698 +1309916.580070 1182331.580070 norm=37.762415 +1309924.620532 1179089.620532 norm=38.026307 +1309978.341854 1183017.341854 norm=37.296112 +1309959.367650 1179313.367650 norm=37.881394 +1310007.625350 1177447.625350 norm=37.643060 +1309993.201164 1179130.201164 norm=37.349699 +1310064.118694 1180280.118694 norm=37.788887 +1310030.594807 1178216.594807 norm=38.535698 +1310060.032864 1183525.032864 norm=38.639358 +1310074.190292 1178836.190292 norm=38.470768 +1310090.793870 1180626.793870 norm=37.549967 +1310134.882832 1178561.882832 norm=37.894591 +1310140.070960 1180240.070960 norm=37.202150 +1310170.682056 1180308.682056 norm=37.682887 +1310169.270762 1182289.270762 norm=37.828561 +1310178.106538 1180993.106538 norm=38.013156 +1310213.734419 1181870.734419 norm=38.845849 +1310201.380770 1177444.380770 norm=37.868192 +1310254.201340 1184859.201340 norm=36.972963 +1310274.442593 1174973.442593 norm=37.735925 +1310267.408550 1184885.408550 norm=38.470768 +1310294.053762 1178300.053762 norm=38.948684 +1310295.068094 1181467.068094 norm=38.105118 +1310321.560324 1178135.560324 norm=37.828561 +1310371.975443 1178257.975443 norm=37.682887 +1310373.919298 1179624.919298 norm=37.881394 +1310362.891377 1183160.891377 norm=38.483763 +1310402.600731 1182803.600731 norm=37.828561 +1310433.243219 1178261.243219 norm=36.715120 +1310474.677585 1176502.677585 norm=36.891733 +1310468.441351 1179491.441351 norm=37.589892 +1310479.557788 1184503.557788 norm=38.275318 +1310488.366973 1183346.366973 norm=38.065733 +1310519.550505 1179321.550505 norm=37.841776 +1310523.378394 1181832.378394 norm=38.327536 +1310516.696452 1178653.696452 norm=38.418745 +1310567.598418 1179449.598418 norm=38.249183 +1310579.239018 1182337.239018 norm=38.118237 +1310599.417687 1182036.417687 norm=38.013156 +1310631.215909 1180204.215909 norm=38.091994 +1310626.134435 1176330.134435 norm=38.236109 +1310678.671376 1178995.671376 norm=38.249183 +1310652.132269 1178490.132269 norm=38.561639 +1310682.868608 1178800.868608 norm=38.366652 +1310705.268993 1183393.268993 norm=38.039453 +1310709.759831 1181701.759831 norm=38.548671 +1310741.806982 1177031.806982 norm=37.788887 +1310769.470441 1180697.470441 norm=37.563280 +1310789.695041 1177753.695041 norm=37.376463 +1310795.709480 1182601.709480 norm=38.353618 +1310802.741263 1181551.741263 norm=38.729833 +1310810.519070 1179412.519070 norm=37.269290 +1310878.193132 1176637.193132 norm=37.749172 +1310867.209938 1179489.209938 norm=38.470768 +1310874.624547 1186663.624547 norm=38.807216 +1310881.190291 1178802.190291 norm=38.587563 +1310900.710264 1180490.710264 norm=38.131352 +1310965.247276 1180732.247276 norm=37.416574 +1310963.918681 1180678.918681 norm=38.704005 +1310950.090788 1181600.090788 norm=38.974351 +1310996.114960 1178602.114960 norm=38.781439 +1311000.525795 1181474.525795 norm=37.416574 +1311051.747646 1181702.747646 norm=38.301436 +1311043.179117 1179795.179117 norm=37.947332 +1311080.450134 1179527.450134 norm=37.349699 +1311101.988192 1179638.988192 norm=37.563280 +1311095.169767 1176580.169767 norm=38.691084 +1311108.120940 1181388.120940 norm=37.709415 +1311148.023580 1182566.023580 norm=36.619667 +1311190.924065 1179303.924065 norm=37.363083 +1311169.176250 1186132.176250 norm=38.910153 +1311159.813224 1178050.813224 norm=38.935845 +1311218.737817 1181657.737817 norm=37.349699 +1311231.300263 1177287.300263 norm=38.039453 +1311244.087272 1186172.087272 norm=37.682887 +1311262.557863 1180493.557863 norm=38.118237 +1311287.642818 1180668.642818 norm=37.403208 +1311315.580730 1178220.580730 norm=37.242449 +1311348.110559 1179522.110559 norm=37.629775 +1311326.935688 1182534.935688 norm=37.656341 +1311381.917490 1184790.917490 norm=37.483330 +1311363.877608 1178435.877608 norm=38.301436 +1311393.475414 1179243.475414 norm=37.629775 +1311416.526557 1179444.526557 norm=37.255872 +1311448.094545 1185081.094545 norm=38.065733 +1311436.165130 1182678.165130 norm=38.353618 +1311447.747153 1180545.747153 norm=38.794329 +1311472.832129 1177683.832129 norm=38.948684 +1311470.612859 1180507.612859 norm=38.548671 +1311502.592074 1179414.592074 norm=38.144462 +1311549.740392 1177168.740392 norm=38.379682 +1311533.015734 1182144.015734 norm=37.815341 +1311580.613332 1178938.613332 norm=37.094474 +1311594.556170 1179265.556170 norm=37.589892 +1311622.396771 1176632.396771 norm=37.349699 +1311635.549045 1185789.549045 norm=37.802116 +1311626.808359 1183874.808359 norm=37.815341 +1311674.023382 1182371.023382 norm=38.000000 +1311665.746972 1184592.746972 norm=37.483330 +1311689.337508 1178810.337508 norm=39.140772 +1311674.836365 1177764.836365 norm=38.013156 +1311740.543926 1184311.543926 norm=38.548671 +1311739.211548 1180630.211548 norm=38.652296 +1311738.148789 1179139.148789 norm=38.418745 +1311782.758364 1181362.758364 norm=37.563280 +1311814.029291 1180508.029291 norm=37.576588 +1311820.141642 1182192.141642 norm=38.209946 +1311823.571957 1181136.571957 norm=37.749172 +1311873.227153 1177785.227153 norm=37.376463 +1311874.440859 1180874.440859 norm=38.091994 +1311870.809854 1180662.809854 norm=38.678159 +1311896.691160 1181256.691160 norm=37.336309 +1311933.586403 1182768.586403 norm=37.881394 +1311946.814465 1184060.814465 norm=37.603191 +1311952.264202 1181015.264202 norm=38.431758 +1311965.579687 1182951.579687 norm=37.363083 +1312002.785101 1176076.785101 norm=37.762415 +1312033.167666 1181162.167666 norm=37.469988 +1312044.231074 1179284.231074 norm=37.802116 +1312040.695773 1179665.695773 norm=38.209946 +1312066.039704 1182695.039704 norm=37.589892 +1312085.404497 1185614.404497 norm=38.275318 +1312088.812780 1182557.812780 norm=39.319207 +1312084.930635 1182917.930635 norm=38.626416 +1312143.067996 1179544.067996 norm=37.788887 +1312167.509837 1181811.509837 norm=37.188708 +1312178.664302 1180431.664302 norm=38.405729 +1312197.745107 1181814.745107 norm=37.735925 +1312219.760679 1180649.760679 norm=36.769553 +1312249.262174 1181934.262174 norm=37.469988 +1312243.865352 1178233.865352 norm=38.639358 +1312252.745925 1178224.745925 norm=37.376463 +1312312.163329 1179234.163329 norm=37.148351 +1312298.642499 1186537.642499 norm=38.768544 +1312283.201258 1179294.201258 norm=38.948684 +1312322.919514 1183069.919514 norm=37.907783 +1312349.831810 1179817.831810 norm=37.709415 +1312386.359391 1182067.359391 norm=37.815341 +1312388.414727 1181081.414727 norm=38.457769 +1312394.180633 1181399.180633 norm=37.656341 +1312431.621294 1181706.621294 norm=37.403208 +1312440.665287 1183528.665287 norm=37.242449 +1312466.822945 1181136.822945 norm=37.682887 +1312461.647289 1184876.647289 norm=38.923001 +1312484.745763 1179398.745763 norm=38.052595 +1312495.146167 1178554.146167 norm=37.973675 +1312517.132250 1178679.132250 norm=37.828561 +1312560.181921 1180478.181921 norm=37.589892 +1312568.459941 1183438.459941 norm=37.589892 +1312591.611927 1180966.611927 norm=37.616486 +1312599.865092 1179440.865092 norm=38.639358 +1312589.258885 1186313.258885 norm=38.236109 +1312629.193288 1182895.193288 norm=37.483330 +1312668.072445 1181803.072445 norm=37.735925 +1312662.639605 1179519.639605 norm=38.078866 +1312680.690126 1183619.690126 norm=38.157568 +1312704.938759 1180172.938759 norm=37.722672 +1312722.734944 1181447.734944 norm=37.175261 +1312753.454905 1182696.454905 norm=37.934153 +1312760.287350 1181784.287350 norm=37.509999 +1312794.551460 1180654.551460 norm=37.349699 +1312790.609414 1183798.609414 norm=38.755645 +1312802.193561 1177993.193561 norm=38.196859 +1312826.062541 1183320.062541 norm=37.907783 +1312842.771101 1180770.771101 norm=38.431758 +1312836.774378 1182024.774378 norm=38.065733 +1312892.429827 1181058.429827 norm=37.616486 +1312897.320197 1177197.320197 norm=37.986840 +1312926.488943 1188206.488943 norm=37.973675 +1312926.995695 1179665.995695 norm=37.749172 +1312961.391472 1181761.391472 norm=37.934153 +1312969.136480 1180802.136480 norm=37.920970 +1312976.746246 1181674.746246 norm=38.209946 +1312999.841769 1179997.841769 norm=38.196859 +1313014.225262 1182228.225262 norm=38.236109 +1313031.939017 1186757.939017 norm=38.353618 +1313051.632446 1183331.632446 norm=37.920970 +1313059.041146 1178932.041146 norm=38.262253 +1313090.173931 1181948.173931 norm=38.431758 +1313087.782536 1180443.782536 norm=39.166312 +1313128.731915 1182061.731915 norm=38.013156 +1313117.689599 1178783.689599 norm=39.255573 +1313144.272570 1184178.272570 norm=37.841776 +1313192.418058 1185766.418058 norm=38.105118 +1313181.412390 1182650.412390 norm=38.639358 +1313208.140813 1182392.140813 norm=38.392708 +1313220.413794 1180086.413794 norm=37.629775 +1313255.883465 1179814.883465 norm=38.327536 +1313253.406270 1182269.406270 norm=38.392708 +1313287.701673 1183038.701673 norm=37.629775 +1313301.680309 1180536.680309 norm=37.709415 +1313314.414747 1183914.414747 norm=38.039453 +1313348.327963 1179638.327963 norm=38.078866 +1313347.355773 1180996.355773 norm=37.854986 +1313387.463127 1180826.463127 norm=37.296112 +1313386.110965 1183777.110965 norm=38.366652 +1313401.274655 1182231.274655 norm=38.678159 +1313408.548422 1182472.548422 norm=37.920970 +1313451.931621 1182484.931621 norm=36.728735 +1313466.633535 1184146.633535 norm=37.709415 +1313493.892695 1180429.892695 norm=37.696154 +1313487.472114 1179638.472114 norm=37.894591 +1313522.378218 1179553.378218 norm=39.268308 +1313483.896008 1184923.896008 norm=38.157568 +1313557.786930 1183706.786930 norm=37.854986 +1313570.885311 1186945.885311 norm=38.366652 +1313565.274060 1180697.274060 norm=38.262253 +1313584.112734 1184418.112734 norm=38.091994 +1313618.395720 1180931.395720 norm=38.144462 +1313636.752413 1176229.752413 norm=38.470768 +1313636.397358 1186053.397358 norm=38.418745 +1313660.221436 1182221.221436 norm=38.574603 +1313674.906092 1182050.906092 norm=38.000000 +1313716.039331 1181559.039331 norm=37.775654 +1313749.348534 1185742.348534 norm=37.986840 +1313720.160426 1181797.160426 norm=37.269290 +1313788.919896 1183445.919896 norm=37.828561 +1313764.823117 1181660.823117 norm=38.314488 +1313773.672738 1177381.672738 norm=38.418745 +1313817.877189 1187245.877189 norm=37.947332 +1313830.357906 1181996.357906 norm=38.144462 +1313840.583717 1181092.583717 norm=37.920970 +1313862.298695 1178898.298695 norm=38.223030 +1313870.889553 1184190.889553 norm=37.589892 +1313892.271946 1184017.271946 norm=38.392708 +1313907.937588 1181855.937588 norm=37.986840 +1313916.767685 1183669.767685 norm=38.587563 +1313936.138232 1186902.138232 norm=37.920970 +1313974.902354 1184979.902354 norm=38.249183 +1313979.545888 1181115.545888 norm=37.336309 +1314018.224752 1182037.224752 norm=37.762415 +1314010.078608 1183888.078608 norm=37.669616 +1314048.821785 1182124.821785 norm=38.613469 +1314045.202025 1183596.202025 norm=38.574603 +1314066.102931 1183500.102931 norm=38.678159 +1314081.903676 1184023.903676 norm=38.013156 +1314101.543582 1178567.543582 norm=37.960506 +1314119.073447 1183360.073447 norm=38.845849 +1314122.699656 1182172.699656 norm=38.196859 +1314159.203349 1180677.203349 norm=37.376463 +1314192.464543 1179803.464543 norm=37.775654 +1314180.554867 1180475.554867 norm=38.209946 +1314221.683955 1183411.683955 norm=38.288379 +1314213.375939 1182335.375939 norm=37.349699 +1314255.901719 1184158.901719 norm=37.907783 +1314263.736979 1185562.736979 norm=37.868192 +1314274.798000 1183918.798000 norm=39.089641 +1314270.579471 1183079.579471 norm=38.587563 +1314323.209205 1184759.209205 norm=37.496667 +1314343.624521 1179501.624521 norm=37.363083 +1314363.140226 1183064.140226 norm=38.275318 +1314350.350762 1179702.350762 norm=38.183766 +1314384.213939 1184039.213939 norm=37.735925 +1314431.831648 1178198.831648 norm=37.376463 +1314430.242991 1188895.242991 norm=37.947332 +1314443.177516 1185998.177516 norm=37.215588 +1314471.838073 1183736.838073 norm=38.755645 +1314446.105930 1178259.105930 norm=38.157568 +1314489.266647 1179353.266647 norm=38.000000 +1314494.082358 1183587.082358 norm=38.327536 +1314521.908210 1187802.908210 norm=38.105118 +1314538.868644 1181282.868644 norm=37.682887 +1314583.931756 1181369.931756 norm=38.026307 +1314553.943685 1182192.943685 norm=39.025633 +1314597.441522 1182644.441522 norm=37.523326 +1314612.753801 1185374.753801 norm=37.443290 +1314633.006431 1186914.006431 norm=38.935845 +1314626.050772 1183258.050772 norm=38.314488 +1314663.341357 1183078.341357 norm=38.444766 +1314666.868218 1180102.868218 norm=37.762415 +1314723.146031 1188484.146031 norm=37.947332 +1314691.167077 1181372.167077 norm=38.444766 +1314729.296405 1183704.296405 norm=38.196859 +1314762.047284 1177535.047284 norm=37.549967 +1314748.117111 1184113.117111 norm=38.249183 +1314797.962409 1180861.962409 norm=37.483330 +1314808.896298 1185575.896298 norm=37.788887 +1314817.154610 1182134.154610 norm=38.923001 +1314830.828953 1189924.828953 norm=38.327536 +1314837.213353 1181772.213353 norm=38.288379 +1314850.383455 1183598.383455 norm=38.327536 +1314890.866337 1180881.866337 norm=38.353618 +1314903.893636 1185349.893636 norm=37.656341 +1314935.995169 1183168.995169 norm=38.157568 +1314929.923184 1184756.923184 norm=37.854986 +1314974.485496 1181386.485496 norm=37.496667 +1314984.641770 1179749.641770 norm=37.775654 +1314996.274791 1184519.274791 norm=38.405729 +1314990.319732 1181789.319732 norm=38.522721 +1315010.795573 1185794.795573 norm=38.236109 +1315028.877729 1184071.877729 norm=38.366652 +1315055.296619 1179561.296619 norm=37.709415 +1315089.214886 1183478.214886 norm=38.665230 +1315077.485001 1181540.485001 norm=38.236109 +1315113.975157 1185374.975157 norm=37.589892 +1315152.626266 1182536.626266 norm=37.868192 +1315148.094363 1180388.094363 norm=37.815341 +1315171.926049 1188032.926049 norm=37.894591 +1315190.735218 1180899.735218 norm=38.052595 +1315192.943105 1189740.943105 norm=38.587563 +1315211.753452 1178818.753452 norm=38.961519 +1315197.416780 1181676.416780 norm=38.457769 +1315249.158295 1186833.158295 norm=38.144462 +1315276.795983 1185583.795983 norm=38.327536 +1315274.882544 1182483.882544 norm=37.828561 +1315313.016972 1183605.016972 norm=37.161808 +1315307.069585 1185119.069585 norm=38.832976 +1315329.478440 1183471.478440 norm=38.249183 +1315351.707263 1184939.707263 norm=38.065733 +1315381.187876 1183687.187876 norm=37.416574 +1315369.378440 1179740.378440 norm=38.600518 +1315408.103360 1184988.103360 norm=38.065733 +1315417.273314 1182701.273314 norm=37.828561 +1315451.675803 1185097.675803 norm=37.175261 +1315463.157021 1182404.157021 norm=38.026307 +1315476.490903 1185095.490903 norm=37.376463 +1315516.172305 1183609.172305 norm=37.000000 +1315527.845082 1182663.845082 norm=37.456642 +1315528.827399 1179806.827399 norm=38.000000 +1315541.943475 1184045.943475 norm=38.522721 +1315553.750375 1186016.750375 norm=37.643060 +1315588.037510 1183391.037510 norm=37.788887 +1315587.124120 1183994.124120 norm=39.115214 +1315591.161754 1185375.161754 norm=38.974351 +1315616.509107 1184407.509107 norm=39.140772 +1315603.918272 1182611.918272 norm=38.665230 +1315677.145767 1185285.145767 norm=38.600518 +1315653.963032 1180002.963032 norm=37.802116 +1315723.814312 1189612.814312 norm=38.236109 +1315697.989751 1179727.989751 norm=38.820098 +1315718.981075 1182052.981075 norm=38.729833 +1315723.775469 1184437.775469 norm=38.183766 +1315769.057892 1187258.057892 norm=37.643060 +1315795.719016 1182860.719016 norm=37.696154 +1315815.501281 1185394.501281 norm=38.118237 +1315810.235006 1182812.235006 norm=37.934153 +1315833.516685 1184413.516685 norm=38.000000 +1315870.970100 1184315.970100 norm=38.405729 +1315842.019798 1185563.019798 norm=38.535698 +1315871.542780 1183429.542780 norm=38.275318 +1315914.297913 1185039.297913 norm=38.091994 +1315915.667570 1185083.667570 norm=38.105118 +1315959.172118 1185097.172118 norm=37.536649 +1315960.433481 1185478.433481 norm=38.858718 +1315953.130989 1186499.130989 norm=38.223030 +1315992.659518 1183542.659518 norm=37.469988 +1316020.162194 1179153.162194 norm=37.920970 +1316020.160128 1183310.160128 norm=38.522721 +1316046.788010 1182321.788010 norm=37.682887 +1316071.541889 1183983.541889 norm=38.209946 +1316060.967899 1191598.967899 norm=38.118237 +1316098.495262 1185611.495262 norm=37.443290 +1316116.343478 1185145.343478 norm=38.196859 +1316125.336609 1180211.336609 norm=37.669616 +1316165.934373 1183317.934373 norm=37.669616 +1316140.437933 1184280.437933 norm=39.038443 +1316165.914573 1182667.914573 norm=38.209946 +1316203.421899 1182532.421899 norm=37.762415 +1316206.523076 1186790.523076 norm=38.000000 +1316238.606604 1184398.606604 norm=38.392708 +1316229.668367 1184339.668367 norm=38.144462 +1316270.414260 1182520.414260 norm=37.973675 +1316288.186678 1184375.186678 norm=38.678159 +1316282.415393 1182042.415393 norm=38.678159 +1316307.254636 1185439.254636 norm=38.301436 +1316334.388032 1185502.388032 norm=37.376463 +1316372.932132 1187810.932132 norm=37.161808 +1316371.668493 1184919.668493 norm=37.669616 +1316377.482364 1184252.482364 norm=37.576588 +1316430.997909 1179192.997909 norm=36.660606 +1316447.269798 1187960.269798 norm=37.107951 +1316457.981153 1178687.981153 norm=37.868192 +1316448.743466 1189093.743466 norm=38.327536 +1316469.114996 1182087.114996 norm=38.379682 +1316485.560296 1185790.560296 norm=37.854986 +1316504.085690 1182507.085690 norm=37.682887 +1316523.670594 1186300.670594 norm=38.431758 +1316527.660049 1186778.660049 norm=39.166312 +1316534.443867 1182440.443867 norm=38.170669 +1316565.972337 1186235.972337 norm=38.987177 +1316578.994010 1183529.994010 norm=37.643060 +1316626.310190 1184298.310190 norm=37.854986 +1316631.369707 1183654.369707 norm=37.629775 +1316634.420547 1182637.420547 norm=39.076847 +1316656.144607 1187472.144607 norm=37.934153 +1316671.566805 1184781.566805 norm=38.600518 +1316686.828672 1186368.828672 norm=38.236109 +1316721.287987 1182833.287987 norm=37.376463 +1316752.657569 1182951.657569 norm=38.353618 +1316700.862022 1186101.862022 norm=38.948684 +1316751.382252 1179978.382252 norm=38.170669 +1316783.797584 1188579.797584 norm=38.249183 +1316815.122073 1182969.122073 norm=37.696154 +1316812.581864 1185503.581864 norm=38.807216 +1316819.090855 1186212.090855 norm=37.255872 +1316871.147712 1180942.147712 norm=36.905284 +1316907.170251 1183453.170251 norm=36.932371 +1316892.533433 1184292.533433 norm=37.920970 +1316893.588337 1183354.588337 norm=37.509999 +1316925.676613 1186512.676613 norm=38.013156 +1316942.247594 1183357.247594 norm=38.249183 +1316949.819781 1188462.819781 norm=38.470768 +1316971.908436 1182810.908436 norm=37.749172 +1316987.087326 1186858.087326 norm=38.144462 +1317001.091900 1184784.091900 norm=38.613469 +1317004.189713 1183186.189713 norm=38.678159 +1317004.541102 1185628.541102 norm=38.704005 +1317023.469799 1183125.469799 norm=38.470768 +1317070.968156 1186185.968156 norm=38.301436 +1317072.253911 1181081.253911 norm=37.589892 +1317131.836197 1187935.836197 norm=37.242449 +1317124.661747 1182355.661747 norm=38.039453 +1317124.638054 1184644.638054 norm=37.603191 +1317185.035808 1186532.035808 norm=37.363083 +1317167.274814 1185889.274814 norm=38.144462 +1317182.732912 1184060.732912 norm=37.669616 +1317232.755331 1180154.755331 norm=37.255872 +1317220.490134 1183206.490134 norm=38.183766 +1317249.594855 1183470.594855 norm=38.587563 +1317225.972167 1182624.972167 norm=38.379682 +1317301.642403 1191139.642403 norm=37.815341 +1317290.422272 1183193.422272 norm=37.986840 +1317325.865499 1186090.865499 norm=37.960506 +1317308.882468 1181470.882468 norm=37.986840 +1317353.120537 1186528.120537 norm=37.868192 +1317363.158975 1184128.158975 norm=37.282704 +1317401.635123 1186193.635123 norm=37.960506 +1317379.642419 1187413.642419 norm=39.102430 +1317395.352303 1186168.352303 norm=38.170669 +1317431.105714 1184239.105714 norm=38.091994 +1317457.400257 1185196.400257 norm=37.907783 +1317436.398800 1188030.398800 norm=38.587563 +1317462.464388 1183218.464388 norm=38.639358 +1317478.574656 1183235.574656 norm=38.183766 +1317519.204633 1186836.204633 norm=37.576588 +1317536.860383 1183680.860383 norm=37.920970 +1317529.144089 1183622.144089 norm=38.652296 +1317564.748557 1184651.748557 norm=38.561639 +1317582.058697 1184499.058697 norm=38.118237 +1317585.351361 1188243.351361 norm=37.802116 +1317630.690344 1186112.690344 norm=37.907783 +1317621.085240 1184634.085240 norm=38.574603 +1317659.327219 1184489.327219 norm=37.363083 +1317671.243531 1188949.243531 norm=38.353618 +1317696.724677 1184137.724677 norm=37.443290 +1317721.825189 1186110.825189 norm=37.589892 +1317709.509040 1181635.509040 norm=37.934153 +1317733.612200 1184656.612200 norm=38.236109 +1317757.211652 1188767.211652 norm=38.275318 +1317755.691806 1184931.691806 norm=37.828561 +1317793.473704 1187052.473704 norm=38.236109 +1317776.322145 1184408.322145 norm=38.987177 +1317819.360435 1186170.360435 norm=37.934153 +1317839.582163 1183690.582163 norm=37.483330 +1317863.798453 1187141.798453 norm=37.881394 +1317877.004399 1185399.004399 norm=37.881394 +1317872.637403 1188551.637403 norm=38.065733 +1317907.772022 1182874.772022 norm=37.854986 +1317909.756147 1187287.756147 norm=38.755645 +1317938.327448 1182596.327448 norm=37.894591 +1317951.905773 1186178.905773 norm=37.973675 +1317971.497825 1181321.497825 norm=37.456642 +1318008.844422 1189147.844422 norm=37.134889 +1317997.737179 1185911.737179 norm=37.960506 +1318025.840072 1191394.840072 norm=38.170669 +1318043.182845 1184743.182845 norm=38.249183 +1318054.871781 1185323.871781 norm=37.802116 +1318085.322691 1185242.322691 norm=38.078866 +1318085.601063 1184311.601063 norm=38.013156 +1318113.638117 1191176.638117 norm=37.121422 +1318148.075744 1187010.075744 norm=37.456642 +1318142.250293 1183985.250293 norm=37.682887 +1318162.752414 1187842.752414 norm=38.183766 +1318164.277123 1183378.277123 norm=38.000000 +1318183.653414 1185344.653414 norm=38.729833 +1318201.948553 1188057.948553 norm=37.589892 +1318224.231534 1181600.231534 norm=38.118237 +1318243.858124 1188761.858124 norm=38.535698 +1318246.943993 1186098.943993 norm=37.722672 +1318299.567569 1187871.567569 norm=37.735925 +1318287.684935 1183557.684935 norm=37.563280 +1318319.616708 1183313.616708 norm=37.854986 +1318324.546181 1187110.546181 norm=38.105118 +1318348.283891 1184520.283891 norm=38.236109 +1318352.569844 1186841.569844 norm=38.301436 +1318376.653309 1186909.653309 norm=37.282704 +1318409.313162 1187429.313162 norm=39.166312 +1318390.793001 1186597.793001 norm=38.418745 +1318409.895212 1189537.895212 norm=38.548671 +1318445.445945 1181578.445945 norm=38.574603 +1318448.250332 1188960.250332 norm=37.722672 +1318502.870374 1180462.870374 norm=38.496753 +1318460.066404 1191070.066404 norm=38.884444 +1318494.599321 1183942.599321 norm=37.841776 +1318539.522276 1189137.522276 norm=37.269290 +1318567.204834 1185473.204834 norm=37.269290 +1318571.235504 1186721.235504 norm=38.000000 +1318587.384624 1190465.384624 norm=37.815341 +1318608.640610 1181271.640610 norm=37.656341 +1318627.718764 1185674.718764 norm=37.523326 +1318616.289555 1188872.289555 norm=39.166312 +1318622.036978 1184183.036978 norm=38.039453 +1318677.584338 1186625.584338 norm=37.907783 +1318648.042845 1187788.042845 norm=39.025633 +1318694.736318 1189810.736318 norm=37.960506 +1318726.389040 1184928.389040 norm=37.934153 +1318728.152859 1183523.152859 norm=37.881394 +1318748.695952 1186503.695952 norm=38.170669 +1318763.807135 1186216.807135 norm=36.810325 +1318812.317941 1189597.317941 norm=37.121422 +1318805.497242 1187979.497242 norm=36.796739 +1318844.240010 1189558.240010 norm=37.881394 +1318815.568745 1186496.568745 norm=38.470768 +1318830.395515 1188030.395515 norm=39.166312 +1318850.703077 1181938.703077 norm=38.678159 +1318854.964019 1189651.964019 norm=38.118237 +1318906.056653 1183626.056653 norm=37.403208 +1318931.986145 1188992.986145 norm=38.131352 +1318934.174090 1188884.174090 norm=37.121422 +1318970.935450 1185112.935450 norm=37.309516 +1318963.635636 1186437.635636 norm=37.643060 +1319000.991864 1185020.991864 norm=37.576588 +1319007.874966 1187829.874966 norm=37.296112 +1319038.938269 1186296.938269 norm=38.301436 +1319028.601063 1191905.601063 norm=37.947332 +1319037.163172 1188091.163172 norm=38.131352 +1319074.784410 1184701.784410 norm=38.026307 +1319072.465276 1188711.465276 norm=38.379682 +1319085.788058 1186399.788058 norm=38.522721 +1319101.175226 1187506.175226 norm=37.854986 +1319118.561525 1189719.561525 norm=38.144462 +1319152.922679 1182493.922679 norm=37.656341 +1319162.248054 1189872.248054 norm=38.131352 +1319184.294876 1182586.294876 norm=38.314488 +1319191.896081 1187838.896081 norm=38.275318 +1319209.667305 1184580.667305 norm=37.496667 +1319235.380963 1189132.380963 norm=39.064050 +1319217.920508 1184237.920508 norm=37.416574 +1319291.467414 1186126.467414 norm=37.669616 +1319257.938926 1186209.938926 norm=38.340579 +1319294.587825 1187388.587825 norm=38.496753 +1319311.876679 1188610.876679 norm=37.309516 +1319332.840431 1187957.840431 norm=38.483763 +1319338.992891 1185441.992891 norm=38.626416 +1319349.658851 1191358.658851 norm=38.144462 +1319387.485602 1185865.485602 norm=38.587563 +1319357.641461 1187069.641461 norm=38.118237 +1319406.730528 1187568.730528 norm=39.420807 +1319395.971740 1189561.971740 norm=38.013156 +1319465.392340 1187069.392340 norm=36.496575 +1319474.019530 1188354.019530 norm=37.894591 +1319459.913490 1183602.913490 norm=38.392708 +1319508.278922 1189548.278922 norm=37.616486 +1319500.380740 1185553.380740 norm=37.973675 +1319547.886846 1190659.886846 norm=37.148351 +1319547.353943 1187622.353943 norm=38.039453 +1319575.432803 1187835.432803 norm=37.389838 +1319573.424598 1184600.424598 norm=38.105118 +1319611.674696 1182659.674696 norm=38.288379 +1319592.497072 1190816.497072 norm=38.574603 +1319612.573301 1187907.573301 norm=37.973675 +1319635.835494 1189010.835494 norm=38.052595 +1319662.149506 1185076.149506 norm=38.340579 +1319672.039611 1188614.039611 norm=38.600518 +1319680.806680 1187089.806680 norm=38.910153 +1319690.526150 1188789.526150 norm=37.907783 +1319706.849454 1189113.849454 norm=37.643060 +1319778.352846 1188640.352846 norm=38.314488 +1319746.314636 1187982.314636 norm=38.249183 +1319749.344919 1189952.344919 norm=39.153544 +1319766.303141 1180550.303141 norm=38.678159 +1319801.011284 1190899.011284 norm=38.091994 +1319825.373993 1189739.373993 norm=38.794329 +1319826.412174 1188690.412174 norm=38.223030 +1319855.649897 1185111.649897 norm=38.170669 +1319847.810262 1189028.810262 norm=37.960506 +1319909.172279 1189926.172279 norm=37.629775 +1319883.124773 1188827.124773 norm=38.794329 +1319915.067064 1189463.067064 norm=38.262253 +1319937.507003 1182558.507003 norm=37.868192 +1319975.072400 1192881.072400 norm=37.134889 +1319990.105556 1181850.105556 norm=37.080992 +1320007.388352 1188916.388352 norm=37.986840 +1320006.178383 1189712.178383 norm=37.656341 +1320037.747414 1191351.747414 norm=37.589892 +1320054.267470 1188054.267470 norm=37.616486 +1320059.289692 1185745.289692 norm=38.794329 +1320056.695392 1193996.695392 norm=38.509739 +1320073.538106 1189097.538106 norm=38.223030 +1320110.540209 1189747.540209 norm=37.589892 +1320135.146728 1188120.146728 norm=37.775654 +1320157.515457 1187501.515457 norm=36.715120 +1320155.037351 1188074.037351 norm=38.509739 +1320154.999279 1186994.999279 norm=37.815341 +1320195.686836 1182248.686836 norm=38.091994 +1320190.001461 1190955.001461 norm=37.749172 +1320212.003078 1189968.003078 norm=38.665230 +1320219.585362 1190071.585362 norm=38.353618 +1320260.506243 1187109.506243 norm=37.828561 +1320268.865680 1188598.865680 norm=38.496753 +1320262.639504 1189451.639504 norm=39.281039 +1320272.547188 1187689.547188 norm=38.170669 +1320300.882407 1189379.882407 norm=39.115214 +1320297.987361 1190520.987361 norm=38.704005 +1320349.527097 1186054.527097 norm=37.376463 +1320394.405741 1189083.405741 norm=37.403208 +1320374.790686 1185619.790686 norm=38.078866 +1320400.313691 1190499.313691 norm=38.444766 +1320394.341801 1191734.341801 norm=39.711459 +1320398.728587 1186928.728587 norm=38.742741 +1320424.726171 1192395.726171 norm=38.327536 +1320458.991657 1188905.991657 norm=38.118237 +1320488.795754 1187080.795754 norm=37.603191 +1320493.838047 1188200.838047 norm=38.561639 +1320498.828096 1186857.828096 norm=38.013156 +1320540.261280 1187850.261280 norm=37.429935 +1320544.603089 1186282.603089 norm=37.080992 +1320588.928127 1190764.928127 norm=37.483330 +1320581.864457 1189034.864457 norm=38.026307 +1320592.249809 1187156.249809 norm=38.496753 +1320594.107293 1192768.107293 norm=37.973675 +1320647.823208 1185528.823208 norm=36.551334 +1320662.861543 1188271.861543 norm=37.960506 +1320666.008121 1188296.008121 norm=38.574603 +1320655.606572 1184480.606572 norm=38.026307 +1320696.452873 1188933.452873 norm=38.574603 +1320685.539743 1188593.539743 norm=37.934153 +1320731.360701 1189790.360701 norm=38.948684 +1320734.148338 1186893.148338 norm=38.652296 +1320758.352853 1188471.352853 norm=38.262253 +1320747.687496 1192717.687496 norm=38.457769 +1320791.820271 1187898.820271 norm=38.065733 +1320813.080283 1186467.080283 norm=37.947332 +1320831.905127 1186073.905127 norm=37.067506 +1320855.909144 1192772.909144 norm=37.986840 +1320842.336935 1188450.336935 norm=39.012818 +1320844.948884 1191445.948884 norm=38.392708 +1320887.575888 1189365.575888 norm=38.052595 +1320905.454145 1187571.454145 norm=38.340579 +1320915.810214 1190142.810214 norm=39.242834 +1320909.494407 1188451.494407 norm=38.105118 +1320947.335589 1184308.335589 norm=37.749172 +1320967.679916 1188900.679916 norm=38.262253 +1320970.733143 1189024.733143 norm=38.974351 +1320991.134865 1190165.134865 norm=37.669616 +1321024.877340 1181735.877340 norm=37.107951 +1321066.999126 1189486.999126 norm=36.728735 +1321079.585972 1187828.585972 norm=37.496667 +1321074.524933 1189532.524933 norm=37.788887 +1321082.099878 1192544.099878 norm=38.275318 +1321091.446985 1191451.446985 norm=37.986840 +1321133.004198 1187507.004198 norm=38.196859 +1321133.135634 1189761.135634 norm=37.309516 +1321184.504920 1188258.504920 norm=37.309516 +1321160.461426 1188445.461426 norm=38.275318 +1321163.497533 1187774.497533 norm=38.405729 +1321191.106560 1190608.106560 norm=37.496667 +1321210.413014 1187042.413014 norm=37.296112 +1321252.899388 1189870.899388 norm=37.563280 +1321246.862465 1188186.862465 norm=38.236109 +1321243.970963 1193885.970963 norm=37.960506 +1321270.735460 1189555.735460 norm=38.858718 +1321283.537345 1188138.537345 norm=37.255872 +1321342.401923 1185873.401923 norm=37.815341 +1321327.281231 1191017.281231 norm=38.013156 +1321350.741069 1187916.741069 norm=38.301436 +1321352.483933 1189273.483933 norm=38.157568 +1321366.076187 1189580.076187 norm=38.496753 +1321375.141895 1192010.141895 norm=38.131352 +1321423.681105 1191830.681105 norm=37.696154 +1321427.854766 1188685.854766 norm=37.656341 +1321443.602621 1189832.602621 norm=38.716921 +1321443.931632 1189051.931632 norm=38.340579 +1321466.176416 1188589.176416 norm=37.907783 +1321492.469807 1189498.469807 norm=37.669616 +1321521.049846 1189367.049846 norm=37.934153 +1321521.679452 1187817.679452 norm=37.788887 +1321542.282811 1190189.282811 norm=37.175261 +1321576.176625 1189776.176625 norm=38.548671 +1321538.223811 1188934.223811 norm=39.204592 +1321557.143971 1194244.143971 norm=38.105118 +1321620.210253 1184294.210253 norm=37.309516 +1321624.540625 1189827.540625 norm=37.960506 +1321641.552248 1186433.552248 norm=38.026307 +1321660.263899 1190584.263899 norm=37.148351 +1321689.613241 1190061.613241 norm=36.810325 +1321715.685157 1190760.685157 norm=37.269290 +1321716.597006 1189874.597006 norm=37.416574 +1321744.155751 1186274.155751 norm=37.336309 +1321742.881991 1189516.881991 norm=37.920970 +1321745.181737 1192555.181737 norm=38.288379 +1321751.364338 1188284.364338 norm=38.509739 +1321785.358211 1190414.358211 norm=38.131352 +1321793.882672 1192294.882672 norm=38.340579 +1321816.759258 1188133.759258 norm=37.881394 +1321828.491431 1191229.491431 norm=38.249183 +1321859.045811 1191796.045811 norm=38.496753 +1321841.855954 1190394.855954 norm=37.496667 +1321897.998706 1186420.998706 norm=37.469988 +1321901.402156 1188152.402156 norm=37.868192 +1321893.813176 1190757.813176 norm=38.457769 +1321935.034472 1187698.034472 norm=37.682887 +1321956.349121 1191044.349121 norm=38.457769 +1321927.399642 1189687.399642 norm=39.357337 +1321951.082525 1189926.082525 norm=38.275318 +1322002.281259 1193528.281259 norm=37.881394 +1322001.331089 1188343.331089 norm=38.353618 +1322019.522522 1189821.522522 norm=38.288379 +1322023.473501 1189598.473501 norm=37.322915 +1322075.574485 1189310.574485 norm=37.960506 +1322083.242660 1193145.242660 norm=38.379682 +1322090.202272 1188759.202272 norm=37.563280 +1322114.081162 1193449.081162 norm=37.854986 +1322119.558847 1188585.558847 norm=37.920970 +1322142.095763 1187726.095763 norm=37.894591 +1322163.829550 1190002.829550 norm=37.549967 +1322183.964224 1193632.964224 norm=37.722672 +1322172.098063 1192923.098063 norm=37.603191 +1322224.555290 1183247.555290 norm=37.469988 +1322249.826774 1190480.826774 norm=36.972963 +1322241.966605 1189583.966605 norm=37.188708 +1322247.254897 1188001.254897 norm=38.678159 +1322224.562976 1196576.562976 norm=39.012818 +1322269.812897 1185416.812897 norm=38.418745 +1322291.501673 1188657.501673 norm=38.691084 +1322300.931467 1189482.931467 norm=38.948684 +1322310.755150 1193420.755150 norm=38.781439 +1322341.222810 1190614.222810 norm=38.561639 +1322364.010655 1192470.010655 norm=38.923001 +1322368.834411 1187502.834411 norm=38.301436 +1322399.189323 1187926.189323 norm=38.716921 +1322388.301973 1187979.301973 norm=37.894591 +1322452.835433 1188331.835433 norm=37.282704 +1322450.223079 1190965.223079 norm=38.000000 +1322454.933553 1192501.933553 norm=37.947332 +1322486.238631 1189250.238631 norm=37.269290 +1322498.509312 1190557.509312 norm=37.947332 +1322518.694528 1190258.694528 norm=38.013156 +1322523.963091 1182826.963091 norm=38.340579 +1322538.545765 1190438.545765 norm=38.794329 +1322541.455087 1188135.455087 norm=38.574603 +1322567.055858 1190298.055858 norm=37.255872 +1322618.945704 1192185.945704 norm=37.947332 +1322591.200811 1194170.200811 norm=38.884444 +1322599.257793 1188716.257793 norm=38.742741 +1322639.867337 1193459.867337 norm=37.854986 +1322653.472302 1187356.472302 norm=37.509999 +1322694.989495 1191563.989495 norm=37.013511 +1322685.455301 1189131.455301 norm=38.366652 +1322706.831602 1192104.831602 norm=37.000000 +1322752.512886 1188510.512886 norm=37.589892 +1322737.529696 1190034.529696 norm=37.589892 +1322758.298482 1192273.298482 norm=37.749172 +1322764.040695 1189447.040695 norm=38.144462 +1322794.659160 1190886.659160 norm=38.183766 +1322790.679492 1189994.679492 norm=38.418745 +1322814.680395 1188764.680395 norm=38.275318 +1322815.283746 1192483.283746 norm=38.729833 +1322824.931897 1193486.931897 norm=38.729833 +1322853.960837 1189439.960837 norm=38.794329 +1322855.156488 1188457.156488 norm=38.275318 +1322893.795724 1194197.795724 norm=38.078866 +1322914.596349 1188477.596349 norm=37.854986 +1322934.876081 1191302.876081 norm=38.496753 +1322934.073978 1191805.073978 norm=38.897301 +1322950.626894 1187802.626894 norm=38.327536 +1322966.904945 1189779.904945 norm=37.603191 +1323019.019798 1192517.019798 norm=37.483330 +1323011.102297 1191050.102297 norm=37.349699 +1323049.883944 1190409.883944 norm=37.322915 +1323032.395685 1192766.395685 norm=38.340579 +1323051.227500 1182671.227500 norm=38.820098 +1323058.528124 1194473.528124 norm=38.729833 +1323064.316759 1189489.316759 norm=38.052595 +1323115.219779 1192111.219779 norm=37.669616 +1323124.617479 1191233.617479 norm=37.376463 +1323143.509481 1197290.509481 norm=38.327536 +1323155.090565 1189396.090565 norm=37.403208 +1323165.235329 1192762.235329 norm=39.547440 +1323156.628790 1191250.628790 norm=38.392708 +1323186.897060 1187587.897060 norm=38.118237 +1323212.582848 1190166.582848 norm=37.881394 +1323240.838296 1192130.838296 norm=37.934153 +1323241.184539 1186929.184539 norm=37.242449 +1323285.686289 1194617.686289 norm=37.589892 +1323283.038460 1185524.038460 norm=37.735925 +1323311.040122 1191958.040122 norm=38.249183 +1323298.858545 1190676.858545 norm=38.157568 +1323345.552952 1195785.552952 norm=37.709415 +1323337.875878 1188754.875878 norm=38.483763 +1323353.317692 1194823.317692 norm=37.841776 +1323354.370797 1188839.370797 norm=39.344631 +1323376.233690 1192090.233690 norm=37.215588 +1323428.535067 1190090.535067 norm=37.456642 +1323438.525000 1191471.525000 norm=38.236109 +1323444.213601 1188269.213601 norm=38.105118 +1323451.787302 1192895.787302 norm=38.327536 +1323456.791032 1187347.791032 norm=37.960506 +1323494.063709 1191821.063709 norm=37.986840 +1323506.124164 1185485.124164 norm=38.196859 +1323506.668377 1192054.668377 norm=38.755645 +1323526.129011 1186517.129011 norm=38.052595 +1323553.378841 1194529.378841 norm=39.038443 +1323537.696211 1189298.696211 norm=38.820098 +1323570.857049 1194499.857049 norm=37.775654 +1323594.625020 1186294.625020 norm=38.974351 +1323593.730011 1200273.730011 norm=38.665230 +1323622.623767 1186133.623767 norm=38.548671 +1323637.845623 1197326.845623 norm=37.709415 +1323678.877524 1187578.877524 norm=37.629775 +1323689.275574 1193620.275574 norm=37.536649 +1323694.406394 1187135.406394 norm=37.828561 +1323713.893210 1197438.893210 norm=38.065733 +1323720.172883 1185491.172883 norm=38.275318 +1323748.862494 1191344.862494 norm=38.144462 +1323738.135247 1190728.135247 norm=38.144462 +1323785.424598 1192552.424598 norm=37.947332 +1323791.322856 1194309.322856 norm=38.170669 +1323811.008430 1191872.008430 norm=37.629775 +1323821.530210 1191558.530210 norm=37.920970 +1323841.850046 1191399.850046 norm=37.881394 +1323862.335322 1192232.335322 norm=38.379682 +1323869.481690 1189962.481690 norm=38.704005 +1323859.581002 1191262.581002 norm=39.191836 +1323877.718932 1195929.718932 norm=38.405729 +1323889.586313 1190828.586313 norm=38.704005 +1323921.501958 1190529.501958 norm=38.858718 +1323945.436087 1193660.436087 norm=37.656341 +1323961.806318 1192173.806318 norm=37.603191 +1323984.643471 1190942.643471 norm=37.175261 +1323983.139372 1192396.139372 norm=39.115214 +1324000.481403 1186809.481403 norm=38.314488 +1324016.995417 1190174.995417 norm=38.496753 +1324024.928038 1193144.928038 norm=38.183766 +1324068.346413 1189257.346413 norm=38.065733 +1324060.557321 1194464.557321 norm=38.935845 +1324091.258458 1188227.258458 norm=37.709415 +1324098.976266 1198712.976266 norm=38.314488 +1324132.897256 1185557.897256 norm=38.379682 +1324132.705829 1196163.705829 norm=37.947332 +1324156.308416 1187879.308416 norm=37.563280 +1324187.013954 1187719.013954 norm=38.157568 +1324164.079253 1191853.079253 norm=39.179076 +1324189.836264 1196179.836264 norm=38.574603 +1324202.823707 1191799.823707 norm=38.444766 +1324244.695672 1193019.695672 norm=37.749172 +1324232.454658 1190635.454658 norm=37.523326 +1324298.224423 1194815.224423 norm=37.960506 +1324270.232911 1197072.232911 norm=38.729833 +1324291.631025 1192614.631025 norm=37.815341 +1324319.839206 1191726.839206 norm=38.353618 +1324314.051149 1189987.051149 norm=38.987177 +1324319.606929 1193484.606929 norm=38.379682 +1324358.320999 1190994.320999 norm=38.561639 +1324361.427900 1192070.427900 norm=38.262253 +1324385.732627 1191377.732627 norm=37.563280 +1324419.906409 1188743.906409 norm=37.483330 +1324433.471873 1190944.471873 norm=38.858718 +1324416.269639 1190677.269639 norm=38.157568 +1324451.841381 1194220.841381 norm=38.249183 +1324463.841594 1192579.841594 norm=38.781439 +1324473.239921 1192943.239921 norm=38.974351 +1324475.591680 1189485.591680 norm=38.366652 +1324523.006373 1193382.006373 norm=38.639358 +1324531.624017 1193266.624017 norm=38.600518 +1324528.415387 1194010.415387 norm=38.209946 +1324556.960404 1193511.960404 norm=38.366652 +1324560.641331 1190867.641331 norm=38.897301 +1324564.645769 1193548.645769 norm=38.509739 +1324596.086796 1192204.086796 norm=38.236109 +1324632.499732 1194121.499732 norm=36.565011 +1324685.846535 1190033.846535 norm=37.175261 +1324659.825291 1198593.825291 norm=37.960506 +1324663.549888 1189220.549888 norm=38.548671 +1324669.001337 1191231.001337 norm=37.735925 +1324706.555241 1193736.555241 norm=38.170669 +1324724.957534 1193029.957534 norm=37.242449 +1324753.108118 1193392.108118 norm=37.107951 +1324759.688440 1192605.688440 norm=38.327536 +1324752.423893 1193169.423893 norm=38.105118 +1324792.594768 1195557.594768 norm=38.496753 +1324771.289504 1191427.289504 norm=39.255573 +1324761.989631 1194180.989631 norm=39.281039 +1324806.832617 1194252.832617 norm=39.268308 +1324827.853856 1192317.853856 norm=37.762415 +1324854.189815 1192378.189815 norm=38.262253 +1324874.568778 1194579.568778 norm=36.918830 +1324916.124409 1193966.124409 norm=37.722672 +1324897.282724 1196407.282724 norm=38.288379 +1324927.037978 1190248.037978 norm=37.576588 +1324941.181177 1195049.181177 norm=36.633318 +1324985.697147 1190886.697147 norm=38.013156 +1324936.694470 1190640.694470 norm=38.845849 +1324971.791500 1189269.791500 norm=37.947332 +1325002.693947 1197323.693947 norm=38.974351 +1324974.611949 1197863.611949 norm=38.691084 +1325021.277269 1192435.277269 norm=38.923001 +1325005.416602 1193206.416602 norm=38.262253 +1325087.941882 1191659.941882 norm=38.496753 +1325050.585431 1194212.585431 norm=38.768544 +1325063.103346 1196591.103346 norm=38.652296 +1325114.824516 1190482.824516 norm=37.067506 +1325134.414402 1196324.414402 norm=38.052595 +1325135.244928 1195960.244928 norm=38.000000 +1325156.961965 1190235.961965 norm=38.131352 +1325157.026155 1191703.026155 norm=38.091994 +1325188.957207 1195999.957207 norm=37.282704 +1325199.343651 1197339.343651 norm=37.589892 +1325221.084752 1193350.084752 norm=37.080992 +1325252.377307 1197644.377307 norm=37.242449 +1325247.537359 1193112.537359 norm=37.841776 +1325273.217175 1194412.217175 norm=37.603191 +1325271.273014 1192953.273014 norm=38.755645 +1325265.074018 1195556.074018 norm=38.522721 +1325308.169792 1190841.169792 norm=38.157568 +1325300.076574 1195611.076574 norm=37.868192 +1325352.495102 1195451.495102 norm=37.788887 +1325339.398499 1194897.398499 norm=38.561639 +1325367.426933 1189406.426933 norm=37.282704 +1325396.206009 1196705.206009 norm=38.131352 +1325397.861303 1194287.861303 norm=39.140772 +1325375.153805 1197164.153805 norm=38.755645 +1325417.301196 1196217.301196 norm=38.183766 +1325423.546920 1191463.546920 norm=38.314488 +1325462.336843 1192080.336843 norm=38.353618 +1325462.187752 1194749.187752 norm=38.223030 +1325502.564869 1195526.564869 norm=37.469988 +1325500.135674 1195000.135674 norm=37.107951 +1325548.017968 1192930.017968 norm=37.363083 +1325521.711665 1192591.711665 norm=37.349699 +1325567.298381 1194374.298381 norm=37.828561 +1325556.050283 1192554.050283 norm=37.920970 +1325577.283593 1194733.283593 norm=39.331921 +1325553.952610 1196193.952610 norm=38.196859 +1325619.769394 1194385.769394 norm=37.907783 +1325636.262313 1195177.262313 norm=38.923001 +1325621.548403 1189220.548403 norm=38.561639 +1325659.258526 1196240.258526 norm=37.269290 +1325677.987921 1193335.987921 norm=38.223030 +1325674.135054 1196593.135054 norm=38.379682 +1325696.417981 1199210.417981 norm=38.262253 +1325708.812685 1192330.812685 norm=38.288379 +1325730.090990 1196860.090990 norm=37.722672 +1325756.546407 1194372.546407 norm=37.416574 +1325753.331318 1195623.331318 norm=39.204592 +1325747.511323 1197265.511323 norm=38.613469 +1325783.415812 1194396.415812 norm=37.815341 +1325815.057967 1197579.057967 norm=38.522721 +1325820.344886 1193881.344886 norm=37.134889 +1325839.983471 1193998.983471 norm=37.815341 +1325865.555176 1195975.555176 norm=37.242449 +1325862.778213 1193065.778213 norm=38.729833 +1325866.131827 1195432.131827 norm=38.144462 +1325886.170118 1192484.170118 norm=37.947332 +1325928.380037 1196720.380037 norm=37.788887 +1325928.359920 1196146.359920 norm=37.629775 +1325954.084706 1194575.084706 norm=37.027017 +1325965.930922 1196459.930922 norm=37.148351 +1325994.693214 1195395.693214 norm=38.118237 +1325999.405258 1196076.405258 norm=38.223030 +1325973.047857 1190876.047857 norm=38.522721 +1326028.227716 1197291.227716 norm=37.496667 +1326039.492278 1198410.492278 norm=38.327536 +1326058.435225 1193670.435225 norm=38.157568 +1326048.890682 1196282.890682 norm=37.483330 +1326102.364357 1195874.364357 norm=37.161808 +1326116.669438 1194932.669438 norm=37.255872 +1326112.622112 1200575.622112 norm=39.127995 +1326092.231400 1194689.231400 norm=38.884444 +1326149.022275 1192726.022275 norm=38.078866 +1326152.722175 1199436.722175 norm=37.456642 +1326180.446349 1193168.446349 norm=36.918830 +1326195.356386 1194946.356386 norm=37.629775 +1326200.148575 1191796.148575 norm=37.389838 +1326248.159650 1197348.159650 norm=35.832946 +1326288.353927 1193763.353927 norm=37.960506 +1326221.611221 1198112.611221 norm=38.183766 +1326262.375553 1199161.375553 norm=37.907783 +1326259.449098 1192840.449098 norm=38.678159 +1326292.281810 1197209.281810 norm=38.379682 +1326284.504697 1193466.504697 norm=39.408121 +1326301.766577 1195077.766577 norm=38.431758 +1326319.493704 1196272.493704 norm=38.052595 +1326349.835534 1198576.835534 norm=37.894591 +1326356.769247 1194976.769247 norm=38.379682 +1326390.486832 1196476.486832 norm=37.202150 +1326420.504352 1191549.504352 norm=36.878178 +1326413.862738 1192671.862738 norm=38.832976 +1326417.494245 1195566.494245 norm=37.947332 +1326450.980883 1197732.980883 norm=37.403208 +1326463.093828 1193490.093828 norm=37.416574 +1326488.713800 1192250.713800 norm=38.078866 +1326501.144587 1197122.144587 norm=37.322915 +1326509.697072 1196014.697072 norm=38.327536 +1326511.336612 1195093.336612 norm=37.788887 +1326540.868966 1196401.868966 norm=37.920970 +1326536.089885 1197435.089885 norm=37.322915 +1326589.968038 1198992.968038 norm=37.549967 +1326550.678565 1199599.678565 norm=39.000000 +1326584.220893 1191745.220893 norm=37.788887 +1326621.544456 1193437.544456 norm=38.091994 +1326613.465282 1197044.465282 norm=38.340579 +1326639.344066 1195752.344066 norm=37.934153 +1326661.863102 1195712.863102 norm=37.496667 +1326671.729991 1198119.729991 norm=37.054015 +1326703.401354 1194281.401354 norm=37.868192 +1326676.088425 1196212.088425 norm=38.535698 +1326711.138983 1196153.138983 norm=38.327536 +1326717.250719 1193541.250719 norm=37.696154 +1326768.962112 1197893.962112 norm=37.148351 +1326770.089124 1197814.089124 norm=37.040518 +1326814.226765 1196195.226765 norm=37.336309 +1326776.956412 1197698.956412 norm=38.249183 +1326789.124119 1193878.124119 norm=38.065733 +1326806.522704 1197253.522704 norm=38.183766 +1326834.085271 1199543.085271 norm=39.038443 +1326816.012844 1196204.012844 norm=38.223030 +1326888.432825 1197402.432825 norm=37.067506 +1326896.577540 1191537.577540 norm=37.735925 +1326890.282685 1200112.282685 norm=37.483330 +1326926.727205 1198170.727205 norm=36.864617 +1326915.647739 1190047.647739 norm=38.223030 +1326950.536774 1192378.536774 norm=37.973675 +1326921.545206 1195296.545206 norm=38.196859 +1326959.070844 1200395.070844 norm=38.820098 +1326975.515860 1196526.515860 norm=37.363083 +1327021.855204 1196808.855204 norm=36.891733 +1327031.517722 1197874.517722 norm=37.229021 +1327029.511113 1194192.511113 norm=38.131352 +1327038.421661 1195695.421661 norm=38.691084 +1327044.937505 1195797.937505 norm=37.722672 +1327077.163231 1201975.163231 norm=38.691084 +1327073.596729 1199188.596729 norm=38.223030 +1327073.841238 1197925.841238 norm=39.000000 +1327099.645381 1197214.645381 norm=38.768544 +1327110.502650 1196404.502650 norm=38.170669 +1327157.914957 1194526.914957 norm=36.359318 +1327187.607329 1198051.607329 norm=37.376463 +1327166.049908 1195022.049908 norm=38.340579 +1327189.694492 1195411.694492 norm=37.443290 +1327201.355560 1198316.355560 norm=36.905284 +1327241.576435 1193379.576435 norm=37.762415 +1327234.619181 1198372.619181 norm=37.841776 +1327251.018535 1199514.018535 norm=37.696154 +1327276.602459 1197176.602459 norm=37.229021 +1327295.324508 1195354.324508 norm=38.845849 +1327276.870209 1196193.870209 norm=38.157568 +1327296.283174 1198876.283174 norm=38.457769 +1327325.511106 1198880.511106 norm=37.854986 +1327347.782426 1198848.782426 norm=37.523326 +1327334.980632 1190221.980632 norm=38.340579 +1327365.156999 1196996.156999 norm=38.353618 +1327369.193713 1195761.193713 norm=38.639358 +1327396.908956 1202419.908956 norm=38.078866 +1327411.828668 1197250.828668 norm=37.416574 +1327434.202377 1199179.202377 norm=37.000000 +1327453.383556 1194104.383556 norm=37.509999 +1327481.491129 1199457.491129 norm=37.469988 +1327464.262056 1197996.262056 norm=38.457769 +1327455.942295 1200144.942295 norm=37.762415 +1327525.671698 1198921.671698 norm=36.837481 +1327534.388256 1195911.388256 norm=37.296112 +1327539.308099 1196617.308099 norm=37.469988 +1327543.616697 1192969.616697 norm=37.589892 +1327558.642661 1198837.642661 norm=38.157568 +1327576.136139 1191769.136139 norm=37.040518 +1327593.698076 1193108.698076 norm=37.722672 +1327627.686258 1198428.686258 norm=37.735925 +1327610.675890 1196499.675890 norm=37.960506 +1327636.142651 1198161.142651 norm=37.456642 +1327647.419969 1195502.419969 norm=37.854986 +1327670.497543 1203517.497543 norm=38.301436 +1327682.972694 1200522.972694 norm=38.483763 +1327687.296870 1194775.296870 norm=37.443290 +1327711.478451 1196432.478451 norm=37.496667 +1327728.649367 1194970.649367 norm=38.105118 +1327714.078370 1197723.078370 norm=39.000000 +1327742.658965 1199183.658965 norm=37.868192 +1327757.439719 1196623.439719 norm=37.563280 +1327800.683611 1197976.683611 norm=36.755952 +1327830.550923 1200227.550923 norm=36.945906 +1327830.823380 1194212.823380 norm=37.322915 +1327826.164384 1203023.164384 norm=37.536649 +1327856.848900 1197794.848900 norm=37.175261 +1327849.728625 1196006.728625 norm=37.536649 +1327881.454807 1202103.454807 norm=38.131352 +1327882.821863 1195734.821863 norm=37.509999 +1327906.633273 1197753.633273 norm=38.013156 +1327906.501742 1199287.501742 norm=37.920970 +1327939.183725 1196896.183725 norm=36.932371 +1327967.210861 1193998.210861 norm=37.013511 +1327976.604378 1202719.604378 norm=37.255872 +1327979.065636 1191024.065636 norm=38.091994 +1327974.048495 1197543.048495 norm=38.910153 +1327988.503215 1196445.503215 norm=38.288379 +1328023.467585 1197661.467585 norm=37.161808 +1328031.757375 1197287.757375 norm=38.626416 +1328056.424729 1199981.424729 norm=37.403208 +1328060.349912 1197246.349912 norm=37.960506 +1328088.750349 1207621.750349 norm=37.483330 +1328086.474311 1196407.474311 norm=38.236109 +1328104.104535 1193925.104535 norm=37.696154 +1328103.874075 1197145.874075 norm=38.910153 +1328117.148381 1199391.148381 norm=38.716921 +1328127.273030 1196484.273030 norm=38.052595 +1328167.375660 1197365.375660 norm=38.314488 +1328164.003902 1195742.003902 norm=38.078866 +1328190.868814 1197762.868814 norm=37.376463 +1328248.306227 1200512.306227 norm=36.742346 +1328244.157572 1197157.157572 norm=37.682887 +1328223.914339 1195846.914339 norm=38.366652 +1328251.077568 1203142.077568 norm=37.336309 +1328291.600731 1195466.600731 norm=37.107951 +1328300.165272 1196552.165272 norm=36.878178 +1328295.794242 1197928.794242 norm=37.523326 +1328324.553344 1198366.553344 norm=37.416574 +1328334.988341 1194405.988341 norm=36.660606 +1328369.407405 1198585.407405 norm=37.656341 +1328331.980406 1198391.980406 norm=37.656341 +1328388.646123 1199437.646123 norm=38.026307 +1328387.036390 1194376.036390 norm=38.405729 +1328381.463249 1198239.463249 norm=38.742741 +1328386.376617 1196830.376617 norm=38.871583 +1328427.569587 1199454.569587 norm=37.456642 +1328440.908300 1200461.908300 norm=37.696154 +1328470.699816 1196730.699816 norm=37.960506 +1328466.404701 1199772.404701 norm=37.000000 +1328515.360169 1203127.360169 norm=37.656341 +1328487.976034 1196556.976034 norm=38.105118 +1328528.825031 1193573.825031 norm=38.392708 +1328514.837404 1199790.837404 norm=37.282704 +1328558.804141 1196151.804141 norm=37.148351 +1328575.761046 1197675.761046 norm=37.161808 +1328595.114774 1198194.114774 norm=36.592349 +1328611.980656 1196261.980656 norm=36.837481 +1328615.275535 1196710.275535 norm=38.444766 +1328608.684825 1199110.684825 norm=37.403208 +1328634.998665 1195194.998665 norm=38.196859 +1328620.318517 1200079.318517 norm=38.052595 +1328658.963481 1202767.963481 norm=38.483763 +1328660.580826 1198352.580826 norm=37.443290 +1328692.432360 1197493.432360 norm=38.405729 +1328696.389638 1198356.389638 norm=38.327536 +1328724.180431 1196454.180431 norm=36.932371 +1328728.124903 1199008.124903 norm=38.275318 +1328748.297505 1193753.297505 norm=37.986840 +1328773.905288 1196790.905288 norm=37.309516 +1328790.598311 1199375.598311 norm=37.960506 +1328774.067567 1199665.067567 norm=38.418745 +1328798.115496 1200656.115496 norm=37.986840 +1328833.144809 1202183.144809 norm=37.443290 +1328829.027525 1202288.027525 norm=38.013156 +1328835.613132 1196273.613132 norm=37.854986 +1328867.520364 1193470.520364 norm=36.986484 +1328909.109664 1200050.109664 norm=37.027017 +1328909.496408 1197000.496408 norm=37.054015 +1328926.955083 1203645.955083 norm=37.309516 +1328934.129319 1196727.129319 norm=38.405729 +1328922.427643 1196591.427643 norm=37.349699 +1328970.525567 1193569.525567 norm=36.646964 +1328977.475150 1204685.475150 norm=37.067506 +1328997.973255 1192097.973255 norm=37.202150 +1329028.253028 1204273.253028 norm=37.349699 +1329001.622500 1199402.622500 norm=38.249183 +1329022.063058 1197811.063058 norm=37.854986 +1329040.026731 1199281.026731 norm=37.775654 +1329046.616942 1196239.616942 norm=38.418745 +1329079.405943 1198259.405943 norm=37.389838 +1329085.858429 1203174.858429 norm=38.131352 +1329110.002359 1196052.002359 norm=38.327536 +1329094.954798 1198518.954798 norm=37.376463 +1329146.210622 1198801.210622 norm=37.709415 +1329144.071050 1200669.071050 norm=38.157568 +1329150.647077 1195255.647077 norm=38.249183 +1329161.214567 1196027.214567 norm=38.301436 +1329161.636443 1202705.636443 norm=38.561639 +1329184.322928 1200478.322928 norm=37.973675 +1329222.734017 1196497.734017 norm=37.536649 +1329235.849318 1199390.849318 norm=37.841776 +1329230.774831 1197674.774831 norm=37.496667 +1329268.439707 1201359.439707 norm=36.373067 +1329308.053157 1197996.053157 norm=37.616486 +1329272.462920 1195415.462920 norm=37.894591 +1329309.192503 1202395.192503 norm=37.376463 +1329333.576779 1195645.576779 norm=37.349699 +1329322.674980 1200640.674980 norm=37.894591 +1329355.145997 1199914.145997 norm=37.080992 +1329366.412086 1199588.412086 norm=37.215588 +1329393.831233 1200755.831233 norm=37.229021 +1329399.410568 1197689.410568 norm=36.959437 +1329427.723191 1194743.723191 norm=37.973675 +1329406.163988 1198609.163988 norm=37.973675 +1329448.147940 1193149.147940 norm=36.851052 +1329463.688809 1202252.688809 norm=37.496667 +1329468.402286 1199141.402286 norm=37.148351 +1329486.954263 1200256.954263 norm=37.161808 +1329497.099060 1200535.099060 norm=36.701499 +1329541.719609 1196255.719609 norm=37.376463 +1329520.296496 1202599.296496 norm=37.828561 +1329526.262906 1204248.262906 norm=39.012818 +1329521.066542 1197989.066542 norm=38.170669 +1329547.595573 1203989.595573 norm=37.188708 +1329602.173725 1192492.173725 norm=37.775654 +1329571.181149 1202570.181149 norm=37.576588 +1329644.434961 1198710.434961 norm=36.878178 +1329620.048362 1200046.048362 norm=38.052595 +1329629.385892 1196897.385892 norm=37.282704 +1329658.240085 1200642.240085 norm=37.416574 +1329674.298456 1196995.298456 norm=37.802116 +1329673.526777 1197813.526777 norm=37.828561 +1329681.513887 1198463.513887 norm=37.067506 +1329731.633997 1199096.633997 norm=36.674242 +1329731.157211 1199108.157211 norm=36.986484 +1329749.076319 1197585.076319 norm=36.769553 +1329768.366256 1203480.366256 norm=37.656341 +1329761.343457 1200757.343457 norm=38.052595 +1329771.688512 1198895.688512 norm=38.366652 +1329790.660475 1197869.660475 norm=38.000000 +1329813.934168 1197508.934168 norm=38.948684 +1329786.486784 1201968.486784 norm=38.236109 +1329844.459420 1199154.459420 norm=36.837481 +1329864.069743 1201592.069743 norm=38.431758 +1329847.886657 1198830.886657 norm=38.052595 +1329870.015246 1203531.015246 norm=37.722672 +1329906.800160 1196923.800160 norm=36.523965 +1329935.970850 1202435.970850 norm=36.796739 +1329929.122711 1200093.122711 norm=36.783148 +1329968.841117 1200416.841117 norm=37.443290 +1329950.629639 1197621.629639 norm=38.157568 +1329934.332342 1206279.332342 norm=38.249183 +1329976.904570 1201869.904570 norm=37.828561 +1329980.933749 1197099.933749 norm=38.314488 +1330003.884466 1198635.884466 norm=37.960506 +1330000.047048 1199887.047048 norm=37.576588 +1330060.649492 1198839.649492 norm=36.619667 +1330068.303023 1197072.303023 norm=37.416574 +1330062.166653 1197981.166653 norm=37.920970 +1330061.845064 1201561.845064 norm=38.105118 +1330120.554679 1204055.554679 norm=37.242449 +1330098.938185 1197937.938185 norm=38.039453 +1330121.246531 1200168.246531 norm=37.242449 +1330165.277233 1201190.277233 norm=37.000000 +1330159.490329 1201159.490329 norm=37.788887 +1330170.105937 1199372.105937 norm=38.105118 +1330185.396777 1196272.396777 norm=37.920970 +1330186.443035 1198990.443035 norm=38.548671 +1330195.838706 1200688.838706 norm=37.483330 +1330235.413183 1202847.413183 norm=36.742346 +1330264.655057 1199508.655057 norm=36.455452 +1330274.148957 1201180.148957 norm=37.376463 +1330259.986579 1202943.986579 norm=37.215588 +1330305.695982 1198081.695982 norm=36.769553 +1330307.109187 1203538.109187 norm=38.196859 +1330298.723071 1195922.723071 norm=38.052595 +1330319.199200 1199716.199200 norm=37.828561 +1330352.812777 1202966.812777 norm=37.416574 +1330354.161972 1198938.161972 norm=37.269290 +1330385.225088 1203356.225088 norm=37.828561 +1330362.408027 1198130.408027 norm=38.183766 +1330373.553786 1199882.553786 norm=38.236109 +1330411.762337 1203781.762337 norm=37.563280 +1330428.154481 1197519.154481 norm=38.078866 +1330433.193397 1202036.193397 norm=37.242449 +1330459.465383 1202822.465383 norm=37.854986 +1330441.700069 1199278.700069 norm=38.418745 +1330471.343717 1197050.343717 norm=38.366652 +1330476.573313 1205055.573313 norm=37.788887 +1330524.388429 1198795.388429 norm=37.456642 +1330524.104186 1202235.104186 norm=37.255872 +1330557.789917 1197299.789917 norm=37.563280 +1330536.045402 1206300.045402 norm=38.366652 +1330561.630143 1201983.630143 norm=37.443290 +1330589.566038 1200819.566038 norm=37.735925 +1330581.948129 1199957.948129 norm=37.841776 +1330609.509190 1202731.509190 norm=38.209946 +1330603.327252 1196237.327252 norm=38.157568 +1330645.639139 1198647.639139 norm=36.359318 +1330690.939213 1202065.939213 norm=35.721142 +1330715.039033 1201216.039033 norm=35.524639 +1330716.906163 1201337.906163 norm=37.215588 +1330675.976386 1203745.976386 norm=38.236109 +1330712.297378 1200473.297378 norm=37.616486 +1330704.070930 1198956.070930 norm=38.170669 +1330728.791782 1202511.791782 norm=37.121422 +1330766.101149 1200855.101149 norm=37.013511 +1330780.973721 1201159.973721 norm=38.078866 +1330758.472025 1204178.472025 norm=37.934153 +1330797.587689 1199279.587689 norm=37.336309 +1330810.107785 1199109.107785 norm=37.322915 +1330831.458732 1204508.458732 norm=36.905284 +1330846.781058 1198786.781058 norm=37.828561 +1330837.228813 1207490.228813 norm=37.616486 +1330861.860556 1198844.860556 norm=38.431758 +1330845.618243 1200606.618243 norm=38.288379 +1330901.906693 1204232.906693 norm=37.416574 +1330900.451454 1203215.451454 norm=38.301436 +1330904.273615 1203174.273615 norm=37.563280 +1330922.068003 1199552.068003 norm=38.353618 +1330936.066760 1206370.066760 norm=37.682887 +1330962.085933 1198901.085933 norm=37.469988 +1330962.075523 1203030.075523 norm=38.301436 +1330970.829891 1201243.829891 norm=37.775654 +1331001.521430 1202281.521430 norm=36.986484 +1331041.017006 1205328.017006 norm=37.322915 +1331046.436128 1200675.436128 norm=38.105118 +1331015.184939 1200521.184939 norm=37.603191 +1331076.220825 1201344.220825 norm=38.118237 +1331054.711516 1204079.711516 norm=37.709415 +1331099.741107 1202181.741107 norm=36.755952 +1331125.644724 1205805.644724 norm=37.669616 +1331128.879379 1199282.879379 norm=36.945906 +1331121.409986 1201287.409986 norm=37.656341 +1331132.819313 1202305.819313 norm=37.696154 +1331164.777463 1205589.777463 norm=37.616486 +1331157.680009 1203615.680009 norm=37.603191 +1331170.989786 1203159.989786 norm=37.986840 +1331201.663104 1201538.663104 norm=37.920970 +1331198.855873 1205666.855873 norm=38.353618 +1331199.038789 1199272.038789 norm=37.907783 +1331222.846575 1208413.846575 norm=38.052595 +1331248.892451 1198445.892451 norm=38.170669 +1331255.350173 1202203.350173 norm=38.157568 +1331264.676132 1202536.676132 norm=37.841776 +1331311.673991 1203077.673991 norm=37.828561 +1331304.581390 1203891.581390 norm=37.509999 +1331334.037995 1206849.037995 norm=37.907783 +1331324.228459 1200277.228459 norm=37.027017 +1331367.010448 1203618.010448 norm=37.363083 +1331375.903046 1205986.903046 norm=37.188708 +1331382.977455 1202524.977455 norm=37.121422 +1331401.973716 1204018.973716 norm=36.878178 +1331410.058962 1206640.058962 norm=37.215588 +1331435.379781 1199915.379781 norm=37.229021 +1331434.057548 1207042.057548 norm=37.336309 +1331452.591635 1204945.591635 norm=37.563280 +1331465.716210 1202334.716210 norm=37.920970 +1331448.654334 1205652.654334 norm=37.960506 +1331479.632993 1201862.632993 norm=38.091994 +1331497.257599 1205489.257599 norm=37.496667 +1331523.904594 1203754.904594 norm=36.986484 +1331531.882484 1201503.882484 norm=37.161808 +1331572.169635 1204985.169635 norm=37.336309 +1331541.885707 1200954.885707 norm=37.349699 +1331594.056933 1203374.056933 norm=37.215588 +1331569.897651 1201727.897651 norm=38.196859 +1331597.610256 1202648.610256 norm=37.775654 +1331601.215820 1204658.215820 norm=37.934153 +1331625.484519 1203941.484519 norm=38.626416 +1331621.925315 1202784.925315 norm=37.828561 +1331646.387529 1205374.387529 norm=37.188708 +1331683.398271 1204137.398271 norm=38.366652 +1331676.022814 1198718.022814 norm=37.682887 +1331669.896770 1203003.896770 norm=38.639358 +1331693.084594 1206139.084594 norm=37.920970 +1331716.055107 1207094.055107 norm=37.416574 +1331748.592910 1205776.592910 norm=36.551334 +1331767.121284 1207180.121284 norm=36.221541 +1331759.149115 1202907.149115 norm=37.563280 +1331770.182788 1202121.182788 norm=37.456642 +1331791.592182 1207135.592182 norm=37.443290 +1331817.435266 1202042.435266 norm=37.389838 +1331823.899727 1202137.899727 norm=37.296112 +1331850.086750 1203997.086750 norm=38.039453 +1331834.951130 1206749.951130 norm=37.828561 +1331844.269078 1202830.269078 norm=37.496667 +1331870.917631 1202920.917631 norm=37.802116 +1331893.517945 1202636.517945 norm=36.918830 +1331909.753339 1205236.753339 norm=37.403208 +1331913.835968 1201322.835968 norm=37.815341 +1331930.799125 1203259.799125 norm=37.188708 +1331964.727955 1209158.727955 norm=36.851052 +1331961.243618 1201721.243618 norm=38.392708 +1331957.469200 1202710.469200 norm=38.249183 +1331968.251138 1204608.251138 norm=37.121422 +1332003.166251 1203606.166251 norm=37.841776 +1332002.914894 1207740.914894 norm=38.196859 +1332025.371310 1201446.371310 norm=37.696154 +1332031.810951 1208809.810951 norm=37.429935 +1332048.472701 1201166.472701 norm=36.796739 +1332071.403689 1207860.403689 norm=37.202150 +1332085.697087 1206106.697087 norm=37.469988 +1332082.264926 1199970.264926 norm=37.603191 +1332108.173148 1200915.173148 norm=36.932371 +1332133.961169 1209936.961169 norm=37.376463 +1332135.469239 1199968.469239 norm=37.509999 +1332161.547894 1206799.547894 norm=37.389838 +1332145.699735 1205424.699735 norm=37.881394 +1332186.419645 1203840.419645 norm=37.429935 +1332173.517561 1208837.517561 norm=38.301436 +1332193.923929 1201207.923929 norm=38.078866 +1332195.019528 1203909.019528 norm=38.078866 +1332229.710735 1204497.710735 norm=37.616486 +1332253.958639 1202992.958639 norm=36.796739 +1332263.028340 1209311.028340 norm=37.322915 +1332276.554506 1205918.554506 norm=37.121422 +1332290.033435 1206276.033435 norm=38.183766 +1332283.947414 1200553.947414 norm=38.600518 +1332278.555005 1206791.555005 norm=38.262253 +1332316.611764 1202261.611764 norm=37.188708 +1332342.261114 1203358.261114 norm=37.549967 +1332351.446965 1205715.446965 norm=37.175261 +1332363.975332 1208071.975332 norm=37.722672 +1332374.787748 1203294.787748 norm=36.932371 +1332419.638550 1200027.638550 norm=37.282704 +1332415.223702 1209935.223702 norm=37.094474 +1332401.714630 1205768.714630 norm=38.275318 +1332432.388641 1202540.388641 norm=36.441734 +1332455.316567 1199706.316567 norm=38.078866 +1332450.101954 1206089.101954 norm=38.196859 +1332466.332912 1209102.332912 norm=37.549967 +1332482.340645 1204397.340645 norm=37.722672 +1332494.003439 1207090.003439 norm=37.509999 +1332540.179423 1203819.179423 norm=36.945906 +1332537.707288 1205166.707288 norm=37.563280 +1332540.209181 1204850.209181 norm=38.639358 +1332539.841174 1206761.841174 norm=37.709415 +1332568.375609 1200953.375609 norm=37.828561 +1332585.686811 1208399.686811 norm=37.336309 +1332604.456787 1202592.456787 norm=37.080992 +1332626.350138 1207957.350138 norm=37.483330 +1332620.212640 1203521.212640 norm=36.742346 +1332644.338351 1208358.338351 norm=36.918830 +1332657.429800 1202067.429800 norm=36.606010 +1332703.415795 1206987.415795 norm=37.054015 +1332665.881430 1205307.881430 norm=38.288379 +1332681.284298 1204454.284298 norm=37.376463 +1332712.039665 1202394.039665 norm=37.456642 +1332724.095347 1203585.095347 norm=37.013511 +1332743.472836 1202127.472836 norm=37.296112 +1332754.643485 1208708.643485 norm=37.429935 +1332759.789044 1203358.789044 norm=37.576588 +1332764.441525 1205673.441525 norm=37.161808 +1332822.857187 1205041.857187 norm=37.429935 +1332785.850810 1207188.850810 norm=37.456642 +1332847.205678 1205413.205678 norm=37.403208 +1332815.873070 1210625.873070 norm=37.416574 +1332835.339134 1197491.339134 norm=37.920970 +1332842.912183 1213967.912183 norm=37.920970 +1332862.119375 1201613.119375 norm=37.603191 +1332892.339523 1211758.339523 norm=37.920970 +1332877.580688 1206478.580688 norm=37.000000 +1332930.349471 1209032.349471 norm=38.157568 +1332903.566934 1207402.566934 norm=37.215588 +1332950.084078 1202582.084078 norm=37.841776 +1332934.977097 1205106.977097 norm=37.709415 +1332943.608479 1202994.608479 norm=37.322915 +1332984.555320 1205808.555320 norm=37.483330 +1332990.851682 1207168.851682 norm=37.815341 +1333005.552146 1204447.552146 norm=37.907783 +1333002.394270 1205677.394270 norm=37.496667 +1333044.866869 1206490.866869 norm=37.443290 +1333041.410831 1202385.410831 norm=36.796739 +1333089.376315 1201138.376315 norm=36.619667 +1333078.543360 1208196.543360 norm=37.282704 +1333089.961701 1204933.961701 norm=37.376463 +1333099.512656 1206922.512656 norm=36.619667 +1333133.979537 1202472.979537 norm=37.643060 +1333127.439026 1209054.439026 norm=37.107951 +1333151.871911 1208548.871911 norm=37.429935 +1333157.130867 1210107.130867 norm=37.669616 +1333173.100016 1203559.100016 norm=36.905284 +1333198.661335 1210668.661335 norm=36.482873 +1333217.264932 1200998.264932 norm=36.055513 +1333245.595872 1206354.595872 norm=37.802116 +1333197.121872 1201825.121872 norm=38.209946 +1333218.036075 1208585.036075 norm=37.509999 +1333268.291988 1203739.291988 norm=36.891733 +1333265.563121 1209356.563121 norm=37.000000 +1333304.234232 1202500.234232 norm=37.148351 +1333267.103702 1206817.103702 norm=38.548671 +1333298.543042 1208168.543042 norm=37.775654 +1333291.903206 1207749.903206 norm=37.643060 +1333330.038535 1203913.038535 norm=37.363083 +1333323.680402 1207049.680402 norm=37.363083 +1333373.177790 1206048.177790 norm=36.235342 +1333390.425193 1208463.425193 norm=37.134889 +1333386.768012 1208517.768012 norm=36.510273 +1333421.677062 1202925.677062 norm=37.349699 +1333400.947748 1201483.947748 norm=38.209946 +1333406.333356 1210449.333356 norm=38.704005 +1333414.684082 1204809.684082 norm=38.704005 +1333428.453799 1202459.453799 norm=37.841776 +1333440.639035 1206149.639035 norm=37.643060 +1333484.337709 1212564.337709 norm=36.701499 +1333487.168812 1202966.168812 norm=37.429935 +1333520.484645 1210906.484645 norm=36.633318 +1333523.554304 1203272.554304 norm=37.629775 +1333525.048226 1203262.048226 norm=37.589892 +1333535.373058 1205679.373058 norm=37.322915 +1333549.069484 1208772.069484 norm=37.456642 +1333572.286501 1202706.286501 norm=36.783148 +1333592.051205 1211139.051205 norm=37.762415 +1333586.880902 1204674.880902 norm=37.443290 +1333614.518747 1207134.518747 norm=37.523326 +1333626.355490 1206009.355490 norm=36.728735 +1333655.952191 1205350.952191 norm=37.973675 +1333627.665407 1206873.665407 norm=37.841776 +1333674.348699 1211592.348699 norm=37.107951 +1333681.951794 1202148.951794 norm=37.828561 +1333676.895264 1206510.895264 norm=37.215588 +1333708.916905 1207048.916905 norm=37.188708 +1333711.688706 1210341.688706 norm=37.749172 +1333734.906144 1201943.906144 norm=37.013511 +1333756.115786 1210665.115786 norm=36.496575 +1333801.216672 1204777.216672 norm=36.069378 +1333791.531006 1209668.531006 norm=36.755952 +1333784.330085 1207709.330085 norm=37.443290 +1333794.441249 1208820.441249 norm=37.523326 +1333813.564780 1201446.564779 norm=38.065733 +1333803.850539 1212507.850539 norm=37.309516 +1333857.989529 1206109.989529 norm=37.536649 +1333832.990301 1207625.990301 norm=37.722672 +1333865.723124 1205120.723124 norm=38.768544 +1333839.606788 1212466.606788 norm=36.986484 +1333910.198290 1201524.198290 norm=35.902646 +1333928.276429 1210187.276429 norm=36.674242 +1333933.855611 1205309.855611 norm=36.769553 +1333961.800135 1206956.800135 norm=36.551334 +1333945.647187 1208493.647187 norm=37.080992 +1333976.485276 1206491.485276 norm=37.722672 +1333950.777590 1206566.777590 norm=38.314488 +1333966.308259 1204866.308259 norm=37.523326 +1334002.575194 1209506.575194 norm=36.482873 +1334041.572570 1205759.572570 norm=36.441734 +1334040.325809 1205506.325809 norm=36.633318 +1334062.122480 1205085.122480 norm=37.603191 +1334034.491366 1208590.491366 norm=38.118237 +1334038.733339 1207170.733339 norm=36.918830 +1334095.105098 1207833.105098 norm=36.592349 +1334124.513400 1203380.513400 norm=36.469165 +1334091.648428 1206118.648428 norm=36.455452 +1334140.147445 1209211.147445 norm=37.469988 +1334126.216051 1207195.216051 norm=35.874782 +1334188.042617 1206686.042617 norm=36.290495 +1334162.619976 1210853.619976 norm=38.078866 +1334152.927676 1205469.927676 norm=38.392708 +1334171.553501 1207645.553501 norm=37.202150 +1334210.732788 1204886.732788 norm=38.262253 +1334188.621874 1208768.621874 norm=37.696154 +1334226.405993 1210587.405993 norm=37.696154 +1334244.574544 1203238.574544 norm=37.121422 +1334250.564673 1205930.564673 norm=37.067506 +1334292.952356 1207504.952356 norm=36.013886 +1334294.586888 1207403.586888 norm=36.235342 +1334315.767293 1207932.767293 norm=36.851052 +1334315.843905 1208523.843905 norm=36.373067 +1334338.778348 1208423.778348 norm=36.769553 +1334339.072804 1207761.072804 norm=37.322915 +1334338.717575 1205590.717575 norm=36.796739 +1334389.601107 1207027.601107 norm=36.986484 +1334356.995953 1208511.995953 norm=38.353618 +1334359.658689 1207577.658689 norm=38.091994 +1334385.502958 1203670.502958 norm=37.775654 +1334400.120338 1212223.120338 norm=38.091994 +1334419.427758 1206545.427758 norm=37.416574 +1334423.747343 1209880.747343 norm=38.418745 +1334425.573167 1205460.573167 norm=37.363083 +1334469.309100 1207872.309100 norm=37.920970 +1334469.555342 1208327.555342 norm=37.148351 +1334490.411426 1206391.411426 norm=36.878178 +1334499.220880 1203866.220880 norm=38.716921 +1334498.347350 1207843.347350 norm=37.282704 +1334535.343486 1208670.343486 norm=37.107951 +1334552.858454 1208192.858454 norm=37.054015 +1334566.785629 1204151.785629 norm=37.389838 +1334569.650300 1211326.650300 norm=37.161808 +1334600.623452 1205147.623452 norm=36.742346 +1334607.682112 1212576.682112 norm=37.121422 +1334614.335445 1202363.335445 norm=37.255872 +1334626.713442 1206201.713442 norm=37.148351 +1334645.274872 1208643.274872 norm=37.336309 +1334657.119607 1209753.119607 norm=36.646964 +1334683.049849 1206806.049849 norm=35.916570 +1334695.640590 1211240.640590 norm=36.986484 +1334704.015964 1204241.015964 norm=36.606010 +1334703.886515 1206305.886515 norm=37.749172 +1334721.887755 1208161.887755 norm=37.134889 +1334711.915219 1212630.915219 norm=37.242449 +1334759.429077 1207638.429077 norm=36.742346 +1334749.792188 1206380.792188 norm=36.496575 +1334795.934260 1207151.934260 norm=36.606010 +1334792.352908 1209630.352908 norm=37.363083 +1334797.801229 1206846.801229 norm=37.188708 +1334808.238548 1205365.238548 norm=37.363083 +1334840.730955 1207294.730955 norm=37.269290 +1334826.521570 1205425.521570 norm=37.255872 +1334851.237079 1208999.237079 norm=37.054015 +1334868.570832 1206020.570832 norm=37.229021 +1334894.989694 1207468.989694 norm=36.755952 +1334897.499971 1213134.499971 norm=37.269290 +1334913.789510 1205830.789510 norm=36.619667 +1334927.365604 1209249.365604 norm=37.616486 +1334931.447205 1205734.447205 norm=37.322915 +1334938.292908 1210289.292908 norm=37.000000 +1334966.701569 1206525.701569 norm=37.296112 +1334959.045834 1213016.045834 norm=36.945906 +1334992.379446 1207776.379446 norm=37.403208 +1334997.961778 1205158.961778 norm=35.679126 +1335021.167547 1206889.167547 norm=37.549967 +1335014.242512 1209912.242512 norm=37.496667 +1335039.639864 1207465.639864 norm=37.549967 +1335036.784643 1207190.784643 norm=36.878178 +1335077.043509 1207687.043509 norm=37.255872 +1335089.439260 1210366.439260 norm=36.851052 +1335091.042963 1206289.042963 norm=37.456642 +1335119.701328 1207592.701328 norm=36.687873 +1335123.627932 1205724.627932 norm=37.576588 +1335126.414396 1209868.414396 norm=37.841776 +1335121.868952 1206186.868952 norm=37.868192 +1335154.492490 1213965.492490 norm=37.815341 +1335158.906556 1204933.906556 norm=37.629775 +1335160.589932 1207224.589932 norm=36.674242 +1335222.645692 1204125.645692 norm=36.932371 +1335199.387557 1211042.387557 norm=36.124784 +1335248.436837 1212055.436837 norm=37.080992 +1335231.073103 1210357.073103 norm=38.065733 +1335224.993621 1211350.993621 norm=38.379682 +1335245.648539 1206831.648539 norm=37.309516 +1335273.289644 1209226.289644 norm=37.709415 +1335277.436150 1206679.436150 norm=38.262253 +1335272.149095 1209497.149095 norm=37.669616 +1335306.273803 1210560.273803 norm=37.000000 +1335331.300002 1205840.300002 norm=37.483330 +1335341.191221 1209611.191221 norm=36.646964 +1335373.460510 1203659.460510 norm=36.304270 +1335372.185624 1207227.185624 norm=37.456642 +1335368.625869 1203797.625869 norm=37.148351 +1335419.689963 1210391.689963 norm=37.735925 +1335376.030545 1208750.030545 norm=37.456642 +1335425.755028 1207692.755028 norm=37.148351 +1335438.024119 1209539.024119 norm=37.456642 +1335438.259161 1205153.259161 norm=38.366652 +1335451.399806 1207773.399806 norm=37.443290 +1335467.202212 1208261.202212 norm=38.196859 +1335485.538828 1204590.538828 norm=36.864617 +1335498.766860 1206682.766860 norm=37.576588 +1335508.141513 1211303.141513 norm=37.603191 +1335514.953864 1210095.953864 norm=37.735925 +1335525.114906 1209160.114906 norm=37.255872 +1335558.735069 1207917.735069 norm=36.851052 +1335573.374175 1204692.374175 norm=36.986484 +1335564.946275 1208741.946275 norm=37.509999 +1335589.681323 1212230.681323 norm=36.687873 +1335608.553742 1207404.553742 norm=37.389838 +1335599.252000 1210114.252000 norm=37.376463 +1335653.123137 1209085.123137 norm=36.455452 +1335644.003919 1208301.003919 norm=37.523326 +1335653.852014 1208995.852014 norm=37.854986 +1335672.131289 1203930.131289 norm=36.972963 +1335678.225943 1209287.225943 norm=37.868192 +1335678.111471 1205983.111471 norm=37.576588 +1335710.295473 1207038.295473 norm=36.945906 +1335716.863620 1211129.863620 norm=37.589892 +1335742.270059 1209564.270059 norm=36.945906 +1335755.911591 1211837.911591 norm=37.121422 +1335775.634258 1202805.634258 norm=37.322915 +1335779.891161 1208379.891161 norm=36.660606 +1335799.937409 1211537.937409 norm=37.229021 +1335791.520466 1208755.520466 norm=36.166283 +1335842.008109 1210881.008109 norm=37.040518 +1335814.071196 1207957.071196 norm=38.470768 +1335818.595931 1211101.595931 norm=38.196859 +1335829.642317 1210524.642317 norm=37.854986 +1335868.490937 1209462.490937 norm=36.918830 +1335882.329620 1210121.329620 norm=37.188708 +1335904.878681 1203629.878681 norm=37.576588 +1335916.818967 1211031.818967 norm=36.891733 +1335917.756918 1208436.756918 norm=37.376463 +1335934.715245 1212556.715245 norm=36.932371 +1335958.860189 1206021.860189 norm=36.918830 +1335990.262335 1207975.262335 norm=35.496479 +1335975.320557 1211280.320557 norm=37.389838 +1335981.630394 1209817.630394 norm=37.854986 +1335966.686958 1208011.686958 norm=38.522721 +1335993.286088 1205588.286088 norm=37.121422 +1336027.716741 1212382.716741 norm=36.891733 +1336047.869295 1205610.869295 norm=35.874782 +1336067.917289 1211333.917289 norm=37.255872 +1336053.504327 1207998.504327 norm=38.223030 +1336050.387362 1208721.387362 norm=37.067506 +1336102.167580 1212094.167580 norm=36.972963 +1336108.078223 1208366.078223 norm=37.841776 +1336096.148418 1207795.148418 norm=37.496667 +1336130.336680 1209852.336680 norm=36.482873 +1336159.442882 1207725.442882 norm=36.428011 +1336177.949216 1211536.949216 norm=37.188708 +1336167.889759 1207884.889759 norm=36.755952 +1336199.419173 1207624.419173 norm=37.603191 +1336180.702253 1206653.702253 norm=37.854986 +1336192.457187 1204313.457187 norm=38.509739 +1336203.081645 1211489.081645 norm=37.175261 +1336255.874537 1210289.874537 norm=37.215588 +1336231.172052 1211462.172052 norm=38.209946 +1336223.648853 1209167.648853 norm=37.483330 +1336280.254354 1206680.254354 norm=37.443290 +1336273.658046 1213422.658046 norm=37.523326 +1336298.469163 1206114.469163 norm=36.510273 +1336338.965537 1211718.965537 norm=36.537652 +1336340.652601 1210281.652601 norm=36.932371 +1336346.138927 1211338.138927 norm=37.443290 +1336331.310332 1212469.310332 norm=37.722672 +1336345.354915 1207166.354915 norm=37.469988 +1336390.437980 1210177.437980 norm=36.905284 +1336385.115731 1204433.115731 norm=37.013511 +1336412.071411 1212988.071411 norm=37.443290 +1336409.325928 1206771.325928 norm=37.255872 +1336408.669139 1208451.669139 norm=37.735925 +1336450.298044 1215765.298044 norm=37.643060 +1336450.086688 1206115.086688 norm=37.643060 +1336439.697659 1209910.697659 norm=38.026307 +1336479.412393 1208284.412393 norm=37.403208 +1336483.949630 1211054.949630 norm=37.054015 +1336512.744125 1209013.744125 norm=36.905284 +1336526.476728 1210474.476728 norm=37.389838 +1336534.176705 1212913.176705 norm=37.429935 +1336538.934508 1207788.934508 norm=36.565011 +1336582.336587 1211454.336587 norm=38.065733 +1336525.165291 1211292.165291 norm=38.144462 +1336581.868813 1206995.868813 norm=37.296112 +1336583.495641 1210735.495641 norm=38.340579 +1336579.208907 1210252.208907 norm=37.986840 +1336622.378590 1210503.378590 norm=37.134889 +1336650.037946 1210882.037946 norm=37.403208 +1336645.509916 1207056.509916 norm=36.455452 +1336695.537953 1206178.537953 norm=37.013511 +1336647.949222 1205415.949222 norm=37.269290 +1336717.837792 1211345.837792 norm=35.916570 +1336722.283378 1207269.283378 norm=37.523326 +1336703.287062 1213693.287062 norm=37.403208 +1336726.276688 1208104.276688 norm=37.296112 +1336740.785578 1209660.785578 norm=37.175261 +1336774.080301 1211252.080301 norm=37.255872 +1336757.823241 1213342.823241 norm=37.775654 +1336777.672271 1203155.672271 norm=37.735925 +1336786.267106 1209467.267106 norm=37.269290 +1336805.315838 1212975.315838 norm=37.934153 +1336807.204916 1203681.204916 norm=38.118237 +1336797.699941 1211539.699941 norm=37.986840 +1336849.045535 1206886.045535 norm=36.837481 +1336859.055399 1214504.055399 norm=37.509999 +1336863.286408 1206942.286408 norm=36.810325 +1336907.907463 1212593.907463 norm=36.318040 +1336919.991494 1205083.991494 norm=37.735925 +1336896.462729 1214829.462729 norm=38.431758 +1336900.240556 1208557.240556 norm=37.656341 +1336926.052449 1215693.052449 norm=38.026307 +1336946.855767 1206123.855767 norm=37.429935 +1336968.621321 1211903.621321 norm=36.864617 +1336986.086754 1210824.086754 norm=36.945906 +1336986.678935 1208117.678935 norm=36.891733 +1337011.037018 1208043.037018 norm=37.148351 +1337006.523299 1213204.523299 norm=37.509999 +1337027.275594 1207979.275594 norm=36.701499 +1337025.935692 1213910.935692 norm=37.134889 +1337053.689537 1207798.689537 norm=36.496575 +1337097.022735 1210768.022735 norm=36.606010 +1337084.153532 1210412.153532 norm=37.255872 +1337087.116708 1214235.116708 norm=37.973675 +1337073.606710 1208157.606710 norm=37.000000 +1337128.418779 1206251.418779 norm=36.537652 +1337145.011600 1209000.011600 norm=36.660606 +1337163.535895 1213309.535895 norm=36.878178 +1337146.513860 1209227.513860 norm=38.236109 +1337135.018200 1212550.018200 norm=38.405729 +1337172.308578 1210844.308578 norm=37.443290 +1337190.532749 1213187.532749 norm=37.523326 +1337219.371540 1206589.371540 norm=36.864617 +1337214.766164 1207696.766164 norm=37.067506 +1337235.917057 1210856.917057 norm=37.907783 +1337228.845491 1209587.845491 norm=37.496667 +1337258.749117 1212092.749117 norm=37.013511 +1337269.769526 1205604.769526 norm=37.000000 +1337285.596627 1206740.596627 norm=37.134889 +1337299.804951 1215021.804951 norm=37.094474 +1337310.522914 1208211.522914 norm=37.456642 +1337311.096756 1210463.096756 norm=37.881394 +1337332.039566 1208158.039566 norm=37.429935 +1337355.486389 1212686.486389 norm=35.930488 +1337387.794555 1211576.794555 norm=36.783148 +1337361.635671 1212146.635671 norm=37.629775 +1337394.775093 1212022.775093 norm=37.013511 +1337404.572998 1208911.572998 norm=37.282704 +1337415.269670 1208653.269670 norm=36.769553 +1337434.103764 1208794.103764 norm=36.715120 +1337456.340783 1207900.340783 norm=37.429935 +1337441.476629 1216686.476629 norm=37.603191 +1337464.963730 1209391.963730 norm=37.429935 +1337473.810899 1211483.810899 norm=37.429935 +1337492.650145 1216996.650145 norm=36.041643 +1337530.086114 1209827.086114 norm=37.403208 +1337501.108652 1208660.108652 norm=37.616486 +1337530.091145 1207677.091145 norm=37.080992 +1337557.404143 1208404.404143 norm=37.920970 +1337538.900013 1210241.900013 norm=37.682887 +1337561.108830 1213975.108830 norm=37.656341 +1337569.616129 1208399.616129 norm=37.709415 +1337590.861299 1211339.861299 norm=36.110940 +1337631.180214 1211431.180214 norm=37.282704 +1337610.918218 1210661.918218 norm=36.810325 +1337660.026516 1207784.026516 norm=36.180105 +1337656.156093 1211870.156093 norm=37.188708 +1337649.728241 1209066.728241 norm=37.255872 +1337677.546022 1214118.546022 norm=37.067506 +1337689.927627 1208883.927627 norm=37.656341 +1337699.598521 1212219.598521 norm=37.188708 +1337701.662440 1213455.662440 norm=37.643060 +1337723.124950 1211108.124950 norm=37.589892 +1337717.039181 1212056.039181 norm=37.682887 +1337754.081719 1210639.081719 norm=37.013511 +1337765.111946 1215114.111946 norm=36.769553 +1337787.988961 1204174.988961 norm=36.083237 +1337809.036169 1209786.036169 norm=36.331804 +1337814.307094 1213227.307094 norm=37.682887 +1337803.829349 1209719.829349 norm=37.656341 +1337820.823020 1205830.823020 norm=37.215588 +1337855.567956 1214633.567956 norm=36.918830 +1337849.671748 1210310.671748 norm=38.275318 +1337839.007909 1215575.007909 norm=37.483330 +1337890.005633 1206722.005633 norm=36.592349 +1337894.516593 1217970.516593 norm=37.536649 +1337902.952562 1205884.952562 norm=37.947332 +1337896.688900 1213126.688900 norm=36.932371 +1337957.136168 1209994.136168 norm=36.864617 +1337943.967860 1210743.967860 norm=36.864617 +1337965.882337 1209006.882337 norm=37.762415 +1337954.344434 1210541.344434 norm=37.255872 +1337993.330941 1209311.330941 norm=37.134889 +1338000.041446 1211993.041446 norm=36.262929 +1338036.706482 1211421.706482 norm=35.791060 +1338037.774915 1208485.774915 norm=36.633318 +1338042.736004 1212157.736004 norm=36.932371 +1338051.836740 1213366.836740 norm=37.403208 +1338035.576502 1209314.576502 norm=38.000000 +1338074.594180 1212718.594180 norm=36.318040 +1338101.696138 1210270.696138 norm=36.097091 +1338120.010520 1210451.010520 norm=36.959437 +1338112.445566 1208684.445566 norm=37.376463 +1338106.453324 1216585.453324 norm=37.722672 +1338122.984096 1207178.984096 norm=37.134889 +1338166.875371 1211678.875371 norm=37.456642 +1338137.965801 1210954.965801 norm=38.000000 +1338173.699835 1210351.699835 norm=38.209946 +1338150.058595 1210370.058595 norm=37.960506 +1338204.085197 1214105.085197 norm=37.603191 +1338189.596824 1212760.596824 norm=37.389838 +1338234.011481 1204516.011481 norm=37.669616 +1338231.692945 1210367.692945 norm=36.565011 +1338270.999841 1209404.999841 norm=37.107951 +1338250.563618 1214255.563618 norm=38.561639 +1338274.782723 1212509.782723 norm=37.107951 +1338272.451115 1208840.451115 norm=37.161808 +1338304.002615 1210872.002615 norm=37.616486 +1338301.660659 1211256.660659 norm=36.510273 +1338356.667988 1212202.667988 norm=36.276714 +1338359.023876 1209494.023876 norm=36.592349 +1338357.910960 1211797.910960 norm=37.134889 +1338362.522301 1211407.522301 norm=37.629775 +1338370.221369 1212017.221369 norm=36.660606 +1338407.670158 1211748.670158 norm=38.105118 +1338377.677640 1209077.677640 norm=38.105118 +1338420.821450 1212455.821450 norm=36.918830 +1338438.653854 1214182.653854 norm=35.341194 +1338474.756299 1212915.756299 norm=37.067506 +1338449.000647 1208361.000647 norm=37.336309 +1338474.600934 1213613.600934 norm=38.078866 +1338469.985069 1215180.985069 norm=36.276714 +1338519.114129 1203572.114129 norm=36.510273 +1338521.173834 1211277.173834 norm=37.536649 +1338499.108789 1217064.108789 norm=36.986484 +1338547.425520 1207817.425520 norm=37.040518 +1338557.810616 1216937.810616 norm=37.242449 +1338543.510037 1210351.510037 norm=37.469988 +1338578.809582 1212520.809582 norm=37.616486 +1338573.137168 1212079.137168 norm=37.121422 +1338600.685187 1212650.685187 norm=37.960506 +1338599.437712 1207989.437712 norm=36.810325 +1338620.867410 1213119.867410 norm=38.327536 +1338614.103475 1206807.103475 norm=37.336309 +1338664.064540 1215627.064540 norm=36.742346 +1338673.236284 1212135.236284 norm=36.455452 +1338681.204920 1212313.204920 norm=37.868192 +1338664.309810 1205131.309810 norm=36.932371 +1338724.609389 1212938.609389 norm=36.138622 +1338742.097716 1209806.097716 norm=36.592349 +1338722.083520 1216655.083520 norm=36.945906 +1338744.897251 1210652.897251 norm=37.148351 +1338751.579720 1212928.579720 norm=36.633318 +1338757.880631 1210220.880631 norm=37.881394 +1338753.022730 1214305.022730 norm=37.282704 +1338797.230779 1207137.230779 norm=36.755952 +1338806.855385 1211993.855385 norm=37.828561 +1338811.097077 1210922.097077 norm=37.242449 +1338815.788973 1216259.788973 norm=37.000000 +1338849.562964 1211658.562964 norm=37.616486 +1338832.101778 1211125.101778 norm=37.229021 +1338885.652262 1210331.652262 norm=37.682887 +1338853.273280 1213332.273280 norm=37.894591 +1338885.272770 1210381.272770 norm=37.509999 +1338886.173407 1211736.173407 norm=37.161808 +1338928.927124 1211235.927124 norm=37.788887 +1338914.247616 1215302.247616 norm=36.823905 +1338941.431705 1213524.431705 norm=37.242449 +1338953.489586 1209731.489586 norm=36.932371 +1338973.870755 1212508.870755 norm=37.309516 +1338971.175919 1211753.175919 norm=36.932371 +1338981.072691 1212165.072691 norm=37.629775 +1338995.487734 1208306.487734 norm=37.656341 +1338995.308191 1214429.308191 norm=37.523326 +1339035.621339 1210047.621339 norm=36.715120 +1339049.383509 1216449.383509 norm=37.523326 +1339039.909424 1211157.909424 norm=37.161808 +1339078.597076 1210902.597076 norm=37.000000 +1339072.963908 1212566.963908 norm=38.039453 +1339074.959712 1214299.959712 norm=36.932371 +1339112.629758 1214789.629758 norm=37.509999 +1339099.189079 1211942.189079 norm=37.027017 +1339132.933661 1211516.933661 norm=36.959437 +1339155.000289 1213319.000289 norm=37.363083 +1339145.730014 1207534.730014 norm=38.483763 +1339142.788620 1210876.788620 norm=38.105118 +1339173.830735 1209727.830735 norm=37.148351 +1339193.841313 1211106.841313 norm=37.947332 +1339183.100511 1212127.100511 norm=37.255872 +1339208.391790 1212565.391790 norm=36.769553 +1339233.191781 1212853.191781 norm=36.110940 +1339262.649473 1213240.649473 norm=37.000000 +1339257.742101 1214163.742101 norm=36.796739 +1339281.778080 1214055.778080 norm=37.094474 +1339260.356245 1217464.356245 norm=37.363083 +1339302.078689 1212553.078689 norm=37.202150 +1339304.193672 1205414.193672 norm=37.722672 +1339325.579495 1217417.579495 norm=37.496667 +1339318.024248 1209360.024248 norm=37.629775 +1339331.790426 1211816.790426 norm=37.389838 +1339366.848741 1208201.848741 norm=36.932371 +1339361.147881 1214840.147881 norm=36.578682 +1339378.017637 1210649.017637 norm=36.428011 +1339408.766748 1213392.766748 norm=37.255872 +1339398.486473 1213097.486473 norm=37.067506 +1339427.746496 1213431.746496 norm=36.769553 +1339444.014822 1213235.014822 norm=37.322915 +1339417.425270 1212331.425270 norm=37.282704 +1339459.137747 1213192.137747 norm=38.026307 +1339443.835232 1220218.835232 norm=38.052595 +1339477.608028 1207763.608028 norm=37.854986 +1339483.218039 1214817.218039 norm=37.616486 +1339491.527008 1210004.527008 norm=37.121422 +1339541.289750 1210625.289750 norm=37.013511 +1339517.726326 1212077.726326 norm=36.537652 +1339563.977255 1214779.977255 norm=36.864617 +1339566.906579 1208290.906579 norm=37.854986 +1339566.270506 1213056.270506 norm=36.124784 +1339607.538759 1215441.538759 norm=36.959437 +1339591.955333 1213740.955333 norm=36.837481 +1339612.291448 1212932.291448 norm=37.416574 +1339605.094556 1217016.094556 norm=37.215588 +1339621.193526 1209250.193526 norm=37.920970 +1339625.466612 1214965.466612 norm=36.783148 +1339660.491175 1213357.491175 norm=37.496667 +1339676.509445 1209389.509445 norm=36.633318 +1339685.904861 1212308.904861 norm=37.775654 +1339679.632776 1215124.632776 norm=37.960506 +1339693.015214 1209761.015214 norm=37.443290 +1339723.093573 1216658.093573 norm=37.403208 +1339711.650927 1212396.650927 norm=37.322915 +1339740.034707 1213759.034707 norm=37.336309 +1339737.535262 1215443.535262 norm=38.444766 +1339749.057062 1210581.057062 norm=37.629775 +1339774.539936 1210181.539936 norm=37.523326 +1339784.181686 1215388.181686 norm=37.762415 +1339798.710762 1215319.710762 norm=37.536649 +1339812.405922 1208880.405922 norm=37.188708 +1339830.277237 1215069.277237 norm=37.134889 +1339851.728664 1211274.728664 norm=37.107951 +1339852.442302 1212591.442302 norm=37.242449 +1339871.785418 1213068.785418 norm=37.080992 +1339869.238805 1211142.238805 norm=36.891733 +1339899.017244 1216440.017244 norm=37.536649 +1339891.051718 1213044.051718 norm=37.255872 +1339926.304047 1212024.304047 norm=37.107951 +1339917.083291 1213530.083291 norm=36.687873 +1339946.183033 1210171.183033 norm=36.441734 +1339969.321426 1212171.321426 norm=37.027017 +1339979.508803 1214566.508803 norm=36.619667 +1339974.263483 1210078.263483 norm=36.837481 +1339999.044207 1217633.044207 norm=36.345564 +1340028.758899 1214547.758899 norm=36.878178 +1340018.661241 1209273.661241 norm=37.496667 +1340028.142801 1211441.142801 norm=37.616486 +1340043.187355 1212812.187355 norm=36.972963 +1340059.878862 1210341.878862 norm=37.815341 +1340058.523410 1215090.523410 norm=36.905284 +1340079.202473 1217048.202473 norm=37.416574 +1340114.975825 1216906.975825 norm=37.496667 +1340084.334521 1209847.334521 norm=37.920970 +1340114.955415 1209549.955415 norm=37.282704 +1340115.648068 1214151.648068 norm=36.701499 +1340147.708757 1215110.708757 norm=36.986484 +1340140.812003 1209821.812003 norm=37.134889 +1340183.496162 1214661.496162 norm=37.202150 +1340166.660479 1213193.660479 norm=37.509999 +1340186.863110 1212361.863110 norm=36.728735 +1340208.134013 1211890.134013 norm=37.775654 +1340214.652266 1211721.652266 norm=37.107951 +1340245.795807 1212324.795807 norm=37.616486 +1340239.246866 1216080.246866 norm=36.331804 +1340268.741260 1209091.741260 norm=36.455452 +1340260.912656 1219131.912656 norm=37.802116 +1340269.139935 1213215.139935 norm=37.040518 +1340304.604034 1215012.604034 norm=36.619667 +1340295.138687 1209264.138687 norm=36.932371 +1340323.621804 1212620.621804 norm=37.269290 +1340322.405214 1208858.405214 norm=37.269290 +1340340.809980 1217533.809980 norm=37.483330 +1340347.080253 1209436.080253 norm=37.456642 +1340358.419054 1215496.419054 norm=37.349699 +1340371.898271 1208653.898271 norm=36.972963 +1340405.347913 1214720.347913 norm=36.428011 +1340412.726232 1212858.726232 norm=36.510273 +1340437.279987 1211713.279987 norm=36.359318 +1340446.368168 1215074.368168 norm=36.083237 +1340450.678384 1212940.678384 norm=37.013511 +1340469.677913 1214489.677913 norm=36.891733 +1340473.953872 1217679.953872 norm=37.416574 +1340467.972860 1209018.972860 norm=38.131352 +1340461.916028 1216441.916028 norm=38.170669 +1340476.713855 1209870.713855 norm=37.669616 +1340511.199537 1213134.199537 norm=37.788887 +1340506.393443 1215692.393443 norm=37.376463 +1340552.076356 1213122.076356 norm=36.769553 +1340546.012782 1216466.012782 norm=37.269290 +1340595.350426 1208617.350426 norm=37.054015 +1340557.535096 1208817.535096 norm=37.523326 +1340587.964359 1214427.964359 norm=37.000000 +1340605.298371 1212770.298371 norm=36.193922 +1340621.428554 1208534.428554 norm=37.616486 +1340603.871214 1217111.871214 norm=38.768544 +1340607.188349 1212567.188349 norm=37.429935 +1340648.382863 1220157.382863 norm=37.536649 +1340647.522165 1209455.522165 norm=37.161808 +1340683.469148 1210218.469148 norm=36.945906 +1340692.209942 1215346.209942 norm=37.107951 +1340716.255828 1211849.255828 norm=37.349699 +1340709.302846 1214183.302846 norm=37.322915 +1340733.542646 1214669.542646 norm=36.810325 +1340742.935336 1213991.935336 norm=37.656341 +1340737.638912 1211220.638912 norm=37.722672 +1340751.339271 1215010.339271 norm=37.429935 +1340754.541872 1216007.541872 norm=37.934153 +1340780.894594 1214806.894594 norm=37.389838 +1340788.993302 1213036.993302 norm=37.255872 +1340824.245966 1213754.245966 norm=36.945906 +1340808.979874 1214372.979874 norm=37.629775 +1340827.502705 1213391.502705 norm=37.376463 +1340835.932040 1215580.932040 norm=37.536649 +1340866.281971 1211165.281971 norm=35.832946 +1340889.942017 1215286.942017 norm=37.603191 +1340869.394994 1214858.394994 norm=36.837481 +1340903.156731 1210963.156731 norm=36.414283 +1340936.022570 1210416.022570 norm=37.389838 +1340904.467416 1210958.467416 norm=38.262253 +1340914.748703 1215700.748703 norm=37.483330 +1340938.924212 1217701.924212 norm=38.144462 +1340943.612149 1214203.612149 norm=37.523326 +1340973.644252 1212980.644252 norm=36.755952 +1340991.266705 1213975.266705 norm=37.669616 +1340995.952543 1210404.952543 norm=36.660606 +1341016.669587 1216941.669587 norm=37.416574 +1341013.336841 1215269.336841 norm=36.932371 +1341060.783015 1214883.783015 norm=36.783148 +1341044.313356 1213547.313356 norm=36.510273 +1341067.038449 1209900.038449 norm=38.340579 +1341048.120020 1209232.120020 norm=37.762415 +1341089.361348 1212802.361348 norm=36.606010 +1341103.329553 1214411.329553 norm=37.282704 +1341096.884343 1216777.884343 norm=38.366652 +1341096.588504 1216711.588504 norm=38.039453 +1341129.967630 1220443.967630 norm=37.349699 +1341144.640607 1212378.640607 norm=36.646964 +1341172.813574 1214168.813574 norm=36.864617 +1341184.620080 1214028.620080 norm=37.040518 +1341177.701113 1208986.701113 norm=36.249138 +1341233.652532 1216831.652532 norm=35.496479 +1341236.645078 1211891.645078 norm=37.509999 +1341203.927341 1215828.927341 norm=37.509999 +1341233.701951 1211782.701951 norm=37.549967 +1341238.436469 1216671.436469 norm=37.242449 +1341253.528291 1214769.528291 norm=37.563280 +1341260.056702 1217459.056702 norm=37.107951 +1341291.602668 1210978.602668 norm=36.891733 +1341298.980776 1213667.980776 norm=37.589892 +1341298.250482 1215185.250482 norm=38.065733 +1341308.901212 1214475.901212 norm=37.749172 +1341320.834856 1213666.834856 norm=37.854986 +1341326.818550 1214606.818550 norm=37.735925 +1341339.851785 1213449.851785 norm=37.589892 +1341367.162303 1215421.162303 norm=36.959437 +1341380.669218 1215118.669218 norm=37.589892 +1341380.177940 1211868.177940 norm=37.229021 +1341394.539318 1211885.539318 norm=37.443290 +1341430.908574 1213809.908574 norm=36.932371 +1341414.527756 1208526.527756 norm=37.282704 +1341453.757129 1216432.757129 norm=36.180105 +1341475.427073 1213446.427073 norm=36.728735 +1341474.193688 1214251.193688 norm=36.510273 +1341500.673294 1217498.673294 norm=36.345564 +1341510.090209 1214681.090209 norm=36.796739 +1341494.800558 1212884.800558 norm=37.509999 +1341517.994034 1215595.994034 norm=36.986484 +1341537.120657 1212840.120657 norm=36.945906 +1341548.244649 1221225.244649 norm=36.905284 +1341559.098459 1208219.098459 norm=37.148351 +1341567.550958 1216667.550958 norm=37.603191 +1341576.126595 1214203.126595 norm=37.255872 +1341584.855669 1214921.855669 norm=38.340579 +1341562.925569 1211048.925569 norm=37.907783 +1341628.456639 1210209.456639 norm=36.796739 +1341624.389578 1215216.389578 norm=38.209946 +1341620.411224 1213372.411224 norm=36.918830 +1341677.453672 1215166.453672 norm=36.796739 +1341688.413635 1215481.413635 norm=36.469165 +1341686.225350 1213362.225350 norm=38.288379 +1341641.670560 1217327.670560 norm=37.643060 +1341711.466653 1212211.466653 norm=37.229021 +1341699.598756 1219395.598756 norm=37.188708 +1341728.546443 1214831.546443 norm=36.701499 +1341745.255803 1215834.255803 norm=37.175261 +1341752.288590 1210052.288590 norm=37.416574 +1341745.734377 1218689.734377 norm=37.934153 +1341774.485782 1214902.485782 norm=36.359318 +1341808.580342 1212562.580342 norm=37.161808 +1341792.920267 1217430.920267 norm=37.947332 +1341814.502200 1212220.502200 norm=36.345564 +1341848.316850 1215540.316850 norm=36.193922 +1341852.305066 1217506.305066 norm=36.469165 +1341876.930216 1210948.930216 norm=36.414283 +1341876.611893 1212672.611893 norm=36.619667 +1341891.164195 1213186.164195 norm=35.832946 +1341926.759046 1219115.759046 norm=37.523326 +1341883.054811 1215168.054811 norm=37.496667 +1341903.881564 1210540.881564 norm=37.469988 +1341897.574569 1215419.574569 norm=37.960506 +1341926.515913 1216875.515913 norm=37.881394 +1341936.620635 1213612.620635 norm=37.616486 +1341938.264998 1213866.264998 norm=37.643060 +1341954.433970 1216462.433970 norm=37.986840 +1341986.302285 1214926.302285 norm=36.796739 +1341997.442403 1214663.442403 norm=37.188708 +1342016.227568 1217825.227568 norm=37.403208 +1342016.453143 1211908.453143 norm=36.810325 +1342040.740336 1215216.740336 norm=37.148351 +1342030.771793 1215953.771793 norm=37.496667 +1342059.822314 1217903.822314 norm=36.932371 +1342049.681113 1212152.681113 norm=38.418745 +1342081.943313 1217814.943313 norm=37.549967 +1342086.873888 1214230.873888 norm=37.229021 +1342125.403886 1208894.403886 norm=36.606010 +1342114.892773 1216964.892773 norm=37.403208 +1342126.958794 1212775.958794 norm=37.881394 +1342123.259274 1215103.259274 norm=38.144462 +1342139.487996 1221669.487996 norm=37.456642 +1342181.063255 1215720.063255 norm=36.455452 +1342182.545815 1212164.545815 norm=37.735925 +1342175.792043 1215052.792043 norm=37.282704 +1342205.838195 1211695.838195 norm=37.269290 +1342226.461362 1214967.461362 norm=37.762415 +1342197.541117 1216193.541117 norm=37.523326 +1342241.066805 1215448.066805 norm=37.709415 +1342246.459347 1213859.459347 norm=36.796739 +1342273.958081 1221995.958081 norm=37.336309 +1342266.877926 1210618.877926 norm=37.509999 +1342291.312806 1213603.312806 norm=37.788887 +1342291.309121 1214788.309121 norm=36.972963 +1342332.296949 1220261.296949 norm=36.783148 +1342320.817627 1211888.817627 norm=36.124784 +1342367.497635 1215006.497635 norm=37.107951 +1342324.672230 1214244.672230 norm=37.536649 +1342363.768800 1217000.768800 norm=37.255872 +1342361.483843 1217420.483843 norm=37.563280 +1342371.506898 1216618.506898 norm=37.349699 +1342405.207899 1212647.207899 norm=37.443290 +1342404.118879 1214238.118879 norm=37.067506 +1342434.339948 1216276.339948 norm=37.309516 +1342449.798607 1213953.798607 norm=36.972963 +1342444.604506 1214151.604506 norm=37.215588 +1342458.773976 1211900.773976 norm=37.429935 +1342466.720569 1215314.720569 norm=37.067506 +1342488.245269 1218377.245269 norm=37.054015 +1342498.195117 1208899.195117 norm=38.039453 +1342497.935637 1218535.935637 norm=36.742346 +1342538.399480 1213957.399480 norm=36.674242 +1342545.958357 1214159.958357 norm=37.509999 +1342528.328230 1214887.328230 norm=37.960506 +1342542.750765 1217174.750765 norm=37.121422 +1342576.843912 1212700.843912 norm=37.429935 +1342586.890528 1214203.890528 norm=38.000000 +1342560.522028 1215818.522028 norm=37.696154 +1342621.554987 1216332.554987 norm=36.864617 +1342621.937931 1215454.937931 norm=36.986484 +1342652.273393 1211736.273393 norm=37.616486 +1342626.188834 1216316.188834 norm=37.603191 +1342678.126023 1216009.126023 norm=36.110940 +1342677.242839 1219879.242839 norm=36.986484 +1342682.414272 1212690.414272 norm=38.170669 +1342695.615936 1217231.615936 norm=36.905284 +1342685.949437 1217692.949437 norm=37.656341 +1342715.434891 1215739.434891 norm=36.742346 +1342745.875127 1216911.875127 norm=36.783148 +1342742.741198 1212565.741198 norm=36.551334 +1342790.885023 1216712.885023 norm=36.276714 +1342767.237943 1208403.237943 norm=37.549967 +1342758.182825 1215129.182825 norm=38.000000 +1342783.429062 1219691.429062 norm=37.080992 +1342815.421385 1213836.421385 norm=36.742346 +1342815.131104 1215856.131104 norm=36.537652 +1342844.552350 1218260.552350 norm=37.161808 +1342849.563789 1211277.563789 norm=36.796739 +1342846.101098 1214181.101098 norm=36.837481 +1342868.982286 1217566.982286 norm=36.386811 +1342896.488119 1216943.488119 norm=36.742346 +1342895.063895 1216791.063895 norm=36.823905 +1342929.413983 1214154.413983 norm=37.229021 +1342902.434813 1213252.434813 norm=38.052595 +1342913.289288 1211036.289288 norm=37.960506 +1342918.705918 1217375.705918 norm=38.052595 +1342927.179501 1215503.179501 norm=37.483330 +1342949.676489 1216147.676489 norm=37.094474 +1342999.572042 1215367.572042 norm=36.551334 +1342976.914051 1216708.914051 norm=36.755952 +1343004.462324 1219505.462324 norm=37.349699 +1342999.506327 1217282.506327 norm=37.735925 +1343011.530205 1210722.530205 norm=36.796739 +1343045.827850 1216873.827850 norm=37.336309 +1343052.603364 1216645.603364 norm=36.755952 +1343072.943421 1213986.943421 norm=36.441734 +1343086.876414 1208491.876414 norm=35.832946 +1343105.910944 1221441.910944 norm=36.864617 +1343104.682976 1214816.682976 norm=36.565011 +1343121.744237 1212708.744237 norm=36.986484 +1343135.924156 1215721.924156 norm=37.269290 +1343133.485008 1210893.485008 norm=37.496667 +1343141.733117 1216097.733117 norm=38.275318 +1343132.506975 1219656.506975 norm=37.000000 +1343175.780456 1214439.780456 norm=37.215588 +1343180.527310 1216097.527310 norm=36.769553 +1343200.793203 1215520.793203 norm=36.945906 +1343224.156010 1213069.156010 norm=37.709415 +1343178.285963 1215074.285963 norm=38.170669 +1343229.448967 1214241.448967 norm=37.282704 +1343231.482124 1213249.482124 norm=38.131352 +1343240.660328 1216148.660328 norm=36.783148 +1343270.995414 1214499.995414 norm=37.121422 +1343281.450023 1220200.450023 norm=37.080992 +1343303.800241 1213627.800241 norm=36.441734 +1343332.289288 1220145.289288 norm=36.469165 +1343329.990137 1214941.990137 norm=35.383612 +1343354.247512 1214698.247512 norm=36.578682 +1343339.306942 1215021.306942 norm=37.841776 +1343354.002546 1217243.002546 norm=36.701499 +1343369.272530 1212671.272530 norm=37.296112 +1343371.514336 1216141.514336 norm=36.482873 +1343410.688385 1216409.688385 norm=36.482873 +1343404.888026 1214064.888026 norm=37.589892 +1343400.804199 1214119.804199 norm=37.134889 +1343433.853926 1218807.853926 norm=36.959437 +1343445.815587 1213409.815587 norm=36.918830 +1343439.176133 1216478.176133 norm=38.379682 +1343440.924697 1214658.924697 norm=37.762415 +1343477.936986 1222322.936986 norm=36.124784 +1343504.841769 1213462.841769 norm=36.742346 +1343518.443489 1216611.443489 norm=36.510273 +1343520.831769 1215720.831769 norm=36.769553 +1343513.089212 1213102.089212 norm=36.701499 +1343548.846038 1215462.846038 norm=36.864617 +1343529.074917 1214943.074917 norm=38.288379 +1343547.509216 1213944.509216 norm=38.026307 +1343548.961215 1218094.961215 norm=37.788887 +1343577.425832 1211999.425832 norm=36.441734 +1343612.980980 1215729.980980 norm=36.027767 +1343635.010473 1215783.010473 norm=37.349699 +1343594.483856 1214399.483856 norm=37.403208 +1343639.873738 1215350.873738 norm=36.592349 +1343665.160124 1216067.160124 norm=36.221541 +1343673.646310 1217492.646310 norm=37.589892 +1343659.201392 1212122.201392 norm=36.646964 +1343686.145934 1219339.145934 norm=36.932371 +1343704.468222 1215207.468222 norm=36.276714 +1343726.145334 1219167.145334 norm=38.078866 +1343715.499546 1217482.499546 norm=36.891733 +1343726.099988 1215461.099988 norm=37.509999 +1343751.938657 1213065.938657 norm=36.823905 +1343748.694063 1214517.694063 norm=37.749172 +1343739.412324 1213665.412324 norm=37.934153 +1343759.429383 1217030.429383 norm=37.067506 +1343796.793345 1218350.793345 norm=36.027767 +1343839.857865 1215822.857865 norm=36.592349 +1343819.351587 1214273.351587 norm=37.589892 +1343806.903199 1216401.903199 norm=37.107951 +1343856.206647 1213457.206647 norm=36.262929 +1343872.375510 1217508.375510 norm=37.215588 +1343851.484106 1212208.484106 norm=37.054015 +1343878.899234 1219973.899234 norm=36.400549 +1343923.162487 1217970.162487 norm=36.304270 +1343905.770350 1214340.770350 norm=37.563280 +1343915.544471 1213849.544471 norm=36.441734 +1343942.736898 1217252.736898 norm=35.777088 +1343971.116994 1214744.116994 norm=36.823905 +1343953.236693 1216001.236693 norm=37.040518 +1343955.962998 1213511.962998 norm=37.536649 +1343975.004409 1218383.004409 norm=37.629775 +1343983.490566 1216289.490566 norm=37.403208 +1343977.114401 1215156.114401 norm=38.249183 +1343979.768451 1217255.768451 norm=37.762415 +1344013.785319 1214031.785319 norm=37.255872 +1344057.924359 1221237.924359 norm=36.083237 +1344067.161192 1212020.161192 norm=37.013511 +1344041.330821 1210443.330821 norm=36.592349 +1344093.742772 1219290.742772 norm=36.235342 +1344095.308890 1213637.308890 norm=37.403208 +1344106.638789 1213236.638789 norm=37.215588 +1344096.007781 1216815.007781 norm=37.443290 +1344109.264909 1217996.264909 norm=36.972963 +1344139.671977 1222478.671977 norm=36.945906 +1344153.532850 1215199.532850 norm=37.828561 +1344128.755853 1218886.755853 norm=36.823905 +1344172.969568 1212783.969568 norm=36.701499 +1344189.303810 1218642.303810 norm=35.930488 +1344217.986216 1214758.986216 norm=36.318040 +1344209.482118 1220839.482118 norm=37.986840 +1344185.040206 1210772.040206 norm=37.496667 +1344223.695813 1220942.695813 norm=37.416574 +1344220.847160 1212057.847160 norm=36.851052 +1344262.065107 1221872.065107 norm=37.229021 +1344255.917302 1212571.917302 norm=37.229021 +1344267.540342 1220913.540342 norm=38.091994 +1344286.063428 1210524.063428 norm=36.783148 +1344293.989825 1220071.989825 norm=37.549967 +1344309.085318 1215963.085318 norm=36.441734 +1344353.540924 1215700.540924 norm=36.932371 +1344337.223633 1213202.223633 norm=37.013511 +1344349.246977 1219449.246977 norm=36.482873 +1344372.101922 1215646.101922 norm=37.000000 +1344395.021426 1221202.021426 norm=36.619667 +1344390.643223 1216026.643223 norm=37.403208 +1344384.460683 1217450.460683 norm=37.762415 +1344397.249400 1214006.249400 norm=36.523965 +1344434.258714 1215800.258714 norm=36.345564 +1344425.327804 1216955.327804 norm=37.496667 +1344427.799910 1220681.799910 norm=37.134889 +1344435.915403 1213830.915403 norm=37.403208 +1344459.526833 1218338.526833 norm=37.696154 +1344474.599082 1212665.599082 norm=37.269290 +1344492.368026 1216976.368026 norm=36.837481 +1344522.315286 1218350.315286 norm=36.523965 +1344538.015949 1214882.015949 norm=35.805028 +1344562.317929 1214229.317929 norm=36.619667 +1344539.384215 1219663.384215 norm=37.161808 +1344549.626746 1216208.626746 norm=36.496575 +1344552.556313 1217343.556313 norm=38.236109 +1344550.996335 1217272.996335 norm=37.429935 +1344573.770940 1219596.770940 norm=38.118237 +1344591.587091 1217177.587091 norm=37.188708 +1344609.113264 1217693.113264 norm=36.687873 +1344634.315958 1216899.315958 norm=37.322915 +1344632.336992 1216746.336992 norm=36.918830 +1344654.773156 1218878.773156 norm=37.376463 +1344659.859231 1210234.859231 norm=37.416574 +1344659.756956 1215392.756956 norm=37.775654 +1344655.352133 1216587.352133 norm=36.796739 +1344707.293796 1213949.293796 norm=37.416574 +1344695.362809 1218950.362809 norm=37.067506 +1344726.831319 1219345.831319 norm=37.788887 +1344715.967762 1218775.967762 norm=37.094474 +1344749.734786 1217606.734786 norm=36.796739 +1344758.985416 1214921.985416 norm=37.094474 +1344772.114242 1215047.114242 norm=37.255872 +1344762.051216 1217513.051216 norm=37.202150 +1344787.842703 1217222.842703 norm=37.960506 +1344776.389155 1215713.389155 norm=37.349699 +1344818.695082 1214439.695082 norm=37.229021 +1344811.611516 1216754.611516 norm=37.589892 +1344844.600535 1217191.600535 norm=36.660606 +1344869.327827 1220552.327827 norm=36.959437 +1344859.700433 1215462.700433 norm=37.669616 +1344863.526629 1220437.526629 norm=36.660606 +1344904.870611 1216727.870611 norm=37.443290 +1344882.072857 1215763.072857 norm=37.456642 +1344921.518092 1217429.518092 norm=36.373067 +1344942.770849 1215818.770849 norm=36.932371 +1344941.554552 1216447.554552 norm=36.878178 +1344939.873487 1214735.873487 norm=36.959437 +1344956.205484 1220138.205484 norm=37.509999 +1344971.560307 1218693.560307 norm=36.783148 +1344986.491239 1217232.491239 norm=37.000000 +1344996.142438 1216836.142438 norm=37.054015 +1345001.536240 1215625.536240 norm=38.118237 +1344994.772498 1218391.772498 norm=37.894591 +1345025.200642 1213307.200642 norm=37.496667 +1345024.860166 1220723.860166 norm=37.215588 +1345053.144018 1213193.144018 norm=36.905284 +1345061.990542 1221005.990542 norm=36.878178 +1345096.663074 1214791.663074 norm=37.229021 +1345071.350259 1219908.350259 norm=37.616486 +1345101.055866 1217886.055866 norm=36.864617 +1345122.705082 1213687.705082 norm=36.592349 +1345131.328055 1216328.328055 norm=37.456642 +1345112.799539 1214624.799539 norm=37.709415 +1345150.992108 1217043.992108 norm=36.606010 +1345163.954746 1221029.954746 norm=35.944402 +1345194.793288 1215660.793288 norm=36.755952 +1345193.847704 1222440.847704 norm=36.701499 +1345180.998891 1221422.998891 norm=37.868192 +1345198.412772 1215101.412772 norm=37.134889 +1345225.750496 1216433.750496 norm=36.878178 +1345222.955750 1218337.955750 norm=37.589892 +1345238.907952 1215318.907952 norm=37.509999 +1345258.575100 1218251.575100 norm=37.148351 +1345265.291320 1220892.291320 norm=37.709415 +1345269.559903 1220230.559903 norm=36.578682 +1345312.309813 1220129.309813 norm=36.482873 +1345331.771526 1214980.771526 norm=36.386811 +1345317.590953 1224182.590953 norm=36.905284 +1345341.710168 1212372.710168 norm=36.523965 +1345360.371668 1222087.371668 norm=36.565011 +1345362.057476 1212367.057476 norm=36.469165 +1345374.421124 1218817.421124 norm=37.202150 +1345350.253592 1215060.253592 norm=37.242449 +1345391.022046 1221864.022046 norm=37.148351 +1345382.897403 1216756.897403 norm=37.616486 +1345399.885911 1219821.885911 norm=37.269290 +1345428.248203 1215620.248203 norm=36.674242 +1345458.841891 1216713.841891 norm=37.523326 +1345416.742372 1217884.742372 norm=37.509999 +1345464.281032 1215598.281032 norm=37.094474 +1345467.039465 1221903.039465 norm=37.416574 +1345464.605753 1216358.605753 norm=37.762415 +1345474.547468 1218832.547468 norm=38.157568 +1345485.676332 1211342.676332 norm=38.196859 +1345483.484945 1221529.484945 norm=38.157568 +1345514.064985 1213451.064985 norm=37.854986 +1345526.339999 1221858.339999 norm=37.536649 +1345556.315474 1217020.315474 norm=37.309516 +1345561.399912 1219764.399912 norm=36.986484 +1345595.244608 1215248.244608 norm=36.304270 +1345611.996427 1218278.996427 norm=37.188708 +1345593.365782 1217801.365782 norm=36.674242 +1345609.840025 1215618.840025 norm=37.456642 +1345625.020190 1221404.020190 norm=37.175261 +1345619.292072 1219757.292072 norm=36.619667 +1345654.429162 1218978.429162 norm=37.563280 +1345626.933385 1221501.933385 norm=37.389838 +1345675.975561 1212762.975561 norm=38.327536 +1345666.774916 1222574.774916 norm=37.107951 +1345693.816096 1215956.816096 norm=37.215588 +1345691.335251 1220475.335251 norm=37.536649 +1345724.934153 1215172.934153 norm=36.496575 +1345741.418906 1215701.418906 norm=37.881394 +1345717.541492 1218659.541492 norm=37.523326 +1345733.747008 1214978.747008 norm=37.161808 +1345783.291893 1219513.291893 norm=36.619667 +1345785.915085 1215849.915085 norm=37.067506 +1345783.731764 1220628.731764 norm=37.549967 +1345782.999333 1216438.999333 norm=37.841776 +1345809.639910 1220282.639910 norm=36.986484 +1345811.402387 1219738.402387 norm=37.894591 +1345808.941171 1220610.941171 norm=36.959437 +1345864.534355 1217147.534355 norm=36.428011 +1345860.815587 1221249.815587 norm=36.428011 +1345892.044540 1216408.044540 norm=36.331804 +1345895.358339 1219708.358339 norm=36.482873 +1345912.543848 1218827.543848 norm=37.134889 +1345894.105994 1217466.105994 norm=37.973675 +1345884.471707 1223126.471707 norm=36.891733 +1345951.079893 1215944.079893 norm=36.619667 +1345947.639663 1220807.639663 norm=36.742346 +1345967.332525 1219603.332525 norm=38.327536 +1345923.821191 1215581.821191 norm=37.868192 +1345974.880888 1220407.880888 norm=36.578682 +1345989.367442 1215830.367442 norm=37.336309 +1345992.167848 1223981.167848 norm=37.403208 +1346010.563566 1217118.563566 norm=37.854986 +1346004.041128 1218787.041128 norm=37.121422 +1346043.691262 1216085.691262 norm=36.565011 +1346036.223935 1223603.223935 norm=37.161808 +1346076.378980 1212899.378980 norm=36.660606 +1346092.042803 1217843.042803 norm=37.040518 +1346085.266883 1214911.266883 norm=36.945906 +1346095.182081 1216686.182081 norm=37.722672 +1346093.662970 1221785.662970 norm=37.376463 +1346135.987549 1216877.987549 norm=37.027017 +1346125.094204 1217671.094204 norm=37.523326 +1346144.143612 1223061.143612 norm=37.563280 +1346144.007979 1216306.007979 norm=37.134889 +1346148.973045 1221730.973045 norm=38.000000 +1346167.531871 1216431.531871 norm=36.592349 +1346226.763897 1218972.763897 norm=36.400549 +1346211.052281 1217558.052281 norm=36.304270 +1346242.649941 1221709.649941 norm=36.660606 +1346206.053642 1213545.053642 norm=38.405729 +1346223.970638 1221419.970638 norm=38.457769 +1346206.006850 1221708.006850 norm=37.709415 +1346263.734847 1220101.734847 norm=36.918830 +1346264.404516 1214750.404516 norm=36.986484 +1346310.444525 1222526.444525 norm=36.386811 +1346307.837013 1215688.837013 norm=36.701499 +1346300.194338 1218167.194338 norm=37.841776 +1346307.424080 1218640.424080 norm=36.728735 +1346329.468778 1222204.468778 norm=37.255872 +1346337.876704 1216939.876704 norm=36.891733 +1346356.373528 1220564.373528 norm=38.366652 +1346347.415430 1220931.415430 norm=37.523326 +1346368.975264 1217714.975264 norm=37.815341 +1346375.861797 1217379.861797 norm=37.894591 +1346388.230396 1215840.230396 norm=37.175261 +1346413.001669 1218458.001669 norm=37.000000 +1346425.460789 1223593.460789 norm=37.456642 +1346431.716104 1217520.716104 norm=37.000000 +1346463.023778 1219287.023778 norm=37.202150 +1346443.467225 1215897.467225 norm=37.722672 +1346463.153143 1219942.153143 norm=37.815341 +1346467.919561 1224198.919561 norm=37.749172 +1346484.486480 1220190.486480 norm=36.864617 +1346518.209756 1216259.209756 norm=36.674242 +1346520.975479 1217598.975479 norm=36.428011 +1346539.955125 1215682.955125 norm=36.469165 +1346558.627000 1222413.627000 norm=36.138622 +1346567.771503 1215444.771503 norm=37.188708 +1346548.246090 1222730.246090 norm=37.188708 +1346574.441153 1219413.441153 norm=37.376463 +1346595.711155 1223281.711155 norm=37.603191 +1346590.366410 1216199.366410 norm=36.646964 +1346628.041210 1220522.041210 norm=36.769553 +1346605.696778 1216848.696778 norm=37.815341 +1346644.362101 1220819.362101 norm=37.067506 +1346634.659487 1216824.659487 norm=37.121422 +1346672.559277 1220591.559277 norm=37.682887 +1346647.819595 1218532.819595 norm=38.144462 +1346658.778231 1216771.778231 norm=37.255872 +1346695.754644 1222275.754644 norm=36.783148 +1346714.753369 1223614.753369 norm=38.131352 +1346671.176757 1217941.176757 norm=37.762415 +1346731.400021 1220158.400021 norm=37.483330 +1346742.195229 1218833.195229 norm=37.309516 +1346740.239329 1222462.239329 norm=37.828561 +1346754.836476 1216360.836476 norm=37.107951 +1346788.270226 1218836.270226 norm=36.701499 +1346765.810156 1218251.810156 norm=37.255872 +1346802.811413 1224449.811413 norm=37.496667 +1346782.023500 1217169.023500 norm=38.405729 +1346813.027314 1220478.027314 norm=37.161808 +1346842.779662 1215550.779662 norm=37.456642 +1346852.516054 1220673.516054 norm=36.918830 +1346872.600812 1216925.600812 norm=36.633318 +1346870.370578 1219034.370578 norm=37.175261 +1346870.449438 1216751.449438 norm=36.864617 +1346925.240458 1218502.240458 norm=36.249138 +1346899.315518 1222288.315518 norm=37.255872 +1346924.410317 1220006.410317 norm=37.469988 +1346909.327972 1214708.327972 norm=36.851052 +1346955.087088 1221933.087088 norm=37.349699 +1346926.840356 1218622.840356 norm=37.563280 +1346963.993767 1217993.993767 norm=37.215588 +1346970.992520 1220739.992520 norm=37.656341 +1346981.110263 1220972.110263 norm=36.837481 +1347016.329158 1215496.329158 norm=36.166283 +1347028.715638 1221534.715638 norm=37.868192 +1346985.223759 1215478.223759 norm=37.841776 +1347038.031757 1222248.031757 norm=37.282704 +1347031.102827 1217067.102827 norm=36.878178 +1347071.671993 1225581.671993 norm=37.536649 +1347051.373281 1215880.373281 norm=36.769553 +1347081.923007 1220245.923007 norm=37.523326 +1347054.028374 1215521.028374 norm=38.183766 +1347085.845516 1221929.845516 norm=36.959437 +1347123.828417 1221695.828417 norm=36.592349 +1347132.385925 1221337.385925 norm=36.537652 +1347147.788902 1223239.788902 norm=37.483330 +1347150.546183 1213671.546183 norm=36.837481 +1347154.663896 1219594.663896 norm=36.551334 +1347183.691955 1220488.691955 norm=37.483330 +1347174.427921 1220773.427921 norm=37.215588 +1347203.884810 1222632.884810 norm=37.013511 +1347222.201426 1221510.201426 norm=37.000000 +1347214.957019 1216864.957019 norm=37.094474 +1347212.539254 1217580.539254 norm=38.418745 +1347220.390549 1218582.390549 norm=36.932371 +1347252.946980 1219087.946980 norm=37.202150 +1347261.262209 1221267.262209 norm=37.202150 +1347254.880693 1219289.880693 norm=38.652296 +1347266.144854 1220833.144854 norm=37.389838 +1347287.032725 1217128.032725 norm=38.392708 +1347292.371084 1218676.371084 norm=37.960506 +1347301.102262 1219525.102262 norm=36.810325 +1347363.196995 1224012.196995 norm=36.864617 +1347329.369679 1216863.369679 norm=37.255872 +1347362.431026 1221903.431026 norm=36.469165 +1347384.630555 1216626.630555 norm=37.643060 +1347377.269522 1220364.269522 norm=37.202150 +1347390.381625 1221427.381625 norm=36.986484 +1347429.829697 1221475.829697 norm=36.138622 +1347429.637538 1221054.637538 norm=36.646964 +1347431.818000 1222405.818000 norm=36.318040 +1347450.150972 1218658.150972 norm=36.905284 +1347451.048499 1225716.048499 norm=37.215588 +1347468.522222 1215737.522222 norm=36.660606 +1347467.669532 1221115.669532 norm=37.040518 +1347499.001319 1215192.001319 norm=36.482873 +1347496.016986 1220904.016986 norm=38.301436 +1347478.875286 1218240.875286 norm=38.249183 +1347501.896634 1219956.896634 norm=37.000000 +1347538.663807 1218750.663807 norm=37.509999 +1347524.114855 1223546.114855 norm=37.815341 +1347559.892481 1220874.892481 norm=36.701499 +1347566.987052 1221974.987052 norm=36.249138 +1347609.986699 1217496.986699 norm=36.551334 +1347581.044491 1224082.044491 norm=37.416574 +1347598.484931 1220485.484931 norm=37.469988 +1347581.380060 1221593.380060 norm=37.656341 +1347624.338329 1218765.338329 norm=38.196859 +1347611.228390 1225356.228390 norm=37.563280 +1347653.218512 1213605.218512 norm=38.196859 +1347637.622941 1223391.622941 norm=36.905284 +1347690.679132 1222099.679132 norm=37.121422 +1347671.578774 1220032.578774 norm=37.148351 +1347706.613877 1221816.613877 norm=36.918830 +1347696.251632 1217050.251632 norm=36.783148 +1347721.829008 1219527.829008 norm=36.359318 +1347738.393268 1217832.393268 norm=36.359318 +1347739.875606 1223348.875606 norm=37.134889 +1347758.721331 1217677.721331 norm=36.715120 +1347767.019093 1221526.019093 norm=37.828561 +1347755.974605 1216282.974605 norm=37.107951 +1347804.891985 1224234.891985 norm=36.742346 +1347785.421875 1221914.421875 norm=36.796739 +1347806.260418 1219323.260418 norm=36.905284 +1347826.312377 1219740.312377 norm=37.735925 +1347811.069132 1221432.069132 norm=37.749172 +1347836.310879 1223073.310879 norm=36.810325 +1347860.515735 1223399.515735 norm=37.121422 +1347864.716155 1224793.716155 norm=37.067506 +1347875.655909 1218583.655909 norm=37.603191 +1347876.145951 1216982.145951 norm=37.349699 +1347904.193319 1220122.193319 norm=36.742346 +1347927.084547 1220650.084547 norm=36.207734 +1347933.988196 1219651.988196 norm=36.918830 +1347929.017761 1223362.017761 norm=37.322915 +1347921.857935 1224184.857935 norm=37.696154 +1347942.334521 1220244.334521 norm=37.282704 +1347959.783109 1220743.783109 norm=36.537652 +1348004.055221 1222856.055221 norm=35.538711 +1348015.384384 1221755.384384 norm=36.728735 +1347985.156071 1221925.156071 norm=36.986484 +1348002.978826 1217054.978826 norm=36.837481 +1348023.002943 1222098.002943 norm=36.455452 +1348068.205184 1221164.205184 norm=36.565011 +1348046.274353 1221099.274353 norm=36.660606 +1348043.034524 1223514.034524 norm=36.905284 +1348079.462624 1221612.462624 norm=37.242449 +1348091.725503 1224690.725503 norm=36.414283 +1348096.404867 1223765.404867 norm=37.054015 +1348121.686536 1223342.686536 norm=37.054015 +1348121.243117 1222901.243117 norm=36.674242 +1348114.275273 1218016.275273 norm=37.215588 +1348132.747732 1227919.747732 norm=37.802116 +1348126.463220 1214435.463220 norm=36.482873 +1348181.590558 1220839.590558 norm=35.986108 +1348173.803749 1217998.803749 norm=36.972963 +1348198.987978 1222619.987978 norm=36.055513 +1348210.282589 1222474.282589 norm=36.565011 +1348227.474499 1221555.474499 norm=36.810325 +1348200.969097 1217912.969097 norm=37.973675 +1348212.431967 1226465.431967 norm=37.322915 +1348250.588602 1222485.588602 norm=37.682887 +1348225.876901 1224449.876901 norm=37.188708 +1348250.945733 1221368.945733 norm=37.429935 +1348268.557107 1224757.557107 norm=36.304270 +1348295.351681 1220195.351681 norm=36.414283 +1348318.027729 1219091.027729 norm=36.633318 +1348312.618292 1226282.618292 norm=36.318040 +1348326.571455 1221580.571455 norm=37.616486 +1348328.304326 1222909.304326 norm=38.078866 +1348297.821616 1222012.821616 norm=36.796739 +1348365.258801 1217290.258801 norm=36.428011 +1348374.528607 1226688.528607 norm=36.783148 +1348364.642182 1223117.642182 norm=36.221541 +1348406.698999 1222530.698999 norm=36.469165 +1348393.101472 1221136.101472 norm=37.229021 +1348396.034840 1222931.034840 norm=36.551334 +1348436.028405 1223591.028405 norm=36.373067 +1348425.634126 1225307.634126 norm=37.269290 +1348442.319635 1222519.319635 norm=37.403208 +1348443.083629 1216111.083629 norm=37.469988 +1348445.154372 1229005.154372 norm=37.363083 +1348461.629258 1222129.629258 norm=37.629775 +1348487.056127 1223418.056127 norm=37.282704 +1348493.081823 1217139.081823 norm=38.131352 +1348485.703673 1222048.703673 norm=37.735925 +1348520.793035 1220735.793035 norm=36.837481 +1348526.846065 1220452.846065 norm=36.592349 +1348573.702164 1223670.702164 norm=35.874782 +1348559.090818 1225162.090818 norm=36.823905 +1348557.109149 1219754.109149 norm=36.986484 +1348587.845966 1224913.845966 norm=36.619667 +1348585.583613 1225323.583613 norm=36.728735 +1348615.857264 1217089.857264 norm=37.040518 +1348586.556082 1223971.556082 norm=37.376463 +1348603.619503 1219592.619503 norm=36.823905 +1348634.949747 1225440.949747 norm=36.083237 +1348663.547744 1218721.547744 norm=37.067506 +1348626.255553 1228103.255553 norm=37.296112 +1348678.590014 1222930.590014 norm=36.932371 +1348648.214041 1223531.214041 norm=37.416574 +1348686.447130 1222776.447130 norm=37.255872 +1348684.349775 1226990.349775 norm=36.878178 +1348720.681258 1221664.681258 norm=36.180105 +1348732.534483 1221795.534483 norm=36.373067 +1348742.640368 1221709.640368 norm=37.202150 +1348728.076794 1223958.076794 norm=37.336309 +1348758.684497 1218807.684497 norm=36.728735 +1348761.610331 1229789.610331 norm=37.336309 +1348765.384248 1220457.384248 norm=36.783148 +1348774.130736 1222124.130736 norm=36.592349 +1348824.083540 1225821.083540 norm=35.860842 +1348819.614200 1223481.614200 norm=36.290495 +1348825.414396 1221990.414396 norm=37.121422 +1348835.375298 1219223.375298 norm=36.027767 +1348854.539488 1222336.539488 norm=36.905284 +1348837.355481 1226684.355481 norm=37.134889 +1348859.789039 1224656.789039 norm=36.823905 +1348872.888990 1224512.888990 norm=37.121422 +1348901.766838 1221084.766838 norm=35.341194 +1348929.434424 1223985.434424 norm=35.888717 +1348926.538411 1222654.538411 norm=35.468296 +1348946.176049 1224893.176049 norm=35.930488 +1348941.171099 1223902.171099 norm=36.891733 +1348932.887107 1222167.887107 norm=37.309516 +1348953.172921 1226563.172921 norm=37.802116 +1348935.336677 1222161.336677 norm=37.815341 +1348963.891695 1227821.891695 norm=37.080992 +1348982.831869 1223491.831869 norm=36.455452 +1349006.228821 1225491.228821 norm=37.563280 +1348983.893725 1223020.893725 norm=36.932371 +1349004.376442 1226473.376442 norm=37.576588 +1349030.725199 1220893.725199 norm=36.592349 +1349045.894963 1223563.894963 norm=36.742346 +1349055.253344 1224341.253344 norm=36.551334 +1349064.905404 1220161.905404 norm=36.469165 +1349072.840897 1227853.840897 norm=36.565011 +1349094.209569 1225217.209569 norm=35.972211 +1349120.523822 1224460.523822 norm=36.728735 +1349100.183333 1226570.183333 norm=37.013511 +1349113.235625 1217158.235625 norm=36.083237 +1349153.764605 1223685.764605 norm=36.193922 +1349165.218144 1230165.218144 norm=36.304270 +1349154.479363 1225554.479363 norm=36.578682 +1349170.930423 1225926.930423 norm=36.578682 +1349181.699622 1223039.699622 norm=36.441734 +1349199.367276 1221355.367276 norm=35.482390 +1349219.819736 1220806.819736 norm=37.161808 +1349199.861777 1222618.861777 norm=35.832946 +1349268.253637 1222868.253637 norm=36.000000 +1349214.503744 1220006.503744 norm=37.336309 +1349262.490388 1227837.490388 norm=36.124784 +1349247.517118 1223191.517118 norm=36.905284 +1349268.323362 1221819.323362 norm=36.496575 +1349280.183237 1227921.183237 norm=37.907783 +1349277.782165 1219444.782165 norm=36.918830 +1349305.416054 1227486.416054 norm=36.482873 +1349318.760631 1223018.760631 norm=36.932371 +1349299.271849 1223824.271849 norm=36.715120 +1349322.145967 1230225.145967 norm=37.322915 +1349328.173353 1224423.173353 norm=37.188708 +1349329.463514 1223623.463514 norm=37.349699 +1349358.751074 1224248.751074 norm=36.152455 +1349377.244344 1221183.244344 norm=36.878178 +1349382.017082 1224539.017082 norm=37.363083 +1349378.493227 1228884.493227 norm=36.510273 +1349425.300725 1226096.300725 norm=36.455452 +1349422.665368 1221489.665368 norm=36.796739 +1349426.516861 1225470.516861 norm=36.715120 +1349444.911779 1225070.911779 norm=36.646964 +1349439.424472 1220305.424472 norm=37.027017 +1349462.588975 1227607.588975 norm=36.606010 +1349479.633929 1223807.633929 norm=36.742346 +1349501.482192 1221905.482192 norm=37.080992 +1349480.956104 1224540.956104 norm=37.389838 +1349494.282750 1221477.282750 norm=36.619667 +1349522.322346 1226610.322346 norm=36.249138 +1349545.730972 1222267.730972 norm=36.837481 +1349522.366256 1222507.366256 norm=37.549967 +1349530.832484 1223812.832484 norm=37.656341 +1349542.469431 1222034.469431 norm=37.749172 +1349530.815002 1227288.815002 norm=37.709415 +1349572.901392 1223504.901392 norm=36.496575 +1349603.877650 1225612.877650 norm=35.930488 +1349614.983324 1226017.983324 norm=36.276714 +1349617.891592 1225339.891592 norm=37.054015 +1349621.688214 1224353.688214 norm=37.202150 +1349631.289420 1223256.289420 norm=36.837481 +1349662.047693 1223865.047693 norm=36.055513 +1349677.697147 1225497.697147 norm=36.027767 +1349688.070671 1224418.070671 norm=35.944402 +1349693.426373 1230247.426373 norm=37.322915 +1349665.978283 1223740.978283 norm=37.148351 +1349720.512729 1221133.512729 norm=36.304270 +1349711.505457 1222707.505457 norm=36.455452 +1349728.328215 1224287.328215 norm=37.802116 +1349729.088544 1225366.088544 norm=36.235342 +1349765.058077 1223268.058077 norm=35.227830 +1349773.061752 1224897.061752 norm=36.905284 +1349759.042450 1227818.042450 norm=37.336309 +1349758.002130 1222076.002130 norm=37.121422 +1349786.062802 1226071.062802 norm=37.603191 +1349764.932312 1223406.932312 norm=37.148351 +1349811.113636 1226672.113636 norm=37.868192 +1349800.918341 1225357.918341 norm=37.134889 +1349808.259801 1228233.259801 norm=37.788887 +1349848.547228 1222679.547228 norm=36.041643 +1349874.701746 1222820.701746 norm=36.592349 +1349857.315596 1225632.315596 norm=36.660606 +1349885.971990 1221132.971990 norm=36.606010 +1349889.477039 1224425.477039 norm=37.000000 +1349894.361533 1222098.361533 norm=36.262929 +1349919.042717 1227559.042717 norm=37.067506 +1349916.821094 1225397.821094 norm=37.363083 +1349916.703336 1225375.703336 norm=37.576588 +1349938.380997 1227498.380997 norm=36.986484 +1349942.875554 1223126.875554 norm=37.894591 +1349961.139980 1227550.139980 norm=35.791060 +1350006.034146 1223523.034146 norm=36.290495 +1349995.896371 1224869.896371 norm=36.152455 +1350001.536050 1227882.536050 norm=36.660606 +1350014.897926 1226100.897926 norm=37.215588 +1350003.903813 1224352.903813 norm=36.537652 +1350049.202613 1221428.202613 norm=35.777088 +1350046.461010 1229841.461010 norm=37.202150 +1350029.810981 1226646.810981 norm=36.823905 +1350077.592248 1228337.592248 norm=36.152455 +1350073.974575 1224191.974575 norm=36.755952 +1350076.242490 1224680.242490 norm=37.363083 +1350083.096722 1221603.096722 norm=37.148351 +1350102.482274 1224048.482274 norm=36.905284 +1350113.150708 1224253.150708 norm=37.080992 +1350120.850717 1224912.850717 norm=37.722672 +1350124.333669 1223787.333669 norm=36.728735 +1350154.206071 1221774.206071 norm=36.986484 +1350162.330491 1224159.330491 norm=36.482873 +1350173.009667 1230594.009667 norm=36.592349 +1350197.140704 1228619.140704 norm=36.810325 +1350180.570880 1223319.570880 norm=37.336309 +1350193.049334 1226930.049334 norm=36.441734 +1350220.142438 1225606.142438 norm=36.728735 +1350210.774352 1225659.774352 norm=36.932371 +1350242.927039 1221937.927039 norm=36.262929 +1350269.518963 1223347.518963 norm=37.027017 +1350235.532209 1219586.532209 norm=38.509739 +1350241.594453 1230684.594453 norm=38.157568 +1350256.896775 1224619.896775 norm=36.619667 +1350301.213114 1226924.213114 norm=36.551334 +1350303.562638 1226800.562638 norm=35.818989 +1350320.726128 1221404.726128 norm=36.755952 +1350334.690012 1224658.690012 norm=35.057096 +1350371.804416 1223704.804416 norm=36.701499 +1350330.613905 1227294.613905 norm=37.229021 +1350371.650747 1225410.650747 norm=36.027767 +1350371.603619 1223544.603619 norm=36.769553 +1350366.353551 1226493.353551 norm=36.972963 +1350389.425045 1226519.425045 norm=37.161808 +1350406.368491 1235193.368491 norm=37.403208 +1350394.782779 1223693.782779 norm=37.134889 +1350413.593792 1224322.593792 norm=37.282704 +1350418.400522 1227162.400522 norm=37.161808 +1350428.832698 1222482.832698 norm=37.576588 +1350422.102434 1221923.102434 norm=36.728735 +1350472.028917 1229760.028917 norm=37.322915 +1350453.637931 1220595.637931 norm=36.496575 +1350511.290613 1222535.290613 norm=35.665109 +1350521.700262 1220240.700262 norm=36.523965 +1350514.158031 1230270.158031 norm=36.083237 +1350525.537523 1222021.537523 norm=36.138622 +1350542.482360 1235618.482360 norm=36.918830 +1350533.459514 1216245.459514 norm=36.918830 +1350546.824123 1226034.824123 norm=37.121422 +1350546.035649 1226519.035649 norm=38.026307 +1350556.148450 1227752.148450 norm=36.783148 +1350595.703295 1225874.703295 norm=36.496575 +1350598.985008 1226984.985008 norm=36.660606 +1350613.619823 1228961.619823 norm=36.193922 +1350636.040489 1225637.040489 norm=36.276714 +1350641.353933 1226876.353933 norm=36.905284 +1350633.947128 1225107.947128 norm=37.000000 +1350636.598932 1223325.598932 norm=37.054015 +1350660.600282 1230007.600282 norm=36.769553 +1350652.694732 1223045.694732 norm=36.715120 +1350687.122872 1223354.122872 norm=35.888717 +1350695.406547 1222826.406547 norm=37.483330 +1350668.631282 1228955.631282 norm=37.000000 +1350719.734974 1229765.734974 norm=36.619667 +1350724.551970 1224169.551970 norm=37.094474 +1350725.736980 1224300.736980 norm=36.304270 +1350764.325706 1227595.325706 norm=36.221541 +1350761.348887 1227158.348887 norm=36.823905 +1350758.764934 1227788.764934 norm=37.775654 +1350763.752102 1226348.752102 norm=36.660606 +1350769.447625 1222868.447625 norm=37.389838 +1350768.358415 1225358.358415 norm=37.509999 +1350818.573734 1225934.573734 norm=36.262929 +1350812.511942 1227712.511942 norm=37.709415 +1350827.648966 1226496.648966 norm=36.646964 +1350855.428859 1226535.428859 norm=37.443290 +1350829.358156 1225325.358156 norm=37.549967 +1350857.612935 1221735.612935 norm=37.175261 +1350872.332971 1230659.332971 norm=36.069378 +1350895.238044 1224214.238044 norm=35.777088 +1350917.160135 1225933.160135 norm=35.791060 +1350936.246997 1226780.246997 norm=35.944402 +1350934.174489 1224943.174489 norm=36.110940 +1350924.951163 1229261.951163 norm=36.331804 +1350959.042751 1225536.042751 norm=37.027017 +1350938.281901 1220942.281901 norm=37.828561 +1350952.691550 1227255.691550 norm=36.537652 +1350974.124942 1226288.124942 norm=37.202150 +1350964.278182 1225803.278182 norm=37.443290 +1350986.590961 1227863.590961 norm=36.986484 +1351003.893055 1228923.893055 norm=36.455452 +1351012.977192 1229515.977192 norm=36.469165 +1351028.980905 1224716.980905 norm=36.606010 +1351027.153902 1223192.153902 norm=36.823905 +1351053.915449 1225004.915449 norm=36.290495 +1351059.822496 1228270.822496 norm=37.496667 +1351045.614260 1225144.614260 norm=38.052595 +1351062.865010 1221735.865010 norm=37.121422 +1351095.991504 1224698.991504 norm=36.290495 +1351095.741561 1225824.741561 norm=36.986484 +1351111.107703 1231654.107703 norm=36.400549 +1351114.923728 1225654.923728 norm=37.762415 +1351108.664271 1231202.664271 norm=36.932371 +1351139.914926 1220298.914926 norm=36.455452 +1351165.948815 1230571.948815 norm=37.000000 +1351145.751213 1231681.751213 norm=36.742346 +1351184.818173 1228211.818173 norm=36.945906 +1351162.720161 1223120.720161 norm=37.296112 +1351188.796399 1224933.796399 norm=37.682887 +1351192.611104 1228457.611104 norm=36.932371 +1351211.594742 1225097.594742 norm=37.175261 +1351241.332818 1225335.332818 norm=36.193922 +1351234.358553 1224092.358553 norm=37.696154 +1351226.996274 1225881.996274 norm=37.229021 +1351263.337293 1228199.337293 norm=35.972211 +1351301.535934 1224654.535934 norm=37.027017 +1351253.330165 1226776.330165 norm=37.040518 +1351298.950875 1227483.950875 norm=36.000000 +1351349.652855 1230219.652855 norm=36.262929 +1351311.133360 1228129.133360 norm=36.823905 +1351331.197064 1224592.197064 norm=35.777088 +1351337.097010 1227087.097010 norm=36.783148 +1351348.354129 1222750.354129 norm=36.400549 +1351364.443188 1225945.443188 norm=36.565011 +1351355.833502 1225076.833502 norm=37.094474 +1351378.195054 1228592.195054 norm=37.416574 +1351383.407046 1229315.407046 norm=36.687873 +1351416.796100 1222968.796100 norm=36.318040 +1351423.908357 1225933.908357 norm=36.864617 +1351415.764565 1230921.764565 norm=36.373067 +1351458.293160 1221738.293160 norm=36.400549 +1351437.084370 1227301.084370 norm=36.959437 +1351458.221100 1225579.221100 norm=37.349699 +1351438.952847 1230188.952847 norm=36.972963 +1351491.320128 1228998.320128 norm=37.282704 +1351457.758537 1225508.758537 norm=37.469988 +1351497.280924 1224930.280924 norm=36.891733 +1351498.710932 1227236.710932 norm=37.121422 +1351521.930714 1224486.930714 norm=37.282704 +1351505.902713 1225334.902713 norm=37.589892 +1351522.134075 1225099.134075 norm=36.783148 +1351564.624740 1227177.624740 norm=37.469988 +1351540.506665 1226466.506665 norm=37.376463 +1351560.927902 1220113.927902 norm=36.905284 +1351569.121989 1226504.121989 norm=36.386811 +1351616.850628 1227784.850628 norm=36.783148 +1351609.907031 1226520.907031 norm=36.742346 +1351588.732822 1227952.732822 norm=37.429935 +1351634.990924 1228825.990924 norm=36.318040 +1351635.366063 1225589.366063 norm=36.810325 +1351664.294576 1226619.294576 norm=37.000000 +1351630.939648 1227401.939648 norm=37.947332 +1351678.844027 1228040.844027 norm=36.138622 +1351685.636721 1226105.636721 norm=36.578682 +1351694.551201 1225127.551201 norm=36.701499 +1351698.708271 1227524.708271 norm=36.674242 +1351715.609614 1232703.609614 norm=36.138622 +1351719.290360 1225272.290360 norm=36.290495 +1351755.069522 1231670.069522 norm=35.791060 +1351760.345928 1227741.345928 norm=37.121422 +1351742.045686 1226502.045686 norm=37.403208 +1351735.810034 1225753.810034 norm=38.105118 +1351759.555657 1228843.555657 norm=37.027017 +1351773.121673 1225980.121673 norm=37.523326 +1351774.006656 1230707.006656 norm=36.633318 +1351804.476585 1227906.476585 norm=36.606010 +1351830.425527 1229162.425527 norm=36.932371 +1351808.183442 1224738.183442 norm=36.455452 +1351847.476126 1227525.476126 norm=37.296112 +1351823.394017 1231383.394017 norm=36.166283 +1351899.359208 1230413.359208 norm=36.290495 +1351838.073070 1228264.073070 norm=38.327536 +1351858.441352 1229882.441352 norm=36.633318 +1351900.825614 1230386.825614 norm=37.000000 +1351899.175070 1230302.175070 norm=37.134889 +1351883.807882 1224338.807882 norm=37.947332 +1351903.001054 1229437.001054 norm=37.269290 +1351914.804357 1230538.804357 norm=37.456642 +1351936.825138 1228278.825138 norm=36.041643 +1351957.048781 1231308.048781 norm=36.523965 +1351981.791514 1228391.791514 norm=36.097091 +1351985.105584 1229334.105584 norm=36.262929 +1351996.410364 1229181.410364 norm=37.013511 +1351951.667214 1229803.667214 norm=37.881394 +1352003.201881 1228961.201881 norm=36.180105 +1352028.831228 1229950.831228 norm=36.742346 +1352015.352441 1227341.352441 norm=36.728735 +1352038.911366 1221843.911366 norm=36.755952 +1352042.493591 1231248.493591 norm=36.469165 +1352058.601888 1231511.601888 norm=36.537652 +1352077.919554 1230042.919554 norm=36.110940 +1352070.240089 1228809.240089 norm=36.837481 +1352089.681853 1229448.681853 norm=36.986484 +1352084.442890 1225179.442890 norm=37.229021 +1352111.636713 1231687.636713 norm=36.138622 +1352121.658268 1227176.658268 norm=36.728735 +1352133.454200 1228458.454200 norm=36.715120 +1352141.595433 1235771.595433 norm=37.175261 +1352134.134969 1226490.134969 norm=36.578682 +1352173.499086 1231540.499086 norm=36.249138 +1352164.292376 1227906.292376 norm=37.669616 +1352158.822797 1226616.822797 norm=37.589892 +1352159.438148 1229387.438148 norm=37.709415 +1352207.797173 1232580.797173 norm=37.523326 +1352198.643409 1227706.643409 norm=36.523965 +1352231.394992 1231731.394992 norm=36.110940 +1352250.146695 1229796.146695 norm=36.124784 +1352239.847818 1227172.847818 norm=36.523965 +1352247.717265 1234209.717265 norm=36.959437 +1352282.794076 1226737.794076 norm=36.097091 +1352272.328266 1226277.328266 norm=36.138622 +1352295.172159 1233877.172159 norm=35.749126 +1352322.466655 1224075.466655 norm=36.331804 +1352299.878443 1234111.878443 norm=36.455452 +1352324.901698 1230558.901698 norm=36.510273 +1352316.002917 1231612.002917 norm=37.802116 +1352308.307578 1232025.307578 norm=37.188708 +1352346.388907 1224594.388907 norm=37.549967 +1352335.838611 1234271.838611 norm=37.854986 +1352360.646161 1230746.646161 norm=37.067506 +1352352.789792 1227683.789792 norm=36.674242 +1352393.932391 1228934.932391 norm=36.959437 +1352390.889524 1225577.889524 norm=36.318040 +1352409.920191 1233109.920191 norm=36.660606 +1352422.695992 1226686.695992 norm=36.083237 +1352444.293072 1228611.293072 norm=37.000000 +1352435.528944 1229104.528944 norm=36.318040 +1352461.470440 1226118.470440 norm=36.606010 +1352459.889793 1236041.889793 norm=36.592349 +1352463.947176 1227385.947176 norm=37.148351 +1352480.196497 1232376.196497 norm=36.646964 +1352491.481061 1225280.481061 norm=37.134889 +1352487.935508 1233959.935508 norm=37.000000 +1352511.175255 1223803.175255 norm=37.067506 +1352504.424250 1232081.424250 norm=37.735925 +1352512.039635 1231077.039635 norm=37.403208 +1352533.400195 1231008.400195 norm=36.578682 +1352539.316868 1230122.316868 norm=37.121422 +1352568.848479 1228412.848479 norm=37.269290 +1352545.701669 1227389.701669 norm=37.188708 +1352594.052190 1232526.052190 norm=36.646964 +1352585.287207 1233279.287207 norm=37.107951 +1352607.012825 1230966.012825 norm=36.482873 +1352612.770945 1231085.770945 norm=37.682887 +1352610.456518 1231221.456518 norm=37.469988 +1352601.351708 1231824.351708 norm=37.576588 +1352647.242248 1228708.242248 norm=35.805028 +1352670.542358 1231101.542358 norm=36.290495 +1352682.388919 1227265.388919 norm=36.083237 +1352672.666252 1227861.666252 norm=35.972211 +1352705.961131 1232648.961131 norm=35.510562 +1352723.823977 1223917.823977 norm=35.930488 +1352714.475101 1231807.475101 norm=36.728735 +1352724.413142 1231995.413142 norm=36.373067 +1352725.465839 1228006.465839 norm=37.175261 +1352728.701584 1229059.701584 norm=37.416574 +1352735.698515 1232682.698515 norm=37.269290 +1352743.468658 1227811.468658 norm=37.854986 +1352752.924829 1227494.924829 norm=37.134889 +1352783.587526 1229577.587526 norm=37.603191 +1352756.440996 1231222.440996 norm=37.788887 +1352788.698174 1236182.698174 norm=37.054015 +1352799.455682 1227130.455682 norm=37.067506 +1352812.075277 1231559.075277 norm=36.959437 +1352826.163175 1230863.163175 norm=36.331804 +1352856.256791 1228520.256791 norm=36.551334 +1352850.642705 1231955.642705 norm=35.763109 +1352903.324316 1230780.324316 norm=35.425979 +1352902.400686 1229177.400686 norm=36.510273 +1352885.204357 1229768.204357 norm=36.276714 +1352903.125228 1229282.125228 norm=36.633318 +1352906.922053 1229629.922053 norm=36.537652 +1352914.589207 1233331.589207 norm=36.249138 +1352905.384409 1234169.384409 norm=38.078866 +1352925.306084 1229739.306084 norm=36.041643 +1352945.724425 1229740.724425 norm=37.107951 +1352955.133154 1230413.133154 norm=37.255872 +1352963.065374 1227401.065374 norm=36.110940 +1352990.759804 1229091.759804 norm=36.565011 +1352981.195311 1229501.195311 norm=36.783148 +1352995.319177 1234500.319177 norm=36.837481 +1352998.448822 1228481.448822 norm=36.701499 +1353018.180495 1227446.180495 norm=36.592349 +1353042.672903 1228245.672903 norm=36.523965 +1353034.345169 1230089.345169 norm=37.629775 +1353010.765716 1230762.765716 norm=38.275318 +1353047.625320 1231401.625320 norm=37.067506 +1353055.933244 1226808.933244 norm=36.565011 +1353091.737786 1234191.737786 norm=36.864617 +1353085.214097 1234660.214097 norm=36.619667 +1353109.435036 1230806.435036 norm=36.193922 +1353090.828285 1229869.828285 norm=37.815341 +1353109.850054 1232900.850054 norm=37.027017 +1353120.701597 1225841.701597 norm=37.616486 +1353118.993958 1230902.993958 norm=36.496575 +1353155.083724 1230562.083724 norm=36.606010 +1353168.496856 1232006.496856 norm=36.207734 +1353170.686634 1232974.686634 norm=36.742346 +1353177.665387 1229671.665387 norm=36.972963 +1353183.666964 1229814.666964 norm=36.646964 +1353213.112739 1231471.112739 norm=35.735137 +1353223.506134 1228704.506134 norm=36.851052 +1353235.774506 1228095.774506 norm=36.221541 +1353242.973260 1232309.973260 norm=36.864617 +1353233.170257 1233658.170257 norm=37.389838 +1353219.372077 1233077.372077 norm=38.118237 +1353230.709678 1229547.709678 norm=36.428011 +1353289.558304 1226327.558304 norm=36.166283 +1353294.848143 1233951.848143 norm=35.791060 +1353316.703439 1231506.703439 norm=36.097091 +1353301.300826 1230216.300826 norm=36.345564 +1353316.369682 1233749.369682 norm=36.523965 +1353324.762581 1231355.762581 norm=35.930488 +1353354.410716 1224592.410716 norm=36.110940 +1353372.336978 1233228.336978 norm=36.152455 +1353357.314054 1232810.314054 norm=36.110940 +1353367.009096 1230414.009096 norm=36.180105 +1353382.874910 1230728.874910 norm=36.537652 +1353401.259875 1231356.259875 norm=37.067506 +1353368.883672 1232719.883672 norm=38.366652 +1353386.409118 1232329.409118 norm=37.080992 +1353401.589731 1229183.589731 norm=37.828561 +1353399.764505 1227753.764505 norm=37.762415 +1353399.735124 1227910.735124 norm=37.722672 +1353433.175809 1226683.175809 norm=36.345564 +1353469.056224 1233530.056224 norm=36.345564 +1353487.088563 1230292.088563 norm=36.428011 +1353468.341848 1231560.341848 norm=36.986484 +1353488.551060 1232410.551060 norm=36.972963 +1353488.734495 1235905.734495 norm=35.679126 +1353530.832646 1230537.832646 norm=36.537652 +1353515.522558 1228959.522558 norm=37.134889 +1353537.090230 1233945.090230 norm=36.728735 +1353524.578702 1229373.578702 norm=37.229021 +1353555.111999 1230411.111999 norm=36.221541 +1353549.456877 1233942.456877 norm=37.536649 +1353550.904595 1229265.904595 norm=36.428011 +1353613.594451 1231494.594451 norm=35.846897 +1353591.159997 1229202.159997 norm=36.193922 +1353617.290648 1234247.290648 norm=35.874782 +1353617.905865 1229387.905865 norm=35.902646 +1353615.263378 1234336.263378 norm=37.589892 +1353607.146958 1231793.146958 norm=37.456642 +1353628.219211 1229448.219211 norm=37.067506 +1353641.229366 1230509.229366 norm=37.296112 +1353649.226101 1231310.226101 norm=37.403208 +1353661.049920 1233378.049920 norm=36.810325 +1353664.255317 1234223.255317 norm=37.762415 +1353681.386326 1233904.386326 norm=36.891733 +1353693.258642 1228490.258642 norm=36.083237 +1353717.114573 1229531.114573 norm=37.802116 +1353684.127917 1235580.127917 norm=37.242449 +1353731.864691 1229873.864691 norm=36.235342 +1353734.213131 1228033.213131 norm=36.304270 +1353758.310163 1232335.310163 norm=37.322915 +1353750.935781 1229221.935781 norm=36.482873 +1353778.438501 1233528.438501 norm=37.722672 +1353745.120569 1230054.120569 norm=37.349699 +1353796.981836 1231012.981836 norm=36.359318 +1353793.272599 1232379.272599 norm=37.443290 +1353798.957663 1230529.957663 norm=37.134889 +1353811.992229 1230163.992229 norm=37.336309 +1353815.688629 1234999.688629 norm=37.229021 +1353815.829232 1230475.829232 norm=37.215588 +1353852.141781 1235397.141781 norm=36.565011 +1353863.485323 1233493.485323 norm=36.069378 +1353899.626896 1232284.626896 norm=35.721142 +1353899.695277 1227511.695277 norm=35.860842 +1353897.148136 1229594.148136 norm=36.769553 +1353901.904062 1231805.904062 norm=36.469165 +1353903.580935 1236300.580935 norm=37.722672 +1353904.804325 1227910.804325 norm=37.080992 +1353945.944478 1230095.944478 norm=36.606010 +1353920.454321 1230694.454321 norm=37.589892 +1353931.694793 1234430.694793 norm=37.161808 +1353956.436096 1233011.436096 norm=36.878178 +1353977.262051 1231712.262051 norm=36.565011 +1353973.306255 1228802.306255 norm=35.832946 +1354038.154001 1239114.154001 norm=36.606010 +1353981.048471 1231230.048471 norm=36.728735 +1354042.109170 1232450.109170 norm=35.860842 +1354022.848147 1224975.848147 norm=36.783148 +1354026.726133 1232358.726133 norm=36.097091 +1354047.284239 1227118.284239 norm=36.823905 +1354051.951527 1233365.951527 norm=36.482873 +1354069.654700 1231061.654700 norm=36.796739 +1354065.343116 1234036.343116 norm=36.864617 +1354071.685124 1229316.685124 norm=36.441734 +1354121.702136 1234720.702136 norm=36.013886 +1354106.158541 1227461.158541 norm=36.864617 +1354119.383372 1237082.383372 norm=36.069378 +1354122.970548 1228550.970548 norm=36.414283 +1354146.950671 1233838.950671 norm=36.469165 +1354168.536018 1229942.536018 norm=35.707142 +1354188.383630 1237270.383630 norm=35.496479 +1354177.725979 1231164.725979 norm=36.249138 +1354190.318005 1230527.318005 norm=35.608988 +1354189.839300 1230575.839300 norm=37.188708 +1354193.810457 1235658.810457 norm=37.416574 +1354187.163578 1231460.163578 norm=36.592349 +1354227.738402 1228645.738402 norm=35.916570 +1354235.476665 1229637.476665 norm=36.878178 +1354243.401568 1236243.401568 norm=36.469165 +1354235.387994 1231878.387994 norm=37.040518 +1354246.087598 1231487.087598 norm=35.930488 +1354287.559957 1228985.559957 norm=35.888717 +1354285.416349 1234780.416349 norm=37.175261 +1354271.946803 1233004.946803 norm=37.349699 +1354277.571022 1234848.571022 norm=36.972963 +1354310.892001 1230807.892001 norm=37.242449 +1354303.208407 1233803.208407 norm=36.878178 +1354332.744262 1229853.744262 norm=37.148351 +1354316.972325 1234778.972325 norm=38.483763 +1354314.960810 1228975.960810 norm=37.067506 +1354336.603150 1233755.603150 norm=37.429935 +1354360.496565 1231823.496565 norm=37.255872 +1354372.913458 1228333.913458 norm=36.249138 +1354386.179872 1230672.179872 norm=35.707142 +1354421.702422 1238857.702422 norm=36.166283 +1354392.801554 1228662.801554 norm=36.701499 +1354428.159939 1233458.159939 norm=35.721142 +1354440.035394 1230946.035394 norm=36.345564 +1354435.545768 1233386.545768 norm=36.000000 +1354458.184225 1230486.184225 norm=36.097091 +1354465.154845 1239176.154845 norm=36.152455 +1354475.103919 1233879.103919 norm=36.701499 +1354482.701086 1233437.701086 norm=36.891733 +1354473.787280 1231510.787280 norm=36.864617 +1354505.113255 1232827.113255 norm=36.414283 +1354486.247128 1230069.247128 norm=38.105118 +1354502.033528 1238480.033528 norm=37.107951 +1354495.970133 1229776.970133 norm=37.669616 +1354523.281187 1232974.281187 norm=36.769553 +1354542.971463 1234391.971463 norm=36.235342 +1354570.529280 1234119.529280 norm=36.027767 +1354564.393774 1227604.393774 norm=37.483330 +1354572.424904 1233126.424904 norm=36.138622 +1354587.997042 1228578.997042 norm=37.080992 +1354588.939236 1235445.939236 norm=37.282704 +1354596.704333 1235212.704333 norm=36.646964 +1354632.466888 1230736.466888 norm=36.041643 +1354637.924062 1225959.924062 norm=36.482873 +1354640.821883 1238072.821883 norm=37.336309 +1354621.455023 1232278.455023 norm=37.429935 +1354663.245628 1233891.245628 norm=36.932371 +1354677.265940 1225450.265940 norm=37.107951 +1354663.422453 1238063.422453 norm=36.441734 +1354700.544043 1230723.544043 norm=36.783148 +1354689.774340 1235043.774340 norm=36.905284 +1354698.610441 1230212.610441 norm=36.110940 +1354722.057845 1234809.057845 norm=37.309516 +1354705.705550 1230312.705550 norm=37.175261 +1354732.083841 1234471.083841 norm=37.549967 +1354715.010822 1230680.010822 norm=38.444766 +1354729.611137 1234770.611137 norm=37.094474 +1354752.608074 1228955.608074 norm=37.148351 +1354776.567204 1232472.567204 norm=37.363083 +1354772.261252 1230800.261252 norm=36.551334 +1354821.027283 1232344.027283 norm=36.193922 +1354798.417603 1232547.417603 norm=36.851052 +1354802.437553 1232805.437553 norm=36.482873 +1354829.026891 1233776.026891 norm=36.986484 +1354828.874218 1234728.874218 norm=36.373067 +1354860.680576 1231051.680576 norm=36.455452 +1354866.362467 1234850.362467 norm=36.646964 +1354855.104858 1232665.104858 norm=38.144462 +1354850.477004 1236011.477004 norm=37.148351 +1354875.304690 1231323.304690 norm=37.067506 +1354879.378682 1235331.378682 norm=37.134889 +1354896.195284 1231979.195284 norm=36.551334 +1354922.108092 1234299.108092 norm=36.578682 +1354925.282035 1228594.282035 norm=36.041643 +1354953.866169 1234419.866169 norm=36.537652 +1354926.840198 1235155.840198 norm=37.309516 +1354944.442950 1235434.442950 norm=36.469165 +1354963.278343 1232759.278343 norm=36.428011 +1354989.079613 1235113.079613 norm=36.124784 +1354997.826751 1232348.826751 norm=36.823905 +1354998.138534 1235420.138534 norm=36.510273 +1355012.884119 1232130.884119 norm=36.728735 +1355007.803506 1235540.803506 norm=36.715120 +1355015.413470 1226503.413470 norm=37.403208 +1355029.876637 1232235.876637 norm=37.202150 +1355035.617564 1231959.617564 norm=36.537652 +1355077.984602 1234367.984602 norm=36.510273 +1355058.979306 1227335.979306 norm=36.386811 +1355086.142739 1235880.142739 norm=37.161808 +1355062.208064 1233105.208064 norm=38.288379 +1355077.688470 1239393.688470 norm=37.000000 +1355089.874350 1233017.874350 norm=37.349699 +1355126.984759 1235061.984759 norm=36.055513 +1355110.022122 1229850.022122 norm=36.986484 +1355148.286627 1238844.286627 norm=36.510273 +1355125.803696 1232755.803696 norm=37.336309 +1355143.178309 1232004.178309 norm=36.823905 +1355156.391740 1234911.391740 norm=36.810325 +1355183.551692 1232885.551692 norm=37.376463 +1355155.208951 1233730.208951 norm=36.972963 +1355215.303267 1231371.303267 norm=36.482873 +1355205.663880 1230166.663880 norm=36.674242 +1355228.845525 1232650.845525 norm=36.304270 +1355220.256984 1228540.256984 norm=37.403208 +1355219.578131 1238391.578131 norm=36.851052 +1355248.960338 1230755.960338 norm=36.646964 +1355267.842994 1236477.842994 norm=36.373067 +1355266.638961 1229462.638961 norm=37.762415 +1355262.616962 1234862.616962 norm=37.269290 +1355259.348095 1229918.348095 norm=37.496667 +1355287.907488 1233852.907488 norm=36.810325 +1355301.058943 1235482.058943 norm=37.282704 +1355309.350817 1235838.350817 norm=36.864617 +1355305.973546 1233306.973546 norm=36.769553 +1355344.757043 1230802.757043 norm=36.986484 +1355315.841694 1235079.841694 norm=37.934153 +1355352.192223 1235137.192223 norm=36.041643 +1355372.017173 1235142.017173 norm=36.905284 +1355352.249589 1233337.249589 norm=36.469165 +1355397.494850 1225964.494850 norm=36.823905 +1355404.159357 1237602.159357 norm=35.524639 +1355419.400542 1229435.400542 norm=36.537652 +1355426.901161 1235558.901161 norm=36.386811 +1355416.737440 1231289.737440 norm=37.322915 +1355441.327926 1235732.327926 norm=36.428011 +1355439.631393 1228211.631393 norm=37.576588 +1355431.234913 1239596.234913 norm=37.363083 +1355436.034837 1229945.034837 norm=36.742346 +1355480.656505 1231009.656505 norm=37.054015 +1355469.553520 1228245.553520 norm=36.810325 +1355493.111690 1239645.111690 norm=35.888717 +1355515.646317 1234024.646317 norm=37.282704 +1355499.911511 1233646.911511 norm=36.235342 +1355545.690721 1230764.690721 norm=35.972211 +1355544.910345 1236777.910345 norm=36.510273 +1355534.754121 1232841.754121 norm=37.296112 +1355546.346105 1237535.346105 norm=36.959437 +1355567.104530 1237485.104530 norm=36.769553 +1355573.488734 1233979.488734 norm=36.959437 +1355566.484675 1230621.484675 norm=37.709415 +1355579.784727 1235944.784727 norm=36.606010 +1355597.384219 1229919.384219 norm=36.482873 +1355604.755157 1241194.755157 norm=36.592349 +1355635.795920 1227884.795920 norm=37.000000 +1355598.264007 1237681.264007 norm=38.105118 +1355633.142433 1231935.142433 norm=37.788887 +1355616.366011 1238246.366011 norm=37.269290 +1355662.720397 1235008.720397 norm=36.400549 +1355664.059895 1233783.059895 norm=37.775654 +1355657.687043 1235640.687043 norm=37.013511 +1355680.017603 1233372.017603 norm=36.742346 +1355709.628328 1229536.628328 norm=36.715120 +1355718.820325 1234135.820325 norm=35.594943 +1355749.706574 1227867.706574 norm=36.152455 +1355733.492291 1233803.492291 norm=35.972211 +1355762.912922 1236130.912922 norm=36.633318 +1355751.734741 1235005.734741 norm=36.221541 +1355754.751505 1231566.751505 norm=36.715120 +1355783.409536 1235228.409536 norm=37.403208 +1355763.795379 1231834.795379 norm=37.067506 +1355797.804092 1237264.804092 norm=36.918830 +1355789.478138 1233948.478138 norm=37.709415 +1355769.170929 1232334.170929 norm=37.643060 +1355818.913203 1235111.913203 norm=37.536649 +1355809.164796 1230770.164796 norm=37.483330 +1355825.933828 1231796.933828 norm=37.080992 +1355830.218117 1233679.218117 norm=37.080992 +1355853.147723 1234911.147723 norm=36.986484 +1355871.476402 1237583.476402 norm=36.537652 +1355876.184684 1230632.184684 norm=37.416574 +1355870.974706 1235275.974706 norm=37.563280 +1355885.581125 1229388.581125 norm=36.441734 +1355894.749450 1240311.749450 norm=37.309516 +1355916.170813 1232162.170813 norm=36.972963 +1355921.994954 1239857.994954 norm=36.687873 +1355956.492917 1233445.492917 norm=35.496479 +1355976.291195 1230411.291195 norm=36.152455 +1355955.599574 1235870.599574 norm=36.918830 +1355955.552877 1231284.552877 norm=37.121422 +1355969.420770 1230258.420770 norm=37.389838 +1355970.606586 1234162.606586 norm=37.523326 +1355981.316381 1235435.316382 norm=36.469165 +1356013.958220 1236483.958220 norm=37.363083 +1355998.169092 1232092.169092 norm=38.600518 +1355985.981342 1237487.981342 norm=37.349699 +1356039.865701 1230407.865701 norm=37.040518 +1356038.716017 1234764.716017 norm=36.945906 +1356055.503685 1230997.503685 norm=36.783148 +1356054.129577 1232454.129577 norm=36.837481 +1356099.883506 1228964.883506 norm=35.888717 +1356096.564657 1239663.564657 norm=37.161808 +1356078.632776 1233923.632776 norm=36.878178 +1356126.960591 1238697.960591 norm=36.041643 +1356115.174782 1225565.174782 norm=36.837481 +1356120.872816 1236375.872816 norm=36.606010 +1356145.152828 1230929.152828 norm=35.623026 +1356168.716630 1239148.716630 norm=36.193922 +1356142.766774 1233536.766774 norm=37.255872 +1356165.811020 1239224.811020 norm=36.565011 +1356172.444793 1226924.444793 norm=37.416574 +1356175.038045 1239232.038045 norm=36.701499 +1356191.487391 1232414.487391 norm=36.851052 +1356191.846100 1232799.846100 norm=38.236109 +1356197.827486 1233207.827486 norm=37.483330 +1356213.761525 1235537.761525 norm=37.134889 +1356222.094732 1234076.094732 norm=37.027017 +1356242.190348 1232792.190348 norm=36.986484 +1356251.678245 1230835.678245 norm=37.027017 +1356258.985585 1230442.985585 norm=37.000000 +1356278.942709 1228560.942709 norm=36.606010 +1356280.297578 1234493.297578 norm=36.701499 +1356298.084680 1238650.084680 norm=36.083237 +1356337.639591 1236478.639591 norm=35.958309 +1356321.301946 1232045.301946 norm=37.000000 +1356325.978886 1233215.978886 norm=36.986484 +1356341.118898 1232891.118898 norm=36.249138 +1356350.907039 1235004.907039 norm=36.482873 +1356356.834203 1230938.834203 norm=37.054015 +1356369.794837 1237085.794837 norm=36.592349 +1356382.766137 1232309.766137 norm=37.080992 +1356369.012181 1231063.012181 norm=37.242449 +1356382.157181 1236006.157181 norm=36.660606 +1356411.864925 1234494.864925 norm=37.134889 +1356415.114665 1234671.114665 norm=37.134889 +1356407.208833 1231791.208833 norm=37.309516 +1356415.317269 1235347.317269 norm=37.643060 +1356427.572293 1239814.572293 norm=37.629775 +1356433.641470 1233334.641470 norm=36.400549 +1356480.220436 1237439.220436 norm=36.482873 +1356469.524772 1226050.524772 norm=37.509999 +1356473.318505 1236518.318505 norm=36.083237 +1356521.775460 1239079.775460 norm=35.721142 +1356511.772741 1234879.772741 norm=36.235342 +1356529.008788 1232637.008788 norm=36.565011 +1356522.972543 1233733.972543 norm=36.660606 +1356528.429140 1233552.429140 norm=38.039453 +1356515.266811 1239459.266811 norm=37.828561 +1356538.806716 1233774.806716 norm=37.107951 +1356558.332220 1233126.332220 norm=37.429935 +1356556.547901 1235175.547901 norm=37.363083 +1356572.759993 1231201.759993 norm=36.932371 +1356581.893078 1235499.893078 norm=36.428011 +1356614.557570 1236623.557570 norm=37.656341 +1356582.042496 1232301.042496 norm=36.414283 +1356635.302635 1233216.302635 norm=37.202150 +1356622.780122 1234494.780122 norm=35.608988 +1356672.318396 1238266.318396 norm=36.373067 +1356645.488528 1237753.488528 norm=36.469165 +1356666.436976 1235213.436976 norm=38.118237 +1356627.870488 1231829.870488 norm=37.229021 +1356685.234607 1235660.234607 norm=35.707142 +1356728.036438 1240171.036438 norm=36.891733 +1356683.071173 1227243.071173 norm=37.121422 +1356703.337698 1239170.337698 norm=37.054015 +1356708.205144 1232716.205144 norm=37.121422 +1356717.427235 1233914.427235 norm=36.276714 +1356764.153193 1239328.153193 norm=35.777088 +1356750.278390 1229283.278390 norm=36.837481 +1356760.622800 1236678.622800 norm=37.188708 +1356775.403471 1234353.403471 norm=36.262929 +1356779.170323 1234631.170323 norm=37.589892 +1356773.174108 1233980.174108 norm=36.837481 +1356791.017688 1233706.017688 norm=37.161808 +1356799.114993 1231115.114993 norm=37.403208 +1356811.121383 1240214.121383 norm=37.363083 +1356827.407406 1230582.407406 norm=36.235342 +1356855.804664 1238061.804664 norm=36.180105 +1356863.000983 1228826.000983 norm=36.878178 +1356850.531949 1236946.531949 norm=36.986484 +1356863.122776 1231178.122776 norm=37.868192 +1356863.045389 1237774.045389 norm=37.815341 +1356864.607398 1232603.607398 norm=37.000000 +1356901.219102 1238054.219102 norm=36.769553 +1356885.114688 1229455.114688 norm=36.097091 +1356949.262027 1235124.262027 norm=36.152455 +1356916.285143 1235990.285143 norm=36.769553 +1356964.634121 1234221.634121 norm=35.496479 +1356978.451099 1230095.451099 norm=36.345564 +1356954.039806 1234015.039806 norm=37.027017 +1356952.309230 1237291.309230 norm=37.603191 +1356961.174276 1236902.174276 norm=37.722672 +1356960.016152 1231762.016152 norm=38.026307 +1356983.847105 1235303.847105 norm=37.376463 +1356991.254184 1233670.254184 norm=36.810325 +1357027.313023 1235823.313023 norm=37.094474 +1357024.941593 1233492.941593 norm=36.469165 +1357032.940248 1234396.940248 norm=37.107951 +1357035.554402 1237385.554402 norm=36.633318 +1357066.553361 1232536.553361 norm=36.755952 +1357044.703984 1232881.703984 norm=36.755952 +1357082.541835 1231852.541835 norm=37.000000 +1357087.350034 1239410.350034 norm=37.027017 +1357096.346543 1232577.346543 norm=37.282704 +1357088.449189 1236353.449189 norm=37.788887 +1357083.758063 1236933.758063 norm=37.483330 +1357110.332116 1238270.332116 norm=37.907783 +1357110.500956 1236967.500956 norm=38.065733 +1357110.367158 1232691.367158 norm=37.456642 +1357154.252163 1236493.252163 norm=37.161808 +1357167.658665 1234026.658665 norm=36.619667 +1357180.271847 1234778.271847 norm=35.916570 +1357198.103897 1232202.103897 norm=35.902646 +1357193.957756 1234665.957756 norm=36.646964 +1357213.061881 1234213.061881 norm=36.523965 +1357212.399019 1233510.399019 norm=35.958309 +1357242.308711 1233295.308711 norm=36.742346 +1357223.189360 1237873.189360 norm=36.851052 +1357256.022872 1236654.022872 norm=37.669616 +1357245.558034 1243074.558034 norm=37.027017 +1357251.260457 1235260.260457 norm=37.054015 +1357278.428882 1233167.428882 norm=36.207734 +1357299.229022 1233162.229022 norm=37.080992 +1357279.313244 1232170.313244 norm=36.769553 +1357297.108241 1237615.108241 norm=36.959437 +1357290.254697 1236793.254697 norm=36.510273 +1357311.271776 1232792.271776 norm=38.301436 +1357295.143748 1234455.143748 norm=38.301436 +1357326.455882 1237415.455882 norm=36.565011 +1357359.654871 1236267.654871 norm=36.496575 +1357347.246659 1236308.246659 norm=37.389838 +1357349.455487 1234835.455487 norm=35.958309 +1357409.922926 1232279.922926 norm=35.958309 +1357378.165761 1236295.165761 norm=37.269290 +1357383.947518 1236483.947518 norm=37.854986 +1357367.728830 1238005.728830 norm=37.523326 +1357407.060511 1231445.060511 norm=36.592349 +1357447.825082 1236976.825082 norm=36.373067 +1357422.013211 1233639.013211 norm=37.536649 +1357451.388141 1236026.388141 norm=36.221541 +1357453.241944 1234032.241944 norm=37.040518 +1357456.571071 1236739.571071 norm=36.986484 +1357472.304162 1237548.304162 norm=37.040518 +1357482.168920 1232990.168920 norm=36.290495 +1357490.458621 1235373.458621 norm=36.633318 +1357517.679626 1234186.679626 norm=37.629775 +1357492.251011 1234700.251011 norm=37.148351 +1357530.014787 1236499.014787 norm=36.715120 +1357521.537882 1230917.537882 norm=37.509999 +1357525.092404 1234922.092404 norm=37.107951 +1357536.863419 1234329.863419 norm=37.134889 +1357576.070726 1233271.070726 norm=37.175261 +1357570.569721 1237285.569721 norm=36.769553 +1357575.472113 1231493.472113 norm=36.823905 +1357588.730008 1233818.730008 norm=37.576588 +1357585.240005 1233469.240005 norm=37.215588 +1357609.671024 1232013.671024 norm=37.027017 +1357624.708561 1242217.708561 norm=36.290495 +1357633.232920 1232397.232920 norm=36.124784 +1357662.318329 1237118.318329 norm=35.944402 +1357655.668067 1233154.668067 norm=36.482873 +1357675.477754 1236915.477754 norm=36.837481 +1357670.578768 1239525.578768 norm=37.549967 +1357645.626763 1237636.626763 norm=37.947332 +1357665.805954 1240102.805954 norm=37.363083 +1357710.143299 1235224.143299 norm=37.027017 +1357692.810811 1231125.810811 norm=36.235342 +1357744.287019 1234407.287019 norm=37.121422 +1357707.747388 1237368.747388 norm=37.121422 +1357724.828094 1239823.828094 norm=36.742346 +1357767.105356 1233075.105356 norm=35.832946 +1357774.767167 1238784.767167 norm=36.097091 +1357757.561689 1229808.561689 norm=36.166283 +1357793.066553 1240279.066553 norm=36.235342 +1357790.634295 1232176.634295 norm=36.027767 +1357813.453231 1238268.453231 norm=36.687873 +1357798.944391 1239190.944391 norm=37.067506 +1357806.707592 1234087.707592 norm=37.000000 +1357838.001432 1235249.001432 norm=35.818989 +1357860.357630 1235763.357630 norm=36.537652 +1357853.294960 1238604.294960 norm=36.796739 +1357842.326524 1237536.326524 norm=36.986484 +1357867.068555 1230932.068555 norm=36.986484 +1357854.709006 1239715.709006 norm=37.802116 +1357869.089348 1237911.089348 norm=36.537652 +1357914.893069 1231812.893069 norm=36.290495 +1357908.258574 1237603.258574 norm=36.565011 +1357912.687743 1236804.687743 norm=36.455452 +1357919.655484 1240345.655484 norm=36.523965 +1357955.856376 1240644.856376 norm=36.742346 +1357933.777860 1228788.777860 norm=36.687873 +1357946.703454 1235628.703454 norm=36.083237 +1357974.783369 1233962.783369 norm=35.972211 +1357983.277697 1240374.277697 norm=36.469165 +1357969.910063 1233474.910063 norm=36.972963 +1357988.452207 1238773.452207 norm=36.674242 +1358004.615045 1230482.615045 norm=36.166283 +1358011.836331 1238341.836331 norm=37.549967 +1357982.056656 1235960.056656 norm=37.416574 +1358024.286216 1233270.286216 norm=37.242449 +1358042.833543 1235141.833543 norm=37.040518 +1358028.245470 1239332.245470 norm=36.837481 +1358053.030320 1234258.030320 norm=37.536649 +1358051.482904 1242797.482904 norm=37.215588 +1358057.470559 1231868.470559 norm=36.715120 +1358074.869896 1245018.869896 norm=36.891733 +1358106.732538 1235427.732538 norm=36.755952 +1358096.277425 1238154.277425 norm=37.309516 +1358101.575755 1232466.575755 norm=36.878178 +1358111.241760 1242128.241760 norm=37.616486 +1358128.631259 1231618.631259 norm=36.687873 +1358152.048037 1233658.048037 norm=35.874782 +1358166.340194 1234752.340194 norm=36.276714 +1358174.825055 1238184.825055 norm=36.097091 +1358167.307910 1235144.307910 norm=36.769553 +1358180.955498 1236691.955498 norm=36.918830 +1358179.718388 1236176.718388 norm=37.735925 +1358165.209590 1236539.209590 norm=37.296112 +1358215.828457 1234103.828457 norm=36.166283 +1358224.740772 1237184.740772 norm=36.851052 +1358217.215689 1235942.215689 norm=37.175261 +1358234.720205 1241734.720205 norm=37.749172 +1358217.762269 1235320.762269 norm=38.275318 +1358231.670402 1240110.670402 norm=37.161808 +1358283.492569 1237058.492569 norm=35.874782 +1358301.754707 1243126.754707 norm=35.679126 +1358302.068989 1232871.068989 norm=37.349699 +1358286.285346 1238877.285346 norm=37.336309 +1358281.241679 1231710.241679 norm=36.606010 +1358314.674170 1239207.674170 norm=36.523965 +1358333.381686 1235064.381686 norm=36.304270 +1358328.132631 1239875.132631 norm=36.796739 +1358335.200058 1229438.200058 norm=36.878178 +1358363.013588 1237185.013588 norm=37.389838 +1358351.429966 1239860.429966 norm=36.166283 +1358364.768712 1235599.768712 norm=36.469165 +1358394.505074 1238923.505074 norm=36.373067 +1358408.270381 1235923.270381 norm=36.221541 +1358408.300750 1233184.300750 norm=36.728735 +1358417.122470 1241199.122470 norm=37.107951 +1358402.602772 1236892.602772 norm=36.414283 +1358431.397072 1237044.397072 norm=36.851052 +1358437.583372 1238969.583372 norm=37.000000 +1358454.914843 1238299.914843 norm=37.215588 +1358430.447478 1234676.447478 norm=37.416574 +1358461.784730 1237274.784730 norm=36.742346 +1358473.664284 1238758.664284 norm=37.080992 +1358492.665527 1235829.665527 norm=36.551334 +1358495.748907 1237983.748907 norm=36.551334 +1358506.855591 1235483.855591 norm=36.318040 +1358530.575273 1236109.575273 norm=34.928498 +1358565.601003 1237997.601003 norm=36.000000 +1358540.960690 1237080.960690 norm=36.769553 +1358552.546012 1240550.546012 norm=37.000000 +1358536.840337 1237639.840337 norm=36.318040 +1358558.510297 1240225.510297 norm=36.619667 +1358578.933199 1227214.933199 norm=35.693137 +1358593.734351 1245360.734351 norm=36.796739 +1358594.872018 1233115.872018 norm=37.107951 +1358581.222714 1243146.222714 norm=37.296112 +1358606.128522 1232482.128522 norm=37.121422 +1358623.551007 1238547.551007 norm=36.823905 +1358622.302909 1236773.302909 norm=36.304270 +1358650.219255 1237148.219255 norm=37.403208 +1358635.915125 1241186.915125 norm=36.235342 +1358673.353268 1232913.353268 norm=36.180105 +1358671.539073 1238846.539073 norm=36.851052 +1358701.739148 1236083.739148 norm=36.249138 +1358683.705091 1235009.705091 norm=36.013886 +1358703.470645 1239130.470645 norm=36.110940 +1358740.197668 1235063.197668 norm=36.496575 +1358712.483789 1239644.483789 norm=37.161808 +1358731.791563 1237206.791563 norm=37.080992 +1358732.060936 1236425.060936 norm=37.107951 +1358744.171828 1235988.171828 norm=38.223030 +1358710.631572 1234629.631572 norm=36.523965 +1358783.879402 1237225.879402 norm=37.094474 +1358769.238740 1237108.238740 norm=36.455452 +1358799.234704 1236017.234704 norm=36.180105 +1358811.593652 1235372.593652 norm=37.040518 +1358776.602511 1235168.602511 norm=37.013511 +1358811.589882 1237721.589882 norm=36.276714 +1358830.002947 1239637.002947 norm=36.455452 +1358845.404859 1234925.404859 norm=36.318040 +1358837.889336 1239427.889336 norm=37.349699 +1358844.398473 1231605.398473 norm=37.536649 +1358847.115150 1238621.115150 norm=36.359318 +1358883.999631 1239770.999631 norm=36.945906 +1358893.691242 1243500.691242 norm=35.665109 +1358918.980169 1236210.980169 norm=35.284558 +1358920.946208 1235560.946208 norm=36.041643 +1358926.301294 1238145.301294 norm=36.769553 +1358913.083387 1239690.083387 norm=36.918830 +1358925.421328 1234508.421328 norm=36.537652 +1358937.622066 1238506.622066 norm=37.363083 +1358932.696329 1234783.696329 norm=36.783148 +1358943.876436 1237180.876436 norm=37.215588 +1358976.363632 1238527.363632 norm=36.290495 +1358963.885445 1233405.885445 norm=37.215588 +1358972.279645 1237600.279645 norm=37.616486 +1358984.031603 1232136.031603 norm=36.166283 +1359020.565156 1235284.565156 norm=36.728735 +1358999.683194 1240846.683194 norm=36.864617 +1359014.797311 1236557.797311 norm=36.796739 +1359040.249190 1238290.249190 norm=36.565011 +1359054.115605 1232410.115605 norm=36.441734 +1359045.360081 1238921.360081 norm=36.959437 +1359062.142961 1241009.142961 norm=36.304270 +1359074.589647 1238057.589647 norm=36.166283 +1359095.462840 1240439.462840 norm=36.905284 +1359089.253882 1235368.253882 norm=36.373067 +1359108.186078 1237368.186078 norm=36.455452 +1359122.670049 1240784.670049 norm=36.013886 +1359119.750988 1239308.750988 norm=36.097091 +1359143.694115 1239153.694115 norm=36.606010 +1359137.152576 1232637.152576 norm=36.193922 +1359148.166153 1234470.166153 norm=37.349699 +1359149.919047 1238581.919047 norm=36.083237 +1359197.610283 1232087.610283 norm=35.930488 +1359190.252433 1239312.252433 norm=36.055513 +1359189.367086 1235770.367086 norm=37.322915 +1359181.950636 1243429.950636 norm=36.551334 +1359216.016371 1239435.016371 norm=35.623026 +1359234.606960 1237341.606960 norm=35.958309 +1359249.158757 1238769.158757 norm=36.069378 +1359226.318572 1234457.318572 norm=35.749126 +1359304.694004 1240355.694004 norm=35.623026 +1359260.286759 1235458.286759 norm=36.345564 +1359265.369574 1238455.369574 norm=37.080992 +1359237.410340 1241380.410340 norm=37.389838 +1359290.230453 1236855.230453 norm=37.894591 +1359258.046734 1239003.046734 norm=37.134889 +1359304.153096 1235160.153096 norm=37.483330 +1359290.195571 1238046.195571 norm=37.282704 +1359304.273693 1237250.273693 norm=37.960506 +1359301.901359 1234499.901359 norm=36.441734 +1359345.407847 1236936.407847 norm=36.386811 +1359365.486602 1240770.486602 norm=36.027767 +1359371.680978 1239257.680978 norm=35.972211 +1359374.702323 1237613.702323 norm=37.013511 +1359375.066120 1235856.066120 norm=36.400549 +1359383.838810 1239445.838810 norm=36.304270 +1359409.266307 1239394.266307 norm=36.138622 +1359402.989763 1238718.989763 norm=36.660606 +1359404.304172 1235972.304172 norm=36.069378 +1359452.588033 1235490.588033 norm=35.930488 +1359443.450636 1243796.450636 norm=35.693137 +1359455.708455 1239141.708455 norm=36.041643 +1359458.699566 1238277.699566 norm=35.608988 +1359487.846223 1234432.846223 norm=36.687873 +1359449.560847 1234006.560847 norm=35.749126 +1359520.887947 1242176.887947 norm=36.606010 +1359483.692100 1235702.692100 norm=37.067506 +1359501.718809 1240479.718809 norm=36.152455 +1359495.961098 1235426.961098 norm=36.810325 +1359512.502844 1235882.502844 norm=37.523326 +1359504.872135 1244744.872135 norm=37.134889 +1359528.810689 1237142.810689 norm=37.040518 +1359526.646053 1240770.646053 norm=37.616486 +1359540.318844 1237464.318844 norm=37.148351 +1359565.710916 1233286.710916 norm=36.441734 +1359576.648778 1238707.648778 norm=36.905284 +1359578.463019 1240735.463019 norm=37.148351 +1359584.040615 1236300.040615 norm=36.097091 +1359635.899868 1241328.899868 norm=35.085610 +1359626.862570 1236755.862570 norm=36.551334 +1359596.600525 1235827.600525 norm=36.986484 +1359621.575279 1239370.575279 norm=36.469165 +1359665.686700 1238886.686700 norm=35.411862 +1359664.633029 1236836.633029 norm=35.777088 +1359677.615394 1240539.615394 norm=36.386811 +1359675.389988 1238178.389988 norm=35.468296 +1359722.710066 1240782.710066 norm=36.592349 +1359658.128602 1235080.128602 norm=36.878178 +1359712.926719 1233832.926719 norm=37.309516 +1359681.911940 1241875.911940 norm=37.509999 +1359714.532663 1240901.532663 norm=37.894591 +1359709.477052 1240764.477052 norm=36.565011 +1359742.924933 1235938.924933 norm=36.878178 +1359738.469628 1237312.469628 norm=35.440090 +1359802.808261 1239355.808261 norm=35.874782 +1359748.001691 1237542.001691 norm=36.331804 +1359799.912670 1242163.912670 norm=36.851052 +1359771.640300 1236267.640300 norm=35.735137 +1359819.385419 1234404.385419 norm=36.606010 +1359785.330193 1244843.330193 norm=36.414283 +1359825.328060 1237061.328060 norm=36.304270 +1359827.801515 1243731.801515 norm=38.000000 +1359799.414494 1238652.414494 norm=37.309516 +1359845.158419 1234736.158419 norm=37.161808 +1359835.081123 1236616.081123 norm=36.878178 +1359846.131993 1238274.131993 norm=36.891733 +1359880.874872 1244233.874872 norm=35.972211 +1359880.927024 1239947.927024 norm=36.331804 +1359904.310706 1238343.310706 norm=36.837481 +1359882.013094 1240135.013094 norm=36.359318 +1359914.731243 1235461.731243 norm=36.262929 +1359908.081623 1239256.081623 norm=37.643060 +1359927.741894 1237566.741894 norm=35.791060 +1359945.517103 1237967.517103 norm=35.860842 +1359970.545236 1234769.545236 norm=35.185224 +1359957.068151 1242645.068151 norm=35.566838 +1359990.489291 1236313.489291 norm=35.369478 +1359997.932350 1238462.932350 norm=36.110940 +1359988.339360 1234854.339360 norm=37.229021 +1359999.110900 1243086.110900 norm=35.818989 +1359988.661957 1239872.661957 norm=36.959437 +1360017.177639 1240871.177639 norm=35.832946 +1360045.529834 1238441.529834 norm=35.369478 +1360038.498681 1235531.498681 norm=36.972963 +1360030.282430 1240496.282430 norm=36.619667 +1360045.362875 1238254.362875 norm=36.742346 +1360046.330297 1242119.330297 norm=37.255872 +1360047.742343 1236231.742343 norm=37.429935 +1360060.451913 1240705.451913 norm=37.483330 +1360054.192503 1234610.192503 norm=37.027017 +1360101.031275 1239652.031275 norm=36.619667 +1360106.997227 1236466.997227 norm=36.851052 +1360103.191837 1236579.191837 norm=36.262929 +1360122.357980 1242362.357980 norm=37.040518 +1360125.149931 1235957.149931 norm=36.660606 +1360133.216474 1240463.216474 norm=37.269290 +1360136.550844 1240318.550844 norm=36.578682 +1360175.294473 1241023.294473 norm=35.721142 +1360204.175849 1236246.175849 norm=35.128336 +1360205.706973 1245975.706973 norm=36.537652 +1360190.301929 1233206.301929 norm=35.594943 +1360214.045869 1237954.045869 norm=36.551334 +1360210.567228 1237936.567228 norm=36.027767 +1360219.224201 1241771.224201 norm=37.376463 +1360200.920734 1240070.920734 norm=37.603191 +1360238.940314 1240187.940314 norm=36.041643 +1360250.783790 1233813.783790 norm=37.067506 +1360245.427831 1242832.427831 norm=36.482873 +1360270.316003 1243124.316003 norm=36.578682 +1360246.919459 1241873.919459 norm=37.775654 +1360254.155916 1233469.155916 norm=37.107951 +1360286.466212 1245307.466212 norm=37.429935 +1360266.922693 1236806.922693 norm=37.682887 +1360301.806934 1241258.806934 norm=35.986108 +1360323.103326 1234512.103326 norm=36.755952 +1360334.035418 1238453.035418 norm=36.000000 +1360345.520378 1237547.520378 norm=36.152455 +1360370.472732 1243397.472732 norm=36.441734 +1360346.289825 1239075.289825 norm=36.837481 +1360360.739972 1242582.739972 norm=37.121422 +1360377.588574 1239969.588574 norm=36.249138 +1360376.756233 1241071.756233 norm=37.054015 +1360399.811123 1235881.811123 norm=36.124784 +1360407.544891 1238540.544891 norm=36.455452 +1360406.262261 1242466.262261 norm=36.386811 +1360428.972569 1238704.972569 norm=36.551334 +1360425.345425 1241891.345425 norm=37.027017 +1360437.747338 1237336.747338 norm=36.138622 +1360469.527036 1240404.527036 norm=36.304270 +1360457.757729 1236368.757729 norm=36.373067 +1360474.195568 1238775.195568 norm=36.069378 +1360487.685210 1242662.685210 norm=36.318040 +1360481.507720 1235913.507720 norm=36.523965 +1360515.558372 1240700.558372 norm=36.331804 +1360492.309382 1238914.309382 norm=36.276714 +1360529.394522 1241988.394522 norm=36.455452 +1360520.790191 1236508.790191 norm=36.959437 +1360537.003887 1243028.003887 norm=36.180105 +1360533.970031 1238547.970031 norm=36.606010 +1360563.950573 1241877.950573 norm=36.414283 +1360578.874997 1234452.874997 norm=36.837481 +1360560.879333 1241051.879333 norm=37.188708 +1360565.274258 1243176.274258 norm=36.755952 +1360615.048958 1239719.048958 norm=36.959437 +1360571.941254 1237848.941254 norm=37.215588 +1360598.063876 1237493.063876 norm=37.282704 +1360594.240315 1245300.240315 norm=37.000000 +1360628.192192 1239075.192192 norm=36.851052 +1360634.038445 1241212.038445 norm=35.972211 +1360659.609642 1238209.609642 norm=36.959437 +1360643.455273 1237626.455273 norm=36.837481 +1360644.784136 1242976.784136 norm=36.823905 +1360681.824852 1233922.824852 norm=35.623026 +1360709.268374 1241260.268374 norm=36.510273 +1360695.518764 1237790.518764 norm=36.138622 +1360728.402219 1239341.402219 norm=36.290495 +1360716.905318 1245487.905318 norm=36.619667 +1360724.081657 1237427.081657 norm=36.359318 +1360729.287426 1244278.287426 norm=36.619667 +1360746.850035 1235758.850035 norm=37.282704 +1360735.441187 1243685.441187 norm=36.578682 +1360776.054663 1238099.054663 norm=36.606010 +1360784.648502 1238116.648502 norm=35.679126 +1360805.270161 1236277.270161 norm=35.552778 +1360804.509425 1242680.509425 norm=36.304270 +1360781.938722 1243179.938722 norm=37.509999 +1360790.690096 1239517.690096 norm=36.331804 +1360825.349942 1243489.349942 norm=36.701499 +1360822.617550 1240076.617550 norm=36.796739 +1360824.599829 1235061.599829 norm=37.841776 +1360815.519289 1239014.519289 norm=36.918830 +1360852.839308 1239662.839308 norm=36.619667 +1360864.086450 1244546.086450 norm=36.646964 +1360858.571802 1235907.571802 norm=37.322915 +1360861.748491 1239863.748491 norm=36.633318 +1360899.093539 1240736.093539 norm=36.687873 +1360903.375050 1239181.375050 norm=37.067506 +1360883.687950 1243708.687950 norm=36.428011 +1360923.016218 1243336.016218 norm=36.345564 +1360930.958859 1242756.958859 norm=36.796739 +1360952.560908 1241137.560908 norm=35.369478 +1360935.210979 1245004.210979 norm=36.318040 +1360973.110104 1233413.110104 norm=35.679126 +1360982.358264 1237415.358264 norm=37.094474 +1360956.767227 1241137.767227 norm=36.633318 +1360974.350389 1236928.350389 norm=36.660606 +1360987.080992 1242636.080992 norm=35.860842 +1361023.810052 1243291.810052 norm=35.566838 +1360999.234661 1233675.234661 norm=37.242449 +1361026.395327 1241403.395327 norm=36.428011 +1361021.029328 1237949.029328 norm=36.551334 +1361060.943976 1245331.943976 norm=35.185224 +1361065.188214 1236290.188214 norm=36.055513 +1361084.988632 1243074.988632 norm=35.735137 +1361078.649083 1236936.649083 norm=35.156792 +1361102.685654 1241523.685654 norm=37.094474 +1361055.813115 1242103.813115 norm=37.148351 +1361084.069263 1237990.069263 norm=37.255872 +1361098.494310 1241171.494310 norm=36.400549 +1361113.719851 1241522.719851 norm=37.322915 +1361097.724515 1240225.724515 norm=37.788887 +1361114.909200 1246200.909200 norm=37.215588 +1361132.175983 1237599.175983 norm=36.851052 +1361142.764223 1240925.764223 norm=37.094474 +1361163.856884 1241096.856884 norm=36.565011 +1361168.775254 1242846.775254 norm=36.276714 +1361182.016324 1239558.016324 norm=34.770677 +1361225.299658 1241265.299658 norm=35.818989 +1361188.618589 1238176.618589 norm=36.945906 +1361195.207712 1242484.207712 norm=36.345564 +1361208.110070 1236625.110070 norm=35.944402 +1361247.625458 1237603.625458 norm=36.660606 +1361219.940447 1240473.940447 norm=37.215588 +1361243.656889 1246921.656889 norm=35.874782 +1361271.430163 1233576.430163 norm=36.041643 +1361270.561489 1242788.561489 norm=37.309516 +1361248.435782 1239417.435782 norm=36.905284 +1361291.611301 1244214.611301 norm=36.551334 +1361284.059910 1240238.059910 norm=36.633318 +1361316.970639 1245426.970639 norm=37.148351 +1361276.972761 1240502.972761 norm=37.296112 +1361310.374335 1239296.374335 norm=35.888717 +1361325.077370 1237061.077370 norm=36.110940 +1361354.797453 1244695.797453 norm=36.386811 +1361329.847522 1238061.847522 norm=36.221541 +1361372.015030 1238881.015030 norm=36.345564 +1361362.669521 1239354.669521 norm=35.735137 +1361379.083313 1243936.083313 norm=36.193922 +1361383.780885 1245222.780885 norm=37.121422 +1361379.223764 1234837.223764 norm=37.013511 +1361384.898861 1242183.898861 norm=35.916570 +1361432.097030 1240508.097030 norm=36.455452 +1361417.452358 1239367.452358 norm=35.916570 +1361451.999942 1236702.999942 norm=35.749126 +1361446.270434 1242058.270434 norm=36.496575 +1361447.045925 1238071.045925 norm=37.229021 +1361428.617561 1244780.617561 norm=37.363083 +1361461.558583 1237323.558583 norm=36.905284 +1361467.671546 1243569.671546 norm=37.040518 +1361460.167350 1239954.167350 norm=37.309516 +1361492.047797 1242963.047797 norm=37.013511 +1361493.181270 1239897.181270 norm=36.331804 +1361529.908854 1243531.908854 norm=35.972211 +1361528.224748 1238885.224748 norm=35.651087 +1361550.419913 1239219.419913 norm=36.138622 +1361541.179831 1244170.179831 norm=37.080992 +1361531.866007 1235622.866007 norm=37.080992 +1361540.219993 1244854.219993 norm=36.619667 +1361577.292385 1240368.292385 norm=35.958309 +1361578.133414 1239664.133414 norm=36.235342 +1361595.648655 1239462.648655 norm=36.097091 +1361582.657222 1236088.657222 norm=37.080992 +1361620.431454 1242315.431454 norm=36.124784 +1361616.288823 1235791.288823 norm=36.633318 +1361622.464331 1243726.464331 norm=35.958309 +1361631.239196 1242256.239196 norm=37.656341 +1361622.728524 1244512.728524 norm=36.878178 +1361645.784015 1240623.784015 norm=36.276714 +1361667.414165 1238822.414165 norm=35.818989 +1361672.313298 1243045.313298 norm=36.013886 +1361695.202810 1242871.202810 norm=36.083237 +1361696.891054 1240888.891054 norm=35.623026 +1361718.007331 1242055.007331 norm=35.679126 +1361719.276849 1238587.276849 norm=35.735137 +1361730.761762 1240413.761762 norm=36.249138 +1361730.947591 1238849.947591 norm=37.536649 +1361714.232809 1242147.232809 norm=36.891733 +1361741.216279 1238229.216279 norm=36.414283 +1361744.954460 1240487.954460 norm=37.669616 +1361732.578404 1238860.578404 norm=37.161808 +1361758.867358 1239734.867358 norm=36.345564 +1361808.497235 1241561.497235 norm=36.055513 +1361783.806095 1237948.806095 norm=36.510273 +1361809.559299 1243409.559299 norm=37.000000 +1361787.806740 1244294.806740 norm=36.606010 +1361835.087734 1240972.087734 norm=36.180105 +1361839.258053 1241737.258053 norm=35.958309 +1361856.291866 1244227.291866 norm=35.972211 +1361854.825017 1242611.825017 norm=36.687873 +1361848.775120 1239750.775120 norm=36.945906 +1361851.051473 1240477.051473 norm=37.336309 +1361858.083878 1237507.083878 norm=35.902646 +1361891.378156 1237889.378156 norm=36.878178 +1361896.753072 1242579.753072 norm=35.256205 +1361916.591925 1247304.591925 norm=35.972211 +1361913.217982 1239684.217982 norm=36.455452 +1361926.614354 1236084.614354 norm=36.441734 +1361929.834842 1241238.834842 norm=36.414283 +1361939.821142 1243812.821142 norm=36.701499 +1361933.319274 1240632.319274 norm=36.660606 +1361954.381789 1242879.381789 norm=36.083237 +1361974.149444 1237879.149444 norm=36.304270 +1361978.929007 1239042.929007 norm=36.207734 +1362004.052964 1241606.052964 norm=36.276714 +1361992.702144 1242631.702144 norm=35.958309 +1362000.750994 1241035.750994 norm=36.537652 +1362004.944308 1242313.944308 norm=36.674242 +1362022.672595 1241271.672595 norm=37.255872 +1362024.185551 1244130.185551 norm=36.769553 +1362019.130236 1240102.130236 norm=38.105118 +1362013.625924 1241244.625924 norm=37.894591 +1362040.739212 1238990.739212 norm=36.592349 +1362066.460523 1237736.460523 norm=36.565011 +1362093.048726 1245455.048726 norm=36.578682 +1362057.634776 1235802.634776 norm=37.483330 +1362072.909646 1240872.909646 norm=36.304270 +1362108.393559 1238402.393559 norm=36.441734 +1362106.999652 1239702.999652 norm=37.175261 +1362113.629001 1239872.629001 norm=36.400549 +1362136.766881 1241642.766881 norm=36.796739 +1362143.507708 1239543.507708 norm=36.262929 +1362142.251246 1242491.251246 norm=36.221541 +1362172.153470 1242507.153470 norm=36.331804 +1362162.369245 1242951.369245 norm=36.810325 +1362174.539855 1243220.539855 norm=36.864617 +1362179.785322 1238280.785322 norm=36.565011 +1362209.582469 1243187.582469 norm=35.538711 +1362225.067932 1238491.067932 norm=36.110940 +1362220.524180 1238392.524180 norm=36.851052 +1362203.934052 1241539.934052 norm=37.775654 +1362213.526523 1239332.526523 norm=36.276714 +1362242.554825 1237609.554825 norm=35.791060 +1362263.689844 1243282.689844 norm=36.592349 +1362248.896192 1242262.896192 norm=36.262929 +1362290.585398 1245874.585398 norm=36.069378 +1362260.231228 1242317.231228 norm=37.643060 +1362283.153793 1242187.153793 norm=35.846897 +1362291.116687 1240654.116687 norm=37.175261 +1362315.898776 1240608.898776 norm=36.345564 +1362319.273266 1246134.273266 norm=36.221541 +1362318.586634 1238364.586634 norm=37.349699 +1362334.126162 1241616.126162 norm=36.918830 +1362319.681128 1239715.681128 norm=37.000000 +1362348.495849 1241909.495849 norm=36.152455 +1362376.464067 1232663.464067 norm=36.304270 +1362371.885839 1241306.885839 norm=36.386811 +1362395.249643 1243044.249643 norm=36.551334 +1362382.816968 1241391.816968 norm=37.040518 +1362403.902490 1245009.902490 norm=36.152455 +1362407.348756 1243608.348756 norm=35.298725 +1362457.090466 1241867.090466 norm=35.496479 +1362443.910111 1238628.910111 norm=36.810325 +1362424.110075 1243740.110075 norm=36.138622 +1362441.493818 1242825.493818 norm=35.791060 +1362470.497348 1239117.497348 norm=36.715120 +1362460.749807 1245348.749807 norm=36.373067 +1362482.487275 1239241.487275 norm=35.763109 +1362491.171519 1244281.171519 norm=36.441734 +1362486.838461 1240361.838461 norm=36.660606 +1362499.268332 1239120.268332 norm=36.428011 +1362527.435934 1242927.435934 norm=36.496575 +1362507.177591 1241228.177591 norm=37.134889 +1362529.452883 1236078.452883 norm=36.565011 +1362529.708617 1242260.708617 norm=36.905284 +1362545.396794 1241520.396794 norm=36.769553 +1362548.204255 1241577.204255 norm=36.592349 +1362562.244842 1245952.244842 norm=36.755952 +1362568.657384 1240590.657384 norm=36.674242 +1362600.470291 1241667.470291 norm=35.482390 +1362596.915827 1241892.915827 norm=36.674242 +1362593.151106 1239914.151106 norm=36.097091 +1362614.782210 1243128.782210 norm=36.565011 +1362629.829827 1240098.829827 norm=35.312887 +1362650.522677 1243207.522677 norm=36.124784 +1362648.463081 1244036.463081 norm=36.166283 +1362657.209113 1241843.209113 norm=36.262929 +1362663.324030 1241299.324030 norm=35.916570 +1362664.666712 1241166.666712 norm=36.864617 +1362654.694324 1240894.694324 norm=37.255872 +1362675.106153 1240282.106153 norm=36.619667 +1362678.223551 1240928.223551 norm=36.959437 +1362697.849714 1240155.849714 norm=35.860842 +1362748.627995 1241879.627995 norm=35.185224 +1362739.138654 1244167.138654 norm=36.972963 +1362719.778230 1244736.778230 norm=35.888717 +1362750.070753 1239521.070753 norm=36.000000 +1362761.632583 1234808.632583 norm=35.930488 +1362778.524595 1247998.524595 norm=36.166283 +1362775.252502 1238771.252502 norm=36.400549 +1362765.683037 1242418.683037 norm=36.932371 +1362772.498369 1238431.498369 norm=37.349699 +1362785.386999 1246317.386999 norm=36.262929 +1362823.104550 1235137.104550 norm=36.207734 +1362816.394653 1245865.394653 norm=36.701499 +1362834.508825 1244066.508825 norm=35.679126 +1362818.431221 1240438.431221 norm=36.986484 +1362844.019259 1241350.019259 norm=37.960506 +1362826.038576 1235416.038576 norm=35.930488 +1362881.084273 1239125.084273 norm=35.972211 +1362862.838812 1242761.838812 norm=37.403208 +1362856.674241 1237785.674241 norm=36.345564 +1362894.656774 1245150.656774 norm=36.823905 +1362888.047238 1245072.047238 norm=36.441734 +1362916.597072 1243763.597072 norm=36.386811 +1362913.676571 1242258.676571 norm=36.097091 +1362923.061725 1240093.061725 norm=36.110940 +1362933.187697 1246660.187697 norm=36.318040 +1362943.516084 1238135.516084 norm=35.832946 +1362958.588088 1242224.588088 norm=36.864617 +1362946.334768 1241997.334768 norm=36.864617 +1362964.744943 1245436.744943 norm=36.221541 +1362983.309318 1243885.309318 norm=36.318040 +1362997.606994 1238146.606994 norm=35.651087 +1363011.756995 1240987.756995 norm=35.916570 +1363012.238397 1239621.238397 norm=35.749126 +1363024.026723 1245622.026723 norm=36.810325 +1363019.177579 1243442.177579 norm=36.646964 +1363034.058720 1238757.058720 norm=37.443290 +1363017.750550 1243592.750550 norm=36.755952 +1363043.639036 1237724.639036 norm=36.221541 +1363061.042822 1246514.042822 norm=36.359318 +1363074.779901 1239826.779901 norm=36.578682 +1363074.718210 1242759.718210 norm=37.336309 +1363068.641749 1238314.641749 norm=37.483330 +1363088.022055 1244369.022055 norm=36.166283 +1363106.086723 1240351.086723 norm=37.000000 +1363102.430559 1239794.430559 norm=35.874782 +1363148.580586 1243846.580586 norm=36.083237 +1363145.574832 1243894.574832 norm=36.276714 +1363131.202924 1240792.202924 norm=36.193922 +1363158.958055 1241396.958055 norm=35.777088 +1363179.916149 1246532.916149 norm=36.262929 +1363160.364142 1237921.364142 norm=36.373067 +1363190.064848 1250419.064848 norm=36.823905 +1363176.323512 1238086.323512 norm=36.565011 +1363193.043344 1243867.043344 norm=37.040518 +1363197.279658 1238111.279658 norm=36.537652 +1363227.875227 1245260.875227 norm=36.945906 +1363213.695687 1238341.695687 norm=36.331804 +1363233.567787 1240593.567787 norm=36.235342 +1363251.092433 1243304.092433 norm=36.455452 +1363256.576019 1244403.576019 norm=36.249138 +1363270.512814 1235636.512814 norm=36.069378 +1363264.890274 1246833.890274 norm=36.755952 +1363272.750088 1242165.750088 norm=36.619667 +1363275.028574 1242721.028574 norm=37.269290 +1363289.403226 1244700.403226 norm=37.148351 +1363302.751229 1242204.751229 norm=37.188708 +1363297.775634 1241890.775634 norm=37.040518 +1363315.738268 1240275.738268 norm=36.660606 +1363339.672618 1242817.672618 norm=36.400549 +1363330.395888 1239662.395888 norm=37.523326 +1363341.943492 1245175.943492 norm=35.679126 +1363380.943859 1243572.943859 norm=36.262929 +1363363.681187 1246859.681187 norm=36.646964 +1363378.173519 1242778.173519 norm=35.958309 +1363395.271028 1247443.271028 norm=36.674242 +1363389.757999 1231038.757999 norm=36.373067 +1363405.799746 1244544.799746 norm=35.972211 +1363411.238705 1240697.238705 norm=37.107951 +1363410.919655 1247669.919655 norm=36.166283 +1363441.728327 1244371.728327 norm=35.721142 +1363455.462102 1242885.462102 norm=35.440090 +1363457.130305 1240722.130305 norm=35.902646 +1363467.017802 1241969.017802 norm=36.715120 +1363462.030125 1240245.030125 norm=36.810325 +1363492.709468 1245997.709468 norm=35.482390 +1363510.273654 1240504.273654 norm=36.262929 +1363505.156081 1243746.156081 norm=36.262929 +1363500.780336 1239607.780336 norm=35.791060 +1363532.376102 1248516.376102 norm=36.441734 +1363505.647525 1242564.647525 norm=37.215588 +1363534.668916 1246132.668916 norm=36.138622 +1363539.863125 1242784.863125 norm=36.166283 +1363562.031276 1243300.031276 norm=36.537652 +1363559.791373 1238421.791373 norm=36.482873 +1363570.921654 1249491.921654 norm=36.578682 +1363573.921711 1238060.921711 norm=35.665109 +1363594.495344 1247185.495344 norm=36.619667 +1363592.214510 1235340.214510 norm=36.510273 +1363599.063928 1241260.063928 norm=36.482873 +1363608.324561 1247469.324561 norm=37.336309 +1363603.118577 1244631.118577 norm=36.083237 +1363646.211954 1239211.211954 norm=36.660606 +1363629.096379 1241236.096379 norm=36.180105 +1363666.186859 1245768.186859 norm=36.359318 +1363649.623587 1247916.623587 norm=35.832946 +1363682.950886 1241704.950886 norm=36.097091 +1363681.076164 1244370.076164 norm=36.304270 +1363669.318517 1240641.318517 norm=37.175261 +1363690.908576 1244306.908576 norm=35.566838 +1363729.504388 1241082.504388 norm=36.221541 +1363714.935913 1242526.935913 norm=35.832946 +1363729.406399 1241722.406399 norm=35.791060 +1363736.063689 1244027.063689 norm=37.000000 +1363721.673308 1238748.673308 norm=36.276714 +1363754.897529 1245759.897529 norm=36.290495 +1363767.416359 1241839.416359 norm=35.524639 +1363776.627362 1242513.627362 norm=35.777088 +1363783.496281 1243378.496281 norm=36.701499 +1363752.582249 1247455.582249 norm=36.687873 +1363792.571161 1242552.571161 norm=37.269290 +1363782.846434 1245566.846434 norm=35.355339 +1363820.879653 1239945.879653 norm=36.646964 +1363809.269156 1242777.269156 norm=36.400549 +1363825.904650 1243586.904650 norm=36.905284 +1363818.799852 1244209.799852 norm=37.656341 +1363827.435397 1242696.435397 norm=36.701499 +1363865.865717 1247619.865717 norm=36.796739 +1363851.511896 1239329.511896 norm=36.331804 +1363876.543770 1242425.543770 norm=36.864617 +1363879.615804 1243907.615804 norm=36.565011 +1363888.278538 1244159.278538 norm=36.207734 +1363903.734857 1241566.734857 norm=36.592349 +1363890.624898 1245117.624898 norm=36.728735 +1363936.979138 1243799.979138 norm=35.594943 +1363940.398330 1250766.398330 norm=37.175261 +1363902.016804 1239259.016804 norm=36.646964 +1363931.937449 1243048.937449 norm=36.262929 +1363943.201924 1235405.201924 norm=36.769553 +1363971.477704 1247109.477704 norm=36.606010 +1363975.908522 1240253.908522 norm=36.083237 +1363979.311526 1243477.311526 norm=36.304270 +1364005.948042 1241663.948042 norm=36.331804 +1364003.131100 1244502.131100 norm=35.482390 +1364032.467980 1243888.467980 norm=35.524639 +1364010.666049 1245234.666049 norm=36.180105 +1364037.193766 1239101.193766 norm=36.193922 +1364029.742833 1247337.742833 norm=36.055513 +1364052.697829 1239194.697829 norm=36.715120 +1364051.805895 1244347.805895 norm=36.932371 +1364043.821224 1243836.821224 norm=37.067506 +1364073.499460 1247099.499460 norm=35.972211 +1364081.171802 1239907.171802 norm=35.916570 +1364099.757377 1245606.757377 norm=36.674242 +1364098.752831 1243479.752831 norm=36.565011 +1364092.797344 1241933.797344 norm=35.735137 +1364143.304805 1247824.304805 norm=36.715120 +1364093.768946 1244919.768946 norm=36.482873 +1364162.384388 1240070.384388 norm=36.359318 +1364118.197480 1243906.197481 norm=37.416574 +1364155.231227 1242579.231227 norm=35.958309 +1364167.645831 1243496.645831 norm=36.496575 +1364175.182914 1239977.182914 norm=36.510273 +1364151.769935 1242448.769935 norm=37.696154 +1364177.445992 1242747.445992 norm=36.592349 +1364178.747656 1240969.747656 norm=37.067506 +1364197.252132 1245260.252132 norm=36.180105 +1364216.430256 1242429.430256 norm=35.580894 +1364242.692809 1246657.692809 norm=35.805028 +1364243.037348 1242113.037348 norm=36.606010 +1364228.857269 1248562.857269 norm=36.221541 +1364269.571563 1241739.571563 norm=35.242020 +1364269.708085 1250855.708085 norm=36.565011 +1364263.820165 1240393.820165 norm=36.083237 +1364280.575026 1245782.575026 norm=36.701499 +1364285.608584 1237379.608584 norm=35.986108 +1364303.916543 1244104.916543 norm=36.537652 +1364294.334173 1240833.334173 norm=36.796739 +1364306.204025 1244308.204025 norm=36.386811 +1364327.074318 1243947.074318 norm=36.510273 +1364320.922702 1246993.922702 norm=36.290495 +1364339.918186 1244629.918186 norm=35.791060 +1364369.389967 1245770.389967 norm=36.510273 +1364343.226121 1241607.226121 norm=36.755952 +1364358.556433 1245565.556433 norm=35.818989 +1364395.736763 1244406.736763 norm=35.860842 +1364386.389762 1245492.389762 norm=35.693137 +1364398.907734 1240010.907734 norm=36.878178 +1364393.199615 1246368.199615 norm=36.537652 +1364393.015919 1242737.015919 norm=36.124784 +1364439.606247 1243933.606247 norm=36.537652 +1364417.851512 1240881.851512 norm=36.578682 +1364437.462974 1246791.462974 norm=35.846897 +1364470.000928 1240880.000928 norm=35.958309 +1364458.696512 1241996.696512 norm=37.161808 +1364431.129114 1246735.129114 norm=37.161808 +1364487.481231 1245073.481231 norm=35.818989 +1364462.326262 1240076.326262 norm=36.041643 +1364509.867032 1249066.867032 norm=35.916570 +1364495.989035 1242872.989035 norm=36.496575 +1364496.524668 1248221.524668 norm=35.888717 +1364532.417080 1240314.417080 norm=35.958309 +1364533.391124 1246425.391124 norm=35.651087 +1364555.758562 1241757.758562 norm=36.000000 +1364554.290771 1246866.290771 norm=36.345564 +1364541.118340 1242680.118340 norm=36.055513 +1364569.066972 1248191.066972 norm=36.055513 +1364576.836022 1242370.836022 norm=36.428011 +1364580.171555 1245934.171555 norm=36.986484 +1364571.219995 1240221.219995 norm=36.373067 +1364598.101347 1247871.101347 norm=37.134889 +1364605.798341 1241371.798341 norm=35.693137 +1364629.404496 1248795.404496 norm=36.715120 +1364600.303806 1237693.303806 norm=37.523326 +1364618.719269 1247075.719269 norm=35.496479 +1364652.775629 1238576.775629 norm=35.608988 +1364669.537350 1248265.537350 norm=36.000000 +1364646.020188 1238930.020188 norm=36.359318 +1364674.997339 1244855.997339 norm=36.823905 +1364675.281216 1242930.281216 norm=36.193922 +1364687.256307 1242333.256307 norm=37.040518 +1364698.473457 1244269.473457 norm=35.874782 +1364717.690402 1244244.690402 norm=36.565011 +1364703.915646 1242591.915646 norm=36.986484 +1364714.181898 1245915.181898 norm=36.701499 +1364733.057520 1247847.057520 norm=36.013886 +1364749.234119 1242507.234119 norm=35.930488 +1364740.842031 1246401.842031 norm=35.749126 +1364784.029689 1246185.029689 norm=35.930488 +1364781.644223 1242907.644223 norm=36.523965 +1364751.166575 1242711.166575 norm=36.000000 +1364797.323072 1245769.323072 norm=35.242020 +1364805.376898 1242505.376898 norm=35.580894 +1364799.519587 1247790.519587 norm=36.138622 +1364803.370445 1245046.370445 norm=36.400549 +1364819.497693 1245302.497693 norm=36.013886 +1364850.889432 1244554.889432 norm=35.944402 +1364825.775800 1242482.775800 norm=36.386811 +1364841.536198 1246880.536198 norm=36.851052 +1364835.627789 1246310.627789 norm=36.069378 +1364876.003404 1245777.003404 norm=35.972211 +1364886.820226 1245189.820226 norm=35.707142 +1364883.921050 1242764.921050 norm=36.715120 +1364874.810987 1245278.810987 norm=36.097091 +1364905.713931 1247280.713931 norm=35.944402 +1364919.176417 1239677.176417 norm=36.428011 +1364903.888889 1246737.888889 norm=36.345564 +1364909.761150 1246185.761150 norm=36.537652 +1364923.848548 1247231.848548 norm=37.589892 +1364917.173353 1246733.173353 norm=37.229021 +1364935.374085 1246498.374085 norm=37.000000 +1364948.968787 1243042.968787 norm=36.687873 +1364965.101022 1246579.101022 norm=36.633318 +1364961.968592 1244649.968592 norm=36.441734 +1364978.589838 1243285.589838 norm=36.262929 +1364998.506549 1238986.506549 norm=36.262929 +1365023.622653 1247315.622653 norm=35.679126 +1365007.539969 1242980.539969 norm=36.633318 +1365018.021665 1244759.021665 norm=36.207734 +1365028.012523 1243422.012523 norm=36.482873 +1365028.207401 1246157.207401 norm=36.290495 +1365046.050377 1244140.050377 norm=36.592349 +1365035.918268 1248517.918268 norm=37.269290 +1365056.628309 1242337.628309 norm=36.441734 +1365067.378050 1246971.378050 norm=36.959437 +1365059.977345 1245611.977345 norm=37.000000 +1365081.822077 1246068.822077 norm=36.027767 +1365099.069422 1245803.069422 norm=36.110940 +1365106.121053 1244785.121053 norm=36.687873 +1365103.950063 1246317.950063 norm=36.783148 +1365113.903268 1247510.903268 norm=36.345564 +1365141.113270 1247446.113270 norm=36.193922 +1365138.287852 1243158.287852 norm=35.383612 +1365173.787551 1245442.787551 norm=35.749126 +1365159.736174 1247926.736174 norm=36.276714 +1365176.852574 1246053.852574 norm=36.152455 +1365165.937392 1245580.937392 norm=37.080992 +1365144.685796 1244847.685796 norm=36.823905 +1365188.047291 1245594.047291 norm=37.496667 +1365178.126338 1246887.126338 norm=36.262929 +1365224.393793 1242860.393793 norm=36.262929 +1365202.579893 1246939.579893 norm=36.646964 +1365222.458774 1243784.458774 norm=36.851052 +1365231.982417 1246682.982417 norm=35.860842 +1365257.599297 1243547.599297 norm=36.249138 +1365254.972902 1246846.972902 norm=35.440090 +1365279.906078 1245658.906078 norm=35.860842 +1365276.958646 1246246.958646 norm=35.763109 +1365277.676810 1247679.676810 norm=36.851052 +1365281.482401 1248900.482401 norm=36.110940 +1365305.455900 1245256.455900 norm=36.110940 +1365300.665933 1250497.665933 norm=37.121422 +1365299.781956 1239987.781956 norm=35.972211 +1365334.750330 1249271.750330 norm=35.679126 +1365345.514951 1244891.514951 norm=36.523965 +1365316.711191 1247145.711191 norm=37.242449 +1365335.183866 1251563.183866 norm=36.455452 +1365353.425700 1240435.425700 norm=37.255872 +1365326.737321 1245018.737321 norm=36.166283 +1365384.083546 1243081.083546 norm=35.735137 +1365398.111406 1244318.111406 norm=36.851052 +1365359.179886 1246491.179886 norm=36.331804 +1365413.394412 1249063.394412 norm=35.327043 +1365422.265312 1246298.265312 norm=36.055513 +1365429.591990 1250149.591990 norm=36.290495 +1365407.233787 1243354.233787 norm=36.290495 +1365446.748922 1247025.748922 norm=36.318040 +1365439.478873 1246597.478873 norm=35.916570 +1365460.211973 1243765.211973 norm=37.389838 +1365430.082826 1247160.082826 norm=36.687873 +1365466.175761 1247192.175761 norm=36.124784 +1365491.638875 1245123.638875 norm=35.805028 +1365488.641325 1244752.641325 norm=36.318040 +1365496.181853 1243922.181853 norm=35.818989 +1365521.834048 1246357.834048 norm=36.755952 +1365498.448215 1247482.448215 norm=36.755952 +1365514.420955 1252222.420955 norm=36.455452 +1365520.383525 1244927.383525 norm=36.013886 +1365534.499549 1247747.499549 norm=36.769553 +1365528.502798 1244197.502798 norm=35.735137 +1365573.313395 1254030.313395 norm=36.359318 +1365555.725931 1246007.725931 norm=36.304270 +1365570.511023 1249198.511023 norm=35.986108 +1365577.531403 1245235.531403 norm=36.318040 +1365583.489616 1247013.489616 norm=36.013886 +1365597.480396 1246344.480396 norm=36.469165 +1365596.369490 1249285.369490 norm=36.606010 +1365593.263718 1242955.263718 norm=36.400549 +1365638.372272 1249216.372272 norm=36.864617 +1365600.599354 1245970.599354 norm=37.282704 +1365636.546455 1252152.546455 norm=36.055513 +1365662.883240 1246686.883240 norm=35.185224 +1365665.640898 1253455.640898 norm=36.400549 +1365655.310236 1241542.310236 norm=36.193922 +1365675.158029 1249696.158029 norm=36.523965 +1365649.834297 1246390.834297 norm=37.349699 +1365689.492651 1253463.492651 norm=36.400549 +1365684.389841 1247023.389841 norm=36.660606 +1365700.541070 1246586.541070 norm=36.083237 +1365718.801077 1248906.801077 norm=36.482873 +1365719.929226 1251242.929226 norm=36.124784 +1365747.639309 1248703.639309 norm=35.623026 +1365770.073178 1253524.073178 norm=35.397740 +1365753.196877 1242678.196877 norm=35.874782 +1365754.025907 1250926.025907 norm=36.633318 +1365760.232159 1244593.232159 norm=36.027767 +1365771.792968 1251209.792968 norm=36.207734 +1365779.672700 1248239.672700 norm=36.124784 +1365795.533171 1255194.533171 norm=36.742346 +1365768.643660 1251967.643660 norm=37.376463 +1365800.603479 1249980.603479 norm=36.537652 +1365816.359559 1252248.359559 norm=35.874782 +1365834.942158 1248960.942158 norm=35.355339 +1365832.745055 1249678.745055 norm=36.386811 +1365841.288722 1252166.288722 norm=35.874782 +1365844.433149 1248892.433149 norm=35.860842 +1365873.833486 1251150.833486 norm=35.284558 +1365847.220623 1248861.220623 norm=36.455452 +1365863.504822 1248687.504822 norm=36.304270 +1365900.269924 1251211.269924 norm=35.071356 +1365891.246677 1250392.246677 norm=35.566838 +1365919.032579 1249189.032579 norm=35.972211 +1365896.260973 1247358.260973 norm=36.742346 +1365905.660067 1251661.660067 norm=35.832946 +1365942.685534 1254309.685534 norm=36.810325 +1365905.047332 1247868.047332 norm=36.482873 +1365933.940453 1248984.940453 norm=36.932371 +1365943.807969 1249856.807969 norm=36.013886 +1365979.061709 1253951.061709 norm=36.249138 +1365944.968081 1250525.968081 norm=36.166283 +1365981.825587 1254220.825587 norm=36.796739 +1365958.145177 1246666.145177 norm=36.674242 +1365959.831989 1250929.831989 norm=37.483330 +1366000.852859 1253753.852859 norm=35.651087 +1366007.181856 1249755.181856 norm=36.055513 +1366018.391612 1248254.391612 norm=35.958309 +1366016.763159 1252468.763159 norm=37.121422 +1365998.723069 1246921.723069 norm=37.322915 +1366004.412287 1256634.412287 norm=37.282704 +1366024.122495 1249527.122495 norm=35.930488 +1366069.695935 1249785.695935 norm=35.524639 +1366070.356092 1249147.356092 norm=35.099858 +1366093.067052 1253764.067052 norm=35.284558 +1366067.466743 1250371.466743 norm=36.345564 +1366091.570731 1252338.570731 norm=35.902646 +1366102.282441 1250407.282441 norm=35.397740 +1366122.341814 1251074.341814 norm=35.270384 +1366135.653474 1247816.653474 norm=35.735137 +1366121.890927 1253160.890927 norm=36.304270 +1366125.395623 1253421.395623 norm=36.715120 +1366126.001943 1252878.001943 norm=36.701499 +1366145.359812 1249509.359812 norm=35.916570 +1366148.721863 1249903.721863 norm=36.290495 +1366134.995617 1248179.995617 norm=37.000000 +1366161.595267 1249732.595267 norm=36.837481 +1366164.204738 1251592.204738 norm=35.902646 +1366206.829025 1254058.829025 norm=36.083237 +1366188.727931 1244716.727931 norm=37.067506 +1366180.607797 1249833.607797 norm=36.069378 +1366220.435756 1251766.435756 norm=36.386811 +1366226.159425 1251535.159425 norm=35.482390 +1366215.888075 1252401.888075 norm=36.441734 +1366238.106387 1247175.106387 norm=35.846897 +1366250.312413 1255444.312413 norm=35.312887 +1366252.111046 1247793.111046 norm=36.523965 +1366237.653330 1253903.653330 norm=36.290495 +1366268.384245 1248517.384245 norm=35.791060 +1366281.639766 1251571.639766 norm=35.721142 +1366292.813715 1247898.813715 norm=36.083237 +1366282.041067 1254324.041067 norm=36.124784 +1366305.843475 1248931.843475 norm=36.592349 +1366299.863033 1253861.863033 norm=35.916570 +1366328.643145 1246694.643145 norm=35.860842 +1366333.259214 1253389.259214 norm=36.110940 +1366331.111023 1248723.111023 norm=36.276714 +1366336.956664 1254270.956664 norm=35.014283 +1366372.523885 1250568.523885 norm=36.027767 +1366348.455739 1252495.455739 norm=35.468296 +1366393.867064 1250159.867064 norm=35.707142 +1366380.072152 1252306.072152 norm=36.510273 +1366386.898562 1251001.898562 norm=36.304270 +1366379.124971 1251845.124971 norm=37.080992 +1366374.456544 1251747.456544 norm=36.783148 +1366408.802091 1249946.802091 norm=35.707142 +1366421.422742 1250844.422742 norm=36.565011 +1366415.587082 1251387.587082 norm=35.763109 +1366448.470948 1248928.470948 norm=35.805028 +1366435.114999 1252847.114999 norm=36.027767 +1366454.067042 1251273.067042 norm=35.944402 +1366445.287299 1253656.287299 norm=36.441734 +1366457.820096 1250313.820096 norm=36.701499 +1366438.374168 1251522.374168 norm=37.456642 +1366452.929865 1247587.929865 norm=37.188708 +1366471.876660 1252333.876660 norm=37.121422 +1366461.743856 1251196.743856 norm=36.455452 +1366507.682494 1252075.682494 norm=35.312887 +1366518.936273 1250971.936273 norm=36.000000 +1366507.032414 1255492.032414 norm=36.441734 +1366531.183137 1250765.183137 norm=35.665109 +1366548.682482 1252297.682482 norm=35.199432 +1366545.704167 1243935.704167 norm=35.846897 +1366573.631501 1252931.631501 norm=36.235342 +1366563.134490 1246358.134490 norm=35.972211 +1366564.190207 1255357.190207 norm=35.312887 +1366581.700820 1251713.700820 norm=36.674242 +1366580.197366 1255055.197366 norm=36.276714 +1366598.134623 1245360.134623 norm=36.551334 +1366585.191984 1256257.191984 norm=36.633318 +1366606.240039 1250181.240039 norm=36.069378 +1366632.011684 1254374.011684 norm=36.359318 +1366628.788387 1248767.788387 norm=36.359318 +1366618.498064 1251113.498064 norm=37.000000 +1366625.854471 1249197.854471 norm=36.606010 +1366642.498761 1253384.498761 norm=35.916570 +1366676.916289 1255509.916289 norm=36.318040 +1366672.896293 1247375.896293 norm=35.341194 +1366664.528448 1251013.528448 norm=35.874782 +1366697.335766 1251318.335766 norm=35.972211 +1366705.629760 1255130.629760 norm=35.312887 +1366707.975964 1247672.975964 norm=36.124784 +1366703.174704 1249921.174704 norm=35.425979 +1366725.957112 1251812.957112 norm=36.318040 +1366718.533831 1251573.533831 norm=36.138622 +1366735.238130 1245075.238130 norm=36.235342 +1366746.930358 1251393.930358 norm=35.846897 +1366749.349444 1248321.349444 norm=35.721142 +1366770.129691 1254516.129691 norm=36.386811 +1366744.462100 1255103.462100 norm=36.565011 +1366756.633916 1252880.633916 norm=35.958309 +1366789.910195 1249373.910195 norm=35.749126 +1366787.305303 1251831.305303 norm=35.284558 +1366825.934698 1253603.934698 norm=35.270384 +1366812.106211 1252692.106211 norm=35.707142 +1366814.034122 1252048.034122 norm=35.538711 +1366838.713810 1250524.713810 norm=35.608988 +1366832.417957 1249921.417957 norm=35.298725 +1366845.624296 1252651.624296 norm=36.783148 +1366825.951785 1251035.951785 norm=36.510273 +1366857.841798 1251081.841798 norm=35.594943 +1366861.413276 1248932.413276 norm=36.166283 +1366872.097550 1249385.097550 norm=35.916570 +1366883.132247 1250875.132247 norm=36.701499 +1366880.958867 1254459.958867 norm=35.411862 +1366894.943110 1250167.943110 norm=36.055513 +1366898.814676 1251528.814676 norm=36.510273 +1366888.948012 1254877.948012 norm=37.255872 +1366901.341493 1250399.341493 norm=36.496575 +1366913.098547 1252665.098547 norm=36.660606 +1366922.066250 1250456.066250 norm=35.608988 +1366946.272676 1250765.272676 norm=35.679126 +1366954.572105 1256644.572105 norm=35.397740 +1366962.454854 1251451.454854 norm=35.440090 +1366962.890772 1256590.890772 norm=36.041643 +1367000.531790 1247124.531790 norm=35.298725 +1366986.930303 1253652.930303 norm=35.846897 +1366997.927408 1255448.927408 norm=35.327043 +1367007.467578 1255587.467578 norm=35.496479 +1367007.871110 1250072.871110 norm=36.304270 +1367014.021935 1256740.021935 norm=36.441734 +1367012.478506 1247765.478506 norm=35.524639 +1367046.138107 1254490.138107 norm=35.454196 +1367054.033410 1250883.033410 norm=35.369478 +1367050.277392 1255955.277392 norm=35.818989 +1367064.991241 1250872.991241 norm=35.369478 +1367082.673203 1251422.673203 norm=35.944402 +1367076.455557 1246801.455557 norm=36.083237 +1367086.585243 1255494.585243 norm=36.755952 +1367061.404998 1254269.404998 norm=36.496575 +1367080.314087 1256716.314087 norm=37.309516 +1367085.512960 1252035.512960 norm=36.810325 +1367103.707549 1255259.707549 norm=36.124784 +1367115.619629 1251893.619629 norm=35.242020 +1367157.233031 1252023.233031 norm=35.566838 +1367140.603358 1250086.603358 norm=35.594943 +1367151.233574 1252482.233574 norm=35.972211 +1367154.675239 1250180.675239 norm=35.440090 +1367184.403031 1254266.403031 norm=35.594943 +1367151.462580 1250609.462580 norm=36.124784 +1367192.358082 1252695.358082 norm=35.749126 +1367187.758849 1250274.758849 norm=35.623026 +1367204.126665 1253201.126665 norm=36.013886 +1367164.299161 1253501.299161 norm=37.040518 +1367220.923705 1251071.923705 norm=36.646964 +1367176.484863 1254415.484863 norm=37.403208 +1367194.449827 1253979.449827 norm=36.235342 +1367228.062816 1252638.062816 norm=35.538711 +1367252.607562 1250406.607562 norm=35.791060 +1367237.896203 1255325.896203 norm=35.665109 +1367271.409609 1252720.409609 norm=36.290495 +1367267.386304 1254137.386304 norm=36.069378 +1367275.374807 1252984.374807 norm=35.818989 +1367290.179150 1249043.179150 norm=35.944402 +1367295.260497 1253581.260497 norm=36.400549 +1367277.070560 1248455.070560 norm=36.851052 +1367295.959167 1253428.959167 norm=36.414283 +1367304.852017 1251621.852017 norm=35.227830 +1367346.199122 1254939.199122 norm=35.735137 +1367322.783246 1248208.783246 norm=35.665109 +1367349.829898 1254436.829898 norm=35.749126 +1367360.241647 1253450.241647 norm=35.580894 +1367362.368174 1258250.368174 norm=37.040518 +1367314.784085 1245005.784085 norm=36.878178 +1367365.645025 1254212.645025 norm=35.846897 +1367368.924142 1247424.924142 norm=36.069378 +1367403.266483 1250935.266483 norm=35.763109 +1367399.432874 1256290.432874 norm=36.945906 +1367379.215754 1254063.215754 norm=36.660606 +1367397.368669 1252755.368669 norm=36.345564 +1367415.369227 1254484.369227 norm=35.832946 +1367423.498535 1256869.498535 norm=36.851052 +1367423.919365 1255808.919365 norm=35.791060 +1367422.909752 1252585.909752 norm=36.055513 +1367455.960899 1251366.960899 norm=35.944402 +1367458.409918 1253099.409918 norm=35.707142 +1367470.995482 1252659.995482 norm=36.276714 +1367467.604799 1251640.604799 norm=35.411862 +1367506.664058 1254743.664058 norm=36.469165 +1367476.078447 1253703.078447 norm=35.580894 +1367518.365155 1253260.365155 norm=35.707142 +1367497.832521 1252372.832521 norm=36.837481 +1367503.122290 1253427.122290 norm=36.414283 +1367505.176929 1249691.176929 norm=36.386811 +1367521.206766 1253871.206766 norm=36.207734 +1367529.951635 1259875.951635 norm=35.749126 +1367563.247339 1251588.247339 norm=35.355339 +1367555.704555 1251583.704555 norm=34.885527 +1367601.848394 1248383.848394 norm=35.242020 +1367553.585488 1254660.585488 norm=36.318040 +1367584.424076 1250003.424076 norm=36.166283 +1367579.531154 1255743.531154 norm=37.013511 +1367580.060307 1251906.060307 norm=35.383612 +1367613.622118 1249908.622118 norm=36.041643 +1367597.596592 1252703.596592 norm=36.455452 +1367614.633168 1255632.633168 norm=35.832946 +1367622.077176 1252807.077176 norm=36.221541 +1367620.707387 1256647.707387 norm=36.359318 +1367642.339878 1250971.339878 norm=35.665109 +1367655.648022 1253300.648022 norm=35.749126 +1367667.835943 1254433.835943 norm=36.207734 +1367644.024619 1252907.024619 norm=36.276714 +1367695.027727 1254637.027727 norm=35.637059 +1367683.014255 1254137.014255 norm=36.055513 +1367687.142789 1251495.142789 norm=36.262929 +1367702.066534 1255375.066534 norm=35.665109 +1367709.866086 1253478.866086 norm=35.902646 +1367716.870914 1253447.870914 norm=35.707142 +1367718.586678 1252282.586678 norm=36.138622 +1367712.186496 1253666.186496 norm=36.864617 +1367736.909359 1256180.909359 norm=35.888717 +1367742.050478 1252838.050478 norm=36.138622 +1367761.623418 1246564.623418 norm=35.524639 +1367764.386640 1257865.386640 norm=35.468296 +1367782.534063 1250219.534063 norm=36.482873 +1367756.379580 1252722.379580 norm=36.796739 +1367777.140897 1253159.140897 norm=36.124784 +1367791.266097 1257355.266097 norm=35.916570 +1367819.811788 1255436.811788 norm=34.452866 +1367830.090218 1252514.090218 norm=35.972211 +1367800.233900 1251851.233900 norm=36.414283 +1367848.578215 1254804.578215 norm=35.284558 +1367836.341975 1252315.341975 norm=35.425979 +1367844.540597 1251454.540597 norm=35.832946 +1367874.524564 1256475.524564 norm=35.552778 +1367835.686991 1250522.686991 norm=36.823905 +1367851.693716 1257468.693716 norm=36.796739 +1367845.329974 1249808.329974 norm=36.221541 +1367897.004090 1253762.004090 norm=35.482390 +1367884.648795 1251279.648795 norm=35.594943 +1367902.713410 1255187.713410 norm=36.124784 +1367896.691654 1250712.691654 norm=36.633318 +1367893.194968 1254978.194968 norm=37.067506 +1367912.803361 1249649.803361 norm=35.538711 +1367933.985281 1251519.985281 norm=35.637059 +1367949.439461 1255202.439461 norm=35.171011 +1367955.475291 1253579.475291 norm=35.482390 +1367975.600025 1255161.600025 norm=35.213634 +1367973.370003 1254370.370003 norm=35.538711 +1367974.113477 1256856.113477 norm=35.468296 +1367984.503689 1255394.503689 norm=35.637059 +1368011.020938 1252159.020938 norm=34.871192 +1368008.665955 1253892.665955 norm=35.777088 +1368015.246660 1254275.246660 norm=35.440090 +1368024.605843 1256009.605843 norm=35.721142 +1368022.779593 1246505.779593 norm=35.496479 +1368040.237684 1255038.237684 norm=35.608988 +1368008.077738 1255566.077738 norm=36.837481 +1368037.779129 1257668.779129 norm=36.110940 +1368043.447508 1252833.447508 norm=36.166283 +1368069.333899 1252049.333899 norm=35.986108 +1368055.958049 1254353.958049 norm=36.386811 +1368067.919333 1249513.919333 norm=36.851052 +1368072.359040 1251361.359040 norm=35.552778 +1368110.729605 1255011.729605 norm=36.055513 +1368081.062615 1250174.062615 norm=35.623026 +1368131.116952 1257225.116952 norm=35.440090 +1368122.023871 1252939.023871 norm=34.785054 +1368128.611797 1254736.611797 norm=36.290495 +1368111.139402 1250894.139402 norm=36.455452 +1368144.759865 1259710.759865 norm=36.193922 +1368130.074520 1251044.074520 norm=36.290495 +1368158.021814 1257275.021814 norm=35.846897 +1368134.271723 1252656.271723 norm=36.701499 +1368174.732210 1251371.732210 norm=35.482390 +1368188.625686 1249182.625686 norm=36.359318 +1368179.365813 1251704.365813 norm=36.304270 +1368179.920848 1252386.920848 norm=35.944402 +1368208.382414 1260541.382414 norm=35.099858 +1368220.999893 1245177.999893 norm=36.660606 +1368207.440518 1261905.440518 norm=35.749126 +1368229.624702 1249913.624702 norm=35.777088 +1368236.616552 1255708.616552 norm=35.693137 +1368256.442479 1251346.442479 norm=35.735137 +1368247.307651 1260915.307651 norm=36.331804 +1368257.535809 1252871.535809 norm=35.902646 +1368266.035148 1251349.035148 norm=36.290495 +1368279.156993 1253359.156993 norm=36.180105 +1368283.839263 1255632.839263 norm=35.860842 +1368297.777092 1251999.777092 norm=35.777088 +1368285.720946 1254614.720946 norm=36.097091 +1368307.247469 1251281.247469 norm=35.566838 +1368317.179175 1255561.179175 norm=36.715120 +1368302.031635 1255317.031635 norm=36.304270 +1368341.199888 1253174.199888 norm=35.440090 +1368337.559698 1251510.559698 norm=36.878178 +1368342.184932 1254175.184932 norm=36.660606 +1368337.853741 1250016.853741 norm=35.114100 +1368383.288747 1254281.288747 norm=35.425979 +1368365.960074 1249790.960074 norm=35.791060 +1368382.193152 1255260.193152 norm=36.124784 +1368361.620728 1255079.620728 norm=36.496575 +1368382.424954 1255858.424954 norm=36.660606 +1368403.055274 1252952.055274 norm=34.899857 +1368447.135230 1254260.135230 norm=35.242020 +1368410.324194 1248470.324194 norm=35.916570 +1368434.275727 1257841.275727 norm=36.027767 +1368420.782584 1253076.782584 norm=36.428011 +1368438.842868 1256054.842868 norm=34.741906 +1368472.689924 1249633.689924 norm=35.972211 +1368436.750294 1256659.750294 norm=35.874782 +1368470.465917 1252252.465917 norm=35.496479 +1368482.684662 1257609.684662 norm=34.713110 +1368489.157192 1249827.157192 norm=36.207734 +1368492.384638 1256129.384638 norm=36.041643 +1368490.793138 1249804.793138 norm=36.000000 +1368515.335056 1254919.335056 norm=35.679126 +1368502.720444 1256967.720444 norm=36.441734 +1368514.808042 1253988.808042 norm=36.041643 +1368524.529427 1252347.529427 norm=35.707142 +1368539.751116 1251941.751116 norm=35.832946 +1368547.669091 1253642.669091 norm=36.441734 +1368524.168741 1254459.168741 norm=37.255872 +1368527.698840 1254568.698840 norm=36.769553 +1368560.102077 1258414.102077 norm=36.249138 +1368560.729573 1252691.729573 norm=35.763109 +1368590.536471 1252402.536471 norm=36.138622 +1368591.800132 1253662.800132 norm=35.860842 +1368597.222114 1256097.222114 norm=35.930488 +1368601.688545 1255532.688545 norm=35.651087 +1368612.831971 1250777.831971 norm=36.041643 +1368623.183529 1254482.183529 norm=36.138622 +1368625.692191 1252406.692191 norm=36.373067 +1368633.062788 1255300.062788 norm=35.341194 +1368660.759177 1251486.759177 norm=35.185224 +1368661.323972 1251587.323972 norm=35.510562 +1368665.953541 1257642.953541 norm=36.097091 +1368669.666625 1255863.666625 norm=36.221541 +1368658.866023 1258153.866023 norm=36.207734 +1368680.366559 1251194.366559 norm=36.138622 +1368695.524919 1252199.524919 norm=36.027767 +1368684.904966 1252410.904966 norm=36.918830 +1368702.033541 1255585.033541 norm=36.565011 +1368696.600924 1252660.600924 norm=35.916570 +1368738.360091 1256136.360091 norm=34.684290 +1368752.018950 1251760.018950 norm=35.888717 +1368739.957536 1254523.957536 norm=36.551334 +1368725.790135 1251554.790135 norm=36.221541 +1368758.490643 1260366.490643 norm=35.099858 +1368778.535283 1248689.535283 norm=35.944402 +1368764.344076 1255478.344076 norm=36.386811 +1368778.647052 1253385.647052 norm=35.510562 +1368799.909675 1253869.909675 norm=35.142567 +1368807.477297 1252387.477297 norm=35.763109 +1368800.464873 1258096.464873 norm=36.180105 +1368812.356155 1254099.356155 norm=35.524639 +1368843.545350 1250662.545350 norm=35.777088 +1368817.431451 1257795.431451 norm=35.791060 +1368843.211632 1256046.211632 norm=36.069378 +1368841.880767 1253823.880767 norm=35.566838 +1368852.224065 1254374.224065 norm=36.345564 +1368847.400714 1254631.400714 norm=37.309516 +1368841.921781 1256170.921781 norm=36.851052 +1368863.586799 1253024.586799 norm=36.565011 +1368852.865499 1254707.865499 norm=36.728735 +1368896.649860 1251795.649860 norm=35.958309 +1368884.302699 1255843.302699 norm=36.441734 +1368909.672414 1250920.672414 norm=34.928498 +1368922.833561 1256451.833561 norm=35.791060 +1368921.510571 1255750.510571 norm=35.707142 +1368931.067181 1252980.067181 norm=35.944402 +1368935.319240 1251029.319240 norm=36.687873 +1368944.111710 1251172.111710 norm=35.028560 +1368967.594861 1256995.594861 norm=35.791060 +1368962.396292 1253339.396292 norm=35.721142 +1368976.378094 1257740.378094 norm=35.566838 +1368980.589034 1255422.589034 norm=35.916570 +1368986.339803 1250073.339803 norm=35.930488 +1368990.760554 1258320.760554 norm=35.777088 +1368996.062824 1250631.062824 norm=36.728735 +1369007.476039 1258251.476039 norm=35.791060 +1369015.196265 1250806.196265 norm=35.749126 +1369046.039603 1255284.039603 norm=35.707142 +1369036.824393 1250840.824393 norm=36.193922 +1369022.208165 1258203.208165 norm=36.414283 +1369053.069659 1248833.069659 norm=35.651087 +1369063.995152 1258614.995152 norm=36.097091 +1369053.843334 1249091.843334 norm=35.454196 +1369067.664856 1260212.664856 norm=35.777088 +1369076.251867 1253747.251867 norm=36.166283 +1369093.676391 1256403.676391 norm=35.355339 +1369103.208065 1250026.208065 norm=35.679126 +1369095.710389 1254272.710389 norm=36.400549 +1369110.335089 1252536.335089 norm=35.749126 +1369122.830087 1256838.830087 norm=36.345564 +1369131.009801 1252145.009801 norm=35.972211 +1369117.675489 1255344.675489 norm=36.221541 +1369143.880762 1254259.880762 norm=35.860842 +1369149.355693 1258282.355693 norm=35.270384 +1369170.377725 1249180.377725 norm=35.496479 +1369168.266275 1259108.266275 norm=35.270384 +1369188.950569 1252163.950569 norm=36.742346 +1369165.522441 1252002.522441 norm=35.944402 +1369193.600819 1253243.600819 norm=36.041643 +1369191.972453 1258988.972453 norm=36.496575 +1369201.810208 1251099.810208 norm=36.441734 +1369210.781600 1253571.781600 norm=35.425979 +1369227.121933 1252734.121933 norm=35.085610 +1369244.034815 1257746.034815 norm=35.185224 +1369258.404997 1255013.404997 norm=35.411862 +1369257.496938 1256690.496938 norm=35.623026 +1369250.775812 1252672.775812 norm=36.619667 +1369251.752468 1253979.752468 norm=36.891733 +1369250.672566 1251819.672566 norm=35.425979 +1369293.610643 1250450.610643 norm=35.397740 +1369290.905041 1260782.905041 norm=35.496479 +1369304.735961 1255405.735961 norm=36.810325 +1369272.323850 1253342.323850 norm=36.180105 +1369321.633124 1256759.633124 norm=35.860842 +1369310.366251 1252408.366251 norm=36.510273 +1369317.470482 1255829.470482 norm=35.846897 +1369338.810902 1255225.810902 norm=36.027767 +1369336.387432 1253048.387432 norm=35.454196 +1369362.253452 1253488.253452 norm=35.099858 +1369363.708550 1252478.708550 norm=35.284558 +1369372.073901 1255319.073901 norm=36.166283 +1369397.529134 1254896.529134 norm=35.777088 +1369350.528548 1261056.528548 norm=36.796739 +1369380.547948 1249224.547948 norm=36.235342 +1369391.151555 1254999.151555 norm=35.594943 +1369412.749119 1253168.749119 norm=35.721142 +1369414.761964 1250278.761964 norm=36.262929 +1369414.053560 1259858.053560 norm=35.114100 +1369449.578466 1252321.578466 norm=34.770677 +1369452.013216 1259343.013216 norm=35.930488 +1369454.473120 1246989.473120 norm=35.749126 +1369445.495774 1255473.495774 norm=35.735137 +1369465.466141 1251833.466141 norm=35.972211 +1369447.761936 1255994.761936 norm=36.318040 +1369454.348578 1256116.348578 norm=36.864617 +1369451.224481 1254227.224481 norm=37.013511 +1369476.542173 1252985.542173 norm=36.386811 +1369488.640390 1256164.640390 norm=35.735137 +1369508.970923 1252347.970923 norm=36.193922 +1369486.001917 1253254.001917 norm=36.510273 +1369517.851007 1256241.851007 norm=35.679126 +1369520.558144 1254275.558144 norm=36.441734 +1369539.200117 1252555.200117 norm=35.256205 +1369542.868744 1255809.868744 norm=36.262929 +1369546.776833 1253076.776833 norm=37.027017 +1369530.074922 1255680.074922 norm=36.537652 +1369559.071103 1254071.071103 norm=37.027017 +1369566.548554 1252323.548554 norm=35.482390 +1369583.289302 1253470.289302 norm=36.124784 +1369594.144814 1257505.144814 norm=35.566838 +1369603.191962 1254115.191962 norm=35.916570 +1369602.058793 1251157.058793 norm=36.441734 +1369612.732204 1255037.732204 norm=35.327043 +1369639.182489 1257723.182489 norm=34.957117 +1369651.866353 1253673.866353 norm=35.014283 +1369671.271065 1255583.271065 norm=34.971417 +1369666.713307 1253200.713307 norm=35.099858 +1369668.532102 1252614.532102 norm=35.944402 +1369647.182188 1250621.182188 norm=35.832946 +1369677.849888 1257325.849888 norm=35.057096 +1369701.202013 1249981.202013 norm=35.594943 +1369677.743532 1253273.743532 norm=35.693137 +1369698.923622 1253520.923622 norm=35.735137 +1369695.456929 1253025.456929 norm=37.536649 +1369652.632268 1256931.632268 norm=37.788887 +1369685.023707 1253325.023707 norm=37.040518 +1369706.422589 1256368.422589 norm=37.134889 +1369706.055425 1252742.055425 norm=37.107951 +1369706.560534 1259357.560534 norm=36.455452 +1369727.470119 1252711.470119 norm=36.592349 +1369751.216948 1258351.216948 norm=36.027767 +1369771.827945 1252774.827945 norm=36.262929 +1369754.182500 1257800.182500 norm=36.083237 +1369781.156199 1250077.156199 norm=36.180105 +1369771.327592 1259842.327592 norm=36.262929 +1369784.916240 1250879.916240 norm=35.874782 +1369791.797889 1257385.797889 norm=35.637059 +1369831.122034 1255475.122034 norm=35.454196 +1369815.213562 1256386.213562 norm=35.411862 +1369830.666434 1253076.666434 norm=35.637059 +1369855.419524 1256302.419524 norm=35.028560 +1369862.888999 1252267.888999 norm=36.069378 +1369839.017693 1253228.017693 norm=35.902646 +1369870.729107 1254163.729107 norm=35.425979 +1369875.191431 1256186.191431 norm=35.510562 +1369869.635569 1252031.635569 norm=36.138622 +1369888.357245 1256553.357245 norm=36.166283 +1369868.020185 1253871.020185 norm=37.429935 +1369876.420403 1258137.420403 norm=35.986108 +1369905.188632 1253114.188632 norm=35.944402 +1369922.541788 1256929.541788 norm=36.932371 +1369872.735585 1250604.735585 norm=37.443290 +1369920.439043 1256967.439043 norm=35.958309 +1369928.035231 1252232.035231 norm=35.846897 +1369926.163645 1256823.163645 norm=36.537652 +1369944.435125 1256791.435125 norm=36.207734 +1369950.873060 1249158.873060 norm=36.619667 +1369962.146994 1252252.146994 norm=35.538711 +1369973.337714 1252196.337714 norm=36.235342 +1369962.147334 1255438.147334 norm=36.318040 +1369983.430255 1257889.430255 norm=35.805028 +1370000.593165 1254094.593165 norm=36.646964 +1369997.946171 1257684.946171 norm=35.874782 +1370019.897039 1253894.897039 norm=35.637059 +1370010.241022 1258075.241022 norm=36.633318 +1370012.069557 1250630.069557 norm=35.930488 +1370044.448344 1260685.448344 norm=36.110940 +1370046.849862 1253456.849862 norm=36.262929 +1370034.497486 1256082.497486 norm=36.959437 +1370056.464775 1251504.464775 norm=35.930488 +1370046.217300 1252521.217300 norm=36.345564 +1370104.952877 1252397.952877 norm=35.454196 +1370072.963265 1256117.963265 norm=35.637059 +1370118.654838 1260928.654838 norm=35.057096 +1370112.353655 1253655.353655 norm=35.355339 +1370121.261323 1254078.261323 norm=35.270384 +1370109.287867 1255589.287867 norm=36.345564 +1370108.235456 1254297.235456 norm=35.846897 +1370126.730041 1256543.730041 norm=36.013886 +1370149.433781 1254251.433781 norm=35.369478 +1370157.723075 1256823.723075 norm=36.097091 +1370137.187923 1251223.187923 norm=36.728735 +1370150.445042 1255342.445042 norm=36.386811 +1370155.186259 1258920.186259 norm=37.175261 +1370146.395479 1253591.395479 norm=36.235342 +1370194.571663 1256832.571663 norm=35.944402 +1370177.434712 1254421.434712 norm=35.749126 +1370220.104392 1256097.104392 norm=35.958309 +1370198.761709 1252870.761709 norm=35.818989 +1370202.472001 1263061.472001 norm=36.619667 +1370224.222945 1249114.222945 norm=35.930488 +1370222.708447 1259337.708447 norm=35.986108 +1370250.460205 1251790.460205 norm=35.454196 +1370251.081459 1254457.081459 norm=35.440090 +1370251.813109 1256282.813109 norm=36.262929 +1370264.332896 1256872.332896 norm=35.707142 +1370273.562653 1252005.562653 norm=35.341194 +1370288.145388 1259443.145388 norm=36.249138 +1370257.141930 1250990.141930 norm=36.097091 +1370291.859670 1261660.859670 norm=35.930488 +1370300.938332 1246568.938332 norm=35.791060 +1370314.107666 1259420.107666 norm=36.069378 +1370290.153896 1254432.153896 norm=36.359318 +1370319.922585 1256427.922585 norm=36.386811 +1370324.522378 1251116.522378 norm=35.454196 +1370352.145496 1256207.145496 norm=35.651087 +1370337.461508 1251690.461508 norm=36.207734 +1370365.952684 1258667.952684 norm=35.805028 +1370353.749640 1245933.749640 norm=35.902646 +1370375.061323 1258516.061323 norm=35.580894 +1370370.399271 1255978.399271 norm=35.749126 +1370382.905909 1260983.905909 norm=37.121422 +1370350.522564 1261375.522564 norm=36.810325 +1370386.925962 1257294.925962 norm=36.304270 +1370406.806153 1253712.806153 norm=35.832946 +1370417.473358 1253802.473358 norm=35.440090 +1370436.725567 1252151.725567 norm=36.180105 +1370431.374388 1255580.374388 norm=36.331804 +1370427.913142 1255053.913142 norm=34.684290 +1370484.422563 1254540.422563 norm=35.341194 +1370444.960974 1254780.960974 norm=35.860842 +1370467.474658 1252886.474658 norm=36.810325 +1370456.120628 1254258.120628 norm=35.665109 +1370478.827112 1259908.827112 norm=36.138622 +1370471.196557 1252350.196557 norm=36.469165 +1370489.161510 1258424.161510 norm=35.902646 +1370504.817496 1251155.817496 norm=36.055513 +1370490.933910 1259416.933910 norm=37.000000 +1370505.270535 1255099.270535 norm=35.454196 +1370534.182456 1258471.182456 norm=35.440090 +1370530.826812 1253612.826812 norm=36.055513 +1370529.805062 1259772.805062 norm=36.523965 +1370548.930037 1255910.930037 norm=35.637059 +1370544.942516 1259219.942516 norm=35.693137 +1370573.387028 1249527.387028 norm=35.566838 +1370579.315281 1256454.315281 norm=35.763109 +1370568.623346 1256306.623346 norm=36.304270 +1370576.124841 1257526.124841 norm=35.902646 +1370600.728725 1255414.728725 norm=35.930488 +1370596.138844 1256120.138844 norm=35.411862 +1370617.888097 1252695.888097 norm=35.637059 +1370622.453009 1255964.453009 norm=36.083237 +1370617.596296 1254181.596296 norm=36.000000 +1370633.739092 1255004.739092 norm=35.341194 +1370640.105619 1257714.105619 norm=36.124784 +1370660.470654 1256840.470654 norm=35.735137 +1370633.639735 1257097.639735 norm=36.262929 +1370670.983739 1253927.983739 norm=35.608988 +1370689.420285 1256709.420285 norm=35.057096 +1370694.714826 1257953.714826 norm=36.221541 +1370682.418463 1252703.418463 norm=35.693137 +1370698.027313 1256814.027313 norm=36.482873 +1370676.377413 1256831.377413 norm=35.958309 +1370727.303313 1260452.303313 norm=35.763109 +1370704.096726 1257824.096726 norm=35.552778 +1370737.418980 1253372.418980 norm=35.930488 +1370725.508938 1261729.508938 norm=35.874782 +1370749.964203 1255643.964203 norm=35.874782 +1370734.626822 1251145.626822 norm=35.468296 +1370761.175437 1254971.175437 norm=36.905284 +1370751.502987 1255884.502987 norm=35.651087 +1370772.000760 1250232.000760 norm=35.888717 +1370787.762181 1258164.762181 norm=36.386811 +1370745.600831 1256134.600831 norm=36.290495 +1370799.281276 1260490.281276 norm=34.828150 +1370835.884606 1253813.884606 norm=35.327043 +1370799.761126 1253107.761126 norm=36.304270 +1370810.069353 1258275.069353 norm=35.888717 +1370815.076937 1254695.076937 norm=35.651087 +1370859.838208 1257027.838208 norm=35.256205 +1370838.981994 1257641.981994 norm=36.276714 +1370852.686251 1255719.686251 norm=35.411862 +1370864.065684 1254825.065684 norm=35.552778 +1370868.971410 1256300.971410 norm=36.318040 +1370855.526676 1254881.526676 norm=34.785054 +1370923.860093 1257593.860093 norm=35.185224 +1370876.791521 1255635.791521 norm=35.916570 +1370883.326716 1255601.326716 norm=36.701499 +1370893.599371 1254873.599371 norm=35.735137 +1370913.546773 1256995.546773 norm=35.902646 +1370928.678766 1258317.678766 norm=35.099858 +1370930.559138 1255326.559138 norm=35.763109 +1370933.073617 1254339.073617 norm=35.580894 +1370940.975040 1255488.975040 norm=36.606010 +1370930.567939 1261440.567939 norm=35.665109 +1370961.418230 1251946.418230 norm=35.482390 +1370974.543565 1255089.543565 norm=36.455452 +1370950.002117 1253555.002117 norm=35.369478 +1371011.070573 1257419.070573 norm=35.085610 +1371003.264715 1255693.264715 norm=34.942810 +1371006.395527 1256789.395527 norm=35.888717 +1370994.906329 1256578.906329 norm=35.707142 +1371005.394554 1255777.394554 norm=35.916570 +1371016.034697 1258637.034697 norm=35.944402 +1371011.565427 1262589.565427 norm=37.054015 +1371019.632641 1253626.632641 norm=36.878178 +1371008.328361 1254880.328361 norm=36.414283 +1371040.392016 1256432.392016 norm=35.958309 +1371063.508624 1259432.508624 norm=35.242020 +1371063.073500 1252812.073500 norm=35.944402 +1371064.836099 1257344.836099 norm=35.454196 +1371077.110788 1255274.110788 norm=35.707142 +1371088.733643 1254939.733643 norm=35.679126 +1371102.715285 1256335.715285 norm=36.359318 +1371086.326176 1253051.326176 norm=35.721142 +1371097.690135 1262581.690135 norm=36.510273 +1371099.314525 1252421.314525 norm=35.142567 +1371137.399517 1259786.399517 norm=36.496575 +1371094.404487 1257456.404487 norm=35.860842 +1371150.742993 1257486.742993 norm=35.454196 +1371145.487290 1256758.487290 norm=35.085610 +1371168.947861 1255834.947861 norm=35.846897 +1371151.870146 1255183.870146 norm=35.552778 +1371183.689338 1259148.689338 norm=35.818989 +1371166.235493 1253594.235493 norm=35.651087 +1371181.741449 1259530.741449 norm=36.701499 +1371189.315019 1252215.315019 norm=35.440090 +1371238.200200 1255225.200200 norm=34.741906 +1371218.171283 1257776.171283 norm=36.400549 +1371211.140453 1256160.140453 norm=36.180105 +1371206.464916 1255704.464916 norm=35.510562 +1371260.253955 1256795.253955 norm=35.510562 +1371239.416820 1257845.416820 norm=36.166283 +1371246.649748 1259255.649748 norm=35.000000 +1371284.079598 1254167.079598 norm=35.397740 +1371268.911418 1255976.911418 norm=35.860842 +1371280.925274 1257028.925274 norm=34.813790 +1371300.401227 1259731.401227 norm=34.985711 +1371310.353257 1257234.353257 norm=35.693137 +1371264.119441 1259561.119441 norm=37.107951 +1371288.940172 1254715.940172 norm=35.791060 +1371311.172807 1254205.172807 norm=35.085610 +1371325.416812 1257228.416812 norm=35.510562 +1371315.498998 1256633.498998 norm=36.469165 +1371319.999227 1258172.999227 norm=36.262929 +1371338.427123 1255007.427123 norm=36.083237 +1371330.862232 1255874.862232 norm=35.665109 +1371362.304245 1253604.304245 norm=35.425979 +1371357.792268 1261813.792268 norm=35.846897 +1371358.429172 1257953.429172 norm=36.986484 +1371356.839738 1259468.839738 norm=35.805028 +1371397.350048 1253632.350048 norm=35.071356 +1371391.157697 1257183.157697 norm=35.916570 +1371379.469180 1254006.469180 norm=36.687873 +1371384.132507 1261750.132507 norm=37.121422 +1371407.806792 1253315.806792 norm=35.468296 +1371424.653426 1257212.653426 norm=35.425979 +1371432.222332 1256137.222332 norm=35.496479 +1371447.923460 1257824.923460 norm=36.097091 +1371429.441832 1252911.441832 norm=35.874782 +1371449.458282 1257989.458282 norm=36.013886 +1371437.369287 1257448.369287 norm=35.707142 +1371468.854225 1255712.854225 norm=36.742346 +1371465.993184 1260183.993184 norm=36.290495 +1371465.634489 1255014.634489 norm=35.916570 +1371506.408786 1255280.408786 norm=35.425979 +1371479.341898 1256482.341898 norm=35.566838 +1371511.889242 1257023.889242 norm=35.298725 +1371514.198940 1254365.198940 norm=36.207734 +1371502.894042 1257587.894042 norm=36.193922 +1371532.683578 1256562.683578 norm=35.693137 +1371522.702149 1256623.702149 norm=36.193922 +1371532.958254 1257797.958254 norm=36.441734 +1371539.643134 1256788.643134 norm=36.262929 +1371540.301537 1261065.301537 norm=35.580894 +1371573.519594 1254873.519594 norm=35.930488 +1371567.233791 1260854.233791 norm=35.085610 +1371608.974450 1254387.974450 norm=35.454196 +1371594.324206 1255107.324206 norm=36.235342 +1371597.709374 1257776.709374 norm=35.071356 +1371624.744041 1253779.744041 norm=35.693137 +1371607.111063 1258614.111063 norm=35.874782 +1371604.865864 1254856.865864 norm=35.707142 +1371633.029337 1263223.029337 norm=35.721142 +1371636.752268 1258331.752268 norm=35.411862 +1371649.659093 1258933.659093 norm=36.221541 +1371618.583849 1250450.583849 norm=35.114100 +1371681.969697 1253948.969697 norm=35.986108 +1371646.229102 1258803.229102 norm=35.777088 +1371694.756913 1256936.756913 norm=35.777088 +1371659.788888 1258342.788888 norm=36.345564 +1371694.055497 1256636.055497 norm=35.185224 +1371697.935538 1261913.935538 norm=35.312887 +1371710.764389 1255355.764389 norm=35.440090 +1371734.503855 1257887.503855 norm=34.741906 +1371743.748928 1251704.748928 norm=35.355339 +1371738.808724 1263850.808724 norm=35.312887 +1371736.981517 1253075.981517 norm=35.623026 +1371739.550011 1257463.550011 norm=36.318040 +1371736.831370 1253793.831370 norm=36.345564 +1371734.575143 1258364.575143 norm=36.221541 +1371758.823323 1256767.823323 norm=35.298725 +1371792.298854 1259427.298854 norm=35.665109 +1371770.614410 1255273.614410 norm=35.944402 +1371775.510917 1260015.510917 norm=36.124784 +1371792.553610 1252950.553610 norm=34.669872 +1371818.682528 1258711.682528 norm=35.425979 +1371812.866331 1258160.866331 norm=35.637059 +1371819.062521 1256643.062521 norm=36.235342 +1371810.445285 1261198.445285 norm=35.846897 +1371843.904337 1258673.904337 norm=34.684290 +1371857.456528 1255641.456528 norm=35.524639 +1371852.708705 1254862.708705 norm=35.440090 +1371842.107490 1260860.107490 norm=36.083237 +1371856.928267 1260371.928267 norm=35.791060 +1371854.471610 1258010.471610 norm=36.469165 +1371874.468775 1257126.468775 norm=35.958309 +1371874.221822 1254826.221822 norm=35.930488 +1371876.671804 1260315.671804 norm=36.482873 +1371905.506972 1254722.506972 norm=35.085610 +1371929.712175 1253965.712175 norm=33.763886 +1371939.442659 1257307.442659 norm=34.856850 +1371933.443068 1256221.443068 norm=35.425979 +1371931.810461 1256427.810461 norm=36.276714 +1371923.590898 1262036.590898 norm=36.166283 +1371947.503539 1255236.503539 norm=36.055513 +1371950.318266 1260986.318266 norm=35.482390 +1371943.344555 1254867.344555 norm=36.551334 +1371953.018721 1258362.018721 norm=35.637059 +1371979.882457 1258098.882457 norm=35.637059 +1371962.294205 1256150.294205 norm=36.373067 +1371973.837543 1256932.837543 norm=37.202150 +1371982.290891 1256059.290891 norm=35.888717 +1371988.827983 1262758.827983 norm=36.482873 +1372029.482387 1257543.482387 norm=36.027767 +1372011.016452 1260943.016452 norm=36.290495 +1372017.930684 1259294.930684 norm=36.124784 +1372038.246041 1255678.246041 norm=35.014283 +1372066.751216 1256382.751216 norm=35.242020 +1372039.903752 1260014.903752 norm=35.482390 +1372064.643863 1254566.643863 norm=35.327043 +1372073.648314 1256479.648314 norm=35.860842 +1372081.808501 1254816.808501 norm=35.114100 +1372084.999273 1259822.999273 norm=35.014283 +1372097.361023 1254918.361023 norm=35.623026 +1372096.501307 1257629.501307 norm=35.270384 +1372116.890740 1258261.890740 norm=35.411862 +1372118.550958 1255282.550958 norm=35.242020 +1372122.554350 1259739.554350 norm=35.538711 +1372150.459563 1257976.459563 norm=34.785054 +1372132.690627 1259820.690627 norm=36.166283 +1372127.186562 1256691.186562 norm=35.791060 +1372165.439883 1260399.439883 norm=35.057096 +1372152.490988 1252541.490988 norm=35.369478 +1372188.926789 1260102.926789 norm=35.057096 +1372170.439931 1258003.439931 norm=36.180105 +1372174.840587 1259339.840587 norm=36.110940 +1372172.325721 1256429.325721 norm=36.674242 +1372179.914578 1256303.914578 norm=36.027767 +1372197.441240 1260196.441240 norm=36.221541 +1372202.542520 1252609.542520 norm=35.608988 +1372220.902694 1260111.902694 norm=35.665109 +1372219.672129 1250580.672129 norm=35.440090 +1372234.309914 1261234.309914 norm=35.397740 +1372248.272611 1258393.272611 norm=34.871192 +1372268.753122 1256457.753122 norm=35.128336 +1372269.688691 1258200.688691 norm=35.014283 +1372255.125229 1261171.125229 norm=35.749126 +1372261.046005 1264058.046005 norm=35.693137 +1372293.094485 1258345.094485 norm=35.425979 +1372275.288010 1255995.288010 norm=35.805028 +1372285.325119 1258175.325119 norm=36.027767 +1372286.773224 1257260.773224 norm=35.369478 +1372321.628645 1255738.628645 norm=35.270384 +1372313.061964 1257447.061964 norm=35.972211 +1372332.780220 1261298.780220 norm=35.902646 +1372303.907913 1257956.907913 norm=36.138622 +1372344.120987 1259742.120987 norm=35.298725 +1372342.470033 1253887.470033 norm=35.832946 +1372360.277244 1259995.277244 norm=35.623026 +1372357.144366 1255093.144366 norm=35.777088 +1372377.856352 1258594.856352 norm=35.355339 +1372370.863577 1251793.863577 norm=35.256205 +1372396.631134 1256475.631134 norm=35.114100 +1372394.440408 1258137.440408 norm=35.846897 +1372398.845145 1259130.845145 norm=35.594943 +1372396.129014 1255366.129014 norm=35.930488 +1372403.320109 1260121.320109 norm=36.013886 +1372429.493068 1259913.493068 norm=35.425979 +1372426.175909 1257804.175909 norm=36.138622 +1372432.138825 1254622.138825 norm=35.944402 +1372435.383774 1255003.383774 norm=35.510562 +1372452.560158 1259971.560158 norm=36.000000 +1372436.100810 1257549.100810 norm=35.818989 +1372471.796510 1262448.796510 norm=36.318040 +1372448.091165 1259609.091165 norm=36.755952 +1372461.284917 1255742.284917 norm=35.552778 +1372492.507190 1258831.507190 norm=35.383612 +1372507.780194 1255847.780194 norm=35.014283 +1372498.817332 1260483.817332 norm=35.580894 +1372505.377818 1257781.377818 norm=35.454196 +1372526.571533 1255636.571533 norm=35.454196 +1372518.986097 1263355.986097 norm=35.986108 +1372538.271482 1255028.271482 norm=35.749126 +1372524.299088 1259259.299088 norm=36.152455 +1372541.356465 1254730.356465 norm=36.180105 +1372543.831469 1261909.831469 norm=34.539832 +1372600.970757 1258853.970757 norm=34.597688 +1372572.338832 1257110.338832 norm=36.414283 +1372557.875948 1254292.875948 norm=36.318040 +1372597.280087 1254835.280087 norm=35.085610 +1372593.789139 1253951.789139 norm=35.312887 +1372616.900966 1260818.900966 norm=35.805028 +1372600.273024 1256352.273024 norm=35.312887 +1372629.199282 1259360.199282 norm=35.693137 +1372620.019886 1256266.019886 norm=35.482390 +1372621.762211 1259319.762211 norm=36.469165 +1372629.239591 1259354.239591 norm=35.298725 +1372652.712330 1258916.712330 norm=35.580894 +1372643.525860 1258862.525860 norm=35.566838 +1372664.409001 1253411.409001 norm=35.958309 +1372682.125149 1260572.125149 norm=35.665109 +1372651.114617 1256548.114617 norm=35.944402 +1372669.002721 1261354.002721 norm=36.276714 +1372694.510798 1257040.510798 norm=35.242020 +1372696.513793 1256749.513793 norm=36.276714 +1372692.728742 1255958.728742 norm=36.276714 +1372677.175670 1260404.175670 norm=36.701499 +1372693.981581 1254608.981581 norm=36.331804 +1372720.883827 1258368.883827 norm=35.482390 +1372753.529318 1257241.529318 norm=36.097091 +1372711.096523 1259059.096523 norm=35.874782 +1372752.831681 1259198.831681 norm=36.013886 +1372743.519667 1255957.519667 norm=35.397740 +1372764.570970 1261095.570970 norm=35.454196 +1372761.416663 1252168.416663 norm=36.537652 +1372762.957778 1265361.957778 norm=36.138622 +1372782.251584 1256734.251584 norm=35.735137 +1372800.443502 1261191.443502 norm=34.525353 +1372837.907985 1255203.907985 norm=34.641016 +1372813.973388 1260664.973388 norm=35.874782 +1372799.008820 1258524.008820 norm=35.888717 +1372806.858366 1253543.858366 norm=36.013886 +1372827.396052 1259306.396052 norm=35.185224 +1372860.818161 1255748.818161 norm=34.741906 +1372858.110351 1263479.110351 norm=35.369478 +1372851.388499 1254836.388499 norm=35.832946 +1372854.459416 1258830.459416 norm=36.097091 +1372865.793698 1253823.793698 norm=35.256205 +1372874.177352 1260035.177352 norm=35.341194 +1372883.842338 1257434.842338 norm=37.134889 +1372855.645222 1261155.645222 norm=36.400549 +1372883.220988 1258006.220988 norm=36.138622 +1372900.392881 1257683.392881 norm=35.805028 +1372905.379337 1256120.379337 norm=36.905284 +1372902.029079 1258949.029079 norm=35.566838 +1372935.207921 1260721.207921 norm=35.721142 +1372947.813328 1262565.813328 norm=35.270384 +1372953.035078 1258704.035078 norm=35.707142 +1372947.305998 1258462.305998 norm=36.345564 +1372949.881126 1254006.881126 norm=35.735137 +1372982.678083 1253123.678083 norm=35.425979 +1372964.019864 1258338.019864 norm=35.763109 +1372984.334730 1257745.334730 norm=34.914181 +1372985.542975 1252982.542975 norm=35.510562 +1373012.968382 1260349.968382 norm=35.057096 +1372996.024165 1258359.024165 norm=35.411862 +1373030.612216 1260179.612216 norm=35.679126 +1373010.959910 1258310.959910 norm=36.728735 +1373006.845018 1259849.845018 norm=36.193922 +1373032.794320 1253083.794320 norm=35.944402 +1373034.666841 1264705.666841 norm=35.735137 +1373053.500581 1255917.500581 norm=35.538711 +1373052.005665 1262071.005665 norm=35.171011 +1373073.674279 1253617.674279 norm=35.256205 +1373072.383844 1263429.383844 norm=35.411862 +1373078.150818 1257933.150818 norm=36.207734 +1373060.797135 1256237.797135 norm=36.537652 +1373076.177209 1258156.177209 norm=36.249138 +1373093.448475 1260148.448475 norm=35.496479 +1373111.303080 1252099.303080 norm=35.791060 +1373112.507659 1261348.507659 norm=34.985711 +1373130.023967 1259235.023967 norm=35.707142 +1373129.059833 1257435.059833 norm=36.027767 +1373123.818857 1257882.818857 norm=36.715120 +1373112.360021 1255939.360021 norm=36.441734 +1373162.200294 1259903.200294 norm=35.874782 +1373146.924782 1257960.924782 norm=35.986108 +1373161.793127 1256663.793127 norm=36.124784 +1373168.322013 1256854.322013 norm=36.027767 +1373169.038450 1257280.038450 norm=35.902646 +1373181.544748 1265502.544748 norm=34.799425 +1373212.532484 1256217.532484 norm=34.727511 +1373229.546686 1260293.546686 norm=35.213634 +1373240.077640 1254540.077640 norm=34.655447 +1373219.560320 1259520.560320 norm=35.482390 +1373236.140224 1255402.140224 norm=35.312887 +1373236.179724 1262384.179724 norm=35.874782 +1373241.301260 1259282.301260 norm=35.608988 +1373231.912312 1257790.912312 norm=36.972963 +1373237.108699 1255898.108699 norm=35.213634 +1373260.953577 1262360.953577 norm=36.290495 +1373258.916365 1257983.916365 norm=35.721142 +1373275.369271 1263817.369271 norm=36.331804 +1373262.374552 1254273.374552 norm=36.152455 +1373301.812160 1261181.812160 norm=35.028560 +1373316.577820 1256239.577820 norm=34.351128 +1373330.124480 1263268.124480 norm=34.842503 +1373328.025645 1250711.025645 norm=35.637059 +1373313.509619 1257755.509619 norm=35.256205 +1373336.787918 1259759.787918 norm=35.986108 +1373330.579097 1259882.579097 norm=35.440090 +1373342.627041 1260090.627041 norm=36.110940 +1373352.996753 1260206.996753 norm=35.721142 +1373361.426474 1256629.426474 norm=35.128336 +1373391.341775 1261885.341775 norm=34.583233 +1373388.621533 1259076.621533 norm=36.592349 +1373351.412036 1257471.412036 norm=36.428011 +1373385.400872 1260250.400872 norm=36.207734 +1373373.110004 1254224.110004 norm=36.207734 +1373417.582222 1263131.582222 norm=35.958309 +1373401.635278 1258767.635278 norm=36.069378 +1373420.395585 1258503.395585 norm=36.152455 +1373415.093652 1255912.093652 norm=35.524639 +1373447.056753 1261909.056753 norm=34.525353 +1373457.015616 1258505.015616 norm=35.327043 +1373470.529820 1258467.529820 norm=34.655447 +1373461.936107 1259906.936107 norm=35.355339 +1373456.119340 1258044.119340 norm=36.905284 +1373443.098291 1258249.098291 norm=35.665109 +1373485.765409 1255002.765409 norm=35.777088 +1373479.897062 1256898.897062 norm=35.888717 +1373478.755474 1257178.755474 norm=36.055513 +1373501.947819 1258516.947819 norm=35.510562 +1373494.511808 1258107.511808 norm=35.411862 +1373518.850892 1256167.850892 norm=35.693137 +1373522.596633 1264073.596633 norm=36.400549 +1373487.289499 1258857.289499 norm=36.619667 +1373534.976749 1264123.976749 norm=35.496479 +1373536.786719 1257115.786719 norm=35.411862 +1373547.232987 1258744.232987 norm=35.986108 +1373559.389216 1255858.389216 norm=35.298725 +1373564.014700 1260350.014700 norm=35.665109 +1373576.397890 1256960.397890 norm=35.496479 +1373582.379925 1259421.379925 norm=35.028560 +1373610.590652 1259351.590652 norm=35.425979 +1373599.020205 1263061.020205 norm=35.482390 +1373593.205887 1258139.205887 norm=36.221541 +1373609.045268 1257131.045268 norm=35.594943 +1373618.327185 1259387.327185 norm=35.156792 +1373632.453095 1257249.453095 norm=35.057096 +1373653.201449 1258486.201449 norm=35.580894 +1373640.946975 1263266.946975 norm=35.482390 +1373642.022883 1258255.022883 norm=35.637059 +1373647.834911 1260128.834911 norm=35.986108 +1373651.815498 1259965.815498 norm=35.454196 +1373675.802429 1260404.802429 norm=35.594943 +1373677.739010 1257819.739010 norm=35.580894 +1373686.055500 1262369.055500 norm=35.608988 +1373691.657461 1255677.657461 norm=35.496479 +1373697.107676 1255667.107676 norm=35.341194 +1373688.541465 1258650.541465 norm=36.606010 +1373702.005664 1261504.005664 norm=36.207734 +1373694.149549 1258257.149549 norm=36.619667 +1373708.123572 1260411.123572 norm=36.166283 +1373721.840878 1256122.840878 norm=37.027017 +1373718.887592 1256542.887592 norm=37.389838 +1373731.917339 1258688.917339 norm=36.193922 +1373753.318611 1262313.318611 norm=34.971417 +1373780.315824 1254901.315824 norm=34.612137 +1373798.392225 1258426.392225 norm=34.741906 +1373778.351656 1256238.351656 norm=35.355339 +1373779.855447 1259704.855447 norm=35.454196 +1373798.404623 1258261.404623 norm=35.580894 +1373802.069527 1258645.069527 norm=36.796739 +1373781.801588 1257949.801588 norm=36.414283 +1373803.037599 1257180.037599 norm=35.874782 +1373820.622498 1261698.622498 norm=36.523965 +1373819.757346 1259760.757346 norm=35.468296 +1373834.948637 1260532.948637 norm=35.721142 +1373860.607155 1258447.607155 norm=34.914181 +1373857.543504 1256202.543504 norm=36.013886 +1373859.344739 1257156.344739 norm=35.888717 +1373870.238279 1264606.238279 norm=35.552778 +1373863.731901 1257268.731901 norm=36.013886 +1373884.417508 1260954.417508 norm=34.713110 +1373899.730586 1258995.730586 norm=34.828150 +1373900.610226 1260314.610226 norm=35.805028 +1373896.118264 1260314.118264 norm=35.411862 +1373930.000035 1259558.000035 norm=35.538711 +1373935.519742 1262664.519742 norm=35.312887 +1373938.778053 1253629.778053 norm=34.583233 +1373947.455057 1261529.455057 norm=35.874782 +1373932.080960 1256295.080960 norm=36.097091 +1373947.656070 1259665.656070 norm=36.878178 +1373939.075863 1259122.075863 norm=35.312887 +1373965.339868 1256623.339868 norm=35.860842 +1373967.477073 1265754.477073 norm=35.538711 +1373964.074503 1257932.074503 norm=35.846897 +1373983.493256 1259758.493256 norm=35.383612 +1373994.558362 1254889.558362 norm=36.837481 +1373962.811573 1261711.811573 norm=36.138622 +1373996.652240 1260134.652240 norm=36.180105 +1374023.260183 1259263.260183 norm=35.440090 +1374005.193605 1257777.193605 norm=36.592349 +1374025.317327 1261028.317327 norm=36.069378 +1374028.289644 1262106.289644 norm=35.986108 +1374047.071084 1261522.071084 norm=35.071356 +1374072.331693 1256829.331693 norm=35.142567 +1374068.709298 1263869.709298 norm=35.679126 +1374053.724658 1257706.724658 norm=35.972211 +1374077.288498 1261993.288498 norm=35.944402 +1374058.172152 1261269.172152 norm=36.180105 +1374084.585552 1261280.585552 norm=35.902646 +1374092.725311 1257149.725311 norm=36.083237 +1374099.836782 1258805.836782 norm=35.749126 +1374105.988420 1258170.988420 norm=35.693137 +1374116.139524 1256750.139524 norm=35.185224 +1374134.072768 1258324.072768 norm=35.665109 +1374138.625783 1261129.625783 norm=35.818989 +1374138.119482 1258826.119482 norm=34.899857 +1374166.721369 1256211.721369 norm=35.411862 +1374131.521196 1261247.521196 norm=36.428011 +1374158.416997 1263193.416997 norm=35.749126 +1374159.009198 1256885.009198 norm=35.763109 +1374174.733160 1261619.733160 norm=36.728735 +1374165.515870 1256767.515870 norm=35.496479 +1374201.292273 1261557.292273 norm=34.957117 +1374202.037302 1257026.037302 norm=36.469165 +1374206.755090 1264375.755090 norm=36.221541 +1374199.781705 1256176.781705 norm=36.441734 +1374209.318746 1259464.318746 norm=36.619667 +1374223.803524 1259919.803524 norm=35.580894 +1374241.785692 1259506.785692 norm=35.114100 +1374250.835741 1257807.835741 norm=35.679126 +1374255.261567 1260294.261567 norm=35.000000 +1374257.423295 1259168.423295 norm=35.594943 +1374264.064357 1260383.064357 norm=35.735137 +1374266.304281 1258360.304281 norm=35.199432 +1374285.420511 1263480.420511 norm=36.207734 +1374260.909965 1256873.909965 norm=36.674242 +1374282.790148 1264074.790148 norm=35.846897 +1374277.962059 1261847.962059 norm=36.152455 +1374313.543948 1260393.543948 norm=36.041643 +1374288.241741 1260359.241741 norm=36.235342 +1374315.972511 1256859.972511 norm=36.565011 +1374303.902428 1258304.902428 norm=36.728735 +1374321.670730 1256964.670730 norm=35.791060 +1374344.662401 1263098.662401 norm=36.110940 +1374351.703778 1261292.703778 norm=36.097091 +1374336.921621 1255134.921621 norm=36.414283 +1374347.958491 1256407.958491 norm=35.454196 +1374379.291997 1261084.291997 norm=36.414283 +1374363.554850 1262338.554850 norm=35.986108 +1374389.112849 1257550.112849 norm=35.944402 +1374390.711368 1259770.711368 norm=36.000000 +1374409.006802 1262845.006802 norm=35.832946 +1374399.191021 1261205.191021 norm=35.566838 +1374420.286520 1262113.286520 norm=35.227830 +1374442.648124 1260127.648124 norm=34.713110 +1374439.821349 1260410.821349 norm=35.242020 +1374444.474355 1257276.474355 norm=35.749126 +1374436.556772 1261145.556772 norm=35.242020 +1374479.127513 1258057.127513 norm=34.928498 +1374470.621254 1267482.621254 norm=34.957117 +1374469.146792 1257153.146792 norm=35.958309 +1374465.258458 1259327.258458 norm=36.180105 +1374488.884631 1258313.884631 norm=34.641016 +1374511.536967 1258496.536967 norm=35.651087 +1374485.544235 1257431.544235 norm=35.958309 +1374495.798594 1259675.798594 norm=36.083237 +1374509.334521 1262489.334521 norm=35.298725 +1374520.672638 1263175.672638 norm=35.114100 +1374545.344278 1260920.344278 norm=35.874782 +1374505.280388 1262101.280388 norm=37.107951 +1374507.891288 1258225.891288 norm=36.013886 +1374539.228605 1264015.228605 norm=35.763109 +1374563.985090 1257571.985090 norm=35.665109 +1374563.526169 1257518.526169 norm=36.331804 +1374560.390557 1256300.390557 norm=35.860842 +1374565.392590 1260724.392590 norm=35.693137 +1374585.365819 1260771.365819 norm=36.055513 +1374580.525830 1259168.525830 norm=36.013886 +1374590.565765 1258981.565765 norm=36.193922 +1374589.897079 1260273.897079 norm=36.318040 +1374604.918166 1262274.918166 norm=35.454196 +1374638.895718 1264478.895718 norm=35.242020 +1374616.053825 1254648.053825 norm=35.242020 +1374654.489332 1261317.489332 norm=36.400549 +1374641.163676 1258456.163676 norm=35.383612 +1374659.842527 1266462.842527 norm=35.099858 +1374657.610104 1259270.610104 norm=35.846897 +1374658.078029 1258538.078029 norm=35.777088 +1374665.217021 1257525.217021 norm=36.428011 +1374673.205466 1258529.205466 norm=35.777088 +1374675.023984 1266742.023984 norm=35.397740 +1374709.676583 1260521.676583 norm=35.721142 +1374689.318374 1261145.318374 norm=34.525353 +1374735.022184 1260241.022184 norm=35.213634 +1374705.147068 1260266.147068 norm=36.207734 +1374728.182329 1261267.182329 norm=35.818989 +1374720.500884 1258466.500884 norm=35.156792 +1374756.325993 1263016.325993 norm=35.411862 +1374748.326965 1265572.326965 norm=36.221541 +1374716.609780 1259426.609780 norm=36.249138 +1374752.488410 1258541.488410 norm=36.235342 +1374755.331988 1260275.331988 norm=35.972211 +1374765.502649 1263320.502649 norm=35.818989 +1374762.555940 1260023.555940 norm=36.537652 +1374788.209889 1262829.209889 norm=36.027767 +1374772.198739 1258800.198739 norm=36.660606 +1374792.852203 1255321.852203 norm=35.114100 +1374801.853332 1262195.853332 norm=34.813790 +1374844.492300 1258067.492300 norm=34.307434 +1374835.410556 1259130.410556 norm=35.721142 +1374829.780467 1261044.780467 norm=35.749126 +1374849.313883 1260946.313883 norm=34.713110 +1374852.731005 1256228.731005 norm=35.156792 +1374871.716455 1267176.716455 norm=35.510562 +1374842.777251 1255662.777251 norm=36.069378 +1374872.583469 1262243.583469 norm=36.124784 +1374862.218298 1262533.218298 norm=36.262929 +1374860.466463 1262862.466463 norm=36.110940 +1374893.241119 1259355.241119 norm=35.679126 +1374865.860377 1260425.860377 norm=36.331804 +1374893.134382 1259606.134382 norm=35.902646 +1374910.152166 1264961.152166 norm=35.651087 +1374917.305895 1256262.305895 norm=36.469165 +1374894.290503 1261051.290503 norm=36.262929 +1374918.874522 1260973.874522 norm=36.027767 +1374919.283692 1263784.283692 norm=36.715120 +1374936.896187 1258056.896187 norm=36.400549 +1374934.303447 1264017.303447 norm=35.425979 +1374962.694750 1262139.694750 norm=35.986108 +1374940.707939 1263329.707939 norm=35.791060 +1374973.981275 1258031.981275 norm=36.041643 +1374984.966524 1261337.966524 norm=36.221541 +1374973.484373 1259368.484373 norm=35.242020 +1375021.328575 1265997.328575 norm=34.496377 +1375014.324965 1259976.324965 norm=36.262929 +1374995.155044 1262305.155044 norm=36.551334 +1375023.290621 1259218.290621 norm=35.594943 +1375015.055409 1260291.055409 norm=34.928498 +1375059.532888 1256170.532888 norm=34.856850 +1375054.647914 1264385.647914 norm=35.114100 +1375065.028642 1264187.028642 norm=36.041643 +1375026.032034 1259249.032034 norm=36.728735 +1375043.723712 1260295.723712 norm=36.221541 +1375067.547623 1260885.547623 norm=34.942810 +1375098.415848 1258159.415848 norm=34.856850 +1375099.637739 1264287.637739 norm=35.874782 +1375074.079297 1263013.079297 norm=36.041643 +1375091.979211 1260146.979211 norm=35.665109 +1375093.367251 1261074.367251 norm=35.972211 +1375099.883078 1264221.883078 norm=37.469988 +1375074.722983 1259750.722983 norm=36.386811 +1375122.980461 1263409.980461 norm=35.099858 +1375127.459585 1262408.459585 norm=35.227830 +1375167.310716 1262121.310716 norm=34.655447 +1375161.053164 1257912.053164 norm=35.425979 +1375150.522792 1261319.522792 norm=35.693137 +1375164.630913 1257917.630913 norm=35.341194 +1375166.477342 1260894.477342 norm=35.256205 +1375174.794951 1259134.794951 norm=35.777088 +1375183.423284 1258899.423284 norm=36.660606 +1375155.821727 1262884.821727 norm=37.215588 +1375184.975807 1259994.975807 norm=35.818989 +1375210.374257 1259494.374257 norm=35.832946 +1375197.047725 1263079.047725 norm=36.386811 +1375213.105461 1260550.105461 norm=35.721142 +1375243.567923 1258289.567923 norm=35.972211 +1375206.784704 1262550.784704 norm=37.107951 +1375224.416556 1257572.416556 norm=36.138622 +1375240.668757 1262235.668757 norm=35.916570 +1375246.260880 1266621.260880 norm=36.400549 +1375257.496538 1256824.496538 norm=36.000000 +1375251.799353 1263379.799353 norm=35.524639 +1375289.369047 1262819.369047 norm=35.805028 +1375272.769218 1262843.769218 norm=35.818989 +1375310.291405 1260644.291405 norm=35.735137 +1375272.206598 1258560.206598 norm=36.578682 +1375294.318315 1257861.318315 norm=35.763109 +1375301.494948 1261647.494948 norm=35.085610 +1375320.732557 1260039.732557 norm=35.468296 +1375336.461123 1265176.461123 norm=35.199432 +1375337.952752 1258343.952752 norm=34.971417 +1375344.763086 1267089.763086 norm=35.355339 +1375340.978719 1258226.978719 norm=36.359318 +1375344.871999 1264644.871999 norm=35.369478 +1375349.093010 1255684.093010 norm=36.097091 +1375377.225260 1263729.225260 norm=34.597688 +1375406.492474 1263302.492474 norm=34.263683 +1375412.456742 1263885.456742 norm=35.042831 +1375394.178624 1262925.178624 norm=36.055513 +1375393.918818 1258799.918818 norm=35.242020 +1375413.294987 1255384.294987 norm=34.669872 +1375439.029158 1261922.029158 norm=34.985711 +1375440.631229 1263013.631229 norm=35.510562 +1375412.337531 1266046.337531 norm=35.944402 +1375443.827786 1265376.827786 norm=35.397740 +1375442.941147 1264546.941147 norm=35.846897 +1375429.745285 1258073.745285 norm=36.414283 +1375438.247787 1263859.247787 norm=36.138622 +1375451.626913 1258665.626913 norm=36.496575 +1375459.099765 1261836.099765 norm=36.207734 +1375452.111709 1259481.111709 norm=35.665109 +1375495.983604 1258970.983604 norm=35.242020 +1375488.499406 1263099.499406 norm=35.608988 +1375513.713693 1263766.713693 norm=35.312887 +1375499.318917 1262848.318917 norm=36.276714 +1375488.080882 1263738.080882 norm=34.971417 +1375523.520744 1263408.520744 norm=36.055513 +1375507.901081 1260912.901081 norm=35.888717 +1375542.890552 1263694.890552 norm=35.369478 +1375544.699287 1261312.699287 norm=35.749126 +1375548.717378 1263573.717378 norm=35.482390 +1375544.215412 1262363.215412 norm=37.536649 +1375535.483357 1264349.483357 norm=36.290495 +1375548.876321 1258258.876321 norm=35.693137 +1375571.127413 1259488.127413 norm=36.152455 +1375573.092107 1260324.092107 norm=35.805028 +1375592.870476 1259790.870476 norm=35.312887 +1375624.453756 1257906.453756 norm=35.397740 +1375610.754739 1265524.754739 norm=35.341194 +1375618.000869 1262779.000869 norm=35.411862 +1375620.762982 1260051.762982 norm=35.468296 +1375628.542707 1259915.542707 norm=35.242020 +1375643.678389 1262001.678389 norm=35.763109 +1375620.645995 1262664.645995 norm=37.107951 +1375640.218278 1263036.218278 norm=35.298725 +1375646.737775 1264716.737775 norm=35.972211 +1375669.277477 1261692.277477 norm=34.942810 +1375656.401733 1259235.401733 norm=36.728735 +1375657.318360 1260323.318360 norm=36.386811 +1375662.590149 1263220.590149 norm=35.213634 +1375717.365145 1261774.365145 norm=35.327043 +1375693.847824 1264958.847824 norm=36.619667 +1375677.434114 1264112.434114 norm=36.523965 +1375694.416363 1257796.416363 norm=35.860842 +1375706.524777 1258431.524777 norm=34.655447 +1375741.091839 1263261.091839 norm=34.813790 +1375748.147009 1261405.147009 norm=35.028560 +1375735.855891 1262446.855891 norm=35.298725 +1375754.377289 1262090.377289 norm=35.665109 +1375755.022150 1261715.022150 norm=36.496575 +1375745.029050 1264228.029050 norm=36.013886 +1375769.427384 1269241.427384 norm=36.013886 +1375773.745293 1260527.745293 norm=35.707142 +1375783.996290 1260903.996290 norm=36.318040 +1375768.033891 1260150.033891 norm=35.721142 +1375780.456326 1262599.456326 norm=35.832946 +1375808.600583 1259437.600583 norm=35.777088 +1375800.017637 1264305.017637 norm=36.083237 +1375813.471934 1258598.471934 norm=36.097091 +1375834.726097 1263646.726097 norm=35.341194 +1375830.650295 1261584.650295 norm=35.199432 +1375860.596179 1267854.596179 norm=35.000000 +1375870.100600 1262741.100600 norm=35.721142 +1375841.374634 1264316.374634 norm=36.055513 +1375852.118130 1261939.118130 norm=36.290495 +1375848.874906 1260274.874906 norm=35.972211 +1375868.689708 1263374.689708 norm=36.606010 +1375872.549642 1260863.549642 norm=36.318040 +1375876.597880 1264038.597880 norm=35.958309 +1375872.920777 1265050.920777 norm=36.428011 +1375882.696240 1259467.696240 norm=37.000000 +1375876.348047 1263852.348047 norm=35.986108 +1375920.923761 1263370.923761 norm=35.057096 +1375937.838341 1262309.838341 norm=34.568772 +1375946.244599 1262656.244599 norm=35.902646 +1375928.898899 1261951.898899 norm=35.566838 +1375935.128859 1259847.128859 norm=36.124784 +1375936.653225 1265286.653225 norm=35.156792 +1375974.991410 1258332.991410 norm=35.608988 +1375948.094567 1270315.094567 norm=36.110940 +1375965.847957 1257978.847957 norm=36.221541 +1375969.159528 1265425.159528 norm=35.860842 +1375994.065763 1261416.065763 norm=36.124784 +1375961.499895 1266240.499895 norm=36.235342 +1375998.334425 1260337.334425 norm=35.805028 +1376013.525026 1266222.525026 norm=36.551334 +1375995.588313 1260222.588313 norm=36.276714 +1376014.657429 1266646.657429 norm=35.397740 +1376030.894423 1261594.894423 norm=35.425979 +1376035.874519 1265223.874519 norm=34.785054 +1376060.366251 1258737.366251 norm=34.928498 +1376077.498543 1265616.498543 norm=34.828150 +1376068.737076 1257226.737076 norm=34.756294 +1376070.854596 1268109.854596 norm=35.298725 +1376071.471628 1263273.471628 norm=35.986108 +1376064.678172 1262117.678172 norm=36.193922 +1376071.833036 1264185.833036 norm=35.749126 +1376090.354938 1260048.354938 norm=35.510562 +1376080.837484 1261837.837484 norm=36.755952 +1376082.761628 1263295.761628 norm=35.972211 +1376105.009814 1265978.009814 norm=35.496479 +1376131.153940 1265496.153940 norm=36.578682 +1376113.226912 1266153.226912 norm=36.578682 +1376112.067922 1265280.067922 norm=36.414283 +1376134.145875 1256237.145875 norm=36.482873 +1376130.178465 1269857.178465 norm=35.777088 +1376164.075232 1261624.075232 norm=36.041643 +1376159.504924 1264211.504924 norm=34.684290 +1376184.955106 1263464.955106 norm=36.331804 +1376144.354510 1266550.354510 norm=35.099858 +1376196.507113 1255467.507113 norm=36.537652 +1376158.294545 1262731.294545 norm=35.818989 +1376202.238033 1267535.238033 norm=35.128336 +1376219.937824 1261616.937824 norm=35.749126 +1376197.678457 1265648.678457 norm=36.027767 +1376212.882970 1265319.882970 norm=35.227830 +1376231.446649 1265092.446649 norm=34.799425 +1376259.207904 1264299.207904 norm=34.785054 +1376252.801738 1257289.801738 norm=34.856850 +1376251.529648 1266985.529648 norm=35.637059 +1376257.092809 1263204.092809 norm=36.000000 +1376251.461607 1262406.461607 norm=36.687873 +1376245.167835 1262906.167835 norm=35.552778 +1376267.948240 1261914.948240 norm=35.000000 +1376295.118893 1266813.118893 norm=35.298725 +1376284.346337 1264337.346337 norm=35.944402 +1376296.631855 1263228.631855 norm=35.972211 +1376284.723012 1261463.723012 norm=35.552778 +1376305.409477 1264102.409477 norm=36.359318 +1376282.718278 1261431.718278 norm=37.013511 +1376293.139064 1266190.139064 norm=35.623026 +1376336.670261 1262581.670261 norm=35.972211 +1376321.212650 1263927.212650 norm=35.482390 +1376350.059990 1266987.059990 norm=36.055513 +1376334.310912 1261177.310912 norm=36.276714 +1376351.061640 1260521.061640 norm=35.665109 +1376362.315729 1264889.315729 norm=35.580894 +1376378.555294 1266018.555294 norm=35.637059 +1376365.369458 1257088.369458 norm=36.945906 +1376347.946345 1265053.946345 norm=36.796739 +1376370.975365 1261766.975365 norm=36.331804 +1376387.231589 1268007.231589 norm=36.000000 +1376391.615089 1263007.615089 norm=36.110940 +1376398.757982 1267243.757982 norm=36.565011 +1376413.175621 1260584.175621 norm=35.902646 +1376423.317061 1266723.317061 norm=35.707142 +1376434.817815 1261054.817815 norm=35.832946 +1376448.405975 1266941.405975 norm=35.425979 +1376459.388064 1265169.388064 norm=35.482390 +1376443.540201 1263745.540201 norm=36.166283 +1376452.019765 1264855.019765 norm=35.312887 +1376463.954953 1262827.954953 norm=35.580894 +1376479.555252 1267649.555252 norm=35.227830 +1376477.344228 1265421.344228 norm=35.171011 +1376500.282190 1264373.282190 norm=35.256205 +1376495.749449 1259266.749449 norm=36.373067 +1376489.031929 1264367.031929 norm=35.355339 +1376503.399035 1263813.399035 norm=35.888717 +1376503.940420 1261390.940420 norm=36.290495 +1376495.062413 1267341.062413 norm=36.249138 +1376518.619330 1266834.619330 norm=35.874782 +1376528.347063 1266499.347063 norm=35.510562 +1376559.425876 1257791.425876 norm=35.355339 +1376550.877896 1267294.877896 norm=35.707142 +1376553.473352 1264459.473352 norm=34.741906 +1376602.288022 1263712.288022 norm=34.467376 +1376570.985427 1261907.985427 norm=35.566838 +1376568.077164 1270177.077164 norm=35.763109 +1376586.503662 1262555.503662 norm=35.383612 +1376601.700897 1265344.700897 norm=35.000000 +1376614.981777 1263106.981777 norm=35.538711 +1376595.310101 1264667.310101 norm=35.637059 +1376628.532212 1264667.532212 norm=35.341194 +1376619.643369 1269907.643369 norm=35.468296 +1376640.987194 1260069.987194 norm=35.028560 +1376641.280298 1265016.280298 norm=36.083237 +1376618.669461 1259339.669461 norm=36.742346 +1376637.157985 1264827.157985 norm=36.235342 +1376634.015725 1263791.015725 norm=36.166283 +1376655.599579 1263810.599579 norm=36.180105 +1376660.947863 1267735.947863 norm=35.199432 +1376691.974054 1263392.974054 norm=35.846897 +1376667.609438 1266194.609438 norm=36.138622 +1376683.604924 1260561.604924 norm=35.888717 +1376688.483257 1267032.483257 norm=35.888717 +1376698.208076 1261431.208076 norm=36.441734 +1376680.242416 1264816.242416 norm=35.566838 +1376736.188288 1262422.188288 norm=35.665109 +1376704.615447 1267488.615447 norm=36.414283 +1376720.872851 1260401.872851 norm=36.097091 +1376733.504655 1265199.504655 norm=35.735137 +1376740.969575 1266426.969575 norm=36.110940 +1376738.705345 1261132.705345 norm=36.013886 +1376753.581156 1264178.581156 norm=35.832946 +1376761.630942 1261590.630942 norm=36.345564 +1376754.209803 1259252.209803 norm=35.566838 +1376785.177866 1268518.177866 norm=35.594943 +1376771.476736 1257495.476736 norm=36.221541 +1376798.091965 1268294.091965 norm=35.085610 +1376802.206317 1263060.206317 norm=35.763109 +1376797.664669 1264811.664669 norm=36.013886 +1376787.265236 1265071.265236 norm=36.428011 +1376811.841859 1262507.841859 norm=35.156792 +1376842.197420 1264234.197420 norm=34.957117 +1376834.415190 1265336.415190 norm=36.041643 +1376834.001584 1262487.001584 norm=36.674242 +1376818.313425 1268821.313425 norm=36.687873 +1376841.881856 1263026.881856 norm=35.566838 +1376859.565064 1263891.565064 norm=34.928498 +1376869.478582 1264540.478582 norm=34.942810 +1376899.101084 1266100.101084 norm=34.146742 +1376905.028722 1268748.028722 norm=35.623026 +1376885.016172 1269445.016172 norm=35.496479 +1376906.432761 1262347.432761 norm=35.171011 +1376914.071895 1267662.071895 norm=35.014283 +1376902.079169 1257634.079169 norm=35.185224 +1376924.061876 1263324.061876 norm=35.651087 +1376910.476416 1262025.476416 norm=36.276714 +1376911.281918 1264278.281918 norm=36.455452 +1376917.397509 1263056.397509 norm=36.331804 +1376946.550036 1264980.550036 norm=35.383612 +1376941.591887 1257938.591887 norm=35.791060 +1376951.614976 1271887.614976 norm=35.085610 +1376976.582629 1263737.582629 norm=35.185224 +1376981.366368 1264595.366368 norm=35.085610 +1376990.004623 1269117.004623 norm=35.874782 +1376968.933464 1267801.933464 norm=36.152455 +1376995.051965 1266364.051965 norm=36.207734 +1376985.274197 1265952.274197 norm=36.742346 +1377000.521949 1262127.521949 norm=35.355339 +1377007.753468 1267406.753468 norm=36.482873 +1377022.752053 1261936.752053 norm=35.805028 +1377015.983015 1268084.983015 norm=35.805028 +1377035.695551 1256277.695551 norm=35.425979 +1377040.681488 1268484.681488 norm=35.707142 +1377049.251268 1261376.251268 norm=35.679126 +1377046.804099 1269435.804099 norm=35.425979 +1377063.260069 1262376.260069 norm=35.791060 +1377066.060966 1268770.060966 norm=36.633318 +1377038.397283 1263822.397283 norm=36.249138 +1377074.994564 1266524.994564 norm=36.318040 +1377061.313217 1270588.313217 norm=36.207734 +1377093.903628 1263063.903628 norm=35.651087 +1377099.098780 1263300.098780 norm=35.341194 +1377101.896443 1266832.896443 norm=36.207734 +1377099.729230 1261713.729230 norm=36.180105 +1377117.462518 1262180.462518 norm=36.469165 +1377131.295760 1267572.295760 norm=35.552778 +1377132.680304 1265962.680304 norm=35.468296 +1377159.292230 1263341.292230 norm=35.623026 +1377156.050385 1262739.050385 norm=35.637059 +1377154.882447 1268138.882447 norm=35.832946 +1377152.616372 1264589.616372 norm=35.397740 +1377184.711641 1259293.711641 norm=34.885527 +1377182.295808 1264566.295808 norm=36.097091 +1377166.739420 1263030.739420 norm=36.606010 +1377162.628806 1265730.628806 norm=37.309516 +1377174.721174 1266810.721174 norm=36.945906 +1377179.330487 1263125.330487 norm=36.837481 +1377188.503036 1261965.503036 norm=36.428011 +1377218.356953 1268521.356953 norm=35.721142 +1377229.451058 1261892.451058 norm=35.832946 +1377227.523975 1271210.523975 norm=35.958309 +1377230.962200 1258333.962200 norm=35.482390 +1377264.229335 1270157.229335 norm=35.383612 +1377244.798169 1262089.798169 norm=36.290495 +1377254.613424 1268364.613424 norm=35.468296 +1377259.823100 1264071.823100 norm=35.818989 +1377266.288626 1267301.288626 norm=35.566838 +1377277.977359 1264625.977359 norm=36.055513 +1377280.369343 1267418.369343 norm=35.958309 +1377291.724153 1262819.724153 norm=35.057096 +1377317.401954 1265746.401954 norm=34.234486 +1377333.653427 1264571.653427 norm=34.813790 +1377313.888244 1262416.888244 norm=35.916570 +1377332.048328 1266258.048328 norm=34.871192 +1377342.269002 1265173.269002 norm=35.227830 +1377350.467843 1264354.467843 norm=35.972211 +1377318.129369 1266825.129369 norm=35.637059 +1377343.255142 1266524.255142 norm=35.199432 +1377372.878718 1263766.878718 norm=34.828150 +1377372.016793 1268936.016793 norm=35.916570 +1377366.793247 1264166.793247 norm=35.608988 +1377369.276844 1272289.276844 norm=35.298725 +1377406.873628 1264523.873628 norm=35.213634 +1377384.273738 1265181.273738 norm=36.124784 +1377396.398459 1266075.398459 norm=35.735137 +1377390.602780 1264713.602780 norm=35.085610 +1377426.107766 1263305.107766 norm=35.594943 +1377404.105995 1261814.105995 norm=36.055513 +1377428.457832 1268211.457832 norm=35.496479 +1377442.858436 1261719.858436 norm=35.369478 +1377456.426280 1265413.426280 norm=36.687873 +1377405.573338 1264463.573338 norm=36.207734 +1377438.007682 1266923.007682 norm=36.345564 +1377443.718609 1261166.718609 norm=36.783148 +1377443.461368 1264923.461368 norm=36.235342 +1377456.296062 1263498.296062 norm=35.425979 +1377490.229148 1265723.229148 norm=35.832946 +1377488.743477 1265917.743477 norm=34.467376 +1377521.424278 1264869.424278 norm=35.383612 +1377503.202399 1266005.202399 norm=35.524639 +1377497.677790 1266362.677790 norm=36.619667 +1377482.004195 1263689.004195 norm=36.331804 +1377515.769732 1265199.769732 norm=35.930488 +1377520.039819 1261917.039819 norm=36.249138 +1377511.982189 1267838.982189 norm=36.359318 +1377522.907652 1266514.907652 norm=36.138622 +1377534.034538 1268525.034538 norm=37.040518 +1377527.299603 1267731.299603 norm=37.148351 +1377531.292925 1263109.292925 norm=37.549967 +1377535.926284 1257687.926284 norm=36.496575 +1377553.896555 1266658.896555 norm=36.455452 +1377554.792312 1264549.792312 norm=36.796739 +1377574.909306 1265916.909306 norm=35.383612 +1377605.261828 1263346.261828 norm=35.594943 +1377575.456196 1265939.456196 norm=35.242020 +1377622.201201 1263247.201201 norm=35.580894 +1377607.226519 1270925.226519 norm=35.312887 +1377626.930673 1261956.930673 norm=35.693137 +1377647.839340 1269655.839340 norm=35.099858 +1377637.881613 1263040.881613 norm=36.249138 +1377635.431828 1269473.431828 norm=35.510562 +1377663.757368 1263275.757368 norm=35.000000 +1377667.624236 1268566.624236 norm=35.085610 +1377659.212038 1261786.212038 norm=35.538711 +1377672.082572 1268934.082572 norm=35.341194 +1377688.059939 1269569.059939 norm=35.482390 +1377689.969156 1261710.969156 norm=35.256205 +1377688.257402 1266112.257402 norm=35.679126 +1377696.039212 1266806.039212 norm=35.972211 +1377703.288252 1265832.288252 norm=34.957117 +1377718.112720 1266883.112720 norm=35.397740 +1377709.017553 1261989.017553 norm=36.400549 +1377706.436386 1268520.436386 norm=35.270384 +1377747.041718 1264794.041718 norm=36.180105 +1377731.249650 1270780.249650 norm=36.083237 +1377739.506625 1261509.506625 norm=36.041643 +1377739.209201 1264673.209201 norm=35.355339 +1377778.974245 1264348.974245 norm=34.885527 +1377778.502169 1268698.502169 norm=34.669872 +1377780.645357 1264523.645357 norm=35.454196 +1377779.251628 1265746.251628 norm=36.441734 +1377764.220208 1265114.220208 norm=36.537652 +1377765.319593 1265423.319593 norm=36.878178 +1377793.756539 1261130.756539 norm=36.069378 +1377812.073631 1265089.073631 norm=35.566838 +1377785.228392 1264802.228392 norm=36.400549 +1377819.088548 1265772.088548 norm=35.763109 +1377821.201697 1269651.201697 norm=36.646964 +1377824.155642 1266182.155642 norm=35.818989 +1377839.918091 1263347.918091 norm=35.538711 +1377842.857722 1267784.857722 norm=35.552778 +1377862.103057 1265139.103057 norm=35.270384 +1377870.390068 1273807.390068 norm=34.942810 +1377895.578796 1262341.578796 norm=35.171011 +1377869.291563 1270221.291563 norm=34.985711 +1377887.593275 1264215.593275 norm=35.679126 +1377889.135991 1270861.135991 norm=35.916570 +1377889.884783 1265098.884783 norm=36.386811 +1377889.403629 1268674.403629 norm=35.805028 +1377893.581281 1263454.581281 norm=35.791060 +1377917.970981 1267249.970981 norm=35.185224 +1377920.473686 1262467.473686 norm=35.538711 +1377921.659707 1268499.659707 norm=36.041643 +1377934.868410 1264898.868410 norm=35.874782 +1377935.560717 1264317.560717 norm=35.411862 +1377939.245339 1266434.245339 norm=35.608988 +1377967.055918 1261801.055918 norm=35.298725 +1377963.911088 1268628.911088 norm=34.770677 +1377986.248039 1263806.248039 norm=36.249138 +1377949.073157 1268332.073157 norm=36.331804 +1377980.857955 1264302.857955 norm=35.763109 +1377989.642293 1265145.642293 norm=35.242020 +1378002.265859 1266677.265859 norm=35.355339 +1377984.404271 1265339.404271 norm=36.331804 +1378007.996655 1270788.996655 norm=36.138622 +1377991.369202 1264144.369202 norm=35.805028 +1378045.447340 1264228.447340 norm=34.380227 +1378046.680022 1268790.680022 norm=35.327043 +1378035.579102 1269924.579102 norm=36.373067 +1378012.729477 1268044.729477 norm=35.791060 +1378063.835595 1268386.835595 norm=35.888717 +1378054.182422 1267591.182422 norm=35.185224 +1378054.076393 1265923.076393 norm=35.944402 +1378077.392824 1261284.392824 norm=35.552778 +1378061.129197 1264671.129197 norm=35.341194 +1378095.711876 1270290.711876 norm=34.612137 +1378100.578959 1263769.578959 norm=35.749126 +1378079.191904 1267383.191904 norm=36.864617 +1378089.799453 1264814.799453 norm=35.623026 +1378092.688932 1268966.688932 norm=35.242020 +1378144.771675 1264191.771675 norm=35.510562 +1378115.237638 1267239.237638 norm=34.942810 +1378161.897212 1266215.897212 norm=35.014283 +1378140.882325 1268800.882325 norm=35.099858 +1378159.663117 1263953.663117 norm=35.637059 +1378122.114929 1269165.114929 norm=36.110940 +1378152.751351 1267737.751351 norm=35.468296 +1378170.251551 1268158.251551 norm=36.235342 +1378158.234002 1264087.234002 norm=36.441734 +1378149.174772 1262220.174772 norm=37.296112 +1378148.162721 1269860.162721 norm=35.749126 +1378206.153511 1263048.153511 norm=35.846897 +1378193.886924 1263073.886924 norm=35.114100 +1378228.723874 1267164.723874 norm=35.014283 +1378210.353687 1264865.353687 norm=35.693137 +1378208.115358 1267224.115358 norm=36.041643 +1378208.160149 1265414.160149 norm=36.124784 +1378228.499528 1266872.499528 norm=36.041643 +1378244.199929 1266386.199929 norm=35.637059 +1378230.777812 1264584.777812 norm=35.608988 +1378252.932012 1268990.932012 norm=35.171011 +1378258.086906 1266699.086906 norm=35.270384 +1378272.556214 1263871.556214 norm=35.242020 +1378290.851947 1267463.851947 norm=36.537652 +1378245.324892 1264419.324892 norm=36.715120 +1378277.127902 1270988.127902 norm=36.221541 +1378285.858906 1265448.858906 norm=35.566838 +1378306.632661 1270351.632661 norm=36.013886 +1378312.072744 1267423.072744 norm=36.069378 +1378303.347974 1268269.347974 norm=35.805028 +1378315.617926 1266106.617927 norm=35.171011 +1378334.655587 1269750.655587 norm=36.110940 +1378326.686272 1263683.686272 norm=35.735137 +1378329.766338 1267266.766338 norm=36.235342 +1378355.579754 1269292.579754 norm=35.355339 +1378352.712457 1265150.712457 norm=35.199432 +1378381.603761 1259258.603761 norm=34.856850 +1378366.492271 1268597.492271 norm=35.902646 +1378373.331821 1263189.331821 norm=35.369478 +1378383.858399 1267294.858399 norm=34.770677 +1378410.714543 1266798.714543 norm=35.369478 +1378379.250148 1270632.250148 norm=36.318040 +1378376.568095 1262230.568095 norm=36.083237 +1378412.879353 1267064.879353 norm=35.944402 +1378405.019622 1267008.019622 norm=35.735137 +1378404.120910 1269299.120910 norm=35.916570 +1378426.119081 1263874.119081 norm=35.944402 +1378421.411377 1269783.411377 norm=34.985711 +1378470.116703 1261830.116703 norm=35.242020 +1378456.590648 1268772.590648 norm=34.985711 +1378456.881898 1268979.881898 norm=35.213634 +1378467.905396 1266920.905396 norm=34.885527 +1378492.166885 1267857.166885 norm=35.000000 +1378480.705650 1263398.705650 norm=34.756294 +1378507.103070 1265884.103070 norm=34.698703 +1378515.666979 1264662.666979 norm=34.885527 +1378497.620637 1267560.620637 norm=35.735137 +1378489.495892 1269034.495892 norm=35.397740 +1378534.513860 1264997.513860 norm=34.985711 +1378504.687391 1268987.687391 norm=35.071356 +1378546.834045 1266353.834045 norm=35.000000 +1378539.175476 1270332.175476 norm=34.684290 +1378546.295691 1267011.295691 norm=35.496479 +1378547.861784 1269048.861784 norm=35.312887 +1378551.147739 1268160.147739 norm=35.888717 +1378538.885712 1269827.885712 norm=35.972211 +1378554.153156 1264494.153156 norm=36.523965 +1378542.144800 1265355.144800 norm=36.083237 +1378573.464812 1265823.464812 norm=35.763109 +1378579.653879 1267327.653879 norm=35.538711 +1378595.805780 1266779.805780 norm=35.440090 +1378581.495154 1261555.495154 norm=36.138622 +1378608.610509 1266323.610509 norm=36.660606 +1378569.022737 1264766.022737 norm=36.674242 +1378617.107646 1267063.107646 norm=35.594943 +1378623.595630 1265285.595630 norm=36.000000 +1378616.840746 1266907.840746 norm=35.199432 +1378667.882234 1268494.882234 norm=33.763886 +1378671.608785 1263298.608785 norm=34.799425 +1378666.854351 1264705.854351 norm=34.234486 +1378686.810719 1269107.810719 norm=34.813790 +1378680.390934 1267287.390934 norm=36.000000 +1378664.033289 1263966.033289 norm=35.156792 +1378688.586796 1272160.586796 norm=35.199432 +1378693.598822 1268131.598822 norm=35.580894 +1378675.640580 1268582.640580 norm=35.832946 +1378687.998636 1262705.998636 norm=35.142567 +1378726.533714 1269260.533714 norm=33.837849 +1378737.979794 1268189.979794 norm=35.566838 +1378725.633306 1267328.633306 norm=34.957117 +1378737.716776 1272040.716776 norm=35.199432 +1378746.306991 1264464.306991 norm=35.284558 +1378733.319582 1271398.319582 norm=35.014283 +1378763.541870 1266066.541870 norm=34.985711 +1378762.045603 1269102.045603 norm=35.242020 +1378772.876096 1269368.876096 norm=34.828150 +1378773.836783 1268280.836783 norm=35.128336 +1378764.648749 1267641.648749 norm=35.749126 +1378784.261985 1270748.261985 norm=35.185224 +1378800.082385 1261155.082385 norm=34.467376 +1378808.014205 1265890.014205 norm=34.336569 +1378837.143824 1268311.143824 norm=34.525353 +1378806.457367 1267864.457367 norm=35.312887 +1378818.452832 1266474.452832 norm=35.888717 +1378794.665321 1266175.665321 norm=36.041643 +1378831.465389 1263124.465389 norm=35.930488 +1378814.295904 1266654.295904 norm=36.455452 +1378835.383647 1268621.383647 norm=35.791060 +1378835.697793 1265669.697793 norm=36.891733 +1378826.584235 1267730.584235 norm=36.207734 +1378834.499235 1265904.499235 norm=36.386811 +1378860.018086 1267802.018086 norm=35.355339 +1378877.286521 1264845.286521 norm=35.538711 +1378871.882209 1271666.882209 norm=35.454196 +1378886.498184 1265910.498184 norm=35.014283 +1378919.097973 1268308.097973 norm=34.452866 +1378902.045637 1271526.045637 norm=35.028560 +1378922.713121 1267008.713121 norm=34.351128 +1378951.018422 1274389.018422 norm=34.539832 +1378915.315729 1267665.315729 norm=35.156792 +1378927.995662 1267094.995662 norm=35.085610 +1378938.218119 1262574.218119 norm=34.914181 +1378942.885427 1263141.885427 norm=34.741906 +1378967.174837 1263665.174837 norm=34.365681 +1378959.295531 1268594.295531 norm=34.871192 +1378977.756581 1268660.756581 norm=34.928498 +1378973.026156 1271233.026156 norm=35.057096 +1378990.464692 1268535.464692 norm=34.539832 +1378991.524514 1263253.524514 norm=34.785054 +1379007.252238 1275291.252238 norm=35.510562 +1378997.529939 1269353.529939 norm=34.597688 +1379031.475883 1270798.475883 norm=34.510868 +1379019.053169 1272075.053169 norm=35.256205 +1379016.728513 1264524.728513 norm=35.057096 +1379041.927728 1270995.927728 norm=35.185224 +1379020.164524 1264789.164524 norm=35.524639 +1379034.000685 1270230.000685 norm=35.242020 +1379061.989271 1268532.989271 norm=35.284558 +1379056.682863 1271802.682863 norm=35.057096 +1379064.827047 1263684.827047 norm=34.813790 +1379065.428293 1269012.428293 norm=35.042831 +1379077.873006 1263547.873006 norm=35.171011 +1379089.570615 1264525.570615 norm=34.409301 +1379115.290410 1266052.290410 norm=35.185224 +1379089.095430 1265452.095430 norm=35.042831 +1379087.026713 1268376.026713 norm=35.397740 +1379121.764153 1266105.764153 norm=33.793490 +1379126.747863 1271424.747863 norm=34.985711 +1379124.150081 1268493.150081 norm=34.044089 +1379154.155075 1267159.155075 norm=34.336569 +1379139.371690 1263682.371690 norm=35.425979 +1379132.688179 1271584.688179 norm=35.468296 +1379152.539977 1265457.539977 norm=35.735137 +1379138.637006 1271390.637006 norm=35.735137 +1379166.773133 1263235.773133 norm=35.242020 +1379151.941702 1267216.941702 norm=36.083237 +1379164.610997 1272441.610997 norm=35.958309 +1379158.407494 1267772.407494 norm=35.227830 +1379201.067288 1266340.067288 norm=34.394767 +1379201.391546 1274510.391546 norm=35.156792 +1379190.350668 1267226.350668 norm=34.351128 +1379221.813299 1270717.813299 norm=34.219877 +1379225.746086 1263563.746086 norm=34.842503 +1379223.300100 1269527.300100 norm=34.380227 +1379252.051656 1265457.051656 norm=34.161382 +1379245.835616 1274172.835616 norm=33.970576 +1379258.883580 1261387.883580 norm=35.185224 +1379244.302635 1270521.302635 norm=35.298725 +1379257.318855 1268984.318855 norm=34.351128 +1379295.046309 1271244.046309 norm=34.467376 +1379265.477064 1264487.477064 norm=35.397740 +1379268.729926 1266115.729926 norm=34.928498 +1379294.539085 1268068.539085 norm=34.452866 +1379304.856038 1270900.856038 norm=34.176015 +1379311.948109 1266060.948109 norm=35.791060 +1379269.100656 1270105.100656 norm=35.763109 +1379300.896346 1271124.896346 norm=36.083237 +1379287.935449 1269117.935449 norm=34.785054 +1379343.937985 1262919.937985 norm=34.554305 +1379343.238075 1265295.238075 norm=35.085610 +1379344.611699 1270064.611699 norm=34.928498 +1379353.524380 1273599.524380 norm=34.669872 +1379357.111195 1264572.111195 norm=34.655447 +1379351.577199 1266804.577199 norm=34.899857 +1379360.079588 1262191.079588 norm=35.114100 +1379387.323126 1274816.323126 norm=34.117444 +1379392.587441 1265800.587441 norm=34.828150 +1379377.116796 1271604.116796 norm=35.142567 +1379385.072868 1267159.072868 norm=35.028560 +1379384.177064 1273015.177064 norm=35.972211 +1379386.820842 1265951.820842 norm=34.799425 +1379424.369788 1274356.369788 norm=34.813790 +1379402.275337 1265166.275337 norm=35.284558 +1379411.582811 1269513.582811 norm=34.756294 +1379439.886021 1264334.886021 norm=35.327043 +1379414.082943 1274082.082943 norm=34.885527 +1379459.503865 1264189.503865 norm=34.322005 +1379466.321407 1267493.321407 norm=34.351128 +1379476.573859 1268156.573859 norm=34.727511 +1379463.412401 1269013.412401 norm=34.641016 +1379479.254653 1270162.254653 norm=34.438351 +1379469.610424 1271865.610424 norm=34.799425 +1379495.827165 1264851.827165 norm=35.057096 +1379493.273266 1269650.273266 norm=34.828150 +1379496.178761 1262669.178761 norm=35.721142 +1379482.569537 1276891.569537 norm=34.727511 +1379522.446090 1264579.446090 norm=34.510868 +1379506.225967 1270917.225967 norm=35.777088 +1379511.439109 1265066.439109 norm=34.014703 +1379554.510322 1267787.510322 norm=33.867388 +1379568.076329 1267946.076329 norm=34.278273 +1379530.497374 1275261.497374 norm=34.942810 +1379567.413433 1267333.413433 norm=34.394767 +1379560.658987 1271020.658987 norm=35.199432 +1379538.540971 1266160.540971 norm=35.916570 +1379562.469429 1277111.469429 norm=35.256205 +1379575.839528 1268575.839528 norm=35.298725 +1379550.957665 1268722.957665 norm=35.763109 +1379594.659807 1268159.659807 norm=35.832946 +1379572.065183 1273171.065183 norm=34.568772 +1379617.622438 1264468.622438 norm=34.205263 +1379622.961304 1273066.961304 norm=33.911650 +1379643.997596 1263047.997596 norm=35.298725 +1379615.000297 1272417.000297 norm=35.213634 +1379619.334213 1266041.334213 norm=34.467376 +1379642.990874 1271343.990874 norm=34.510868 +1379653.763579 1264794.763579 norm=34.423829 +1379670.298817 1268326.298817 norm=35.327043 +1379627.006238 1269352.006238 norm=35.874782 +1379636.622615 1269290.622615 norm=35.397740 +1379676.412269 1267442.412269 norm=35.482390 +1379672.778718 1273386.778718 norm=34.727511 +1379686.156710 1273068.156710 norm=36.083237 +1379661.851109 1268535.851109 norm=35.185224 +1379699.948561 1267054.948561 norm=35.028560 +1379688.075015 1275481.075015 norm=34.612137 +1379736.647876 1266642.647876 norm=33.555923 +1379736.361980 1265976.361980 norm=33.911650 +1379744.737316 1269206.737316 norm=34.336569 +1379706.357237 1267184.357237 norm=34.597688 +1379748.196295 1269914.196295 norm=33.837849 +1379735.757767 1271633.757767 norm=34.219877 +1379761.191576 1267075.191576 norm=34.842503 +1379741.250940 1273315.250940 norm=34.438351 +1379772.189667 1272845.189667 norm=34.971417 +1379751.014723 1270561.014723 norm=35.468296 +1379774.290921 1267551.290921 norm=34.899857 +1379801.467092 1267931.467092 norm=35.171011 +1379766.421173 1268600.421173 norm=35.099858 +1379791.400151 1269571.400151 norm=35.411862 +1379795.758490 1270244.758490 norm=34.452866 +1379815.526717 1265214.526717 norm=33.852622 +1379835.442974 1274480.442974 norm=34.684290 +1379811.394255 1270451.394255 norm=35.552778 +1379814.093670 1270782.093670 norm=34.394767 +1379839.289257 1267785.289257 norm=34.597688 +1379851.554945 1270005.554945 norm=34.539832 +1379848.674298 1268594.674298 norm=34.899857 +1379869.380282 1270145.380282 norm=34.539832 +1379845.308830 1272028.308830 norm=34.871192 +1379870.824366 1266978.824366 norm=35.341194 +1379863.229964 1267166.229964 norm=34.380227 +1379896.942555 1269437.942555 norm=34.336569 +1379877.662298 1268130.662298 norm=35.298725 +1379886.934264 1270358.934264 norm=35.171011 +1379872.090394 1267420.090394 norm=34.971417 +1379926.790784 1274173.790784 norm=34.088121 +1379919.031966 1265891.031966 norm=35.242020 +1379912.920423 1269416.920423 norm=35.014283 +1379915.880067 1269817.880067 norm=35.397740 +1379919.487593 1271181.487593 norm=35.468296 +1379909.263737 1271463.263737 norm=35.707142 +1379961.276411 1271003.276411 norm=34.756294 +1379950.513435 1272213.513435 norm=35.142567 +1379950.296624 1273393.296624 norm=35.213634 +1379955.732595 1269681.732595 norm=34.899857 +1379960.873279 1268285.873279 norm=34.942810 +1379971.243536 1268105.243536 norm=35.213634 +1379971.368981 1271007.368981 norm=34.351128 +1379993.008530 1265011.008530 norm=34.612137 +1380000.470394 1273284.470394 norm=34.626579 +1380018.737179 1271630.737179 norm=35.114100 +1379998.588002 1267721.588002 norm=35.199432 +1380003.941615 1268272.941615 norm=34.205263 +1380052.288152 1267506.288152 norm=33.196385 +1380048.406839 1267185.406839 norm=34.813790 +1380031.357190 1271903.357190 norm=35.411862 +1380029.161312 1266154.161312 norm=36.027767 +1380035.715616 1272598.715616 norm=34.626579 +1380056.560629 1269856.560629 norm=34.785054 +1380055.163531 1276438.163531 norm=34.568772 +1380072.645637 1271652.645637 norm=34.842503 +1380079.303702 1266389.303702 norm=34.899857 +1380081.968432 1270203.968432 norm=34.568772 +1380102.432027 1273124.432027 norm=35.242020 +1380062.777449 1272443.777449 norm=34.957117 +1380126.949341 1267032.949341 norm=34.292856 +1380102.652024 1268902.652024 norm=35.028560 +1380111.984094 1271597.984094 norm=34.452866 +1380110.267168 1266035.267168 norm=34.985711 +1380153.517871 1273089.517871 norm=34.770677 +1380121.065700 1272849.065700 norm=34.612137 +1380154.191182 1266383.191182 norm=34.799425 +1380133.110928 1268925.110928 norm=35.454196 +1380146.868614 1273198.868614 norm=34.885527 +1380156.357015 1269953.357015 norm=34.626579 +1380176.941199 1269289.941199 norm=34.641016 +1380172.756776 1262840.756776 norm=34.871192 +1380174.406237 1275296.406237 norm=35.383612 +1380171.918229 1267973.918229 norm=34.510868 +1380207.434450 1275650.434450 norm=33.926391 +1380220.003161 1271418.003161 norm=35.142567 +1380178.702998 1271846.702998 norm=34.813790 +1380227.610116 1267542.610116 norm=34.205263 +1380230.176729 1277517.176729 norm=33.837849 +1380253.319671 1270230.319671 norm=34.058773 +1380228.630435 1267670.630435 norm=35.369478 +1380218.478359 1266457.478359 norm=35.496479 +1380225.847348 1271262.847348 norm=35.482390 +1380249.753174 1268885.753174 norm=35.298725 +1380256.649880 1271976.649880 norm=34.380227 +1380273.530158 1271286.530158 norm=34.942810 +1380247.796617 1273220.796617 norm=35.944402 +1380272.841563 1268692.841563 norm=34.597688 +1380294.714826 1272364.714826 norm=34.597688 +1380278.511086 1271148.511086 norm=35.383612 +1380285.376785 1270840.376785 norm=35.552778 +1380292.658800 1269873.658800 norm=34.292856 +1380314.142890 1266195.142890 norm=34.102786 +1380341.681730 1271297.681730 norm=34.510868 +1380301.826131 1268454.826131 norm=35.298725 +1380317.677467 1271585.677467 norm=35.482390 +1380329.555756 1272879.555756 norm=34.161382 +1380343.302693 1269715.302693 norm=34.525353 +1380353.046823 1269888.046823 norm=34.741906 +1380364.603058 1272728.603058 norm=34.409301 +1380368.677593 1264537.677593 norm=33.823069 +1380389.243847 1272799.243847 norm=34.044089 +1380382.403848 1269238.403848 norm=34.234486 +1380412.874198 1271354.874198 norm=33.689761 +1380407.694587 1267975.694587 norm=34.014703 +1380398.842740 1272923.842740 norm=34.394767 +1380406.053843 1271947.053843 norm=34.741906 +1380420.000520 1274815.000520 norm=34.669872 +1380416.410109 1269404.410109 norm=34.770677 +1380417.458988 1270302.458988 norm=35.128336 +1380421.709048 1270834.709048 norm=35.014283 +1380428.479624 1268003.479624 norm=35.071356 +1380436.767340 1271298.767340 norm=35.213634 +1380439.965287 1270534.965287 norm=35.972211 +1380434.908706 1271845.908706 norm=34.713110 +1380463.261434 1265794.261434 norm=34.985711 +1380465.627738 1273436.627738 norm=34.234486 +1380474.958592 1270930.958592 norm=35.014283 +1380471.673893 1276823.673893 norm=35.397740 +1380462.591528 1267196.591528 norm=35.000000 +1380498.382926 1273353.382926 norm=35.735137 +1380477.948263 1266241.948263 norm=35.735137 +1380493.268650 1267626.268650 norm=34.510868 +1380526.833160 1272277.833160 norm=34.146742 +1380518.689705 1272028.689705 norm=35.085610 +1380527.928249 1269745.928249 norm=34.380227 +1380550.467333 1269875.467333 norm=34.014703 +1380537.184634 1265408.184634 norm=33.645208 +1380583.533951 1274266.533951 norm=34.655447 +1380524.546982 1264570.546982 norm=35.383612 +1380562.324380 1276003.324380 norm=34.088121 +1380575.776643 1268580.776643 norm=34.219877 +1380573.293203 1276072.293203 norm=34.842503 +1380559.966539 1269111.966539 norm=35.524639 +1380577.447325 1270190.447325 norm=35.071356 +1380590.189764 1269741.189764 norm=34.307434 +1380603.486225 1273419.486225 norm=34.914181 +1380586.675469 1266675.675469 norm=34.539832 +1380631.674750 1273754.674750 norm=34.713110 +1380601.308475 1270037.308475 norm=34.828150 +1380618.515918 1271928.515918 norm=34.928498 +1380613.885185 1270146.885185 norm=36.027767 +1380616.833429 1272365.833429 norm=35.114100 +1380638.498045 1272655.498045 norm=34.029399 +1380666.425570 1269786.425570 norm=34.058773 +1380655.045276 1272107.045276 norm=34.554305 +1380670.790318 1270159.790318 norm=34.813790 +1380658.725473 1269222.725473 norm=34.871192 +1380670.889009 1271409.889009 norm=34.885527 +1380672.540142 1270261.540142 norm=34.713110 +1380688.085188 1271702.085188 norm=35.199432 +1380676.196021 1268370.196021 norm=35.693137 +1380697.082205 1267108.082205 norm=35.000000 +1380695.719397 1271455.719397 norm=34.452866 +1380726.415866 1269295.415866 norm=34.669872 +1380725.370939 1269006.370939 norm=34.394767 +1380746.170773 1272483.170773 norm=34.146742 +1380734.962379 1273129.962379 norm=34.957117 +1380748.078087 1271646.078087 norm=34.292856 +1380741.065300 1273112.065300 norm=35.284558 +1380744.103835 1270389.103835 norm=34.481879 +1380756.236491 1274619.236491 norm=34.510868 +1380789.414141 1270660.414141 norm=33.808283 +1380787.357805 1270556.357805 norm=34.029399 +1380784.142607 1277335.142607 norm=35.693137 +1380765.547867 1265232.547867 norm=34.583233 +1380798.909472 1275405.909472 norm=34.741906 +1380786.783030 1270951.783030 norm=34.336569 +1380830.194229 1268635.194229 norm=33.911650 +1380820.359687 1271028.359687 norm=34.423829 +1380822.569700 1267150.569700 norm=34.307434 +1380820.818961 1270371.818961 norm=34.655447 +1380841.607323 1267774.607323 norm=34.132096 +1380834.585384 1271778.585384 norm=33.645208 +1380874.567859 1273547.567859 norm=34.612137 +1380847.698692 1271300.698692 norm=34.899857 +1380847.491141 1273462.491141 norm=34.365681 +1380864.615801 1268537.615801 norm=34.669872 +1380871.954319 1271247.954319 norm=34.971417 +1380852.766584 1269288.766584 norm=35.114100 +1380885.814570 1269834.814570 norm=34.655447 +1380884.870283 1268611.870283 norm=35.594943 +1380882.036056 1271036.036056 norm=35.085610 +1380873.204971 1272559.204971 norm=35.425979 +1380911.650381 1268658.650381 norm=34.496377 +1380902.138783 1270878.138783 norm=34.525353 +1380929.682691 1274232.682691 norm=34.539832 +1380921.427945 1270744.427945 norm=34.365681 +1380940.067866 1273573.067866 norm=34.510868 +1380957.293366 1275346.293366 norm=34.899857 +1380932.462154 1270973.462154 norm=34.813790 +1380945.240694 1272169.240694 norm=34.669872 +1380971.137134 1266992.137134 norm=33.361655 +1380977.733468 1271149.733468 norm=35.156792 +1380959.935904 1268517.935904 norm=34.871192 +1380971.295751 1273393.295751 norm=34.481879 +1381006.533693 1270750.533693 norm=34.146742 +1380984.462473 1268748.462473 norm=34.029399 +1381028.121866 1269605.121866 norm=32.984845 +1381037.446678 1270738.446678 norm=34.249088 +1381017.163997 1276012.163997 norm=34.727511 +1381009.093913 1271318.093913 norm=34.438351 +1381021.606854 1276156.606854 norm=34.597688 +1381036.295705 1269119.295705 norm=35.000000 +1381041.130997 1277562.130997 norm=34.942810 +1381034.409428 1268732.409428 norm=34.234486 +1381077.666614 1272946.666614 norm=34.102786 +1381055.430683 1267805.430683 norm=34.452866 +1381058.287719 1277619.287719 norm=35.185224 +1381048.713756 1268725.713756 norm=35.369478 +1381062.786802 1270952.786802 norm=34.336569 +1381098.396206 1266649.396206 norm=33.823069 +1381116.814397 1271893.814397 norm=33.985291 +1381095.227819 1271276.227819 norm=34.583233 +1381115.598436 1273886.598436 norm=34.292856 +1381100.712055 1267726.712055 norm=34.554305 +1381120.890947 1274590.890947 norm=33.867388 +1381136.130411 1272971.130411 norm=34.249088 +1381135.426567 1268770.426567 norm=34.467376 +1381132.403309 1267827.403309 norm=34.698703 +1381143.086732 1268505.086732 norm=34.885527 +1381130.456921 1276368.456921 norm=34.713110 +1381171.566322 1276382.566322 norm=33.808283 +1381153.059871 1273032.059871 norm=35.665109 +1381145.758691 1267026.758691 norm=34.942810 +1381166.271562 1268591.271562 norm=34.928498 +1381150.448980 1270689.448980 norm=35.383612 +1381173.384934 1270141.384934 norm=34.741906 +1381187.225102 1275567.225102 norm=34.770677 +1381179.211771 1271661.211771 norm=35.099858 +1381207.834327 1276909.834327 norm=34.799425 +1381190.526513 1265372.526513 norm=35.156792 +1381214.651295 1276517.651295 norm=35.042831 +1381201.612163 1268295.612163 norm=34.510868 +1381239.844130 1272555.844130 norm=34.234486 +1381232.964080 1269049.964080 norm=34.684290 +1381244.660984 1270094.660984 norm=34.583233 +1381262.440195 1267428.440195 norm=34.044089 +1381263.637936 1274973.637936 norm=33.911650 +1381263.800177 1266937.800177 norm=34.828150 +1381261.911612 1272165.911612 norm=35.114100 +1381260.443735 1267240.443735 norm=34.741906 +1381270.552008 1272430.552008 norm=35.028560 +1381282.151534 1270858.151534 norm=34.510868 +1381296.352401 1270810.352401 norm=34.336569 +1381302.484976 1275141.484976 norm=34.698703 +1381310.864310 1269834.864310 norm=34.525353 +1381312.780616 1271266.780616 norm=35.171011 +1381319.760090 1273546.760090 norm=34.380227 +1381307.541202 1269360.541202 norm=34.914181 +1381315.965581 1272802.965581 norm=34.914181 +1381326.476824 1267177.476824 norm=34.394767 +1381345.713378 1271202.713378 norm=35.128336 +1381332.621784 1274702.621784 norm=35.411862 +1381347.412281 1273160.412281 norm=34.928498 +1381359.079575 1272982.079575 norm=35.312887 +1381350.000294 1275197.000294 norm=35.327043 +1381359.433610 1266902.433610 norm=35.440090 +1381352.457296 1272724.457296 norm=34.423829 +1381380.705895 1270918.705895 norm=34.467376 +1381407.544150 1273332.544150 norm=35.185224 +1381378.659295 1271958.659295 norm=35.846897 +1381400.319507 1269416.319507 norm=34.365681 +1381416.909805 1273771.909805 norm=34.971417 +1381424.546468 1272563.546468 norm=34.655447 +1381443.153127 1274115.153127 norm=34.539832 +1381428.195626 1277915.195626 norm=34.249088 +1381447.661964 1269698.661964 norm=34.626579 +1381436.978439 1274245.978439 norm=35.327043 +1381431.929395 1267632.929395 norm=34.799425 +1381448.335951 1272031.335951 norm=35.028560 +1381456.434009 1271480.434009 norm=34.971417 +1381481.630632 1271362.630632 norm=34.438351 +1381467.548188 1267878.548188 norm=34.249088 +1381481.820863 1273479.820863 norm=33.955854 +1381494.823285 1270497.823285 norm=34.799425 +1381494.248748 1271028.248748 norm=34.539832 +1381486.332975 1266840.332975 norm=34.525353 +1381514.669728 1270665.669728 norm=35.227830 +1381493.989526 1268332.989526 norm=35.171011 +1381524.079663 1278042.079663 norm=35.057096 +1381513.112163 1267509.112163 norm=34.249088 +1381548.448630 1277261.448630 norm=33.674916 +1381560.237997 1262806.237997 norm=33.823069 +1381561.716926 1280071.716926 norm=35.099858 +1381538.489111 1267815.489111 norm=35.284558 +1381555.907033 1272451.907033 norm=34.234486 +1381554.455510 1270613.455510 norm=33.852622 +1381595.558607 1272654.558607 norm=34.190642 +1381584.276658 1268369.276658 norm=34.698703 +1381588.367413 1272746.367413 norm=35.888717 +1381551.111671 1268317.111671 norm=35.298725 +1381591.674523 1274063.674523 norm=34.380227 +1381609.848641 1275285.848641 norm=34.568772 +1381620.552634 1278520.552634 norm=34.597688 +1381625.335895 1264836.335895 norm=35.057096 +1381626.916893 1270921.916893 norm=34.117444 +1381636.982574 1272778.982574 norm=34.597688 +1381636.122106 1276892.122106 norm=34.380227 +1381654.073459 1270888.073459 norm=34.452866 +1381648.923495 1273577.923495 norm=34.249088 +1381653.025287 1268338.025287 norm=34.928498 +1381651.266758 1274254.266758 norm=34.741906 +1381665.086038 1269255.086038 norm=34.813790 +1381657.769176 1271117.769176 norm=35.256205 +1381668.632211 1271654.632211 norm=35.014283 +1381672.006586 1275802.006586 norm=34.467376 +1381709.130829 1267572.130829 norm=34.799425 +1381708.630562 1274422.630562 norm=34.756294 +1381704.822411 1271595.822411 norm=34.899857 +1381690.440101 1274360.440101 norm=35.242020 +1381706.127912 1266340.127912 norm=34.467376 +1381729.626949 1275545.626949 norm=35.270384 +1381714.725329 1270667.725329 norm=35.085610 +1381727.709124 1278052.709124 norm=35.902646 +1381721.800396 1266498.800396 norm=35.651087 +1381748.677890 1273783.677890 norm=34.132096 +1381766.910598 1269711.910598 norm=34.132096 +1381764.179124 1273573.179124 norm=34.510868 +1381776.300250 1272568.300250 norm=34.322005 +1381785.767318 1271923.767318 norm=34.161382 +1381782.451153 1272488.451153 norm=34.263683 +1381793.371639 1275230.371639 norm=34.770677 +1381794.600488 1271683.600488 norm=34.102786 +1381795.475977 1269615.475977 norm=34.799425 +1381809.687781 1269897.687781 norm=34.263683 +1381819.016909 1272944.016909 norm=34.928498 +1381826.961179 1268172.961179 norm=34.597688 +1381812.927798 1276136.927798 norm=34.813790 +1381822.519730 1269310.519730 norm=35.777088 +1381797.338053 1273750.338053 norm=34.698703 +1381861.546454 1268814.546454 norm=33.734256 +1381863.969468 1272044.969468 norm=34.452866 +1381853.925757 1273280.925757 norm=35.099858 +1381854.585687 1272142.585687 norm=34.899857 +1381868.222545 1271300.222545 norm=34.942810 +1381873.198882 1272479.198882 norm=33.823069 +1381899.148558 1270412.148558 norm=34.029399 +1381894.325786 1270722.325786 norm=34.351128 +1381906.919239 1273233.919239 norm=34.409301 +1381905.107684 1274436.107684 norm=34.727511 +1381901.509028 1273844.509028 norm=34.423829 +1381923.605111 1269814.605111 norm=34.785054 +1381916.126095 1274685.126095 norm=34.481879 +1381934.267706 1268619.267706 norm=34.813790 +1381933.901368 1273260.901368 norm=35.057096 +1381934.318775 1270934.318775 norm=34.510868 +1381948.016771 1272426.016771 norm=34.394767 +1381963.423583 1279517.423583 norm=34.914181 +1381948.371666 1267778.371666 norm=35.425979 +1381978.348519 1275296.348519 norm=34.190642 +1381966.535022 1269036.535022 norm=34.985711 +1381966.380263 1270713.380263 norm=34.423829 +1381982.961383 1273701.961383 norm=34.467376 +1381990.572100 1271635.572100 norm=33.985291 +1382004.975542 1271943.975542 norm=34.971417 +1381998.689261 1267571.689261 norm=35.227830 +1381991.387323 1279867.387323 norm=34.322005 +1382025.671434 1268428.671434 norm=34.871192 +1382004.909566 1272947.909566 norm=35.538711 +1382015.322369 1267598.322369 norm=34.785054 +1382025.927594 1276024.927594 norm=34.626579 +1382041.439632 1274754.439632 norm=34.641016 +1382054.165963 1270670.165963 norm=34.525353 +1382059.911734 1266119.911734 norm=34.496377 +1382050.896895 1275474.896895 norm=34.914181 +1382072.900322 1270798.900322 norm=33.541020 +1382066.343732 1274983.343732 norm=34.871192 +1382067.312013 1271012.312013 norm=34.684290 +1382085.403877 1272160.403877 norm=34.727511 +1382092.543291 1270427.543291 norm=34.612137 +1382098.623499 1277353.623499 norm=34.727511 +1382113.152874 1268260.152874 norm=34.132096 +1382109.853508 1276121.853508 norm=35.580894 +1382101.892952 1269637.892952 norm=34.568772 +1382128.075557 1276306.075557 norm=34.756294 +1382119.187354 1269876.187354 norm=34.452866 +1382144.241320 1275343.241320 norm=33.852622 +1382157.281704 1274637.281704 norm=35.185224 +1382128.297124 1274261.297124 norm=35.369478 +1382132.753223 1270486.753223 norm=35.510562 +1382152.396027 1270844.396027 norm=34.438351 +1382187.013206 1266115.013206 norm=34.263683 +1382177.475390 1275754.475390 norm=35.298725 +1382169.244464 1262126.244464 norm=35.355339 +1382169.114326 1275544.114326 norm=34.684290 +1382188.464830 1269338.464830 norm=35.256205 +1382184.010366 1274116.010366 norm=34.799425 +1382201.865263 1269055.865263 norm=34.641016 +1382201.891728 1270246.891728 norm=34.785054 +1382222.969923 1275842.969923 norm=34.292856 +1382230.555312 1274391.555312 norm=33.541020 +1382268.487811 1268962.487811 norm=33.030289 +1382262.676829 1271179.676829 norm=34.292856 +1382245.240047 1272723.240047 norm=34.438351 +1382266.001173 1273391.001173 norm=34.438351 +1382275.270998 1276576.270998 norm=34.597688 +1382244.496900 1268988.496900 norm=35.284558 +1382256.009162 1273410.009162 norm=36.469165 +1382247.489855 1271205.489855 norm=34.828150 +1382289.955743 1270941.955743 norm=35.185224 +1382269.983582 1273151.983582 norm=34.452866 +1382308.338080 1272633.338080 norm=35.411862 +1382278.235842 1272945.235842 norm=34.727511 +1382302.890079 1269566.890079 norm=35.608988 +1382290.108473 1272632.108473 norm=35.142567 +1382313.307269 1271636.307269 norm=35.425979 +1382309.670297 1271434.670297 norm=34.525353 +1382336.706531 1274996.706531 norm=34.307434 +1382325.133618 1267982.133618 norm=34.568772 +1382359.889292 1271377.889292 norm=35.128336 +1382337.614439 1271841.614439 norm=35.000000 +1382353.625197 1270312.625197 norm=34.770677 +1382365.196839 1274505.196839 norm=34.626579 +1382373.329088 1272231.329088 norm=34.641016 +1382371.071410 1272975.071410 norm=34.785054 +1382376.370524 1266072.370524 norm=34.510868 +1382393.846260 1272662.846260 norm=34.583233 +1382400.000833 1273650.000833 norm=34.612137 +1382398.019258 1272365.019258 norm=33.660065 +1382420.093661 1274181.093661 norm=34.423829 +1382422.067472 1272386.067472 norm=34.000000 +1382438.317329 1269976.317329 norm=34.205263 +1382434.803347 1274075.803347 norm=34.000000 +1382461.436902 1271020.436902 norm=34.612137 +1382428.881782 1276504.881782 norm=34.885527 +1382448.502471 1271546.502471 norm=34.365681 +1382446.697007 1271672.697007 norm=35.071356 +1382444.155949 1267729.155949 norm=35.071356 +1382447.198154 1275659.198154 norm=36.674242 +1382428.144798 1269607.144798 norm=36.400549 +1382428.497670 1271517.497670 norm=36.041643 +1382464.769382 1271516.769382 norm=35.651087 +1382480.069192 1276869.069192 norm=35.042831 +1382506.655674 1267472.655674 norm=33.331667 +1382521.496101 1272393.496101 norm=33.985291 +1382529.920983 1266756.920983 norm=33.985291 +1382530.758648 1272567.758648 norm=34.669872 +1382516.789299 1276598.789299 norm=33.719431 +1382550.112187 1274492.112187 norm=33.955854 +1382528.660940 1270314.660940 norm=34.481879 +1382539.976275 1273828.976275 norm=34.799425 +1382556.601374 1271448.601374 norm=34.351128 +1382580.535531 1274718.535531 norm=33.481338 +1382571.036811 1272699.036811 norm=34.190642 +1382564.797514 1274881.797514 norm=35.482390 +1382541.782044 1266847.782044 norm=35.510562 +1382562.681972 1274611.681972 norm=35.000000 +1382578.019492 1261147.019492 norm=34.828150 +1382588.859123 1272453.859123 norm=34.234486 +1382609.086570 1269285.086570 norm=35.270384 +1382576.449489 1274272.449489 norm=34.828150 +1382618.724886 1270833.724886 norm=34.423829 +1382628.588453 1274610.588453 norm=33.808283 +1382619.639174 1273050.639174 norm=35.623026 +1382589.518216 1277123.518216 norm=35.749126 +1382631.698074 1269912.698074 norm=34.351128 +1382644.703603 1276964.703603 norm=34.583233 +1382653.929219 1271773.929219 norm=34.205263 +1382651.736014 1275351.736014 norm=34.655447 +1382656.782034 1270665.782034 norm=34.828150 +1382676.246202 1271361.246202 norm=33.256578 +1382697.085903 1273533.085903 norm=35.298725 +1382688.569999 1268270.569999 norm=33.166248 +1382715.746553 1271472.746553 norm=33.852622 +1382705.833278 1270877.833278 norm=33.867388 +1382719.346833 1274919.346833 norm=34.713110 +1382690.781868 1272349.781868 norm=35.057096 +1382726.803642 1271678.803642 norm=33.541020 +1382730.687251 1268826.687251 norm=34.088121 +1382734.079832 1272748.079832 norm=34.073450 +1382734.168954 1270063.168954 norm=34.452866 +1382742.222390 1271455.222390 norm=35.637059 +1382711.631705 1268019.631705 norm=35.916570 +1382734.817142 1274034.817142 norm=34.568772 +1382756.177236 1272590.177236 norm=36.428011 +1382728.839044 1277189.839044 norm=35.679126 +1382743.459456 1266764.459456 norm=35.256205 +1382760.701900 1274300.701900 norm=34.942810 +1382770.125216 1275427.125216 norm=35.028560 +1382792.303231 1276572.303231 norm=35.057096 +1382781.160417 1275493.160417 norm=35.791060 +1382779.031997 1273783.031997 norm=35.000000 +1382799.432581 1267659.432581 norm=34.365681 +1382822.894556 1276728.894556 norm=33.719431 +1382845.213050 1269041.213050 norm=34.568772 +1382817.614188 1273318.614188 norm=34.568772 +1382850.277023 1271810.277023 norm=34.278273 +1382835.428896 1272854.428896 norm=33.852622 +1382852.868220 1271853.868220 norm=34.044089 +1382876.743856 1264956.743856 norm=33.301652 +1382865.309978 1270133.309978 norm=33.941125 +1382875.503775 1276691.503775 norm=34.234486 +1382866.184191 1275867.184191 norm=35.199432 +1382873.261352 1273611.261352 norm=35.114100 +1382863.171123 1273887.171123 norm=34.727511 +1382898.731606 1269707.731606 norm=34.014703 +1382915.822005 1271853.822005 norm=35.028560 +1382890.224580 1270006.224580 norm=34.583233 +1382899.710570 1270922.710570 norm=35.213634 +1382902.017429 1272297.017429 norm=34.205263 +1382922.028993 1271631.028993 norm=35.580894 +1382917.296638 1276391.296638 norm=34.626579 +1382928.885235 1268496.885235 norm=35.383612 +1382933.117827 1274155.117827 norm=35.227830 +1382930.603994 1272388.603994 norm=35.227830 +1382942.133827 1271772.133827 norm=33.689761 +1382986.666015 1270840.666015 norm=33.882149 +1382971.013055 1276710.013055 norm=34.727511 +1382970.762966 1272212.762966 norm=34.176015 +1382991.362115 1269736.362115 norm=34.813790 +1382957.461096 1270289.461096 norm=35.369478 +1382974.963671 1275362.963671 norm=34.669872 +1382993.013315 1269924.013315 norm=34.525353 +1382999.271040 1266543.271040 norm=35.128336 +1383006.096259 1274682.096259 norm=35.227830 +1383003.303490 1270197.303490 norm=35.171011 +1383014.549717 1275229.549717 norm=35.142567 +1383012.471457 1272276.471457 norm=34.525353 +1383038.787010 1270399.787010 norm=34.914181 +1383030.225379 1273914.225379 norm=35.242020 +1383024.024401 1271949.024401 norm=35.930488 +1383040.781850 1272653.781850 norm=34.899857 +1383074.875695 1275242.875695 norm=33.704599 +1383060.844576 1273679.844576 norm=36.013886 +1383023.281854 1269060.281854 norm=36.013886 +1383050.612287 1273888.612287 norm=35.846897 +1383059.712438 1269086.712438 norm=35.085610 +1383084.216859 1266820.216859 norm=34.073450 +1383105.443820 1280152.443820 norm=33.882149 +1383118.041128 1270647.041128 norm=33.970576 +1383121.391206 1274161.391206 norm=33.867388 +1383103.454827 1265346.454827 norm=34.438351 +1383128.223725 1276969.223725 norm=33.749074 +1383144.304156 1269723.304156 norm=34.336569 +1383117.565403 1275461.565403 norm=35.114100 +1383133.801392 1275187.801392 norm=35.468296 +1383139.930110 1274411.930110 norm=34.713110 +1383153.002826 1274728.002826 norm=33.615473 +1383176.532353 1272379.532353 norm=34.205263 +1383167.329631 1273716.329631 norm=34.583233 +1383150.282312 1274701.282312 norm=35.637059 +1383157.183038 1266607.183038 norm=35.538711 +1383169.307546 1278600.307546 norm=34.842503 +1383183.726007 1268913.726007 norm=35.213634 +1383173.268796 1273084.268796 norm=35.397740 +1383188.681827 1275451.681827 norm=35.242020 +1383187.907191 1270024.907191 norm=34.322005 +1383215.304795 1273841.304795 norm=34.481879 +1383226.942328 1273934.942328 norm=34.971417 +1383211.486797 1268194.486797 norm=35.735137 +1383206.503184 1272666.503184 norm=35.383612 +1383247.092600 1269159.092600 norm=34.249088 +1383246.508764 1273145.508764 norm=35.085610 +1383239.248075 1268680.248075 norm=35.608988 +1383232.933098 1275343.933098 norm=35.327043 +1383252.264765 1272053.264765 norm=34.423829 +1383280.504187 1271501.504187 norm=34.278273 +1383290.260710 1270192.260710 norm=34.219877 +1383281.858067 1273866.858067 norm=34.380227 +1383303.227929 1272667.227929 norm=33.911650 +1383321.617650 1273009.617650 norm=35.199432 +1383279.074818 1273522.074818 norm=35.693137 +1383279.879920 1271916.879920 norm=35.057096 +1383321.490525 1269853.490525 norm=34.249088 +1383324.187121 1272605.187121 norm=34.380227 +1383327.657840 1276319.657840 norm=33.734256 +1383355.470334 1270833.470334 norm=33.778692 +1383352.942105 1273323.942105 norm=34.554305 +1383346.076600 1274915.076600 norm=33.985291 +1383365.154504 1272305.154504 norm=34.612137 +1383350.862506 1277325.862506 norm=35.341194 +1383357.297168 1273331.297168 norm=34.190642 +1383380.922484 1275809.922484 norm=33.436507 +1383402.164616 1272426.164616 norm=33.704599 +1383398.579600 1269283.579600 norm=33.719431 +1383420.817640 1271689.817640 norm=33.000000 +1383403.943201 1270531.943201 norm=34.554305 +1383419.636045 1276075.636045 norm=34.713110 +1383407.021591 1273410.021591 norm=34.336569 +1383430.968042 1278037.968042 norm=34.813790 +1383405.676531 1266762.676531 norm=35.608988 +1383407.593988 1272683.593988 norm=34.612137 +1383447.842153 1267752.842153 norm=34.394767 +1383437.019659 1271239.019659 norm=34.957117 +1383441.898044 1274580.898044 norm=34.813790 +1383446.357351 1276132.357351 norm=34.467376 +1383458.752924 1267510.752924 norm=34.146742 +1383474.276431 1276981.276431 norm=34.073450 +1383471.576325 1272237.576325 norm=34.741906 +1383460.226553 1274150.226553 norm=35.213634 +1383474.761990 1268243.761990 norm=34.597688 +1383501.730296 1275926.730296 norm=34.452866 +1383488.679801 1272928.679801 norm=34.914181 +1383491.400688 1273006.400688 norm=35.298725 +1383501.124920 1278502.124920 norm=34.539832 +1383511.386661 1274323.386661 norm=35.355339 +1383503.249527 1273053.249527 norm=35.805028 +1383500.744309 1272026.744309 norm=35.284558 +1383539.850215 1275031.850215 norm=34.828150 +1383527.614029 1271147.614029 norm=35.042831 +1383546.279979 1271639.279979 norm=34.756294 +1383547.075847 1270571.075847 norm=35.213634 +1383545.315250 1272460.315250 norm=34.727511 +1383557.775879 1272323.775879 norm=34.612137 +1383569.514777 1272794.514777 norm=34.394767 +1383568.078348 1269447.078348 norm=34.770677 +1383577.269324 1275325.269324 norm=35.057096 +1383579.474920 1268744.474920 norm=35.425979 +1383575.291241 1279263.291241 norm=34.985711 +1383579.718815 1272404.718815 norm=35.028560 +1383612.405202 1273663.405202 norm=34.626579 +1383596.923574 1269652.923574 norm=34.971417 +1383640.511308 1276465.511308 norm=34.713110 +1383602.837863 1270747.837863 norm=35.327043 +1383621.775843 1275394.775843 norm=34.365681 +1383639.879225 1274029.879225 norm=33.911650 +1383652.786099 1272957.786099 norm=34.263683 +1383665.041073 1271507.041073 norm=34.014703 +1383671.362713 1274499.362713 norm=34.423829 +1383654.851199 1271834.851199 norm=34.971417 +1383654.817801 1277995.817801 norm=34.088121 +1383701.258607 1273784.258607 norm=34.088121 +1383690.888404 1277055.888404 norm=34.481879 +1383691.223731 1272626.223731 norm=34.278273 +1383685.486867 1272342.486867 norm=35.468296 +1383704.908240 1276456.908240 norm=34.597688 +1383699.416382 1273152.416382 norm=34.713110 +1383730.502038 1273281.502038 norm=35.213634 +1383717.937516 1275370.937516 norm=34.088121 +1383754.502931 1275970.502931 norm=34.669872 +1383713.414268 1272954.414268 norm=34.684290 +1383728.644742 1272386.644742 norm=34.928498 +1383743.167383 1267611.167383 norm=34.871192 +1383738.885215 1275682.885215 norm=34.058773 +1383773.961323 1272016.961323 norm=34.102786 +1383769.440349 1273353.440349 norm=34.322005 +1383775.076074 1277134.076074 norm=35.242020 +1383755.018646 1276500.018646 norm=35.749126 +1383769.738172 1273591.738172 norm=34.756294 +1383772.413627 1275449.413627 norm=34.249088 +1383811.882895 1275145.882895 norm=33.955854 +1383838.274488 1272274.274488 norm=33.852622 +1383810.781291 1276767.781291 norm=34.885527 +1383791.100045 1276499.100045 norm=36.027767 +1383808.813648 1273524.813648 norm=34.088121 +1383840.184597 1269449.184598 norm=34.176015 +1383828.272634 1273075.272634 norm=33.941125 +1383872.077310 1272340.077310 norm=34.249088 +1383819.656808 1274488.656808 norm=35.454196 +1383851.326637 1270455.326637 norm=34.554305 +1383841.093505 1272994.093505 norm=35.256205 +1383833.005375 1277117.005375 norm=34.770677 +1383889.561423 1274957.561423 norm=33.704599 +1383874.837178 1272468.837178 norm=35.496479 +1383858.853733 1270047.853733 norm=35.085610 +1383880.475340 1273618.475340 norm=36.152455 +1383875.058718 1273102.058718 norm=34.741906 +1383886.170862 1275894.170862 norm=34.785054 +1383898.041626 1273508.041626 norm=34.380227 +1383921.538565 1264443.538565 norm=34.336569 +1383906.523883 1271738.523883 norm=34.655447 +1383936.839975 1271643.839975 norm=34.322005 +1383924.840452 1274903.840452 norm=35.284558 +1383923.490829 1274633.490829 norm=35.114100 +1383942.495930 1271486.495930 norm=34.698703 +1383933.918041 1277927.918041 norm=34.684290 +1383959.168804 1273209.168804 norm=34.684290 +1383945.364731 1271956.364731 norm=35.524639 +1383962.442135 1273858.442135 norm=34.942810 +1383967.604627 1269833.604627 norm=35.028560 +1383976.129046 1277418.129046 norm=35.014283 +1383975.752847 1273289.752847 norm=35.042831 +1383987.173890 1278654.173890 norm=35.327043 +1383967.954284 1272342.954284 norm=35.468296 +1383997.913885 1270275.913885 norm=33.926391 +1384024.433826 1274446.433826 norm=34.117444 +1384002.726020 1269544.726020 norm=35.270384 +1384008.707276 1277653.707276 norm=35.185224 +1384015.026080 1274665.026080 norm=35.000000 +1384033.740159 1273493.740159 norm=34.409301 +1384032.633460 1275370.633460 norm=34.957117 +1384046.699917 1270007.699917 norm=35.256205 +1384027.882872 1273682.882872 norm=35.749126 +1384057.565909 1274314.565909 norm=35.185224 +1384042.380087 1272467.380087 norm=35.383612 +1384049.088094 1278414.088094 norm=35.482390 +1384064.163954 1271301.163954 norm=35.383612 +1384075.194232 1270994.194232 norm=35.185224 +1384086.628586 1271986.628586 norm=33.719431 +1384115.889478 1273683.889478 norm=34.014703 +1384105.152725 1272734.152725 norm=35.014283 +1384105.738633 1274298.738633 norm=34.496377 +1384103.779722 1270531.779722 norm=35.425979 +1384113.988832 1279479.988832 norm=35.099858 +1384120.585805 1272153.585805 norm=35.014283 +1384123.723084 1271959.723084 norm=34.292856 +1384160.323706 1270322.323706 norm=34.029399 +1384155.004462 1276487.004462 norm=35.270384 +1384153.420987 1269416.420987 norm=34.336569 +1384152.223325 1275851.223325 norm=34.799425 +1384151.415349 1274475.415349 norm=34.727511 +1384176.238795 1274556.238795 norm=34.409301 +1384176.597505 1272765.597505 norm=34.307434 +1384197.727501 1276672.727501 norm=35.440090 +1384161.121001 1272797.121001 norm=35.623026 +1384197.057311 1279031.057311 norm=34.727511 +1384216.118425 1271794.118425 norm=33.852622 +1384216.801033 1270767.801033 norm=34.380227 +1384216.638119 1273894.638119 norm=35.327043 +1384195.671275 1267255.671275 norm=33.867388 +1384251.821297 1277842.821297 norm=34.278273 +1384229.711809 1269614.711809 norm=34.770677 +1384235.921581 1278444.921581 norm=35.270384 +1384226.025018 1271553.025018 norm=35.552778 +1384251.306219 1276031.306219 norm=35.440090 +1384242.887199 1276339.887199 norm=35.270384 +1384268.077466 1271483.077466 norm=33.719431 +1384272.426274 1271161.426274 norm=34.985711 +1384276.219818 1274487.219818 norm=34.263683 +1384289.188651 1273645.188651 norm=33.985291 +1384300.720189 1281231.720189 norm=34.856850 +1384282.440008 1270495.440008 norm=34.452866 +1384292.282596 1273372.282596 norm=35.425979 +1384295.941943 1271967.941943 norm=35.256205 +1384293.086637 1275394.086637 norm=34.799425 +1384330.145066 1265916.145066 norm=33.316662 +1384352.995435 1280414.995435 norm=33.689761 +1384328.057666 1275523.057666 norm=34.058773 +1384356.160568 1279496.160568 norm=33.749074 +1384353.622706 1266711.622706 norm=34.756294 +1384348.617914 1282089.617914 norm=34.322005 +1384361.343922 1274038.343922 norm=33.985291 +1384369.241037 1274572.241037 norm=34.842503 +1384353.224720 1275039.224720 norm=35.566838 +1384355.426906 1270945.426906 norm=35.270384 +1384362.162433 1282849.162433 norm=34.914181 +1384380.746949 1272122.746949 norm=34.842503 +1384389.956842 1276473.956842 norm=34.856850 +1384403.142519 1275296.142519 norm=34.525353 +1384398.406805 1274181.406805 norm=36.345564 +1384381.724464 1273199.724464 norm=35.608988 +1384414.893472 1268000.893472 norm=34.741906 +1384417.143741 1276358.143741 norm=34.813790 +1384434.660472 1267660.660472 norm=35.057096 +1384437.406367 1276295.406367 norm=34.322005 +1384452.936083 1273759.936083 norm=34.029399 +1384471.902307 1272106.902307 norm=34.713110 +1384439.259103 1278263.259103 norm=35.042831 +1384456.623695 1271294.623695 norm=34.568772 +1384451.584945 1276497.584945 norm=35.468296 +1384460.825246 1269735.825246 norm=34.219877 +1384485.927020 1276152.927020 norm=33.882149 +1384498.114861 1267915.114861 norm=34.380227 +1384491.186000 1277777.186000 norm=34.336569 +1384490.530971 1273943.530971 norm=34.669872 +1384501.303756 1273459.303756 norm=34.770677 +1384502.765753 1272072.765753 norm=34.828150 +1384493.721846 1274969.721846 norm=34.351128 +1384544.709923 1269397.709923 norm=33.955854 +1384541.049592 1275609.049592 norm=34.409301 +1384537.497642 1272858.497642 norm=34.467376 +1384533.906396 1272591.906396 norm=34.971417 +1384535.070093 1279105.070093 norm=35.524639 +1384547.736628 1272386.736628 norm=34.322005 +1384556.481831 1277963.481831 norm=35.327043 +1384553.291295 1275261.291295 norm=34.727511 +1384560.821897 1279241.821897 norm=35.213634 +1384559.082608 1272070.082608 norm=34.727511 +1384585.119489 1271828.119489 norm=35.623026 +1384549.205567 1277616.205567 norm=35.042831 +1384601.195072 1273917.195072 norm=34.871192 +1384592.399232 1277040.399232 norm=34.525353 +1384619.707516 1276859.707516 norm=34.278273 +1384621.677843 1273828.677843 norm=35.270384 +1384588.587636 1270610.587636 norm=35.355339 +1384614.515194 1270677.515194 norm=33.511192 +1384649.363713 1275857.363713 norm=33.985291 +1384640.710240 1276018.710240 norm=34.249088 +1384646.116655 1278318.116655 norm=35.085610 +1384640.740685 1273257.740685 norm=34.409301 +1384665.357673 1271375.357673 norm=35.128336 +1384648.697628 1279743.697628 norm=35.496479 +1384635.005509 1268630.005509 norm=35.142567 +1384695.948055 1277005.948055 norm=34.365681 +1384671.057238 1271612.057238 norm=34.770677 +1384697.266399 1275628.266399 norm=34.176015 +1384699.840031 1272382.840031 norm=34.409301 +1384687.916570 1276758.916570 norm=35.114100 +1384689.050942 1275179.050942 norm=35.707142 +1384691.241947 1270117.241947 norm=34.539832 +1384712.791607 1277466.791607 norm=35.454196 +1384705.582550 1276493.582550 norm=35.185224 +1384720.392863 1279433.392863 norm=35.411862 +1384708.433516 1276201.433516 norm=34.971417 +1384742.701092 1270315.701092 norm=34.655447 +1384765.636314 1277258.636314 norm=33.421550 +1384752.006349 1269103.006349 norm=35.028560 +1384758.886520 1271378.886520 norm=34.842503 +1384748.124967 1273214.124967 norm=35.171011 +1384775.125970 1274407.125970 norm=34.539832 +1384770.677747 1270973.677747 norm=35.256205 +1384763.189099 1273869.189099 norm=35.651087 +1384774.415376 1273077.415376 norm=34.899857 +1384789.254122 1273659.254122 norm=34.452866 +1384795.066345 1273762.066345 norm=36.083237 +1384780.681946 1281008.681946 norm=34.813790 +1384816.269844 1274381.269844 norm=34.249088 +1384821.367373 1276509.367373 norm=34.510868 +1384830.767898 1272191.767898 norm=35.071356 +1384823.567222 1277631.567222 norm=34.554305 +1384832.601176 1272289.601176 norm=35.071356 +1384854.561949 1279729.561949 norm=34.234486 +1384846.635964 1273457.635964 norm=34.871192 +1384841.090475 1280251.090475 norm=35.679126 +1384850.788280 1270505.788280 norm=34.957117 +1384860.649311 1274816.649311 norm=34.423829 +1384877.615874 1269356.615874 norm=34.928498 +1384859.209398 1278333.209398 norm=34.597688 +1384903.950000 1275559.950000 norm=34.539832 +1384870.618994 1278331.618994 norm=34.942810 +1384894.035825 1270174.035825 norm=34.713110 +1384897.227225 1279560.227225 norm=34.655447 +1384914.766255 1273052.766255 norm=34.029399 +1384922.720508 1282041.720508 norm=34.842503 +1384912.839684 1269688.839684 norm=34.626579 +1384925.710486 1275100.710486 norm=35.707142 +1384902.483891 1275963.483891 norm=35.000000 +1384939.327841 1271638.327841 norm=34.117444 +1384958.398477 1276787.398477 norm=34.044089 +1384951.733805 1271904.733805 norm=34.336569 +1384959.959342 1273354.959342 norm=35.213634 +1384930.240891 1276572.240891 norm=36.496575 +1384948.690529 1277661.690529 norm=34.481879 +1384958.312272 1270280.312272 norm=35.986108 +1384972.966598 1280607.966598 norm=34.597688 +1384977.818841 1272343.818841 norm=35.735137 +1384982.129974 1278714.129974 norm=34.568772 +1385013.426507 1272976.426507 norm=34.713110 +1384986.819324 1273421.819324 norm=35.763109 +1384979.350514 1269623.350514 norm=36.069378 +1384998.921767 1279654.921767 norm=35.185224 +1385018.077255 1269903.077255 norm=35.341194 +1385021.429588 1276539.429588 norm=34.146742 +1385030.878134 1268811.878134 norm=34.481879 +1385029.425466 1278039.425466 norm=34.770677 +1385033.277870 1272933.277870 norm=35.000000 +1385042.070947 1276898.070947 norm=35.735137 +1385031.671043 1277672.671043 norm=35.114100 +1385064.544247 1275560.544247 norm=34.307434 +1385086.898785 1274122.898785 norm=33.689761 +1385083.698735 1275775.698735 norm=34.583233 +1385087.305513 1280010.305513 norm=33.985291 +1385089.619468 1272764.619468 norm=34.856850 +1385095.792871 1280692.792871 norm=34.813790 +1385093.738154 1275207.738154 norm=34.914181 +1385096.926141 1278303.926141 norm=34.655447 +1385124.805776 1273360.805776 norm=33.704599 +1385139.525491 1278300.525491 norm=34.481879 +1385125.512242 1272173.512242 norm=34.554305 +1385114.446297 1273784.446297 norm=34.899857 +1385143.056228 1276207.056228 norm=34.785054 +1385136.199722 1278174.199722 norm=34.336569 +1385156.321077 1270263.321077 norm=34.423829 +1385137.326826 1278272.326826 norm=34.713110 +1385154.275798 1269885.275798 norm=35.270384 +1385155.579003 1281802.579003 norm=34.190642 +1385187.345589 1274088.345589 norm=34.292856 +1385180.047889 1280525.047889 norm=33.511192 +1385208.409120 1276858.409120 norm=34.842503 +1385194.250617 1275092.250617 norm=33.867388 +1385211.864821 1273168.864821 norm=34.205263 +1385205.024952 1273812.024952 norm=35.930488 +1385166.157542 1278180.157542 norm=36.606010 +1385187.591220 1279609.591220 norm=36.138622 +1385180.957350 1272968.957350 norm=35.665109 +1385221.394297 1277792.394297 norm=35.749126 +1385208.667486 1275559.667486 norm=35.128336 +1385224.601990 1274106.601990 norm=34.263683 +1385245.181225 1274129.181225 norm=35.057096 +1385228.898718 1274310.898718 norm=35.383612 +1385253.377486 1276934.377486 norm=35.028560 +1385258.587154 1279031.587154 norm=34.568772 +1385262.505937 1280583.505937 norm=34.568772 +1385291.794601 1274516.794601 norm=34.467376 +1385285.047252 1275018.047252 norm=34.828150 +1385271.371760 1272384.371760 norm=35.468296 +1385270.267625 1275830.267625 norm=35.057096 +1385289.633369 1278394.633369 norm=35.383612 +1385285.738151 1273635.738151 norm=35.185224 +1385292.904758 1277889.904758 norm=35.256205 +1385304.839522 1273361.839522 norm=35.312887 +1385303.467857 1276960.467857 norm=35.057096 +1385318.257725 1274232.257725 norm=34.684290 +1385329.046096 1271398.046096 norm=34.914181 +1385332.907769 1280281.907769 norm=35.000000 +1385330.049191 1269918.049191 norm=33.970576 +1385378.743449 1277596.743449 norm=34.000000 +1385344.499000 1276169.499000 norm=34.985711 +1385368.566790 1275795.566790 norm=33.837849 +1385372.510388 1279810.510388 norm=34.205263 +1385392.734882 1277594.734882 norm=34.928498 +1385354.198935 1275627.198935 norm=35.651087 +1385382.706260 1275163.706260 norm=36.124784 +1385370.992018 1274328.992018 norm=34.899857 +1385393.095251 1279011.095251 norm=35.930488 +1385385.123475 1274393.123475 norm=35.156792 +1385399.449758 1278446.449758 norm=34.813790 +1385406.133886 1281777.133886 norm=34.684290 +1385411.900297 1277650.900297 norm=36.000000 +1385394.970843 1272727.970843 norm=35.128336 +1385417.709097 1280338.709097 norm=35.818989 +1385441.787607 1275481.787607 norm=34.568772 +1385438.946894 1275974.946894 norm=34.554305 +1385452.353798 1276157.353798 norm=35.665109 +1385440.256540 1276310.256540 norm=35.042831 +1385458.358887 1281085.358887 norm=35.580894 +1385446.691993 1282437.691993 norm=35.482390 +1385458.499455 1270651.499455 norm=34.263683 +1385474.929105 1272469.929105 norm=34.899857 +1385473.380793 1274701.380793 norm=34.073450 +1385510.870389 1278135.870389 norm=34.132096 +1385524.747374 1274866.747374 norm=33.823069 +1385514.717947 1281619.717947 norm=34.727511 +1385492.734091 1273443.734091 norm=35.171011 +1385510.306596 1274841.306596 norm=35.524639 +1385502.542748 1279236.542748 norm=34.626579 +1385530.456049 1274090.456049 norm=34.481879 +1385548.841619 1280623.841619 norm=34.713110 +1385529.750207 1268971.750207 norm=34.146742 +1385572.978253 1281776.978253 norm=35.468296 +1385525.359053 1276427.359053 norm=34.799425 +1385558.600046 1270165.600046 norm=34.813790 +1385547.431931 1276822.431931 norm=35.594943 +1385547.847001 1275385.847001 norm=36.318040 +1385546.852562 1273153.852562 norm=34.928498 +1385587.571506 1276332.571506 norm=34.568772 +1385581.569587 1279142.569587 norm=34.044089 +1385616.115190 1278334.115190 norm=33.630343 +1385602.148082 1280278.148082 norm=35.665109 +1385569.853331 1275613.853331 norm=35.270384 +1385616.788279 1279656.788279 norm=35.014283 +1385600.684435 1275754.684435 norm=35.454196 +1385604.236726 1277075.236726 norm=35.651087 +1385608.721378 1277920.721378 norm=34.626579 +1385643.179336 1277054.179336 norm=34.510868 +1385627.413636 1275554.413636 norm=34.525353 +1385648.993770 1276888.993770 norm=33.970576 +1385657.678584 1279389.678584 norm=35.185224 +1385662.330643 1275039.330643 norm=33.763886 +1385677.355802 1278375.355802 norm=34.828150 +1385678.846980 1272319.846980 norm=34.394767 +1385662.734631 1283845.734631 norm=35.735137 +1385657.467529 1271881.467529 norm=35.383612 +1385681.215860 1278072.215860 norm=35.454196 +1385675.062593 1272411.062593 norm=35.369478 +1385686.252787 1277711.252787 norm=35.637059 +1385698.724533 1271880.724533 norm=34.899857 +1385703.420963 1281171.420963 norm=35.242020 +1385707.175914 1277789.175914 norm=34.813790 +1385711.929464 1278184.929464 norm=35.355339 +1385710.241073 1276497.241073 norm=34.741906 +1385721.920715 1276141.920715 norm=35.791060 +1385721.786587 1270858.786587 norm=34.219877 +1385755.288637 1283301.288637 norm=35.355339 +1385731.634199 1273655.634199 norm=34.481879 +1385765.848744 1274585.848744 norm=34.510868 +1385773.658177 1273119.658177 norm=34.655447 +1385764.866362 1281128.866362 norm=35.028560 +1385778.802698 1279614.802698 norm=35.608988 +1385761.751862 1278033.751862 norm=35.256205 +1385761.506519 1275423.506519 norm=35.496479 +1385784.206759 1279707.206759 norm=35.128336 +1385810.911445 1277325.911445 norm=34.190642 +1385802.066035 1283240.066035 norm=35.284558 +1385789.018265 1277665.018265 norm=35.057096 +1385827.380311 1279793.380311 norm=34.539832 +1385805.351114 1274572.351114 norm=34.409301 +1385831.675545 1276047.675545 norm=33.955854 +1385852.803457 1278217.803457 norm=33.704599 +1385854.698901 1280823.698901 norm=33.867388 +1385852.011738 1274728.011738 norm=35.369478 +1385818.457915 1275532.457915 norm=34.727511 +1385872.970271 1280025.970271 norm=34.263683 +1385861.896154 1273797.896154 norm=35.440090 +1385850.718802 1275423.718802 norm=35.972211 +1385848.584595 1275286.584595 norm=35.213634 +1385872.493201 1275975.493201 norm=35.042831 +1385882.078573 1277226.078573 norm=34.307434 +1385896.250899 1279862.250899 norm=34.583233 +1385912.823658 1279131.823658 norm=34.713110 +1385905.753702 1279335.753702 norm=34.626579 +1385907.805803 1276840.805803 norm=34.467376 +1385919.791455 1273667.791455 norm=33.837849 +1385947.443124 1277825.443124 norm=34.263683 +1385932.326139 1277280.326139 norm=34.583233 +1385915.252553 1281135.252553 norm=35.185224 +1385942.913163 1275799.913163 norm=34.452866 +1385946.547973 1277018.547973 norm=34.928498 +1385946.645973 1273852.645973 norm=35.369478 +1385949.762351 1277599.762351 norm=35.580894 +1385937.694498 1275512.694498 norm=35.651087 +1385964.228505 1282746.228505 norm=35.185224 +1385962.072843 1276016.072843 norm=34.885527 +1385986.450989 1286155.450989 norm=34.871192 +1385972.717768 1274657.717768 norm=36.510273 +1385960.631544 1275892.631544 norm=36.276714 +1385977.172255 1278875.172255 norm=35.958309 +1385996.023765 1276287.023765 norm=35.312887 +1385995.344669 1276749.344669 norm=35.425979 +1386005.170659 1280694.170659 norm=34.336569 +1386030.412986 1276396.412986 norm=34.713110 +1386024.918897 1276478.918897 norm=34.626579 +1386007.719043 1277690.719043 norm=34.205263 +1386060.499527 1273757.499527 norm=34.014703 +1386032.023895 1280703.023895 norm=35.242020 +1386042.791702 1275493.791702 norm=34.985711 +1386041.532086 1277390.532086 norm=35.902646 +1386052.815740 1284607.815740 norm=35.369478 +1386050.031143 1276332.031143 norm=34.684290 +1386074.296035 1273851.296035 norm=34.249088 +1386088.234920 1279146.234920 norm=34.770677 +1386100.617005 1276528.617005 norm=35.000000 +1386075.339612 1278243.339612 norm=34.914181 +1386097.371913 1276006.371913 norm=35.156792 +1386104.089072 1273103.089072 norm=34.365681 +1386111.950314 1282920.950314 norm=34.307434 +1386119.196358 1278248.196358 norm=35.071356 +1386112.700127 1279921.700127 norm=34.713110 +1386127.650030 1273340.650030 norm=34.856850 +1386118.864244 1278522.864244 norm=35.482390 +1386123.778236 1278656.778236 norm=34.583233 +1386134.509233 1280017.509233 norm=35.298725 +1386136.305901 1276252.305901 norm=35.028560 +1386161.458300 1274090.458301 norm=34.957117 +1386146.039409 1283265.039409 norm=34.985711 +1386173.073714 1276380.073714 norm=34.219877 +1386188.428674 1277575.428674 norm=34.365681 +1386180.423949 1275447.423949 norm=33.600595 +1386221.233239 1282639.233239 norm=34.641016 +1386168.432484 1274882.432484 norm=34.785054 +1386195.039223 1278101.039223 norm=35.242020 +1386197.938609 1273061.938609 norm=34.971417 +1386198.318997 1280078.318997 norm=35.270384 +1386212.799230 1277216.799230 norm=35.735137 +1386199.829542 1282415.829542 norm=35.651087 +1386198.069608 1281676.069608 norm=35.397740 +1386209.497703 1271213.497703 norm=35.341194 +1386224.860594 1280420.860594 norm=35.213634 +1386254.486608 1272763.486608 norm=34.510868 +1386236.216485 1277069.216485 norm=34.583233 +1386242.877221 1277863.877221 norm=34.727511 +1386269.331422 1282762.331422 norm=34.322005 +1386277.488212 1276596.488212 norm=34.583233 +1386277.626196 1281816.626196 norm=33.749074 +1386288.433988 1278138.433988 norm=35.014283 +1386276.408634 1277270.408634 norm=34.756294 +1386279.694334 1275529.694334 norm=34.770677 +1386301.361773 1281493.361773 norm=33.674916 +1386308.518573 1280197.518573 norm=34.597688 +1386304.060161 1278180.060161 norm=35.256205 +1386305.501036 1281253.501036 norm=34.626579 +1386300.160417 1273433.160417 norm=35.902646 +1386319.728037 1275073.728037 norm=34.641016 +1386320.339224 1278339.339224 norm=35.916570 +1386310.744613 1273325.744613 norm=35.355339 +1386313.942885 1277445.942885 norm=35.860842 +1386341.023876 1278512.023876 norm=34.741906 +1386353.411171 1285601.411171 norm=34.942810 +1386366.354861 1270490.354861 norm=35.552778 +1386335.810196 1277616.810196 norm=36.510273 +1386334.154411 1273269.154411 norm=36.482873 +1386343.368256 1282014.368256 norm=35.185224 +1386372.092147 1275497.092147 norm=34.525353 +1386395.763720 1276852.763720 norm=34.525353 +1386402.416970 1277858.416970 norm=34.176015 +1386390.422947 1279596.422947 norm=35.355339 +1386401.556906 1278546.556906 norm=34.583233 +1386417.082246 1278306.082246 norm=34.957117 +1386413.276212 1273703.276212 norm=34.029399 +1386433.899734 1276664.899734 norm=34.885527 +1386417.209971 1277964.209971 norm=35.071356 +1386416.643726 1282054.643726 norm=35.213634 +1386432.578573 1280625.578573 norm=35.735137 +1386429.570187 1277877.570187 norm=34.190642 +1386459.054542 1272054.054542 norm=34.438351 +1386447.023133 1279933.023133 norm=35.986108 +1386467.368317 1279069.368317 norm=34.117444 +1386461.522116 1279805.522116 norm=34.756294 +1386481.185177 1277490.185177 norm=34.641016 +1386488.545438 1279644.545438 norm=34.322005 +1386491.429475 1282242.429475 norm=34.626579 +1386482.686025 1275437.686025 norm=35.227830 +1386503.911995 1275220.911995 norm=35.171011 +1386472.507331 1286111.507331 norm=35.482390 +1386508.312562 1279604.312562 norm=34.525353 +1386527.161121 1284872.161121 norm=34.438351 +1386523.640090 1275399.640090 norm=35.028560 +1386504.907092 1282442.907092 norm=34.828150 +1386532.076693 1275147.076693 norm=34.132096 +1386556.571340 1280330.571340 norm=32.954514 +1386575.636319 1273642.636319 norm=34.409301 +1386545.677246 1280229.677246 norm=34.669872 +1386549.352225 1278268.352225 norm=35.735137 +1386526.892905 1278772.892905 norm=36.069378 +1386552.288669 1279071.288669 norm=34.496377 +1386580.824914 1282098.824914 norm=34.263683 +1386565.202735 1278213.202735 norm=35.213634 +1386565.070957 1282422.070957 norm=34.713110 +1386596.779794 1276392.779794 norm=34.871192 +1386595.347023 1278645.347023 norm=35.552778 +1386574.268407 1277745.268407 norm=35.256205 +1386599.285607 1279954.285607 norm=35.651087 +1386593.270713 1277624.270713 norm=35.327043 +1386604.854293 1281588.854293 norm=36.290495 +1386609.014256 1275826.014256 norm=34.292856 +1386631.422041 1279551.422041 norm=34.799425 +1386637.256735 1277752.256735 norm=34.234486 +1386640.503856 1288167.503856 norm=35.327043 +1386617.147625 1274623.147625 norm=36.110940 +1386630.271624 1287234.271624 norm=34.336569 +1386678.779582 1273441.779582 norm=34.146742 +1386672.214403 1282765.214403 norm=34.205263 +1386663.969444 1277210.969444 norm=35.341194 +1386670.835358 1284209.835358 norm=34.741906 +1386679.385162 1274774.385162 norm=35.085610 +1386683.285976 1280017.285976 norm=33.808283 +1386705.386015 1276040.386015 norm=34.423829 +1386687.919614 1284005.919614 norm=35.411862 +1386680.528513 1274783.528513 norm=35.341194 +1386712.790948 1278888.790948 norm=33.955854 +1386707.843665 1280878.843665 norm=35.749126 +1386705.814811 1281554.814811 norm=34.914181 +1386723.392625 1277500.392625 norm=34.871192 +1386728.477759 1281716.477759 norm=34.971417 +1386728.590697 1278823.590697 norm=34.481879 +1386748.762532 1283381.762532 norm=34.132096 +1386749.178338 1277261.178338 norm=34.496377 +1386757.651618 1277508.651618 norm=35.383612 +1386734.283283 1282464.283283 norm=35.411862 +1386775.568034 1278541.568034 norm=33.719431 +1386768.686715 1288211.686715 norm=34.756294 +1386781.873820 1275371.873820 norm=34.655447 +1386778.576317 1282108.576317 norm=34.842503 +1386802.696467 1277108.696467 norm=34.438351 +1386785.916105 1282459.916105 norm=34.684290 +1386812.260016 1274606.260016 norm=34.146742 +1386796.397864 1277623.397864 norm=34.467376 +1386820.604229 1279127.604229 norm=35.199432 +1386787.113967 1278903.113967 norm=35.552778 +1386815.814192 1279137.814192 norm=35.057096 +1386822.624727 1281378.624727 norm=34.597688 +1386845.819014 1278992.819014 norm=35.227830 +1386812.953285 1276144.953285 norm=35.944402 +1386834.214977 1280238.214977 norm=35.256205 +1386845.161846 1278000.161846 norm=35.270384 +1386848.129691 1283156.129691 norm=35.057096 +1386851.512989 1280944.512989 norm=34.871192 +1386873.809961 1280608.809961 norm=34.409301 +1386843.787028 1280775.787028 norm=35.425979 +1386886.616962 1278249.616962 norm=34.770677 +1386878.437547 1284924.437547 norm=34.438351 +1386884.755217 1276257.755217 norm=35.156792 +1386880.538805 1276101.538805 norm=35.014283 +1386906.969414 1279048.969414 norm=34.088121 +1386920.987513 1276053.987513 norm=34.307434 +1386930.798264 1276057.798264 norm=34.756294 +1386911.985043 1284344.985043 norm=35.057096 +1386921.502700 1276166.502700 norm=34.568772 +1386935.034204 1287479.034204 norm=34.756294 +1386917.543665 1281915.543665 norm=35.594943 +1386923.143999 1281369.143999 norm=35.665109 +1386935.824098 1278795.824098 norm=34.496377 +1386950.929742 1283996.929742 norm=34.669872 +1386973.304005 1277787.304005 norm=34.394767 +1386971.403527 1274708.403527 norm=34.799425 +1386973.058370 1281157.058370 norm=34.899857 +1386964.047353 1286041.047353 norm=34.058773 +1386985.078076 1282443.078076 norm=34.249088 +1386984.913882 1278138.913882 norm=35.524639 +1386970.416258 1281206.416258 norm=35.972211 +1386989.704588 1277732.704588 norm=35.552778 +1386990.113924 1279233.113924 norm=35.156792 +1387000.860723 1281261.860723 norm=34.957117 +1387002.349229 1278940.349229 norm=34.914181 +1387014.367405 1281075.367405 norm=35.028560 +1387006.967289 1279348.967289 norm=35.199432 +1387019.342518 1280874.342518 norm=35.454196 +1387019.387733 1281205.387733 norm=34.626579 +1387055.355867 1277262.355867 norm=34.452866 +1387043.913048 1281047.913048 norm=34.336569 +1387061.660168 1279575.660168 norm=34.770677 +1387048.448199 1282810.448199 norm=34.684290 +1387069.023467 1277055.023467 norm=34.669872 +1387083.157566 1281274.157566 norm=33.719431 +1387070.908224 1279506.908224 norm=35.156792 +1387068.535392 1277056.535392 norm=34.756294 +1387088.650328 1282766.650328 norm=35.227830 +1387086.097945 1283029.097945 norm=35.482390 +1387075.463985 1278759.463985 norm=34.597688 +1387116.094894 1283524.094894 norm=34.000000 +1387110.421617 1280920.421617 norm=34.942810 +1387118.560601 1280623.560601 norm=34.942810 +1387112.592443 1280728.592443 norm=34.799425 +1387130.471453 1279507.471453 norm=34.713110 +1387120.889550 1280823.889550 norm=35.693137 +1387127.631736 1282016.631736 norm=34.957117 +1387136.767654 1274076.767654 norm=34.885527 +1387128.251599 1279230.251599 norm=36.027767 +1387145.494848 1276060.494848 norm=34.957117 +1387155.484676 1283368.484676 norm=34.336569 +1387176.893395 1278923.893395 norm=34.496377 +1387147.351035 1281897.351035 norm=35.594943 +1387168.750969 1287239.750969 norm=34.583233 +1387180.018580 1278431.018580 norm=35.791060 +1387160.830618 1282600.830618 norm=35.270384 +1387188.092311 1278683.092311 norm=34.655447 +1387210.955020 1277192.955020 norm=34.928498 +1387212.293876 1283762.293876 norm=34.899857 +1387193.102907 1280578.102907 norm=34.942810 +1387234.732479 1282455.732479 norm=34.828150 +1387215.464418 1281849.464418 norm=34.423829 +1387239.230588 1275619.230588 norm=34.438351 +1387235.336147 1278468.336147 norm=34.871192 +1387237.522938 1285989.522938 norm=34.292856 +1387246.115177 1281801.115177 norm=34.394767 +1387251.747217 1280289.747217 norm=34.176015 +1387257.573332 1279210.573332 norm=35.749126 +1387231.182301 1280342.182301 norm=35.199432 +1387257.298813 1279733.298813 norm=34.626579 +1387269.350195 1277087.350195 norm=34.799425 +1387277.196491 1286375.196491 norm=35.028560 +1387267.962696 1280470.962696 norm=34.713110 +1387289.286319 1282741.286319 norm=34.583233 +1387308.030319 1274961.030319 norm=34.568772 +1387303.448580 1285063.448580 norm=34.365681 +1387328.903260 1285624.903260 norm=34.029399 +1387308.322909 1281923.322909 norm=34.496377 +1387330.987464 1275356.987464 norm=34.467376 +1387314.087574 1284467.087574 norm=33.882149 +1387352.014074 1279029.014074 norm=34.044089 +1387334.941710 1285152.941710 norm=34.770677 +1387344.201968 1283883.201968 norm=34.278273 +1387335.688038 1281261.688038 norm=34.292856 +1387354.815118 1276241.815118 norm=34.365681 +1387369.333097 1283935.333097 norm=34.380227 +1387367.715494 1278935.715494 norm=34.985711 +1387341.369983 1286286.369983 norm=34.971417 +1387380.837102 1279167.837102 norm=34.612137 +1387372.851315 1284008.851315 norm=35.227830 +1387382.087396 1280362.087396 norm=35.270384 +1387380.046141 1282981.046141 norm=34.871192 +1387395.851421 1276114.851421 norm=35.171011 +1387392.849329 1284157.849329 norm=34.770677 +1387409.819984 1279321.819984 norm=33.823069 +1387430.352546 1286479.352546 norm=34.117444 +1387416.409106 1278551.409106 norm=34.856850 +1387417.796580 1287705.796580 norm=34.380227 +1387434.470896 1275141.470896 norm=33.763886 +1387445.492691 1280162.492691 norm=34.842503 +1387419.694029 1280569.694029 norm=34.914181 +1387455.809192 1281834.809192 norm=34.234486 +1387465.157041 1280435.157041 norm=34.525353 +1387448.633404 1281810.633404 norm=34.641016 +1387463.242703 1281063.242703 norm=34.669872 +1387468.620420 1282300.620420 norm=34.380227 +1387466.882967 1282300.882967 norm=35.327043 +1387482.211302 1279135.211302 norm=34.394767 +1387488.935409 1283566.935409 norm=34.249088 +1387479.696486 1276040.696486 norm=34.842503 +1387489.453682 1280088.453682 norm=35.270384 +1387493.716024 1279233.716024 norm=35.185224 +1387491.631796 1278683.631796 norm=34.205263 +1387543.992008 1276263.992008 norm=34.914181 +1387490.092797 1284236.092797 norm=35.665109 +1387514.924363 1284231.924363 norm=35.440090 +1387524.127043 1284642.127043 norm=34.467376 +1387544.189984 1278539.189984 norm=35.227830 +1387516.764761 1284380.764761 norm=34.088121 +1387543.692015 1286179.692015 norm=34.205263 +1387549.932878 1280613.932878 norm=35.042831 +1387551.867690 1280624.867690 norm=34.799425 +1387564.228331 1283671.228331 norm=33.955854 +1387571.693365 1281691.693365 norm=35.028560 +1387581.548288 1284387.548288 norm=34.409301 +1387564.429202 1280671.429202 norm=35.028560 +1387591.062268 1281691.062268 norm=34.336569 +1387581.467682 1279345.467682 norm=34.132096 +1387606.447016 1281794.447016 norm=34.205263 +1387600.040265 1280718.040265 norm=35.482390 +1387602.035993 1282345.035993 norm=34.000000 +1387610.903770 1280495.903770 norm=34.307434 +1387634.123768 1276149.123768 norm=34.813790 +1387612.320473 1279390.320473 norm=35.185224 +1387618.713075 1285357.713075 norm=35.085610 +1387622.337697 1283621.337697 norm=34.713110 +1387643.578393 1284727.578393 norm=34.307434 +1387658.948975 1277729.948975 norm=35.679126 +1387630.241508 1286914.241508 norm=35.411862 +1387648.657445 1282494.657445 norm=33.941125 +1387671.775588 1284393.775588 norm=34.234486 +1387684.395221 1276155.395221 norm=34.971417 +1387662.252234 1288290.252234 norm=34.799425 +1387674.376458 1280374.376458 norm=34.394767 +1387696.998893 1287212.998893 norm=34.655447 +1387668.447559 1280325.447559 norm=34.828150 +1387693.945509 1283981.945509 norm=35.383612 +1387682.210714 1281519.210714 norm=34.698703 +1387714.723243 1280171.723243 norm=34.249088 +1387722.017825 1275607.017825 norm=34.539832 +1387712.599037 1280452.599037 norm=34.885527 +1387725.465003 1281113.465003 norm=34.307434 +1387733.885772 1282478.885772 norm=34.669872 +1387729.145299 1282115.145299 norm=35.482390 +1387724.104180 1283790.104180 norm=34.914181 +1387745.738368 1280090.738368 norm=34.597688 +1387751.317744 1283454.317744 norm=34.899857 +1387769.742188 1282952.742188 norm=35.142567 +1387743.670465 1288864.670465 norm=34.423829 +1387788.320485 1278723.320485 norm=33.615473 +1387773.655673 1287696.655673 norm=35.242020 +1387774.372581 1279429.372581 norm=34.899857 +1387761.618258 1280997.618258 norm=35.411862 +1387788.277938 1277370.277938 norm=34.914181 +1387789.821265 1288191.821265 norm=34.380227 +1387816.581611 1275850.581611 norm=34.612137 +1387811.928169 1285618.928169 norm=34.612137 +1387821.714687 1280377.714687 norm=34.452866 +1387819.059904 1283255.059904 norm=34.073450 +1387839.093370 1277610.093370 norm=34.741906 +1387832.248729 1276304.248729 norm=34.423829 +1387841.590582 1278868.590582 norm=34.914181 +1387823.042761 1283735.042761 norm=35.355339 +1387841.211326 1279455.211326 norm=35.057096 +1387850.584776 1288722.584776 norm=34.741906 +1387850.566641 1274249.566641 norm=35.763109 +1387845.278656 1281910.278656 norm=34.510868 +1387878.781926 1283207.781926 norm=33.896903 +1387890.386683 1285613.386683 norm=33.793490 +1387879.526185 1281724.526185 norm=33.896903 +1387890.235701 1289654.235701 norm=35.171011 +1387894.589409 1281167.589409 norm=34.132096 +1387911.086568 1286854.086568 norm=33.615473 +1387921.345768 1276381.345768 norm=33.955854 +1387918.850471 1288487.850471 norm=35.242020 +1387883.835825 1278901.835825 norm=35.185224 +1387917.786212 1287020.786212 norm=34.928498 +1387918.021026 1281770.021026 norm=34.612137 +1387941.320030 1288663.320030 norm=34.813790 +1387939.305060 1278985.305060 norm=35.057096 +1387934.539128 1285120.539128 norm=34.117444 +1387955.656608 1279853.656608 norm=34.856850 +1387956.808740 1286285.808740 norm=34.885527 +1387943.806198 1279255.806198 norm=35.142567 +1387965.755583 1279961.755583 norm=34.583233 +1387961.282861 1277578.282861 norm=35.482390 +1387951.419909 1281083.419909 norm=34.698703 +1387984.245930 1285808.245930 norm=34.161382 +1387994.020711 1282044.020711 norm=35.369478 +1387970.861409 1287370.861409 norm=35.482390 +1387997.784421 1284390.784421 norm=33.719431 +1388013.615126 1279643.615126 norm=34.029399 +1388011.022004 1286625.022004 norm=34.568772 +1388013.381557 1283725.381557 norm=34.713110 +1388010.829694 1281892.829694 norm=35.213634 +1387995.358719 1284737.358719 norm=35.312887 +1388019.311717 1281345.311717 norm=35.763109 +1388003.532443 1281988.532443 norm=35.805028 +1388035.849771 1280561.849771 norm=34.102786 +1388038.269422 1283830.269422 norm=34.452866 +1388065.367094 1283731.367094 norm=34.336569 +1388049.749544 1279800.749544 norm=35.270384 +1388061.748251 1285550.748251 norm=35.028560 +1388058.866521 1279335.866521 norm=34.655447 +1388094.362889 1284527.362889 norm=34.278273 +1388077.017627 1284175.017627 norm=34.292856 +1388087.445858 1282007.445858 norm=34.741906 +1388088.682067 1283766.682067 norm=34.597688 +1388087.671474 1278136.671474 norm=35.171011 +1388094.586077 1285489.586077 norm=34.828150 +1388104.706676 1282420.706676 norm=34.190642 +1388098.575964 1283381.575964 norm=34.785054 +1388121.159878 1280313.159878 norm=35.256205 +1388104.656163 1284138.656163 norm=34.928498 +1388121.061627 1284009.061627 norm=34.713110 +1388131.176346 1278961.176346 norm=34.481879 +1388145.601754 1281690.601754 norm=34.539832 +1388146.613864 1285536.613864 norm=33.793490 +1388173.932348 1283378.932348 norm=34.380227 +1388140.242865 1281302.242865 norm=35.128336 +1388150.853518 1285040.853518 norm=35.171011 +1388148.168380 1282585.168380 norm=35.128336 +1388154.814209 1282810.814209 norm=34.539832 +1388188.621761 1283475.621761 norm=33.926391 +1388187.998493 1284568.998493 norm=34.856850 +1388189.251967 1280872.251967 norm=34.813790 +1388192.802231 1282638.802231 norm=33.541020 +1388219.309837 1280577.309837 norm=33.867388 +1388230.297641 1286740.297641 norm=33.060551 +1388220.790520 1278244.790520 norm=34.234486 +1388210.172574 1286046.172574 norm=35.057096 +1388209.553259 1278875.553259 norm=35.425979 +1388218.681790 1287939.681790 norm=34.044089 +1388230.932007 1279194.932007 norm=34.554305 +1388241.275781 1284907.275781 norm=34.655447 +1388239.965750 1287022.965750 norm=35.099858 +1388225.878243 1286775.878243 norm=34.727511 +1388263.710013 1284850.710013 norm=34.351128 +1388269.906608 1282792.906608 norm=34.278273 +1388265.081693 1284306.081693 norm=34.132096 +1388281.699471 1280195.699471 norm=34.102786 +1388274.950174 1285166.950174 norm=34.568772 +1388277.658075 1286433.658075 norm=34.438351 +1388279.203572 1281694.203572 norm=35.028560 +1388294.223495 1288016.223495 norm=35.468296 +1388284.303406 1277898.303406 norm=35.042831 +1388296.691695 1288476.691695 norm=33.852622 +1388314.138580 1280133.138580 norm=33.511192 +1388352.537810 1282098.537810 norm=34.219877 +1388321.865881 1280950.865881 norm=34.365681 +1388344.661942 1285442.661942 norm=34.117444 +1388331.036002 1277990.036002 norm=34.029399 +1388350.261442 1287047.261442 norm=34.394767 +1388330.320023 1283979.320023 norm=35.721142 +1388327.169502 1286435.169502 norm=35.028560 +1388356.070366 1279602.070366 norm=34.957117 +1388342.613335 1284551.613335 norm=35.818989 +1388327.603633 1281279.603633 norm=34.828150 +1388358.646869 1287164.646869 norm=35.791060 +1388365.310557 1287872.310557 norm=34.799425 +1388369.622765 1284442.622765 norm=34.351128 +1388390.624050 1280741.624050 norm=33.600595 +1388403.431012 1287828.431012 norm=33.911650 +1388404.493376 1282939.493376 norm=34.467376 +1388396.989329 1292554.989329 norm=35.327043 +1388398.403660 1282368.403660 norm=34.799425 +1388410.475219 1282671.475219 norm=34.713110 +1388411.732052 1281469.732052 norm=34.336569 +1388430.273158 1281961.273158 norm=34.102786 +1388429.458092 1283665.458092 norm=34.626579 +1388433.833604 1285149.833604 norm=34.885527 +1388433.836327 1283093.836327 norm=35.071356 +1388440.200673 1282933.200673 norm=35.014283 +1388455.041522 1282390.041522 norm=33.808283 +1388461.928370 1285711.928370 norm=34.770677 +1388451.065202 1285739.065202 norm=35.496479 +1388456.522308 1283943.522308 norm=34.727511 +1388478.703599 1286035.703599 norm=34.756294 +1388468.830537 1281518.830537 norm=34.467376 +1388485.983949 1284679.983949 norm=34.146742 +1388495.649999 1277356.649999 norm=34.914181 +1388471.109062 1288490.109062 norm=35.227830 +1388489.880101 1281079.880101 norm=34.351128 +1388514.164294 1279894.164294 norm=34.190642 +1388505.165215 1281412.165215 norm=35.637059 +1388508.917962 1286466.917962 norm=34.785054 +1388511.939700 1286302.939700 norm=35.383612 +1388509.997307 1282218.997307 norm=34.871192 +1388537.934176 1287986.934176 norm=34.132096 +1388548.538323 1283345.538323 norm=34.626579 +1388543.527850 1284036.527850 norm=34.971417 +1388560.713530 1281225.713530 norm=34.102786 +1388556.365785 1282629.365785 norm=33.867388 +1388578.877014 1283155.877014 norm=33.226495 +1388588.092962 1288568.092962 norm=34.583233 +1388568.177222 1287420.177222 norm=34.234486 +1388590.308949 1284001.308949 norm=35.099858 +1388557.040758 1280455.040758 norm=35.355339 +1388581.724581 1285218.724581 norm=34.438351 +1388602.023738 1281836.023738 norm=34.496377 +1388594.784523 1288121.784523 norm=35.000000 +1388604.258471 1281500.258471 norm=34.380227 +1388601.777397 1285763.777397 norm=34.612137 +1388616.072735 1285167.072735 norm=34.307434 +1388625.157277 1280021.157277 norm=33.823069 +1388643.689243 1283189.689243 norm=34.249088 +1388648.221210 1285010.221210 norm=34.583233 +1388622.862290 1279241.862290 norm=35.312887 +1388632.386624 1286710.386624 norm=34.452866 +1388653.896738 1283487.896738 norm=34.029399 +1388652.427777 1287889.427777 norm=34.205263 +1388663.704832 1281420.704832 norm=34.727511 +1388657.450277 1285720.450277 norm=34.583233 +1388673.359305 1287764.359305 norm=34.799425 +1388660.394189 1283626.394189 norm=35.665109 +1388653.470577 1286478.470577 norm=34.813790 +1388689.627859 1280491.627859 norm=34.597688 +1388706.551727 1285307.551727 norm=34.102786 +1388696.880954 1288530.880954 norm=34.727511 +1388687.092883 1283983.092883 norm=35.099858 +1388704.982959 1281672.982959 norm=34.510868 +1388712.869139 1285789.869139 norm=34.307434 +1388719.291092 1280514.291092 norm=35.185224 +1388713.233856 1279764.233856 norm=33.734256 +1388755.480857 1288629.480857 norm=33.823069 +1388742.597706 1280602.597706 norm=33.555923 +1388749.721415 1285826.721415 norm=34.496377 +1388749.996077 1282033.996077 norm=34.942810 +1388744.943563 1285453.943563 norm=34.190642 +1388762.490453 1283197.490453 norm=34.000000 +1388753.251951 1285597.251951 norm=34.785054 +1388776.369546 1286845.369546 norm=34.380227 +1388768.431035 1284882.431035 norm=34.205263 +1388794.257243 1282845.257243 norm=34.219877 +1388781.547393 1283542.547393 norm=34.423829 +1388776.031005 1288756.031005 norm=35.454196 +1388798.682185 1281858.682185 norm=35.651087 +1388775.218721 1282614.218721 norm=34.799425 +1388818.191446 1283372.191446 norm=33.955854 +1388805.596802 1284462.596802 norm=35.566838 +1388788.871243 1284422.871243 norm=34.928498 +1388804.593126 1286803.593126 norm=35.805028 +1388806.865630 1284491.865630 norm=35.902646 +1388805.537263 1290664.537263 norm=35.552778 +1388823.518555 1281765.518555 norm=34.914181 +1388841.763176 1281943.763176 norm=34.612137 +1388835.781961 1278555.781961 norm=33.376639 +1388863.522658 1285614.522658 norm=33.852622 +1388877.144501 1283672.144501 norm=33.541020 +1388877.621074 1289260.621074 norm=34.438351 +1388866.098838 1286059.098838 norm=34.292856 +1388863.832427 1278384.832427 norm=35.327043 +1388866.527694 1282025.527694 norm=34.899857 +1388877.316062 1286783.316062 norm=35.227830 +1388888.463397 1286649.463397 norm=34.612137 +1388907.413608 1287131.413608 norm=35.156792 +1388904.249265 1284105.249265 norm=34.146742 +1388925.416367 1285181.416367 norm=33.630343 +1388921.429286 1281978.429286 norm=34.438351 +1388937.573812 1288092.573812 norm=33.361655 +1388941.448086 1283796.448086 norm=34.132096 +1388935.523208 1286622.523208 norm=35.071356 +1388918.962655 1284350.962655 norm=35.425979 +1388922.028748 1287691.028748 norm=35.057096 +1388936.477921 1278753.477921 norm=35.440090 +1388929.143287 1291837.143287 norm=34.856850 +1388944.767276 1281211.767276 norm=34.770677 +1388973.340857 1288453.340857 norm=34.029399 +1388952.341624 1278797.341624 norm=35.227830 +1388974.497953 1289941.497953 norm=33.704599 +1388994.665630 1279628.665630 norm=34.278273 +1388989.650419 1293522.650419 norm=34.698703 +1388991.110300 1283766.110300 norm=34.307434 +1388982.712312 1284419.712312 norm=35.071356 +1388999.591835 1282455.591835 norm=34.626579 +1389001.852830 1287246.852830 norm=34.583233 +1389007.300637 1286160.300637 norm=35.312887 +1388992.664416 1289187.664416 norm=35.454196 +1389028.197975 1283779.197975 norm=34.467376 +1389026.943599 1286040.943599 norm=33.511192 +1389054.851220 1278131.851220 norm=34.088121 +1389025.403047 1282757.403047 norm=33.852622 +1389074.784783 1283261.784783 norm=33.749074 +1389049.365480 1284640.365480 norm=35.000000 +1389057.854756 1283632.854756 norm=35.099858 +1389046.428366 1284191.428366 norm=34.423829 +1389094.124820 1283321.124820 norm=34.525353 +1389055.759532 1290046.759532 norm=35.623026 +1389060.748530 1284674.748530 norm=34.336569 +1389097.563701 1287525.563701 norm=33.511192 +1389076.316753 1286564.316753 norm=35.566838 +1389084.004173 1287414.004173 norm=34.102786 +1389101.598561 1277448.598561 norm=34.554305 +1389095.471131 1288000.471131 norm=34.612137 +1389092.604003 1282077.604003 norm=35.454196 +1389088.449405 1287847.449405 norm=34.842503 +1389112.335881 1282424.335881 norm=33.852622 +1389139.883746 1288183.883746 norm=34.856850 +1389104.666339 1287339.666339 norm=35.327043 +1389138.312911 1284272.312911 norm=34.467376 +1389138.462759 1282118.462759 norm=35.071356 +1389130.633789 1285951.633789 norm=34.626579 +1389148.059331 1287311.059331 norm=34.871192 +1389150.725358 1286989.725358 norm=34.525353 +1389161.364866 1285587.364866 norm=34.234486 +1389181.878675 1286967.878675 norm=34.828150 +1389148.973872 1279419.973872 norm=34.885527 +1389165.597740 1287591.597740 norm=34.942810 +1389185.051039 1283106.051039 norm=34.957117 +1389196.272129 1282723.272129 norm=34.000000 +1389201.135732 1282700.135732 norm=34.278273 +1389172.888675 1279387.888675 norm=35.369478 +1389216.417448 1284686.417448 norm=34.380227 +1389213.484904 1288655.484904 norm=34.249088 +1389203.929886 1282479.929886 norm=34.899857 +1389235.415658 1283484.415658 norm=34.307434 +1389235.419102 1283840.419102 norm=33.837849 +1389253.153525 1286897.153525 norm=33.630343 +1389234.795322 1284835.795322 norm=33.719431 +1389260.979353 1282577.979353 norm=33.808283 +1389248.872795 1285975.872795 norm=34.496377 +1389247.020996 1285720.020996 norm=34.971417 +1389232.432629 1280596.432629 norm=34.409301 +1389285.272204 1286463.272204 norm=34.554305 +1389262.275668 1285712.275668 norm=34.205263 +1389301.525591 1289411.525591 norm=34.176015 +1389289.221295 1282099.221295 norm=34.044089 +1389272.431653 1283594.431653 norm=35.355339 +1389278.725755 1286469.725755 norm=34.409301 +1389288.953365 1279381.953365 norm=34.799425 +1389308.702414 1289520.702414 norm=34.641016 +1389286.151368 1285727.151368 norm=35.298725 +1389297.669702 1284951.669702 norm=34.669872 +1389316.730963 1280535.730963 norm=35.566838 +1389295.758775 1285774.758775 norm=35.468296 +1389314.124558 1290572.124558 norm=35.818989 +1389302.606216 1279601.606216 norm=35.199432 +1389350.567625 1286588.567625 norm=34.234486 +1389351.906886 1282480.906886 norm=34.770677 +1389335.210644 1282905.210644 norm=34.176015 +1389389.271610 1282648.271610 norm=34.132096 +1389374.988933 1290543.988933 norm=33.689761 +1389389.783992 1282785.783992 norm=33.823069 +1389383.877324 1283491.877324 norm=34.029399 +1389389.029655 1286225.029655 norm=34.278273 +1389383.863674 1282419.863674 norm=34.756294 +1389393.153335 1284730.153335 norm=33.555923 +1389414.696106 1291338.696106 norm=33.970576 +1389421.517982 1286415.517982 norm=33.689761 +1389408.042220 1285150.042220 norm=35.256205 +1389400.832183 1283802.832183 norm=34.554305 +1389410.580452 1291285.580452 norm=34.871192 +1389416.315331 1286405.315331 norm=34.219877 +1389454.469657 1283564.469657 norm=33.837849 +1389430.799903 1284884.799903 norm=34.641016 +1389431.313656 1282661.313656 norm=34.249088 +1389447.748979 1282861.748979 norm=33.882149 +1389460.033836 1280747.033836 norm=33.241540 +1389485.761553 1290273.761553 norm=33.985291 +1389452.596384 1292192.596384 norm=34.409301 +1389485.666306 1282132.666306 norm=33.166248 +1389486.876406 1285997.876406 norm=33.911650 +1389479.248985 1283076.248985 norm=34.058773 +1389487.198665 1285852.198665 norm=35.721142 +1389473.196689 1280659.196689 norm=35.411862 +1389466.031299 1283072.031299 norm=34.885527 +1389503.549780 1285516.549780 norm=34.467376 +1389499.351765 1288745.351765 norm=34.770677 +1389501.635549 1284891.635549 norm=34.626579 +1389498.491564 1286279.491564 norm=34.655447 +1389524.903331 1282689.903331 norm=34.741906 +1389510.373855 1282231.373855 norm=33.911650 +1389549.952513 1281402.952513 norm=34.871192 +1389515.014829 1287693.014829 norm=34.132096 +1389555.273680 1282978.273680 norm=35.099858 +1389517.824307 1293628.824307 norm=34.885527 +1389536.747509 1284558.747509 norm=35.580894 +1389538.128333 1283143.128333 norm=33.985291 +1389565.948501 1282861.948501 norm=34.799425 +1389562.427721 1279890.427721 norm=34.655447 +1389575.961338 1283736.961338 norm=34.770677 +1389559.535583 1286607.535583 norm=35.156792 +1389585.851472 1284500.851472 norm=34.799425 +1389565.123112 1286395.123112 norm=35.874782 +1389559.344542 1284189.344542 norm=35.651087 +1389584.022632 1288747.022632 norm=33.852622 +1389624.610590 1284651.610590 norm=33.852622 +1389628.995378 1288006.995378 norm=33.674916 +1389630.376835 1281462.376835 norm=34.088121 +1389622.961168 1291719.961168 norm=34.452866 +1389624.362540 1277905.362540 norm=35.014283 +1389632.851751 1291534.851751 norm=33.926391 +1389647.439789 1277146.439789 norm=34.525353 +1389621.032460 1287569.032460 norm=35.383612 +1389640.553672 1286118.553672 norm=34.394767 +1389653.804415 1282589.804415 norm=34.655447 +1389649.914336 1288662.914336 norm=35.085610 +1389658.129906 1287665.129906 norm=34.971417 +1389668.239881 1280315.239881 norm=34.756294 +1389655.319780 1285454.319780 norm=34.102786 +1389691.343763 1285064.343763 norm=34.365681 +1389659.977379 1285089.977379 norm=35.874782 +1389689.508399 1289498.508399 norm=34.942810 +1389676.437281 1289548.437281 norm=35.608988 +1389691.073232 1282699.073232 norm=35.156792 +1389681.183654 1287242.183654 norm=34.971417 +1389717.167706 1282238.167706 norm=34.190642 +1389721.193133 1283476.193133 norm=34.146742 +1389733.913124 1285454.913124 norm=34.278273 +1389737.171980 1283223.171980 norm=34.278273 +1389737.146118 1285315.146118 norm=34.655447 +1389736.046300 1286837.046300 norm=34.394767 +1389760.001024 1282964.001024 norm=33.600595 +1389749.473767 1287732.473767 norm=34.234486 +1389756.287049 1284606.287049 norm=34.058773 +1389767.338107 1289410.338107 norm=33.689761 +1389778.977482 1287018.977482 norm=34.539832 +1389767.988857 1287489.988857 norm=34.088121 +1389794.093757 1287195.093757 norm=34.117444 +1389782.749573 1284726.749573 norm=34.438351 +1389774.506508 1281809.506508 norm=34.799425 +1389794.848499 1283954.848499 norm=34.799425 +1389776.810854 1285195.810854 norm=34.899857 +1389818.052197 1285392.052197 norm=34.481879 +1389804.864914 1287652.864914 norm=34.871192 +1389792.992529 1282126.992529 norm=35.944402 +1389804.532987 1286520.532987 norm=35.071356 +1389808.898301 1283443.898301 norm=34.871192 +1389807.834978 1288484.834978 norm=35.171011 +1389823.848799 1284732.848799 norm=35.369478 +1389854.829442 1285643.829442 norm=34.249088 +1389825.641796 1281861.641796 norm=35.944402 +1389832.866783 1283135.866783 norm=34.684290 +1389854.373058 1286991.373058 norm=34.088121 +1389882.686546 1285079.686546 norm=33.301652 +1389871.909414 1283078.909414 norm=34.957117 +1389835.552583 1286061.552583 norm=35.397740 +1389871.036057 1286452.036057 norm=34.684290 +1389895.125105 1286800.125105 norm=34.263683 +1389891.542502 1287907.542502 norm=34.669872 +1389891.622799 1286673.622799 norm=33.689761 +1389918.873078 1283835.873078 norm=33.837849 +1389901.232769 1284408.232769 norm=34.365681 +1389916.613482 1282381.613482 norm=34.985711 +1389895.035081 1289124.035081 norm=34.713110 +1389916.637976 1281862.637976 norm=34.756294 +1389907.467059 1282727.467059 norm=34.828150 +1389933.276861 1283284.276861 norm=34.132096 +1389947.108904 1287744.108904 norm=35.142567 +1389919.203886 1286091.203886 norm=35.128336 +1389952.852593 1289743.852593 norm=34.102786 +1389965.292898 1281212.292898 norm=34.452866 +1389952.522843 1286666.522843 norm=34.741906 +1389961.604008 1283128.604008 norm=34.336569 +1389976.712642 1285269.712642 norm=35.028560 +1389966.628883 1285303.628883 norm=35.071356 +1389969.177932 1285303.177932 norm=34.856850 +1389964.282560 1282782.282560 norm=34.510868 +1390008.516114 1288182.516114 norm=34.307434 +1389992.537936 1281483.537936 norm=33.970576 +1390021.866703 1284756.866703 norm=33.763886 +1390012.091678 1286015.091678 norm=34.525353 +1390008.899384 1280948.899384 norm=34.554305 +1389997.755276 1287334.755276 norm=34.322005 +1390057.561369 1286718.561369 norm=33.526109 +1390043.691400 1283103.691400 norm=33.585711 +1390050.267640 1285269.267640 norm=34.161382 +1390032.914124 1286035.914124 norm=34.655447 +1390046.361129 1289248.361129 norm=34.481879 +1390064.384560 1287017.384560 norm=34.219877 +1390035.772943 1285207.772943 norm=34.828150 +1390054.809147 1287563.809147 norm=34.785054 +1390066.618385 1287019.618385 norm=34.957117 +1390066.196319 1284188.196319 norm=34.481879 +1390077.150951 1285692.150951 norm=34.842503 +1390067.274340 1282403.274340 norm=36.674242 +1390046.647801 1290933.647801 norm=35.958309 +1390077.505538 1287878.505538 norm=35.707142 +1390081.802968 1290465.802968 norm=34.942810 +1390100.050733 1285162.050733 norm=33.793490 +1390130.731383 1286419.731383 norm=33.749074 +1390110.940419 1280935.940419 norm=34.351128 +1390123.484309 1284279.484309 norm=33.301652 +1390137.106033 1285834.106033 norm=34.741906 +1390138.109250 1284458.109250 norm=34.102786 +1390139.920631 1282182.920631 norm=33.555923 +1390149.378527 1286967.378527 norm=34.525353 +1390146.441014 1283839.441014 norm=34.942810 +1390146.053261 1280844.053261 norm=34.641016 +1390156.348200 1288300.348200 norm=33.749074 +1390162.493826 1280829.493826 norm=34.785054 +1390170.978297 1285928.978297 norm=34.641016 +1390163.832397 1280925.832397 norm=35.057096 +1390171.551187 1291827.551187 norm=35.142567 +1390178.764775 1283280.764775 norm=34.117444 +1390205.708628 1291867.708628 norm=33.808283 +1390195.358319 1281429.358319 norm=35.327043 +1390168.087004 1291159.087004 norm=34.336569 +1390206.365170 1288192.365170 norm=34.957117 +1390199.760265 1288417.760265 norm=34.828150 +1390209.647906 1286510.647906 norm=34.438351 +1390234.903434 1282415.903434 norm=35.355339 +1390206.953122 1286333.953122 norm=35.000000 +1390226.023551 1287598.023551 norm=34.278273 +1390231.003898 1283928.003898 norm=34.928498 +1390232.599407 1281362.599407 norm=34.525353 +1390227.931372 1283557.931372 norm=34.597688 +1390272.361845 1290067.361845 norm=34.263683 +1390262.871452 1282511.871452 norm=34.612137 +1390246.219763 1286750.219763 norm=35.383612 +1390268.068607 1283235.068607 norm=33.763886 +1390261.289940 1283654.289940 norm=35.071356 +1390281.165508 1280772.165508 norm=33.926391 +1390289.949829 1288855.949829 norm=34.856850 +1390275.903468 1281694.903468 norm=35.468296 +1390299.542027 1285714.542027 norm=34.394767 +1390289.913672 1284589.913672 norm=35.185224 +1390290.092499 1284776.092499 norm=34.871192 +1390313.690607 1284347.690607 norm=34.539832 +1390324.269790 1289307.269790 norm=34.899857 +1390308.421211 1284483.421211 norm=34.539832 +1390344.958183 1284297.958183 norm=33.985291 +1390351.145365 1281858.145365 norm=33.615473 +1390340.067287 1287864.067287 norm=35.538711 +1390324.914852 1288182.914852 norm=34.597688 +1390364.240787 1280382.240787 norm=34.365681 +1390350.788279 1284668.788279 norm=35.284558 +1390357.185414 1289953.185414 norm=33.852622 +1390373.321797 1286106.321797 norm=34.205263 +1390373.709979 1290431.709979 norm=34.727511 +1390386.135517 1282962.135517 norm=33.823069 +1390378.737652 1286500.737652 norm=34.583233 +1390396.656422 1280556.656422 norm=34.899857 +1390371.717673 1290572.717673 norm=34.684290 +1390405.590412 1282520.590412 norm=34.957117 +1390385.225447 1289508.225447 norm=35.425979 +1390409.891991 1282943.891991 norm=34.176015 +1390406.083077 1286452.083077 norm=34.554305 +1390408.095102 1288481.095102 norm=34.756294 +1390421.151897 1282121.151897 norm=34.655447 +1390414.830247 1286189.830247 norm=34.914181 +1390439.065267 1288958.065267 norm=34.088121 +1390448.292884 1283879.292884 norm=33.749074 +1390467.522678 1287914.522678 norm=33.808283 +1390454.626445 1283985.626445 norm=34.000000 +1390448.391138 1285682.391138 norm=34.727511 +1390458.984991 1283131.984991 norm=34.770677 +1390455.811992 1287666.811992 norm=35.665109 +1390464.680705 1284471.680705 norm=35.071356 +1390469.775312 1287587.775312 norm=34.351128 +1390488.640790 1281032.640790 norm=34.985711 +1390474.234606 1287149.234606 norm=34.785054 +1390503.969017 1282178.969017 norm=34.278273 +1390498.730653 1290997.730653 norm=35.594943 +1390487.769263 1284289.769263 norm=34.496377 +1390498.022364 1285952.022364 norm=34.539832 +1390520.123046 1291369.123046 norm=34.014703 +1390538.433649 1287061.433649 norm=34.176015 +1390533.538371 1279138.538371 norm=34.132096 +1390534.970994 1289292.970994 norm=33.719431 +1390546.126920 1285757.126920 norm=34.249088 +1390545.956152 1286218.956152 norm=34.828150 +1390540.352452 1283615.352452 norm=35.042831 +1390543.993694 1289861.993694 norm=35.312887 +1390548.539389 1283709.539389 norm=33.719431 +1390604.246591 1284864.246591 norm=33.496268 +1390558.297338 1281510.297338 norm=34.525353 +1390578.181334 1288437.181334 norm=34.205263 +1390575.343190 1284296.343190 norm=34.000000 +1390568.382561 1283497.382561 norm=35.014283 +1390571.340608 1285535.340608 norm=34.394767 +1390602.952307 1289242.952307 norm=34.029399 +1390609.509396 1284459.509396 norm=34.713110 +1390591.767014 1286068.767014 norm=35.327043 +1390607.259791 1287525.259791 norm=35.496479 +1390590.696525 1288697.696525 norm=35.832946 +1390598.000819 1288095.000819 norm=35.874782 +1390602.000858 1285343.000858 norm=35.369478 +1390630.982965 1283676.982965 norm=34.641016 +1390625.132806 1290157.132806 norm=33.896903 +1390641.137812 1282842.137812 norm=34.713110 +1390651.802605 1285552.802605 norm=34.336569 +1390662.126168 1281057.126168 norm=33.970576 +1390662.286500 1284106.286500 norm=34.029399 +1390667.907987 1283300.907987 norm=33.778692 +1390684.650655 1280824.650655 norm=34.698703 +1390671.538941 1288637.538941 norm=34.612137 +1390675.364076 1281732.364076 norm=34.423829 +1390703.658200 1286807.658200 norm=33.763886 +1390677.183665 1285316.183665 norm=34.957117 +1390687.498666 1286280.498666 norm=35.071356 +1390679.802409 1289737.802409 norm=34.871192 +1390706.833984 1285668.833984 norm=35.114100 +1390664.263121 1286450.263121 norm=35.608988 +1390718.532579 1288216.532579 norm=35.014283 +1390696.008192 1288717.008192 norm=35.128336 +1390739.073735 1286545.073735 norm=35.128336 +1390712.678139 1287115.678139 norm=35.721142 +1390710.393237 1286903.393237 norm=34.756294 +1390729.413181 1286528.413181 norm=34.842503 +1390736.362735 1287330.362735 norm=34.985711 +1390752.911899 1281298.911899 norm=35.014283 +1390742.075261 1286377.075261 norm=33.763886 +1390800.810276 1286118.810276 norm=33.060551 +1390790.239177 1280611.239177 norm=34.496377 +1390767.350505 1284755.350505 norm=35.000000 +1390759.918424 1289528.918424 norm=35.256205 +1390784.422937 1280632.422937 norm=34.176015 +1390802.350581 1288533.350581 norm=33.808283 +1390791.965356 1286750.965356 norm=34.899857 +1390798.317300 1283078.317300 norm=34.785054 +1390800.862619 1290885.862619 norm=35.369478 +1390796.062065 1288820.062065 norm=34.307434 +1390808.476335 1290475.476335 norm=34.336569 +1390836.447063 1282454.447063 norm=34.380227 +1390828.190185 1287823.190185 norm=34.641016 +1390816.350999 1281931.350999 norm=34.568772 +1390841.796693 1287987.796693 norm=33.955854 +1390855.774681 1288333.774681 norm=34.525353 +1390831.528500 1282783.528500 norm=35.341194 +1390833.835336 1287384.835336 norm=34.713110 +1390848.765655 1284596.765655 norm=34.655447 +1390867.529428 1288500.529428 norm=35.014283 +1390878.358317 1282726.358317 norm=35.071356 +1390841.962397 1291154.962397 norm=35.916570 +1390865.138423 1282670.138423 norm=35.355339 +1390862.839411 1288414.839411 norm=34.985711 +1390885.303011 1284420.303011 norm=34.132096 +1390901.460542 1287724.460542 norm=35.000000 +1390892.842580 1283108.842580 norm=35.693137 +1390886.771422 1287078.771422 norm=35.510562 +1390899.141516 1284139.141516 norm=35.185224 +1390895.395811 1288197.395811 norm=34.928498 +1390906.247883 1285885.247883 norm=34.842503 +1390924.724725 1286039.724725 norm=34.146742 +1390931.657416 1288508.657416 norm=34.161382 +1390939.697820 1286490.697820 norm=35.156792 +1390926.225216 1285502.225216 norm=34.467376 +1390960.784092 1292409.784092 norm=35.242020 +1390938.766160 1286115.766160 norm=34.597688 +1390940.497161 1285762.497161 norm=34.539832 +1390968.100584 1284917.100584 norm=33.749074 +1390985.562104 1287035.562104 norm=34.899857 +1390953.740872 1286162.740872 norm=34.785054 +1390975.471443 1288387.471443 norm=34.438351 +1390986.085177 1286015.085177 norm=34.000000 +1391011.091217 1286807.091217 norm=33.778692 +1391002.622449 1283712.622449 norm=33.941125 +1391007.386472 1285087.386472 norm=34.942810 +1391001.468619 1284115.468619 norm=34.452866 +1390996.756170 1284358.756170 norm=34.957117 +1391013.507387 1282859.507387 norm=34.263683 +1391027.381475 1288724.381475 norm=34.322005 +1391010.356086 1283160.356086 norm=34.263683 +1391047.617584 1289196.617584 norm=34.813790 +1391029.683914 1285398.683914 norm=35.369478 +1391022.034368 1287307.034368 norm=35.679126 +1391016.442121 1286921.442121 norm=35.440090 +1391041.280662 1287115.280662 norm=34.626579 +1391049.501905 1284251.501905 norm=34.914181 +1391048.329005 1280286.329005 norm=35.888717 +1391044.051347 1288319.051347 norm=35.014283 +1391054.581715 1287929.581715 norm=34.438351 +1391076.434653 1289228.434653 norm=34.756294 +1391096.355202 1290092.355202 norm=34.029399 +1391087.423144 1284701.423144 norm=34.234486 +1391102.125232 1283677.125232 norm=35.397740 +1391076.912630 1289408.912630 norm=35.552778 +1391086.051651 1286416.051651 norm=34.741906 +1391111.856601 1288546.856601 norm=33.226495 +1391151.088605 1283987.088605 norm=34.423829 +1391108.315621 1285509.315621 norm=33.837849 +1391143.320552 1284219.320552 norm=34.871192 +1391124.898840 1290474.898840 norm=34.044089 +1391148.899066 1286987.899066 norm=35.099858 +1391127.652768 1289072.652768 norm=34.597688 +1391162.885274 1290370.885274 norm=33.970576 +1391147.963825 1282821.963825 norm=34.292856 +1391168.879978 1285397.879978 norm=34.307434 +1391163.071980 1288239.071980 norm=34.307434 +1391188.029646 1284892.029646 norm=34.014703 +1391166.316874 1282970.316874 norm=34.554305 +1391192.772398 1285081.772398 norm=33.985291 +1391175.385927 1285577.385927 norm=35.566838 +1391152.524656 1286405.524656 norm=35.623026 +1391174.075370 1286087.075370 norm=35.213634 +1391198.273171 1288587.273171 norm=34.684290 +1391205.167152 1285708.167152 norm=34.842503 +1391188.924254 1285826.924254 norm=35.014283 +1391225.818510 1286150.818510 norm=33.793490 +1391223.403723 1288526.403723 norm=34.365681 +1391220.384219 1288279.384219 norm=34.985711 +1391214.095046 1287732.095046 norm=34.539832 +1391226.136533 1289728.136533 norm=34.307434 +1391243.849884 1288713.849884 norm=35.227830 +1391221.509000 1292202.509000 norm=34.785054 +1391262.401727 1280676.401727 norm=34.885527 +1391235.401847 1290459.401847 norm=34.641016 +1391281.976374 1288884.976374 norm=34.423829 +1391267.417059 1290492.417059 norm=33.823069 +1391284.696160 1283219.696160 norm=34.626579 +1391256.107845 1283634.107845 norm=35.341194 +1391287.440664 1288090.440664 norm=34.394767 +1391286.585943 1286064.585943 norm=35.341194 +1391275.055842 1283161.055842 norm=34.394767 +1391303.121698 1285745.121698 norm=35.256205 +1391285.325281 1287088.325281 norm=35.042831 +1391295.068282 1285712.068282 norm=35.057096 +1391309.138263 1286675.138263 norm=35.440090 +1391293.379914 1288066.379914 norm=34.394767 +1391327.559968 1283810.559968 norm=33.970576 +1391336.929071 1282280.929071 norm=35.085610 +1391325.045761 1285662.045761 norm=34.132096 +1391334.535471 1290416.535471 norm=34.727511 +1391346.111682 1284634.111682 norm=35.707142 +1391315.893029 1286684.893029 norm=34.899857 +1391334.678048 1284451.678048 norm=35.440090 +1391356.074497 1285673.074497 norm=35.085610 +1391345.095915 1290854.095915 norm=35.902646 +1391354.674938 1288700.674938 norm=34.828150 +1391380.607050 1283319.607050 norm=34.176015 +1391374.702816 1288191.702816 norm=34.525353 +1391410.256926 1287808.256926 norm=34.014703 +1391394.934454 1286054.934454 norm=34.626579 +1391404.607124 1289653.607124 norm=34.856850 +1391380.059977 1285127.059977 norm=35.510562 +1391399.299952 1286720.299952 norm=34.117444 +1391414.775729 1286854.775729 norm=34.292856 +1391419.874793 1286805.874793 norm=34.102786 +1391413.962778 1283697.962778 norm=35.482390 +1391420.730982 1283831.730982 norm=34.539832 +1391432.603998 1289798.603998 norm=35.042831 +1391435.246358 1286370.246358 norm=35.874782 +1391414.105099 1293003.105099 norm=35.085610 +1391437.134911 1284523.134911 norm=34.452866 +1391456.395144 1287694.395144 norm=34.612137 +1391458.121700 1284544.121700 norm=34.568772 +1391459.350840 1289221.350840 norm=35.156792 +1391476.230649 1283566.230649 norm=34.957117 +1391450.249619 1285753.249619 norm=35.270384 +1391465.698319 1283107.698319 norm=34.409301 +1391500.715480 1289329.715480 norm=34.727511 +1391498.470548 1285448.470548 norm=34.971417 +1391481.607002 1284960.607002 norm=34.525353 +1391520.921584 1285242.921584 norm=35.199432 +1391494.589854 1284263.589854 norm=34.655447 +1391516.919886 1286090.919886 norm=35.608988 +1391491.205266 1285674.205266 norm=34.813790 +1391523.337403 1287434.337403 norm=34.698703 +1391523.985479 1285595.985479 norm=34.292856 +1391542.141061 1285534.141061 norm=34.525353 +1391552.415974 1281804.415974 norm=33.466401 +1391556.511123 1291574.511123 norm=34.409301 +1391523.292006 1286676.292006 norm=34.438351 +1391561.338468 1284308.338468 norm=34.452866 +1391562.324937 1284507.324937 norm=34.583233 +1391555.531295 1288172.531295 norm=35.057096 +1391543.591063 1290511.591063 norm=35.566838 +1391560.732650 1285293.732650 norm=34.914181 +1391580.857894 1286510.857894 norm=34.928498 +1391566.686824 1285801.686824 norm=34.871192 +1391599.377079 1289245.377079 norm=35.369478 +1391560.354566 1291055.354566 norm=35.213634 +1391590.429901 1284341.429901 norm=34.698703 +1391606.881141 1284753.881141 norm=34.942810 +1391597.370586 1287978.370586 norm=34.365681 +1391622.611247 1290099.611247 norm=34.928498 +1391600.189829 1289114.189829 norm=34.467376 +1391618.856222 1282930.856222 norm=35.128336 +1391623.018600 1289022.018600 norm=34.452866 +1391645.610026 1285360.610026 norm=34.612137 +1391628.886919 1287554.886919 norm=35.972211 +1391625.630971 1286459.630971 norm=34.785054 +1391661.116781 1286594.116781 norm=34.612137 +1391653.605814 1281584.605814 norm=34.756294 +1391653.034513 1291187.034513 norm=34.467376 +1391681.864790 1288641.864790 norm=35.185224 +1391666.493448 1288302.493448 norm=34.219877 +1391680.297610 1283587.297610 norm=35.171011 +1391669.346839 1291460.346839 norm=34.612137 +1391701.194584 1282721.194584 norm=34.842503 +1391680.859968 1290228.859968 norm=35.227830 +1391693.853875 1287334.853875 norm=34.452866 +1391694.632107 1285361.632107 norm=34.914181 +1391705.897246 1282980.897246 norm=35.213634 +1391701.717780 1292613.717780 norm=34.899857 +1391722.127602 1285592.127602 norm=34.957117 +1391712.194383 1285905.194383 norm=35.580894 +1391725.706042 1284616.706042 norm=35.042831 +1391699.668505 1287764.668505 norm=35.014283 +1391735.724654 1282953.724654 norm=34.713110 +1391732.920197 1290181.920197 norm=35.242020 +1391730.398363 1286647.398363 norm=35.958309 +1391723.965137 1286774.965137 norm=35.468296 +1391773.892036 1286748.892036 norm=35.440090 +1391745.686369 1287960.686369 norm=35.085610 +1391771.024334 1280503.024334 norm=34.467376 +1391777.358846 1290898.358846 norm=34.914181 +1391768.530478 1284215.530478 norm=34.380227 +1391782.304396 1283704.304396 norm=35.425979 +1391770.993514 1283827.993514 norm=34.985711 +1391807.155816 1289904.155816 norm=33.526109 +1391817.920670 1287546.920670 norm=34.928498 +1391809.515242 1288227.515242 norm=35.042831 +1391813.801249 1285997.801249 norm=34.985711 +1391794.785442 1284282.785442 norm=35.298725 +1391812.121845 1287407.121845 norm=33.970576 +1391844.176563 1285822.176563 norm=34.481879 +1391839.518862 1289580.518862 norm=34.698703 +1391837.390527 1290086.390527 norm=34.132096 +1391846.704081 1285875.704081 norm=35.383612 +1391829.877980 1286988.877980 norm=35.156792 +1391859.056402 1284787.056402 norm=35.099858 +1391823.358850 1285690.358850 norm=35.355339 +1391874.088888 1289719.088888 norm=34.684290 +1391857.904245 1283999.904245 norm=35.425979 +1391865.665858 1291850.665858 norm=33.911650 +1391905.910435 1286432.910435 norm=34.655447 +1391881.782873 1281226.782873 norm=34.380227 +1391896.042843 1286936.042843 norm=33.734256 +1391922.468319 1288452.468319 norm=33.421550 +1391929.537967 1284545.537967 norm=34.409301 +1391912.580581 1284186.580581 norm=35.284558 +1391906.351803 1288427.351803 norm=35.623026 +1391908.390702 1288110.390702 norm=34.438351 +1391927.661741 1280534.661741 norm=34.438351 +1391934.962646 1288746.962646 norm=33.941125 +1391921.781896 1286427.781896 norm=35.791060 +1391935.988747 1289777.988747 norm=34.336569 +1391935.427536 1286043.427536 norm=35.312887 +1391954.048111 1288078.048111 norm=33.719431 +1391955.425289 1285173.425289 norm=35.114100 +1391954.200792 1291587.200792 norm=35.623026 +1391938.241407 1282109.241407 norm=34.727511 +1391986.906984 1291353.906984 norm=34.073450 +1391978.956123 1287412.956123 norm=35.256205 +1391964.570807 1290691.570807 norm=34.985711 +1391966.754203 1284413.754203 norm=34.394767 +1392012.640503 1291975.640503 norm=33.660065 +1392024.028127 1283664.028127 norm=33.526109 +1392004.294814 1288598.294814 norm=35.482390 +1391978.647629 1287765.647629 norm=35.468296 +1392008.260091 1290095.260091 norm=35.256205 +1391991.519157 1289267.519157 norm=34.698703 +1392037.039726 1290157.039726 norm=34.263683 +1392038.068566 1284567.068566 norm=34.380227 +1392038.702070 1291582.702070 norm=36.138622 +1391991.377301 1291676.377301 norm=35.227830 +1392051.707560 1287126.707560 norm=34.626579 +1392047.170077 1290106.170077 norm=35.014283 +1392044.914820 1283093.914820 norm=35.114100 +1392016.392000 1285376.392000 norm=36.069378 +1392063.189340 1285661.189340 norm=34.438351 +1392076.311429 1285523.311429 norm=34.029399 +1392086.058448 1283019.058448 norm=33.941125 +1392087.549779 1285159.549779 norm=35.468296 +1392059.547519 1289978.547519 norm=35.944402 +1392062.672304 1286847.672304 norm=34.770677 +1392092.776693 1290868.776693 norm=34.496377 +1392089.369375 1285335.369375 norm=34.380227 +1392124.294943 1283703.294943 norm=34.799425 +1392089.810017 1286859.810017 norm=34.394767 +1392110.465604 1287872.465604 norm=34.828150 +1392121.547345 1284617.547345 norm=34.554305 +1392129.227080 1288944.227080 norm=34.727511 +1392115.173241 1291978.173241 norm=35.114100 +1392128.005517 1286575.005517 norm=35.397740 +1392126.936611 1287050.936611 norm=35.930488 +1392134.601272 1287442.601272 norm=35.256205 +1392145.573500 1284471.573500 norm=35.199432 +1392135.835747 1287016.835747 norm=34.871192 +1392169.461982 1288705.461982 norm=33.778692 +1392183.244622 1281304.244622 norm=34.698703 +1392167.696009 1292787.696009 norm=34.813790 +1392172.168456 1285275.168456 norm=34.942810 +1392175.843352 1290906.843352 norm=33.852622 +1392203.892888 1278878.892888 norm=35.524639 +1392149.421664 1291080.421664 norm=36.701499 +1392162.978454 1281807.978454 norm=35.199432 +1392192.563369 1292412.563369 norm=34.655447 +1392195.638696 1282262.638696 norm=35.298725 +1392196.150170 1289248.150170 norm=35.888717 +1392190.039507 1278539.039507 norm=35.142567 +1392206.734836 1288219.734836 norm=35.369478 +1392214.706510 1282398.706510 norm=34.856850 +1392243.018138 1289942.018138 norm=34.727511 +1392244.153821 1283579.153821 norm=34.510868 +1392251.065795 1287142.065795 norm=33.181320 +1392276.795372 1284985.795372 norm=33.941125 +1392252.806186 1284741.806186 norm=34.928498 +1392251.761881 1286242.761881 norm=34.785054 +1392271.137683 1286346.137683 norm=34.132096 +1392270.213546 1288799.213546 norm=35.014283 +1392258.781696 1287942.781696 norm=35.468296 +1392279.771965 1287325.771965 norm=33.808283 +1392298.910581 1289859.910581 norm=34.088121 +1392290.214479 1285693.214479 norm=34.785054 +1392286.463008 1288597.463008 norm=34.799425 +1392289.480047 1292604.480047 norm=34.684290 +1392319.993510 1288309.993510 norm=34.554305 +1392302.724152 1285102.724152 norm=35.142567 +1392323.318606 1291003.318606 norm=34.928498 +1392304.114261 1290110.114261 norm=35.327043 +1392327.958730 1282405.958730 norm=35.071356 +1392318.672800 1286029.672800 norm=36.359318 +1392295.467849 1284448.467849 norm=35.566838 +1392346.348649 1289938.348649 norm=34.452866 +1392352.211490 1283691.211490 norm=34.770677 +1392353.138180 1288601.138180 norm=35.256205 +1392349.562114 1285577.562114 norm=34.278273 +1392390.166873 1287289.166873 norm=34.423829 +1392371.361883 1285467.361883 norm=33.749074 +1392394.141776 1289692.141776 norm=33.749074 +1392407.339384 1285152.339384 norm=34.307434 +1392384.886984 1288471.886984 norm=34.029399 +1392399.816209 1289468.816209 norm=34.510868 +1392377.521482 1290051.521482 norm=35.327043 +1392398.320948 1285049.320948 norm=34.496377 +1392404.734401 1286485.734401 norm=35.099858 +1392412.451182 1288113.451182 norm=35.242020 +1392396.235155 1288929.235155 norm=35.874782 +1392412.495987 1284784.495987 norm=35.128336 +1392394.423493 1291004.423493 norm=35.693137 +1392429.341468 1281666.341468 norm=35.114100 +1392426.314840 1290550.314840 norm=35.846897 +1392422.221981 1285254.221981 norm=35.369478 +1392449.632584 1285671.632584 norm=34.452866 +1392457.170031 1285946.170031 norm=34.539832 +1392462.310510 1293618.310510 norm=34.496377 +1392469.928379 1285990.928379 norm=34.641016 +1392477.078743 1289653.078743 norm=34.219877 +1392473.962789 1286875.962789 norm=34.885527 +1392465.853949 1289581.853949 norm=34.899857 +1392479.464821 1289876.464821 norm=35.524639 +1392472.546711 1291475.546711 norm=35.566838 +1392486.074450 1288295.074450 norm=36.193922 +1392459.130180 1290746.130180 norm=35.510562 +1392506.790822 1284125.790822 norm=34.014703 +1392524.076542 1289282.076542 norm=35.397740 +1392496.594466 1287519.594466 norm=35.156792 +1392508.444786 1285034.444786 norm=34.985711 +1392521.409586 1285115.409586 norm=34.481879 +1392529.204831 1291602.204831 norm=34.409301 +1392534.620181 1289069.620181 norm=34.234486 +1392546.698282 1286694.698282 norm=34.365681 +1392542.389054 1285371.389054 norm=34.828150 +1392556.224135 1286983.224135 norm=34.146742 +1392557.566179 1284467.566179 norm=34.088121 +1392573.364692 1286712.364692 norm=35.057096 +1392548.068804 1284988.068804 norm=35.270384 +1392562.053631 1284933.053631 norm=34.510868 +1392568.746001 1287556.746001 norm=35.213634 +1392559.471187 1287601.471187 norm=34.942810 +1392595.784261 1290604.784261 norm=34.423829 +1392602.727067 1285759.727067 norm=34.423829 +1392570.267603 1290783.267603 norm=35.972211 +1392580.466534 1291991.466534 norm=35.763109 +1392611.863936 1285108.863936 norm=34.336569 +1392614.753919 1291622.753919 norm=34.698703 +1392632.607152 1282664.607152 norm=34.409301 +1392618.990911 1289430.990911 norm=34.899857 +1392623.793765 1284699.793765 norm=34.885527 +1392634.850356 1290379.850356 norm=35.085610 +1392635.596355 1281436.596355 norm=35.114100 +1392613.344225 1287815.344225 norm=35.749126 +1392648.818341 1282581.818341 norm=35.014283 +1392637.483758 1295011.483758 norm=34.842503 +1392648.072646 1285730.072646 norm=35.679126 +1392639.140067 1291165.140067 norm=33.985291 +1392705.894337 1289459.894337 norm=33.136083 +1392691.756253 1288079.756253 norm=35.014283 +1392676.882429 1286727.882429 norm=34.985711 +1392682.444912 1287654.444912 norm=35.608988 +1392674.987364 1283698.987364 norm=35.128336 +1392670.910848 1291266.910848 norm=34.785054 +1392705.267999 1283816.267999 norm=35.071356 +1392686.928561 1290294.928561 norm=35.114100 +1392722.154920 1286433.154920 norm=34.102786 +1392733.999549 1293087.999549 norm=34.132096 +1392716.875097 1281267.875097 norm=35.227830 +1392717.040850 1288618.040850 norm=33.481338 +1392763.583015 1286677.583015 norm=34.088121 +1392731.478664 1286148.478664 norm=34.525353 +1392748.799526 1290721.799526 norm=34.813790 +1392737.412309 1292028.412309 norm=34.583233 +1392754.900539 1283548.900539 norm=35.312887 +1392747.018051 1289811.018051 norm=34.423829 +1392773.038782 1287973.038782 norm=34.249088 +1392759.252602 1287455.252602 norm=35.369478 +1392758.357393 1284266.357393 norm=35.114100 +1392761.068107 1287900.068107 norm=34.985711 +1392780.333593 1286943.333593 norm=34.842503 +1392791.779916 1289368.779916 norm=34.914181 +1392775.614680 1287705.614680 norm=34.985711 +1392787.176349 1290457.176349 norm=36.592349 +1392767.224912 1286927.224912 norm=34.741906 +1392801.436905 1290389.436905 norm=34.684290 +1392821.806444 1289783.806444 norm=34.452866 +1392828.504446 1289390.504446 norm=34.481879 +1392809.794391 1288065.794391 norm=35.468296 +1392805.808837 1287351.808837 norm=35.171011 +1392848.525399 1288337.525399 norm=34.871192 +1392840.596846 1285020.596846 norm=33.808283 +1392863.170794 1287899.170794 norm=34.641016 +1392846.416847 1291309.416847 norm=35.679126 +1392812.483057 1284612.483057 norm=35.944402 +1392849.232832 1290977.232832 norm=34.336569 +1392888.097992 1286783.097992 norm=33.496268 +1392872.091099 1286746.091099 norm=35.594943 +1392870.663364 1286139.663364 norm=34.510868 +1392876.670497 1287311.670497 norm=34.058773 +1392909.192475 1289579.192475 norm=33.645208 +1392875.211402 1286506.211402 norm=35.085610 +1392902.144126 1290526.144126 norm=34.928498 +1392898.268393 1286104.268393 norm=34.813790 +1392900.709358 1288518.709358 norm=35.227830 +1392912.307248 1287673.307248 norm=34.249088 +1392919.289469 1289418.289469 norm=35.242020 +1392913.233796 1284669.233796 norm=34.928498 +1392932.732858 1289434.732858 norm=34.525353 +1392920.232058 1290893.232058 norm=34.928498 +1392934.311491 1293151.311491 norm=35.538711 +1392915.359826 1286445.359826 norm=35.916570 +1392928.576218 1292788.576218 norm=35.651087 +1392919.415925 1286997.415925 norm=35.874782 +1392942.542118 1286402.542118 norm=35.171011 +1392953.315563 1293864.315563 norm=34.554305 +1392974.648258 1287942.648258 norm=34.307434 +1392978.476741 1285017.476741 norm=34.770677 +1392970.144346 1285090.144346 norm=33.837849 +1393004.320739 1288290.320739 norm=33.570821 +1392991.857260 1281714.857260 norm=34.856850 +1392995.747834 1287976.747834 norm=34.161382 +1393018.885176 1290405.885176 norm=34.583233 +1393014.141737 1287952.141737 norm=35.199432 +1392993.290023 1287370.290023 norm=35.958309 +1392998.976428 1285158.976428 norm=36.166283 +1393014.393937 1292222.393937 norm=35.085610 +1392996.738530 1288351.738530 norm=35.312887 +1393007.383868 1290957.383868 norm=35.693137 +1393019.597237 1284371.597237 norm=34.727511 +1393029.930937 1289140.930937 norm=35.000000 +1393033.772569 1283949.772569 norm=34.756294 +1393049.324861 1287791.324861 norm=34.423829 +1393043.892080 1287361.892080 norm=34.351128 +1393070.645075 1287680.645075 norm=34.161382 +1393059.337729 1285803.337729 norm=35.944402 +1393038.970383 1293350.970383 norm=35.707142 +1393052.352359 1282751.352359 norm=34.669872 +1393085.948969 1287008.948969 norm=34.914181 +1393083.911322 1288051.911322 norm=34.088121 +1393091.178445 1290932.178445 norm=35.000000 +1393083.707272 1286927.707272 norm=34.785054 +1393109.912810 1292698.912810 norm=34.394767 +1393113.837559 1285490.837559 norm=34.942810 +1393115.021379 1290338.021379 norm=35.411862 +1393102.302010 1292705.302010 norm=35.846897 +1393095.518220 1286302.518220 norm=35.888717 +1393123.480320 1287128.480320 norm=35.580894 +1393107.811631 1293075.811631 norm=35.552778 +1393118.798463 1292641.798463 norm=35.341194 +1393117.111743 1289192.111743 norm=35.721142 +1393137.801527 1284191.801527 norm=35.256205 +1393144.958290 1284588.958290 norm=35.213634 +1393147.582034 1289342.582034 norm=33.585711 +1393179.614331 1287658.614331 norm=34.176015 +1393182.238244 1288544.238244 norm=33.882149 +1393178.307025 1290484.307025 norm=35.085610 +1393159.229456 1288743.229456 norm=34.307434 +1393193.379049 1284955.379049 norm=34.423829 +1393169.697043 1289895.697043 norm=34.914181 +1393190.524163 1287637.524163 norm=34.423829 +1393209.268041 1290954.268041 norm=34.132096 +1393203.505150 1287123.505150 norm=35.014283 +1393195.990903 1290355.990903 norm=35.000000 +1393204.268599 1285470.268599 norm=34.957117 +1393217.403469 1292078.403469 norm=35.042831 +1393197.316513 1284669.316513 norm=35.369478 +1393224.260969 1286970.260969 norm=36.013886 +1393211.693360 1284059.693360 norm=35.651087 +1393225.210268 1293472.210268 norm=35.185224 +1393236.926824 1287292.926824 norm=35.524639 +1393230.444117 1286906.444117 norm=35.707142 +1393235.785222 1291427.785222 norm=34.655447 +1393257.675074 1292013.675074 norm=35.128336 +1393266.463499 1285217.463499 norm=33.985291 +1393280.513307 1290352.513307 norm=35.185224 +1393254.498336 1291731.498336 norm=35.341194 +1393273.036736 1286554.036736 norm=35.128336 +1393282.263100 1291169.263100 norm=34.727511 +1393301.972822 1284874.972822 norm=34.467376 +1393280.928875 1287320.928875 norm=35.099858 +1393300.531793 1290357.531793 norm=35.071356 +1393286.682719 1285414.682719 norm=36.013886 +1393287.697895 1292994.697895 norm=35.566838 +1393300.058272 1288186.058272 norm=34.899857 +1393332.254671 1286827.254671 norm=34.219877 +1393332.616923 1287229.616923 norm=35.042831 +1393322.131882 1288388.131882 norm=35.341194 +1393319.255101 1285837.255101 norm=35.355339 +1393336.948244 1289794.948244 norm=35.042831 +1393327.049595 1284015.049595 norm=36.235342 +1393336.869052 1289984.869052 norm=35.369478 +1393346.276764 1291075.276764 norm=34.525353 +1393376.587773 1290373.587773 norm=34.102786 +1393355.032751 1286361.032751 norm=35.916570 +1393350.896457 1290766.896457 norm=35.930488 +1393359.850755 1288223.850755 norm=34.828150 +1393378.445001 1290401.445001 norm=34.641016 +1393385.624379 1286654.624379 norm=34.365681 +1393398.452124 1286520.452124 norm=34.684290 +1393390.429934 1285415.429934 norm=35.128336 +1393407.291056 1287895.291056 norm=34.785054 +1393404.505150 1285598.505150 norm=34.394767 +1393415.046040 1287341.046040 norm=34.828150 +1393413.024506 1286916.024506 norm=35.721142 +1393411.093262 1293937.093262 norm=34.799425 +1393426.845275 1290189.845275 norm=34.219877 +1393419.014877 1292461.014877 norm=35.355339 +1393434.535643 1290591.535643 norm=35.818989 +1393420.624228 1286159.624228 norm=35.397740 +1393426.841602 1288496.841602 norm=36.918830 +1393415.555536 1290838.555536 norm=34.871192 +1393456.165640 1288406.165640 norm=35.014283 +1393455.582065 1288997.582065 norm=35.242020 +1393465.369158 1288720.369158 norm=35.369478 +1393461.669502 1289818.669502 norm=35.552778 +1393462.538595 1288008.538595 norm=35.114100 +1393478.030294 1285301.030294 norm=34.655447 +1393483.985870 1287456.985870 norm=35.156792 +1393488.821552 1286531.821552 norm=34.856850 +1393505.511266 1288382.511266 norm=34.554305 +1393493.616488 1285719.616488 norm=34.813790 +1393515.267397 1290746.267397 norm=34.539832 +1393511.890332 1288090.890332 norm=35.986108 +1393503.649719 1292300.649719 norm=34.842503 +1393520.250613 1282574.250613 norm=34.985711 +1393524.997496 1291927.997496 norm=35.156792 +1393538.347461 1283258.347461 norm=34.161382 +1393539.866640 1287092.866640 norm=34.539832 +1393536.961723 1293110.961723 norm=35.510562 +1393535.965040 1286737.965040 norm=35.256205 +1393551.899430 1290750.899430 norm=34.539832 +1393576.673308 1292786.673308 norm=34.000000 +1393561.609794 1289690.609794 norm=34.871192 +1393560.895006 1285808.895006 norm=35.749126 +1393557.566429 1286393.566429 norm=35.227830 +1393583.823662 1292548.823662 norm=35.355339 +1393571.066453 1285308.066453 norm=34.000000 +1393610.790393 1287754.790393 norm=34.641016 +1393590.047903 1287056.047903 norm=34.842503 +1393615.313084 1293213.313084 norm=34.856850 +1393583.489292 1291370.489292 norm=36.235342 +1393604.399595 1287669.399595 norm=35.213634 +1393593.936459 1286459.936459 norm=35.171011 +1393632.285721 1284802.285721 norm=34.029399 +1393632.123787 1285073.123787 norm=34.813790 +1393638.294057 1286705.294057 norm=35.242020 +1393612.050131 1291376.050131 norm=34.785054 +1393639.912281 1287021.912281 norm=35.114100 +1393636.512891 1285993.512891 norm=34.626579 +1393669.924882 1288964.924882 norm=34.176015 +1393665.141551 1290539.141551 norm=33.808283 +1393690.227697 1284222.227697 norm=34.525353 +1393659.137605 1286830.137605 norm=35.369478 +1393660.545578 1286440.545578 norm=35.000000 +1393671.913663 1284458.913663 norm=35.213634 +1393677.176027 1292465.176027 norm=35.114100 +1393674.313926 1286492.313926 norm=35.916570 +1393690.293756 1295331.293756 norm=34.612137 +1393701.535849 1286833.535849 norm=34.452866 +1393697.952771 1294131.952771 norm=34.727511 +1393711.718956 1291186.718956 norm=34.842503 +1393733.240776 1287696.240776 norm=33.734256 +1393740.213404 1286622.213404 norm=34.583233 +1393716.846312 1290148.846312 norm=35.213634 +1393716.790219 1284934.790219 norm=35.916570 +1393721.906217 1290151.906217 norm=34.423829 +1393760.383434 1285362.383434 norm=34.452866 +1393754.088422 1293140.088422 norm=34.885527 +1393747.522796 1286077.522796 norm=34.409301 +1393755.784177 1290658.784177 norm=34.365681 +1393767.787096 1289471.787096 norm=34.597688 +1393785.806111 1286116.806111 norm=34.336569 +1393772.665631 1290685.665631 norm=34.351128 +1393793.017433 1289429.017433 norm=34.785054 +1393778.075165 1290336.075165 norm=34.655447 +1393784.561421 1292183.561421 norm=34.583233 +1393808.648721 1288223.648721 norm=34.799425 +1393795.771743 1287508.771743 norm=35.042831 +1393792.347003 1290629.347003 norm=34.871192 +1393815.597536 1287122.597536 norm=35.298725 +1393781.210613 1286002.210613 norm=34.928498 +1393823.574849 1288654.574849 norm=33.674916 +1393850.950640 1287332.950640 norm=34.176015 +1393842.849198 1287990.849198 norm=34.842503 +1393830.969912 1282872.969912 norm=35.580894 +1393815.842994 1290600.842994 norm=35.580894 +1393830.776466 1287751.776466 norm=35.637059 +1393852.333591 1290268.333591 norm=35.171011 +1393828.889157 1287906.889157 norm=35.524639 +1393859.039770 1290726.039770 norm=34.684290 +1393856.216277 1288406.216277 norm=35.425979 +1393858.387059 1291114.387059 norm=34.785054 +1393867.359052 1287697.359052 norm=35.028560 +1393867.852365 1290414.852365 norm=34.713110 +1393881.056948 1290710.056948 norm=33.615473 +1393921.253657 1287107.253657 norm=33.689761 +1393910.242460 1292426.242460 norm=34.292856 +1393911.948810 1290490.948810 norm=35.028560 +1393905.307057 1288443.307057 norm=34.307434 +1393923.775826 1288071.775826 norm=34.684290 +1393918.960196 1294056.960196 norm=34.899857 +1393910.392028 1287790.392028 norm=35.693137 +1393897.078862 1292471.078862 norm=36.386811 +1393904.048821 1288440.048821 norm=35.085610 +1393930.478167 1288852.478167 norm=35.298725 +1393915.653409 1288847.653409 norm=35.397740 +1393941.746509 1286556.746509 norm=34.655447 +1393943.763857 1290401.763857 norm=35.312887 +1393934.268569 1284839.268569 norm=35.707142 +1393946.126194 1290110.126194 norm=34.698703 +1393967.116463 1285497.116463 norm=35.397740 +1393956.034766 1286599.034766 norm=34.641016 +1393974.164750 1289558.164750 norm=34.438351 +1393984.671617 1289204.671617 norm=34.568772 +1393988.512203 1290893.512203 norm=34.655447 +1394002.015486 1286993.015486 norm=35.114100 +1393980.489774 1293566.489774 norm=35.665109 +1393976.444673 1285968.444673 norm=35.199432 +1394009.620468 1291567.620468 norm=34.597688 +1394001.153103 1284958.153103 norm=35.916570 +1393998.092138 1293926.092138 norm=35.524639 +1394013.266475 1289009.266475 norm=35.552778 +1393998.180228 1288508.180228 norm=35.369478 +1394021.421573 1287609.421573 norm=35.114100 +1394017.138037 1290626.138037 norm=35.014283 +1394039.264818 1285894.264818 norm=34.871192 +1394030.931574 1290581.931574 norm=35.721142 +1394025.248709 1283509.248709 norm=34.583233 +1394079.989357 1287530.989357 norm=34.597688 +1394062.750385 1285628.750385 norm=35.042831 +1394064.883403 1296266.883403 norm=34.249088 +1394078.712279 1286139.712279 norm=35.637059 +1394053.166427 1291121.166427 norm=35.566838 +1394066.999493 1285306.999493 norm=35.735137 +1394060.761584 1292904.761584 norm=34.770677 +1394111.293122 1286920.293122 norm=34.741906 +1394089.113972 1292393.113972 norm=35.071356 +1394101.022016 1285647.022016 norm=34.000000 +1394123.106225 1289609.106225 norm=35.524639 +1394072.064525 1287313.064525 norm=35.832946 +1394099.396139 1294059.396139 norm=35.355339 +1394124.920368 1284767.920368 norm=34.554305 +1394131.122100 1291816.122100 norm=35.270384 +1394121.797513 1285665.797513 norm=35.832946 +1394125.988370 1291281.988370 norm=35.958309 +1394121.337665 1291279.337665 norm=34.568772 +1394163.443436 1289101.443436 norm=34.351128 +1394146.923376 1287329.923376 norm=34.957117 +1394160.435187 1284519.435187 norm=34.336569 +1394169.984299 1290241.984299 norm=34.655447 +1394174.672662 1289610.672662 norm=34.336569 +1394171.774001 1290909.774001 norm=34.219877 +1394190.241566 1289152.241566 norm=34.770677 +1394175.779216 1289423.779216 norm=35.085610 +1394178.878781 1289262.878781 norm=34.161382 +1394208.794259 1286311.794259 norm=34.205263 +1394209.985320 1293437.985320 norm=34.698703 +1394194.912790 1285370.912790 norm=35.242020 +1394200.482076 1290224.482076 norm=34.684290 +1394222.251362 1284452.251362 norm=35.383612 +1394193.566772 1292961.566772 norm=35.256205 +1394224.113131 1287695.113131 norm=35.496479 +1394220.210061 1292931.210061 norm=36.290495 +1394194.252958 1287063.252958 norm=36.646964 +1394221.750994 1288987.750994 norm=35.552778 +1394241.887559 1292093.887559 norm=34.568772 +1394260.372973 1290298.372973 norm=34.539832 +1394255.628206 1289103.628206 norm=35.128336 +1394268.792043 1291854.792043 norm=34.641016 +1394260.771808 1285187.771808 norm=35.000000 +1394264.534782 1291344.534782 norm=34.249088 +1394278.002957 1284641.002957 norm=34.307434 +1394283.393256 1294257.393256 norm=35.057096 +1394264.658509 1282410.658509 norm=35.665109 +1394289.557485 1291742.557485 norm=34.292856 +1394316.596916 1288177.596916 norm=34.190642 +1394289.230531 1291512.230531 norm=35.679126 +1394290.794045 1285125.794045 norm=35.383612 +1394298.016483 1292542.016483 norm=34.871192 +1394315.909502 1286448.909502 norm=35.580894 +1394319.775860 1290161.775860 norm=34.438351 +1394323.723006 1289803.723006 norm=34.985711 +1394317.922059 1292032.922059 norm=35.874782 +1394314.048856 1288331.048856 norm=36.441734 +1394321.208837 1291478.208837 norm=35.270384 +1394319.407848 1292124.407848 norm=35.256205 +1394347.244565 1295048.244565 norm=35.099858 +1394361.783574 1287698.783574 norm=35.213634 +1394350.463607 1290567.463607 norm=35.608988 +1394347.228822 1286898.228822 norm=34.641016 +1394375.311067 1292958.311067 norm=34.496377 +1394388.453231 1284703.453231 norm=35.057096 +1394361.105858 1294772.105858 norm=35.383612 +1394377.784737 1287762.784737 norm=35.142567 +1394391.582728 1296648.582728 norm=34.856850 +1394385.988800 1284681.988800 norm=35.355339 +1394391.799668 1292408.799668 norm=34.597688 +1394394.541866 1286707.541866 norm=35.227830 +1394406.707281 1286581.707281 norm=35.679126 +1394397.818834 1284834.818834 norm=35.071356 +1394424.534932 1291387.534932 norm=34.452866 +1394427.704372 1288286.704372 norm=35.425979 +1394400.723820 1290290.723820 norm=35.608988 +1394432.961275 1289098.961275 norm=34.146742 +1394448.912009 1288950.912009 norm=35.284558 +1394428.337357 1288096.337357 norm=35.227830 +1394435.919216 1288543.919216 norm=35.383612 +1394446.773602 1285955.773602 norm=35.156792 +1394465.925383 1291075.925383 norm=35.042831 +1394442.904603 1288133.904603 norm=36.110940 +1394458.277263 1291446.277263 norm=35.679126 +1394467.258696 1296010.258696 norm=35.185224 +1394488.702382 1289206.702382 norm=35.185224 +1394474.364014 1287017.364014 norm=35.791060 +1394474.296347 1293271.296347 norm=35.972211 +1394465.690121 1286725.690121 norm=35.199432 +1394499.550846 1291453.550846 norm=34.713110 +1394502.633222 1291598.633222 norm=35.832946 +1394490.229751 1291971.229751 norm=34.132096 +1394531.704621 1291745.704621 norm=34.365681 +1394513.442862 1287522.442862 norm=35.000000 +1394522.430585 1290416.430585 norm=34.597688 +1394548.590959 1288099.590959 norm=33.852622 +1394550.993239 1286116.993239 norm=34.942810 +1394539.409264 1292886.409264 norm=34.278273 +1394550.383352 1286175.383352 norm=36.055513 +1394527.161291 1289883.161291 norm=35.777088 +1394520.766285 1289953.766285 norm=35.057096 +1394580.719832 1287400.719832 norm=35.651087 +1394527.198134 1288479.198134 norm=35.482390 +1394572.727337 1290844.727337 norm=34.756294 +1394584.439345 1286465.439345 norm=35.510562 +1394566.803722 1289256.803722 norm=34.554305 +1394596.297239 1287348.297239 norm=35.284558 +1394591.384775 1290938.384775 norm=34.957117 +1394594.258453 1288886.258453 norm=35.298725 +1394603.875467 1288038.875467 norm=34.307434 +1394607.429201 1291282.429201 norm=35.071356 +1394605.473170 1289850.473170 norm=34.914181 +1394619.944504 1284671.944504 norm=35.341194 +1394612.238950 1293940.238950 norm=35.496479 +1394622.274703 1286545.274703 norm=34.928498 +1394637.162250 1295148.162250 norm=34.423829 +1394655.255154 1286738.255154 norm=34.029399 +1394666.939460 1291193.939460 norm=34.770677 +1394643.723376 1288656.723376 norm=35.510562 +1394626.074924 1294231.074924 norm=35.042831 +1394666.636240 1287561.636240 norm=35.930488 +1394642.386276 1294503.386276 norm=36.124784 +1394653.716764 1288948.716764 norm=35.693137 +1394644.339689 1291297.339689 norm=35.454196 +1394670.942858 1282396.942858 norm=34.380227 +1394688.805764 1292071.805764 norm=35.454196 +1394669.745622 1285705.745622 norm=35.454196 +1394705.862761 1292078.862761 norm=34.698703 +1394679.891561 1289337.891561 norm=35.411862 +1394696.093197 1295218.093197 norm=34.641016 +1394711.805915 1290232.805915 norm=34.132096 +1394746.222816 1286729.222816 norm=35.057096 +1394689.995381 1289178.995381 norm=34.942810 +1394723.691438 1291864.691438 norm=36.290495 +1394706.033307 1289919.033307 norm=34.985711 +1394715.500972 1292561.500972 norm=35.832946 +1394735.848599 1289482.848599 norm=35.524639 +1394723.892748 1285624.892748 norm=35.468296 +1394723.836005 1291474.836005 norm=35.552778 +1394761.954210 1294131.954210 norm=34.957117 +1394774.052883 1287059.052883 norm=34.029399 +1394781.867581 1294312.867581 norm=34.394767 +1394769.235931 1289058.235931 norm=34.928498 +1394773.326296 1289202.326296 norm=35.846897 +1394752.942268 1288200.942268 norm=35.777088 +1394781.048211 1289192.048211 norm=35.454196 +1394776.107982 1291786.107982 norm=35.594943 +1394776.902244 1289126.902244 norm=34.813790 +1394782.970429 1294317.970429 norm=34.928498 +1394802.988750 1287576.988750 norm=34.914181 +1394811.726991 1289052.726991 norm=35.242020 +1394787.374570 1290711.374570 norm=35.312887 +1394814.244744 1290909.244744 norm=34.885527 +1394827.009351 1295649.009351 norm=34.914181 +1394819.345564 1291623.345564 norm=35.114100 +1394836.224468 1285897.224468 norm=34.655447 +1394826.461273 1293918.461273 norm=35.213634 +1394832.174136 1296369.174136 norm=35.524639 +1394836.942411 1288493.942411 norm=35.623026 +1394840.410340 1291576.410340 norm=35.791060 +1394835.462823 1296529.462823 norm=35.679126 +1394855.389711 1285916.389711 norm=34.698703 +1394865.047166 1294752.047166 norm=35.355339 +1394874.936528 1286977.936528 norm=34.856850 +1394883.853152 1289494.853152 norm=36.110940 +1394861.612348 1287982.612348 norm=34.568772 +1394916.175353 1297517.175353 norm=32.878564 +1394935.035771 1285952.035771 norm=33.734256 +1394897.454209 1293737.454209 norm=35.749126 +1394894.809157 1292366.809157 norm=34.539832 +1394898.749285 1292684.749285 norm=34.985711 +1394921.149417 1285843.149417 norm=34.727511 +1394929.602429 1296890.602429 norm=35.411862 +1394902.362272 1284557.362272 norm=34.885527 +1394927.640444 1295186.640444 norm=35.171011 +1394930.673746 1292851.673746 norm=34.698703 +1394936.213011 1291297.213011 norm=34.957117 +1394932.191906 1287881.191906 norm=36.166283 +1394911.242455 1292942.242455 norm=35.042831 +1394964.256039 1284007.256039 norm=35.566838 +1394933.278461 1287594.278461 norm=36.932371 +1394932.761067 1294230.761067 norm=35.284558 +1394971.252253 1293267.252253 norm=34.132096 +1394987.852136 1290232.852136 norm=35.242020 +1394969.679851 1294824.679851 norm=34.597688 +1394997.491778 1287387.491778 norm=34.899857 +1394977.650933 1294214.650933 norm=34.885527 +1395006.278705 1289738.278705 norm=34.626579 +1395003.460211 1289518.460211 norm=34.409301 +1395006.712747 1289513.712747 norm=35.185224 +1395001.472252 1288639.472252 norm=33.778692 +1395031.909736 1290739.909736 norm=34.756294 +1395004.089463 1290002.089463 norm=34.813790 +1395036.552377 1285741.552377 norm=33.793490 +1395041.709110 1290892.709110 norm=35.749126 +1394984.095813 1289593.095813 norm=35.383612 +1395028.697185 1291065.697185 norm=35.284558 +1395045.650149 1295688.650149 norm=34.985711 +1395029.419798 1293130.419798 norm=36.262929 +1395018.104136 1290909.104136 norm=35.679126 +1395041.278411 1291220.278411 norm=35.888717 +1395045.972838 1290914.972838 norm=35.594943 +1395053.315259 1293150.315259 norm=35.114100 +1395062.560960 1292725.560960 norm=35.270384 +1395069.133664 1295429.133664 norm=35.805028 +1395063.082621 1292086.082621 norm=35.594943 +1395072.389556 1291036.389556 norm=34.146742 +1395105.868290 1293536.868290 norm=34.727511 +1395103.055952 1293076.055952 norm=34.583233 +1395118.587450 1290978.587450 norm=34.481879 +1395103.049604 1288489.049604 norm=34.190642 +1395119.989290 1296664.989290 norm=34.438351 +1395124.774561 1287769.774561 norm=34.452866 +1395132.506428 1297320.506428 norm=36.069378 +1395105.096514 1286278.096514 norm=35.383612 +1395132.801312 1294652.801312 norm=33.852622 +1395146.200750 1287379.200750 norm=35.057096 +1395133.019284 1290075.019284 norm=35.524639 +1395145.982609 1288340.982609 norm=34.914181 +1395152.825900 1291489.825900 norm=34.684290 +1395161.085425 1287229.085425 norm=33.985291 +1395172.336253 1295600.336253 norm=35.242020 +1395151.965845 1289737.965845 norm=35.425979 +1395151.919455 1290965.919455 norm=35.538711 +1395179.775463 1288867.775463 norm=34.409301 +1395158.303267 1295198.303267 norm=35.665109 +1395162.443761 1288194.443761 norm=35.482390 +1395189.339546 1293377.339546 norm=34.928498 +1395199.878188 1294087.878188 norm=34.928498 +1395215.005087 1286312.005087 norm=35.114100 +1395177.935334 1288840.935334 norm=34.928498 +1395214.051362 1296303.051362 norm=34.161382 +1395230.435380 1297149.435380 norm=34.365681 +1395230.023906 1290743.023906 norm=34.856850 +1395214.388291 1291509.388291 norm=34.467376 +1395248.461079 1294184.461079 norm=35.355339 +1395223.477460 1293231.477460 norm=35.099858 +1395240.715142 1295713.715142 norm=35.085610 +1395238.168647 1289115.168647 norm=35.227830 +1395247.083620 1289738.083620 norm=34.871192 +1395249.880080 1294986.880080 norm=36.055513 +1395227.090311 1297838.090311 norm=35.383612 +1395260.080184 1287747.080184 norm=35.014283 +1395263.653962 1290662.653962 norm=35.171011 +1395270.860908 1294184.860908 norm=35.227830 +1395273.685003 1292929.685003 norm=34.813790 +1395296.444882 1291068.444882 norm=34.336569 +1395276.593478 1293565.593478 norm=35.156792 +1395291.083106 1288637.083106 norm=35.270384 +1395288.858467 1294557.858467 norm=35.227830 +1395301.212883 1287710.212883 norm=34.871192 +1395311.861389 1294057.861389 norm=34.496377 +1395319.232404 1287130.232404 norm=34.467376 +1395313.306451 1293046.306451 norm=35.440090 +1395312.394215 1291103.394215 norm=36.027767 +1395311.744665 1288563.744665 norm=35.468296 +1395326.767447 1294912.767447 norm=34.871192 +1395334.072658 1290513.072658 norm=35.199432 +1395327.404618 1289193.404618 norm=35.538711 +1395330.317757 1290371.317757 norm=34.985711 +1395359.727742 1288486.727742 norm=34.510868 +1395362.695709 1291443.695709 norm=34.583233 +1395368.547418 1290656.547418 norm=35.114100 +1395362.627783 1296470.627783 norm=35.185224 +1395367.252577 1292123.252577 norm=35.042831 +1395363.151950 1293316.151950 norm=35.341194 +1395385.217595 1287613.217595 norm=34.510868 +1395390.378322 1295434.378322 norm=35.818989 +1395382.151675 1284764.151675 norm=35.944402 +1395378.793902 1293303.793902 norm=34.885527 +1395403.164820 1292571.164820 norm=34.626579 +1395415.177723 1288765.177723 norm=34.871192 +1395418.762290 1294136.762290 norm=34.713110 +1395414.768377 1287255.768377 norm=34.117444 +1395426.355555 1296682.355555 norm=34.467376 +1395430.504219 1291188.504219 norm=34.423829 +1395452.276350 1291938.276350 norm=33.808283 +1395453.969014 1292679.969014 norm=35.454196 +1395444.662484 1295020.662484 norm=34.423829 +1395441.621759 1289531.621759 norm=35.270384 +1395433.298388 1291365.298388 norm=35.028560 +1395468.244179 1299007.244179 norm=34.394767 +1395470.218486 1292959.218486 norm=35.623026 +1395449.160358 1296585.160358 norm=34.727511 +1395472.222705 1289692.222705 norm=34.278273 +1395475.003076 1288644.003076 norm=34.914181 +1395470.836279 1289146.836279 norm=35.199432 +1395478.088715 1297317.088715 norm=35.860842 +1395474.987350 1288007.987350 norm=34.856850 +1395492.866318 1290355.866318 norm=35.818989 +1395480.914877 1291676.914877 norm=35.411862 +1395515.608362 1289288.608362 norm=34.669872 +1395515.067629 1287328.067629 norm=34.885527 +1395509.940277 1294867.940277 norm=35.242020 +1395507.627188 1287342.627188 norm=35.482390 +1395514.768200 1298029.768200 norm=35.057096 +1395538.941271 1285169.941271 norm=34.073450 +1395547.071679 1299570.071679 norm=34.000000 +1395571.813197 1287578.813197 norm=33.391616 +1395557.065769 1303179.065769 norm=34.770677 +1395539.934385 1288943.934385 norm=35.397740 +1395551.833360 1290946.833360 norm=34.234486 +1395590.546948 1287093.546948 norm=34.583233 +1395557.469391 1289992.469391 norm=34.727511 +1395577.224433 1291889.224433 norm=34.539832 +1395582.286834 1290398.286834 norm=34.713110 +1395573.173955 1294364.173955 norm=35.930488 +1395569.169834 1294698.169834 norm=35.665109 +1395565.906112 1287119.906112 norm=36.000000 +1395585.182540 1290850.182540 norm=35.397740 +1395578.676649 1292650.676649 norm=35.071356 +1395614.733806 1294964.733806 norm=35.171011 +1395577.453470 1290227.453470 norm=34.899857 +1395627.456471 1293730.456471 norm=34.263683 +1395608.173022 1290938.173022 norm=35.888717 +1395601.185513 1291035.185513 norm=36.701499 +1395597.090835 1293673.090835 norm=35.524639 +1395648.681232 1293907.681232 norm=34.380227 +1395623.750950 1295035.750950 norm=34.885527 +1395676.726845 1290218.726845 norm=34.292856 +1395640.016879 1291360.016879 norm=35.538711 +1395630.091446 1285292.091446 norm=36.221541 +1395626.782692 1293774.782692 norm=35.397740 +1395662.054483 1298335.054483 norm=34.467376 +1395678.286235 1289349.286235 norm=34.539832 +1395676.630548 1297121.630548 norm=34.785054 +1395690.718120 1288011.718120 norm=34.249088 +1395681.940075 1295338.940075 norm=35.114100 +1395691.467532 1292465.467532 norm=35.341194 +1395687.991830 1293586.991830 norm=34.510868 +1395708.138724 1287266.138724 norm=34.307434 +1395716.064182 1293976.064182 norm=34.813790 +1395722.351975 1291086.351975 norm=34.467376 +1395717.162747 1292916.162747 norm=34.669872 +1395705.690527 1295437.690527 norm=35.284558 +1395712.514084 1286789.514084 norm=34.583233 +1395719.890876 1296230.890876 norm=35.832946 +1395714.976573 1292020.976573 norm=35.510562 +1395741.684909 1292320.684909 norm=34.856850 +1395734.499731 1290534.499731 norm=36.249138 +1395728.366481 1292209.366481 norm=34.856850 +1395745.262475 1293266.262475 norm=34.971417 +1395763.870918 1295058.870918 norm=35.818989 +1395726.774967 1294898.774967 norm=36.027767 +1395748.481410 1294098.481410 norm=35.397740 +1395768.730746 1292361.730746 norm=35.468296 +1395747.353224 1293136.353224 norm=35.510562 +1395777.639021 1291833.639021 norm=35.242020 +1395786.827775 1296595.827775 norm=34.785054 +1395776.537230 1292093.537230 norm=35.482390 +1395787.467808 1289116.467808 norm=34.423829 +1395796.944674 1288529.944674 norm=35.199432 +1395806.591647 1294166.591647 norm=34.132096 +1395822.886783 1284311.886783 norm=34.073450 +1395836.166468 1293944.166468 norm=35.114100 +1395797.902110 1292452.902110 norm=34.741906 +1395839.613142 1295312.613142 norm=33.970576 +1395850.246563 1291200.246563 norm=35.482390 +1395813.025550 1297650.025550 norm=35.944402 +1395829.929553 1289404.929553 norm=35.142567 +1395830.325639 1293833.325639 norm=34.641016 +1395860.875365 1288114.875365 norm=33.704599 +1395876.545271 1298227.545271 norm=35.425979 +1395823.401776 1290504.401776 norm=36.207734 +1395851.725050 1290513.725050 norm=34.856850 +1395847.768635 1291958.768635 norm=35.482390 +1395876.459653 1291631.459653 norm=35.777088 +1395877.423018 1293439.423018 norm=35.496479 +1395869.496489 1291543.496489 norm=34.770677 +1395883.190333 1291060.190333 norm=35.042831 +1395889.109377 1293781.109377 norm=35.510562 +1395879.379684 1287277.379684 norm=35.000000 +1395897.626499 1297078.626499 norm=34.885527 +1395909.325182 1292162.325182 norm=35.524639 +1395899.903585 1290605.903585 norm=35.411862 +1395902.769511 1290750.769511 norm=35.284558 +1395915.245184 1289709.245184 norm=34.249088 +1395943.708034 1289380.708034 norm=34.249088 +1395939.327862 1293682.327862 norm=35.142567 +1395930.655861 1292902.655861 norm=34.612137 +1395933.348555 1293042.348555 norm=35.298725 +1395945.654728 1290914.654728 norm=34.684290 +1395960.435396 1294703.435396 norm=35.114100 +1395938.237902 1293679.237902 norm=35.042831 +1395978.198168 1293625.198168 norm=34.641016 +1395972.980030 1288605.980030 norm=34.957117 +1395964.357496 1294928.357496 norm=34.510868 +1395981.545638 1287548.545638 norm=35.270384 +1395980.496423 1297905.496423 norm=34.856850 +1395995.345595 1288479.345595 norm=35.128336 +1395989.305750 1294712.305750 norm=34.322005 +1396003.144610 1290719.144610 norm=34.957117 +1396005.616958 1290346.616958 norm=34.971417 +1396009.821572 1294273.821572 norm=35.000000 +1396004.708224 1295543.708224 norm=34.985711 +1396016.708798 1287308.708798 norm=35.496479 +1396000.249217 1296950.249217 norm=35.156792 +1396028.553798 1294512.553798 norm=34.957117 +1396026.813472 1291977.813472 norm=33.882149 +1396049.869049 1295267.869049 norm=34.336569 +1396044.804427 1292012.804427 norm=35.156792 +1396041.442245 1295061.442245 norm=35.580894 +1396023.533489 1293848.533489 norm=35.327043 +1396065.213317 1290655.213317 norm=34.799425 +1396063.643607 1290348.643607 norm=34.684290 +1396075.221535 1293371.221535 norm=34.971417 +1396058.237709 1288634.237709 norm=35.298725 +1396080.072407 1295202.072407 norm=34.029399 +1396097.636916 1291735.636916 norm=34.525353 +1396082.322410 1294919.322410 norm=34.713110 +1396108.654733 1290041.654733 norm=35.327043 +1396067.561939 1297562.561939 norm=35.944402 +1396088.695390 1290006.695390 norm=34.525353 +1396098.012843 1296026.012843 norm=35.735137 +1396104.101501 1289403.101501 norm=35.735137 +1396088.022537 1296935.022537 norm=35.594943 +1396109.870311 1294923.870311 norm=34.102786 +1396131.266303 1291672.266303 norm=34.322005 +1396152.496261 1295286.496261 norm=34.073450 +1396158.019030 1294590.019030 norm=33.496268 +1396159.363731 1289211.363731 norm=35.000000 +1396125.428251 1291859.428251 norm=35.242020 +1396139.143445 1296923.143445 norm=35.227830 +1396149.749917 1293662.749917 norm=35.028560 +1396149.107430 1290260.107430 norm=35.369478 +1396151.329622 1296795.329622 norm=35.735137 +1396153.577490 1297982.577490 norm=34.756294 +1396181.522591 1291709.522591 norm=34.409301 +1396169.522397 1291864.522397 norm=35.171011 +1396179.644886 1293102.644886 norm=34.234486 +1396198.537523 1288576.537523 norm=33.630343 +1396207.554067 1289692.554067 norm=34.957117 +1396177.675580 1293228.675580 norm=35.594943 +1396188.469288 1292202.469288 norm=35.580894 +1396197.371939 1291940.371939 norm=34.626579 +1396224.366335 1296123.366335 norm=34.161382 +1396225.537782 1292650.537782 norm=35.608988 +1396212.674042 1294167.674042 norm=35.312887 +1396218.051455 1294504.051455 norm=35.185224 +1396225.277387 1290535.277387 norm=35.341194 +1396225.903672 1297136.903672 norm=34.957117 +1396243.716230 1292162.716230 norm=35.014283 +1396250.333717 1295088.333717 norm=35.156792 +1396239.667060 1285865.667060 norm=35.566838 +1396229.543597 1299045.543597 norm=35.440090 +1396250.800158 1288568.800158 norm=34.234486 +1396291.728109 1292448.728109 norm=34.380227 +1396273.054584 1292173.054584 norm=34.684290 +1396278.170685 1291027.170685 norm=34.942810 +1396281.982863 1294002.982863 norm=34.583233 +1396286.822634 1293675.822634 norm=34.525353 +1396284.214941 1298267.214941 norm=34.813790 +1396295.537375 1293796.537375 norm=34.409301 +1396303.134927 1289745.134927 norm=35.185224 +1396289.342270 1297842.342270 norm=34.597688 +1396314.845089 1284456.845089 norm=34.785054 +1396313.511884 1295658.511884 norm=34.727511 +1396330.007139 1294380.007139 norm=34.525353 +1396330.494574 1298558.494574 norm=35.256205 +1396331.747421 1294635.747421 norm=35.000000 +1396313.300450 1298547.300450 norm=35.284558 +1396352.774025 1291330.774025 norm=34.741906 +1396327.156560 1297985.156560 norm=35.099858 +1396349.624807 1292793.624807 norm=35.028560 +1396327.506960 1295749.506960 norm=35.242020 +1396355.070020 1286701.070020 norm=35.566838 +1396341.710165 1293782.710165 norm=35.707142 +1396370.370339 1295216.370339 norm=35.594943 +1396358.377114 1296610.377114 norm=36.110940 +1396350.258715 1292699.258715 norm=35.958309 +1396382.828870 1294507.828870 norm=34.554305 +1396383.662564 1292121.662564 norm=34.770677 +1396400.138503 1295132.138503 norm=34.669872 +1396380.670900 1290219.670900 norm=34.102786 +1396416.373783 1296777.373783 norm=34.655447 +1396393.843491 1286401.843491 norm=35.213634 +1396391.506393 1294406.506393 norm=35.383612 +1396415.670780 1292193.670780 norm=34.234486 +1396435.521429 1291010.521429 norm=34.626579 +1396431.482517 1293571.482517 norm=34.322005 +1396443.022043 1289649.022043 norm=35.028560 +1396404.884581 1292269.884581 norm=35.930488 +1396437.355972 1295961.355972 norm=35.454196 +1396437.726350 1284358.726350 norm=34.942810 +1396440.663260 1293006.663260 norm=35.608988 +1396442.657336 1290462.657336 norm=34.713110 +1396458.769050 1297541.769051 norm=35.580894 +1396422.113328 1294533.113328 norm=35.860842 +1396463.688946 1298227.688946 norm=35.341194 +1396466.754682 1293557.754682 norm=35.608988 +1396462.556063 1294658.556063 norm=35.679126 +1396480.824363 1292517.824363 norm=34.957117 +1396481.697958 1290296.697958 norm=35.156792 +1396486.141284 1295165.141284 norm=35.510562 +1396475.199236 1295926.199236 norm=34.942810 +1396520.555859 1285519.555859 norm=35.000000 +1396495.743023 1294597.743023 norm=35.242020 +1396503.661768 1290684.661768 norm=36.000000 +1396480.339843 1291924.339843 norm=36.152455 +1396502.167797 1294388.167797 norm=35.213634 +1396537.801001 1295303.801001 norm=35.284558 +1396523.862828 1293865.862828 norm=34.856850 +1396541.108117 1291078.108117 norm=34.568772 +1396541.885273 1292709.885273 norm=33.763886 +1396570.152540 1296768.152540 norm=34.612137 +1396541.474383 1294067.474383 norm=35.832946 +1396534.048830 1293703.048830 norm=34.871192 +1396581.997161 1295038.997161 norm=34.568772 +1396567.002500 1290235.002500 norm=34.698703 +1396582.517955 1295970.517955 norm=33.778692 +1396596.307087 1290658.307087 norm=34.380227 +1396567.805350 1296973.805350 norm=35.355339 +1396587.152849 1292181.152849 norm=34.828150 +1396585.751076 1296843.751076 norm=34.539832 +1396603.989415 1295475.989415 norm=35.128336 +1396581.262437 1294488.262437 norm=35.651087 +1396605.021910 1288291.021910 norm=35.199432 +1396614.921953 1294630.921953 norm=34.088121 +1396623.625916 1283469.625916 norm=35.482390 +1396615.189619 1293553.189619 norm=35.637059 +1396618.054058 1295624.054058 norm=34.842503 +1396628.089031 1296101.089031 norm=34.698703 +1396618.545620 1287998.545620 norm=36.166283 +1396623.527005 1296345.527005 norm=34.496377 +1396658.359916 1294827.359916 norm=34.655447 +1396659.613532 1291771.613532 norm=34.828150 +1396617.714067 1293277.714067 norm=36.013886 +1396658.273231 1292165.273231 norm=35.818989 +1396631.313137 1291680.313137 norm=35.916570 +1396655.022423 1296651.022423 norm=34.842503 +1396675.716358 1294937.716358 norm=33.852622 +1396698.584409 1289399.584409 norm=33.674916 +1396707.446351 1294273.446351 norm=34.770677 +1396687.904565 1292353.904565 norm=34.885527 +1396695.002082 1295910.002082 norm=34.583233 +1396684.263651 1297416.263651 norm=35.552778 +1396690.339287 1293077.339287 norm=35.791060 +1396687.966510 1290986.966510 norm=35.552778 +1396705.066368 1297606.066368 norm=35.594943 +1396708.854747 1291031.854747 norm=35.369478 +1396713.431489 1295458.431489 norm=36.055513 +1396716.457059 1295676.457059 norm=35.099858 +1396725.937319 1293382.937319 norm=34.928498 +1396728.131628 1291080.131628 norm=34.770677 +1396737.813870 1291290.813870 norm=34.770677 +1396757.273873 1293905.273873 norm=34.597688 +1396738.314976 1295378.314976 norm=35.142567 +1396747.689498 1294536.689498 norm=35.142567 +1396769.520786 1292683.520786 norm=34.554305 +1396766.694336 1290679.694336 norm=35.128336 +1396780.520334 1299413.520334 norm=34.713110 +1396774.245761 1290294.245761 norm=34.161382 +1396789.814233 1292983.814233 norm=35.468296 +1396767.073858 1293243.073858 norm=35.000000 +1396790.166009 1291657.166009 norm=35.171011 +1396797.636652 1285986.636652 norm=34.899857 +1396792.591210 1295230.591210 norm=34.985711 +1396793.144392 1296852.144392 norm=34.942810 +1396833.690807 1287924.690807 norm=34.756294 +1396780.622404 1295820.622404 norm=34.971417 +1396849.625685 1295827.625685 norm=33.763886 +1396830.680975 1297138.680975 norm=34.409301 +1396829.236574 1291970.236574 norm=34.626579 +1396828.818077 1293399.818077 norm=35.482390 +1396821.335010 1295265.335010 norm=36.414283 +1396804.401165 1296316.401165 norm=36.606010 +1396840.039578 1294881.039578 norm=35.958309 +1396816.197238 1291217.197238 norm=35.832946 +1396844.171620 1293987.171620 norm=35.651087 +1396865.090367 1294817.090367 norm=35.042831 +1396865.922118 1293710.922118 norm=34.132096 +1396885.779207 1290013.779207 norm=34.770677 +1396880.475558 1294821.475558 norm=34.568772 +1396869.161776 1292333.161776 norm=34.928498 +1396886.500147 1287148.500147 norm=33.867388 +1396923.561626 1292262.561626 norm=34.698703 +1396880.454495 1290618.454495 norm=35.227830 +1396901.542541 1288953.542541 norm=34.741906 +1396907.800523 1295355.800523 norm=36.083237 +1396882.672472 1291026.672472 norm=35.791060 +1396895.776041 1294513.776041 norm=35.552778 +1396907.452840 1292644.452840 norm=35.057096 +1396923.822837 1292248.822837 norm=35.369478 +1396916.118788 1298006.118788 norm=35.085610 +1396944.938272 1297141.938272 norm=34.467376 +1396931.582050 1294224.582050 norm=35.665109 +1396933.337283 1295655.337283 norm=35.693137 +1396948.629669 1295546.629669 norm=34.871192 +1396943.441918 1293995.441918 norm=35.693137 +1396954.915570 1290200.915570 norm=34.914181 +1396959.530810 1292131.530810 norm=35.298725 +1396967.797069 1296959.797069 norm=35.958309 +1396960.460048 1293626.460048 norm=34.132096 +1397000.280143 1293810.280143 norm=34.423829 +1396997.487788 1291960.487788 norm=35.142567 +1396979.278778 1299471.278778 norm=35.071356 +1396989.932948 1292685.932948 norm=34.641016 +1396999.879619 1296626.879619 norm=34.698703 +1397009.068708 1288766.068708 norm=34.713110 +1397012.793784 1298566.793784 norm=34.409301 +1397004.735047 1284187.735047 norm=35.749126 +1397004.876203 1295469.876203 norm=35.327043 +1396990.910785 1288942.910785 norm=35.763109 +1397022.489950 1295115.489950 norm=34.770677 +1397036.877138 1289879.877138 norm=35.468296 +1397001.221629 1298496.221629 norm=36.041643 +1397026.640779 1295335.640779 norm=35.171011 +1397051.895927 1296689.895927 norm=34.856850 +1397043.174354 1290684.174354 norm=34.525353 +1397054.925258 1292807.925258 norm=35.270384 +1397055.895539 1291984.895539 norm=34.263683 +1397090.479644 1297552.479644 norm=33.451457 +1397095.789289 1293444.789289 norm=34.423829 +1397076.749213 1295089.749213 norm=35.014283 +1397069.176269 1286725.176269 norm=35.902646 +1397072.160445 1296703.160445 norm=35.482390 +1397090.124565 1293515.124565 norm=35.440090 +1397082.193123 1297481.193123 norm=34.957117 +1397094.549585 1291230.549585 norm=36.152455 +1397086.110716 1297409.110716 norm=35.496479 +1397104.751362 1291637.751362 norm=35.411862 +1397101.632039 1296722.632039 norm=36.055513 +1397090.394177 1292513.394177 norm=35.142567 +1397115.971531 1292995.971531 norm=35.805028 +1397107.603692 1295993.603692 norm=35.298725 +1397130.013642 1285261.013642 norm=34.190642 +1397139.223296 1302310.223296 norm=35.369478 +1397128.629923 1293804.629923 norm=35.355339 +1397130.881341 1288595.881341 norm=35.496479 +1397152.922044 1292830.922044 norm=34.044089 +1397157.850016 1294138.850016 norm=35.538711 +1397144.536215 1293711.536215 norm=35.468296 +1397163.600392 1291379.600392 norm=34.380227 +1397183.970355 1298359.970355 norm=34.684290 +1397163.340347 1291148.340347 norm=34.438351 +1397191.827156 1292035.827156 norm=34.799425 +1397183.063349 1299489.063349 norm=34.985711 +1397196.714603 1293539.714603 norm=35.608988 +1397174.105503 1295561.105503 norm=35.468296 +1397183.808073 1293169.808073 norm=35.524639 +1397208.071168 1291887.071168 norm=34.684290 +1397226.685155 1292388.685155 norm=34.727511 +1397207.096033 1296627.096033 norm=34.971417 +1397236.729272 1291424.729272 norm=33.808283 +1397228.606052 1294708.606052 norm=35.383612 +1397218.544951 1291409.544951 norm=35.665109 +1397213.105888 1297158.105888 norm=35.284558 +1397239.911767 1296194.911767 norm=34.885527 +1397233.640018 1298506.640018 norm=35.185224 +1397249.924197 1293229.924197 norm=35.270384 +1397228.157624 1294819.157624 norm=35.888717 +1397233.014088 1292766.014088 norm=35.171011 +1397265.050849 1293599.050849 norm=35.185224 +1397279.228249 1293513.228249 norm=35.142567 +1397259.980329 1293715.980329 norm=35.566838 +1397278.176450 1289509.176450 norm=34.029399 +1397310.338391 1290840.338391 norm=34.684290 +1397278.715862 1295203.715862 norm=34.641016 +1397302.964096 1293803.964096 norm=34.029399 +1397311.991940 1299423.991940 norm=34.597688 +1397298.190157 1289213.190157 norm=34.496377 +1397306.277341 1297771.277341 norm=34.741906 +1397308.605833 1291767.605833 norm=34.942810 +1397312.608894 1295680.608894 norm=35.749126 +1397319.984780 1299589.984780 norm=35.594943 +1397305.776743 1287844.776743 norm=35.284558 +1397326.475320 1295828.475320 norm=35.213634 +1397335.185128 1293850.185128 norm=35.156792 +1397330.687725 1295868.687725 norm=35.608988 +1397327.395040 1293692.395040 norm=35.665109 +1397340.922219 1299563.922219 norm=34.438351 +1397364.508019 1292090.508019 norm=34.684290 +1397359.453411 1297931.453411 norm=34.785054 +1397369.663723 1297294.663723 norm=34.336569 +1397369.713439 1291193.713439 norm=35.594943 +1397390.048219 1292228.048219 norm=34.871192 +1397362.955993 1298208.955993 norm=34.278273 +1397396.878699 1291849.878699 norm=35.341194 +1397375.296478 1298586.296478 norm=35.397740 +1397376.786518 1291257.786518 norm=35.763109 +1397385.767808 1294833.767808 norm=34.770677 +1397420.880154 1292483.880154 norm=35.071356 +1397404.669154 1295205.669154 norm=34.219877 +1397436.689322 1296942.689322 norm=34.525353 +1397415.634432 1294567.634432 norm=34.626579 +1397413.019743 1295786.019743 norm=35.637059 +1397413.395082 1293450.395082 norm=34.899857 +1397436.796530 1291460.796530 norm=35.085610 +1397435.099719 1291620.099719 norm=35.623026 +1397436.111978 1293871.111978 norm=34.727511 +1397445.694139 1293954.694139 norm=35.454196 +1397439.601043 1294658.601043 norm=35.594943 +1397453.354204 1294216.354204 norm=34.568772 +1397480.498090 1296890.498090 norm=35.411862 +1397447.351859 1287760.351859 norm=36.027767 +1397445.727369 1298501.727369 norm=34.928498 +1397481.805191 1292665.805191 norm=35.256205 +1397453.815407 1296253.815407 norm=35.735137 +1397486.527881 1297250.527881 norm=34.510868 +1397482.940323 1291277.940323 norm=35.707142 +1397486.314268 1295594.314268 norm=34.885527 +1397507.383356 1292316.383356 norm=34.205263 +1397516.710106 1294186.710106 norm=34.626579 +1397497.386263 1292985.386263 norm=33.955854 +1397554.070449 1298313.070449 norm=33.241540 +1397537.590398 1291533.590398 norm=34.161382 +1397541.614989 1299652.614989 norm=34.263683 +1397527.795415 1293885.795415 norm=34.438351 +1397544.468821 1293378.468821 norm=34.871192 +1397500.500801 1296344.500801 norm=35.608988 +1397552.550978 1296805.550978 norm=34.899857 +1397541.136735 1296495.136735 norm=35.735137 +1397531.990042 1294531.990042 norm=35.114100 +1397556.619000 1297897.619000 norm=35.580894 +1397536.970061 1297721.970061 norm=36.262929 +1397544.858361 1296394.858361 norm=35.128336 +1397584.274927 1295359.274927 norm=34.985711 +1397562.581520 1293078.581520 norm=35.185224 +1397593.503386 1289968.503386 norm=33.615473 +1397594.369496 1292239.369496 norm=34.612137 +1397596.619730 1295423.619730 norm=34.914181 +1397566.670531 1291850.670531 norm=35.468296 +1397600.925407 1298757.925407 norm=34.842503 +1397588.163610 1294650.163610 norm=35.735137 +1397596.812311 1292036.812311 norm=35.735137 +1397609.655706 1295239.655706 norm=34.438351 +1397625.476361 1291806.476361 norm=34.756294 +1397624.984507 1293948.984507 norm=35.341194 +1397629.093873 1292646.093873 norm=35.411862 +1397616.747180 1295250.747180 norm=35.958309 +1397605.865409 1298709.865409 norm=35.383612 +1397637.836444 1291579.836444 norm=35.693137 +1397640.313977 1297088.313977 norm=34.856850 +1397657.663290 1294257.663290 norm=33.926391 +1397672.720672 1293304.720672 norm=34.292856 +1397664.207832 1292005.207832 norm=35.538711 +1397634.363414 1293659.363414 norm=35.818989 +1397638.859215 1293482.859215 norm=35.538711 +1397675.671554 1296471.671554 norm=35.721142 +1397663.853259 1296287.853259 norm=35.128336 +1397679.200157 1290525.200157 norm=34.942810 +1397711.413998 1296080.413998 norm=34.612137 +1397686.373110 1290858.373110 norm=35.327043 +1397686.039187 1295405.039187 norm=36.055513 +1397676.640536 1293618.640536 norm=35.944402 +1397689.425873 1295453.425873 norm=35.099858 +1397706.029290 1293484.029290 norm=35.256205 +1397716.490133 1291759.490133 norm=35.327043 +1397706.104237 1297119.104237 norm=35.057096 +1397727.628135 1300068.628135 norm=35.566838 +1397703.413276 1290885.413276 norm=34.928498 +1397740.785548 1296852.785548 norm=34.971417 +1397738.789923 1296762.789923 norm=34.741906 +1397756.655194 1289319.655194 norm=34.727511 +1397765.876308 1290809.876308 norm=33.511192 +1397775.412849 1298191.412849 norm=34.029399 +1397779.772201 1289707.772201 norm=34.713110 +1397764.003985 1297039.003985 norm=35.944402 +1397756.839409 1296246.839409 norm=34.481879 +1397787.625347 1291237.625347 norm=34.351128 +1397788.981427 1296021.981427 norm=34.713110 +1397781.756788 1295101.756788 norm=35.468296 +1397786.144645 1290528.144645 norm=34.452866 +1397808.573691 1293959.573691 norm=34.626579 +1397799.160699 1298103.160699 norm=35.637059 +1397773.412098 1291005.412098 norm=36.633318 +1397780.211747 1296815.211747 norm=34.928498 +1397826.240515 1293689.240515 norm=35.156792 +1397799.428089 1296451.428089 norm=35.679126 +1397807.297453 1299393.297453 norm=35.397740 +1397824.650162 1294502.650162 norm=34.626579 +1397832.039420 1292693.039420 norm=34.799425 +1397848.985339 1292883.985339 norm=34.597688 +1397840.705676 1296708.705676 norm=35.608988 +1397835.280510 1292931.280510 norm=35.468296 +1397845.644193 1298189.644193 norm=35.199432 +1397851.274273 1287424.274273 norm=35.199432 +1397844.592458 1296171.592458 norm=35.327043 +1397863.380123 1291409.380123 norm=34.914181 +1397860.605296 1301619.605296 norm=34.928498 +1397880.546463 1288892.546463 norm=34.971417 +1397868.768397 1298551.768397 norm=35.693137 +1397872.263822 1293540.263822 norm=34.985711 +1397873.208956 1295987.208956 norm=35.482390 +1397876.992780 1294687.992780 norm=35.171011 +1397892.092504 1296969.092504 norm=35.199432 +1397902.673391 1296687.673391 norm=34.263683 +1397913.680027 1298334.680027 norm=35.042831 +1397896.905631 1292156.905631 norm=34.510868 +1397931.438584 1292579.438584 norm=34.871192 +1397912.297940 1300327.297940 norm=35.679126 +1397911.149964 1290630.149964 norm=35.651087 +1397915.538420 1289748.538420 norm=35.242020 +1397920.183056 1301356.183056 norm=35.042831 +1397937.017811 1292808.017811 norm=35.608988 +1397930.348377 1296329.348377 norm=35.142567 +1397962.367050 1296122.367050 norm=34.438351 +1397949.752677 1295081.752677 norm=35.270384 +1397943.766146 1293281.766146 norm=36.386811 +1397948.152923 1291673.152923 norm=35.651087 +1397945.649573 1298395.649573 norm=35.213634 +1397967.069864 1292077.069864 norm=35.057096 +1397970.983823 1298335.983823 norm=35.341194 +1397975.115036 1293038.115036 norm=35.721142 +1397974.002636 1297605.002636 norm=34.828150 +1398001.138449 1295838.138449 norm=34.102786 +1398002.104511 1296719.104511 norm=34.727511 +1397993.321201 1298011.321201 norm=35.651087 +1398004.759916 1290327.759916 norm=34.914181 +1397997.305010 1296443.305010 norm=34.409301 +1398020.609400 1293672.609400 norm=33.808283 +1398024.617022 1304041.617022 norm=34.942810 +1398036.067320 1290179.067320 norm=34.985711 +1398016.898020 1299834.898020 norm=35.128336 +1398036.850234 1292480.850234 norm=35.213634 +1398036.867495 1299704.867495 norm=36.345564 +1398012.169038 1291990.169038 norm=36.276714 +1398050.556735 1297905.556735 norm=35.411862 +1398047.428367 1294789.428367 norm=35.242020 +1398041.627692 1295623.627692 norm=35.972211 +1398028.001107 1292473.001107 norm=36.013886 +1398046.939141 1301853.939141 norm=35.594943 +1398051.763274 1287274.763274 norm=35.637059 +1398045.058751 1296976.058751 norm=35.510562 +1398077.958019 1292389.958019 norm=36.013886 +1398065.573321 1298940.573321 norm=34.842503 +1398096.664348 1291361.664348 norm=34.885527 +1398086.372176 1296204.372176 norm=34.899857 +1398111.084821 1295092.084821 norm=34.785054 +1398095.007017 1299159.007017 norm=35.397740 +1398108.168894 1291230.168894 norm=34.626579 +1398114.590424 1298370.590424 norm=33.896903 +1398138.328835 1289440.328835 norm=33.970576 +1398141.096175 1295232.096175 norm=34.409301 +1398124.525523 1293953.525523 norm=34.756294 +1398133.574481 1294821.574481 norm=34.727511 +1398140.503574 1297956.503574 norm=35.707142 +1398126.644613 1291574.644613 norm=35.468296 +1398132.726608 1298499.726608 norm=35.763109 +1398151.142226 1295828.142226 norm=34.380227 +1398172.916685 1294510.916685 norm=33.911650 +1398176.711947 1296901.711947 norm=35.355339 +1398169.994877 1291304.994877 norm=34.336569 +1398183.501769 1299229.501769 norm=35.383612 +1398177.712124 1288481.712124 norm=35.425979 +1398157.324118 1298687.324118 norm=35.099858 +1398188.530772 1292465.530772 norm=35.468296 +1398166.764506 1299867.764506 norm=35.930488 +1398180.451806 1289181.451806 norm=36.097091 +1398189.682476 1298460.682476 norm=35.057096 +1398200.296594 1293552.296594 norm=34.641016 +1398211.788210 1300515.788210 norm=33.882149 +1398235.323831 1289737.323831 norm=35.623026 +1398192.192975 1293494.192975 norm=35.777088 +1398194.078820 1294239.078820 norm=35.142567 +1398237.801427 1291972.801427 norm=34.655447 +1398239.640634 1299289.640634 norm=34.234486 +1398263.497682 1296636.497682 norm=35.791060 +1398216.693431 1289921.693431 norm=35.496479 +1398233.472806 1304176.472806 norm=35.608988 +1398245.232209 1291618.232209 norm=35.156792 +1398230.328547 1299494.328547 norm=36.249138 +1398240.934245 1296022.934245 norm=35.608988 +1398237.497544 1297322.497544 norm=34.885527 +1398285.905115 1297273.905115 norm=35.156792 +1398265.867616 1300393.867616 norm=34.554305 +1398299.119844 1296428.119844 norm=34.176015 +1398287.548632 1298346.548632 norm=34.971417 +1398294.328714 1295344.328714 norm=35.454196 +1398262.247413 1298173.247413 norm=35.693137 +1398297.909008 1290928.909008 norm=35.341194 +1398278.437315 1302487.437315 norm=34.727511 +1398326.543545 1294688.543545 norm=34.409301 +1398299.172939 1293999.172939 norm=35.608988 +1398291.259566 1300573.259566 norm=35.114100 +1398327.444497 1297245.444497 norm=34.957117 +1398316.953209 1290986.953209 norm=35.185224 +1398329.313061 1304199.313061 norm=35.156792 +1398322.248904 1291147.248904 norm=34.799425 +1398348.574974 1296715.574974 norm=35.014283 +1398348.923350 1293934.923350 norm=34.117444 +1398363.401079 1294966.401079 norm=34.102786 +1398372.808367 1287164.808367 norm=34.684290 +1398360.555105 1301735.555105 norm=34.234486 +1398372.051854 1292726.051854 norm=34.554305 +1398369.626432 1299866.626432 norm=35.085610 +1398371.454592 1299019.454592 norm=35.482390 +1398362.411174 1294309.411174 norm=34.885527 +1398391.250929 1294048.250929 norm=35.171011 +1398374.100513 1299579.100513 norm=35.944402 +1398386.876564 1292493.876564 norm=35.397740 +1398383.727110 1300482.727110 norm=35.860842 +1398387.451551 1290095.451551 norm=35.510562 +1398399.777874 1298085.777874 norm=35.594943 +1398396.600842 1296778.600842 norm=35.284558 +1398397.341049 1296414.341049 norm=34.612137 +1398433.713845 1289486.713845 norm=36.097091 +1398397.091180 1297044.091180 norm=35.566838 +1398414.941779 1295287.941779 norm=34.727511 +1398447.630178 1297780.630178 norm=33.660065 +1398455.062442 1291927.062442 norm=34.799425 +1398446.464029 1297473.464029 norm=34.914181 +1398438.773613 1295318.773613 norm=35.327043 +1398444.731937 1297646.731937 norm=35.524639 +1398461.840910 1288859.840910 norm=35.411862 +1398441.834346 1295903.834346 norm=35.888717 +1398449.491538 1292594.491538 norm=34.914181 +1398466.256006 1296889.256006 norm=34.684290 +1398481.589008 1291116.589008 norm=35.735137 +1398459.208018 1298161.208018 norm=35.651087 +1398453.483331 1294442.483331 norm=35.327043 +1398496.284906 1296501.284906 norm=35.538711 +1398473.115525 1295811.115525 norm=35.749126 +1398483.825986 1292762.825986 norm=35.383612 +1398483.485956 1292684.485956 norm=36.110940 +1398493.767161 1298297.767161 norm=36.055513 +1398484.201730 1298143.201730 norm=36.496575 +1398475.378992 1296769.378992 norm=35.888717 +1398507.460970 1293906.460970 norm=34.597688 +1398535.572310 1296955.572310 norm=35.707142 +1398506.170344 1293601.170344 norm=35.777088 +1398519.827079 1296000.827079 norm=34.219877 +1398548.894189 1296075.894189 norm=34.452866 +1398566.075705 1298019.075705 norm=34.525353 +1398563.246182 1293324.246182 norm=34.641016 +1398552.890082 1302164.890082 norm=35.707142 +1398528.370157 1291454.370157 norm=36.013886 +1398550.713278 1301665.713278 norm=34.741906 +1398587.870453 1298871.870453 norm=34.727511 +1398583.427998 1299315.427998 norm=36.138622 +1398559.337372 1297448.337372 norm=35.071356 +1398565.856741 1294388.856741 norm=34.655447 +1398594.786402 1295828.786402 norm=35.524639 +1398590.657287 1298078.657287 norm=35.057096 +1398578.566448 1290213.566448 norm=35.735137 +1398588.485377 1304293.485377 norm=35.369478 +1398596.589390 1297370.589390 norm=35.128336 +1398625.605840 1295691.605840 norm=34.525353 +1398598.562893 1297747.562893 norm=36.166283 +1398624.943647 1298186.943647 norm=35.341194 +1398589.484282 1299323.484282 norm=35.355339 +1398631.277414 1297304.277414 norm=34.971417 +1398636.496533 1290363.496533 norm=34.885527 +1398643.732747 1298850.732747 norm=34.785054 +1398631.018133 1297899.018133 norm=35.028560 +1398636.921517 1299140.921517 norm=34.539832 +1398673.949510 1294035.949510 norm=34.799425 +1398649.949100 1299875.949100 norm=36.180105 +1398624.906984 1296725.906984 norm=35.142567 +1398671.660837 1294335.660837 norm=35.524639 +1398653.686422 1299493.686422 norm=35.369478 +1398657.728423 1290095.728423 norm=34.899857 +1398690.044127 1293021.044127 norm=34.669872 +1398690.038117 1300201.038117 norm=35.213634 +1398676.011696 1294973.011696 norm=34.957117 +1398682.327950 1293698.327950 norm=34.073450 +1398718.504114 1292893.504114 norm=34.684290 +1398707.597832 1298999.597832 norm=35.566838 +1398681.761295 1295811.761295 norm=35.749126 +1398704.039531 1296305.039531 norm=35.496479 +1398703.659070 1295923.659070 norm=35.510562 +1398709.384392 1298808.384392 norm=35.832946 +1398704.023790 1294944.023790 norm=35.580894 +1398720.148326 1299397.148326 norm=35.623026 +1398725.983599 1295089.983599 norm=34.756294 +1398739.061880 1301343.061880 norm=34.249088 +1398758.423980 1296537.423980 norm=34.856850 +1398746.229842 1295720.229842 norm=35.128336 +1398740.157269 1296368.157269 norm=35.099858 +1398745.157510 1294182.157510 norm=35.057096 +1398776.609515 1296708.609515 norm=34.942810 +1398766.345221 1298456.345221 norm=35.411862 +1398761.881814 1294646.881814 norm=35.721142 +1398765.688315 1296896.688315 norm=35.185224 +1398772.899278 1292119.899278 norm=34.770677 +1398789.404920 1295934.404920 norm=34.871192 +1398797.849455 1295007.849455 norm=34.856850 +1398780.202120 1296255.202120 norm=35.312887 +1398792.169094 1293614.169094 norm=35.341194 +1398802.354810 1295665.354810 norm=35.014283 +1398790.737407 1294142.737407 norm=35.000000 +1398811.940325 1300795.940325 norm=35.818989 +1398787.735755 1295388.735755 norm=35.369478 +1398811.887721 1299229.887721 norm=35.227830 +1398824.868383 1293399.868383 norm=35.284558 +1398836.722331 1301466.722331 norm=35.846897 +1398813.266305 1296861.266305 norm=35.860842 +1398811.081640 1300705.081640 norm=36.083237 +1398825.172136 1298065.172136 norm=35.832946 +1398834.931136 1301988.931136 norm=35.171011 +1398852.572090 1291049.572090 norm=35.327043 +1398842.461279 1299436.461279 norm=35.284558 +1398854.315268 1294500.315268 norm=35.637059 +1398864.188342 1298866.188342 norm=34.655447 +1398861.935413 1293701.935413 norm=35.014283 +1398885.590136 1298395.590136 norm=35.071356 +1398881.683711 1293178.683711 norm=35.383612 +1398877.445427 1294712.445427 norm=35.284558 +1398880.242219 1293054.242219 norm=36.166283 +1398877.379206 1301980.379206 norm=35.114100 +1398886.640916 1297058.640916 norm=35.735137 +1398899.107087 1297186.107087 norm=35.156792 +1398901.234514 1300945.234514 norm=35.298725 +1398912.513382 1294936.513382 norm=34.727511 +1398918.934118 1297497.934118 norm=33.615473 +1398949.412790 1295422.412790 norm=35.270384 +1398908.657668 1298221.657668 norm=36.166283 +1398911.222442 1296710.222442 norm=35.071356 +1398926.805975 1297146.805975 norm=34.957117 +1398933.827540 1299645.827540 norm=34.899857 +1398939.039983 1292953.039983 norm=34.871192 +1398959.938390 1295756.938390 norm=34.770677 +1398948.060726 1298224.060726 norm=35.156792 +1398957.033372 1299803.033372 norm=35.199432 +1398944.129906 1300305.129906 norm=35.777088 +1398964.291510 1299406.291510 norm=35.114100 +1398965.631036 1298051.631036 norm=34.525353 +1398999.840727 1293519.840727 norm=34.626579 +1398979.908261 1296910.908261 norm=35.707142 +1398981.524163 1297842.524163 norm=34.914181 +1398984.413875 1297027.413875 norm=35.355339 +1398978.425690 1290397.425690 norm=36.000000 +1398977.699482 1300287.699482 norm=35.566838 +1399011.122456 1292996.122456 norm=34.481879 +1399016.583442 1297239.583442 norm=35.777088 +1399002.331694 1298085.331694 norm=35.341194 +1399004.262260 1291452.262260 norm=35.425979 +1399019.408799 1304956.408799 norm=35.425979 +1399016.367485 1292864.367485 norm=35.227830 +1399015.509725 1300143.509725 norm=35.580894 +1399025.745497 1289446.745497 norm=34.885527 +1399045.418834 1301734.418834 norm=34.785054 +1399050.970322 1294098.970322 norm=35.846897 +1399044.539590 1297604.539590 norm=34.669872 +1399057.973310 1294457.973310 norm=35.341194 +1399070.811993 1297742.811993 norm=34.510868 +1399057.511726 1300398.511726 norm=34.568772 +1399087.968187 1295125.968187 norm=35.397740 +1399044.619503 1298689.619503 norm=35.594943 +1399071.633237 1295166.633237 norm=36.414283 +1399043.318284 1299458.318284 norm=34.914181 +1399096.377382 1296047.377382 norm=34.568772 +1399107.147131 1300598.147131 norm=34.263683 +1399105.397987 1297254.397987 norm=35.425979 +1399077.463986 1296860.463986 norm=35.693137 +1399108.010685 1298920.010685 norm=35.524639 +1399083.697038 1300638.697038 norm=35.213634 +1399113.555536 1300995.555536 norm=35.552778 +1399117.771643 1297331.771643 norm=34.510868 +1399121.646429 1298681.646429 norm=35.888717 +1399129.606561 1289188.606561 norm=34.176015 +1399158.975124 1299753.975124 norm=34.088121 +1399140.450750 1293239.450750 norm=35.566838 +1399131.627301 1296891.627301 norm=35.128336 +1399142.105916 1296338.105916 norm=34.770677 +1399153.332189 1302453.332189 norm=34.713110 +1399170.617333 1293003.617333 norm=34.626579 +1399160.488435 1293556.488435 norm=35.312887 +1399156.109943 1294259.109943 norm=34.828150 +1399169.250178 1297536.250178 norm=35.256205 +1399158.382563 1296878.382563 norm=35.213634 +1399190.587866 1298965.587866 norm=34.655447 +1399189.919272 1294242.919272 norm=35.369478 +1399173.502929 1297842.502929 norm=35.440090 +1399184.842388 1295642.842388 norm=34.597688 +1399204.310937 1291844.310937 norm=34.856850 +1399192.413539 1300017.413539 norm=36.013886 +1399195.208880 1294177.208880 norm=34.626579 +1399224.584624 1297814.584624 norm=35.846897 +1399205.353058 1298416.353058 norm=35.355339 +1399223.213307 1296303.213307 norm=34.957117 +1399226.230108 1292983.230108 norm=35.242020 +1399216.497417 1301834.497417 norm=35.213634 +1399225.033730 1294708.033730 norm=35.425979 +1399236.398738 1306201.398738 norm=34.554305 +1399260.001160 1290093.001160 norm=35.327043 +1399231.286376 1300001.286376 norm=34.698703 +1399280.492659 1290002.492659 norm=34.190642 +1399258.551584 1295787.551584 norm=34.626579 +1399253.334154 1296656.334154 norm=35.735137 +1399245.675813 1300772.675813 norm=34.423829 +1399299.437016 1295550.437016 norm=33.837849 +1399284.334717 1298995.334717 norm=34.641016 +1399279.858377 1298549.858377 norm=36.013886 +1399262.447156 1295037.447156 norm=35.142567 +1399281.850823 1299482.850823 norm=36.041643 +1399261.650743 1297217.650743 norm=35.608988 +1399291.977458 1298867.977458 norm=35.749126 +1399284.286814 1297120.286814 norm=35.763109 +1399287.876938 1299469.876938 norm=36.166283 +1399289.434171 1298584.434171 norm=34.957117 +1399313.673730 1298102.673730 norm=35.142567 +1399302.221338 1294856.221338 norm=36.000000 +1399311.726519 1300269.726519 norm=35.958309 +1399323.858344 1298223.858344 norm=34.525353 +1399337.442265 1303521.442265 norm=34.928498 +1399325.471300 1294120.471300 norm=35.651087 +1399349.131842 1298748.131842 norm=34.828150 +1399340.346016 1294817.346016 norm=35.298725 +1399356.459132 1300526.459132 norm=35.242020 +1399335.079922 1295342.079922 norm=35.749126 +1399351.967550 1299708.967550 norm=34.856850 +1399355.276934 1291272.276934 norm=35.199432 +1399378.495757 1302029.495757 norm=34.525353 +1399371.989765 1287773.989765 norm=35.085610 +1399373.475127 1300342.475127 norm=35.085610 +1399392.934696 1292836.934696 norm=35.777088 +1399354.402465 1302355.402465 norm=36.276714 +1399379.761229 1299078.761229 norm=34.438351 +1399403.715263 1301786.715263 norm=35.199432 +1399391.179175 1294589.179175 norm=35.538711 +1399410.125560 1301812.125560 norm=34.583233 +1399406.008759 1294434.008759 norm=35.156792 +1399397.557524 1298833.557524 norm=35.791060 +1399409.302461 1292817.302461 norm=34.698703 +1399442.861695 1300554.861695 norm=35.185224 +1399428.521113 1293871.521113 norm=35.791060 +1399422.412928 1307842.412928 norm=35.057096 +1399439.035014 1296659.035014 norm=35.411862 +1399435.013735 1296623.013735 norm=35.594943 +1399420.768928 1294105.768928 norm=36.124784 +1399452.290581 1294659.290581 norm=34.365681 +1399462.459948 1297439.459948 norm=35.227830 +1399454.664234 1295496.664234 norm=35.735137 +1399433.776745 1300191.776745 norm=36.069378 +1399470.360746 1296160.360746 norm=34.626579 +1399489.224583 1291689.224583 norm=34.278273 +1399481.734633 1299325.734633 norm=35.791060 +1399457.228299 1297950.228299 norm=35.355339 +1399500.540939 1302658.540939 norm=34.263683 +1399507.477014 1300590.477014 norm=34.409301 +1399503.903391 1291920.903391 norm=35.397740 +1399498.631252 1296619.631252 norm=34.380227 +1399510.394019 1294357.394019 norm=35.327043 +1399491.843468 1299376.843468 norm=35.594943 +1399525.352438 1294904.352438 norm=34.914181 +1399505.036384 1300698.036384 norm=34.756294 +1399531.836989 1292693.836989 norm=34.942810 +1399523.410768 1298781.410768 norm=35.227830 +1399546.214078 1296262.214078 norm=35.142567 +1399501.600127 1299263.600127 norm=36.262929 +1399530.857320 1300653.857320 norm=35.944402 +1399523.330645 1302592.330645 norm=35.227830 +1399551.222515 1297150.222515 norm=34.292856 +1399567.328241 1302417.328241 norm=34.942810 +1399564.298950 1295521.298950 norm=34.871192 +1399561.713914 1298165.713914 norm=35.227830 +1399575.916322 1293449.916322 norm=35.355339 +1399557.885077 1296946.885077 norm=34.713110 +1399583.786902 1294608.786902 norm=34.985711 +1399583.652860 1301327.652860 norm=34.914181 +1399602.557177 1296330.557177 norm=34.496377 +1399596.159671 1300949.159671 norm=34.842503 +1399606.282709 1296000.282709 norm=34.813790 +1399589.467790 1302235.467790 norm=33.896903 +1399645.061727 1291882.061727 norm=34.409301 +1399601.016194 1301486.016194 norm=35.496479 +1399601.702135 1297681.702135 norm=35.566838 +1399620.000452 1299201.000452 norm=35.944402 +1399601.335212 1301927.335212 norm=35.114100 +1399623.834216 1297674.834216 norm=34.770677 +1399656.934909 1295927.934909 norm=34.568772 +1399638.090981 1301040.090981 norm=35.270384 +1399620.845977 1301956.845977 norm=36.510273 +1399633.658405 1296202.658405 norm=34.957117 +1399652.466758 1296198.466758 norm=35.256205 +1399656.153288 1300425.153288 norm=36.138622 +1399638.610664 1293307.610664 norm=35.972211 +1399650.688678 1303395.688678 norm=34.510868 +1399692.550349 1294117.550349 norm=35.425979 +1399664.170785 1303657.170785 norm=34.669872 +1399713.859549 1293214.859549 norm=33.541020 +1399694.324907 1291809.324907 norm=34.336569 +1399716.049135 1299404.049135 norm=34.088121 +1399705.363057 1294218.363057 norm=34.885527 +1399691.635101 1295723.635101 norm=35.468296 +1399702.571589 1300850.571589 norm=34.438351 +1399717.398462 1299259.398462 norm=35.099858 +1399688.984880 1300116.984880 norm=34.957117 +1399734.296968 1297037.296968 norm=35.369478 +1399700.537952 1301144.537952 norm=36.331804 +1399698.590806 1294578.590806 norm=35.171011 +1399720.478923 1300088.478923 norm=35.199432 +1399755.144418 1295194.144418 norm=34.871192 +1399719.713059 1301013.713059 norm=35.791060 +1399744.114269 1302426.114269 norm=35.679126 +1399732.330052 1301703.330052 norm=35.468296 +1399760.462508 1298258.462508 norm=34.219877 +1399766.990907 1299487.990907 norm=35.679126 +1399754.944963 1298179.944963 norm=35.524639 +1399742.337426 1293191.337426 norm=35.341194 +1399772.566016 1299773.566016 norm=35.071356 +1399776.164646 1296322.164646 norm=34.597688 +1399778.848715 1300988.848715 norm=35.637059 +1399771.419212 1298591.419212 norm=35.128336 +1399791.296332 1298133.296332 norm=35.777088 +1399744.679179 1299491.679179 norm=35.468296 +1399811.348978 1294822.348978 norm=34.058773 +1399813.398559 1299650.398559 norm=34.351128 +1399828.412370 1298165.412370 norm=34.219877 +1399817.911193 1293404.911193 norm=35.042831 +1399807.047691 1295304.047691 norm=35.213634 +1399805.798622 1293648.798622 norm=35.832946 +1399819.779049 1297493.779049 norm=35.594943 +1399812.423118 1300549.423118 norm=35.327043 +1399835.191986 1299311.191986 norm=35.383612 +1399833.446703 1297041.446703 norm=35.566838 +1399806.272653 1301144.272653 norm=36.221541 +1399823.517249 1296636.517249 norm=36.055513 +1399833.868674 1295901.868674 norm=35.510562 +1399844.768528 1300014.768528 norm=35.972211 +1399836.869210 1295492.869210 norm=35.142567 +1399854.830157 1304183.830157 norm=35.270384 +1399871.584583 1293009.584583 norm=34.641016 +1399879.641077 1303087.641077 norm=34.684290 +1399892.835789 1298535.835789 norm=34.985711 +1399885.952281 1297582.952281 norm=34.669872 +1399899.535636 1302650.535636 norm=34.307434 +1399921.645686 1292965.645686 norm=33.749074 +1399925.993442 1297094.993442 norm=33.882149 +1399917.117437 1298235.117437 norm=35.213634 +1399901.050158 1299180.050158 norm=35.341194 +1399904.678662 1297362.678662 norm=35.128336 +1399917.876062 1294535.876062 norm=34.423829 +1399932.717851 1297742.717851 norm=34.102786 +1399937.321013 1299914.321013 norm=34.871192 +1399932.594238 1295202.594238 norm=35.028560 +1399922.401339 1299706.401339 norm=36.055513 +1399913.760354 1297505.760354 norm=34.914181 +1399938.891238 1299629.891238 norm=34.554305 +1399958.959076 1294204.959076 norm=35.552778 +1399936.325954 1297291.325954 norm=34.741906 +1399955.383772 1296773.383772 norm=35.142567 +1399959.891713 1300182.891713 norm=34.785054 +1399958.356101 1296019.356101 norm=35.538711 +1399969.338271 1300712.338271 norm=34.842503 +1399968.918869 1292492.918869 norm=35.693137 +1399983.918037 1299765.918037 norm=35.298725 +1399955.245612 1298128.245612 norm=35.028560 +1400001.771501 1296943.771501 norm=34.957117 +1399989.143547 1302906.143547 norm=35.425979 +1399990.959781 1299033.959781 norm=34.971417 +1400004.027445 1296906.027445 norm=35.972211 +1399970.199269 1300280.199269 norm=35.185224 +1400024.406230 1299871.406230 norm=34.117444 +1400029.839885 1300855.839885 norm=34.234486 +1400052.070843 1299442.070843 norm=33.778692 +1400045.215772 1302269.215772 norm=35.099858 +1400017.470298 1294736.470298 norm=34.452866 +1400059.103616 1301878.103616 norm=34.365681 +1400041.554759 1296085.554759 norm=35.028560 +1400032.170897 1294656.170897 norm=36.027767 +1400029.494920 1294541.494920 norm=34.899857 +1400070.712827 1296936.712827 norm=34.741906 +1400038.477766 1298706.477766 norm=35.099858 +1400072.093417 1301837.093417 norm=35.298725 +1400052.538898 1297359.538898 norm=35.425979 +1400055.356413 1298078.356413 norm=35.171011 +1400052.014596 1300774.014596 norm=35.707142 +1400070.121985 1297331.121985 norm=35.580894 +1400083.812297 1300907.812297 norm=34.928498 +1400057.124572 1300992.124572 norm=36.878178 +1400053.071592 1298430.071592 norm=36.193922 +1400089.473689 1298846.473689 norm=35.298725 +1400092.459522 1298055.459522 norm=35.566838 +1400112.874125 1295746.874125 norm=35.510562 +1400085.089345 1298817.089345 norm=35.256205 +1400120.261837 1297039.261837 norm=35.199432 +1400119.784074 1297519.784074 norm=35.552778 +1400112.687662 1294873.687662 norm=34.842503 +1400125.373430 1302133.373430 norm=35.171011 +1400120.499224 1295882.499224 norm=35.327043 +1400113.744688 1297726.744688 norm=35.425979 +1400149.387737 1297661.387737 norm=35.071356 +1400144.082773 1296499.082773 norm=34.626579 +1400150.621218 1296185.621218 norm=34.713110 +1400161.535684 1295464.535684 norm=34.871192 +1400156.232793 1302224.232793 norm=35.818989 +1400139.899082 1296839.899082 norm=35.341194 +1400164.268639 1298411.268639 norm=35.888717 +1400158.367050 1300269.367050 norm=34.539832 +1400191.521421 1294208.521421 norm=34.785054 +1400185.308452 1302680.308452 norm=35.085610 +1400197.434931 1294881.434931 norm=35.482390 +1400165.376423 1296014.376423 norm=34.928498 +1400210.532365 1304401.532365 norm=34.655447 +1400186.300101 1296764.300101 norm=35.114100 +1400223.123310 1299996.123310 norm=33.852622 +1400221.100335 1298582.100335 norm=34.554305 +1400230.627946 1300356.627946 norm=34.856850 +1400203.526770 1297456.526770 norm=35.171011 +1400220.829631 1298862.829631 norm=34.510868 +1400247.650955 1303147.650955 norm=35.014283 +1400235.578691 1294376.578691 norm=35.355339 +1400243.872821 1298256.872821 norm=35.156792 +1400231.789780 1294880.789780 norm=34.612137 +1400245.639846 1298913.639846 norm=34.785054 +1400255.186634 1299529.186634 norm=35.256205 +1400240.494856 1296905.494856 norm=34.336569 +1400279.733004 1301794.733004 norm=34.612137 +1400265.921278 1297668.921278 norm=34.452866 +1400276.048385 1293850.048385 norm=35.468296 +1400268.272638 1303216.272638 norm=35.298725 +1400277.725492 1294730.725492 norm=34.117444 +1400283.834531 1297889.834531 norm=35.355339 +1400283.095217 1292561.095217 norm=35.213634 +1400267.401426 1302270.401426 norm=34.452866 +1400317.455717 1297736.455717 norm=35.679126 +1400253.338964 1300056.338964 norm=35.735137 +1400304.171227 1294088.171227 norm=35.637059 +1400291.981931 1297415.981931 norm=35.327043 +1400298.712562 1293099.712562 norm=35.468296 +1400317.637858 1301021.637858 norm=35.355339 +1400314.262554 1300618.262554 norm=34.971417 +1400319.829931 1297880.829931 norm=35.227830 +1400327.478771 1296647.478771 norm=35.566838 +1400317.472486 1297248.472486 norm=35.242020 +1400350.880150 1291592.880150 norm=34.828150 +1400338.149432 1303952.149432 norm=35.397740 +1400356.550357 1297685.550357 norm=35.707142 +1400347.112645 1296205.112645 norm=35.805028 +1400335.594556 1296296.594556 norm=35.242020 +1400357.370312 1299183.370312 norm=35.538711 +1400357.691530 1297101.691530 norm=34.713110 +1400385.299781 1296650.299781 norm=35.199432 +1400355.173666 1301546.173666 norm=35.888717 +1400365.377440 1299750.377440 norm=34.957117 +1400405.937871 1298230.937871 norm=33.955854 +1400406.838507 1296890.838507 norm=34.102786 +1400405.568397 1299602.568397 norm=35.028560 +1400399.432425 1297773.432425 norm=34.871192 +1400403.398959 1294073.398959 norm=35.128336 +1400400.533861 1301245.533861 norm=35.000000 +1400413.203008 1302780.203008 norm=35.468296 +1400401.507319 1290001.507319 norm=36.097091 +1400402.250404 1300690.250404 norm=34.423829 +1400439.457003 1298183.457003 norm=34.713110 +1400444.357202 1302527.357202 norm=35.242020 +1400423.344611 1296991.344611 norm=34.914181 +1400440.694746 1297439.694746 norm=35.014283 +1400452.793436 1294611.793436 norm=34.928498 +1400450.186073 1304284.186073 norm=34.756294 +1400459.005116 1292808.005116 norm=34.525353 +1400466.433992 1298014.433992 norm=34.785054 +1400460.027633 1297788.027633 norm=34.351128 +1400480.757213 1298504.757213 norm=34.626579 +1400466.502536 1295839.502536 norm=36.166283 +1400463.528448 1296021.528448 norm=35.665109 +1400451.216181 1293849.216181 norm=35.538711 +1400499.017277 1296358.017277 norm=35.623026 +1400460.387040 1300871.387040 norm=35.397740 +1400495.811554 1296528.811554 norm=35.085610 +1400496.006398 1297864.006398 norm=34.568772 +1400519.141482 1296487.141482 norm=35.185224 +1400503.740402 1299746.740402 norm=34.971417 +1400522.734683 1301886.734683 norm=34.770677 +1400511.896678 1295644.896678 norm=34.452866 +1400527.157732 1301102.157732 norm=36.055513 +1400493.868154 1299795.868154 norm=35.496479 +1400520.946678 1297983.946678 norm=34.928498 +1400535.390919 1302024.390919 norm=35.000000 +1400544.433925 1301809.433925 norm=35.042831 +1400529.007607 1294317.007607 norm=35.156792 +1400550.752306 1299107.752306 norm=35.425979 +1400551.364879 1299802.364879 norm=34.828150 +1400560.595176 1297649.595176 norm=35.369478 +1400554.272162 1295445.272162 norm=35.524639 +1400539.559787 1298902.559787 norm=35.496479 +1400583.667835 1295073.667835 norm=34.785054 +1400573.756384 1300588.756384 norm=34.885527 +1400590.968334 1299318.968334 norm=34.205263 +1400589.454304 1293593.454304 norm=35.341194 +1400587.893755 1304950.893755 norm=34.510868 +1400610.044970 1301011.044970 norm=34.842503 +1400606.537457 1299782.537457 norm=34.669872 +1400612.600445 1302310.600445 norm=34.219877 +1400612.950930 1292445.950930 norm=34.438351 +1400615.139179 1299921.139179 norm=34.669872 +1400609.250392 1300789.250392 norm=35.042831 +1400618.715979 1296136.715979 norm=34.713110 +1400612.237604 1292714.237604 norm=34.828150 +1400644.037562 1302433.037562 norm=35.383612 +1400615.417608 1301481.417608 norm=35.805028 +1400618.477220 1294298.477220 norm=35.085610 +1400649.833510 1294357.833510 norm=34.698703 +1400653.228146 1305976.228146 norm=34.684290 +1400643.657663 1293146.657663 norm=36.013886 +1400644.186914 1301539.186914 norm=34.785054 +1400655.856055 1299264.856055 norm=35.552778 +1400668.525082 1306388.525082 norm=34.871192 +1400660.955022 1293274.955022 norm=35.213634 +1400675.376448 1295596.376448 norm=35.763109 +1400654.121379 1298420.121379 norm=36.851052 +1400668.415943 1296924.415943 norm=35.411862 +1400669.180160 1296657.180160 norm=35.171011 +1400701.636796 1299229.636796 norm=35.042831 +1400688.108669 1298715.108669 norm=35.341194 +1400686.657240 1300538.657240 norm=35.763109 +1400696.338490 1299085.338490 norm=35.000000 +1400717.442395 1298992.442395 norm=34.871192 +1400721.377458 1298093.377458 norm=34.365681 +1400725.406719 1299639.406719 norm=35.327043 +1400710.702105 1300828.702105 norm=34.899857 +1400728.761073 1295112.761073 norm=34.626579 +1400739.342938 1292506.342938 norm=34.957117 +1400742.341606 1305371.341606 norm=34.727511 +1400738.246981 1296583.246981 norm=34.626579 +1400747.843489 1299504.843489 norm=34.899857 +1400739.722930 1304013.722930 norm=34.365681 +1400772.838077 1298851.838077 norm=33.585711 +1400773.229865 1301203.229865 norm=34.117444 +1400785.405683 1297579.405683 norm=35.199432 +1400750.913095 1295458.913095 norm=36.055513 +1400752.629616 1301357.629616 norm=35.454196 +1400779.278072 1299532.278072 norm=34.423829 +1400793.607125 1303534.607125 norm=35.637059 +1400760.468904 1297845.468904 norm=35.608988 +1400791.223771 1302867.223771 norm=36.138622 +1400764.843470 1300537.843470 norm=35.411862 +1400795.353336 1299695.353336 norm=34.452866 +1400823.846210 1296436.846210 norm=35.114100 +1400792.558684 1298525.558684 norm=34.278273 +1400830.020648 1303981.020648 norm=34.292856 +1400826.471335 1296377.471335 norm=34.713110 +1400808.525505 1300111.525505 norm=34.205263 +1400839.906948 1294693.906948 norm=34.871192 +1400828.178931 1301962.178931 norm=34.957117 +1400840.640151 1295062.640151 norm=35.057096 +1400831.700270 1299340.700270 norm=34.942810 +1400857.932531 1292611.932531 norm=34.568772 +1400841.396969 1303778.396969 norm=36.000000 +1400835.806524 1301352.806524 norm=35.369478 +1400832.606464 1300534.606464 norm=35.524639 +1400864.505573 1300452.505573 norm=35.242020 +1400852.980361 1295344.980361 norm=35.777088 +1400860.646452 1297202.646452 norm=35.902646 +1400853.200476 1303619.200476 norm=35.256205 +1400870.618627 1297955.618627 norm=35.580894 +1400872.474208 1299915.474208 norm=35.482390 +1400869.441568 1287460.441568 norm=36.318040 +1400871.430073 1304855.430073 norm=35.284558 +1400893.256341 1290645.256341 norm=35.284558 +1400893.870761 1300774.870761 norm=35.860842 +1400894.336549 1301185.336549 norm=35.777088 +1400889.881455 1298024.881455 norm=35.099858 +1400923.805470 1300579.805470 norm=34.568772 +1400925.665110 1296034.665110 norm=34.641016 +1400912.567376 1300668.567376 norm=34.914181 +1400948.061093 1294880.061093 norm=34.467376 +1400920.451680 1300695.451680 norm=35.085610 +1400943.691250 1303237.691250 norm=34.713110 +1400937.128608 1301587.128608 norm=35.566838 +1400930.761024 1299729.761024 norm=35.693137 +1400958.013186 1299577.013186 norm=34.597688 +1400960.701231 1305778.701231 norm=34.727511 +1400966.923942 1297339.923942 norm=34.813790 +1400952.556237 1296814.556237 norm=34.871192 +1400981.891353 1299553.891353 norm=34.684290 +1400967.639386 1298894.639386 norm=35.185224 +1400984.703510 1294981.703510 norm=35.355339 +1400970.996362 1305757.996362 norm=35.199432 +1400985.267872 1296740.267872 norm=34.161382 +1401009.200198 1299127.200198 norm=34.452866 +1401001.860196 1293209.860196 norm=35.128336 +1400984.303138 1298331.303138 norm=35.213634 +1401006.759283 1302287.759283 norm=34.597688 +1401003.677724 1296206.677724 norm=35.707142 +1401011.694492 1302483.694492 norm=35.042831 +1401014.567944 1298620.567944 norm=35.888717 +1400998.231860 1304087.231860 norm=35.524639 +1401020.227394 1290565.227394 norm=35.114100 +1401030.074554 1299735.074554 norm=35.735137 +1401027.838181 1295904.838181 norm=34.727511 +1401041.517973 1302980.517973 norm=35.327043 +1401045.717097 1302707.717097 norm=35.014283 +1401032.562098 1300236.562098 norm=35.256205 +1401046.835182 1299135.835182 norm=35.312887 +1401049.485800 1301230.485800 norm=35.142567 +1401052.060691 1300470.060691 norm=35.651087 +1401041.136233 1302208.136233 norm=35.440090 +1401080.590906 1299347.590906 norm=35.256205 +1401057.528432 1297295.528432 norm=35.213634 +1401081.896853 1298598.896853 norm=34.799425 +1401091.326553 1298342.326553 norm=35.057096 +1401069.826824 1301982.826824 norm=34.525353 +1401108.059931 1300177.059931 norm=34.351128 +1401085.087172 1299109.087172 norm=35.832946 +1401108.216087 1300783.216087 norm=34.856850 +1401080.447913 1297684.447913 norm=35.227830 +1401118.192212 1302018.192212 norm=34.985711 +1401119.914663 1296349.914663 norm=33.955854 +1401131.225605 1300154.225605 norm=35.496479 +1401107.160129 1298421.160129 norm=36.000000 +1401112.001061 1299869.001061 norm=35.341194 +1401130.583234 1304040.583234 norm=35.510562 +1401130.579376 1300316.579376 norm=35.735137 +1401112.024590 1295856.024590 norm=36.083237 +1401146.051321 1304044.051321 norm=35.085610 +1401146.410892 1303195.410892 norm=35.156792 +1401151.128133 1300471.128133 norm=34.554305 +1401169.552551 1301686.552551 norm=35.071356 +1401150.703301 1301622.703301 norm=35.538711 +1401158.766726 1304580.766726 norm=34.899857 +1401176.727708 1301362.727708 norm=34.885527 +1401165.170255 1303960.170255 norm=34.641016 +1401202.033429 1303600.033429 norm=34.785054 +1401180.655883 1294364.655883 norm=34.928498 +1401187.124554 1299125.124554 norm=35.227830 +1401195.019013 1303587.019013 norm=34.365681 +1401213.017873 1301011.017873 norm=34.219877 +1401214.925495 1303869.925495 norm=34.044089 +1401224.673475 1295205.673475 norm=34.102786 +1401226.194853 1300630.194853 norm=34.176015 +1401212.783727 1295590.783727 norm=34.292856 +1401240.376169 1296352.376169 norm=34.438351 +1401216.967081 1300332.967081 norm=35.623026 +1401214.690399 1296585.690399 norm=35.355339 +1401231.417357 1305000.417357 norm=35.580894 +1401221.088587 1299218.088587 norm=35.468296 +1401238.228931 1301632.228931 norm=35.454196 +1401243.840949 1298296.840949 norm=35.552778 +1401232.734825 1301737.734825 norm=34.928498 +1401263.726958 1298304.726958 norm=34.957117 +1401262.900656 1302067.900656 norm=35.014283 +1401271.002524 1300935.002524 norm=35.707142 +1401236.748505 1299159.748505 norm=35.071356 +1401282.488709 1302914.488709 norm=34.000000 +1401285.988100 1297489.988100 norm=33.837849 +1401310.437699 1306254.437699 norm=34.452866 +1401274.966113 1303413.966113 norm=34.380227 +1401292.292075 1300822.292075 norm=35.242020 +1401294.381530 1302986.381530 norm=35.594943 +1401295.632417 1297921.632417 norm=34.525353 +1401305.065754 1298664.065754 norm=35.944402 +1401294.452303 1302861.452303 norm=34.583233 +1401312.221762 1299496.221762 norm=35.242020 +1401306.112809 1299124.112809 norm=35.679126 +1401319.022078 1299206.022078 norm=34.423829 +1401338.299125 1302483.299125 norm=35.341194 +1401305.916871 1298326.916871 norm=34.942810 +1401346.012714 1305549.012714 norm=35.327043 +1401337.332319 1301245.332319 norm=34.985711 +1401353.195661 1300633.195661 norm=34.234486 +1401354.605661 1301251.605661 norm=34.828150 +1401372.442148 1308008.442148 norm=34.684290 +1401341.270013 1303345.270013 norm=35.860842 +1401347.318822 1301110.318822 norm=35.369478 +1401365.543397 1302165.543397 norm=35.524639 +1401369.339879 1300790.339879 norm=35.000000 +1401378.240892 1301460.240892 norm=35.369478 +1401372.870878 1302386.870878 norm=34.583233 +1401395.513052 1301158.513052 norm=34.481879 +1401406.079098 1293241.079098 norm=33.600595 +1401400.357120 1304186.357120 norm=34.452866 +1401402.915900 1300520.915900 norm=34.073450 +1401414.477413 1304621.477413 norm=34.626579 +1401419.785898 1296503.785898 norm=35.213634 +1401377.306392 1303290.306392 norm=35.270384 +1401419.291629 1300516.291629 norm=34.957117 +1401420.395471 1301754.395471 norm=35.454196 +1401420.273650 1302484.273650 norm=35.242020 +1401408.315655 1293207.315655 norm=35.341194 +1401434.538300 1301730.538300 norm=35.042831 +1401430.729566 1306975.729566 norm=34.741906 +1401455.238729 1294858.238729 norm=34.698703 +1401456.264684 1301297.264684 norm=34.568772 +1401437.150887 1299945.150887 norm=34.727511 +1401459.962532 1299192.962532 norm=35.213634 +1401430.333314 1299340.333314 norm=34.799425 +1401470.691072 1300470.691072 norm=34.741906 +1401464.523933 1302100.523933 norm=35.284558 +1401476.555301 1297097.555301 norm=34.058773 +1401485.447769 1307265.447769 norm=34.885527 +1401481.611948 1294292.611948 norm=34.583233 +1401500.123905 1301025.123905 norm=35.185224 +1401482.342971 1302193.342971 norm=35.580894 +1401489.370775 1298953.370775 norm=35.185224 +1401486.712043 1305022.712043 norm=35.227830 +1401499.844246 1297038.844246 norm=35.397740 +1401491.317075 1302319.317075 norm=35.369478 +1401503.183334 1302784.183334 norm=34.612137 +1401532.412487 1295232.412487 norm=34.088121 +1401533.805142 1306101.805142 norm=34.510868 +1401530.162138 1294537.162138 norm=34.655447 +1401531.021177 1305130.021177 norm=34.365681 +1401545.574965 1299256.574965 norm=35.369478 +1401522.816822 1295691.816822 norm=35.902646 +1401544.840842 1297830.840842 norm=34.828150 +1401534.986488 1303681.986488 norm=35.227830 +1401552.170702 1300302.170702 norm=34.756294 +1401555.814370 1309525.814370 norm=35.099858 +1401562.580043 1295132.580043 norm=35.099858 +1401546.438191 1306590.438191 norm=35.298725 +1401560.995054 1303359.995054 norm=35.298725 +1401565.168180 1303345.168180 norm=35.085610 +1401583.341493 1300627.341493 norm=34.669872 +1401571.999101 1300327.999101 norm=34.856850 +1401602.474484 1304276.474484 norm=35.566838 +1401579.954879 1303384.954879 norm=35.524639 +1401592.417837 1302492.417837 norm=34.756294 +1401595.726276 1299067.726276 norm=35.327043 +1401593.161002 1298252.161002 norm=35.777088 +1401609.149306 1300605.149306 norm=34.756294 +1401604.621366 1303230.621366 norm=35.185224 +1401614.350816 1308543.350816 norm=34.438351 +1401628.533065 1298876.533065 norm=34.394767 +1401640.213657 1295987.213657 norm=33.911650 +1401654.542783 1301485.542783 norm=33.496268 +1401662.704940 1298061.704940 norm=35.142567 +1401634.215431 1303846.215431 norm=35.637059 +1401624.595854 1297757.595854 norm=34.727511 +1401646.030478 1301082.030478 norm=34.741906 +1401664.191877 1302335.191877 norm=34.583233 +1401655.097048 1303674.097048 norm=34.914181 +1401661.997594 1300370.997594 norm=35.846897 +1401641.544669 1301942.544669 norm=34.380227 +1401679.922100 1298041.922100 norm=34.741906 +1401675.758364 1303348.758364 norm=35.440090 +1401667.055910 1303068.055910 norm=35.014283 +1401683.037943 1298133.037943 norm=34.438351 +1401709.748724 1305734.748724 norm=34.263683 +1401688.389555 1296957.389555 norm=35.524639 +1401681.165706 1305218.165706 norm=35.468296 +1401703.934000 1301741.934000 norm=33.882149 +1401732.026014 1304469.026014 norm=34.626579 +1401704.534181 1302993.534181 norm=34.813790 +1401728.249501 1303487.249501 norm=34.146742 +1401734.886232 1304178.886232 norm=35.085610 +1401727.516282 1300028.516282 norm=34.669872 +1401725.835424 1298216.835424 norm=35.298725 +1401719.316334 1306241.316334 norm=35.312887 +1401754.114136 1292298.114136 norm=33.734256 +1401744.456870 1306870.456870 norm=35.270384 +1401761.643040 1299685.643040 norm=33.926391 +1401768.072765 1304982.072765 norm=34.554305 +1401753.761308 1302959.761308 norm=34.365681 +1401778.046540 1301900.046540 norm=34.014703 +1401774.824085 1297390.824085 norm=34.554305 +1401768.542773 1299217.542773 norm=34.669872 +1401771.222474 1301820.222474 norm=35.213634 +1401763.410111 1304504.410111 norm=35.383612 +1401771.600599 1301024.600599 norm=35.411862 +1401774.756817 1302093.756817 norm=35.749126 +1401758.922423 1301258.922423 norm=35.142567 +1401807.406831 1298968.406831 norm=34.971417 +1401788.775323 1297233.775323 norm=34.799425 +1401814.965958 1303751.965958 norm=35.454196 +1401786.038080 1298506.038080 norm=35.623026 +1401788.414033 1300778.414033 norm=36.565011 +1401775.442141 1301538.442141 norm=35.721142 +1401807.349803 1297466.349803 norm=35.312887 +1401813.818766 1307384.818766 norm=35.735137 +1401825.120183 1296365.120183 norm=34.713110 +1401835.612674 1303550.612674 norm=34.525353 +1401852.732878 1300733.732878 norm=34.394767 +1401844.058809 1297925.058809 norm=34.467376 +1401860.514980 1302051.514980 norm=33.837849 +1401872.129600 1298573.129600 norm=33.837849 +1401873.652958 1300616.652958 norm=34.088121 +1401868.208369 1303123.208369 norm=34.278273 +1401880.924848 1306192.924848 norm=35.085610 +1401862.686655 1305033.686655 norm=34.626579 +1401895.033690 1304257.033690 norm=35.270384 +1401865.515918 1300993.515918 norm=35.000000 +1401889.590974 1299754.590974 norm=34.583233 +1401889.166932 1298821.166932 norm=34.785054 +1401878.197355 1299429.197355 norm=35.369478 +1401885.052561 1302442.052561 norm=34.568772 +1401911.340371 1305883.340371 norm=34.525353 +1401891.389260 1297816.389260 norm=35.888717 +1401887.532463 1302597.532463 norm=35.580894 +1401897.964261 1297490.964261 norm=35.369478 +1401910.659880 1302035.659880 norm=34.409301 +1401912.803667 1295178.803667 norm=35.369478 +1401908.916614 1311745.916614 norm=35.791060 +1401922.888595 1296993.888595 norm=35.860842 +1401920.790926 1305880.790926 norm=35.213634 +1401936.173386 1297294.173386 norm=34.568772 +1401944.039226 1304270.039226 norm=34.828150 +1401949.816664 1301098.816664 norm=33.271610 +1401990.263612 1296233.263612 norm=33.734256 +1401963.528321 1297293.528321 norm=35.028560 +1401968.936569 1301257.936569 norm=34.899857 +1401956.762648 1308200.762648 norm=34.713110 +1401977.042767 1301918.042767 norm=35.042831 +1401956.405921 1296988.405921 norm=35.042831 +1401995.483774 1299439.483774 norm=34.568772 +1401981.299489 1297002.299489 norm=35.185224 +1401982.836286 1304042.836286 norm=35.085610 +1401986.400572 1300009.400572 norm=34.842503 +1401999.924582 1311761.924582 norm=35.270384 +1401995.035212 1298272.035212 norm=35.114100 +1402003.579358 1303867.579358 norm=34.612137 +1402009.107848 1300186.107848 norm=34.205263 +1402011.203598 1303147.203598 norm=34.684290 +1402023.219407 1298492.219407 norm=34.234486 +1402033.810091 1307287.810091 norm=35.227830 +1401999.408732 1297944.408732 norm=36.152455 +1402007.889407 1305617.889407 norm=35.355339 +1402040.339529 1295708.339529 norm=35.496479 +1402021.866003 1303135.866003 norm=35.014283 +1402034.151552 1303144.151552 norm=34.525353 +1402050.621661 1308023.621661 norm=35.028560 +1402040.197190 1302658.197190 norm=34.828150 +1402075.328709 1301956.328709 norm=34.044089 +1402074.503572 1305654.503572 norm=35.171011 +1402053.215653 1296691.215652 norm=34.828150 +1402077.497377 1304589.497377 norm=34.278273 +1402091.765143 1298710.765143 norm=34.205263 +1402088.514688 1306900.514688 norm=34.641016 +1402095.451777 1300918.451777 norm=34.856850 +1402079.200421 1305276.200421 norm=35.114100 +1402110.443410 1300623.443410 norm=34.190642 +1402103.770718 1298765.770718 norm=34.249088 +1402100.694043 1300514.694043 norm=35.099858 +1402099.411975 1302063.411975 norm=35.042831 +1402116.116791 1299874.116791 norm=34.698703 +1402117.375686 1300606.375686 norm=34.727511 +1402115.944238 1296831.944238 norm=34.351128 +1402135.025828 1302794.025828 norm=34.669872 +1402129.324687 1302412.324687 norm=33.704599 +1402145.963987 1300352.963987 norm=34.813790 +1402137.026085 1303615.026085 norm=34.756294 +1402123.989690 1300553.989690 norm=35.071356 +1402143.597277 1305482.597277 norm=35.397740 +1402126.438074 1296085.438074 norm=34.525353 +1402180.781648 1303958.781648 norm=34.467376 +1402144.212997 1300738.212997 norm=35.594943 +1402151.814144 1294571.814144 norm=35.128336 +1402152.711069 1305566.711069 norm=35.623026 +1402152.025922 1300478.025922 norm=36.152455 +1402148.321273 1308171.321273 norm=35.071356 +1402187.941564 1301512.941564 norm=35.114100 +1402175.938399 1304570.938399 norm=34.828150 +1402191.926560 1307200.926560 norm=35.454196 +1402182.324736 1292810.324736 norm=34.568772 +1402227.561085 1305746.561085 norm=34.597688 +1402187.485667 1306155.485667 norm=34.928498 +1402204.749438 1303121.749438 norm=35.608988 +1402188.789145 1305395.789145 norm=35.000000 +1402229.890493 1303434.890493 norm=34.756294 +1402203.756076 1300349.756076 norm=35.749126 +1402224.244218 1303473.244218 norm=35.227830 +1402218.198065 1305129.198065 norm=35.482390 +1402236.336688 1299769.336688 norm=33.734256 +1402258.337782 1298294.337782 norm=34.146742 +1402248.163393 1306870.163393 norm=34.073450 +1402256.052660 1298535.052660 norm=35.099858 +1402222.937564 1304461.937564 norm=35.312887 +1402260.360644 1301957.360644 norm=34.713110 +1402269.346842 1299583.346842 norm=35.440090 +1402243.652488 1296316.652488 norm=35.721142 +1402245.446724 1308083.446724 norm=35.383612 +1402266.404689 1297594.404689 norm=35.651087 +1402276.157770 1303778.157770 norm=35.242020 +1402260.058527 1302107.058527 norm=35.651087 +1402278.768189 1300906.768189 norm=35.411862 +1402291.781205 1305575.781205 norm=34.655447 +1402294.819931 1299268.819931 norm=35.482390 +1402288.256922 1303520.256922 norm=34.102786 +1402324.911471 1308090.911471 norm=34.351128 +1402290.793939 1299329.793939 norm=34.985711 +1402314.979610 1300678.979610 norm=34.985711 +1402310.083535 1297056.083535 norm=34.423829 +1402328.409738 1300143.409738 norm=34.899857 +1402307.972688 1302384.972688 norm=35.538711 +1402316.476775 1301249.476775 norm=34.554305 +1402354.884086 1301293.884086 norm=35.128336 +1402312.269421 1301060.269421 norm=34.828150 +1402336.942695 1303033.942695 norm=35.538711 +1402329.441857 1302772.441857 norm=35.014283 +1402353.304970 1298328.304970 norm=34.828150 +1402363.823454 1302486.823454 norm=34.307434 +1402372.445405 1302309.445405 norm=34.234486 +1402360.279109 1307583.279109 norm=34.322005 +1402391.865969 1297300.865969 norm=33.226495 +1402397.298582 1306247.298582 norm=33.674916 +1402384.382483 1303545.382483 norm=34.928498 +1402386.000003 1297748.000003 norm=34.117444 +1402396.043631 1303576.043631 norm=35.099858 +1402397.101355 1303077.101355 norm=34.785054 +1402390.152914 1303693.152914 norm=34.942810 +1402405.907478 1303891.907478 norm=34.669872 +1402399.979477 1301447.979477 norm=34.871192 +1402423.609744 1304224.609744 norm=33.763886 +1402428.419354 1298625.419354 norm=34.380227 +1402415.108600 1305003.108600 norm=35.637059 +1402416.057527 1299299.057527 norm=33.763886 +1402438.236614 1306031.236614 norm=34.583233 +1402417.643953 1302261.643953 norm=34.928498 +1402440.150779 1297454.150779 norm=34.365681 +1402438.456477 1303361.456477 norm=34.957117 +1402446.205582 1298891.205582 norm=34.438351 +1402442.701424 1305658.701424 norm=34.842503 +1402473.731981 1296290.731981 norm=34.000000 +1402452.293138 1299992.293138 norm=35.000000 +1402461.091173 1301914.091173 norm=35.071356 +1402455.811686 1308203.811686 norm=34.942810 +1402462.713741 1298652.713741 norm=34.885527 +1402467.905393 1302521.905393 norm=34.971417 +1402472.171504 1305991.171504 norm=35.341194 +1402458.801863 1300276.801863 norm=34.684290 +1402509.098063 1308259.098063 norm=34.336569 +1402482.941126 1300780.941126 norm=34.698703 +1402504.004601 1302569.004601 norm=34.292856 +1402506.102204 1303492.102204 norm=34.176015 +1402520.351535 1297052.351535 norm=34.612137 +1402506.143407 1302242.143407 norm=34.655447 +1402519.989779 1301139.989779 norm=34.597688 +1402528.152709 1305004.152709 norm=34.336569 +1402532.436691 1304092.436691 norm=34.985711 +1402534.277983 1303049.277983 norm=34.871192 +1402521.822777 1296691.822777 norm=34.985711 +1402547.663598 1301782.663598 norm=34.785054 +1402546.509831 1302142.509831 norm=34.014703 +1402532.264431 1299319.264431 norm=35.958309 +1402521.278103 1299295.278103 norm=35.171011 +1402541.215727 1307321.215727 norm=35.805028 +1402549.940791 1306463.940791 norm=35.284558 +1402544.341025 1301159.341025 norm=34.985711 +1402543.185768 1301517.185768 norm=35.312887 +1402559.901133 1308994.901133 norm=34.928498 +1402572.166869 1300291.166869 norm=34.322005 +1402578.623709 1304843.623709 norm=35.637059 +1402577.262084 1305012.262084 norm=34.525353 +1402590.991357 1300024.991357 norm=34.190642 +1402611.154418 1303792.154418 norm=34.278273 +1402575.086191 1297930.086191 norm=35.341194 +1402608.700251 1299627.700251 norm=35.298725 +1402561.961880 1303923.961880 norm=35.397740 +1402608.600918 1306146.600918 norm=35.242020 +1402602.731861 1304480.731861 norm=34.828150 +1402648.348241 1304110.348241 norm=34.219877 +1402635.429996 1302873.429996 norm=34.161382 +1402633.649078 1303424.649078 norm=35.860842 +1402598.266053 1303904.266053 norm=34.713110 +1402663.880999 1304915.880999 norm=34.263683 +1402635.822982 1296325.822982 norm=34.117444 +1402656.037952 1304196.037952 norm=34.842503 +1402666.083349 1299459.083349 norm=33.541020 +1402668.735858 1307601.735858 norm=34.510868 +1402656.358670 1299944.358670 norm=34.496377 +1402677.853409 1302223.853409 norm=34.263683 +1402674.481346 1299637.481346 norm=33.511192 +1402677.252523 1308072.252523 norm=34.597688 +1402673.570311 1300771.570311 norm=34.351128 +1402692.343572 1301640.343572 norm=33.793490 +1402698.895505 1303581.895505 norm=34.088121 +1402697.745640 1296396.745640 norm=34.554305 +1402682.374157 1307186.374157 norm=35.213634 +1402674.550487 1305709.550487 norm=35.944402 +1402677.081376 1299193.081376 norm=34.510868 +1402715.466378 1304575.466378 norm=35.440090 +1402696.703052 1305877.703052 norm=35.085610 +1402710.768621 1303684.768621 norm=34.942810 +1402698.801299 1298781.801299 norm=35.468296 +1402720.705726 1299323.705726 norm=35.298725 +1402692.280993 1304865.280993 norm=35.805028 +1402722.746541 1302143.746541 norm=34.612137 +1402726.785726 1306347.785726 norm=35.099858 +1402732.942042 1301776.942042 norm=33.882149 +1402760.281918 1302808.281918 norm=33.911650 +1402753.443061 1305600.443061 norm=34.856850 +1402749.796111 1299774.796111 norm=34.856850 +1402728.111720 1302119.111720 norm=34.554305 +1402760.871413 1305197.871413 norm=34.842503 +1402783.306502 1304590.306502 norm=33.970576 +1402774.762731 1300957.762731 norm=36.000000 +1402747.831844 1301249.831844 norm=34.568772 +1402756.573734 1305349.573734 norm=35.665109 +1402764.867480 1301687.867480 norm=34.669872 +1402788.347389 1303348.347389 norm=34.684290 +1402805.185709 1308612.185709 norm=34.176015 +1402790.753680 1305059.753680 norm=34.234486 +1402816.956008 1305990.956008 norm=34.727511 +1402798.368359 1298618.368359 norm=34.467376 +1402807.612461 1304743.612461 norm=35.298725 +1402797.095628 1300834.095628 norm=34.928498 +1402814.991215 1306983.991215 norm=35.128336 +1402808.400240 1304984.400240 norm=35.256205 +1402809.467944 1303539.467944 norm=35.185224 +1402819.095123 1298988.095123 norm=34.698703 +1402844.183224 1308734.183224 norm=34.336569 +1402831.620264 1300111.620264 norm=35.454196 +1402834.217715 1306758.217715 norm=34.856850 +1402843.309503 1303374.309503 norm=33.823069 +1402865.536927 1306638.536927 norm=34.612137 +1402851.870019 1302686.870019 norm=34.899857 +1402842.573210 1308263.573210 norm=35.440090 +1402847.727213 1297446.727213 norm=35.085610 +1402865.035007 1307782.035007 norm=35.454196 +1402852.254262 1299770.254262 norm=35.114100 +1402872.098046 1308925.098046 norm=35.042831 +1402870.830905 1302849.830905 norm=36.124784 +1402863.618570 1305730.618570 norm=35.637059 +1402871.972996 1304283.972996 norm=34.351128 +1402894.515228 1302952.515228 norm=34.438351 +1402893.751208 1302875.751208 norm=34.957117 +1402910.082330 1302479.082330 norm=34.351128 +1402926.800804 1300193.800804 norm=33.660065 +1402927.926813 1307603.926813 norm=33.852622 +1402919.323664 1308286.323664 norm=34.481879 +1402917.970411 1303883.970411 norm=35.454196 +1402898.947161 1301142.947161 norm=35.199432 +1402929.951969 1300883.951969 norm=33.600595 +1402947.532025 1302859.532025 norm=33.808283 +1402953.792589 1306363.792589 norm=34.885527 +1402897.351698 1300857.351698 norm=36.276714 +1402915.881771 1305826.881771 norm=35.099858 +1402933.010229 1305730.010229 norm=36.083237 +1402928.985356 1300482.985356 norm=35.623026 +1402949.340910 1299481.340910 norm=35.057096 +1402952.243396 1308260.243396 norm=34.942810 +1402972.246164 1302862.246164 norm=35.057096 +1402958.509340 1304252.509340 norm=34.799425 +1402980.122973 1306158.122973 norm=34.058773 +1402956.686106 1297115.686106 norm=35.538711 +1402960.887266 1300278.887266 norm=34.856850 +1402991.023873 1303707.023873 norm=34.698703 +1402999.510187 1300234.510187 norm=34.307434 +1402994.380988 1310060.380988 norm=34.467376 +1402989.977358 1303942.977358 norm=35.042831 +1403013.319361 1302611.319361 norm=35.185224 +1402978.582826 1300826.582826 norm=34.741906 +1403014.981818 1307272.981818 norm=34.828150 +1403003.767300 1300680.767300 norm=34.263683 +1403049.055001 1295261.055001 norm=33.271610 +1403026.085985 1306834.085985 norm=34.770677 +1403020.845033 1305016.845033 norm=34.957117 +1403025.297687 1301436.297687 norm=34.957117 +1403046.444605 1303452.444605 norm=34.190642 +1403042.928222 1296481.928222 norm=34.394767 +1403050.112519 1306196.112519 norm=34.539832 +1403042.999407 1306946.999407 norm=35.355339 +1403035.779809 1305495.779809 norm=36.097091 +1403039.060360 1300111.060360 norm=35.383612 +1403060.079230 1305749.079230 norm=34.554305 +1403051.376681 1303575.376681 norm=35.902646 +1403062.882923 1301188.882923 norm=35.425979 +1403055.608416 1304408.608416 norm=34.727511 +1403088.874190 1305902.874190 norm=34.713110 +1403073.213744 1302777.213744 norm=34.727511 +1403099.431025 1307787.431025 norm=34.971417 +1403066.511050 1305447.511050 norm=34.799425 +1403097.785690 1305089.785690 norm=33.660065 +1403109.640117 1305874.640117 norm=34.176015 +1403118.026945 1301385.026945 norm=34.985711 +1403087.096689 1301770.096689 norm=35.142567 +1403099.838063 1304550.838063 norm=33.926391 +1403138.923899 1301871.923899 norm=34.365681 +1403112.614228 1298681.614228 norm=34.496377 +1403142.235327 1302303.235327 norm=34.612137 +1403127.459772 1303647.459772 norm=33.955854 +1403132.385016 1304485.385016 norm=34.641016 +1403150.809446 1306889.809446 norm=34.684290 +1403139.617362 1302906.617362 norm=35.199432 +1403135.878964 1305683.878964 norm=35.425979 +1403123.206919 1305282.206919 norm=34.698703 +1403178.106094 1300577.106094 norm=34.176015 +1403163.914626 1304841.914626 norm=33.316662 +1403199.876301 1303844.876301 norm=34.132096 +1403171.049360 1303884.049360 norm=35.454196 +1403155.535664 1303207.535664 norm=34.914181 +1403185.522951 1307937.522951 norm=34.365681 +1403191.955546 1310837.955546 norm=34.452866 +1403165.855691 1300366.855691 norm=34.698703 +1403199.639441 1302831.639441 norm=34.583233 +1403196.731039 1303223.731039 norm=33.970576 +1403207.668619 1308315.668619 norm=34.612137 +1403201.161657 1307048.161657 norm=34.394767 +1403217.089650 1306453.089650 norm=35.213634 +1403197.864567 1304461.864567 norm=34.000000 +1403220.672994 1301165.672994 norm=34.510868 +1403205.539814 1306180.539814 norm=34.510868 +1403228.496370 1309494.496370 norm=34.176015 +1403237.721346 1302242.721346 norm=34.698703 +1403229.519635 1311144.519635 norm=34.219877 +1403238.352161 1305163.352161 norm=34.842503 +1403235.005602 1303642.005602 norm=36.013886 +1403231.222107 1303459.222107 norm=35.327043 +1403235.975465 1303472.975465 norm=35.874782 +1403220.677209 1304113.677209 norm=34.842503 +1403269.789535 1311293.789535 norm=34.452866 +1403249.972149 1302398.972149 norm=34.539832 +1403274.797337 1304982.797337 norm=34.263683 +1403271.716681 1301640.716681 norm=34.452866 +1403297.148344 1308346.148344 norm=34.336569 +1403262.552704 1299644.552704 norm=34.641016 +1403286.647780 1306149.647780 norm=34.871192 +1403268.940199 1302891.940199 norm=34.655447 +1403310.378045 1306062.378045 norm=34.132096 +1403311.517169 1303947.517169 norm=34.161382 +1403323.245329 1307177.245329 norm=33.600595 +1403318.118662 1304185.118662 norm=33.882149 +1403320.710152 1308484.710152 norm=35.369478 +1403293.805416 1304293.805416 norm=35.425979 +1403310.714867 1311615.714867 norm=35.014283 +1403325.121593 1303993.121593 norm=34.510868 +1403347.085018 1306714.085018 norm=34.205263 +1403314.340404 1303916.340404 norm=34.539832 +1403320.358922 1303975.358922 norm=34.756294 +1403334.766624 1307208.766624 norm=34.828150 +1403331.008218 1302239.008218 norm=35.383612 +1403349.549665 1312460.549665 norm=34.481879 +1403357.819521 1304784.819521 norm=34.029399 +1403362.427955 1303418.427955 norm=34.423829 +1403353.771704 1304840.771704 norm=34.641016 +1403355.489153 1304851.489153 norm=34.423829 +1403367.799162 1304749.799162 norm=34.409301 +1403373.614577 1300676.614577 norm=34.394767 +1403371.764240 1310649.764240 norm=34.655447 +1403387.550719 1302075.550719 norm=33.645208 +1403404.574930 1306229.574930 norm=33.808283 +1403405.804660 1302039.804660 norm=34.684290 +1403363.715484 1310381.715484 norm=36.646964 +1403362.271101 1300162.271101 norm=35.185224 +1403387.744455 1306242.744455 norm=34.263683 +1403420.159614 1306197.159614 norm=34.713110 +1403407.386561 1308131.386561 norm=34.828150 +1403410.110711 1302033.110711 norm=35.524639 +1403399.261365 1308897.261365 norm=34.073450 +1403454.968806 1299480.968806 norm=33.985291 +1403416.325885 1308838.325885 norm=34.684290 +1403441.467244 1307399.467244 norm=34.058773 +1403441.079165 1301117.079165 norm=34.205263 +1403449.818608 1305350.818608 norm=34.409301 +1403444.859666 1308340.859666 norm=34.278273 +1403452.921622 1305225.921622 norm=34.525353 +1403443.542931 1304936.542931 norm=34.058773 +1403479.552436 1307241.552436 norm=34.014703 +1403453.475939 1302272.475939 norm=34.394767 +1403478.326206 1308222.326206 norm=33.421550 +1403497.657261 1301764.657261 norm=33.763886 +1403477.476666 1303175.476666 norm=34.117444 +1403463.747634 1301919.747634 norm=35.256205 +1403465.394659 1301828.394659 norm=34.885527 +1403480.413897 1304994.413897 norm=35.156792 +1403475.284267 1308406.284267 norm=34.394767 +1403499.515543 1303372.515543 norm=34.365681 +1403495.803776 1308802.803776 norm=35.042831 +1403487.090687 1305722.090687 norm=34.423829 +1403521.395890 1304172.395890 norm=34.914181 +1403499.150363 1302837.150363 norm=35.242020 +1403491.003643 1308812.003643 norm=35.284558 +1403527.932264 1300317.932264 norm=34.539832 +1403530.860448 1311932.860448 norm=33.955854 +1403541.307882 1303122.307882 norm=34.525353 +1403537.851211 1306891.851211 norm=33.867388 +1403540.633166 1303324.633166 norm=33.882149 +1403554.174241 1305283.174241 norm=33.837849 +1403553.997095 1307667.997095 norm=34.263683 +1403559.153251 1303457.153251 norm=34.554305 +1403527.887300 1305024.887300 norm=35.142567 +1403562.659484 1305258.659484 norm=34.278273 +1403540.714861 1302762.714861 norm=34.842503 +1403563.013426 1299663.013426 norm=34.770677 +1403572.745614 1308111.745614 norm=34.263683 +1403588.421664 1305949.421664 norm=33.941125 +1403578.398143 1301634.398143 norm=34.785054 +1403562.714132 1312967.714132 norm=35.114100 +1403573.269131 1300873.269131 norm=36.592349 +1403560.333746 1307000.333746 norm=34.785054 +1403584.822012 1308183.822012 norm=34.655447 +1403590.351699 1294297.351699 norm=35.749126 +1403583.893756 1302881.893756 norm=34.985711 +1403594.704491 1305962.704491 norm=34.741906 +1403612.840632 1310303.840632 norm=35.341194 +1403584.433033 1300257.433033 norm=35.270384 +1403613.369814 1311379.369814 norm=34.914181 +1403618.577751 1299318.577751 norm=35.142567 +1403626.724873 1307136.724873 norm=34.554305 +1403619.979518 1300776.979518 norm=35.242020 +1403632.239219 1306328.239219 norm=34.073450 +1403644.518008 1306837.518008 norm=34.394767 +1403652.843539 1303487.843539 norm=34.249088 +1403642.225986 1307060.225986 norm=34.655447 +1403665.384920 1307411.384920 norm=32.848135 +1403691.830546 1304910.830546 norm=34.117444 +1403656.159232 1308014.159232 norm=35.270384 +1403659.262778 1306168.262778 norm=34.029399 +1403680.725836 1310072.725836 norm=34.741906 +1403670.698196 1303425.698196 norm=33.926391 +1403690.388956 1303282.388956 norm=34.525353 +1403676.191152 1301845.191152 norm=33.970576 +1403703.523438 1306155.523438 norm=34.351128 +1403695.013704 1302414.013704 norm=34.438351 +1403690.952853 1311568.952853 norm=35.791060 +1403672.299540 1300858.299540 norm=34.234486 +1403720.152523 1311939.152523 norm=34.249088 +1403724.126983 1299363.126983 norm=34.525353 +1403703.254516 1309568.254516 norm=35.721142 +1403691.150015 1305205.150015 norm=34.914181 +1403727.802937 1306045.802937 norm=33.763886 +1403757.323565 1305744.323565 norm=33.985291 +1403736.048516 1307757.048516 norm=34.684290 +1403731.435337 1302034.435337 norm=33.615473 +1403763.686987 1306809.686987 norm=33.955854 +1403747.852482 1307929.852482 norm=34.539832 +1403748.434799 1303893.434799 norm=35.071356 +1403730.393639 1304556.393639 norm=35.128336 +1403759.276971 1309199.276971 norm=33.271610 +1403766.589682 1307523.589682 norm=34.409301 +1403757.593991 1305018.593991 norm=34.684290 +1403782.214866 1304570.214866 norm=34.871192 +1403750.237357 1305514.237357 norm=36.359318 +1403745.985071 1308830.985071 norm=35.185224 +1403766.962777 1305728.962777 norm=34.438351 +1403797.605630 1298592.605630 norm=34.278273 +1403799.571102 1303558.571102 norm=34.626579 +1403785.495172 1309187.495172 norm=34.380227 +1403794.936546 1308345.936546 norm=34.000000 +1403819.157953 1303710.157953 norm=33.151169 +1403826.656694 1309006.656694 norm=33.941125 +1403816.862693 1302120.862693 norm=33.985291 +1403814.792654 1307589.792654 norm=34.409301 +1403828.620094 1304044.620094 norm=33.793490 +1403824.085045 1305737.085045 norm=34.176015 +1403831.529558 1307388.529558 norm=34.380227 +1403848.479618 1305353.479618 norm=34.467376 +1403819.480980 1307176.480980 norm=34.957117 +1403844.020155 1306571.020155 norm=34.828150 +1403828.593655 1299610.593655 norm=34.263683 +1403869.215121 1301924.215121 norm=34.554305 +1403849.997886 1304308.997886 norm=34.597688 +1403848.668962 1309523.668962 norm=34.856850 +1403868.478520 1307873.478520 norm=34.813790 +1403859.329207 1304916.329207 norm=34.394767 +1403872.724467 1306603.724467 norm=33.600595 +1403904.483759 1306094.483759 norm=34.409301 +1403876.072156 1306577.072156 norm=33.926391 +1403875.986924 1305040.986924 norm=35.369478 +1403867.106479 1306716.106479 norm=34.249088 +1403892.144725 1307767.144725 norm=33.837849 +1403890.046730 1308263.046730 norm=34.698703 +1403901.948417 1303474.948417 norm=34.842503 +1403893.340821 1306377.340821 norm=34.770677 +1403913.154316 1303488.154316 norm=34.073450 +1403883.432042 1306598.432042 norm=34.957117 +1403924.628024 1304226.628024 norm=34.467376 +1403917.423314 1301769.423314 norm=35.156792 +1403921.391593 1305887.391593 norm=34.539832 +1403924.966683 1304668.966683 norm=33.867388 +1403942.673587 1304186.673587 norm=34.438351 +1403928.909847 1309884.909847 norm=33.719431 +1403957.368245 1306378.368245 norm=34.044089 +1403942.779990 1307152.779990 norm=35.227830 +1403933.661682 1308342.661682 norm=35.805028 +1403925.789922 1305607.789922 norm=35.679126 +1403938.779466 1302614.779466 norm=35.142567 +1403945.577294 1306938.577294 norm=34.698703 +1403966.406736 1307833.406736 norm=34.278273 +1403981.509553 1298010.509553 norm=34.102786 +1403965.030024 1315607.030024 norm=33.955854 +1403986.861371 1305490.861371 norm=34.263683 +1403971.036424 1309328.036424 norm=35.312887 +1403977.435470 1304647.435470 norm=34.899857 +1403987.600346 1306813.600346 norm=33.719431 +1404000.644246 1308764.644246 norm=35.270384 +1403977.649534 1304121.649534 norm=35.114100 +1403987.274304 1305020.274304 norm=35.185224 +1403997.331274 1306438.331274 norm=34.914181 +1404005.429826 1308430.429826 norm=33.674916 +1404033.954193 1307505.954193 norm=34.856850 +1404000.368211 1296785.368211 norm=35.042831 +1404006.164714 1305932.164714 norm=34.828150 +1404037.036484 1298682.036484 norm=34.219877 +1404037.394030 1308959.394030 norm=34.655447 +1404023.109866 1302238.109866 norm=34.957117 +1404034.033868 1307623.033868 norm=34.885527 +1404035.019452 1298461.019452 norm=34.380227 +1404050.613962 1307380.613962 norm=35.538711 +1404019.302566 1304578.302566 norm=34.957117 +1404065.961734 1310308.961734 norm=35.707142 +1404028.094100 1311163.094100 norm=35.185224 +1404079.467021 1303406.467021 norm=33.852622 +1404065.099245 1305592.099245 norm=35.114100 +1404076.729886 1303942.729886 norm=34.365681 +1404074.750275 1303500.750275 norm=35.524639 +1404064.847844 1310555.847844 norm=34.380227 +1404093.161732 1307580.161732 norm=34.554305 +1404099.098378 1304116.098378 norm=34.336569 +1404071.902199 1301585.902199 norm=34.785054 +1404097.437455 1310230.437455 norm=34.292856 +1404109.714949 1303499.714949 norm=33.630343 +1404117.680219 1305213.680219 norm=34.161382 +1404118.201933 1303927.201933 norm=34.161382 +1404118.154765 1305103.154765 norm=33.837849 +1404123.557275 1297653.557275 norm=34.698703 +1404116.080062 1311402.080062 norm=34.568772 +1404123.866100 1300249.866100 norm=34.190642 +1404148.006138 1307612.006138 norm=34.336569 +1404125.520370 1302923.520370 norm=36.221541 +1404111.538691 1307540.538691 norm=34.770677 +1404143.352676 1301234.352676 norm=34.481879 +1404148.621982 1314466.621982 norm=34.219877 +1404157.709084 1301834.709084 norm=35.425979 +1404146.252153 1306984.252153 norm=35.735137 +1404131.018518 1304522.018518 norm=34.727511 +1404156.115563 1298621.115563 norm=35.665109 +1404134.677502 1306985.677502 norm=34.409301 +1404187.609989 1307699.609989 norm=33.674916 +1404186.964866 1304337.964866 norm=35.355339 +1404150.717541 1303683.717541 norm=34.756294 +1404182.998452 1313545.998452 norm=35.114100 +1404181.772123 1306428.772123 norm=34.856850 +1404191.421097 1307833.421097 norm=35.369478 +1404192.096654 1303669.096654 norm=34.438351 +1404203.206107 1307240.206107 norm=34.394767 +1404206.098659 1302964.098659 norm=34.655447 +1404202.473181 1305882.473181 norm=34.481879 +1404217.636478 1307072.636478 norm=34.727511 +1404202.631087 1303277.631087 norm=35.042831 +1404226.952204 1305888.952204 norm=34.785054 +1404223.638135 1305015.638135 norm=34.626579 +1404219.967029 1304560.967029 norm=35.142567 +1404233.429368 1302616.429368 norm=33.719431 +1404260.358835 1306106.358835 norm=33.852622 +1404244.138937 1304886.138937 norm=34.612137 +1404250.277544 1305404.277544 norm=34.626579 +1404238.468672 1296240.468672 norm=35.482390 +1404239.370311 1313728.370311 norm=35.171011 +1404244.075914 1304087.075914 norm=34.828150 +1404255.468018 1310263.468018 norm=34.770677 +1404271.497722 1306854.497722 norm=34.423829 +1404268.407620 1301335.407620 norm=35.284558 +1404278.637520 1299562.637520 norm=34.770677 +1404269.007970 1302740.007970 norm=34.928498 +1404271.403650 1305393.403650 norm=34.684290 +1404295.957736 1308005.957736 norm=34.000000 +1404299.426272 1306407.426272 norm=34.161382 +1404304.571209 1311804.571209 norm=35.482390 +1404260.577148 1303559.577148 norm=34.813790 +1404312.339066 1308101.339066 norm=34.813790 +1404307.715554 1306688.715554 norm=34.727511 +1404296.785403 1303434.785403 norm=34.452866 +1404326.602820 1305470.602820 norm=34.219877 +1404317.149740 1314510.149740 norm=34.249088 +1404340.618784 1300541.618784 norm=32.186954 +1404364.887593 1305914.887593 norm=33.882149 +1404348.146211 1308009.146211 norm=34.583233 +1404315.176648 1303952.176648 norm=34.525353 +1404353.324770 1310297.324770 norm=34.044089 +1404355.415375 1306646.415375 norm=34.597688 +1404345.656001 1308332.656001 norm=34.770677 +1404369.155845 1304094.155845 norm=33.955854 +1404352.285996 1306300.285996 norm=35.369478 +1404340.466796 1308384.466796 norm=34.713110 +1404377.398139 1303090.398139 norm=33.778692 +1404383.690274 1314340.690274 norm=34.741906 +1404369.299813 1302285.299813 norm=35.042831 +1404378.837642 1307567.837642 norm=35.099858 +1404374.388979 1306244.388979 norm=34.510868 +1404410.149712 1308314.149712 norm=34.000000 +1404379.540709 1306498.540709 norm=35.623026 +1404396.455719 1306676.455719 norm=33.778692 +1404408.579348 1306221.579348 norm=34.073450 +1404414.406309 1302500.406309 norm=33.406586 +1404430.459853 1310601.459853 norm=33.600595 +1404424.536095 1309424.536095 norm=33.896903 +1404445.568372 1306036.568372 norm=33.211444 +1404433.019495 1308967.019495 norm=34.481879 +1404421.375697 1298548.375697 norm=34.698703 +1404423.391931 1303964.391931 norm=34.597688 +1404443.966840 1306243.966840 norm=35.156792 +1404419.280820 1308902.280820 norm=34.942810 +1404440.886989 1299496.886989 norm=34.176015 +1404449.005836 1308014.005836 norm=35.142567 +1404441.391309 1303887.391309 norm=34.612137 +1404431.672719 1301518.672719 norm=35.468296 +1404452.111277 1310659.111277 norm=35.468296 +1404448.375034 1303667.375034 norm=34.073450 +1404487.482168 1304306.482168 norm=34.307434 +1404462.958567 1309443.958567 norm=34.626579 +1404478.523051 1305897.523051 norm=34.856850 +1404485.824404 1301034.824404 norm=34.626579 +1404487.869648 1310924.869648 norm=34.161382 +1404500.860969 1303365.860969 norm=35.213634 +1404490.568474 1304347.568474 norm=35.411862 +1404472.857543 1302754.857543 norm=35.142567 +1404489.707512 1311935.707512 norm=34.669872 +1404504.522692 1307410.522692 norm=33.985291 +1404515.667405 1309192.667405 norm=34.452866 +1404518.488654 1300721.488654 norm=34.583233 +1404515.860169 1308813.860169 norm=34.583233 +1404522.386468 1308749.386468 norm=34.597688 +1404526.403245 1307654.403245 norm=34.785054 +1404514.031004 1305149.031004 norm=35.693137 +1404507.978563 1304744.978563 norm=35.156792 +1404538.830033 1309596.830033 norm=34.669872 +1404550.173460 1299288.173460 norm=34.278273 +1404545.268831 1308910.268831 norm=35.142567 +1404542.934591 1306731.934591 norm=34.467376 +1404551.053227 1308869.053227 norm=34.899857 +1404559.421502 1304068.421502 norm=34.713110 +1404561.120447 1305729.120447 norm=34.351128 +1404570.204351 1304204.204351 norm=34.336569 +1404575.749308 1305171.749308 norm=34.971417 +1404558.104015 1308587.104015 norm=34.985711 +1404560.230358 1305360.230358 norm=36.097091 +1404557.186282 1304495.186282 norm=34.914181 +1404586.748822 1307327.748822 norm=33.793490 +1404599.494766 1308739.494766 norm=34.219877 +1404605.741703 1301776.741703 norm=35.242020 +1404584.758006 1306576.758006 norm=34.336569 +1404613.512085 1305361.512085 norm=34.394767 +1404593.085380 1306967.085380 norm=34.942810 +1404615.126946 1308898.126946 norm=34.684290 +1404611.560987 1302772.560987 norm=34.885527 +1404611.863852 1308011.863852 norm=34.799425 +1404628.839514 1307786.839514 norm=33.645208 +1404642.982426 1305535.982426 norm=33.615473 +1404650.377861 1306888.377861 norm=32.726136 +1404687.592446 1308303.592446 norm=33.941125 +1404636.999205 1303009.999205 norm=34.146742 +1404635.705530 1302087.705530 norm=35.057096 +1404643.634852 1307181.634852 norm=34.496377 +1404664.098299 1307479.098299 norm=34.176015 +1404654.080871 1307574.080871 norm=34.713110 +1404676.298772 1302554.298772 norm=33.436507 +1404676.971348 1304668.971348 norm=33.660065 +1404692.604953 1312863.604953 norm=34.176015 +1404675.370301 1301453.370301 norm=33.526109 +1404702.672383 1302420.672383 norm=34.176015 +1404661.158240 1309950.158240 norm=34.539832 +1404694.768298 1303478.768298 norm=35.057096 +1404692.964933 1307142.964933 norm=34.727511 +1404697.863510 1311009.863510 norm=35.327043 +1404670.065824 1305728.065824 norm=34.423829 +1404698.349131 1313823.349131 norm=35.284558 +1404697.714011 1303054.714011 norm=34.813790 +1404732.989453 1304061.989453 norm=33.391616 +1404730.464037 1310089.464037 norm=34.014703 +1404728.030128 1306104.030128 norm=34.756294 +1404708.470242 1309825.470242 norm=35.312887 +1404708.776187 1309160.776187 norm=35.242020 +1404729.262797 1306620.262797 norm=34.626579 +1404741.206106 1306702.206106 norm=33.985291 +1404760.438505 1308240.438505 norm=33.896903 +1404729.946250 1304282.946250 norm=34.914181 +1404747.043763 1306922.043763 norm=34.885527 +1404762.064210 1304697.064210 norm=34.510868 +1404755.832460 1308527.832460 norm=33.793490 +1404769.422694 1308197.422694 norm=34.146742 +1404761.875288 1305230.875288 norm=34.073450 +1404778.303702 1308548.303702 norm=34.423829 +1404771.980682 1302033.980682 norm=34.117444 +1404792.867795 1310352.867795 norm=34.117444 +1404771.254583 1305932.254583 norm=34.770677 +1404796.749120 1307495.749120 norm=34.205263 +1404782.884924 1307571.884924 norm=34.756294 +1404781.752295 1311574.752295 norm=35.199432 +1404775.435424 1305412.435424 norm=34.741906 +1404822.903054 1310015.903054 norm=32.756679 +1404829.283187 1307211.283187 norm=34.000000 +1404821.576822 1303301.576822 norm=34.510868 +1404820.425096 1307763.425096 norm=33.970576 +1404829.034285 1311477.034285 norm=35.298725 +1404808.677616 1305470.677616 norm=35.142567 +1404810.313201 1304945.313201 norm=35.411862 +1404811.413223 1308008.413223 norm=35.014283 +1404820.120960 1309581.120960 norm=35.156792 +1404827.516194 1305142.516194 norm=34.899857 +1404839.862737 1307454.862737 norm=33.823069 +1404867.179579 1306394.179579 norm=34.612137 +1404825.702786 1305551.702786 norm=34.176015 +1404865.330231 1310096.330231 norm=34.058773 +1404866.281069 1305543.281069 norm=33.346664 +1404898.747972 1304792.747972 norm=33.778692 +1404857.941336 1307739.941336 norm=33.985291 +1404902.149532 1302389.149532 norm=33.704599 +1404900.282070 1309964.282070 norm=33.749074 +1404892.674727 1307608.674727 norm=34.044089 +1404877.973856 1313057.973856 norm=35.538711 +1404862.815988 1303516.815988 norm=34.899857 +1404897.777991 1309756.777991 norm=34.770677 +1404874.226847 1305793.226847 norm=35.298725 +1404907.621991 1312414.621991 norm=34.351128 +1404903.065917 1304763.065917 norm=34.307434 +1404915.400510 1310561.400510 norm=34.394767 +1404898.653475 1306523.653475 norm=34.597688 +1404928.126469 1310458.126469 norm=33.615473 +1404931.457098 1305176.457098 norm=34.914181 +1404921.150994 1315180.150994 norm=34.510868 +1404916.193145 1299513.193145 norm=34.971417 +1404941.417802 1308735.417802 norm=33.541020 +1404953.152934 1305874.152934 norm=34.117444 +1404957.043660 1308428.043660 norm=34.146742 +1404944.924030 1305327.924030 norm=34.014703 +1404948.554677 1310313.554677 norm=33.941125 +1404952.947289 1304033.947289 norm=33.955854 +1404973.353578 1312721.353578 norm=34.146742 +1404977.682941 1309932.682941 norm=34.205263 +1404966.800516 1309614.800516 norm=33.600595 +1404987.452314 1303759.452314 norm=35.028560 +1404968.416383 1310177.416383 norm=34.044089 +1404989.394044 1305197.394044 norm=34.713110 +1404977.712689 1305358.712689 norm=33.970576 +1404997.144596 1309706.144596 norm=35.270384 +1404970.925891 1309391.925891 norm=33.734256 +1405018.772277 1308435.772277 norm=33.941125 +1405000.174630 1303268.174630 norm=34.438351 +1405002.077392 1305933.077392 norm=34.684290 +1405011.954834 1306734.954834 norm=34.176015 +1405014.531149 1308757.531149 norm=35.185224 +1405001.507449 1310859.507449 norm=35.397740 +1404989.056269 1309807.056269 norm=36.262929 +1405006.196765 1305050.196765 norm=35.284558 +1405024.137631 1310407.137631 norm=34.481879 +1405037.707752 1305338.707752 norm=32.848135 +1405061.532062 1309757.532062 norm=33.778692 +1405032.311134 1304929.311134 norm=34.626579 +1405047.746310 1309079.746310 norm=33.511192 +1405052.430454 1308898.430454 norm=33.704599 +1405061.220831 1310205.220831 norm=33.421550 +1405060.856871 1301275.856871 norm=34.088121 +1405063.411907 1309958.411907 norm=35.369478 +1405063.787632 1309278.787632 norm=33.585711 +1405062.776985 1308834.776985 norm=33.911650 +1405089.291038 1313259.291038 norm=35.341194 +1405065.153689 1306046.153689 norm=34.467376 +1405102.045277 1302468.045277 norm=32.969683 +1405101.819738 1313534.819738 norm=33.196385 +1405102.579268 1309354.579268 norm=33.526109 +1405107.899347 1308642.899347 norm=33.689761 +1405124.515343 1306058.515343 norm=34.828150 +1405068.563926 1305248.563926 norm=34.828150 +1405110.508314 1306124.508314 norm=34.176015 +1405118.102087 1308322.102087 norm=33.196385 +1405137.673386 1302705.673386 norm=34.942810 +1405099.974834 1311338.974834 norm=35.213634 +1405109.879367 1303684.879367 norm=34.539832 +1405118.653366 1310159.653366 norm=35.594943 +1405108.505773 1307452.505773 norm=34.568772 +1405144.882457 1310831.882457 norm=33.719431 +1405153.758505 1305570.758505 norm=34.813790 +1405133.477729 1309044.477729 norm=34.655447 +1405130.704460 1309290.704460 norm=33.674916 +1405177.516261 1309247.516261 norm=33.316662 +1405154.617054 1306386.617054 norm=34.899857 +1405158.333970 1309149.333970 norm=34.842503 +1405160.336092 1309563.336092 norm=34.452866 +1405167.602926 1312350.602926 norm=34.380227 +1405180.062963 1308896.062963 norm=34.073450 +1405177.384865 1307185.384865 norm=34.380227 +1405184.077374 1304716.077374 norm=34.525353 +1405174.400137 1308201.400137 norm=34.597688 +1405184.730841 1307576.730841 norm=34.219877 +1405200.267148 1306461.267148 norm=34.842503 +1405197.307848 1305143.307848 norm=32.832910 +1405223.758722 1312796.758722 norm=33.060551 +1405214.408176 1306429.408176 norm=33.436507 +1405218.542732 1303472.542732 norm=34.263683 +1405215.425489 1308267.425489 norm=34.770677 +1405206.281443 1304439.281443 norm=34.612137 +1405219.355920 1309801.355920 norm=34.409301 +1405207.671515 1306823.671515 norm=34.219877 +1405243.005252 1305038.005252 norm=34.088121 +1405225.474819 1310986.474819 norm=34.394767 +1405252.630318 1305995.630318 norm=33.481338 +1405243.227018 1311924.227018 norm=34.842503 +1405240.811569 1311718.811569 norm=33.555923 +1405255.498494 1306347.498494 norm=34.000000 +1405273.103854 1305453.103854 norm=33.151169 +1405291.040916 1308045.040916 norm=33.421550 +1405272.775212 1305784.775212 norm=33.896903 +1405282.826268 1310437.826268 norm=34.249088 +1405275.572329 1303821.572329 norm=34.176015 +1405284.060903 1312203.060903 norm=34.058773 +1405286.602561 1307191.602561 norm=34.713110 +1405274.873526 1307676.873526 norm=34.249088 +1405291.362034 1308546.362034 norm=34.525353 +1405277.350175 1303103.350175 norm=34.365681 +1405303.186340 1305207.186340 norm=34.871192 +1405288.979378 1302602.979378 norm=34.583233 +1405294.117123 1311917.117123 norm=33.837849 +1405299.351205 1308519.351205 norm=34.496377 +1405316.163815 1312355.163815 norm=33.749074 +1405329.625595 1307795.625595 norm=33.719431 +1405338.449611 1311057.449611 norm=34.292856 +1405310.272401 1310671.272401 norm=34.146742 +1405323.300033 1306368.300033 norm=34.525353 +1405331.488439 1302551.488439 norm=35.256205 +1405323.663246 1310754.663246 norm=34.394767 +1405335.480248 1311560.480248 norm=34.088121 +1405361.680280 1306898.680280 norm=34.219877 +1405330.266770 1310804.266770 norm=35.327043 +1405346.359796 1311193.359796 norm=34.727511 +1405339.618131 1306874.618131 norm=32.969683 +1405382.633157 1312359.633157 norm=33.585711 +1405370.538681 1304269.538681 norm=33.926391 +1405372.541413 1312304.541413 norm=35.256205 +1405353.887618 1301993.887618 norm=34.539832 +1405375.963456 1306799.963456 norm=33.763886 +1405392.205825 1302330.205825 norm=34.234486 +1405374.594396 1311548.594396 norm=34.234486 +1405385.380022 1309093.380022 norm=33.481338 +1405416.064905 1310698.064905 norm=34.058773 +1405391.645079 1303005.645079 norm=34.380227 +1405413.156501 1305907.156501 norm=33.645208 +1405406.492034 1306051.492034 norm=33.585711 +1405436.503445 1310819.503445 norm=33.331667 +1405420.255185 1312024.255185 norm=34.292856 +1405427.742136 1312089.742136 norm=33.837849 +1405409.938127 1306383.938127 norm=34.014703 +1405440.959514 1311056.959514 norm=34.365681 +1405407.380145 1305591.380145 norm=33.970576 +1405458.398556 1311882.398556 norm=33.136083 +1405428.963083 1308283.963083 norm=35.199432 +1405433.029300 1303181.029300 norm=34.799425 +1405432.312748 1317669.312748 norm=34.452866 +1405456.734428 1307291.734428 norm=35.566838 +1405400.026561 1306103.026561 norm=35.341194 +1405450.123690 1308940.123690 norm=34.727511 +1405448.522379 1308818.522379 norm=34.044089 +1405469.349272 1307325.349272 norm=34.554305 +1405458.634608 1312142.634608 norm=34.014703 +1405497.243784 1310273.243784 norm=33.674916 +1405465.685220 1304564.685220 norm=34.655447 +1405475.028483 1307647.028483 norm=34.394767 +1405453.881654 1312850.881654 norm=34.684290 +1405494.030410 1305940.030410 norm=34.568772 +1405460.111993 1310052.111993 norm=34.713110 +1405518.516516 1307778.516516 norm=32.326460 +1405526.123676 1309378.123676 norm=32.817678 +1405527.560858 1303021.560858 norm=33.346664 +1405509.547700 1312078.547700 norm=33.585711 +1405525.988086 1306070.988086 norm=33.808283 +1405506.786433 1308890.786433 norm=34.727511 +1405526.066670 1308186.066670 norm=34.756294 +1405494.152311 1304557.152311 norm=35.818989 +1405508.623358 1311286.623358 norm=34.322005 +1405532.385582 1310833.385582 norm=34.496377 +1405539.391152 1305129.391152 norm=34.641016 +1405520.011011 1308381.011011 norm=35.242020 +1405545.139648 1305230.139648 norm=34.785054 +1405533.841886 1309172.841886 norm=35.057096 +1405531.344075 1312910.344075 norm=35.085610 +1405536.297581 1305449.297581 norm=35.071356 +1405557.532521 1311341.532521 norm=34.438351 +1405561.293929 1306268.293929 norm=33.511192 +1405576.905332 1305223.905332 norm=34.813790 +1405567.491966 1308695.491966 norm=34.626579 +1405551.451854 1310832.451854 norm=33.837849 +1405595.635360 1310117.635360 norm=34.467376 +1405585.664301 1305069.664301 norm=34.365681 +1405583.670428 1311443.670428 norm=34.234486 +1405598.394129 1306063.394129 norm=34.088121 +1405593.661040 1311185.661040 norm=34.539832 +1405600.601763 1304842.601763 norm=34.641016 +1405602.762338 1311135.762338 norm=33.823069 +1405612.624652 1304633.624652 norm=34.146742 +1405627.831627 1312336.831627 norm=33.896903 +1405605.323452 1306620.323452 norm=33.808283 +1405629.971807 1307459.971807 norm=33.882149 +1405625.634387 1302171.634387 norm=34.957117 +1405615.845899 1309613.845899 norm=34.394767 +1405627.432467 1311643.432467 norm=35.312887 +1405637.662407 1311220.662407 norm=34.073450 +1405632.445072 1309234.445072 norm=34.307434 +1405658.349116 1304174.349116 norm=34.073450 +1405633.521349 1311712.521349 norm=34.467376 +1405670.106737 1308380.106737 norm=34.351128 +1405640.715443 1305539.715443 norm=33.867388 +1405677.954018 1307749.954018 norm=32.787193 +1405692.793922 1313226.793922 norm=34.322005 +1405666.577905 1311696.577905 norm=33.852622 +1405686.985324 1306917.985324 norm=33.030289 +1405713.105290 1308685.105290 norm=32.603681 +1405697.543169 1307180.543169 norm=33.970576 +1405705.769210 1314769.769210 norm=34.014703 +1405697.093470 1303751.093470 norm=33.511192 +1405685.874744 1307529.874744 norm=33.778692 +1405718.896362 1309617.896362 norm=34.205263 +1405709.294258 1308093.294258 norm=33.941125 +1405715.681673 1311318.681673 norm=33.808283 +1405725.805518 1312829.805518 norm=33.166248 +1405746.300740 1312692.300740 norm=33.000000 +1405732.475190 1307220.475190 norm=34.510868 +1405728.601587 1308318.601587 norm=33.837849 +1405720.256978 1314612.256978 norm=34.146742 +1405742.942978 1303863.942978 norm=34.568772 +1405710.101860 1317165.101860 norm=34.842503 +1405733.424741 1304236.424741 norm=34.554305 +1405748.429057 1312132.429057 norm=33.660065 +1405756.998909 1306709.998909 norm=34.452866 +1405739.064965 1311260.064965 norm=34.799425 +1405762.140093 1305964.140093 norm=34.102786 +1405740.413515 1307724.413515 norm=34.278273 +1405765.947497 1309889.947497 norm=33.600595 +1405767.360227 1308792.360227 norm=33.941125 +1405791.767575 1307590.767575 norm=33.105891 +1405778.159379 1310718.159379 norm=33.466401 +1405808.011906 1303694.011906 norm=33.778692 +1405782.568398 1315193.568398 norm=33.241540 +1405810.174472 1305228.174472 norm=33.882149 +1405805.085331 1311884.085331 norm=33.660065 +1405796.093087 1307267.093087 norm=34.741906 +1405773.406578 1309456.406578 norm=34.641016 +1405811.219383 1306377.219383 norm=34.029399 +1405807.309656 1312522.309656 norm=34.365681 +1405825.530690 1310638.530690 norm=34.014703 +1405808.472704 1309947.472704 norm=34.234486 +1405823.865066 1310474.865066 norm=34.278273 +1405826.480229 1309116.480229 norm=34.380227 +1405831.794175 1311604.794175 norm=34.669872 +1405828.678111 1304169.678111 norm=34.102786 +1405833.504622 1308457.504622 norm=34.365681 +1405833.372983 1308395.372983 norm=34.510868 +1405849.046256 1306172.046256 norm=34.117444 +1405843.131820 1311513.131820 norm=34.510868 +1405851.609523 1308836.609523 norm=34.842503 +1405842.179735 1310424.179735 norm=33.570821 +1405888.005063 1307229.005063 norm=33.555923 +1405862.773911 1312071.773911 norm=33.985291 +1405874.028421 1305434.028421 norm=34.452866 +1405866.868676 1313638.868676 norm=33.451457 +1405906.760601 1303766.760601 norm=33.060551 +1405866.551051 1313274.551051 norm=34.467376 +1405885.204923 1304285.204923 norm=34.525353 +1405894.685205 1311880.685205 norm=33.867388 +1405904.607876 1309401.607876 norm=32.603681 +1405924.614318 1307388.614318 norm=33.970576 +1405888.778802 1305616.778802 norm=33.955854 +1405924.900195 1301333.900195 norm=33.241540 +1405913.866841 1311843.866841 norm=33.511192 +1405918.275625 1307886.275625 norm=34.452866 +1405909.280555 1308290.280555 norm=33.941125 +1405926.895678 1312748.895678 norm=34.219877 +1405926.601337 1312230.601337 norm=33.541020 +1405951.368012 1309879.368012 norm=34.741906 +1405906.670451 1312289.670451 norm=34.554305 +1405951.901189 1303081.901189 norm=34.655447 +1405942.936591 1307340.936591 norm=33.570821 +1405964.782638 1308093.782638 norm=33.090784 +1405968.965753 1305622.965753 norm=33.867388 +1405943.620508 1310074.620508 norm=34.351128 +1405944.928507 1311666.928507 norm=34.856850 +1405949.249135 1308612.249135 norm=34.000000 +1405969.988724 1303163.988724 norm=33.852622 +1405982.235203 1309287.235203 norm=33.867388 +1405973.702167 1308835.702167 norm=33.823069 +1405967.627542 1307316.627542 norm=34.380227 +1405999.342932 1312402.342932 norm=34.205263 +1405974.526866 1306798.526866 norm=34.263683 +1405990.328163 1308165.328163 norm=34.785054 +1405985.352726 1313814.352726 norm=34.219877 +1406001.792120 1304521.792120 norm=33.166248 +1406013.650667 1307465.650667 norm=33.911650 +1406007.979011 1312223.979011 norm=33.896903 +1406010.818352 1309228.818352 norm=33.600595 +1406022.261939 1309763.261939 norm=34.029399 +1406030.768546 1309405.768546 norm=33.241540 +1406040.885681 1314536.885681 norm=34.000000 +1406015.533043 1308897.533043 norm=35.411862 +1405999.566450 1308707.566450 norm=34.380227 +1406043.279408 1307259.279408 norm=33.541020 +1406047.801797 1305832.801797 norm=34.102786 +1406045.787082 1311533.787082 norm=34.510868 +1406032.338003 1306613.338003 norm=34.365681 +1406070.205996 1313446.205996 norm=32.924155 +1406078.602965 1305666.602965 norm=34.058773 +1406047.127458 1312083.127458 norm=34.799425 +1406050.162937 1304328.162937 norm=34.409301 +1406051.026605 1307436.026605 norm=34.394767 +1406070.140168 1302466.140168 norm=34.102786 +1406085.435333 1310566.435333 norm=33.911650 +1406092.871711 1305685.871711 norm=34.263683 +1406075.692096 1309369.692096 norm=33.926391 +1406096.550954 1315628.550954 norm=33.955854 +1406094.931212 1310460.931212 norm=33.763886 +1406110.969401 1313739.969401 norm=34.655447 +1406068.254766 1308484.254766 norm=35.256205 +1406104.507098 1305457.507098 norm=32.939338 +1406126.160234 1310834.160234 norm=33.151169 +1406129.833275 1305119.833275 norm=34.058773 +1406113.456787 1311514.456787 norm=33.481338 +1406134.096424 1311577.096424 norm=34.073450 +1406103.062563 1311428.062563 norm=34.014703 +1406117.786164 1310333.786164 norm=34.044089 +1406140.952946 1309234.952946 norm=34.467376 +1406143.657686 1310391.657686 norm=33.926391 +1406153.201501 1305151.201501 norm=33.451457 +1406151.661188 1311845.661188 norm=33.970576 +1406150.400012 1307884.400012 norm=34.146742 +1406151.161784 1307609.161784 norm=35.000000 +1406135.583645 1312178.583645 norm=33.719431 +1406159.833729 1308594.833729 norm=33.970576 +1406163.751237 1304112.751237 norm=33.674916 +1406175.809096 1310362.809096 norm=34.365681 +1406158.242097 1310286.242097 norm=34.452866 +1406182.282593 1310583.282593 norm=33.105891 +1406189.306156 1308708.306156 norm=34.102786 +1406185.976943 1313293.976943 norm=34.161382 +1406186.284558 1308747.284558 norm=33.615473 +1406204.483312 1308987.483312 norm=33.837849 +1406182.444238 1311696.444238 norm=33.926391 +1406219.929731 1306412.929731 norm=33.808283 +1406188.964223 1307467.964223 norm=33.837849 +1406219.290565 1310798.290565 norm=34.380227 +1406193.772875 1310215.772875 norm=34.278273 +1406207.554883 1315053.554883 norm=34.394767 +1406211.657196 1312333.657196 norm=33.541020 +1406232.320155 1306536.320155 norm=34.394767 +1406231.182523 1304058.182523 norm=33.090784 +1406253.731916 1310544.731916 norm=33.734256 +1406224.451797 1314798.451797 norm=34.073450 +1406239.385813 1307202.385813 norm=34.044089 +1406252.205784 1311795.205784 norm=34.380227 +1406244.198654 1306812.198654 norm=34.409301 +1406243.827989 1311264.827989 norm=34.205263 +1406247.509535 1306769.509535 norm=34.423829 +1406255.771583 1306382.771583 norm=34.380227 +1406252.142068 1309076.142068 norm=34.554305 +1406258.494713 1307632.494713 norm=34.336569 +1406272.471297 1308952.471297 norm=33.630343 +1406283.242969 1309240.242969 norm=33.882149 +1406277.836539 1305809.836539 norm=34.205263 +1406284.293743 1310408.293743 norm=34.365681 +1406274.683625 1305147.683625 norm=34.741906 +1406285.185054 1310200.185054 norm=34.205263 +1406299.370688 1309266.370688 norm=33.704599 +1406301.005832 1312375.005832 norm=33.630343 +1406301.053086 1314408.053086 norm=33.896903 +1406305.184227 1310124.184227 norm=34.626579 +1406297.108023 1316948.108023 norm=34.899857 +1406304.835558 1310878.835558 norm=34.176015 +1406318.490555 1310516.490555 norm=34.641016 +1406316.221358 1312424.221358 norm=34.263683 +1406321.197206 1305096.197206 norm=34.292856 +1406328.085711 1309509.085711 norm=33.630343 +1406348.046526 1308144.046526 norm=33.734256 +1406333.108066 1309582.108066 norm=35.227830 +1406319.935766 1308034.935766 norm=34.525353 +1406340.021366 1312400.021366 norm=33.970576 +1406345.045840 1302967.045840 norm=33.704599 +1406375.132292 1308153.132292 norm=33.481338 +1406351.822088 1305137.822088 norm=34.409301 +1406355.840525 1308690.840525 norm=34.219877 +1406371.419134 1310361.419134 norm=33.674916 +1406376.970360 1305189.970360 norm=33.808283 +1406381.335460 1311044.335460 norm=34.394767 +1406375.253703 1311396.253703 norm=33.316662 +1406401.889691 1311413.889691 norm=33.555923 +1406391.831350 1305625.831350 norm=34.234486 +1406391.304314 1307654.304314 norm=34.641016 +1406390.608231 1314617.608231 norm=33.911650 +1406418.396769 1306584.396769 norm=33.763886 +1406397.374677 1314068.374677 norm=34.322005 +1406402.507486 1312533.507486 norm=34.496377 +1406410.181028 1313800.181028 norm=33.867388 +1406402.647575 1309034.647575 norm=33.734256 +1406411.349437 1304446.349437 norm=34.351128 +1406409.181347 1310461.181347 norm=33.763886 +1406413.238968 1311059.238968 norm=34.292856 +1406447.265547 1305712.265547 norm=34.481879 +1406413.895649 1311297.895649 norm=34.278273 +1406426.692492 1306835.692492 norm=33.555923 +1406461.845786 1311962.845786 norm=33.511192 +1406446.778900 1305139.778900 norm=34.088121 +1406460.263389 1314417.263389 norm=32.848135 +1406468.910297 1308634.910297 norm=33.376639 +1406466.079583 1311321.079583 norm=33.763886 +1406470.239199 1310904.239199 norm=34.496377 +1406438.075209 1306598.075209 norm=34.481879 +1406483.645795 1307475.645795 norm=33.852622 +1406473.138583 1313646.138583 norm=34.292856 +1406470.724009 1308085.724009 norm=34.176015 +1406493.218300 1316432.218300 norm=33.120990 +1406504.965661 1304618.965661 norm=34.813790 +1406461.462123 1309382.462123 norm=34.698703 +1406484.565644 1307906.565644 norm=34.741906 +1406489.887303 1308085.887303 norm=33.882149 +1406503.826404 1302424.826404 norm=35.000000 +1406474.301988 1311040.301988 norm=34.438351 +1406514.815516 1315755.815516 norm=33.105891 +1406525.832826 1306401.832826 norm=33.719431 +1406525.485169 1318274.485169 norm=34.014703 +1406510.427687 1306104.427687 norm=34.885527 +1406511.128651 1303310.128651 norm=34.971417 +1406530.354967 1310294.354967 norm=33.645208 +1406546.236571 1310617.236571 norm=33.941125 +1406525.533804 1310114.533804 norm=34.088121 +1406544.472958 1309282.472958 norm=34.510868 +1406542.291017 1309077.291017 norm=33.376639 +1406568.052085 1311350.052085 norm=33.151169 +1406570.096015 1307048.096015 norm=32.388269 +1406580.462834 1309048.462834 norm=33.211444 +1406573.434147 1307561.434147 norm=33.451457 +1406564.982267 1310754.982267 norm=33.585711 +1406583.848876 1317655.848876 norm=32.969683 +1406582.497104 1308009.497104 norm=33.316662 +1406590.078847 1309938.078847 norm=34.394767 +1406570.114395 1306558.114395 norm=34.380227 +1406576.089598 1307021.089598 norm=33.615473 +1406606.436159 1309435.436159 norm=33.955854 +1406580.449132 1310284.449132 norm=34.741906 +1406608.849454 1310308.849454 norm=33.406586 +1406599.813465 1310731.813465 norm=33.226495 +1406629.191468 1310460.191468 norm=33.436507 +1406601.202545 1311964.202545 norm=33.778692 +1406636.377237 1307797.377237 norm=33.196385 +1406629.766524 1314128.766524 norm=33.778692 +1406632.503040 1306502.503040 norm=33.852622 +1406601.046869 1311219.046869 norm=34.626579 +1406628.741993 1311792.741993 norm=33.331667 +1406645.453039 1311222.453039 norm=33.570821 +1406634.158686 1308593.158686 norm=34.307434 +1406636.312327 1312242.312327 norm=34.438351 +1406644.169393 1309637.169393 norm=33.196385 +1406670.465518 1310009.465518 norm=31.796226 +1406689.162313 1311870.162313 norm=32.634338 +1406661.784365 1306664.784365 norm=33.645208 +1406665.391879 1314394.391879 norm=34.205263 +1406657.235443 1310566.235443 norm=34.452866 +1406675.923338 1306750.923338 norm=33.391616 +1406681.663566 1313261.663566 norm=33.763886 +1406665.445387 1315569.445387 norm=34.205263 +1406694.224587 1311013.224587 norm=32.878564 +1406694.113260 1305667.113260 norm=34.190642 +1406673.406817 1312138.406817 norm=34.014703 +1406709.076401 1308216.076401 norm=35.014283 +1406645.486218 1311098.486218 norm=35.468296 +1406691.583976 1309020.583976 norm=34.219877 +1406703.808366 1308821.808366 norm=33.793490 +1406725.978387 1315052.978387 norm=33.852622 +1406717.125384 1307880.125384 norm=33.256578 +1406739.811197 1308468.811197 norm=33.496268 +1406707.384785 1316837.384785 norm=33.852622 +1406730.156968 1306175.156968 norm=33.331667 +1406732.541718 1314003.541718 norm=32.619013 +1406762.189735 1308684.189735 norm=34.539832 +1406719.161263 1310357.161263 norm=33.346664 +1406759.199694 1307786.199694 norm=31.796226 +1406773.989271 1309209.989271 norm=32.496154 +1406786.852897 1314368.852897 norm=33.271610 +1406761.783548 1306307.783548 norm=33.630343 +1406752.707321 1310327.707321 norm=33.421550 +1406769.924032 1318239.924032 norm=33.481338 +1406788.858631 1306751.858631 norm=33.030289 +1406774.013937 1312621.013937 norm=33.271610 +1406785.998432 1306973.998432 norm=34.073450 +1406758.534117 1310633.534117 norm=34.176015 +1406795.511543 1309261.511543 norm=33.585711 +1406784.724343 1313691.724343 norm=33.674916 +1406786.990667 1307076.990667 norm=33.704599 +1406804.374125 1308690.374125 norm=34.351128 +1406784.181928 1311356.181928 norm=34.249088 +1406794.897608 1308899.897608 norm=34.842503 +1406790.734417 1311751.734417 norm=34.525353 +1406783.403499 1314483.403499 norm=34.885527 +1406809.325235 1307256.325235 norm=34.539832 +1406800.018081 1311881.018081 norm=33.704599 +1406821.538235 1311188.538235 norm=33.075671 +1406843.857448 1311231.857448 norm=34.292856 +1406802.040669 1313568.040669 norm=33.808283 +1406851.956974 1311876.956974 norm=32.878564 +1406827.751359 1313117.751359 norm=32.557641 +1406886.505923 1311672.505923 norm=32.542280 +1406846.362859 1312695.362859 norm=33.120990 +1406860.375347 1308267.375347 norm=34.698703 +1406829.349127 1310251.349127 norm=33.970576 +1406859.450807 1309466.450807 norm=33.926391 +1406851.508898 1310749.508898 norm=33.541020 +1406862.922719 1306206.922719 norm=34.568772 +1406849.724888 1310162.724888 norm=34.234486 +1406863.184540 1307196.184540 norm=33.882149 +1406895.538245 1309806.538245 norm=32.939338 +1406883.286962 1308721.286962 norm=33.600595 +1406860.505856 1310147.505856 norm=34.985711 +1406883.454849 1306449.454849 norm=34.365681 +1406873.046163 1315542.046163 norm=34.525353 +1406872.885863 1310578.885863 norm=34.856850 +1406897.384550 1311632.384550 norm=34.394767 +1406898.400605 1307479.400605 norm=34.117444 +1406919.275527 1312758.275527 norm=33.030289 +1406919.181477 1306089.181477 norm=33.331667 +1406923.624954 1310694.624954 norm=33.481338 +1406919.953997 1311168.953997 norm=34.971417 +1406918.598222 1311071.598222 norm=33.090784 +1406947.060875 1315608.060875 norm=33.585711 +1406934.205011 1312123.205011 norm=33.211444 +1406951.435139 1306659.435139 norm=33.211444 +1406946.975100 1312739.975100 norm=33.286634 +1406946.686439 1307242.686439 norm=34.438351 +1406934.493620 1315760.493620 norm=34.190642 +1406944.733430 1308104.733430 norm=33.376639 +1406965.117748 1309432.117748 norm=33.361655 +1406969.154194 1305619.154194 norm=34.205263 +1406953.907567 1311035.907567 norm=32.908965 +1406983.207661 1311653.207661 norm=33.196385 +1406983.774216 1319157.774216 norm=33.926391 +1406969.865236 1307383.865236 norm=34.438351 +1406969.095347 1312762.095347 norm=35.057096 +1406951.428329 1312025.428329 norm=34.190642 +1406977.287665 1308539.287665 norm=34.394767 +1406981.430630 1310406.430630 norm=34.088121 +1406990.605658 1314878.605658 norm=34.292856 +1406984.581652 1310719.581652 norm=34.467376 +1406998.981622 1315682.981622 norm=34.146742 +1406976.177897 1310453.177897 norm=34.029399 +1407010.395417 1308362.395417 norm=34.044089 +1406995.404092 1313782.404092 norm=33.734256 +1407032.500990 1307052.500990 norm=33.526109 +1407016.151053 1312900.151053 norm=33.630343 +1407041.550913 1310012.550913 norm=33.406586 +1407033.668726 1307335.668726 norm=33.926391 +1407013.241003 1308689.241003 norm=33.763886 +1407036.611540 1312112.611540 norm=34.234486 +1407023.660565 1313475.660565 norm=34.190642 +1407039.272942 1313529.272942 norm=33.660065 +1407055.537107 1307387.537107 norm=33.271610 +1407076.903412 1309690.903412 norm=32.893768 +1407075.194646 1306738.194646 norm=32.649655 +1407072.960292 1310672.960292 norm=34.813790 +1407043.344313 1313748.344313 norm=34.380227 +1407054.180577 1309857.180577 norm=33.911650 +1407072.451330 1316716.451330 norm=33.837849 +1407070.145316 1309389.145316 norm=32.969683 +1407092.369522 1316258.369522 norm=34.278273 +1407064.308257 1310624.308257 norm=34.394767 +1407077.617688 1307198.617688 norm=34.029399 +1407060.403941 1307633.403941 norm=34.684290 +1407099.660525 1315903.660525 norm=34.467376 +1407070.544774 1308762.544774 norm=34.496377 +1407097.512826 1318883.512826 norm=33.882149 +1407101.547066 1304581.547066 norm=34.190642 +1407102.013957 1315325.013957 norm=33.689761 +1407114.255855 1312318.255855 norm=32.878564 +1407140.310640 1312382.310640 norm=33.030289 +1407105.163394 1308852.163394 norm=34.132096 +1407141.766767 1310692.766767 norm=33.481338 +1407136.782090 1311739.782090 norm=33.837849 +1407118.078055 1310754.078055 norm=33.778692 +1407152.465270 1310678.465270 norm=33.391616 +1407145.052492 1311227.052492 norm=34.942810 +1407114.778340 1312686.778340 norm=34.971417 +1407124.546857 1316534.546857 norm=34.597688 +1407149.431977 1314894.431977 norm=34.219877 +1407146.479692 1310043.479692 norm=33.734256 +1407160.095244 1313797.095244 norm=33.985291 +1407161.963814 1304077.963814 norm=33.331667 +1407168.223647 1316361.223647 norm=34.088121 +1407154.834219 1312366.834219 norm=34.307434 +1407171.948634 1314356.948634 norm=34.146742 +1407159.945488 1312717.945488 norm=34.799425 +1407181.101661 1311289.101661 norm=33.181320 +1407203.129463 1307917.129463 norm=33.391616 +1407191.988929 1309198.988929 norm=34.190642 +1407185.084527 1313908.084527 norm=33.970576 +1407184.146668 1309012.146668 norm=33.985291 +1407207.228642 1313798.228642 norm=33.955854 +1407210.142538 1308327.142538 norm=33.941125 +1407201.298179 1309621.298179 norm=33.985291 +1407209.179868 1308905.179868 norm=34.044089 +1407220.540585 1309925.540585 norm=32.280025 +1407249.220558 1307070.220558 norm=34.161382 +1407192.568789 1308441.568789 norm=34.380227 +1407236.806824 1315011.806824 norm=33.615473 +1407231.429543 1306795.429543 norm=33.985291 +1407227.101594 1316385.101594 norm=34.394767 +1407232.712863 1309502.712863 norm=33.346664 +1407243.326074 1307724.326074 norm=34.088121 +1407229.299116 1313437.299116 norm=34.307434 +1407250.379823 1314684.379823 norm=33.526109 +1407260.609681 1315733.609681 norm=34.058773 +1407238.235978 1310326.235978 norm=33.600595 +1407277.244168 1313254.244168 norm=33.030289 +1407269.264774 1314998.264774 norm=34.985711 +1407239.353187 1314206.353187 norm=34.423829 +1407261.276175 1314744.276175 norm=33.015148 +1407294.195245 1310881.195245 norm=32.326460 +1407309.112374 1311133.112374 norm=32.954514 +1407289.474329 1311738.474329 norm=33.361655 +1407300.791489 1311488.791489 norm=33.970576 +1407291.712569 1315815.712569 norm=33.793490 +1407295.757710 1305943.757710 norm=34.161382 +1407295.985149 1310657.985149 norm=34.452866 +1407286.036918 1309068.036918 norm=34.799425 +1407293.461475 1317314.461475 norm=34.842503 +1407297.229277 1308738.229277 norm=33.763886 +1407331.273779 1305248.273779 norm=33.823069 +1407298.656367 1311617.656367 norm=33.555923 +1407338.930313 1311582.930313 norm=33.015148 +1407340.074116 1310803.074116 norm=33.406586 +1407334.613140 1308816.613140 norm=34.132096 +1407334.289195 1318764.289195 norm=34.044089 +1407335.403175 1312440.403175 norm=33.436507 +1407343.844973 1308393.844973 norm=34.263683 +1407337.578797 1313266.578797 norm=34.597688 +1407335.201711 1312177.201711 norm=34.655447 +1407344.457944 1312122.457944 norm=34.190642 +1407365.419489 1311835.419489 norm=33.645208 +1407361.326187 1314388.326187 norm=33.719431 +1407373.191405 1311356.191405 norm=34.102786 +1407369.243126 1309535.243126 norm=33.211444 +1407391.434697 1309399.434697 norm=32.511536 +1407409.435487 1306827.435487 norm=32.802439 +1407379.369947 1311161.369947 norm=33.645208 +1407383.315873 1307869.315873 norm=34.278273 +1407386.198541 1318264.198541 norm=33.436507 +1407397.153588 1308230.153588 norm=33.867388 +1407392.009668 1313670.009668 norm=34.583233 +1407378.448097 1307454.448097 norm=34.394767 +1407399.023015 1312390.023015 norm=34.278273 +1407411.085082 1309008.085082 norm=34.409301 +1407399.452579 1314433.452579 norm=33.793490 +1407426.347130 1310195.347130 norm=33.749074 +1407414.316860 1314745.316860 norm=33.241540 +1407451.915639 1312154.915639 norm=33.211444 +1407426.098473 1312905.098473 norm=34.176015 +1407428.297495 1311279.297495 norm=33.526109 +1407434.761200 1314686.761200 norm=34.597688 +1407410.565453 1307805.565453 norm=34.756294 +1407439.648240 1317086.648240 norm=34.000000 +1407435.778732 1312819.778732 norm=34.336569 +1407448.396787 1315174.396787 norm=33.882149 +1407464.496650 1307806.496650 norm=33.181320 +1407469.607111 1313186.607111 norm=33.511192 +1407466.295298 1309472.295298 norm=33.808283 +1407487.253015 1313433.253015 norm=33.000000 +1407483.413420 1312978.413420 norm=32.310989 +1407485.782627 1311197.782627 norm=33.376639 +1407493.502280 1316759.502280 norm=34.641016 +1407452.422111 1308828.422111 norm=35.355339 +1407468.045098 1308629.045098 norm=33.615473 +1407488.893658 1310535.893658 norm=33.882149 +1407500.705275 1310744.705275 norm=33.481338 +1407499.101767 1313387.101767 norm=33.630343 +1407493.303448 1310944.303448 norm=33.970576 +1407502.033972 1311309.033972 norm=33.734256 +1407501.685920 1315359.685920 norm=34.029399 +1407499.673772 1310424.673772 norm=34.190642 +1407512.585186 1309999.585186 norm=34.088121 +1407509.739253 1319428.739253 norm=33.704599 +1407518.614748 1314389.614748 norm=34.249088 +1407506.855775 1314128.855775 norm=34.146742 +1407531.747147 1308156.747147 norm=34.044089 +1407530.630234 1310727.630234 norm=34.263683 +1407537.263910 1311886.263910 norm=33.689761 +1407540.887631 1311084.887631 norm=33.823069 +1407553.265770 1309281.265770 norm=32.741411 +1407577.563840 1316908.563840 norm=32.542280 +1407569.544804 1304137.544804 norm=34.554305 +1407536.628627 1313041.628627 norm=33.105891 +1407577.855581 1315298.855581 norm=33.451457 +1407577.645180 1314287.645180 norm=33.120990 +1407574.297110 1311187.297110 norm=33.181320 +1407598.904276 1307912.904276 norm=32.619013 +1407602.370515 1312564.370515 norm=33.181320 +1407597.776320 1314832.776320 norm=33.391616 +1407592.283993 1313496.283993 norm=33.211444 +1407604.688204 1313262.688204 norm=33.867388 +1407575.367968 1312279.367968 norm=33.896903 +1407600.301940 1313013.301940 norm=33.286634 +1407614.295832 1316645.295832 norm=33.615473 +1407616.119220 1309632.119220 norm=32.984845 +1407621.374030 1312209.374030 norm=33.451457 +1407621.717991 1312773.717991 norm=32.403703 +1407638.431648 1313982.431648 norm=33.763886 +1407615.893179 1311936.893179 norm=33.734256 +1407604.305027 1315116.305027 norm=34.684290 +1407619.407828 1309092.407828 norm=33.481338 +1407647.001427 1313031.001427 norm=33.823069 +1407627.235237 1311715.235237 norm=34.146742 +1407620.624918 1314937.624918 norm=34.219877 +1407634.552014 1312682.552014 norm=33.331667 +1407662.622891 1308371.622891 norm=33.436507 +1407649.368137 1312886.368137 norm=34.132096 +1407648.885464 1314829.885464 norm=33.600595 +1407645.187202 1312126.187202 norm=33.852622 +1407664.272130 1311665.272130 norm=33.674916 +1407672.235825 1313301.235825 norm=32.695565 +1407684.437548 1313773.437548 norm=34.102786 +1407664.324541 1313417.324541 norm=33.196385 +1407694.913560 1315539.913560 norm=33.301652 +1407684.697031 1311581.697031 norm=34.698703 +1407652.575304 1313460.575304 norm=34.102786 +1407695.398230 1309600.398230 norm=33.376639 +1407688.696627 1318895.696627 norm=34.132096 +1407688.261056 1307094.261056 norm=33.941125 +1407702.127342 1309951.127342 norm=34.219877 +1407696.406599 1308178.406599 norm=34.249088 +1407696.714701 1314981.714701 norm=33.570821 +1407707.837146 1311043.837146 norm=33.600595 +1407716.614195 1310517.614195 norm=33.406586 +1407737.132308 1310699.132308 norm=33.181320 +1407711.573557 1314126.573557 norm=34.899857 +1407708.617653 1307534.617653 norm=33.645208 +1407743.414304 1313222.414304 norm=33.136083 +1407742.194190 1313754.194190 norm=33.301652 +1407755.255372 1314172.255372 norm=33.090784 +1407755.920381 1307967.920381 norm=32.924155 +1407758.798734 1315568.798734 norm=33.778692 +1407744.224926 1311757.224926 norm=33.466401 +1407759.994656 1308144.994656 norm=33.496268 +1407748.757486 1317662.757486 norm=34.176015 +1407771.810726 1311572.810726 norm=34.029399 +1407748.872211 1319776.872211 norm=34.058773 +1407761.861382 1308699.861382 norm=33.837849 +1407759.333891 1315057.333891 norm=34.698703 +1407765.668264 1308446.668264 norm=34.249088 +1407751.249303 1312238.249303 norm=33.867388 +1407802.483463 1310419.483463 norm=33.151169 +1407784.575150 1319479.575150 norm=33.391616 +1407799.171367 1312543.171367 norm=33.075671 +1407807.844295 1312445.844295 norm=33.955854 +1407793.289296 1313221.289296 norm=34.176015 +1407796.907889 1313894.907889 norm=34.626579 +1407788.240282 1316679.240282 norm=34.088121 +1407807.655149 1309382.655149 norm=33.704599 +1407821.477351 1318025.477351 norm=33.181320 +1407839.985180 1309501.985180 norm=34.292856 +1407803.632322 1314630.632322 norm=33.778692 +1407828.654689 1308760.654689 norm=33.526109 +1407840.657493 1313827.657493 norm=33.823069 +1407830.369150 1311696.369150 norm=34.351128 +1407819.062224 1310518.062224 norm=33.941125 +1407838.191943 1314283.191943 norm=32.710854 +1407866.833024 1314342.833024 norm=33.704599 +1407828.478210 1315126.478210 norm=34.176015 +1407864.842587 1309769.842587 norm=32.649655 +1407854.448176 1308183.448176 norm=33.867388 +1407865.594710 1313574.594710 norm=33.436507 +1407869.229111 1313180.229111 norm=33.075671 +1407872.502456 1313053.502456 norm=33.867388 +1407863.017338 1316374.017338 norm=34.785054 +1407864.632639 1314997.632639 norm=34.394767 +1407870.169116 1311544.169116 norm=33.926391 +1407879.634449 1313739.634449 norm=34.117444 +1407879.561465 1312710.561465 norm=33.331667 +1407897.951331 1311685.951331 norm=34.117444 +1407865.095800 1316185.095800 norm=35.327043 +1407879.981155 1310489.981155 norm=33.882149 +1407893.921498 1315013.921498 norm=34.957117 +1407879.272402 1312667.272402 norm=33.466401 +1407914.461960 1312909.461960 norm=33.867388 +1407911.931752 1310731.931752 norm=33.926391 +1407913.128503 1312792.128503 norm=33.196385 +1407940.320692 1312448.320692 norm=32.171416 +1407945.261298 1313275.261298 norm=33.719431 +1407923.182503 1307655.182503 norm=33.406586 +1407930.905448 1317993.905448 norm=33.526109 +1407937.934665 1310911.934665 norm=33.421550 +1407944.661035 1313634.661035 norm=34.307434 +1407936.756793 1314802.756793 norm=33.896903 +1407944.516647 1316873.516647 norm=33.570821 +1407962.570908 1311971.570908 norm=33.808283 +1407956.683725 1312050.683725 norm=33.226495 +1407972.040839 1313397.040839 norm=33.778692 +1407966.726783 1312691.726783 norm=33.166248 +1407970.891969 1314145.891969 norm=34.044089 +1407963.194017 1313690.194017 norm=32.434549 +1407995.545733 1307296.545733 norm=32.984845 +1407985.110079 1318344.110079 norm=33.689761 +1407999.265177 1309748.265177 norm=32.832910 +1407983.694275 1314943.694275 norm=33.704599 +1408003.669389 1310146.669389 norm=34.365681 +1407985.108060 1311970.108060 norm=34.219877 +1407991.165816 1313126.165816 norm=33.926391 +1407994.243039 1313956.243039 norm=33.090784 +1408013.196277 1315813.196277 norm=33.970576 +1408004.994082 1312205.994082 norm=33.226495 +1408030.702352 1310175.702352 norm=33.541020 +1408024.837925 1313172.837925 norm=33.734256 +1408015.871861 1309771.871861 norm=32.954514 +1408046.240863 1317042.240863 norm=33.451457 +1408015.693578 1314763.693578 norm=33.645208 +1408046.325930 1310950.325930 norm=33.331667 +1408025.175845 1316974.175845 norm=34.234486 +1408045.301853 1310230.301853 norm=32.695565 +1408074.341947 1314704.341947 norm=33.271610 +1408047.390053 1313572.390053 norm=33.704599 +1408040.384431 1317866.384431 norm=34.684290 +1408039.386557 1313297.386557 norm=34.073450 +1408054.122347 1311556.122347 norm=33.060551 +1408062.100408 1319501.100408 norm=34.102786 +1408068.876671 1307036.876671 norm=33.526109 +1408062.371370 1319195.371370 norm=33.793490 +1408080.288250 1308472.288250 norm=32.756679 +1408078.836549 1315192.836549 norm=34.481879 +1408060.294261 1314967.294261 norm=34.583233 +1408065.473583 1310086.473583 norm=34.467376 +1408083.325609 1319575.325609 norm=34.132096 +1408085.083232 1315735.083232 norm=34.481879 +1408087.729139 1314128.729139 norm=33.749074 +1408092.643691 1314162.643691 norm=34.307434 +1408101.691703 1314736.691703 norm=33.090784 +1408117.448275 1307403.448275 norm=33.241540 +1408115.078076 1317021.078076 norm=32.588341 +1408120.908617 1310978.908617 norm=33.045423 +1408128.546210 1316015.546210 norm=32.939338 +1408134.749303 1307764.749303 norm=33.734256 +1408112.883163 1310827.883163 norm=34.102786 +1408150.244276 1312325.244276 norm=33.181320 +1408143.919792 1317808.919792 norm=34.263683 +1408124.790634 1309611.790634 norm=34.014703 +1408137.421183 1305544.421183 norm=34.146742 +1408146.186190 1320885.186190 norm=33.660065 +1408143.536626 1311196.536626 norm=32.832910 +1408181.859976 1311210.859976 norm=34.423829 +1408136.692248 1314419.692248 norm=34.205263 +1408145.595508 1312363.595508 norm=33.970576 +1408167.355527 1311015.355527 norm=33.615473 +1408152.327645 1314525.327645 norm=33.823069 +1408174.019567 1311423.019567 norm=33.511192 +1408179.771894 1310999.771894 norm=34.365681 +1408171.270611 1309225.270611 norm=33.555923 +1408165.643919 1314739.643919 norm=34.029399 +1408182.689051 1311687.689051 norm=33.271610 +1408208.521398 1313021.521398 norm=34.219877 +1408187.597914 1319863.597914 norm=32.572995 +1408213.716073 1311108.716073 norm=33.689761 +1408204.945768 1311121.945768 norm=34.249088 +1408176.286135 1316140.286135 norm=34.510868 +1408210.224311 1307702.224311 norm=33.406586 +1408205.979503 1313376.979503 norm=33.630343 +1408218.699271 1312174.699271 norm=33.823069 +1408234.377264 1315501.377264 norm=32.954514 +1408240.853354 1314766.853354 norm=33.211444 +1408233.038825 1314158.038825 norm=33.867388 +1408224.615044 1312831.615044 norm=33.316662 +1408250.139390 1312194.139390 norm=32.878564 +1408255.170976 1311890.170976 norm=33.808283 +1408243.513619 1310404.513619 norm=34.249088 +1408245.453892 1314992.453892 norm=33.511192 +1408255.384719 1309367.384719 norm=34.132096 +1408246.848257 1317794.848257 norm=34.190642 +1408241.610926 1310302.610926 norm=34.058773 +1408275.994544 1310012.994544 norm=32.264532 +1408290.761304 1313426.761304 norm=33.256578 +1408279.706976 1319015.706976 norm=33.555923 +1408242.907936 1312602.907936 norm=34.102786 +1408284.878431 1311712.878431 norm=32.878564 +1408287.890513 1317930.890513 norm=33.075671 +1408279.326287 1314729.326287 norm=34.957117 +1408279.184448 1311313.184448 norm=33.734256 +1408294.105563 1313554.105563 norm=34.219877 +1408275.471934 1315009.471934 norm=34.856850 +1408291.217690 1311814.217690 norm=33.778692 +1408300.862622 1321428.862622 norm=34.698703 +1408285.574122 1312075.574122 norm=33.941125 +1408326.204128 1312350.204128 norm=33.136083 +1408333.855392 1312347.855392 norm=32.233523 +1408330.414697 1316367.414697 norm=33.000000 +1408333.365138 1313938.365138 norm=33.181320 +1408343.074132 1313041.074132 norm=33.466401 +1408340.263646 1314233.263646 norm=33.316662 +1408344.048387 1314958.048387 norm=33.090784 +1408337.438209 1310400.438209 norm=34.641016 +1408336.076273 1310790.076273 norm=32.619013 +1408359.069928 1314527.069928 norm=33.660065 +1408330.237962 1310468.237962 norm=33.376639 +1408367.483717 1317301.483717 norm=34.044089 +1408343.404211 1314553.404211 norm=33.391616 +1408377.232073 1313866.232073 norm=33.060551 +1408371.097105 1313169.097105 norm=33.090784 +1408363.987651 1313115.987651 norm=33.704599 +1408374.253212 1313189.253212 norm=33.645208 +1408388.260401 1320177.260401 norm=33.808283 +1408375.498720 1311277.498720 norm=33.941125 +1408391.945967 1312034.945967 norm=33.526109 +1408365.327642 1310090.327642 norm=34.510868 +1408389.519859 1311380.519859 norm=34.452866 +1408386.695013 1309512.695013 norm=33.226495 +1408416.979796 1315613.979796 norm=33.541020 +1408407.309381 1309311.309381 norm=34.219877 +1408402.873861 1312497.873861 norm=33.837849 +1408410.040214 1309379.040214 norm=34.190642 +1408389.956626 1312647.956626 norm=34.971417 +1408416.171883 1314464.171883 norm=33.793490 +1408408.132375 1314095.132375 norm=33.120990 +1408446.434502 1314300.434502 norm=32.802439 +1408432.544079 1312449.544079 norm=33.749074 +1408441.696771 1313319.696771 norm=33.867388 +1408418.849768 1313904.849768 norm=34.000000 +1408461.221041 1313150.221041 norm=32.741411 +1408452.467308 1319290.467308 norm=33.630343 +1408454.702870 1308833.702870 norm=32.848135 +1408465.115334 1310699.115334 norm=32.341923 +1408477.059400 1313794.059400 norm=32.939338 +1408456.867281 1318962.867281 norm=34.088121 +1408460.086073 1312073.086073 norm=33.778692 +1408462.042564 1309052.042564 norm=33.466401 +1408471.830928 1312811.830928 norm=33.570821 +1408477.478505 1313819.478505 norm=34.234486 +1408469.426059 1313339.426059 norm=34.727511 +1408463.876585 1312970.876585 norm=34.942810 +1408464.611475 1316423.611475 norm=34.044089 +1408496.373524 1310717.373524 norm=34.058773 +1408497.093666 1322681.093666 norm=33.181320 +1408509.788286 1312554.788286 norm=33.060551 +1408516.440039 1310761.440039 norm=34.496377 +1408473.657301 1321148.657301 norm=34.014703 +1408518.909666 1319711.909666 norm=32.924155 +1408524.385627 1308723.385627 norm=33.466401 +1408529.889376 1309356.889376 norm=32.802439 +1408540.345730 1314075.345730 norm=33.808283 +1408524.239834 1315694.239834 norm=33.015148 +1408538.314300 1307702.314300 norm=33.286634 +1408521.034030 1315219.034030 norm=33.481338 +1408555.268134 1314635.268134 norm=32.893768 +1408559.564823 1311757.564823 norm=33.105891 +1408555.521822 1309251.521822 norm=32.787193 +1408553.438780 1314484.438780 norm=33.151169 +1408545.141756 1312060.141756 norm=33.630343 +1408556.237005 1312652.237005 norm=33.120990 +1408571.145875 1311333.145875 norm=33.316662 +1408565.685358 1313658.685358 norm=33.105891 +1408566.326109 1314435.326109 norm=33.926391 +1408558.164725 1312827.164725 norm=33.867388 +1408579.994448 1317050.994448 norm=33.316662 +1408585.729576 1310036.729576 norm=33.882149 +1408574.395749 1314942.395749 norm=33.793490 +1408588.288902 1317585.288902 norm=33.660065 +1408588.037370 1313849.037369 norm=34.669872 +1408573.275743 1311828.275743 norm=34.813790 +1408580.585544 1315035.585544 norm=34.176015 +1408604.899043 1312449.899043 norm=33.645208 +1408612.753574 1316311.753574 norm=32.741411 +1408627.093572 1313264.093572 norm=32.603681 +1408615.277947 1309996.277947 norm=33.555923 +1408628.303814 1311317.303814 norm=33.660065 +1408606.361777 1312576.361777 norm=33.466401 +1408631.623724 1307450.623724 norm=33.211444 +1408634.370276 1316660.370276 norm=33.481338 +1408623.644718 1310210.644718 norm=34.322005 +1408631.113468 1311191.113468 norm=34.278273 +1408627.912577 1318595.912577 norm=33.391616 +1408638.359575 1312315.359575 norm=33.196385 +1408660.452923 1317728.452923 norm=33.256578 +1408661.460075 1311349.460075 norm=33.120990 +1408653.071223 1318429.071223 norm=33.256578 +1408666.107249 1312775.107249 norm=33.015148 +1408673.670857 1311146.670857 norm=32.863353 +1408677.723922 1315312.723922 norm=33.466401 +1408666.628858 1313940.628858 norm=33.570821 +1408679.032100 1315070.032100 norm=33.481338 +1408685.148112 1308319.148112 norm=33.226495 +1408700.635745 1310008.635745 norm=33.346664 +1408678.413249 1315633.413249 norm=34.568772 +1408693.072326 1307751.072326 norm=33.241540 +1408683.966810 1319455.966810 norm=34.525353 +1408693.344587 1312799.344587 norm=34.000000 +1408691.054558 1310051.054558 norm=34.842503 +1408669.147570 1316486.147570 norm=33.211444 +1408731.044083 1310260.044083 norm=33.331667 +1408708.292374 1313984.292374 norm=33.793490 +1408712.276916 1309934.276916 norm=34.146742 +1408716.753428 1316082.753428 norm=33.466401 +1408730.823441 1313986.823441 norm=33.256578 +1408721.220349 1316091.220349 norm=33.896903 +1408725.950995 1310677.950995 norm=33.481338 +1408743.480479 1309337.480479 norm=33.346664 +1408746.389375 1312708.389375 norm=33.704599 +1408725.024209 1317761.024209 norm=34.102786 +1408749.505467 1313212.505467 norm=34.014703 +1408741.199467 1310718.199467 norm=33.630343 +1408754.673714 1313299.673714 norm=33.615473 +1408752.616060 1315805.616060 norm=33.451457 +1408761.991055 1316211.991055 norm=33.763886 +1408750.962587 1311706.962587 norm=33.793490 +1408772.661286 1315132.661286 norm=32.603681 +1408802.134893 1313242.134893 norm=33.166248 +1408775.676355 1314565.676355 norm=33.674916 +1408771.352397 1312859.352397 norm=34.481879 +1408775.247195 1316292.247195 norm=33.734256 +1408781.850879 1309606.850879 norm=33.689761 +1408794.065635 1311004.065635 norm=33.196385 +1408788.272271 1314072.272271 norm=33.911650 +1408809.705083 1314393.705083 norm=33.645208 +1408804.899234 1311557.899234 norm=33.256578 +1408826.496081 1312881.496081 norm=33.256578 +1408807.640678 1313029.640678 norm=33.481338 +1408820.969085 1311625.969085 norm=34.219877 +1408805.761800 1314032.761800 norm=33.511192 +1408833.204205 1314975.204205 norm=33.316662 +1408831.216039 1304753.216039 norm=33.346664 +1408839.278551 1321047.278551 norm=33.166248 +1408821.145757 1314973.145757 norm=34.510868 +1408807.996850 1316205.996850 norm=33.926391 +1408836.670213 1308692.670213 norm=34.117444 +1408843.267406 1315538.267406 norm=33.361655 +1408848.718546 1314264.718546 norm=34.146742 +1408830.726967 1313078.726967 norm=34.583233 +1408844.553208 1308207.553208 norm=33.689761 +1408874.168801 1312078.168801 norm=33.481338 +1408865.265551 1314030.265551 norm=32.802439 +1408886.844335 1312143.844335 norm=32.863353 +1408877.219960 1309708.219960 norm=32.802439 +1408890.915065 1316242.915065 norm=33.511192 +1408887.021987 1311976.021987 norm=33.674916 +1408865.523083 1314325.523083 norm=33.896903 +1408887.889364 1315445.889364 norm=33.181320 +1408904.925998 1316597.925998 norm=33.361655 +1408893.515109 1315303.515109 norm=33.570821 +1408890.744140 1314996.744140 norm=33.660065 +1408917.155645 1310817.155645 norm=33.030289 +1408900.311323 1317967.311323 norm=33.151169 +1408923.563665 1313839.563665 norm=32.619013 +1408923.994348 1318026.994348 norm=33.823069 +1408910.302914 1309580.302914 norm=33.749074 +1408904.870634 1317473.870634 norm=34.336569 +1408911.674706 1310103.674706 norm=34.438351 +1408913.285049 1319439.285049 norm=34.612137 +1408907.088296 1311994.088296 norm=34.597688 +1408917.285819 1313829.285819 norm=34.000000 +1408942.399673 1317788.399673 norm=33.689761 +1408934.474397 1310969.474397 norm=32.419130 +1408983.085706 1312414.085706 norm=32.511536 +1408951.363604 1314925.363604 norm=33.660065 +1408944.863131 1309891.863131 norm=32.863353 +1408962.589331 1315398.589331 norm=33.391616 +1408966.881753 1312963.881753 norm=33.376639 +1408966.457606 1315989.457606 norm=32.603681 +1408984.121963 1312712.121963 norm=34.423829 +1408939.566812 1319735.566812 norm=34.481879 +1408987.027704 1310322.027704 norm=34.146742 +1408954.938410 1315176.938410 norm=33.867388 +1409003.614469 1314327.614469 norm=33.361655 +1408991.402306 1311401.402306 norm=33.793490 +1408987.379535 1313296.379535 norm=33.301652 +1408998.590765 1310968.590765 norm=33.301652 +1408996.051747 1310813.051747 norm=33.882149 +1409000.707755 1311002.707755 norm=33.316662 +1409017.972303 1318259.972303 norm=32.480764 +1409018.071364 1311065.071364 norm=33.808283 +1409009.461406 1315152.461406 norm=34.146742 +1408998.564552 1314882.564552 norm=34.438351 +1409019.067681 1315419.067681 norm=34.234486 +1409007.248961 1315809.248961 norm=33.926391 +1409033.873821 1310910.873821 norm=33.926391 +1409019.441838 1316521.441838 norm=35.355339 +1409008.334793 1311619.334793 norm=34.044089 +1409032.879506 1317674.879506 norm=34.058773 +1409051.455871 1314835.455871 norm=33.585711 +1409032.319489 1311684.319489 norm=33.911650 +1409068.343533 1311819.343533 norm=32.649655 +1409060.014060 1313298.014060 norm=33.060551 +1409082.759261 1317599.759261 norm=32.771939 +1409041.696707 1317302.696707 norm=34.292856 +1409067.760553 1309867.760553 norm=32.802439 +1409059.964530 1318153.964530 norm=34.088121 +1409076.327457 1308576.327457 norm=33.511192 +1409074.245371 1316918.245371 norm=33.346664 +1409107.623657 1311577.623657 norm=32.140317 +1409110.658468 1313931.658468 norm=32.093613 +1409122.283530 1313411.283530 norm=33.346664 +1409078.935036 1311379.935036 norm=33.970576 +1409106.171582 1310264.171582 norm=33.376639 +1409085.851183 1321159.851183 norm=34.249088 +1409091.089792 1314115.089792 norm=34.146742 +1409107.719913 1309834.719913 norm=34.452866 +1409099.634949 1317931.634949 norm=34.044089 +1409105.122137 1313734.122137 norm=34.073450 +1409098.815790 1312016.815790 norm=34.029399 +1409123.246461 1311822.246461 norm=33.585711 +1409134.658335 1321160.658335 norm=33.570821 +1409121.000511 1314250.000511 norm=33.704599 +1409144.676172 1307729.676172 norm=33.600595 +1409117.020830 1317080.020830 norm=34.799425 +1409117.392291 1314769.392291 norm=34.146742 +1409136.079000 1312858.079000 norm=33.271610 +1409165.517329 1313486.517329 norm=32.848135 +1409150.468020 1313656.468020 norm=34.044089 +1409161.743157 1310357.743157 norm=33.241540 +1409153.682889 1311771.682889 norm=34.205263 +1409158.081068 1312314.081068 norm=34.467376 +1409153.027074 1315109.027074 norm=34.000000 +1409182.908263 1314216.908263 norm=32.893768 +1409197.324368 1313371.324368 norm=33.496268 +1409163.555838 1318190.555838 norm=33.852622 +1409192.031978 1312592.031978 norm=33.526109 +1409174.699662 1318334.699662 norm=33.346664 +1409196.025395 1309271.025395 norm=34.176015 +1409179.467421 1324216.467421 norm=34.117444 +1409198.545769 1314038.545769 norm=34.058773 +1409200.917509 1309129.917509 norm=34.741906 +1409185.774095 1317106.774095 norm=33.704599 +1409200.495385 1316865.495385 norm=33.151169 +1409242.517002 1319532.517002 norm=33.015148 +1409210.917362 1307502.917362 norm=33.421550 +1409238.942517 1310831.942517 norm=33.196385 +1409235.151689 1317255.151689 norm=33.985291 +1409222.568337 1306620.568337 norm=33.585711 +1409221.030989 1317057.030989 norm=33.421550 +1409250.493133 1319369.493133 norm=33.570821 +1409222.313111 1312137.313111 norm=33.749074 +1409241.400832 1316735.400832 norm=32.969683 +1409252.369475 1310033.369475 norm=33.823069 +1409239.653852 1317882.653852 norm=33.451457 +1409258.588003 1312687.588003 norm=33.793490 +1409243.916463 1317247.916463 norm=34.612137 +1409253.275893 1313070.275893 norm=33.867388 +1409264.248316 1312011.248316 norm=33.406586 +1409278.502393 1319185.502393 norm=34.000000 +1409255.207185 1311832.207185 norm=34.365681 +1409269.211826 1312058.211826 norm=34.146742 +1409278.266747 1315844.266747 norm=33.645208 +1409285.681349 1315756.681349 norm=33.808283 +1409274.999592 1314233.999592 norm=34.727511 +1409280.353673 1307550.353673 norm=33.911650 +1409280.917626 1316089.917626 norm=33.734256 +1409293.876818 1310423.876818 norm=33.749074 +1409328.029646 1314959.029646 norm=33.436507 +1409282.178568 1311232.178568 norm=33.867388 +1409302.403808 1310518.403808 norm=34.073450 +1409308.092620 1314611.092620 norm=33.837849 +1409322.827121 1315079.827121 norm=34.058773 +1409295.521927 1311656.521927 norm=34.234486 +1409327.944594 1317391.944594 norm=33.793490 +1409320.725110 1309517.725110 norm=33.763886 +1409328.857606 1318331.857606 norm=33.256578 +1409328.473042 1311670.473042 norm=33.226495 +1409352.291300 1316224.291300 norm=32.603681 +1409352.814285 1312518.814285 norm=34.088121 +1409342.346717 1314130.346717 norm=34.102786 +1409336.018976 1313412.018976 norm=33.196385 +1409349.688879 1315736.688879 norm=33.630343 +1409381.545443 1317513.545443 norm=32.878564 +1409378.521552 1316176.521552 norm=33.391616 +1409351.906454 1314839.906454 norm=33.331667 +1409375.741679 1310157.741679 norm=33.481338 +1409375.703702 1311511.703702 norm=33.271610 +1409374.231105 1310847.231105 norm=34.799425 +1409370.041504 1308052.041504 norm=33.496268 +1409381.420627 1322062.420627 norm=33.793490 +1409379.978964 1309630.978964 norm=33.376639 +1409397.095200 1311722.095200 norm=33.075671 +1409415.654081 1318843.654081 norm=32.710854 +1409404.493516 1309400.493516 norm=33.181320 +1409414.793169 1319368.793169 norm=33.075671 +1409413.886825 1309021.886825 norm=32.802439 +1409423.891151 1318560.891151 norm=33.181320 +1409415.891784 1313983.891784 norm=33.808283 +1409416.360927 1319986.360927 norm=34.102786 +1409408.414766 1313675.414766 norm=34.741906 +1409399.097107 1317935.097107 norm=34.307434 +1409436.997033 1312653.997033 norm=34.234486 +1409434.234344 1320065.234344 norm=34.176015 +1409414.876548 1313587.876548 norm=34.278273 +1409428.495333 1310640.495333 norm=33.451457 +1409442.554546 1313281.554546 norm=33.985291 +1409424.766982 1314951.766982 norm=33.823069 +1409462.692681 1311697.692681 norm=34.278273 +1409451.453647 1316485.453647 norm=33.015148 +1409470.353855 1311918.353855 norm=32.802439 +1409490.545946 1319334.545946 norm=32.264532 +1409495.279551 1312994.279551 norm=33.361655 +1409472.382088 1315379.382088 norm=33.256578 +1409493.669094 1315893.669094 norm=32.954514 +1409492.588625 1313589.588625 norm=33.645208 +1409480.414541 1318959.414541 norm=33.896903 +1409478.217200 1313193.217200 norm=34.365681 +1409467.483121 1315338.483121 norm=34.117444 +1409497.356302 1315695.356302 norm=33.000000 +1409502.480247 1310040.480247 norm=32.741411 +1409519.721794 1312574.721794 norm=33.045423 +1409516.128242 1314992.128242 norm=33.271610 +1409511.584133 1316199.584133 norm=33.674916 +1409514.010963 1321612.010963 norm=33.570821 +1409515.026953 1313364.026953 norm=33.541020 +1409523.617977 1316674.617977 norm=32.848135 +1409525.843336 1316391.843336 norm=34.117444 +1409518.859653 1312506.859653 norm=34.088121 +1409517.569121 1311023.569121 norm=33.808283 +1409530.788836 1317882.788836 norm=33.541020 +1409546.641483 1313002.641483 norm=32.969683 +1409559.587165 1315513.587165 norm=33.196385 +1409567.242964 1308429.242964 norm=32.969683 +1409529.416553 1314259.416553 norm=34.014703 +1409534.745383 1313103.745383 norm=33.136083 +1409582.691566 1312609.691566 norm=33.674916 +1409554.619530 1319122.619530 norm=33.941125 +1409575.102135 1316921.102135 norm=33.674916 +1409560.179027 1320498.179027 norm=33.451457 +1409577.096052 1309605.096052 norm=32.848135 +1409588.022947 1307656.022947 norm=32.280025 +1409595.177971 1310643.177971 norm=33.481338 +1409590.059066 1314302.059066 norm=32.908965 +1409595.658500 1310427.658500 norm=33.391616 +1409606.579520 1315756.579520 norm=32.480764 +1409604.160645 1314978.160645 norm=33.271610 +1409604.044518 1316981.044518 norm=32.969683 +1409602.646274 1309596.646274 norm=34.394767 +1409609.900889 1314687.900889 norm=34.014703 +1409598.603260 1319073.603260 norm=33.719431 +1409636.886237 1316212.886237 norm=33.704599 +1409607.062053 1318063.062053 norm=33.391616 +1409636.912999 1316341.912999 norm=34.058773 +1409600.840233 1316279.840233 norm=33.911650 +1409638.066819 1316065.066819 norm=33.719431 +1409634.594584 1318410.594584 norm=33.674916 +1409639.953239 1315273.953239 norm=34.278273 +1409615.019849 1311853.019849 norm=33.955854 +1409628.561852 1316451.561852 norm=34.322005 +1409636.551049 1311043.551049 norm=35.057096 +1409616.522973 1315906.522973 norm=34.914181 +1409641.963339 1315308.963339 norm=33.481338 +1409668.328717 1314540.328717 norm=32.280025 +1409676.615767 1314407.615767 norm=33.211444 +1409668.159734 1315642.159734 norm=32.878564 +1409678.754641 1317691.754641 norm=32.939338 +1409688.888665 1310551.888665 norm=33.211444 +1409670.394178 1315831.394178 norm=34.234486 +1409675.095836 1312033.095836 norm=34.117444 +1409675.467573 1317959.467573 norm=33.211444 +1409690.466410 1315456.466410 norm=34.496377 +1409681.732738 1319168.732738 norm=33.719431 +1409686.306645 1313677.306645 norm=34.044089 +1409692.144125 1314571.144125 norm=34.583233 +1409687.625359 1317154.625359 norm=34.234486 +1409694.216020 1318252.216020 norm=33.882149 +1409701.625177 1313331.625177 norm=34.510868 +1409707.696785 1320514.696785 norm=34.044089 +1409698.621844 1310341.621844 norm=34.219877 +1409727.010375 1311385.010375 norm=33.181320 +1409715.557954 1319719.557954 norm=34.088121 +1409718.715608 1313502.715608 norm=33.451457 +1409750.128822 1316462.128822 norm=33.376639 +1409725.468179 1311652.468179 norm=33.645208 +1409736.449224 1314757.449224 norm=34.029399 +1409725.707266 1316321.707266 norm=34.073450 +1409737.586521 1316467.586521 norm=32.924155 +1409777.559360 1324338.559360 norm=32.619013 +1409763.724399 1315026.724399 norm=32.109189 +1409783.083645 1317337.083645 norm=33.793490 +1409743.698397 1318771.698397 norm=33.105891 +1409789.256918 1311517.256918 norm=32.817678 +1409768.115979 1317931.115979 norm=32.908965 +1409782.291783 1321947.291783 norm=34.525353 +1409749.889490 1315935.889490 norm=33.941125 +1409772.965238 1316702.965238 norm=33.000000 +1409785.027073 1324418.027073 norm=33.316662 +1409789.987704 1314818.987704 norm=34.307434 +1409785.317861 1318583.317861 norm=33.882149 +1409797.202692 1315779.202692 norm=33.926391 +1409776.218333 1317475.218333 norm=34.438351 +1409792.940749 1320475.940749 norm=33.615473 +1409783.640151 1318032.640151 norm=33.585711 +1409825.472628 1311331.472628 norm=33.015148 +1409816.762053 1317842.762053 norm=33.645208 +1409809.420077 1317483.420077 norm=33.793490 +1409800.732983 1318491.732983 norm=34.102786 +1409815.224993 1316284.224993 norm=33.526109 +1409826.084948 1316164.084948 norm=34.088121 +1409804.469271 1320967.469271 norm=34.190642 +1409829.662205 1314838.662205 norm=33.570821 +1409847.187070 1318331.187070 norm=32.511536 +1409851.630514 1314979.630514 norm=33.166248 +1409838.543921 1319260.543921 norm=33.555923 +1409838.598917 1316884.598917 norm=33.526109 +1409853.259689 1318522.259689 norm=33.436507 +1409845.006186 1318056.006186 norm=34.626579 +1409833.396579 1317864.396579 norm=34.409301 +1409848.593400 1320074.593400 norm=34.176015 +1409849.670644 1320448.670644 norm=33.090784 +1409885.248159 1317344.248159 norm=33.808283 +1409859.680294 1320864.680294 norm=33.823069 +1409858.731928 1318227.731928 norm=34.885527 +1409862.774446 1314903.774446 norm=33.211444 +1409896.156294 1316882.156294 norm=32.496154 +1409883.751939 1316920.751939 norm=34.727511 +1409872.171599 1318094.171599 norm=33.896903 +1409901.049262 1316602.049262 norm=33.926391 +1409881.271197 1315511.271197 norm=33.852622 +1409905.241477 1319158.241477 norm=33.660065 +1409908.604407 1317676.604407 norm=33.451457 +1409913.202298 1316340.202298 norm=33.120990 +1409910.413869 1321618.413869 norm=33.793490 +1409916.658998 1316228.658998 norm=32.434549 +1409943.880210 1323293.880210 norm=32.848135 +1409929.053148 1318247.053148 norm=33.570821 +1409934.117846 1315089.117846 norm=33.496268 +1409917.836725 1318533.836725 norm=34.058773 +1409926.529113 1319193.529113 norm=33.466401 +1409933.659668 1320724.659668 norm=33.896903 +1409931.206091 1317144.206091 norm=34.510868 +1409924.716391 1318543.716391 norm=34.205263 +1409943.634725 1312497.634725 norm=33.406586 +1409952.930616 1319921.930616 norm=33.689761 +1409937.524608 1314781.524608 norm=34.423829 +1409949.042061 1322413.042061 norm=33.120990 +1409966.056510 1316591.056510 norm=32.449961 +1409980.963012 1318538.963012 norm=33.151169 +1409981.170599 1315716.170599 norm=32.710854 +1409985.171190 1321312.171190 norm=32.680269 +1410002.748312 1316169.748312 norm=31.937439 +1410014.780482 1324013.780482 norm=32.603681 +1409979.082024 1312873.082024 norm=32.984845 +1409989.038724 1326503.038724 norm=32.908965 +1409997.651653 1315322.651653 norm=33.436507 +1409991.989186 1318691.989186 norm=33.406586 +1409982.748998 1320890.748998 norm=34.322005 +1409995.128315 1317371.128315 norm=33.704599 +1409987.830827 1317322.830827 norm=33.734256 +1410011.241111 1314078.241111 norm=33.105891 +1410013.694227 1317646.694227 norm=32.908965 +1410027.570578 1324945.570578 norm=33.090784 +1410034.606074 1317433.606074 norm=32.526912 +1410033.713397 1316279.713397 norm=33.689761 +1410014.329784 1319148.329784 norm=33.955854 +1410024.162774 1322548.162774 norm=34.088121 +1410028.382785 1313351.382785 norm=33.867388 +1410034.701512 1316711.701512 norm=34.102786 +1410024.756106 1318773.756106 norm=34.190642 +1410030.146989 1316038.146989 norm=33.660065 +1410047.729985 1313899.729985 norm=32.984845 +1410064.033878 1319807.033878 norm=33.015148 +1410053.715937 1312910.715937 norm=33.376639 +1410060.014781 1316947.014781 norm=33.763886 +1410059.723242 1313524.723242 norm=33.286634 +1410072.461134 1323814.461134 norm=33.645208 +1410077.474846 1310237.474846 norm=32.372828 +1410072.018611 1321687.018611 norm=32.403703 +1410091.739248 1312523.739248 norm=32.802439 +1410106.215820 1317140.215820 norm=33.436507 +1410072.430150 1323609.430150 norm=34.842503 +1410071.758774 1317253.758774 norm=32.893768 +1410085.617242 1321865.617242 norm=33.778692 +1410089.480590 1315126.480590 norm=34.626579 +1410073.452052 1317042.452052 norm=33.778692 +1410092.649970 1316295.649970 norm=33.630343 +1410096.940354 1323380.940354 norm=33.674916 +1410115.789297 1318511.789297 norm=33.793490 +1410095.022697 1317255.022697 norm=33.763886 +1410120.334377 1317623.334377 norm=33.749074 +1410125.889139 1318452.889139 norm=32.726136 +1410119.055005 1321832.055005 norm=33.867388 +1410114.630994 1317792.630994 norm=34.132096 +1410130.689854 1321693.689854 norm=34.525353 +1410127.267669 1317542.267669 norm=33.734256 +1410149.455159 1316337.455159 norm=33.496268 +1410136.576522 1319211.576522 norm=33.015148 +1410152.814633 1314591.814633 norm=34.058773 +1410139.315281 1321560.315281 norm=33.406586 +1410156.318784 1317007.318784 norm=33.941125 +1410140.216432 1314639.216432 norm=33.060551 +1410177.907198 1322970.907198 norm=32.155870 +1410168.044297 1316926.044297 norm=33.196385 +1410166.118547 1317402.118547 norm=34.525353 +1410140.344124 1318907.344124 norm=34.438351 +1410162.128571 1315612.128571 norm=34.554305 +1410144.291230 1318510.291230 norm=33.808283 +1410203.205344 1319943.205344 norm=33.585711 +1410169.493539 1314731.493539 norm=34.741906 +1410158.980663 1318421.980663 norm=33.570821 +1410201.131194 1321114.131194 norm=32.878564 +1410206.234686 1312452.234686 norm=33.451457 +1410184.542789 1321506.542789 norm=34.088121 +1410187.294223 1313496.294223 norm=34.655447 +1410188.539303 1323346.539303 norm=34.058773 +1410193.160535 1312730.160535 norm=33.689761 +1410209.757146 1317070.757146 norm=32.863353 +1410233.553313 1315679.553313 norm=32.664966 +1410232.401235 1321488.401235 norm=33.793490 +1410208.257534 1316290.257534 norm=34.539832 +1410201.944707 1319961.944707 norm=33.211444 +1410247.277649 1316256.277649 norm=33.316662 +1410223.142660 1322032.142660 norm=33.000000 +1410255.884131 1317577.884131 norm=33.090784 +1410233.025921 1319621.025921 norm=34.190642 +1410236.626924 1315907.626924 norm=33.120990 +1410255.624400 1323080.624400 norm=32.680269 +1410253.463296 1316766.463296 norm=33.301652 +1410258.623470 1321648.623470 norm=33.075671 +1410270.721885 1314140.721885 norm=32.832910 +1410266.611360 1323553.611360 norm=32.878564 +1410288.492699 1320844.492699 norm=32.863353 +1410291.752673 1314282.752673 norm=32.496154 +1410287.799962 1317582.799962 norm=33.778692 +1410264.687569 1316061.687569 norm=33.241540 +1410289.990650 1314392.990650 norm=32.771939 +1410299.458741 1316979.458741 norm=33.882149 +1410279.096905 1316552.096905 norm=34.365681 +1410273.607573 1319672.607573 norm=34.741906 +1410271.197000 1311142.197000 norm=34.102786 +1410285.958995 1317694.958995 norm=33.645208 +1410319.518163 1316812.518163 norm=32.771939 +1410318.743937 1316740.743937 norm=32.969683 +1410323.906188 1318895.906188 norm=32.817678 +1410307.293065 1319573.293065 norm=33.301652 +1410326.901223 1316797.901223 norm=33.361655 +1410326.664766 1318500.664766 norm=33.555923 +1410319.864330 1317729.864330 norm=33.749074 +1410316.848495 1317584.848495 norm=33.585711 +1410332.119877 1322824.119877 norm=33.926391 +1410312.240563 1316768.240563 norm=33.734256 +1410336.657611 1320324.657611 norm=33.090784 +1410352.675358 1316691.675358 norm=33.241540 +1410333.462309 1320158.462309 norm=33.600595 +1410343.650422 1319740.650422 norm=33.674916 +1410355.791674 1320304.791674 norm=33.376639 +1410352.710031 1318690.710031 norm=33.286634 +1410377.444381 1320126.444381 norm=33.286634 +1410350.116521 1319692.116521 norm=34.481879 +1410355.811807 1320452.811807 norm=35.099858 +1410331.680628 1316688.680628 norm=34.813790 +1410346.217415 1316742.217415 norm=35.369478 +1410350.418919 1319446.418919 norm=35.242020 +1410347.850137 1317485.850137 norm=34.278273 +1410354.981314 1321324.981314 norm=33.823069 +1410402.042065 1318959.042065 norm=32.542280 +1410397.020021 1318884.020021 norm=33.256578 +1410396.416845 1314758.416845 norm=33.391616 +1410397.584289 1320314.584289 norm=33.331667 +1410415.899171 1318823.899171 norm=33.376639 +1410387.349938 1320977.349938 norm=34.190642 +1410407.681959 1314958.681959 norm=33.526109 +1410403.618267 1317694.618267 norm=33.376639 +1410415.517939 1319271.517939 norm=32.680269 +1410437.534939 1315475.534939 norm=32.756679 +1410437.578989 1321804.578989 norm=33.015148 +1410427.641777 1316425.641777 norm=33.481338 +1410423.504521 1318897.504521 norm=33.030289 +1410442.013079 1317338.013079 norm=34.117444 +1410424.228536 1315270.228536 norm=34.322005 +1410431.064395 1318311.064395 norm=34.322005 +1410416.429423 1316691.429423 norm=33.778692 +1410451.601403 1321567.601403 norm=33.120990 +1410470.775297 1316994.775297 norm=33.045423 +1410456.843288 1321715.843288 norm=33.466401 +1410463.166372 1320295.166372 norm=33.376639 +1410473.160632 1316302.160632 norm=33.955854 +1410455.620920 1318292.620920 norm=33.778692 +1410478.716468 1317314.716468 norm=33.105891 +1410466.277004 1318773.277004 norm=33.555923 +1410479.022655 1314685.022655 norm=33.763886 +1410477.623185 1315875.623185 norm=32.680269 +1410495.420881 1317416.420881 norm=32.511536 +1410496.548210 1318754.548210 norm=33.151169 +1410502.352916 1320357.352916 norm=33.734256 +1410480.424843 1313185.424843 norm=33.645208 +1410485.734773 1319509.734773 norm=34.394767 +1410490.661271 1320504.661271 norm=33.896903 +1410499.979588 1319443.979588 norm=33.526109 +1410504.588766 1317090.588766 norm=33.526109 +1410528.787532 1323087.787532 norm=33.421550 +1410503.509672 1321414.509672 norm=34.249088 +1410511.094702 1317586.094702 norm=33.391616 +1410522.822342 1319294.822342 norm=33.674916 +1410524.558711 1319507.558711 norm=33.451457 +1410538.395523 1318525.395523 norm=32.924155 +1410534.276743 1313435.276743 norm=32.908965 +1410547.795841 1318696.795841 norm=32.634338 +1410551.448282 1317587.448282 norm=33.286634 +1410536.333968 1316094.333968 norm=33.120990 +1410557.333828 1317165.333828 norm=33.226495 +1410563.176575 1318194.176575 norm=33.226495 +1410552.725140 1319668.725140 norm=34.481879 +1410541.725686 1315500.725686 norm=33.451457 +1410559.418460 1318665.418460 norm=33.689761 +1410558.536357 1323459.536357 norm=33.421550 +1410563.858049 1315700.858049 norm=32.939338 +1410568.426926 1318672.426926 norm=33.719431 +1410584.630780 1315384.630780 norm=33.030289 +1410576.347031 1320989.347031 norm=32.863353 +1410595.817635 1319040.817635 norm=33.911650 +1410569.473910 1318747.473910 norm=33.778692 +1410581.204841 1317189.204841 norm=34.928498 +1410548.510250 1317377.510250 norm=33.837849 +1410603.756523 1317071.756523 norm=34.073450 +1410588.395448 1314419.395448 norm=33.941125 +1410586.601825 1320236.601825 norm=33.793490 +1410611.948613 1314388.948613 norm=34.058773 +1410595.958931 1317809.958931 norm=33.436507 +1410608.694320 1312505.694320 norm=34.014703 +1410622.325309 1323768.325309 norm=33.719431 +1410623.134432 1315700.134432 norm=33.570821 +1410622.188852 1316045.188852 norm=33.496268 +1410629.596280 1312122.596280 norm=34.146742 +1410622.225272 1319608.225272 norm=34.626579 +1410602.437636 1321387.437636 norm=34.249088 +1410647.913056 1318468.913056 norm=33.660065 +1410639.146546 1318837.146546 norm=33.778692 +1410637.109598 1313442.109598 norm=33.970576 +1410642.705093 1320751.705093 norm=33.645208 +1410645.197119 1319302.197119 norm=32.893768 +1410685.648617 1321544.648617 norm=33.585711 +1410640.521647 1323419.521647 norm=33.749074 +1410658.486645 1320188.486645 norm=33.406586 +1410660.978746 1323594.978746 norm=33.466401 +1410656.931608 1319873.931608 norm=33.436507 +1410686.919449 1321638.919449 norm=32.924155 +1410676.280992 1318659.280992 norm=33.226495 +1410683.010243 1320681.010243 norm=33.645208 +1410677.857676 1316233.857676 norm=33.376639 +1410695.976260 1321025.976260 norm=33.570821 +1410684.118577 1316778.118577 norm=34.481879 +1410667.399833 1320483.399833 norm=33.615473 +1410708.469633 1315741.469633 norm=33.166248 +1410712.696871 1320920.696871 norm=34.496377 +1410690.745833 1314494.745833 norm=33.808283 +1410715.827581 1318469.827581 norm=34.219877 +1410698.415401 1321934.415401 norm=34.219877 +1410705.139600 1317055.139600 norm=33.808283 +1410730.326476 1322152.326476 norm=33.166248 +1410717.145823 1316779.145823 norm=33.331667 +1410735.473673 1318468.473673 norm=34.205263 +1410717.914396 1316816.914396 norm=34.612137 +1410724.826949 1316373.826949 norm=33.526109 +1410746.646418 1316326.646418 norm=33.136083 +1410738.161975 1315962.161975 norm=33.226495 +1410753.629788 1315725.629788 norm=33.630343 +1410736.486439 1319959.486439 norm=33.060551 +1410779.704159 1315109.704159 norm=32.588341 +1410762.093054 1321794.093054 norm=33.226495 +1410765.439616 1316436.439616 norm=33.555923 +1410759.921799 1321617.921799 norm=33.719431 +1410772.148476 1318489.148476 norm=33.600595 +1410770.406684 1319313.406684 norm=33.286634 +1410776.634937 1320928.634937 norm=33.316662 +1410772.539844 1320558.539844 norm=34.132096 +1410769.616928 1316406.616928 norm=34.756294 +1410764.263063 1323749.263063 norm=32.893768 +1410812.374902 1314460.374902 norm=33.421550 +1410782.979801 1324703.979801 norm=33.451457 +1410824.485312 1317933.485312 norm=33.719431 +1410762.623657 1320136.623657 norm=33.823069 +1410808.138769 1318666.138769 norm=32.908965 +1410829.963758 1317550.963758 norm=33.120990 +1410791.337647 1316143.337647 norm=34.539832 +1410795.817409 1317181.817409 norm=33.481338 +1410833.473212 1318822.473212 norm=33.090784 +1410802.368248 1321311.368248 norm=32.802439 +1410871.360317 1316160.360317 norm=32.015621 +1410833.892921 1319161.892921 norm=33.421550 +1410836.402300 1319245.402300 norm=33.211444 +1410837.243712 1316782.243712 norm=33.331667 +1410834.785235 1317607.785235 norm=33.481338 +1410836.977223 1322153.977223 norm=33.511192 +1410847.946339 1315813.946339 norm=33.541020 +1410849.222032 1319967.222032 norm=33.060551 +1410864.502381 1321648.502381 norm=34.044089 +1410838.740654 1318846.740654 norm=33.645208 +1410867.487487 1319361.487487 norm=33.600595 +1410865.239563 1322869.239563 norm=34.292856 +1410843.419216 1320034.419216 norm=33.896903 +1410871.040255 1315956.040255 norm=34.510868 +1410868.594083 1315064.594083 norm=34.044089 +1410857.817330 1315050.817330 norm=34.525353 +1410858.620859 1320687.620859 norm=33.585711 +1410891.760561 1318308.760561 norm=32.893768 +1410903.470244 1315400.470244 norm=33.015148 +1410888.938907 1317042.938907 norm=33.060551 +1410908.272312 1318760.272312 norm=33.882149 +1410879.371716 1316292.371716 norm=33.136083 +1410936.272211 1314299.272211 norm=32.664966 +1410894.073139 1322980.073139 norm=33.585711 +1410922.729592 1315463.729592 norm=33.256578 +1410901.043969 1325639.043969 norm=33.541020 +1410930.173859 1314104.173859 norm=33.120990 +1410919.603555 1320546.603555 norm=33.301652 +1410933.838485 1322014.838485 norm=33.226495 +1410926.554872 1317976.554872 norm=33.852622 +1410943.153702 1321819.153702 norm=32.771939 +1410950.235264 1317704.235264 norm=32.465366 +1410960.243775 1317243.243775 norm=32.046841 +1410961.764054 1317648.764054 norm=33.196385 +1410957.932284 1316992.932284 norm=32.710854 +1410960.281765 1317846.281765 norm=33.166248 +1410945.584076 1314041.584076 norm=33.615473 +1410958.046836 1320016.046836 norm=34.073450 +1410964.809218 1316461.809218 norm=33.105891 +1410969.463101 1322757.463101 norm=33.615473 +1410965.961495 1313933.961495 norm=34.452866 +1410953.914568 1320047.914568 norm=33.585711 +1410964.783799 1319723.783799 norm=34.467376 +1410956.885353 1322058.885353 norm=34.219877 +1410988.005359 1322463.005359 norm=33.361655 +1410967.070613 1321388.070613 norm=34.044089 +1410988.131237 1318703.131237 norm=33.689761 +1410985.392722 1317411.392722 norm=34.176015 +1410971.313619 1324762.313619 norm=34.756294 +1410982.246390 1315473.246390 norm=33.660065 +1410995.213349 1320651.213349 norm=34.365681 +1410991.748663 1314506.748663 norm=33.896903 +1410995.459488 1320585.459488 norm=34.263683 +1410997.574241 1319564.574241 norm=33.734256 +1411017.078236 1318231.078236 norm=35.327043 +1410982.543367 1318868.543367 norm=34.176015 +1411021.094943 1315874.094943 norm=33.585711 +1411008.710482 1317016.710482 norm=34.307434 +1411018.479659 1320992.479659 norm=33.674916 +1411042.564687 1316962.564687 norm=33.105891 +1411026.567306 1317666.567306 norm=34.029399 +1411036.635908 1319462.635908 norm=33.451457 +1411049.017294 1321996.017294 norm=33.481338 +1411030.987862 1315996.987862 norm=34.292856 +1411029.047407 1316956.047407 norm=33.436507 +1411066.966590 1320173.966590 norm=33.316662 +1411059.549895 1314334.549895 norm=32.649655 +1411087.874384 1320003.874384 norm=32.449961 +1411080.259537 1316481.259537 norm=32.372828 +1411078.906292 1318020.906292 norm=32.326460 +1411080.728910 1315759.728910 norm=34.161382 +1411075.647815 1324218.647815 norm=33.674916 +1411053.383466 1320909.383466 norm=33.436507 +1411085.527624 1324215.527624 norm=33.674916 +1411081.248058 1317996.248058 norm=33.689761 +1411089.237043 1318542.237043 norm=34.073450 +1411084.143267 1320917.143267 norm=34.554305 +1411068.239975 1316619.239975 norm=33.896903 +1411096.246762 1318011.246762 norm=33.645208 +1411110.932673 1322168.932673 norm=33.867388 +1411085.993334 1316182.993334 norm=34.073450 +1411114.223354 1318817.223354 norm=33.645208 +1411109.261585 1315203.261585 norm=33.808283 +1411119.456155 1323861.456155 norm=32.496154 +1411156.582079 1314700.582079 norm=32.171416 +1411124.127969 1325263.127969 norm=32.969683 +1411151.464862 1313552.464862 norm=32.969683 +1411122.990537 1320840.990537 norm=33.045423 +1411144.843324 1319853.843324 norm=33.585711 +1411149.518546 1322849.518546 norm=32.908965 +1411138.421671 1316088.421671 norm=33.391616 +1411170.087784 1321546.087784 norm=33.166248 +1411146.855459 1317740.855459 norm=33.704599 +1411149.457458 1317053.457458 norm=33.852622 +1411155.454968 1321512.454968 norm=33.346664 +1411166.236514 1321481.236514 norm=33.451457 +1411169.840412 1318725.840412 norm=33.570821 +1411160.163220 1320361.163220 norm=34.044089 +1411164.447119 1318956.447119 norm=33.585711 +1411180.513825 1318887.513825 norm=33.882149 +1411167.347985 1318710.347985 norm=33.481338 +1411179.697189 1319494.697189 norm=34.263683 +1411172.118417 1317747.118417 norm=34.438351 +1411171.610168 1323006.610168 norm=33.778692 +1411194.127300 1318120.127300 norm=34.029399 +1411179.948621 1319528.948621 norm=34.014703 +1411183.068436 1318928.068436 norm=33.256578 +1411224.576776 1316096.576776 norm=32.588341 +1411219.395679 1321098.395679 norm=33.689761 +1411205.710369 1320683.710369 norm=32.817678 +1411229.764263 1314915.764263 norm=32.000000 +1411249.507283 1314296.507283 norm=32.341923 +1411237.785118 1320545.785118 norm=33.570821 +1411229.277591 1319704.277591 norm=32.787193 +1411243.476627 1319206.476627 norm=33.166248 +1411235.405184 1317368.405184 norm=34.481879 +1411210.394323 1319506.394323 norm=33.867388 +1411234.024204 1327630.024204 norm=32.984845 +1411237.055855 1315606.055855 norm=34.205263 +1411236.383294 1316119.383294 norm=33.541020 +1411253.687468 1321070.687468 norm=34.219877 +1411236.481935 1318755.481935 norm=32.863353 +1411270.963789 1317783.963789 norm=32.969683 +1411260.954810 1320328.954810 norm=33.793490 +1411271.275811 1322014.275811 norm=33.256578 +1411280.027720 1315504.027720 norm=32.878564 +1411278.886109 1319331.886109 norm=33.496268 +1411263.753387 1318048.753387 norm=34.073450 +1411265.248888 1319361.248888 norm=33.911650 +1411254.781729 1313800.781729 norm=33.316662 +1411281.120462 1322922.120462 norm=33.852622 +1411280.883721 1319355.883721 norm=34.394767 +1411288.305611 1318733.305611 norm=32.649655 +1411306.320473 1316656.320473 norm=33.852622 +1411299.288246 1314062.288246 norm=33.316662 +1411288.057141 1323060.057141 norm=33.585711 +1411302.294821 1322127.294821 norm=32.817678 +1411320.185056 1312032.185056 norm=32.664966 +1411330.745171 1321663.745171 norm=33.361655 +1411322.447764 1311017.447764 norm=32.741411 +1411327.662924 1322166.662924 norm=33.630343 +1411315.744508 1316967.744508 norm=33.570821 +1411332.323941 1328715.323941 norm=32.954514 +1411354.774778 1318463.774778 norm=33.166248 +1411325.883174 1321125.883174 norm=34.073450 +1411309.681415 1316891.681415 norm=34.669872 +1411326.490543 1322054.490543 norm=34.612137 +1411322.641065 1316673.641065 norm=33.196385 +1411354.290956 1322332.290956 norm=32.939338 +1411355.443982 1318704.443982 norm=33.090784 +1411379.868160 1321851.868160 norm=32.771939 +1411363.971339 1314931.971339 norm=33.585711 +1411363.132033 1317157.132033 norm=33.030289 +1411376.032123 1318105.032123 norm=32.310989 +1411377.316796 1316625.316796 norm=32.619013 +1411394.349617 1323034.349617 norm=32.832910 +1411374.812202 1317740.812202 norm=33.226495 +1411387.383684 1315544.383684 norm=32.878564 +1411403.658304 1323148.658304 norm=34.626579 +1411354.307866 1319640.307866 norm=34.351128 +1411395.616732 1321579.616732 norm=33.600595 +1411384.908509 1319299.908509 norm=33.331667 +1411413.071351 1328257.071351 norm=32.771939 +1411405.188752 1316755.188752 norm=33.391616 +1411409.685549 1317042.685549 norm=33.704599 +1411407.089780 1325898.089780 norm=32.388269 +1411438.873653 1317589.873653 norm=32.557641 +1411418.890411 1314484.890411 norm=33.896903 +1411413.139800 1318830.139800 norm=33.630343 +1411399.799949 1314592.799949 norm=34.583233 +1411410.779075 1322442.779075 norm=34.539832 +1411418.005207 1320539.005207 norm=33.955854 +1411423.939983 1319623.939983 norm=33.406586 +1411446.040665 1321141.040665 norm=33.481338 +1411450.580336 1313211.580336 norm=33.852622 +1411429.664372 1319390.664372 norm=33.331667 +1411448.011064 1318743.011064 norm=33.271610 +1411455.486149 1320201.486149 norm=33.630343 +1411454.721053 1318701.721053 norm=33.704599 +1411436.768392 1321074.768392 norm=34.219877 +1411444.481639 1321566.481639 norm=34.351128 +1411454.633360 1316270.633360 norm=33.496268 +1411467.056825 1322601.056825 norm=33.823069 +1411467.132007 1315825.132007 norm=33.421550 +1411483.358518 1321987.358518 norm=33.256578 +1411460.674958 1311507.674958 norm=34.655447 +1411462.844953 1323306.844953 norm=33.570821 +1411478.404146 1318258.404146 norm=33.645208 +1411480.799718 1320979.799718 norm=33.734256 +1411505.506158 1318152.506158 norm=33.391616 +1411473.421723 1322339.421723 norm=33.481338 +1411504.223690 1315308.223690 norm=34.409301 +1411475.889700 1315783.889700 norm=34.029399 +1411510.282828 1315922.282828 norm=33.466401 +1411500.443710 1323293.443710 norm=33.852622 +1411504.984213 1318434.984213 norm=33.823069 +1411501.557115 1318735.557115 norm=33.970576 +1411536.805101 1318402.805101 norm=32.202484 +1411534.500029 1324659.500029 norm=32.511536 +1411543.285351 1315761.285351 norm=33.271610 +1411527.693809 1321202.693809 norm=33.570821 +1411529.771028 1316046.771028 norm=33.105891 +1411532.123395 1323887.123395 norm=33.436507 +1411546.522718 1316062.522718 norm=33.151169 +1411548.632368 1330953.632368 norm=32.449961 +1411570.165409 1316885.165409 norm=32.832910 +1411559.213341 1322960.213341 norm=33.105891 +1411554.674825 1316233.674825 norm=33.391616 +1411551.217853 1319655.217853 norm=33.391616 +1411570.157240 1320197.157240 norm=32.878564 +1411571.493754 1320644.493754 norm=33.316662 +1411563.587903 1319528.587903 norm=33.749074 +1411578.346275 1324861.346275 norm=33.151169 +1411571.876177 1321690.876177 norm=32.741411 +1411592.194926 1318733.194926 norm=32.634338 +1411590.315746 1322346.315746 norm=33.555923 +1411573.179476 1325952.179476 norm=33.301652 +1411599.393651 1316835.393651 norm=34.161382 +1411573.695318 1318750.695318 norm=32.863353 +1411601.381050 1315800.381050 norm=32.326460 +1411626.201607 1319516.201607 norm=32.695565 +1411622.441072 1321881.441072 norm=32.372828 +1411636.792742 1321140.792742 norm=33.090784 +1411612.156771 1318875.156771 norm=33.120990 +1411632.594684 1321064.594684 norm=33.911650 +1411598.464506 1321302.464506 norm=33.301652 +1411635.359293 1320098.359293 norm=33.075671 +1411624.128159 1319485.128159 norm=33.600595 +1411626.226600 1319401.226600 norm=34.132096 +1411616.082854 1322195.082854 norm=34.205263 +1411640.885655 1317446.885655 norm=32.710854 +1411650.024374 1318521.024374 norm=34.029399 +1411639.849418 1311614.849418 norm=33.778692 +1411641.986644 1322739.986644 norm=33.181320 +1411652.573162 1321372.573162 norm=33.256578 +1411649.906472 1322115.906472 norm=33.105891 +1411665.363822 1320613.363822 norm=33.674916 +1411652.177473 1320875.177473 norm=33.466401 +1411661.646993 1323816.646993 norm=33.120990 +1411671.003831 1318160.003831 norm=33.867388 +1411659.264614 1316847.264614 norm=33.226495 +1411667.302828 1324001.302828 norm=32.832910 +1411704.778816 1321719.778816 norm=33.451457 +1411662.860467 1320150.860467 norm=33.823069 +1411679.710530 1314818.710530 norm=33.181320 +1411703.586284 1320646.586284 norm=34.292856 +1411686.918333 1316361.918333 norm=34.510868 +1411656.087746 1323967.087746 norm=34.467376 +1411692.914381 1315297.914381 norm=33.734256 +1411699.859513 1323448.859513 norm=33.496268 +1411692.477371 1315755.477371 norm=34.799425 +1411691.776609 1318769.776609 norm=33.570821 +1411711.110620 1319866.110620 norm=32.572995 +1411719.744316 1321177.744316 norm=34.132096 +1411706.778950 1314021.778950 norm=33.196385 +1411736.167715 1322471.167715 norm=33.466401 +1411717.314778 1320797.314778 norm=33.511192 +1411726.895736 1320831.895736 norm=33.060551 +1411738.933428 1324555.933428 norm=32.802439 +1411745.951057 1321425.951057 norm=34.146742 +1411723.903873 1317650.903873 norm=32.984845 +1411764.493562 1320004.493562 norm=33.226495 +1411734.616365 1325722.616365 norm=32.619013 +1411775.825665 1315135.825665 norm=32.710854 +1411760.024304 1322448.024304 norm=33.015148 +1411763.207324 1315820.207324 norm=32.557641 +1411773.933828 1321905.933828 norm=32.984845 +1411784.653263 1320195.653263 norm=33.256578 +1411755.545812 1322763.545812 norm=34.146742 +1411764.254885 1325610.254885 norm=34.467376 +1411757.739222 1320435.739222 norm=33.451457 +1411778.208036 1321498.208036 norm=33.630343 +1411788.052713 1320359.052713 norm=31.811947 +1411809.860762 1319574.860762 norm=33.075671 +1411797.291850 1324256.291850 norm=33.241540 +1411805.526861 1315751.526861 norm=32.264532 +1411813.967018 1322590.967018 norm=32.954514 +1411792.422183 1322559.422183 norm=33.985291 +1411793.813874 1321693.813874 norm=33.541020 +1411801.418650 1315549.418650 norm=33.793490 +1411800.651217 1321460.651217 norm=33.734256 +1411797.144864 1320430.144864 norm=34.799425 +1411817.239000 1317459.239000 norm=33.955854 +1411803.447475 1320271.447475 norm=34.205263 +1411807.099252 1315144.099252 norm=34.263683 +1411806.200243 1325256.200243 norm=34.467376 +1411819.536134 1317623.536134 norm=33.660065 +1411845.405700 1319650.405700 norm=33.941125 +1411825.838802 1320213.838802 norm=34.278273 +1411838.468233 1317262.468233 norm=33.526109 +1411835.090546 1321684.090546 norm=33.421550 +1411853.692437 1317260.692437 norm=33.763886 +1411838.556148 1319712.556148 norm=33.749074 +1411855.662384 1321677.662384 norm=33.286634 +1411854.119903 1323407.119903 norm=32.908965 +1411865.527183 1322794.527183 norm=33.000000 +1411876.835826 1318617.835826 norm=33.346664 +1411866.598765 1322559.598765 norm=33.674916 +1411869.055777 1318414.055777 norm=33.120990 +1411881.858817 1321680.858817 norm=32.542280 +1411897.709130 1318417.709130 norm=32.649655 +1411889.855568 1319492.855568 norm=32.634338 +1411902.067578 1321144.067578 norm=32.062439 +1411921.805995 1316994.805995 norm=32.603681 +1411896.025391 1319135.025391 norm=32.969683 +1411899.514415 1317763.514415 norm=33.331667 +1411890.905370 1318617.905370 norm=34.409301 +1411875.580612 1323477.580612 norm=33.837849 +1411900.595666 1321122.595666 norm=33.241540 +1411921.887001 1317108.887001 norm=33.689761 +1411906.403651 1319138.403651 norm=34.698703 +1411902.966015 1318445.966015 norm=33.481338 +1411931.721456 1321691.721456 norm=33.555923 +1411913.077088 1322140.077088 norm=33.120990 +1411954.074127 1324426.074127 norm=33.585711 +1411911.474234 1321455.474234 norm=34.161382 +1411935.465276 1317590.465276 norm=33.105891 +1411925.207400 1320657.207400 norm=33.704599 +1411949.805183 1324204.805183 norm=33.660065 +1411955.042193 1318021.042193 norm=33.645208 +1411945.894655 1323266.894655 norm=33.151169 +1411945.427723 1320117.427723 norm=33.466401 +1411974.938387 1319111.938387 norm=33.211444 +1411968.564890 1322345.564890 norm=32.969683 +1411972.721419 1319499.721419 norm=33.211444 +1411958.610876 1320257.610876 norm=33.555923 +1411962.722398 1325371.722398 norm=34.176015 +1411939.304536 1320807.304536 norm=33.749074 +1411995.866175 1319657.866175 norm=33.166248 +1411980.485121 1319629.485121 norm=32.924155 +1412000.872473 1325454.872473 norm=33.391616 +1411995.798695 1321469.798695 norm=33.030289 +1411994.315307 1321109.315307 norm=32.419130 +1412005.827812 1319401.827812 norm=33.271610 +1412007.053517 1313995.053517 norm=33.136083 +1411984.739270 1322636.739270 norm=35.411862 +1411980.543413 1321976.543413 norm=34.102786 +1411997.929532 1321649.929532 norm=33.316662 +1412005.550791 1324053.550791 norm=33.570821 +1412018.091349 1317813.091349 norm=33.271610 +1412022.896595 1324331.896595 norm=33.466401 +1412026.590978 1319047.590978 norm=32.848135 +1412027.280692 1324367.280692 norm=34.029399 +1412018.230674 1319391.230674 norm=34.409301 +1412017.567106 1321502.567106 norm=34.014703 +1412014.759815 1317193.759815 norm=34.146742 +1412040.890296 1322062.890296 norm=33.555923 +1412030.133660 1320774.133660 norm=34.481879 +1412035.506457 1317768.506457 norm=33.734256 +1412031.848191 1319226.848191 norm=33.704599 +1412064.069797 1320624.069797 norm=33.211444 +1412055.316661 1319004.316661 norm=33.045423 +1412063.556413 1321506.556413 norm=32.726136 +1412069.863570 1322811.863570 norm=33.060551 +1412059.901580 1314675.901580 norm=33.316662 +1412081.073235 1323047.073235 norm=33.852622 +1412069.822473 1318244.822473 norm=33.570821 +1412063.858561 1323422.858561 norm=33.060551 +1412099.328756 1323242.328756 norm=33.391616 +1412082.377147 1325504.377147 norm=34.336569 +1412079.588509 1316233.588509 norm=33.749074 +1412081.653386 1320930.653386 norm=33.136083 +1412098.095272 1321469.095272 norm=33.630343 +1412107.054658 1321109.054658 norm=33.704599 +1412079.747008 1318990.747008 norm=34.000000 +1412099.769059 1323651.769059 norm=33.526109 +1412116.762415 1322074.762415 norm=32.939338 +1412111.142483 1321005.142483 norm=33.436507 +1412105.034173 1318113.034173 norm=33.105891 +1412134.578017 1319374.578017 norm=32.664966 +1412119.310400 1316405.310400 norm=33.541020 +1412127.168183 1323671.168183 norm=34.263683 +1412116.196108 1325843.196108 norm=33.719431 +1412130.683884 1322603.683884 norm=33.793490 +1412119.333502 1321040.333502 norm=34.394767 +1412116.529621 1322135.529621 norm=33.926391 +1412139.716153 1322485.716153 norm=33.451457 +1412151.199972 1316797.199972 norm=32.802439 +1412157.255974 1319759.255974 norm=33.555923 +1412168.949040 1313788.949040 norm=33.166248 +1412158.535592 1321537.535592 norm=32.939338 +1412166.599557 1320565.599557 norm=33.045423 +1412172.494996 1324231.494996 norm=32.434549 +1412180.434145 1320160.434145 norm=33.511192 +1412167.769765 1321027.769765 norm=32.186954 +1412208.509353 1316172.509353 norm=32.202484 +1412200.356667 1321212.356667 norm=32.802439 +1412191.326552 1323237.326552 norm=33.867388 +1412167.411685 1317928.411685 norm=33.749074 +1412204.953659 1318143.953659 norm=32.756679 +1412195.924149 1325449.924149 norm=33.793490 +1412174.907028 1316312.907028 norm=34.044089 +1412194.964453 1322616.964453 norm=34.161382 +1412184.707220 1319330.707220 norm=34.799425 +1412183.832176 1318138.832176 norm=34.539832 +1412189.990512 1323649.990512 norm=34.713110 +1412184.984415 1317555.984415 norm=34.132096 +1412210.364248 1321017.364248 norm=34.117444 +1412201.321294 1316221.321294 norm=33.808283 +1412220.654506 1323134.654506 norm=32.908965 +1412241.552957 1326575.552957 norm=33.852622 +1412230.656677 1325561.656677 norm=33.241540 +1412252.446322 1315046.446322 norm=33.615473 +1412242.506355 1322549.506355 norm=32.465366 +1412242.785497 1323398.785497 norm=33.256578 +1412266.495578 1325976.495578 norm=32.710854 +1412261.680393 1323042.680393 norm=32.969683 +1412269.779600 1316618.779600 norm=32.984845 +1412256.488637 1319817.488637 norm=33.286634 +1412252.311786 1317175.311786 norm=32.908965 +1412287.685772 1317838.685772 norm=33.421550 +1412275.725145 1319472.725145 norm=33.090784 +1412272.070839 1319926.070839 norm=32.419130 +1412291.413913 1321022.413913 norm=32.832910 +1412286.407686 1314522.407686 norm=33.555923 +1412265.284327 1324340.284327 norm=33.763886 +1412288.492209 1320515.492209 norm=32.310989 +1412309.093930 1319392.093930 norm=33.075671 +1412294.498195 1323644.498195 norm=33.852622 +1412280.551535 1321406.551535 norm=32.771939 +1412312.068148 1318388.068148 norm=34.000000 +1412275.710019 1325422.710019 norm=34.727511 +1412287.476840 1319656.476840 norm=34.438351 +1412281.741087 1321122.741087 norm=33.211444 +1412316.483651 1319900.483651 norm=33.120990 +1412327.650377 1325160.650377 norm=32.572995 +1412325.466300 1314881.466300 norm=34.117444 +1412301.609001 1322661.609001 norm=35.171011 +1412303.719060 1318319.719060 norm=34.132096 +1412323.100737 1322709.100737 norm=33.346664 +1412333.559548 1320096.559548 norm=33.778692 +1412316.311239 1317835.311239 norm=34.029399 +1412334.040630 1321633.040630 norm=33.570821 +1412332.677752 1324123.677752 norm=33.361655 +1412347.373778 1321899.373778 norm=33.361655 +1412345.931500 1321264.931500 norm=33.331667 +1412356.279566 1325025.279566 norm=33.211444 +1412361.874961 1317898.874961 norm=33.256578 +1412367.456030 1324847.456030 norm=32.848135 +1412358.623044 1320398.623044 norm=33.511192 +1412361.042172 1319445.042172 norm=33.734256 +1412362.678625 1319295.678625 norm=33.406586 +1412372.074441 1321825.074441 norm=33.301652 +1412383.687330 1319395.687330 norm=33.060551 +1412369.655228 1321649.655228 norm=34.044089 +1412379.454188 1323124.454188 norm=33.120990 +1412394.052699 1318678.052699 norm=33.301652 +1412384.105753 1318485.105753 norm=33.136083 +1412399.880436 1328116.880436 norm=32.619013 +1412402.453744 1317486.453744 norm=33.271610 +1412398.168039 1327155.168039 norm=32.741411 +1412411.146304 1316985.146304 norm=33.823069 +1412410.205278 1323285.205278 norm=33.406586 +1412396.690705 1320669.690705 norm=33.526109 +1412414.979863 1318823.979863 norm=33.511192 +1412418.589507 1326653.589507 norm=33.256578 +1412430.402161 1318403.402161 norm=33.211444 +1412401.840321 1324448.840321 norm=34.029399 +1412419.099311 1321143.099311 norm=33.630343 +1412409.650779 1318371.650779 norm=33.823069 +1412434.249744 1315541.249744 norm=33.286634 +1412443.554541 1319581.554541 norm=32.634338 +1412461.901291 1323752.901291 norm=32.984845 +1412440.257570 1321992.257570 norm=34.336569 +1412424.470205 1319919.470205 norm=33.511192 +1412472.593568 1320977.593568 norm=32.954514 +1412439.130642 1321869.130642 norm=33.674916 +1412461.277698 1318163.277698 norm=34.278273 +1412453.199080 1324027.199080 norm=33.376639 +1412469.494049 1325180.494049 norm=33.808283 +1412445.887532 1321434.887532 norm=33.630343 +1412482.807499 1321410.807499 norm=33.541020 +1412473.754967 1322609.754967 norm=33.481338 +1412475.928313 1321779.928313 norm=33.645208 +1412475.401078 1318893.401078 norm=33.970576 +1412471.846542 1319730.846542 norm=33.406586 +1412487.753699 1325264.753699 norm=34.146742 +1412495.029661 1319459.029661 norm=33.896903 +1412477.070149 1325634.070149 norm=33.955854 +1412495.761740 1312081.761740 norm=33.837849 +1412474.311141 1332993.311141 norm=34.088121 +1412497.261692 1323539.261692 norm=34.278273 +1412495.871714 1324551.871714 norm=33.674916 +1412519.890149 1316608.890149 norm=33.120990 +1412504.114670 1326869.114670 norm=33.271610 +1412542.210177 1321133.210177 norm=32.388269 +1412520.055653 1321865.055653 norm=33.196385 +1412531.568491 1321538.568491 norm=32.863353 +1412548.427312 1319066.427312 norm=32.863353 +1412548.343124 1320840.343124 norm=32.893768 +1412525.265629 1320798.265629 norm=33.466401 +1412534.775920 1319750.775920 norm=33.331667 +1412552.909060 1317626.909060 norm=32.680269 +1412557.442287 1322352.442287 norm=32.893768 +1412573.827544 1319188.827544 norm=33.481338 +1412538.210689 1320670.210689 norm=33.241540 +1412551.989861 1319315.989861 norm=34.190642 +1412546.082741 1317439.082741 norm=33.271610 +1412567.602872 1323821.602872 norm=34.000000 +1412560.580743 1318865.580743 norm=33.406586 +1412584.319229 1323044.319229 norm=33.421550 +1412595.704956 1317848.704956 norm=32.526912 +1412569.345233 1324273.345233 norm=34.146742 +1412543.221076 1321924.221076 norm=34.409301 +1412592.885669 1319878.885669 norm=33.526109 +1412571.727411 1323632.727411 norm=34.234486 +1412576.497785 1322613.497785 norm=34.351128 +1412558.961294 1322681.961294 norm=33.911650 +1412604.542182 1325669.542182 norm=33.734256 +1412593.017694 1323133.017694 norm=33.911650 +1412608.974225 1315939.974225 norm=33.734256 +1412593.595165 1321039.595165 norm=34.058773 +1412597.913271 1321064.913271 norm=33.211444 +1412621.451032 1318856.451032 norm=33.496268 +1412606.584387 1318043.584387 norm=34.234486 +1412600.997494 1321246.997494 norm=33.734256 +1412621.258748 1323300.258748 norm=33.600595 +1412629.868117 1318780.868117 norm=33.555923 +1412625.236136 1325581.236136 norm=33.719431 +1412630.762811 1319726.762811 norm=34.161382 +1412632.585116 1318098.585116 norm=33.045423 +1412639.317311 1322504.317311 norm=33.852622 +1412632.658013 1325941.658013 norm=32.186954 +1412682.486997 1318745.486997 norm=32.832910 +1412645.738008 1324232.738008 norm=32.511536 +1412681.507498 1319437.507498 norm=33.555923 +1412641.957691 1320182.957691 norm=33.645208 +1412663.299606 1317792.299606 norm=33.882149 +1412649.215601 1324455.215601 norm=34.044089 +1412673.078604 1316098.078604 norm=32.984845 +1412695.699979 1327096.699979 norm=32.419130 +1412701.296727 1319946.296727 norm=33.120990 +1412690.416692 1321416.416692 norm=32.924155 +1412699.463545 1321344.463545 norm=33.331667 +1412678.664176 1318345.664176 norm=34.044089 +1412699.164819 1316739.164819 norm=33.406586 +1412689.275772 1327418.275772 norm=33.926391 +1412692.221580 1316393.221580 norm=33.660065 +1412681.561144 1320009.561144 norm=34.899857 +1412690.833162 1322020.833162 norm=33.316662 +1412708.982035 1324737.982035 norm=33.615473 +1412706.966407 1325453.966407 norm=32.832910 +1412739.907291 1318852.907291 norm=32.124757 +1412712.293204 1321943.293204 norm=33.763886 +1412707.991460 1316516.991460 norm=33.090784 +1412743.977956 1326489.977956 norm=33.436507 +1412716.582481 1317396.582481 norm=33.361655 +1412739.012794 1324971.012794 norm=33.941125 +1412729.453543 1317839.453543 norm=33.256578 +1412745.104364 1317350.104364 norm=33.511192 +1412734.113632 1326979.113632 norm=34.307434 +1412729.636432 1320033.636432 norm=33.301652 +1412757.586063 1324130.586063 norm=32.511536 +1412759.025710 1320564.025710 norm=33.511192 +1412759.944813 1317798.944813 norm=33.226495 +1412754.018334 1322351.018334 norm=33.241540 +1412747.032880 1323445.032880 norm=33.985291 +1412762.908090 1318834.908090 norm=32.449961 +1412783.539949 1323820.539949 norm=33.286634 +1412772.522540 1316537.522540 norm=33.882149 +1412769.510040 1319564.510040 norm=33.570821 +1412774.044426 1319985.044426 norm=33.496268 +1412771.308389 1328031.308389 norm=33.852622 +1412783.481684 1316075.481684 norm=33.541020 +1412792.254884 1319352.254884 norm=32.603681 +1412804.676763 1322407.676763 norm=32.939338 +1412801.785269 1327178.785269 norm=33.361655 +1412810.790028 1313169.790028 norm=32.326460 +1412818.747181 1322448.747181 norm=32.726136 +1412809.443823 1324583.443823 norm=33.346664 +1412802.116094 1325488.116094 norm=33.837849 +1412817.519832 1324350.519832 norm=33.271610 +1412830.744834 1327985.744834 norm=33.286634 +1412823.385940 1317935.385940 norm=33.331667 +1412818.359964 1317630.359964 norm=33.763886 +1412829.178540 1319187.178540 norm=32.817678 +1412833.474604 1324765.474604 norm=33.496268 +1412831.380246 1323469.380246 norm=33.211444 +1412839.639444 1321236.639444 norm=34.322005 +1412825.211552 1319018.211552 norm=33.466401 +1412841.493729 1326750.493729 norm=33.896903 +1412849.831587 1319665.831587 norm=33.316662 +1412859.411863 1315672.411863 norm=32.878564 +1412878.228737 1324895.228737 norm=32.954514 +1412855.122638 1324010.122638 norm=34.510868 +1412854.654101 1316942.654101 norm=34.000000 +1412849.911556 1323134.911556 norm=33.926391 +1412860.419221 1322435.419221 norm=33.241540 +1412867.952966 1322578.952966 norm=33.763886 +1412862.180375 1322001.180375 norm=33.600595 +1412875.170380 1325750.170380 norm=33.151169 +1412896.710668 1315349.710668 norm=33.600595 +1412878.300872 1321983.300872 norm=33.570821 +1412901.120648 1323046.120648 norm=33.000000 +1412893.082429 1319545.082429 norm=33.778692 +1412888.713187 1317127.713187 norm=34.307434 +1412875.702112 1324796.702112 norm=33.346664 +1412923.271336 1317409.271336 norm=33.015148 +1412908.314015 1323583.314015 norm=33.600595 +1412900.740880 1324823.740880 norm=33.526109 +1412915.568851 1319006.568851 norm=34.014703 +1412912.632085 1315973.632085 norm=33.778692 +1412910.503855 1323314.503855 norm=33.630343 +1412915.176311 1320504.176311 norm=34.029399 +1412902.614324 1324510.614324 norm=34.871192 +1412918.531764 1325447.531764 norm=34.088121 +1412925.727653 1319481.727653 norm=34.029399 +1412942.071480 1321147.071480 norm=33.451457 +1412944.580616 1322297.580616 norm=32.771939 +1412944.061613 1318316.061613 norm=33.226495 +1412946.558397 1319577.558397 norm=34.234486 +1412923.690520 1324290.690520 norm=33.600595 +1412972.237011 1319629.237011 norm=33.361655 +1412949.569694 1320217.569694 norm=33.226495 +1412966.844398 1325048.844398 norm=33.926391 +1412965.409835 1319442.409835 norm=33.181320 +1412962.793779 1320727.793779 norm=33.015148 +1412974.860275 1327229.860275 norm=33.241540 +1412984.659005 1318470.659005 norm=33.970576 +1412971.818339 1322780.818339 norm=33.719431 +1412978.278891 1322859.278891 norm=33.823069 +1412987.291262 1319118.291262 norm=33.630343 +1412983.058537 1327319.058537 norm=34.307434 +1412969.807558 1320570.807558 norm=33.896903 +1412998.128231 1318081.128231 norm=33.570821 +1413005.045564 1321341.045564 norm=34.029399 +1412986.035127 1324704.035127 norm=32.984845 +1413021.276860 1317403.276860 norm=33.151169 +1413008.844828 1329008.844828 norm=32.787193 +1413020.113696 1315274.113696 norm=34.000000 +1412992.178692 1320813.178692 norm=33.645208 +1413013.787699 1319613.787699 norm=33.570821 +1413020.209756 1321802.209756 norm=33.526109 +1413038.367580 1317950.367580 norm=33.481338 +1413016.887779 1324774.887779 norm=33.911650 +1413031.217409 1322106.217409 norm=33.331667 +1413044.752259 1320152.752259 norm=32.619013 +1413063.188043 1323936.188043 norm=33.000000 +1413050.872586 1320106.872586 norm=33.541020 +1413043.489273 1320430.489273 norm=33.823069 +1413049.726751 1320009.726751 norm=33.570821 +1413058.827224 1325946.827224 norm=32.619013 +1413060.291941 1318963.291941 norm=33.615473 +1413057.459877 1323794.459877 norm=33.316662 +1413066.703816 1322217.703816 norm=32.465366 +1413092.059718 1323374.059718 norm=32.664966 +1413060.196587 1328992.196587 norm=33.256578 +1413074.635084 1317341.635084 norm=33.630343 +1413051.676915 1318662.676915 norm=34.612137 +1413056.510571 1321978.510571 norm=33.555923 +1413096.732483 1317515.732483 norm=34.394767 +1413062.921608 1319350.921608 norm=33.541020 +1413090.432544 1327318.432544 norm=32.893768 +1413115.848815 1320487.848815 norm=32.480764 +1413121.756882 1315864.756882 norm=32.634338 +1413103.541609 1321567.541609 norm=33.000000 +1413095.019282 1321974.019282 norm=33.778692 +1413108.703390 1317092.703390 norm=33.911650 +1413088.424839 1321870.424839 norm=34.626579 +1413114.142734 1321507.142734 norm=33.376639 +1413109.950385 1322116.950385 norm=33.570821 +1413128.463355 1325021.463355 norm=33.271610 +1413129.299382 1322856.299382 norm=33.226495 +1413149.363339 1319573.363339 norm=33.985291 +1413122.481976 1321444.481976 norm=33.181320 +1413151.593136 1327208.593136 norm=33.911650 +1413114.051619 1319069.051619 norm=33.689761 +1413152.075148 1322874.075148 norm=33.045423 +1413142.723862 1325597.723862 norm=34.176015 +1413134.145152 1317996.145152 norm=34.278273 +1413143.382261 1327272.382261 norm=32.832910 +1413165.534936 1318216.534936 norm=33.105891 +1413168.094877 1320090.094877 norm=33.451457 +1413164.573531 1323630.573531 norm=33.645208 +1413159.903206 1320658.903206 norm=33.541020 +1413162.188440 1321917.188440 norm=33.526109 +1413169.390787 1325573.390787 norm=33.256578 +1413179.926743 1322786.926743 norm=34.741906 +1413148.488344 1319870.488344 norm=34.292856 +1413190.484032 1325306.484032 norm=33.256578 +1413203.451570 1322548.451570 norm=33.015148 +1413205.168603 1320392.168603 norm=32.109189 +1413207.208094 1320942.208094 norm=32.817678 +1413208.079888 1321372.079888 norm=33.045423 +1413192.395556 1321502.395556 norm=33.406586 +1413218.651577 1324706.651577 norm=33.570821 +1413187.573761 1322744.573761 norm=33.734256 +1413211.306569 1321786.306569 norm=34.365681 +1413193.644217 1326085.644217 norm=33.570821 +1413234.575284 1325806.575284 norm=32.542280 +1413232.776051 1316756.776051 norm=33.451457 +1413227.605160 1325458.605160 norm=33.496268 +1413229.152775 1323655.152775 norm=32.832910 +1413249.078501 1321958.078501 norm=33.645208 +1413201.478676 1322658.478676 \ No newline at end of file diff --git a/lr1list.txt b/lr1list.txt new file mode 100644 index 0000000000000000000000000000000000000000..fc6161196f3009dd1d935a991f2b9c71aa999bda --- /dev/null +++ b/lr1list.txt @@ -0,0 +1,18991 @@ +18990 +969553.451655 +970758.779461 +971924.200775 +972984.307895 +974050.286894 +975016.061762 +975976.214386 +976857.818754 +977760.629360 +978588.055560 +979411.139985 +980186.094698 +980974.414410 +981721.176878 +982444.613921 +983171.021030 +983879.968084 +984576.545759 +985258.471322 +985936.788115 +986588.141280 +987246.815095 +987895.734428 +988524.128863 +989129.449336 +989736.924508 +990336.499391 +990914.031479 +991506.303444 +992061.210680 +992637.047976 +993178.099834 +993740.792991 +994261.129073 +994835.624788 +995367.463174 +995920.928944 +996420.301898 +996951.877113 +997463.084155 +997974.436039 +998482.457267 +999002.691491 +999467.191883 +999981.788417 +1000453.968108 +1000938.153018 +1001405.492442 +1001886.591025 +1002336.026325 +1002801.355711 +1003254.969040 +1003732.835645 +1004183.951977 +1004626.296423 +1005064.204365 +1005498.457882 +1005950.678120 +1006384.873797 +1006840.841636 +1007268.752472 +1007693.878602 +1008110.248807 +1008533.624709 +1008948.165899 +1009335.501422 +1009761.032886 +1010161.821032 +1010555.515498 +1010938.708109 +1011354.698029 +1011737.349062 +1012124.672395 +1012491.698884 +1012899.018327 +1013277.181281 +1013668.447685 +1014016.736144 +1014385.509320 +1014775.580053 +1015151.035720 +1015525.211372 +1015860.274163 +1016246.506218 +1016599.670996 +1016958.492361 +1017340.393463 +1017678.426981 +1018042.027186 +1018401.860922 +1018746.625939 +1019098.243497 +1019457.089440 +1019763.685542 +1020121.623034 +1020480.034263 +1020791.693755 +1021118.490274 +1021444.545959 +1021795.434624 +1022127.257340 +1022404.702147 +1022744.538535 +1023079.111143 +1023405.337037 +1023675.540364 +1024004.720538 +1024331.240105 +1024638.748000 +1024928.272157 +1025249.072402 +1025562.331831 +1025854.480702 +1026155.358645 +1026452.839006 +1026745.500403 +1027073.222303 +1027360.663652 +1027643.729054 +1027932.986969 +1028250.188502 +1028528.374674 +1028810.517238 +1029144.046824 +1029377.889133 +1029669.767399 +1029960.237006 +1030229.370867 +1030538.706498 +1030810.172786 +1031041.876915 +1031365.216847 +1031627.626269 +1031896.559198 +1032176.137505 +1032424.128313 +1032717.347129 +1032964.547221 +1033251.117530 +1033491.147443 +1033743.714293 +1034036.859497 +1034279.429383 +1034542.392835 +1034800.614165 +1035097.951182 +1035311.356403 +1035571.343546 +1035839.227069 +1036102.203184 +1036329.980631 +1036606.539953 +1036850.104217 +1037103.914519 +1037345.981562 +1037601.072029 +1037885.520819 +1038110.883815 +1038328.753119 +1038597.275097 +1038827.826814 +1039076.970857 +1039334.642483 +1039549.958919 +1039813.726400 +1040036.667717 +1040260.024156 +1040508.371467 +1040752.644956 +1041004.575394 +1041213.923873 +1041434.296929 +1041697.595955 +1041903.836127 +1042146.642475 +1042355.383488 +1042605.304539 +1042849.941208 +1043062.743321 +1043308.815165 +1043547.107389 +1043769.447410 +1043992.443556 +1044229.950052 +1044423.992615 +1044671.021366 +1044900.836716 +1045114.799988 +1045335.537207 +1045589.622798 +1045774.661200 +1046000.548459 +1046240.140954 +1046450.827624 +1046694.428852 +1046906.328658 +1047111.896961 +1047346.777355 +1047519.433647 +1047781.347737 +1047994.147574 +1048214.590813 +1048416.790279 +1048620.591990 +1048847.838973 +1049072.195622 +1049264.591675 +1049506.396164 +1049705.703059 +1049911.209533 +1050127.451644 +1050307.412154 +1050557.612680 +1050764.245640 +1050979.876318 +1051185.336457 +1051383.192064 +1051554.476319 +1051788.900714 +1052008.713707 +1052190.684768 +1052394.379048 +1052644.768685 +1052833.602457 +1053006.206735 +1053207.406872 +1053425.766496 +1053639.488108 +1053823.720603 +1053998.840196 +1054204.975795 +1054419.413611 +1054621.480431 +1054810.261270 +1055017.324733 +1055201.659284 +1055397.533342 +1055601.115807 +1055777.226652 +1056007.142981 +1056204.846523 +1056384.797957 +1056559.282381 +1056791.821500 +1056982.203923 +1057175.522440 +1057359.049810 +1057531.754733 +1057739.744992 +1057921.659589 +1058140.706298 +1058296.211936 +1058493.546014 +1058716.195442 +1058928.609273 +1059083.996506 +1059240.876925 +1059441.926814 +1059666.372497 +1059841.173867 +1060013.732747 +1060189.087523 +1060424.441499 +1060602.723975 +1060780.493345 +1060948.066842 +1061142.704486 +1061356.456939 +1061528.162696 +1061686.381328 +1061894.643505 +1062100.074018 +1062249.197985 +1062441.723271 +1062620.029708 +1062781.128007 +1062988.512814 +1063146.002141 +1063336.738353 +1063523.563617 +1063701.845334 +1063861.227145 +1064045.558133 +1064219.655093 +1064400.530328 +1064563.994996 +1064736.077386 +1064922.447264 +1065092.813697 +1065254.341772 +1065461.298410 +1065611.762097 +1065754.229555 +1065949.173036 +1066113.420756 +1066301.885040 +1066489.131811 +1066677.590542 +1066813.405603 +1066996.387211 +1067171.381613 +1067329.031471 +1067530.649338 +1067673.186582 +1067826.779902 +1068023.047588 +1068176.352927 +1068376.077974 +1068519.048590 +1068687.770671 +1068853.123983 +1068994.749038 +1069196.474914 +1069343.005965 +1069511.899619 +1069683.621933 +1069833.793179 +1070052.641069 +1070197.992900 +1070342.345639 +1070510.379192 +1070674.557180 +1070850.790479 +1071023.983885 +1071166.922930 +1071350.655734 +1071513.135796 +1071672.016656 +1071800.930773 +1072009.462930 +1072133.378132 +1072292.607348 +1072471.706700 +1072633.732094 +1072777.026215 +1072960.662962 +1073091.599814 +1073273.375480 +1073441.263977 +1073584.883392 +1073732.163736 +1073926.362119 +1074053.838954 +1074220.538319 +1074385.988312 +1074520.794862 +1074667.017757 +1074838.430998 +1075033.305697 +1075144.646045 +1075299.295124 +1075468.388246 +1075636.618455 +1075786.498842 +1075937.120515 +1076088.829242 +1076252.242747 +1076405.102484 +1076558.633085 +1076692.575099 +1076863.963442 +1077037.734979 +1077180.790034 +1077325.680783 +1077494.800688 +1077630.189117 +1077804.768062 +1077961.816638 +1078103.135698 +1078218.749153 +1078409.997138 +1078540.685356 +1078728.731674 +1078850.031364 +1078994.139220 +1079150.338734 +1079305.503522 +1079457.744683 +1079607.356678 +1079768.410521 +1079903.094993 +1080061.038937 +1080171.061499 +1080378.159181 +1080529.557506 +1080672.987590 +1080789.115697 +1080971.208754 +1081106.740439 +1081261.660929 +1081397.521427 +1081542.369562 +1081725.127315 +1081855.153478 +1081989.124623 +1082159.533231 +1082292.714794 +1082406.747587 +1082591.663664 +1082741.471300 +1082895.207023 +1083004.937731 +1083159.943844 +1083303.237443 +1083453.871198 +1083585.719973 +1083754.588273 +1083881.592265 +1084062.724251 +1084169.717394 +1084326.991849 +1084490.440129 +1084607.458493 +1084751.881086 +1084903.258976 +1085038.100849 +1085202.894268 +1085332.545492 +1085496.032125 +1085622.529940 +1085790.434477 +1085932.431596 +1086071.541320 +1086194.621177 +1086329.635750 +1086460.934997 +1086624.466645 +1086757.156059 +1086902.103145 +1087067.515568 +1087187.630012 +1087318.563297 +1087478.354729 +1087625.023684 +1087765.363425 +1087898.361644 +1088056.643178 +1088163.673181 +1088302.721527 +1088454.118033 +1088592.866868 +1088735.552544 +1088873.567483 +1088998.088657 +1089166.579581 +1089277.574959 +1089445.788556 +1089577.581077 +1089685.039179 +1089844.889363 +1090007.470004 +1090124.484301 +1090265.030342 +1090374.905239 +1090536.084781 +1090652.781120 +1090783.723154 +1090924.706094 +1091073.279076 +1091219.971490 +1091340.602410 +1091469.213670 +1091622.696884 +1091774.386206 +1091880.765852 +1092021.254246 +1092142.351832 +1092276.624219 +1092427.298763 +1092523.729503 +1092699.080008 +1092812.977771 +1092936.780856 +1093080.377581 +1093233.527605 +1093348.749040 +1093462.968786 +1093583.569530 +1093729.808315 +1093866.211406 +1093999.961012 +1094109.166937 +1094236.994507 +1094375.744467 +1094514.809384 +1094645.132215 +1094742.913352 +1094890.419169 +1094999.658716 +1095129.141066 +1095292.675897 +1095412.297764 +1095555.265043 +1095638.100251 +1095790.146505 +1095937.041464 +1096008.541877 +1096170.968799 +1096288.995359 +1096424.229513 +1096530.026216 +1096694.142737 +1096790.064128 +1096932.060054 +1097070.483359 +1097163.037926 +1097310.712674 +1097437.362862 +1097528.874229 +1097703.873927 +1097792.368984 +1097936.962781 +1098042.685539 +1098172.356102 +1098290.325572 +1098392.038228 +1098512.560825 +1098670.695246 +1098812.862441 +1098906.939857 +1099037.472394 +1099152.851628 +1099294.588431 +1099419.704094 +1099504.512057 +1099656.810718 +1099757.215779 +1099880.695408 +1099992.694548 +1100134.145896 +1100245.892971 +1100360.400965 +1100478.509003 +1100619.798440 +1100708.377712 +1100853.110206 +1100988.392796 +1101073.029348 +1101199.773382 +1101315.476878 +1101456.045078 +1101569.883802 +1101675.875212 +1101811.661905 +1101917.559044 +1102063.036025 +1102124.193249 +1102268.882467 +1102375.061584 +1102534.035940 +1102635.009613 +1102753.846128 +1102858.316899 +1102983.503111 +1103084.412294 +1103211.792137 +1103358.658117 +1103448.934849 +1103582.799297 +1103688.871891 +1103775.431508 +1103920.612224 +1104038.634396 +1104166.905972 +1104265.459924 +1104387.396169 +1104509.301197 +1104601.128193 +1104733.771686 +1104872.946010 +1104965.156910 +1105092.785809 +1105186.833571 +1105313.949878 +1105444.022131 +1105535.049841 +1105666.729737 +1105771.828051 +1105921.883563 +1105997.561509 +1106078.953979 +1106223.642679 +1106347.495491 +1106469.698988 +1106584.454137 +1106710.480702 +1106785.205332 +1106915.915331 +1107018.212822 +1107155.065304 +1107257.176793 +1107373.453364 +1107460.413413 +1107613.835891 +1107706.355604 +1107814.042156 +1107911.798612 +1108046.439430 +1108143.808783 +1108274.015443 +1108348.611030 +1108491.463274 +1108589.392071 +1108738.738910 +1108812.857176 +1108924.876250 +1109032.221219 +1109149.269893 +1109262.386827 +1109371.366064 +1109465.047628 +1109581.685100 +1109709.033198 +1109826.041530 +1109950.631160 +1110012.210492 +1110131.227851 +1110232.745236 +1110374.676438 +1110459.865578 +1110584.485863 +1110685.508956 +1110771.802409 +1110943.579764 +1110998.512707 +1111140.611761 +1111214.963031 +1111333.150018 +1111473.995885 +1111520.937170 +1111673.512897 +1111793.391283 +1111880.809331 +1111977.956452 +1112105.852838 +1112200.147861 +1112300.112924 +1112415.931918 +1112545.769532 +1112656.127256 +1112724.051643 +1112811.215495 +1112942.372115 +1113083.145047 +1113164.427192 +1113270.879058 +1113389.449514 +1113491.431534 +1113581.479164 +1113684.771821 +1113772.655866 +1113872.329162 +1114002.014994 +1114076.746590 +1114207.404497 +1114326.007848 +1114392.779545 +1114512.656667 +1114641.619475 +1114732.852156 +1114827.285953 +1114927.391689 +1115035.682229 +1115140.156267 +1115262.505727 +1115323.697104 +1115449.324639 +1115575.471933 +1115654.158775 +1115735.178737 +1115858.783653 +1115963.717842 +1116064.150446 +1116164.358535 +1116277.013971 +1116362.509628 +1116462.147399 +1116567.401474 +1116687.873836 +1116784.388550 +1116882.535084 +1116998.705242 +1117092.002848 +1117186.760699 +1117291.706282 +1117362.815237 +1117478.532842 +1117576.204962 +1117688.829776 +1117797.395678 +1117895.761115 +1117988.466670 +1118096.620948 +1118200.305812 +1118318.935928 +1118416.630979 +1118516.809915 +1118595.957798 +1118698.579275 +1118818.207488 +1118886.988022 +1119004.898184 +1119107.771927 +1119207.656223 +1119300.359285 +1119411.505920 +1119490.179543 +1119619.628628 +1119709.205887 +1119786.809738 +1119896.350910 +1120011.237386 +1120097.273600 +1120193.536463 +1120311.590219 +1120407.848912 +1120512.793198 +1120598.178816 +1120676.931603 +1120782.900847 +1120892.025865 +1120970.745291 +1121094.247245 +1121159.071369 +1121276.289918 +1121370.275555 +1121472.422914 +1121578.197665 +1121685.217203 +1121776.035971 +1121878.935816 +1121966.171414 +1122072.890041 +1122133.453340 +1122286.050850 +1122353.249333 +1122442.562000 +1122546.219394 +1122675.846300 +1122720.942816 +1122842.267212 +1122939.342770 +1123055.709222 +1123117.704126 +1123253.455677 +1123326.318716 +1123442.905179 +1123513.866924 +1123637.421375 +1123742.784989 +1123830.352703 +1123907.411042 +1124008.713692 +1124122.914271 +1124204.140895 +1124299.141619 +1124386.059807 +1124465.846457 +1124607.134228 +1124707.569271 +1124783.562645 +1124865.352518 +1124986.566100 +1125091.335386 +1125147.637192 +1125276.095032 +1125353.161700 +1125444.930307 +1125564.324941 +1125643.794906 +1125720.855462 +1125827.386826 +1125939.408205 +1126013.396374 +1126136.699100 +1126218.178197 +1126312.581894 +1126366.462463 +1126515.428526 +1126602.803074 +1126698.896037 +1126796.042007 +1126869.828298 +1126961.898293 +1127060.401287 +1127161.030984 +1127242.063824 +1127334.820110 +1127426.983762 +1127512.433673 +1127611.621661 +1127703.767660 +1127801.225446 +1127878.913761 +1128006.557167 +1128045.693120 +1128144.484170 +1128269.637852 +1128363.144049 +1128441.114006 +1128485.983197 +1128617.667877 +1128698.509894 +1128835.363958 +1128898.983479 +1128984.949805 +1129066.147744 +1129155.444500 +1129237.103319 +1129339.360169 +1129427.398520 +1129529.738195 +1129599.960489 +1129699.953344 +1129790.927102 +1129882.786489 +1129968.674368 +1130070.936095 +1130157.050985 +1130236.300652 +1130336.141477 +1130394.886179 +1130516.501324 +1130592.049152 +1130693.223546 +1130769.682273 +1130846.039941 +1130936.520325 +1131047.209132 +1131133.494770 +1131222.250279 +1131293.715415 +1131400.214583 +1131460.825524 +1131587.596203 +1131636.766516 +1131738.379312 +1131848.952153 +1131943.271988 +1132008.628393 +1132091.816058 +1132173.662536 +1132304.144404 +1132368.405282 +1132456.376592 +1132542.785041 +1132641.259133 +1132676.144539 +1132781.973255 +1132903.996488 +1132961.657225 +1133058.918316 +1133115.094607 +1133244.570003 +1133312.850498 +1133406.503623 +1133479.383009 +1133570.790918 +1133669.744546 +1133752.011341 +1133862.994976 +1133900.359526 +1134014.407571 +1134111.810702 +1134169.762116 +1134258.941651 +1134314.334146 +1134432.859289 +1134517.917436 +1134622.323073 +1134678.111140 +1134766.168744 +1134846.422381 +1134920.712676 +1135010.283825 +1135104.677409 +1135156.798739 +1135257.583481 +1135387.741790 +1135444.606538 +1135525.165576 +1135609.721159 +1135692.612086 +1135786.651426 +1135890.648798 +1135934.505850 +1136034.119881 +1136110.869551 +1136206.738082 +1136278.213485 +1136382.840264 +1136447.378220 +1136535.313434 +1136617.870070 +1136706.903617 +1136785.496806 +1136852.110689 +1136952.154447 +1137046.850951 +1137130.923056 +1137216.786776 +1137283.031253 +1137367.080572 +1137446.804168 +1137539.481440 +1137624.811499 +1137696.242317 +1137768.042589 +1137856.805620 +1137953.787491 +1138009.082696 +1138126.586091 +1138206.631946 +1138282.556836 +1138365.413172 +1138463.830448 +1138520.591750 +1138620.463558 +1138680.553580 +1138765.943790 +1138856.593573 +1138920.671221 +1139034.073287 +1139120.755801 +1139171.053093 +1139290.493143 +1139342.591962 +1139445.715716 +1139516.832792 +1139622.201214 +1139680.479134 +1139751.274309 +1139844.310883 +1139906.013589 +1140020.517678 +1140111.471565 +1140184.068298 +1140273.581002 +1140344.524159 +1140411.555569 +1140496.524456 +1140581.335418 +1140666.124987 +1140749.902505 +1140811.352603 +1140879.485948 +1140966.293950 +1141050.728851 +1141165.729010 +1141235.941114 +1141313.933165 +1141396.238275 +1141464.687433 +1141549.084052 +1141655.762789 +1141719.022949 +1141822.899274 +1141885.414190 +1141962.263828 +1142035.884959 +1142132.178251 +1142230.800077 +1142310.379672 +1142376.442153 +1142465.483216 +1142529.559520 +1142581.588728 +1142687.809978 +1142764.440308 +1142834.012093 +1142931.022257 +1143014.444272 +1143098.242553 +1143151.529024 +1143246.545589 +1143323.238412 +1143402.223830 +1143505.851182 +1143577.845006 +1143647.761808 +1143731.833212 +1143800.207751 +1143890.734039 +1143950.228585 +1144047.107779 +1144136.418481 +1144226.085092 +1144287.494632 +1144366.363289 +1144453.941073 +1144524.404833 +1144621.320216 +1144657.183652 +1144767.585563 +1144821.340949 +1144916.232790 +1144991.711490 +1145091.275338 +1145144.218910 +1145260.094103 +1145318.039177 +1145398.115172 +1145477.438411 +1145542.947395 +1145652.736321 +1145723.903150 +1145787.152332 +1145882.765047 +1145958.794834 +1146013.688409 +1146081.957993 +1146195.424335 +1146269.085372 +1146358.000340 +1146433.292594 +1146518.938645 +1146577.517161 +1146647.598207 +1146755.380571 +1146810.773645 +1146909.271501 +1146961.372145 +1147033.202352 +1147113.874716 +1147204.442208 +1147277.500587 +1147346.856520 +1147458.950830 +1147538.062196 +1147595.558612 +1147686.951612 +1147756.116211 +1147833.386207 +1147929.731493 +1148009.705239 +1148087.901202 +1148105.190193 +1148209.098126 +1148319.649961 +1148381.707687 +1148465.486903 +1148507.907912 +1148626.556119 +1148696.249388 +1148760.014672 +1148853.051033 +1148886.875331 +1148991.748651 +1149089.919555 +1149156.748865 +1149228.557091 +1149320.947400 +1149366.110491 +1149441.261800 +1149532.311008 +1149617.009015 +1149703.040562 +1149772.290034 +1149859.093329 +1149932.422771 +1150010.109614 +1150090.667114 +1150159.097803 +1150237.296633 +1150282.754743 +1150388.072085 +1150441.394951 +1150530.235505 +1150644.386818 +1150675.965971 +1150741.577326 +1150807.217348 +1150862.723011 +1150975.817472 +1151067.561217 +1151095.354370 +1151198.354190 +1151288.583572 +1151359.406618 +1151439.149544 +1151490.818485 +1151577.716096 +1151649.715351 +1151728.944898 +1151809.701882 +1151878.990378 +1151942.679281 +1152025.477258 +1152086.023635 +1152191.677642 +1152266.020899 +1152335.920750 +1152382.203122 +1152428.427918 +1152554.604786 +1152629.903001 +1152709.250058 +1152781.843248 +1152873.837795 +1152932.061219 +1153000.195064 +1153061.047488 +1153141.203455 +1153221.375754 +1153310.405808 +1153365.328192 +1153430.473572 +1153515.970360 +1153605.223588 +1153663.019729 +1153766.940331 +1153818.977681 +1153891.152645 +1153953.908361 +1154046.018315 +1154104.050051 +1154197.989537 +1154273.606096 +1154331.851466 +1154421.515127 +1154462.125337 +1154575.566295 +1154646.516959 +1154708.240417 +1154780.763218 +1154856.686962 +1154914.641483 +1154964.237323 +1155080.860805 +1155166.906832 +1155231.768503 +1155280.264873 +1155374.324177 +1155448.511202 +1155533.383417 +1155559.895530 +1155678.799014 +1155721.310759 +1155797.765276 +1155904.284936 +1155951.498985 +1156053.283604 +1156124.321356 +1156187.975197 +1156265.426956 +1156338.412984 +1156375.217071 +1156458.275615 +1156552.525805 +1156604.133168 +1156676.366498 +1156754.964169 +1156849.893984 +1156912.301217 +1156986.039138 +1157053.808512 +1157079.920536 +1157210.276553 +1157251.577377 +1157335.657251 +1157434.614784 +1157503.080646 +1157554.602912 +1157646.075478 +1157686.165466 +1157823.463449 +1157863.166151 +1157940.163855 +1157982.294857 +1158074.877785 +1158157.174028 +1158218.141309 +1158281.398587 +1158362.226624 +1158433.132010 +1158499.476258 +1158576.394695 +1158646.739583 +1158736.733517 +1158786.657159 +1158865.609848 +1158938.334110 +1159004.637163 +1159085.091524 +1159167.226612 +1159209.495711 +1159310.026146 +1159366.420997 +1159472.833827 +1159498.550972 +1159550.850547 +1159648.934286 +1159742.503851 +1159818.651826 +1159888.478731 +1159922.655221 +1160009.723437 +1160075.670348 +1160142.750449 +1160215.667210 +1160330.801400 +1160334.349755 +1160452.565589 +1160493.566800 +1160600.886202 +1160675.687450 +1160752.146922 +1160800.206613 +1160856.577441 +1160927.650415 +1160995.121010 +1161110.542275 +1161134.471817 +1161232.854467 +1161295.562995 +1161393.520355 +1161428.136988 +1161497.703594 +1161606.989940 +1161674.503687 +1161722.604055 +1161762.455781 +1161836.454055 +1161938.674342 +1162015.076412 +1162057.134200 +1162154.223692 +1162224.984049 +1162291.381364 +1162352.510139 +1162414.557505 +1162512.615246 +1162570.985777 +1162644.838926 +1162702.321132 +1162791.841944 +1162846.112795 +1162911.836191 +1162994.790891 +1163056.433122 +1163123.010143 +1163190.061163 +1163243.783066 +1163332.645399 +1163382.734961 +1163466.221441 +1163522.337085 +1163583.800446 +1163666.800595 +1163740.354828 +1163817.391765 +1163876.205842 +1163943.628611 +1164022.750390 +1164096.758937 +1164174.518558 +1164206.708146 +1164281.648350 +1164333.340951 +1164435.818800 +1164476.321934 +1164538.542618 +1164648.908597 +1164711.007548 +1164783.072552 +1164835.494759 +1164910.957974 +1164984.246050 +1165046.400397 +1165102.589070 +1165187.736142 +1165263.731162 +1165335.350069 +1165377.316943 +1165463.171980 +1165530.223559 +1165619.194178 +1165624.909103 +1165746.883027 +1165803.710281 +1165870.565213 +1165896.696352 +1166016.441624 +1166064.478602 +1166142.244018 +1166207.755925 +1166293.023983 +1166312.154737 +1166385.306736 +1166482.452175 +1166554.447134 +1166587.144282 +1166686.231282 +1166740.623932 +1166789.239640 +1166880.126209 +1166945.835202 +1167034.620644 +1167095.240737 +1167152.170167 +1167230.377090 +1167305.880631 +1167350.240299 +1167426.500265 +1167506.320565 +1167562.267500 +1167612.271985 +1167705.958095 +1167787.044531 +1167819.809657 +1167903.288026 +1167978.854185 +1168045.784282 +1168066.443803 +1168170.696216 +1168220.959246 +1168267.149290 +1168342.735587 +1168433.367894 +1168502.517760 +1168571.051235 +1168639.675299 +1168715.152994 +1168775.601509 +1168844.296436 +1168898.854231 +1168952.494068 +1169026.937286 +1169102.207982 +1169145.778348 +1169224.837148 +1169287.521635 +1169380.332326 +1169432.011506 +1169504.170888 +1169609.148217 +1169610.595914 +1169670.394882 +1169751.267974 +1169836.649866 +1169886.094762 +1169938.840413 +1170053.320993 +1170096.030348 +1170137.149023 +1170234.442927 +1170290.662419 +1170347.919047 +1170415.777291 +1170470.010242 +1170535.076917 +1170643.763637 +1170681.414579 +1170736.519228 +1170807.916781 +1170864.526242 +1170947.737072 +1171025.778807 +1171086.418631 +1171154.576105 +1171191.246018 +1171243.949933 +1171347.656526 +1171409.166081 +1171486.124059 +1171533.017285 +1171628.463529 +1171645.127413 +1171728.947979 +1171824.207847 +1171860.076146 +1171928.301984 +1171994.546962 +1172054.196894 +1172110.013045 +1172202.177401 +1172248.610723 +1172343.757491 +1172347.356710 +1172440.391229 +1172514.914247 +1172569.343204 +1172660.988683 +1172693.022973 +1172774.903422 +1172853.268829 +1172897.955548 +1172956.787517 +1173042.678276 +1173087.231596 +1173187.281269 +1173247.400065 +1173294.627163 +1173349.493859 +1173440.460963 +1173485.986267 +1173554.473052 +1173613.535209 +1173669.267170 +1173763.240803 +1173795.176549 +1173858.541752 +1173954.022821 +1173969.435951 +1174065.789279 +1174135.571444 +1174181.395781 +1174261.217498 +1174320.147231 +1174391.206264 +1174451.507698 +1174546.721638 +1174563.775799 +1174659.967981 +1174721.392250 +1174733.228584 +1174834.544633 +1174890.029619 +1174971.086806 +1175018.691201 +1175079.871336 +1175164.308019 +1175199.657953 +1175285.709909 +1175356.449303 +1175396.351436 +1175473.199418 +1175511.580116 +1175606.410770 +1175642.615446 +1175753.835461 +1175791.340203 +1175843.193887 +1175913.837352 +1175983.041066 +1176025.770431 +1176094.352934 +1176126.640265 +1176265.155834 +1176288.826539 +1176387.307082 +1176425.105830 +1176459.849391 +1176536.312782 +1176611.108038 +1176665.248985 +1176748.963259 +1176835.688237 +1176835.688237 +1176897.245094 +1176980.414670 +1177059.146523 +1177103.867795 +1177156.521235 +1177262.995748 +1177281.752578 +1177347.973934 +1177417.245502 +1177481.193760 +1177553.197883 +1177620.292133 +1177676.408018 +1177743.774254 +1177819.078281 +1177867.866955 +1177938.101459 +1177956.814837 +1178051.244998 +1178134.677859 +1178178.920746 +1178254.139313 +1178284.921337 +1178368.454597 +1178421.746998 +1178514.216719 +1178552.635300 +1178611.073539 +1178679.746682 +1178752.522420 +1178814.648639 +1178841.139312 +1178913.108501 +1178990.038395 +1179046.838202 +1179124.488107 +1179186.353588 +1179228.559039 +1179299.702390 +1179335.815231 +1179398.846922 +1179475.895446 +1179557.488227 +1179593.128260 +1179660.125621 +1179706.062772 +1179780.064610 +1179855.763171 +1179886.107741 +1179993.650289 +1180039.046182 +1180085.582130 +1180144.552148 +1180224.804025 +1180275.151123 +1180324.989188 +1180406.825745 +1180461.154083 +1180489.017309 +1180580.549097 +1180666.129398 +1180717.825719 +1180779.348663 +1180833.914081 +1180887.521446 +1180959.123049 +1181026.945428 +1181057.856669 +1181141.418119 +1181210.893628 +1181279.727027 +1181329.027257 +1181354.515633 +1181465.732232 +1181524.477669 +1181569.679848 +1181604.710505 +1181702.834550 +1181751.623989 +1181790.447689 +1181869.293448 +1181903.260865 +1182006.717360 +1182025.708764 +1182118.523367 +1182181.128564 +1182233.894273 +1182265.200827 +1182327.769865 +1182413.265915 +1182464.833628 +1182532.788690 +1182566.912528 +1182618.346969 +1182733.982860 +1182781.542570 +1182809.128568 +1182867.161477 +1182916.858882 +1183007.651165 +1183092.618963 +1183156.334434 +1183196.035114 +1183245.514884 +1183284.261518 +1183350.276569 +1183422.173293 +1183496.569614 +1183544.899287 +1183621.684905 +1183672.879230 +1183732.705672 +1183797.392940 +1183838.471842 +1183888.700278 +1183971.194584 +1184035.944016 +1184072.517648 +1184123.373855 +1184232.269437 +1184254.609447 +1184328.062051 +1184365.348334 +1184415.170496 +1184494.008481 +1184572.746112 +1184617.719599 +1184691.900221 +1184762.988582 +1184808.457071 +1184861.018786 +1184896.247884 +1184968.919780 +1185038.292105 +1185086.196470 +1185157.042506 +1185221.918763 +1185273.610513 +1185335.052215 +1185408.331647 +1185419.346835 +1185529.454120 +1185575.836093 +1185614.553074 +1185660.512128 +1185721.441853 +1185804.889533 +1185848.043188 +1185913.150474 +1185988.627787 +1186021.591132 +1186076.801229 +1186140.262114 +1186213.507465 +1186275.426976 +1186314.599893 +1186389.965697 +1186437.506440 +1186482.018544 +1186557.157633 +1186613.864899 +1186680.317114 +1186727.730265 +1186805.546129 +1186837.932797 +1186907.669107 +1186957.211865 +1187039.066137 +1187059.334166 +1187177.522341 +1187210.085793 +1187262.356360 +1187329.368149 +1187389.976715 +1187439.831876 +1187486.128532 +1187542.733462 +1187593.327589 +1187668.925969 +1187724.085466 +1187799.366324 +1187858.674564 +1187916.633680 +1187964.256828 +1188001.403222 +1188068.540732 +1188132.283660 +1188184.345889 +1188238.025934 +1188301.912484 +1188383.424722 +1188414.236118 +1188464.598664 +1188552.093890 +1188591.176653 +1188663.329389 +1188700.163668 +1188732.810974 +1188846.137209 +1188886.222290 +1188923.000637 +1188991.662916 +1189052.350740 +1189142.220657 +1189168.074480 +1189233.052475 +1189293.670686 +1189341.335798 +1189416.542352 +1189455.734325 +1189509.466676 +1189573.048457 +1189598.201060 +1189685.609628 +1189742.775641 +1189780.024941 +1189827.802419 +1189893.570137 +1189967.147897 +1190030.614039 +1190063.036973 +1190140.580460 +1190184.472499 +1190238.995126 +1190314.064937 +1190373.220055 +1190421.692051 +1190468.555625 +1190553.202659 +1190589.610262 +1190634.096782 +1190693.516797 +1190743.502578 +1190818.622890 +1190893.578470 +1190927.776899 +1190936.080934 +1191040.453935 +1191095.432189 +1191165.474503 +1191195.590507 +1191271.736929 +1191284.973008 +1191393.343381 +1191413.713489 +1191484.314412 +1191546.293650 +1191591.494282 +1191628.871733 +1191682.074162 +1191742.780077 +1191822.479551 +1191883.850207 +1191930.186883 +1191971.273108 +1192032.045954 +1192078.117022 +1192148.449146 +1192189.841916 +1192278.581053 +1192310.796658 +1192352.002408 +1192454.083850 +1192483.040599 +1192534.732933 +1192573.802519 +1192640.510308 +1192721.944184 +1192740.426499 +1192806.608988 +1192863.763475 +1192925.250559 +1192979.243667 +1193034.107932 +1193089.261126 +1193142.308543 +1193174.921296 +1193265.904950 +1193300.784125 +1193367.774014 +1193398.850377 +1193490.455233 +1193537.723336 +1193587.731739 +1193628.309560 +1193682.929418 +1193753.193289 +1193795.093148 +1193845.969867 +1193930.374661 +1193982.970971 +1194047.990632 +1194048.014700 +1194124.628551 +1194200.061616 +1194253.999256 +1194261.689774 +1194319.681750 +1194414.715648 +1194463.797613 +1194517.543151 +1194559.012701 +1194618.364636 +1194654.862093 +1194739.027608 +1194771.181992 +1194841.680483 +1194879.681081 +1194955.530175 +1194998.924212 +1195037.877089 +1195118.287066 +1195170.174870 +1195212.049481 +1195267.227894 +1195274.168793 +1195379.885276 +1195427.352085 +1195491.511819 +1195502.846065 +1195563.741091 +1195635.829174 +1195706.059609 +1195768.996952 +1195793.697382 +1195853.435881 +1195910.598298 +1195944.349054 +1196034.750085 +1196062.622208 +1196149.963492 +1196191.904019 +1196238.034982 +1196278.577703 +1196357.806205 +1196368.927134 +1196437.588697 +1196488.802438 +1196554.231019 +1196585.791415 +1196637.025453 +1196714.605934 +1196772.940189 +1196824.637687 +1196854.570897 +1196950.418401 +1196964.082977 +1197040.432843 +1197074.034608 +1197173.513763 +1197200.024939 +1197269.209457 +1197290.212703 +1197356.335494 +1197392.504661 +1197467.228170 +1197492.165438 +1197545.509080 +1197617.313137 +1197684.674755 +1197731.385341 +1197797.652785 +1197837.502331 +1197880.503034 +1197930.094021 +1198014.428308 +1198037.092497 +1198093.728829 +1198154.863778 +1198196.898198 +1198276.222085 +1198306.368767 +1198369.417474 +1198413.424100 +1198481.880024 +1198530.191905 +1198554.411846 +1198608.289328 +1198664.950538 +1198737.381911 +1198789.043745 +1198841.597931 +1198905.184319 +1198943.818918 +1198991.607133 +1199049.700773 +1199109.889422 +1199137.379965 +1199194.403642 +1199279.003728 +1199333.834211 +1199382.818779 +1199402.557918 +1199449.598569 +1199519.332133 +1199571.704694 +1199630.599637 +1199663.243744 +1199721.358427 +1199764.040631 +1199847.172693 +1199872.529905 +1199957.299184 +1199995.451469 +1200015.630226 +1200094.606675 +1200162.523581 +1200217.138528 +1200254.130203 +1200306.052299 +1200368.370539 +1200431.685844 +1200431.685844 +1200517.496923 +1200573.854412 +1200629.657219 +1200667.824517 +1200739.561180 +1200794.245292 +1200836.759677 +1200861.577069 +1200948.130148 +1200990.413590 +1201055.316881 +1201077.886884 +1201166.550962 +1201196.136553 +1201255.946959 +1201295.961621 +1201359.503788 +1201412.959695 +1201472.377993 +1201504.548213 +1201565.876414 +1201611.661107 +1201632.202838 +1201699.250640 +1201757.727184 +1201825.332969 +1201903.997186 +1201903.997186 +1201991.977311 +1202003.600412 +1202037.986771 +1202128.501149 +1202202.074827 +1202253.845244 +1202292.818995 +1202323.266323 +1202376.023381 +1202437.545787 +1202492.566174 +1202553.385051 +1202558.804441 +1202624.834282 +1202720.181085 +1202744.308723 +1202797.675384 +1202832.825927 +1202882.871805 +1202957.642347 +1203015.802435 +1203069.640911 +1203100.932310 +1203155.329679 +1203201.101390 +1203242.522533 +1203285.081924 +1203344.741418 +1203404.575680 +1203447.658078 +1203505.981142 +1203537.333742 +1203599.108612 +1203667.132794 +1203701.430326 +1203746.400037 +1203813.657662 +1203840.142892 +1203944.970419 +1203948.203282 +1204013.984148 +1204055.302849 +1204088.716519 +1204136.368595 +1204202.410772 +1204274.486862 +1204290.611505 +1204364.129745 +1204423.045355 +1204461.819835 +1204536.460508 +1204552.316801 +1204639.035422 +1204653.212794 +1204725.704090 +1204752.759972 +1204823.570279 +1204874.953986 +1204931.680883 +1204989.833369 +1205031.236730 +1205074.333567 +1205115.861946 +1205163.193437 +1205224.261212 +1205287.189150 +1205322.038101 +1205352.089112 +1205432.778800 +1205492.931051 +1205505.991149 +1205581.347748 +1205600.354937 +1205637.800005 +1205750.776260 +1205784.511376 +1205813.401723 +1205872.068109 +1205941.999898 +1205956.406000 +1206002.731691 +1206068.955759 +1206132.441461 +1206145.689183 +1206210.021421 +1206246.708248 +1206323.119761 +1206362.251833 +1206417.634079 +1206480.640432 +1206480.746694 +1206534.120641 +1206611.640976 +1206684.008669 +1206706.352653 +1206742.552194 +1206814.987722 +1206863.296615 +1206879.412250 +1206956.650494 +1207006.793277 +1207040.936544 +1207100.044718 +1207136.107723 +1207221.426626 +1207245.976281 +1207291.319413 +1207330.461487 +1207419.634460 +1207436.582701 +1207483.003353 +1207538.402314 +1207593.886626 +1207643.641576 +1207674.196296 +1207707.813967 +1207783.026478 +1207817.603180 +1207863.748231 +1207896.434150 +1207981.320999 +1208032.974103 +1208076.988381 +1208112.600636 +1208177.188053 +1208259.797689 +1208259.797689 +1208301.737288 +1208371.792480 +1208419.661376 +1208431.884820 +1208511.815110 +1208553.062207 +1208603.236188 +1208638.987795 +1208686.592173 +1208728.206401 +1208799.405820 +1208827.493703 +1208891.387616 +1208961.216722 +1208973.095888 +1209046.473373 +1209109.767954 +1209141.091587 +1209169.029226 +1209227.270979 +1209301.104749 +1209342.952255 +1209345.645871 +1209410.330054 +1209453.654907 +1209517.290718 +1209573.772761 +1209622.363979 +1209659.462079 +1209727.418825 +1209773.270471 +1209794.623411 +1209853.220361 +1209884.909624 +1209960.603808 +1210002.392017 +1210042.485309 +1210073.164896 +1210144.404588 +1210175.913866 +1210254.925619 +1210259.914216 +1210328.987688 +1210388.143265 +1210421.544898 +1210471.153492 +1210548.000538 +1210548.000538 +1210622.321828 +1210676.457139 +1210731.335916 +1210760.438593 +1210799.002279 +1210828.455897 +1210891.505515 +1210965.495639 +1211003.681036 +1211048.433055 +1211098.406837 +1211149.218131 +1211194.803705 +1211233.708827 +1211294.060122 +1211332.586741 +1211390.163614 +1211423.233724 +1211457.598701 +1211515.821918 +1211570.057299 +1211618.566999 +1211662.923614 +1211698.003859 +1211753.325602 +1211789.370488 +1211838.192442 +1211882.854760 +1211944.180521 +1212016.087285 +1212053.735848 +1212077.949334 +1212112.427688 +1212174.292705 +1212213.212923 +1212260.265760 +1212310.812882 +1212382.169807 +1212409.183555 +1212445.246860 +1212514.164642 +1212573.305057 +1212609.775075 +1212659.418979 +1212695.991711 +1212740.420941 +1212782.079314 +1212814.488730 +1212860.596439 +1212941.355934 +1212982.730343 +1212987.053969 +1213058.757715 +1213112.737869 +1213171.114861 +1213196.444635 +1213231.153138 +1213307.500813 +1213343.260447 +1213383.501101 +1213439.006880 +1213494.938317 +1213509.732653 +1213560.384793 +1213596.710943 +1213672.547516 +1213693.154608 +1213749.352947 +1213797.144509 +1213861.554641 +1213861.873067 +1213944.309837 +1213999.328027 +1214050.472314 +1214092.836789 +1214112.280891 +1214157.849691 +1214203.943347 +1214260.213140 +1214338.485576 +1214350.110886 +1214439.692975 +1214439.692975 +1214491.985578 +1214545.466023 +1214616.921931 +1214624.624606 +1214645.276604 +1214688.769698 +1214770.478670 +1214835.554883 +1214883.926694 +1214931.336075 +1214931.336075 +1214994.287712 +1215034.902626 +1215093.112481 +1215132.522035 +1215168.467906 +1215222.462898 +1215252.884692 +1215297.933581 +1215375.778777 +1215401.992729 +1215432.287978 +1215465.784017 +1215546.143859 +1215589.909424 +1215627.858288 +1215659.148407 +1215693.180189 +1215744.195873 +1215805.201849 +1215845.852870 +1215892.906809 +1215942.280996 +1215968.708080 +1216021.824747 +1216085.695027 +1216094.704036 +1216151.209095 +1216185.429903 +1216226.691492 +1216286.034454 +1216325.971345 +1216367.102931 +1216417.311473 +1216491.785116 +1216545.278439 +1216565.515674 +1216622.930101 +1216648.762058 +1216670.504186 +1216734.109034 +1216795.389194 +1216807.694484 +1216897.495904 +1216897.495904 +1216945.706584 +1217000.073878 +1217045.614861 +1217066.045863 +1217136.199370 +1217182.434781 +1217230.830592 +1217253.688066 +1217313.392131 +1217348.623019 +1217375.177144 +1217458.016163 +1217492.794170 +1217537.866649 +1217575.389312 +1217635.362876 +1217658.786227 +1217714.443154 +1217754.128824 +1217801.233265 +1217828.559874 +1217875.712504 +1217928.024113 +1217955.541613 +1218006.658808 +1218073.447011 +1218110.234025 +1218158.135476 +1218186.171540 +1218262.428860 +1218296.336710 +1218333.980569 +1218353.941022 +1218414.131525 +1218481.800182 +1218502.171980 +1218511.780819 +1218611.164978 +1218612.846916 +1218693.511581 +1218738.909411 +1218777.082108 +1218800.092433 +1218814.116532 +1218916.093223 +1218939.357627 +1218981.880925 +1219026.000535 +1219070.447685 +1219103.082484 +1219133.003744 +1219198.645613 +1219253.402608 +1219302.337997 +1219324.916741 +1219385.610297 +1219385.610297 +1219461.862812 +1219528.347944 +1219528.347944 +1219602.732941 +1219633.096514 +1219677.166840 +1219728.280561 +1219762.666238 +1219808.391076 +1219847.079176 +1219895.593929 +1219934.191584 +1219996.697502 +1220024.127425 +1220055.432087 +1220102.122910 +1220166.689623 +1220189.259784 +1220224.869574 +1220275.572336 +1220326.228553 +1220379.572817 +1220407.986705 +1220455.341111 +1220498.384563 +1220535.299597 +1220592.866798 +1220633.228756 +1220680.113022 +1220710.105232 +1220770.983856 +1220797.465776 +1220827.743115 +1220889.675153 +1220940.460805 +1220954.745860 +1220999.969769 +1221030.055548 +1221087.805551 +1221143.514161 +1221174.418993 +1221241.564938 +1221281.975709 +1221342.718619 +1221350.496901 +1221391.193662 +1221424.844089 +1221518.021385 +1221535.284449 +1221563.015625 +1221640.523984 +1221651.902771 +1221691.045532 +1221737.733992 +1221791.533710 +1221807.614428 +1221846.106998 +1221910.963235 +1221950.418129 +1222003.455588 +1222044.118774 +1222096.397839 +1222117.543727 +1222169.540411 +1222200.320001 +1222235.798830 +1222269.464239 +1222335.425280 +1222379.055205 +1222414.938142 +1222443.324161 +1222480.851252 +1222536.232482 +1222615.283829 +1222627.469337 +1222695.876170 +1222722.772413 +1222728.303618 +1222795.561066 +1222857.309416 +1222872.655267 +1222918.445178 +1222987.786197 +1223022.912553 +1223084.424145 +1223116.011154 +1223116.011154 +1223157.141217 +1223218.533436 +1223261.630292 +1223304.205661 +1223361.783428 +1223396.543072 +1223440.141950 +1223505.220562 +1223527.878389 +1223552.861702 +1223604.134525 +1223621.644490 +1223701.772042 +1223716.164914 +1223770.806967 +1223821.292026 +1223852.469783 +1223885.852477 +1223930.391820 +1223981.263669 +1224043.203875 +1224043.203875 +1224128.975615 +1224141.556026 +1224193.354260 +1224222.386452 +1224286.256933 +1224324.634535 +1224381.005020 +1224388.602462 +1224435.729801 +1224490.767300 +1224523.976236 +1224566.857048 +1224607.871879 +1224657.079029 +1224687.282306 +1224784.791422 +1224784.791422 +1224829.650591 +1224860.714233 +1224943.528248 +1224943.528248 +1225007.028112 +1225028.230498 +1225087.766820 +1225106.853429 +1225151.430338 +1225201.551645 +1225227.674466 +1225294.741417 +1225302.059335 +1225363.958542 +1225412.383685 +1225452.634446 +1225478.513906 +1225533.770554 +1225555.661484 +1225635.531345 +1225655.000214 +1225685.308456 +1225747.457037 +1225776.337966 +1225821.458196 +1225866.358114 +1225896.580821 +1225940.641813 +1225994.489220 +1226027.239197 +1226106.800053 +1226112.872559 +1226166.367471 +1226204.590914 +1226250.347039 +1226267.332199 +1226293.899478 +1226368.131488 +1226412.980216 +1226461.199609 +1226488.082072 +1226511.136939 +1226552.230866 +1226605.550974 +1226661.062478 +1226700.540025 +1226730.490943 +1226791.801007 +1226808.226849 +1226855.367239 +1226920.236569 +1226960.994237 +1227003.465257 +1227016.498531 +1227064.296025 +1227093.851443 +1227134.055773 +1227185.851916 +1227248.471854 +1227249.629754 +1227324.977005 +1227370.164037 +1227393.702139 +1227447.584451 +1227469.167214 +1227513.828546 +1227548.250895 +1227605.920933 +1227666.473216 +1227679.355083 +1227687.791862 +1227770.185155 +1227852.001101 +1227864.385327 +1227902.790710 +1227916.283838 +1227953.559099 +1228017.872553 +1228067.011959 +1228105.749139 +1228172.251763 +1228172.251763 +1228216.568760 +1228266.094523 +1228311.931658 +1228352.718070 +1228376.511270 +1228435.176973 +1228444.141801 +1228488.160037 +1228565.681603 +1228584.371708 +1228650.577707 +1228670.937976 +1228710.316351 +1228761.288450 +1228769.186307 +1228865.878664 +1228880.628448 +1228913.102508 +1228913.102508 +1228984.529332 +1229027.843072 +1229051.612077 +1229111.003279 +1229169.425886 +1229177.733474 +1229251.494360 +1229261.779273 +1229350.577188 +1229350.577188 +1229417.590046 +1229417.829710 +1229452.030009 +1229508.426287 +1229558.404991 +1229580.880200 +1229644.294548 +1229668.910525 +1229738.193812 +1229772.587640 +1229808.316917 +1229858.715195 +1229858.715195 +1229923.648797 +1229938.322342 +1229993.761673 +1230041.645622 +1230087.716315 +1230132.025517 +1230185.953484 +1230212.564051 +1230246.991660 +1230299.294390 +1230332.901125 +1230369.266361 +1230378.306689 +1230417.626510 +1230484.736887 +1230523.103398 +1230579.287173 +1230596.576769 +1230655.910151 +1230692.559391 +1230709.910989 +1230776.202028 +1230819.472509 +1230826.643831 +1230855.122739 +1230915.135961 +1230972.107933 +1230995.369717 +1231055.160921 +1231081.267621 +1231132.881887 +1231194.670984 +1231194.670984 +1231237.045174 +1231281.385158 +1231337.791884 +1231357.452522 +1231409.434232 +1231436.544774 +1231496.564702 +1231527.732425 +1231559.350421 +1231595.630334 +1231651.506111 +1231678.717106 +1231718.478141 +1231743.359955 +1231802.119504 +1231848.295545 +1231890.555558 +1231899.262036 +1231945.756606 +1232020.297908 +1232043.300236 +1232073.513778 +1232122.418319 +1232153.966506 +1232213.795947 +1232226.223358 +1232260.398188 +1232293.095960 +1232333.268920 +1232382.142537 +1232437.929412 +1232461.109829 +1232505.436980 +1232535.353070 +1232573.043168 +1232625.545438 +1232676.424241 +1232695.413394 +1232729.218460 +1232796.961383 +1232839.465940 +1232844.651209 +1232896.210356 +1232969.505297 +1232972.858488 +1233033.007544 +1233047.467994 +1233126.186535 +1233128.442576 +1233164.145617 +1233203.272274 +1233236.595629 +1233299.660656 +1233352.199378 +1233369.742728 +1233424.358667 +1233464.392777 +1233510.440115 +1233541.809684 +1233582.083157 +1233595.084276 +1233627.799903 +1233704.572951 +1233712.704906 +1233763.376435 +1233778.942358 +1233830.009495 +1233890.605161 +1233924.502052 +1233924.502052 +1234005.278297 +1234022.699699 +1234099.125611 +1234106.054402 +1234149.980601 +1234197.516330 +1234215.532040 +1234254.918263 +1234310.652668 +1234346.515005 +1234375.290084 +1234411.015556 +1234481.663492 +1234488.180044 +1234531.023529 +1234568.295959 +1234622.503362 +1234626.023269 +1234672.812372 +1234716.973711 +1234777.457471 +1234805.672345 +1234864.215517 +1234896.557490 +1234923.972970 +1234964.517777 +1234995.076530 +1235014.897238 +1235068.036049 +1235115.720869 +1235138.359094 +1235166.713864 +1235229.097843 +1235291.659487 +1235300.226206 +1235319.527411 +1235372.130910 +1235425.384355 +1235451.857650 +1235483.123134 +1235534.358621 +1235575.177691 +1235609.048193 +1235666.074828 +1235677.528815 +1235724.902989 +1235724.902989 +1235770.738844 +1235819.333315 +1235886.346806 +1235912.361496 +1235926.707119 +1235979.895367 +1235998.094040 +1236067.769864 +1236109.645153 +1236140.093604 +1236181.280889 +1236204.588325 +1236247.260130 +1236305.266063 +1236316.638448 +1236382.204132 +1236405.280634 +1236445.796575 +1236463.919574 +1236494.123426 +1236497.367425 +1236588.633627 +1236611.315848 +1236658.504209 +1236694.835357 +1236755.630167 +1236777.373400 +1236811.709333 +1236841.116849 +1236891.947448 +1236917.645219 +1236958.488347 +1236993.971229 +1237046.997014 +1237081.265327 +1237120.227390 +1237178.424202 +1237186.225811 +1237241.749777 +1237266.646920 +1237286.182721 +1237356.955626 +1237385.342075 +1237415.771327 +1237442.426757 +1237507.339365 +1237520.630337 +1237552.549564 +1237597.154623 +1237622.154388 +1237649.043507 +1237720.574778 +1237746.016832 +1237755.758046 +1237815.664738 +1237882.397955 +1237897.994730 +1237943.748338 +1237983.457449 +1238013.837747 +1238050.389146 +1238090.905514 +1238126.019397 +1238151.726217 +1238190.271915 +1238237.540416 +1238283.877319 +1238305.607025 +1238355.906249 +1238396.046371 +1238449.263304 +1238459.096068 +1238522.471406 +1238554.401650 +1238567.420896 +1238610.073238 +1238658.915711 +1238694.737038 +1238715.606984 +1238758.193852 +1238816.726200 +1238822.929324 +1238869.177323 +1238883.155381 +1238961.577647 +1238961.577647 +1239002.430124 +1239044.857691 +1239106.170785 +1239157.625658 +1239164.065930 +1239181.547039 +1239212.146678 +1239266.448525 +1239335.518217 +1239357.445473 +1239389.371614 +1239426.843396 +1239493.582646 +1239513.278159 +1239522.170967 +1239573.448075 +1239595.356612 +1239647.447855 +1239688.012698 +1239706.055405 +1239730.497463 +1239792.041307 +1239856.152342 +1239856.152342 +1239886.387316 +1239951.128502 +1239963.471721 +1240030.337690 +1240065.276362 +1240108.297661 +1240146.470345 +1240146.470345 +1240189.535670 +1240270.553896 +1240278.480790 +1240303.240632 +1240366.735070 +1240370.997464 +1240401.031934 +1240447.384261 +1240524.799184 +1240529.649760 +1240575.982109 +1240614.610497 +1240621.021746 +1240662.304955 +1240725.815536 +1240770.944155 +1240779.942775 +1240824.221599 +1240850.191956 +1240931.465223 +1240931.465223 +1240995.991524 +1241010.842068 +1241068.960191 +1241101.181551 +1241122.506994 +1241172.861387 +1241188.100019 +1241237.698979 +1241292.318785 +1241296.110908 +1241355.151567 +1241381.658727 +1241409.367663 +1241447.934287 +1241460.400206 +1241525.100861 +1241551.554237 +1241592.409019 +1241637.742530 +1241665.337304 +1241731.461510 +1241755.821265 +1241814.622686 +1241833.850627 +1241865.162498 +1241888.625892 +1241923.846854 +1241975.210049 +1241995.018477 +1242061.215347 +1242069.151194 +1242113.273779 +1242139.185948 +1242222.020938 +1242232.885254 +1242301.109244 +1242301.109244 +1242371.807019 +1242391.378790 +1242393.325914 +1242437.560354 +1242492.550833 +1242523.611587 +1242537.638985 +1242578.852214 +1242638.835055 +1242667.028801 +1242703.912022 +1242738.448338 +1242764.844090 +1242803.259575 +1242842.876941 +1242858.829466 +1242910.587858 +1242935.264171 +1242991.998953 +1243029.180247 +1243055.386675 +1243083.476945 +1243122.277111 +1243171.620950 +1243207.573763 +1243265.418269 +1243270.274855 +1243305.296059 +1243350.222332 +1243375.029215 +1243443.160721 +1243456.303758 +1243509.866920 +1243510.051476 +1243549.809670 +1243602.216600 +1243647.634396 +1243671.466118 +1243682.171781 +1243747.375672 +1243780.720419 +1243832.561137 +1243876.294194 +1243902.130780 +1243924.643983 +1243965.474286 +1243978.217530 +1244048.090338 +1244077.297053 +1244115.792798 +1244130.864007 +1244169.860169 +1244212.938649 +1244238.928260 +1244282.676398 +1244306.281295 +1244367.242450 +1244367.242450 +1244440.705604 +1244489.454185 +1244506.248345 +1244531.187968 +1244567.140715 +1244605.963875 +1244628.897948 +1244679.563106 +1244679.757641 +1244734.626794 +1244786.837900 +1244816.754525 +1244859.695647 +1244887.774538 +1244925.566337 +1244967.807370 +1244974.769977 +1245018.683189 +1245064.695892 +1245094.904535 +1245119.637108 +1245188.786354 +1245202.090125 +1245225.385974 +1245242.823168 +1245305.632981 +1245357.013651 +1245373.152205 +1245393.729267 +1245440.217673 +1245475.533346 +1245515.992392 +1245543.324030 +1245606.876980 +1245606.876980 +1245657.781669 +1245671.701645 +1245741.169893 +1245747.784277 +1245770.631651 +1245837.178655 +1245862.205662 +1245903.378049 +1245941.487038 +1245961.530525 +1246005.377932 +1246036.740149 +1246070.073308 +1246113.920415 +1246149.550139 +1246178.637969 +1246183.096911 +1246266.116805 +1246295.250335 +1246337.860024 +1246350.266098 +1246390.563155 +1246414.903422 +1246471.532032 +1246483.767792 +1246528.345135 +1246536.080741 +1246593.864211 +1246611.261590 +1246633.268073 +1246676.705616 +1246734.222867 +1246751.850490 +1246804.684141 +1246856.782659 +1246858.230140 +1246915.058271 +1246924.142672 +1246969.990791 +1246980.973578 +1247064.144916 +1247081.938199 +1247111.038829 +1247142.833897 +1247158.494042 +1247176.497010 +1247226.819239 +1247286.228571 +1247339.794061 +1247354.246078 +1247392.816756 +1247420.726546 +1247439.646273 +1247465.928635 +1247519.432936 +1247528.420787 +1247577.028302 +1247629.819340 +1247682.059503 +1247701.085541 +1247729.036502 +1247760.041704 +1247780.436437 +1247827.264050 +1247861.286462 +1247897.331987 +1247908.100931 +1247948.946763 +1247994.102639 +1247998.441402 +1248057.421489 +1248099.241258 +1248158.176102 +1248158.904333 +1248199.372331 +1248231.123386 +1248273.286401 +1248302.159957 +1248334.120015 +1248352.464134 +1248388.868057 +1248441.591590 +1248465.931459 +1248530.302415 +1248530.769934 +1248587.016204 +1248596.986190 +1248641.512222 +1248671.822805 +1248729.439890 +1248729.439890 +1248795.846177 +1248795.846177 +1248851.551608 +1248876.483292 +1248923.681369 +1248941.645315 +1248993.609379 +1249024.269731 +1249026.789592 +1249049.222128 +1249112.884611 +1249151.376862 +1249196.405474 +1249217.751692 +1249243.131023 +1249294.417379 +1249318.339723 +1249356.344620 +1249396.689176 +1249421.584790 +1249434.810373 +1249490.611490 +1249519.524135 +1249519.524135 +1249599.387565 +1249625.765497 +1249638.138684 +1249693.716146 +1249736.919157 +1249744.579896 +1249803.744066 +1249813.246743 +1249873.587094 +1249907.099848 +1249936.547614 +1249964.150444 +1249993.782655 +1250029.536021 +1250059.265076 +1250103.796342 +1250131.509256 +1250143.431887 +1250189.090301 +1250235.645476 +1250266.410890 +1250284.381905 +1250300.365915 +1250380.522330 +1250413.313904 +1250444.465624 +1250444.465624 +1250490.542143 +1250554.156001 +1250554.156001 +1250593.516735 +1250628.801119 +1250672.042536 +1250716.964341 +1250757.366927 +1250757.366927 +1250797.998215 +1250842.148776 +1250858.609582 +1250904.836851 +1250951.098114 +1250956.044425 +1251001.011375 +1251038.211482 +1251089.893064 +1251113.383166 +1251144.849985 +1251160.191032 +1251210.753329 +1251210.753329 +1251265.488128 +1251301.998735 +1251336.857198 +1251389.901102 +1251400.798423 +1251436.942202 +1251470.265887 +1251505.942375 +1251555.118045 +1251555.118045 +1251628.726830 +1251628.726830 +1251679.420950 +1251705.376342 +1251753.573192 +1251772.013415 +1251782.320973 +1251817.208985 +1251859.816829 +1251869.077145 +1251912.204906 +1251950.949359 +1251996.810245 +1252032.209438 +1252055.548237 +1252080.092965 +1252113.134627 +1252155.442266 +1252204.633433 +1252204.635315 +1252277.829416 +1252277.829416 +1252321.856457 +1252358.941702 +1252393.352150 +1252427.047517 +1252454.248753 +1252454.248753 +1252489.884849 +1252549.113375 +1252572.681286 +1252607.518300 +1252641.002163 +1252692.018403 +1252739.127508 +1252773.784782 +1252773.784782 +1252795.133693 +1252818.805295 +1252848.953585 +1252949.355960 +1252949.355960 +1252991.562466 +1253012.128716 +1253059.018910 +1253081.920543 +1253101.275843 +1253158.734264 +1253164.513875 +1253211.182942 +1253228.505768 +1253259.298170 +1253303.919700 +1253339.276588 +1253374.199645 +1253399.624783 +1253438.820963 +1253471.463201 +1253495.376002 +1253537.736335 +1253585.449965 +1253587.698694 +1253608.498086 +1253652.095737 +1253685.137717 +1253717.039193 +1253758.940132 +1253780.879898 +1253813.111887 +1253865.140443 +1253872.821680 +1253915.693148 +1253948.609671 +1253978.950525 +1253978.950525 +1254048.427583 +1254117.092687 +1254137.485853 +1254165.590983 +1254181.609083 +1254220.229038 +1254232.104558 +1254270.562926 +1254295.289447 +1254332.279101 +1254355.547477 +1254390.511835 +1254434.628141 +1254473.444619 +1254506.509435 +1254526.636751 +1254563.067441 +1254598.621954 +1254610.226063 +1254646.759896 +1254692.654288 +1254723.599590 +1254756.765599 +1254777.844518 +1254830.841424 +1254843.199810 +1254898.034549 +1254936.769296 +1254936.769296 +1254982.927060 +1255014.938699 +1255044.171891 +1255064.674478 +1255124.021434 +1255163.639254 +1255177.196520 +1255207.985468 +1255245.166424 +1255267.411583 +1255298.604443 +1255319.508209 +1255387.557808 +1255387.557808 +1255429.178195 +1255486.289896 +1255496.827768 +1255504.175088 +1255560.117562 +1255598.133562 +1255636.377876 +1255636.377876 +1255691.608376 +1255703.302877 +1255775.023182 +1255775.023182 +1255834.353200 +1255847.658100 +1255882.710422 +1255920.181826 +1255923.999145 +1255973.862222 +1256007.588746 +1256050.379053 +1256076.395434 +1256103.497214 +1256126.134557 +1256157.783970 +1256182.874031 +1256240.142861 +1256267.301782 +1256273.033522 +1256326.944507 +1256351.402098 +1256376.672241 +1256419.138558 +1256458.123193 +1256462.392059 +1256500.116803 +1256538.557784 +1256579.373539 +1256611.785239 +1256623.903811 +1256702.656045 +1256702.656045 +1256731.156481 +1256738.903497 +1256781.378049 +1256833.725897 +1256849.395087 +1256879.686344 +1256930.677620 +1256952.071308 +1257002.912793 +1257024.328075 +1257041.013653 +1257077.405233 +1257093.646459 +1257144.346825 +1257180.482957 +1257188.912855 +1257228.740547 +1257246.157393 +1257302.046376 +1257332.662975 +1257387.774599 +1257398.247103 +1257427.616140 +1257452.957564 +1257485.358963 +1257533.862761 +1257547.451947 +1257564.135358 +1257608.818628 +1257610.866728 +1257674.158047 +1257689.203716 +1257729.305238 +1257775.232634 +1257802.230572 +1257836.119819 +1257904.353719 +1257904.353719 +1257928.993071 +1257943.395926 +1257998.856097 +1258023.334120 +1258065.188965 +1258075.852068 +1258111.621425 +1258136.833073 +1258152.381659 +1258182.209429 +1258227.914693 +1258251.049075 +1258341.730335 +1258341.730335 +1258358.701531 +1258391.457995 +1258406.771898 +1258457.192536 +1258493.887867 +1258527.167956 +1258535.903707 +1258567.941941 +1258606.868556 +1258639.954849 +1258663.365418 +1258723.628845 +1258749.797993 +1258779.029082 +1258803.557442 +1258826.796592 +1258830.949655 +1258871.107780 +1258914.921448 +1258941.788734 +1258966.336537 +1259017.213936 +1259037.234302 +1259083.924623 +1259088.077690 +1259145.392759 +1259161.460793 +1259221.039154 +1259258.872685 +1259263.424403 +1259263.781852 +1259304.742538 +1259344.279035 +1259393.466556 +1259393.466556 +1259438.630985 +1259465.519744 +1259486.785577 +1259531.123579 +1259561.090705 +1259589.556832 +1259625.307843 +1259663.814702 +1259689.419260 +1259723.945273 +1259765.835938 +1259799.899665 +1259802.358010 +1259845.483434 +1259845.483434 +1259884.797082 +1259917.716678 +1259941.086876 +1259968.662669 +1260018.141183 +1260043.299435 +1260087.925330 +1260129.143641 +1260162.908620 +1260162.908620 +1260216.894147 +1260217.011262 +1260263.548700 +1260293.777154 +1260335.777977 +1260335.777977 +1260360.346569 +1260422.873252 +1260456.647872 +1260456.647872 +1260507.098647 +1260513.651786 +1260550.042238 +1260580.258250 +1260614.060646 +1260643.089495 +1260703.215598 +1260718.662252 +1260757.342700 +1260757.342700 +1260792.447293 +1260816.876990 +1260858.035663 +1260896.915269 +1260919.787451 +1260951.547150 +1260982.659742 +1260999.376862 +1261024.804664 +1261075.178972 +1261084.719221 +1261139.756780 +1261164.442635 +1261222.833536 +1261222.833536 +1261282.420959 +1261282.420959 +1261310.531535 +1261342.015215 +1261357.109025 +1261392.216467 +1261415.640844 +1261463.557055 +1261493.268373 +1261501.488171 +1261558.202749 +1261569.248348 +1261626.604501 +1261652.122688 +1261701.759939 +1261701.759939 +1261746.363761 +1261772.807272 +1261818.402813 +1261818.402813 +1261841.415353 +1261870.681727 +1261900.978261 +1261960.064750 +1261988.696414 +1262011.836586 +1262050.161783 +1262050.161783 +1262114.259100 +1262114.259100 +1262147.714527 +1262157.640848 +1262216.392597 +1262229.160328 +1262274.801042 +1262297.733745 +1262330.054169 +1262348.790763 +1262395.843823 +1262440.534068 +1262440.534068 +1262477.039686 +1262505.537046 +1262516.794756 +1262565.411816 +1262571.154758 +1262615.391878 +1262653.217660 +1262680.540917 +1262726.229016 +1262744.229276 +1262746.499436 +1262789.322906 +1262806.042022 +1262873.993389 +1262890.482657 +1262923.700640 +1262949.795023 +1263005.004708 +1263018.083239 +1263065.347298 +1263065.347298 +1263094.496406 +1263115.700865 +1263136.917830 +1263185.877777 +1263216.634998 +1263216.634998 +1263262.874360 +1263279.348384 +1263335.809572 +1263364.822251 +1263382.462844 +1263405.463427 +1263463.194253 +1263463.194253 +1263511.655374 +1263519.656682 +1263550.161842 +1263558.737489 +1263630.550680 +1263650.924140 +1263665.808181 +1263704.905250 +1263754.072789 +1263770.481429 +1263791.751533 +1263842.110264 +1263850.534434 +1263876.547933 +1263876.547933 +1263946.357530 +1263980.028576 +1264001.592558 +1264031.536055 +1264055.478036 +1264076.006336 +1264141.394321 +1264141.394321 +1264158.149902 +1264177.032140 +1264250.380068 +1264251.172868 +1264296.234058 +1264304.784528 +1264332.824525 +1264346.637161 +1264402.746508 +1264429.130749 +1264478.916275 +1264499.923157 +1264523.680692 +1264562.061741 +1264580.512170 +1264603.455115 +1264643.400122 +1264665.917114 +1264688.424427 +1264705.745064 +1264763.178918 +1264779.722714 +1264803.269905 +1264825.406390 +1264844.382039 +1264903.983938 +1264915.461236 +1264949.344386 +1264949.344386 +1265018.161301 +1265042.067202 +1265080.296485 +1265090.821763 +1265129.987356 +1265152.706361 +1265188.410485 +1265226.563353 +1265237.776127 +1265272.620555 +1265280.051726 +1265306.314234 +1265362.200728 +1265398.831569 +1265409.558991 +1265453.404951 +1265457.449693 +1265492.508057 +1265529.603343 +1265537.243653 +1265594.195162 +1265628.336880 +1265642.718359 +1265652.742921 +1265687.412661 +1265727.846982 +1265776.442895 +1265776.442895 +1265805.564160 +1265838.011301 +1265859.300107 +1265916.076541 +1265936.432249 +1265953.407993 +1266004.324982 +1266012.550341 +1266043.474946 +1266069.767752 +1266110.357864 +1266147.924905 +1266181.606535 +1266190.227207 +1266203.844702 +1266239.564397 +1266262.590610 +1266300.572052 +1266317.248386 +1266367.251935 +1266403.738410 +1266422.890769 +1266455.717627 +1266455.717627 +1266519.596215 +1266551.169944 +1266567.741742 +1266582.024518 +1266626.492976 +1266648.160385 +1266682.862500 +1266717.126219 +1266747.807063 +1266764.706007 +1266767.259015 +1266814.387760 +1266849.521034 +1266858.721049 +1266889.608214 +1266928.310263 +1266950.598795 +1267014.821819 +1267040.859897 +1267040.859897 +1267101.415505 +1267101.415505 +1267115.649462 +1267132.211061 +1267212.184569 +1267214.411799 +1267264.232989 +1267274.486221 +1267311.799169 +1267328.242614 +1267364.953950 +1267400.707302 +1267420.742558 +1267467.602955 +1267493.787525 +1267515.010445 +1267534.650140 +1267568.217921 +1267593.109328 +1267595.969931 +1267632.988172 +1267703.348619 +1267722.280136 +1267723.688141 +1267775.684010 +1267813.706565 +1267813.706565 +1267827.418738 +1267853.924897 +1267905.295583 +1267930.960268 +1267974.829458 +1268020.598194 +1268020.598194 +1268055.152325 +1268075.848548 +1268100.919840 +1268132.647191 +1268145.935109 +1268203.060349 +1268238.909856 +1268260.202058 +1268260.202058 +1268260.202058 +1268302.737761 +1268344.616614 +1268404.988617 +1268416.230417 +1268436.117311 +1268475.481735 +1268478.154160 +1268557.539682 +1268561.813865 +1268575.976568 +1268603.538574 +1268626.577658 +1268681.356767 +1268681.356767 +1268721.336671 +1268754.927746 +1268791.354822 +1268804.514679 +1268844.895415 +1268862.857037 +1268896.170881 +1268918.273615 +1268935.691497 +1268967.022751 +1269013.776515 +1269044.944741 +1269057.637882 +1269065.336984 +1269141.306619 +1269141.306619 +1269178.844395 +1269205.942481 +1269246.505549 +1269246.505549 +1269272.064254 +1269308.412990 +1269332.345521 +1269365.480057 +1269409.460467 +1269415.971586 +1269472.772247 +1269506.248975 +1269506.248975 +1269516.914087 +1269584.598021 +1269600.718056 +1269620.256208 +1269627.956836 +1269677.721591 +1269677.721591 +1269769.812475 +1269769.812475 +1269790.289376 +1269837.634924 +1269839.996946 +1269873.851944 +1269908.268471 +1269951.483372 +1269956.554647 +1269988.543897 +1270003.066126 +1270051.744454 +1270082.148678 +1270095.653824 +1270119.749207 +1270150.717605 +1270161.968110 +1270206.815567 +1270211.674864 +1270248.626273 +1270288.671626 +1270309.476769 +1270334.500319 +1270380.420541 +1270422.307166 +1270438.309489 +1270450.032991 +1270482.505620 +1270538.664942 +1270538.664942 +1270564.980807 +1270612.350682 +1270638.788671 +1270684.685473 +1270684.685473 +1270719.969171 +1270752.244634 +1270752.244634 +1270752.244634 +1270825.764416 +1270825.764416 +1270890.906709 +1270898.624766 +1270925.356692 +1270953.144115 +1270972.855788 +1271003.622961 +1271032.825773 +1271073.388735 +1271073.388735 +1271143.968134 +1271172.732624 +1271186.118571 +1271198.255636 +1271241.041229 +1271268.243772 +1271299.177571 +1271299.736357 +1271330.424181 +1271364.004391 +1271396.793828 +1271410.326240 +1271453.342171 +1271484.327127 +1271533.588246 +1271551.017202 +1271569.710184 +1271595.062761 +1271619.846709 +1271627.136560 +1271697.777697 +1271709.322482 +1271750.647287 +1271750.647287 +1271770.237386 +1271800.458599 +1271832.817596 +1271858.281397 +1271911.462726 +1271920.459013 +1271971.575838 +1271971.575838 +1272015.429828 +1272015.429828 +1272051.101591 +1272082.274741 +1272155.218884 +1272155.218884 +1272179.528178 +1272184.498347 +1272224.082027 +1272258.686415 +1272308.858572 +1272310.776976 +1272349.364979 +1272349.364979 +1272380.895286 +1272414.671260 +1272457.052037 +1272457.052037 +1272503.381926 +1272518.348701 +1272563.090186 +1272608.691501 +1272608.691501 +1272634.585419 +1272679.220365 +1272719.298676 +1272725.107342 +1272725.107342 +1272781.138736 +1272811.772508 +1272831.096083 +1272843.753821 +1272881.815608 +1272881.815608 +1272944.339487 +1272944.339487 +1272981.698085 +1273016.847111 +1273044.350937 +1273063.856710 +1273097.590891 +1273137.144750 +1273181.439049 +1273181.439049 +1273191.424457 +1273240.350024 +1273248.042798 +1273295.639428 +1273303.709915 +1273337.246900 +1273379.249435 +1273379.249435 +1273418.253746 +1273461.690248 +1273481.917835 +1273520.718145 +1273520.718145 +1273546.819875 +1273582.181628 +1273616.672467 +1273659.159852 +1273670.646872 +1273687.376187 +1273739.898048 +1273753.524735 +1273775.426169 +1273788.005381 +1273799.017653 +1273862.175918 +1273873.061018 +1273904.764555 +1273963.615653 +1273982.966837 +1273995.855346 +1274026.424598 +1274047.982231 +1274063.680398 +1274063.680398 +1274117.976250 +1274161.275244 +1274177.470442 +1274223.477896 +1274236.108446 +1274269.672107 +1274283.905765 +1274301.574070 +1274374.875625 +1274391.384932 +1274391.384932 +1274416.876373 +1274444.250266 +1274473.572848 +1274505.587688 +1274507.817705 +1274555.842123 +1274577.093576 +1274626.198378 +1274632.268231 +1274632.268231 +1274675.529333 +1274717.522950 +1274729.845508 +1274801.992750 +1274811.878289 +1274827.124386 +1274835.985540 +1274875.523985 +1274903.675750 +1274926.604358 +1274951.593426 +1274984.954463 +1275001.262249 +1275024.994107 +1275055.733720 +1275065.873049 +1275114.588497 +1275150.171303 +1275164.602746 +1275190.582629 +1275200.191669 +1275239.834979 +1275248.269853 +1275322.872252 +1275322.872252 +1275374.261545 +1275380.547502 +1275441.818857 +1275452.721170 +1275452.721170 +1275470.704257 +1275536.129296 +1275536.129296 +1275554.124131 +1275591.404309 +1275629.010432 +1275646.069793 +1275669.497521 +1275682.665924 +1275715.429851 +1275745.627111 +1275787.680296 +1275797.659741 +1275852.406869 +1275852.406869 +1275875.239491 +1275920.636645 +1275920.636645 +1275942.942051 +1275970.832839 +1275998.674333 +1276035.618186 +1276068.621760 +1276097.848366 +1276121.863442 +1276136.304251 +1276167.727164 +1276177.189686 +1276246.495809 +1276255.331272 +1276264.444737 +1276294.532788 +1276294.532788 +1276351.637389 +1276381.521284 +1276392.591798 +1276432.375820 +1276459.348813 +1276483.418599 +1276519.095658 +1276519.095658 +1276544.159863 +1276593.281826 +1276625.140260 +1276645.502548 +1276668.394015 +1276672.790016 +1276723.069478 +1276727.135875 +1276762.259460 +1276802.414283 +1276827.245090 +1276827.245090 +1276853.693443 +1276858.012946 +1276926.296402 +1276943.826613 +1276967.557306 +1276990.969232 +1277034.378470 +1277061.633288 +1277087.948094 +1277098.145646 +1277101.214308 +1277159.634926 +1277162.468933 +1277221.036735 +1277221.036735 +1277244.706334 +1277287.533056 +1277306.555203 +1277320.409712 +1277347.461121 +1277372.092710 +1277419.769737 +1277443.368746 +1277459.018102 +1277481.510268 +1277513.590135 +1277537.270094 +1277537.270094 +1277588.357939 +1277588.357939 +1277642.837879 +1277677.239286 +1277690.192792 +1277753.901694 +1277753.901694 +1277763.874606 +1277786.440576 +1277815.279136 +1277827.482671 +1277867.647877 +1277906.684352 +1277906.684352 +1277953.128249 +1277975.163685 +1277997.352747 +1277997.352747 +1278065.048459 +1278065.048459 +1278097.171004 +1278111.001964 +1278155.692493 +1278155.692493 +1278193.128308 +1278201.363876 +1278221.719451 +1278265.163257 +1278334.358675 +1278334.358675 +1278342.930114 +1278378.639999 +1278397.945658 +1278444.648606 +1278448.543828 +1278490.969322 +1278490.969322 +1278556.179506 +1278556.179506 +1278589.597397 +1278599.941664 +1278632.610803 +1278668.483031 +1278680.691349 +1278680.691349 +1278735.926432 +1278735.926432 +1278752.406696 +1278839.225347 +1278847.527030 +1278850.073082 +1278850.073082 +1278885.729480 +1278925.636047 +1278948.732673 +1278963.062362 +1279020.170786 +1279030.326650 +1279079.029492 +1279088.076137 +1279106.196100 +1279126.406272 +1279157.315043 +1279170.956404 +1279187.565212 +1279225.428634 +1279235.151729 +1279293.877434 +1279296.139291 +1279332.657411 +1279332.657411 +1279362.861237 +1279400.006264 +1279425.640612 +1279445.473209 +1279484.545432 +1279495.861069 +1279525.040074 +1279545.890610 +1279558.860346 +1279615.698164 +1279615.698164 +1279673.535612 +1279688.577997 +1279727.152534 +1279727.152534 +1279772.032303 +1279786.319360 +1279796.183388 +1279813.286073 +1279871.886413 +1279888.996643 +1279888.996643 +1279926.617051 +1279945.804910 +1280008.167901 +1280008.167901 +1280020.865185 +1280078.261637 +1280078.261637 +1280101.744533 +1280103.129169 +1280154.634928 +1280175.571780 +1280184.631261 +1280218.337430 +1280243.047176 +1280290.201740 +1280290.201740 +1280309.935007 +1280362.181573 +1280372.707949 +1280400.819202 +1280434.739521 +1280467.194347 +1280467.194347 +1280469.401675 +1280519.566628 +1280541.422485 +1280551.127550 +1280588.140260 +1280634.011142 +1280664.097835 +1280693.309186 +1280693.820539 +1280707.725053 +1280723.882073 +1280742.864044 +1280799.872639 +1280800.910607 +1280858.854022 +1280861.085593 +1280882.888599 +1280925.095909 +1280963.750618 +1280963.750618 +1280982.023663 +1281012.258344 +1281025.947238 +1281056.006434 +1281098.371123 +1281122.242506 +1281125.210618 +1281146.903151 +1281174.613581 +1281210.436463 +1281244.416341 +1281264.681011 +1281322.720125 +1281323.930769 +1281361.040143 +1281361.040143 +1281386.330607 +1281386.330607 +1281418.762650 +1281454.854644 +1281469.417407 +1281475.677047 +1281516.644024 +1281543.265295 +1281566.358233 +1281585.558910 +1281641.223721 +1281641.223721 +1281696.820815 +1281696.820815 +1281740.512302 +1281740.512302 +1281798.912387 +1281798.912387 +1281829.033513 +1281840.553878 +1281899.506430 +1281899.506430 +1281899.506430 +1281952.596933 +1281978.009087 +1282005.345930 +1282005.345930 +1282034.032131 +1282044.915977 +1282069.446112 +1282109.267092 +1282175.639805 +1282175.639805 +1282175.639805 +1282216.951669 +1282217.827952 +1282283.119013 +1282283.119013 +1282315.181877 +1282315.181877 +1282346.765616 +1282359.245203 +1282369.443677 +1282419.329166 +1282453.175911 +1282457.432924 +1282525.134028 +1282525.134028 +1282554.918550 +1282607.596237 +1282607.596237 +1282629.092034 +1282638.766968 +1282655.974891 +1282687.369048 +1282695.001056 +1282741.449919 +1282782.691237 +1282782.691237 +1282805.573071 +1282841.224105 +1282853.015308 +1282898.999183 +1282898.999183 +1282923.561918 +1282953.853300 +1282953.853300 +1282990.239079 +1283026.132604 +1283030.180026 +1283090.699765 +1283090.699765 +1283128.547782 +1283161.134311 +1283161.134311 +1283186.659692 +1283229.614399 +1283266.630708 +1283266.630708 +1283266.630708 +1283323.511398 +1283323.511398 +1283367.674069 +1283372.414351 +1283394.599913 +1283422.248491 +1283441.311319 +1283503.505183 +1283513.963697 +1283513.963697 +1283553.394621 +1283557.213400 +1283594.186101 +1283612.980757 +1283646.027681 +1283657.717746 +1283672.110373 +1283719.920984 +1283731.603878 +1283738.026622 +1283783.571165 +1283828.590765 +1283834.574479 +1283850.535304 +1283875.207174 +1283876.485025 +1283933.915013 +1283938.723922 +1283952.276852 +1283996.218067 +1284023.538567 +1284023.538567 +1284068.157268 +1284097.334383 +1284102.927778 +1284142.051740 +1284157.938262 +1284198.764256 +1284216.981783 +1284216.981783 +1284237.365803 +1284265.157045 +1284292.369725 +1284306.916840 +1284367.861037 +1284382.345667 +1284406.621855 +1284406.621855 +1284443.624991 +1284456.578104 +1284508.902018 +1284508.902018 +1284521.101660 +1284561.929087 +1284581.905285 +1284581.905285 +1284607.175482 +1284663.663640 +1284666.536028 +1284716.045501 +1284716.045501 +1284760.188638 +1284764.566487 +1284790.592572 +1284805.106393 +1284824.099353 +1284874.092869 +1284874.092869 +1284911.476801 +1284911.476801 +1284956.783409 +1284956.783409 +1285008.220509 +1285015.998136 +1285057.812588 +1285081.977341 +1285087.593164 +1285087.593164 +1285154.595542 +1285154.595542 +1285209.969502 +1285209.969502 +1285209.969502 +1285238.578626 +1285281.476594 +1285282.542369 +1285321.287365 +1285351.119676 +1285364.783590 +1285387.838745 +1285399.565271 +1285430.559453 +1285475.218653 +1285486.853028 +1285497.383002 +1285534.507464 +1285540.463535 +1285574.605275 +1285604.183930 +1285616.471144 +1285624.527948 +1285667.694740 +1285705.795779 +1285705.795779 +1285705.795779 +1285757.956314 +1285784.663587 +1285819.297499 +1285834.581312 +1285868.100722 +1285880.845404 +1285898.651480 +1285904.001836 +1285928.572635 +1285967.433436 +1285979.291654 +1286003.458324 +1286033.496774 +1286061.540498 +1286061.540498 +1286134.662623 +1286134.662623 +1286143.810874 +1286158.810049 +1286186.597741 +1286204.645641 +1286227.674456 +1286264.360269 +1286323.776516 +1286323.776516 +1286326.325320 +1286373.723766 +1286389.217213 +1286410.630986 +1286423.120023 +1286456.727619 +1286463.904711 +1286524.685243 +1286524.685243 +1286524.685243 +1286545.973261 +1286603.431190 +1286603.431190 +1286616.867072 +1286650.150979 +1286671.782544 +1286711.990369 +1286719.520743 +1286733.482714 +1286790.510990 +1286794.353767 +1286794.353767 +1286848.535681 +1286856.357939 +1286881.470304 +1286903.136592 +1286931.342548 +1286946.393912 +1286984.364121 +1286989.286666 +1287028.079340 +1287044.915445 +1287074.043901 +1287094.530382 +1287114.180108 +1287139.404940 +1287139.404940 +1287163.260076 +1287171.799462 +1287181.901789 +1287263.300464 +1287267.517595 +1287303.685408 +1287315.556478 +1287336.322932 +1287348.716500 +1287396.102104 +1287396.102104 +1287433.084308 +1287477.704681 +1287478.614007 +1287492.211247 +1287510.840503 +1287519.024614 +1287540.393782 +1287585.921187 +1287620.471165 +1287620.471165 +1287671.313577 +1287671.313577 +1287705.440525 +1287731.694833 +1287746.693445 +1287767.443442 +1287805.929150 +1287806.862472 +1287837.560737 +1287861.691177 +1287909.132853 +1287909.132853 +1287955.547081 +1287955.547081 +1287970.080088 +1287999.212189 +1288014.813520 +1288046.667703 +1288070.173665 +1288082.498052 +1288102.130251 +1288149.896598 +1288149.896598 +1288155.592780 +1288200.721569 +1288220.758619 +1288225.244815 +1288251.087258 +1288278.764425 +1288314.796275 +1288347.997053 +1288347.997053 +1288382.271026 +1288407.783219 +1288431.528350 +1288467.689168 +1288467.689168 +1288486.990016 +1288534.721336 +1288534.721336 +1288565.124012 +1288592.061433 +1288607.278743 +1288635.577904 +1288673.470196 +1288673.470196 +1288692.484063 +1288720.295245 +1288745.054378 +1288768.520041 +1288774.651513 +1288799.148787 +1288839.941503 +1288843.231889 +1288875.636005 +1288898.789007 +1288923.120291 +1288947.537317 +1288961.462524 +1288986.370793 +1289005.557226 +1289012.598726 +1289065.109287 +1289071.289407 +1289124.540473 +1289124.540473 +1289153.771001 +1289172.072359 +1289195.511620 +1289206.100438 +1289258.678578 +1289258.678578 +1289272.626729 +1289304.589152 +1289348.959917 +1289348.959917 +1289382.234684 +1289387.638651 +1289450.320898 +1289450.320898 +1289450.320898 +1289489.581818 +1289493.700026 +1289525.221233 +1289528.943106 +1289561.345396 +1289585.491159 +1289638.284402 +1289638.284402 +1289677.085988 +1289700.840022 +1289700.840022 +1289746.317987 +1289746.317987 +1289787.566178 +1289787.566178 +1289810.068470 +1289846.629492 +1289849.148637 +1289868.565574 +1289905.751720 +1289910.240293 +1289992.334978 +1289992.334978 +1289995.882668 +1290034.421624 +1290063.346886 +1290063.346886 +1290071.358637 +1290074.746522 +1290166.623199 +1290166.623199 +1290166.623199 +1290198.058990 +1290253.589210 +1290253.589210 +1290294.972726 +1290294.972726 +1290310.072882 +1290336.352691 +1290336.352691 +1290346.148986 +1290402.286350 +1290416.051730 +1290441.332766 +1290449.785607 +1290484.578419 +1290489.760024 +1290499.390726 +1290549.358764 +1290552.059635 +1290584.635329 +1290627.658182 +1290656.556640 +1290656.556640 +1290690.121072 +1290709.476091 +1290733.049406 +1290737.620050 +1290774.518066 +1290780.092879 +1290819.377497 +1290856.907929 +1290856.907929 +1290874.636690 +1290912.476617 +1290914.137736 +1290926.292539 +1290968.963269 +1290972.548816 +1291025.373448 +1291038.975852 +1291038.975852 +1291083.008024 +1291106.334285 +1291109.272352 +1291141.681221 +1291174.228699 +1291198.272146 +1291198.272146 +1291232.138113 +1291234.287305 +1291287.267105 +1291295.816202 +1291307.888938 +1291343.676378 +1291346.532528 +1291402.279116 +1291402.279116 +1291440.755288 +1291466.082178 +1291480.849734 +1291508.322368 +1291508.322368 +1291527.483552 +1291551.154929 +1291568.111839 +1291613.482334 +1291613.482334 +1291622.666273 +1291658.909653 +1291671.924974 +1291707.527066 +1291721.538548 +1291764.783526 +1291769.814731 +1291792.711620 +1291830.108557 +1291830.108557 +1291844.964186 +1291879.055826 +1291895.995681 +1291938.126424 +1291941.167760 +1291977.084206 +1292011.160400 +1292011.160400 +1292037.466294 +1292081.441307 +1292081.441307 +1292110.418119 +1292127.422269 +1292151.208492 +1292160.955891 +1292160.955891 +1292205.880987 +1292205.880987 +1292237.262108 +1292284.838386 +1292284.838386 +1292341.747857 +1292341.747857 +1292350.624915 +1292417.324507 +1292417.324507 +1292421.378718 +1292421.378718 +1292452.164407 +1292511.654441 +1292514.127980 +1292536.753378 +1292546.308857 +1292575.505880 +1292576.464376 +1292611.630344 +1292644.076435 +1292671.068515 +1292710.434678 +1292731.192527 +1292742.089688 +1292754.003528 +1292765.993630 +1292784.279982 +1292801.631060 +1292822.035154 +1292840.147730 +1292859.256244 +1292886.425173 +1292886.425173 +1292945.768063 +1292945.768063 +1293026.511955 +1293026.511955 +1293033.814144 +1293034.260207 +1293062.287796 +1293101.469723 +1293101.469723 +1293101.469723 +1293162.633857 +1293162.633857 +1293191.113315 +1293230.548153 +1293230.548153 +1293246.659882 +1293280.133360 +1293280.133360 +1293316.890741 +1293362.566057 +1293365.107505 +1293389.226070 +1293418.795914 +1293442.745940 +1293443.482324 +1293485.754534 +1293489.883364 +1293489.883364 +1293558.874793 +1293572.370617 +1293583.806282 +1293640.967855 +1293640.967855 +1293640.967855 +1293684.877390 +1293693.183164 +1293693.183164 +1293738.035202 +1293761.248028 +1293761.248028 +1293777.046055 +1293786.135736 +1293856.595313 +1293856.595313 +1293891.599683 +1293919.727688 +1293919.727688 +1293961.518873 +1293970.058063 +1293970.058063 +1293991.018214 +1294036.030148 +1294056.017898 +1294056.017898 +1294088.860373 +1294123.070093 +1294151.449391 +1294167.469215 +1294211.306567 +1294211.306567 +1294228.556103 +1294233.186859 +1294268.299694 +1294276.759185 +1294293.759185 +1294336.045691 +1294367.200439 +1294368.248566 +1294371.253545 +1294412.544161 +1294433.217519 +1294456.643077 +1294476.323852 +1294504.283392 +1294520.062704 +1294548.495496 +1294548.495496 +1294581.851690 +1294600.651920 +1294621.449006 +1294647.831432 +1294647.831432 +1294681.005125 +1294700.517497 +1294717.269250 +1294749.187252 +1294792.417663 +1294812.129228 +1294815.150341 +1294815.150341 +1294835.975724 +1294869.749212 +1294900.516266 +1294902.822030 +1294910.310256 +1294943.088487 +1294965.194450 +1294994.996333 +1295021.034458 +1295029.994640 +1295058.160165 +1295095.078332 +1295112.559978 +1295145.169107 +1295145.169107 +1295173.975755 +1295173.975755 +1295216.031196 +1295228.315143 +1295279.288157 +1295279.288157 +1295279.953701 +1295313.387381 +1295330.416980 +1295374.211079 +1295398.169586 +1295398.169586 +1295398.169586 +1295432.282990 +1295433.623439 +1295474.532681 +1295488.173885 +1295548.095840 +1295548.095840 +1295568.686845 +1295578.286964 +1295622.399517 +1295650.074489 +1295675.448940 +1295675.448940 +1295675.448940 +1295686.284019 +1295752.931608 +1295756.480656 +1295774.552516 +1295787.545624 +1295826.049316 +1295826.776892 +1295858.127444 +1295858.127444 +1295896.159711 +1295908.337178 +1295942.686777 +1295972.272150 +1296002.471308 +1296002.471308 +1296031.174584 +1296034.965060 +1296045.186996 +1296093.625854 +1296121.106291 +1296149.676376 +1296149.676376 +1296166.965411 +1296166.965411 +1296218.194674 +1296219.201766 +1296271.430375 +1296271.430375 +1296310.840076 +1296310.840076 +1296310.840076 +1296353.449648 +1296384.709825 +1296386.178010 +1296415.080367 +1296433.100297 +1296448.482238 +1296500.958732 +1296500.958732 +1296500.958732 +1296536.462007 +1296579.050750 +1296579.050750 +1296601.254905 +1296625.523697 +1296626.786728 +1296670.494689 +1296688.396455 +1296688.396455 +1296732.362077 +1296750.229139 +1296779.807306 +1296802.291726 +1296806.453610 +1296806.453610 +1296849.310922 +1296880.842584 +1296880.842584 +1296900.926607 +1296940.214007 +1296960.472210 +1296971.598802 +1296994.971154 +1297024.794375 +1297054.658684 +1297054.658684 +1297093.428693 +1297101.142591 +1297131.509577 +1297138.754944 +1297171.755763 +1297171.755763 +1297201.058478 +1297219.165414 +1297235.567359 +1297247.717650 +1297298.053144 +1297305.291972 +1297341.250232 +1297350.689845 +1297393.125816 +1297415.595466 +1297426.611444 +1297436.751784 +1297438.667639 +1297472.339906 +1297498.536153 +1297498.536153 +1297530.152311 +1297565.120553 +1297565.120553 +1297588.725988 +1297600.693184 +1297622.706816 +1297639.804872 +1297666.192835 +1297692.302991 +1297712.107778 +1297732.405330 +1297757.383544 +1297776.225669 +1297808.322622 +1297809.271287 +1297842.711062 +1297842.711062 +1297866.757365 +1297879.618725 +1297912.882953 +1297952.806900 +1297952.806900 +1297965.855936 +1298001.592259 +1298027.003466 +1298037.690944 +1298055.495760 +1298072.948041 +1298128.247143 +1298160.742849 +1298160.742849 +1298160.742849 +1298168.264937 +1298174.853664 +1298238.885823 +1298255.705115 +1298255.705115 +1298287.185117 +1298316.091327 +1298322.195235 +1298342.600782 +1298356.570429 +1298386.208291 +1298397.826006 +1298417.201873 +1298445.153538 +1298471.241859 +1298491.784269 +1298522.392223 +1298552.894748 +1298552.894748 +1298590.395920 +1298597.118378 +1298597.118378 +1298618.068884 +1298641.596642 +1298691.288314 +1298703.631439 +1298732.824691 +1298732.824691 +1298732.824691 +1298760.499925 +1298784.487000 +1298809.534232 +1298832.058148 +1298876.676268 +1298876.676268 +1298909.395280 +1298929.148436 +1298929.148436 +1298949.200753 +1298978.426762 +1298999.948880 +1299005.113061 +1299023.402577 +1299057.493433 +1299113.221352 +1299113.221352 +1299132.035625 +1299148.535688 +1299184.776327 +1299184.776327 +1299198.879429 +1299221.770531 +1299221.770531 +1299280.504261 +1299306.349211 +1299310.221740 +1299310.221740 +1299310.221740 +1299373.512170 +1299403.563295 +1299419.682864 +1299419.682864 +1299450.481173 +1299450.481173 +1299488.078296 +1299512.877500 +1299530.540271 +1299540.371327 +1299577.047317 +1299593.568754 +1299609.665039 +1299622.381972 +1299681.972498 +1299690.657365 +1299690.657365 +1299705.781093 +1299744.276765 +1299756.511075 +1299756.511075 +1299761.867203 +1299804.390608 +1299816.868112 +1299852.824724 +1299859.250074 +1299910.348456 +1299910.348456 +1299928.615842 +1299928.615842 +1299970.429184 +1299970.429184 +1300026.284117 +1300026.284117 +1300048.144892 +1300068.033785 +1300083.505533 +1300107.191850 +1300142.465198 +1300158.351136 +1300193.637484 +1300193.637484 +1300247.820344 +1300247.820344 +1300247.820344 +1300273.849136 +1300273.849136 +1300291.234716 +1300343.754953 +1300343.754953 +1300369.293490 +1300396.108386 +1300396.108386 +1300427.235771 +1300444.065038 +1300458.867661 +1300485.311503 +1300517.958679 +1300549.813394 +1300549.813394 +1300582.787468 +1300584.808013 +1300610.465062 +1300628.388481 +1300673.210962 +1300673.210962 +1300692.086818 +1300723.662966 +1300741.614132 +1300741.614132 +1300770.966714 +1300776.075164 +1300793.693850 +1300842.062242 +1300866.886552 +1300878.717588 +1300907.867742 +1300914.110970 +1300941.126872 +1300941.126872 +1300969.556630 +1300991.195241 +1301019.470237 +1301019.470237 +1301061.156390 +1301070.232980 +1301070.232980 +1301105.237724 +1301111.070769 +1301147.265413 +1301172.768894 +1301208.172648 +1301208.172648 +1301208.172648 +1301247.177242 +1301280.921283 +1301319.223784 +1301319.223784 +1301319.223784 +1301358.298762 +1301366.285598 +1301384.302397 +1301414.436522 +1301428.048501 +1301449.198555 +1301449.198555 +1301493.118238 +1301515.852854 +1301531.966335 +1301558.485338 +1301580.509371 +1301588.232203 +1301620.504018 +1301620.504018 +1301630.103493 +1301654.118901 +1301685.237087 +1301707.200888 +1301709.575132 +1301716.622841 +1301770.226068 +1301801.544304 +1301802.638061 +1301822.184134 +1301849.903044 +1301857.969337 +1301888.009572 +1301937.270728 +1301937.270728 +1301937.270728 +1301953.784045 +1301981.233288 +1302013.953160 +1302013.953160 +1302045.071326 +1302057.017942 +1302095.421732 +1302114.266022 +1302147.335476 +1302147.335476 +1302147.335476 +1302174.766428 +1302192.577821 +1302215.749593 +1302253.173117 +1302257.609206 +1302288.028475 +1302288.028475 +1302301.712749 +1302331.488963 +1302371.532726 +1302379.738433 +1302395.646548 +1302406.361950 +1302426.882562 +1302448.758881 +1302454.608920 +1302489.699143 +1302498.117322 +1302509.925481 +1302529.806440 +1302584.544374 +1302584.544374 +1302592.219185 +1302606.373160 +1302645.891644 +1302650.681696 +1302693.104263 +1302705.994672 +1302709.886214 +1302750.419739 +1302750.419739 +1302769.566737 +1302797.950568 +1302829.209479 +1302854.967555 +1302865.294647 +1302909.294179 +1302912.158901 +1302916.296801 +1302923.945772 +1302927.168659 +1302967.968514 +1303018.297152 +1303020.026955 +1303036.802903 +1303036.802903 +1303061.129136 +1303092.219213 +1303100.431417 +1303130.330902 +1303144.845601 +1303174.373074 +1303207.216142 +1303218.551210 +1303230.819551 +1303238.058066 +1303273.829408 +1303287.622391 +1303294.201806 +1303312.511924 +1303359.604525 +1303360.187089 +1303404.742034 +1303419.963603 +1303419.963603 +1303450.095531 +1303450.095531 +1303488.424509 +1303488.424509 +1303525.860345 +1303525.860345 +1303545.372883 +1303549.887207 +1303592.131355 +1303620.947396 +1303673.801215 +1303673.801215 +1303686.155362 +1303689.399159 +1303736.426056 +1303736.426056 +1303747.512640 +1303783.072651 +1303800.962950 +1303807.363867 +1303810.930724 +1303817.965856 +1303865.581377 +1303882.619981 +1303912.901266 +1303921.430537 +1303956.247235 +1303969.453889 +1303982.811728 +1303982.811728 +1304031.160159 +1304054.623133 +1304054.623133 +1304072.846102 +1304107.734032 +1304107.734032 +1304107.734032 +1304139.963283 +1304147.578375 +1304180.117502 +1304201.366159 +1304229.446558 +1304258.825156 +1304258.825156 +1304267.474431 +1304306.961584 +1304347.083880 +1304349.749266 +1304370.837973 +1304396.929927 +1304413.990808 +1304423.189952 +1304433.232480 +1304433.232480 +1304449.619181 +1304483.626180 +1304490.506135 +1304528.033817 +1304540.417105 +1304548.416217 +1304566.027339 +1304601.797383 +1304614.301959 +1304624.351455 +1304679.349623 +1304679.349623 +1304699.180633 +1304699.180633 +1304729.309823 +1304731.901939 +1304760.403789 +1304788.151073 +1304797.434306 +1304821.694575 +1304866.126823 +1304870.643385 +1304889.892919 +1304905.421282 +1304905.421282 +1304942.909108 +1304968.747308 +1305002.125368 +1305002.125368 +1305024.171738 +1305024.171738 +1305034.676947 +1305056.570502 +1305080.027648 +1305128.466846 +1305128.466846 +1305151.867309 +1305151.867309 +1305190.783655 +1305206.706811 +1305235.003520 +1305262.660647 +1305262.660647 +1305262.660647 +1305305.518063 +1305323.914747 +1305331.375104 +1305331.375104 +1305361.026338 +1305391.846541 +1305396.397906 +1305411.438402 +1305438.273875 +1305479.069028 +1305482.810413 +1305498.226029 +1305536.591458 +1305567.025802 +1305567.259873 +1305583.675547 +1305615.217731 +1305615.217731 +1305615.217731 +1305647.249283 +1305655.527917 +1305695.743990 +1305698.471148 +1305735.073741 +1305744.764388 +1305781.890899 +1305781.890899 +1305803.054119 +1305828.301342 +1305828.301342 +1305870.356766 +1305870.356766 +1305897.799094 +1305916.135180 +1305916.135180 +1305923.101841 +1305923.101841 +1305991.607967 +1306009.850430 +1306028.378209 +1306037.276237 +1306082.036393 +1306082.036393 +1306113.045781 +1306123.897788 +1306123.897788 +1306145.098630 +1306163.597289 +1306167.894723 +1306228.293208 +1306228.293208 +1306256.833129 +1306256.833129 +1306278.976197 +1306296.371657 +1306312.559218 +1306355.259562 +1306365.648722 +1306365.648722 +1306395.450439 +1306437.752720 +1306445.276604 +1306448.025915 +1306480.217829 +1306499.236216 +1306512.360046 +1306515.996859 +1306545.985950 +1306545.985950 +1306583.793236 +1306586.851697 +1306616.945986 +1306647.268761 +1306662.989571 +1306666.974400 +1306707.939226 +1306707.939226 +1306751.936022 +1306760.140554 +1306760.140554 +1306785.562315 +1306821.149998 +1306830.532639 +1306838.263507 +1306868.007119 +1306900.348787 +1306900.348787 +1306931.482861 +1306947.189616 +1306964.829456 +1306972.995558 +1307003.038217 +1307019.265119 +1307019.265119 +1307019.265119 +1307067.288257 +1307067.288257 +1307081.826518 +1307134.576984 +1307142.727213 +1307162.556780 +1307199.879195 +1307199.879195 +1307203.114104 +1307244.143765 +1307267.056961 +1307267.056961 +1307295.938860 +1307297.767324 +1307315.402176 +1307334.166618 +1307358.663645 +1307360.529079 +1307405.472302 +1307422.327233 +1307438.654431 +1307447.016335 +1307468.940181 +1307488.828128 +1307532.520701 +1307541.903302 +1307577.385475 +1307577.929254 +1307578.213250 +1307596.880706 +1307620.042409 +1307631.524843 +1307660.020073 +1307693.317369 +1307698.261365 +1307712.784393 +1307736.597636 +1307772.349228 +1307772.349228 +1307783.784587 +1307803.241887 +1307841.004511 +1307851.883478 +1307851.883478 +1307884.069783 +1307898.811051 +1307911.958065 +1307933.625795 +1307969.505734 +1307983.259911 +1308006.769792 +1308006.769792 +1308016.058231 +1308042.615170 +1308049.706451 +1308087.014646 +1308107.102110 +1308107.102110 +1308158.039611 +1308160.279422 +1308223.065487 +1308223.065487 +1308223.065487 +1308231.846174 +1308252.896451 +1308261.511575 +1308299.933383 +1308299.933383 +1308316.023105 +1308350.558028 +1308350.558028 +1308383.425855 +1308397.125756 +1308405.428872 +1308437.323991 +1308465.075025 +1308478.133699 +1308505.348067 +1308510.486600 +1308510.486600 +1308545.033218 +1308546.535995 +1308592.204182 +1308592.204182 +1308607.496778 +1308628.316643 +1308664.573156 +1308685.506862 +1308699.944304 +1308711.557338 +1308723.022219 +1308723.022219 +1308771.806767 +1308791.768968 +1308838.752892 +1308838.752892 +1308857.535501 +1308862.960637 +1308877.256238 +1308877.256238 +1308887.364052 +1308918.932463 +1308918.932463 +1308952.302985 +1308991.007727 +1309024.250690 +1309024.250690 +1309043.031332 +1309068.257551 +1309081.867620 +1309081.867620 +1309120.861010 +1309120.861010 +1309169.408502 +1309169.408502 +1309173.490300 +1309184.069770 +1309232.165752 +1309254.676331 +1309256.902377 +1309258.179558 +1309295.556412 +1309331.679190 +1309331.679190 +1309331.679190 +1309365.208904 +1309367.779845 +1309375.032567 +1309393.014224 +1309442.709868 +1309442.709868 +1309468.353417 +1309484.157778 +1309484.157778 +1309525.425786 +1309556.382995 +1309562.664113 +1309562.664113 +1309608.954855 +1309639.955255 +1309648.384698 +1309696.691710 +1309696.691710 +1309696.691710 +1309708.133467 +1309743.604102 +1309749.217030 +1309749.217030 +1309796.625794 +1309796.625794 +1309805.993065 +1309807.524829 +1309845.222844 +1309866.379457 +1309879.398726 +1309879.398726 +1309916.580070 +1309924.620532 +1309978.341854 +1309978.341854 +1310007.625350 +1310007.625350 +1310064.118694 +1310064.118694 +1310064.118694 +1310074.190292 +1310090.793870 +1310134.882832 +1310140.070960 +1310170.682056 +1310170.682056 +1310178.106538 +1310213.734419 +1310213.734419 +1310254.201340 +1310274.442593 +1310274.442593 +1310294.053762 +1310295.068094 +1310321.560324 +1310371.975443 +1310373.919298 +1310373.919298 +1310402.600731 +1310433.243219 +1310474.677585 +1310474.677585 +1310479.557788 +1310488.366973 +1310519.550505 +1310523.378394 +1310523.378394 +1310567.598418 +1310579.239018 +1310599.417687 +1310631.215909 +1310631.215909 +1310678.671376 +1310678.671376 +1310682.868608 +1310705.268993 +1310709.759831 +1310741.806982 +1310769.470441 +1310789.695041 +1310795.709480 +1310802.741263 +1310810.519070 +1310878.193132 +1310878.193132 +1310878.193132 +1310881.190291 +1310900.710264 +1310965.247276 +1310965.247276 +1310965.247276 +1310996.114960 +1311000.525795 +1311051.747646 +1311051.747646 +1311080.450134 +1311101.988192 +1311101.988192 +1311108.120940 +1311148.023580 +1311190.924065 +1311190.924065 +1311190.924065 +1311218.737817 +1311231.300263 +1311244.087272 +1311262.557863 +1311287.642818 +1311315.580730 +1311348.110559 +1311348.110559 +1311381.917490 +1311381.917490 +1311393.475414 +1311416.526557 +1311448.094545 +1311448.094545 +1311448.094545 +1311472.832129 +1311472.832129 +1311502.592074 +1311549.740392 +1311549.740392 +1311580.613332 +1311594.556170 +1311622.396771 +1311635.549045 +1311635.549045 +1311674.023382 +1311674.023382 +1311689.337508 +1311689.337508 +1311740.543926 +1311740.543926 +1311740.543926 +1311782.758364 +1311814.029291 +1311820.141642 +1311823.571957 +1311873.227153 +1311874.440859 +1311874.440859 +1311896.691160 +1311933.586403 +1311946.814465 +1311952.264202 +1311965.579687 +1312002.785101 +1312033.167666 +1312044.231074 +1312044.231074 +1312066.039704 +1312085.404497 +1312088.812780 +1312088.812780 +1312143.067996 +1312167.509837 +1312178.664302 +1312197.745107 +1312219.760679 +1312249.262174 +1312249.262174 +1312252.745925 +1312312.163329 +1312312.163329 +1312312.163329 +1312322.919514 +1312349.831810 +1312386.359391 +1312388.414727 +1312394.180633 +1312431.621294 +1312440.665287 +1312466.822945 +1312466.822945 +1312484.745763 +1312495.146167 +1312517.132250 +1312560.181921 +1312568.459941 +1312591.611927 +1312599.865092 +1312599.865092 +1312629.193288 +1312668.072445 +1312668.072445 +1312680.690126 +1312704.938759 +1312722.734944 +1312753.454905 +1312760.287350 +1312794.551460 +1312794.551460 +1312802.193561 +1312826.062541 +1312842.771101 +1312842.771101 +1312892.429827 +1312897.320197 +1312926.488943 +1312926.995695 +1312961.391472 +1312969.136480 +1312976.746246 +1312999.841769 +1313014.225262 +1313031.939017 +1313051.632446 +1313059.041146 +1313090.173931 +1313090.173931 +1313128.731915 +1313128.731915 +1313144.272570 +1313192.418058 +1313192.418058 +1313208.140813 +1313220.413794 +1313255.883465 +1313255.883465 +1313287.701673 +1313301.680309 +1313314.414747 +1313348.327963 +1313348.327963 +1313387.463127 +1313387.463127 +1313401.274655 +1313408.548422 +1313451.931621 +1313466.633535 +1313493.892695 +1313493.892695 +1313522.378218 +1313522.378218 +1313557.786930 +1313570.885311 +1313570.885311 +1313584.112734 +1313618.395720 +1313636.752413 +1313636.752413 +1313660.221436 +1313674.906092 +1313716.039331 +1313749.348534 +1313749.348534 +1313788.919896 +1313788.919896 +1313788.919896 +1313817.877189 +1313830.357906 +1313840.583717 +1313862.298695 +1313870.889553 +1313892.271946 +1313907.937588 +1313916.767685 +1313936.138232 +1313974.902354 +1313979.545888 +1314018.224752 +1314018.224752 +1314048.821785 +1314048.821785 +1314066.102931 +1314081.903676 +1314101.543582 +1314119.073447 +1314122.699656 +1314159.203349 +1314192.464543 +1314192.464543 +1314221.683955 +1314221.683955 +1314255.901719 +1314263.736979 +1314274.798000 +1314274.798000 +1314323.209205 +1314343.624521 +1314363.140226 +1314363.140226 +1314384.213939 +1314431.831648 +1314431.831648 +1314443.177516 +1314471.838073 +1314471.838073 +1314489.266647 +1314494.082358 +1314521.908210 +1314538.868644 +1314583.931756 +1314583.931756 +1314597.441522 +1314612.753801 +1314633.006431 +1314633.006431 +1314663.341357 +1314666.868218 +1314723.146031 +1314723.146031 +1314729.296405 +1314762.047284 +1314762.047284 +1314797.962409 +1314808.896298 +1314817.154610 +1314830.828953 +1314837.213353 +1314850.383455 +1314890.866337 +1314903.893636 +1314935.995169 +1314935.995169 +1314974.485496 +1314984.641770 +1314996.274791 +1314996.274791 +1315010.795573 +1315028.877729 +1315055.296619 +1315089.214886 +1315089.214886 +1315113.975157 +1315152.626266 +1315152.626266 +1315171.926049 +1315190.735218 +1315192.943105 +1315211.753452 +1315211.753452 +1315249.158295 +1315276.795983 +1315276.795983 +1315313.016972 +1315313.016972 +1315329.478440 +1315351.707263 +1315381.187876 +1315381.187876 +1315408.103360 +1315417.273314 +1315451.675803 +1315463.157021 +1315476.490903 +1315516.172305 +1315527.845082 +1315528.827399 +1315541.943475 +1315553.750375 +1315588.037510 +1315588.037510 +1315591.161754 +1315616.509107 +1315616.509107 +1315677.145767 +1315677.145767 +1315723.814312 +1315723.814312 +1315723.814312 +1315723.814312 +1315769.057892 +1315795.719016 +1315815.501281 +1315815.501281 +1315833.516685 +1315870.970100 +1315870.970100 +1315871.542780 +1315914.297913 +1315915.667570 +1315959.172118 +1315960.433481 +1315960.433481 +1315992.659518 +1316020.162194 +1316020.162194 +1316046.788010 +1316071.541889 +1316071.541889 +1316098.495262 +1316116.343478 +1316125.336609 +1316165.934373 +1316165.934373 +1316165.934373 +1316203.421899 +1316206.523076 +1316238.606604 +1316238.606604 +1316270.414260 +1316288.186678 +1316288.186678 +1316307.254636 +1316334.388032 +1316372.932132 +1316372.932132 +1316377.482364 +1316430.997909 +1316447.269798 +1316457.981153 +1316457.981153 +1316469.114996 +1316485.560296 +1316504.085690 +1316523.670594 +1316527.660049 +1316534.443867 +1316565.972337 +1316578.994010 +1316626.310190 +1316631.369707 +1316634.420547 +1316656.144607 +1316671.566805 +1316686.828672 +1316721.287987 +1316752.657569 +1316752.657569 +1316752.657569 +1316783.797584 +1316815.122073 +1316815.122073 +1316819.090855 +1316871.147712 +1316907.170251 +1316907.170251 +1316907.170251 +1316925.676613 +1316942.247594 +1316949.819781 +1316971.908436 +1316987.087326 +1317001.091900 +1317004.189713 +1317004.541102 +1317023.469799 +1317070.968156 +1317072.253911 +1317131.836197 +1317131.836197 +1317131.836197 +1317185.035808 +1317185.035808 +1317185.035808 +1317232.755331 +1317232.755331 +1317249.594855 +1317249.594855 +1317301.642403 +1317301.642403 +1317325.865499 +1317325.865499 +1317353.120537 +1317363.158975 +1317401.635123 +1317401.635123 +1317401.635123 +1317431.105714 +1317457.400257 +1317457.400257 +1317462.464388 +1317478.574656 +1317519.204633 +1317536.860383 +1317536.860383 +1317564.748557 +1317582.058697 +1317585.351361 +1317630.690344 +1317630.690344 +1317659.327219 +1317671.243531 +1317696.724677 +1317721.825189 +1317721.825189 +1317733.612200 +1317757.211652 +1317757.211652 +1317793.473704 +1317793.473704 +1317819.360435 +1317839.582163 +1317863.798453 +1317877.004399 +1317877.004399 +1317907.772022 +1317909.756147 +1317938.327448 +1317951.905773 +1317971.497825 +1318008.844422 +1318008.844422 +1318025.840072 +1318043.182845 +1318054.871781 +1318085.322691 +1318085.601063 +1318113.638117 +1318148.075744 +1318148.075744 +1318162.752414 +1318164.277123 +1318183.653414 +1318201.948553 +1318224.231534 +1318243.858124 +1318246.943993 +1318299.567569 +1318299.567569 +1318319.616708 +1318324.546181 +1318348.283891 +1318352.569844 +1318376.653309 +1318409.313162 +1318409.313162 +1318409.895212 +1318445.445945 +1318448.250332 +1318502.870374 +1318502.870374 +1318502.870374 +1318539.522276 +1318567.204834 +1318571.235504 +1318587.384624 +1318608.640610 +1318627.718764 +1318627.718764 +1318627.718764 +1318677.584338 +1318677.584338 +1318694.736318 +1318726.389040 +1318728.152859 +1318748.695952 +1318763.807135 +1318812.317941 +1318812.317941 +1318844.240010 +1318844.240010 +1318844.240010 +1318850.703077 +1318854.964019 +1318906.056653 +1318931.986145 +1318934.174090 +1318970.935450 +1318970.935450 +1319000.991864 +1319007.874966 +1319038.938269 +1319038.938269 +1319038.938269 +1319074.784410 +1319074.784410 +1319085.788058 +1319101.175226 +1319118.561525 +1319152.922679 +1319162.248054 +1319184.294876 +1319191.896081 +1319209.667305 +1319235.380963 +1319235.380963 +1319291.467414 +1319291.467414 +1319294.587825 +1319311.876679 +1319332.840431 +1319338.992891 +1319349.658851 +1319387.485602 +1319387.485602 +1319406.730528 +1319406.730528 +1319465.392340 +1319474.019530 +1319474.019530 +1319508.278922 +1319508.278922 +1319547.886846 +1319547.886846 +1319575.432803 +1319575.432803 +1319611.674696 +1319611.674696 +1319612.573301 +1319635.835494 +1319662.149506 +1319672.039611 +1319680.806680 +1319690.526150 +1319706.849454 +1319778.352846 +1319778.352846 +1319778.352846 +1319778.352846 +1319801.011284 +1319825.373993 +1319826.412174 +1319855.649897 +1319855.649897 +1319909.172279 +1319909.172279 +1319915.067064 +1319937.507003 +1319975.072400 +1319990.105556 +1320007.388352 +1320007.388352 +1320037.747414 +1320054.267470 +1320059.289692 +1320059.289692 +1320073.538106 +1320110.540209 +1320135.146728 +1320157.515457 +1320157.515457 +1320157.515457 +1320195.686836 +1320195.686836 +1320212.003078 +1320219.585362 +1320260.506243 +1320268.865680 +1320268.865680 +1320272.547188 +1320300.882407 +1320300.882407 +1320349.527097 +1320394.405741 +1320394.405741 +1320400.313691 +1320400.313691 +1320400.313691 +1320424.726171 +1320458.991657 +1320488.795754 +1320493.838047 +1320498.828096 +1320540.261280 +1320544.603089 +1320588.928127 +1320588.928127 +1320592.249809 +1320594.107293 +1320647.823208 +1320662.861543 +1320666.008121 +1320666.008121 +1320696.452873 +1320696.452873 +1320731.360701 +1320734.148338 +1320758.352853 +1320758.352853 +1320791.820271 +1320813.080283 +1320831.905127 +1320855.909144 +1320855.909144 +1320855.909144 +1320887.575888 +1320905.454145 +1320915.810214 +1320915.810214 +1320947.335589 +1320967.679916 +1320970.733143 +1320991.134865 +1321024.877340 +1321066.999126 +1321079.585972 +1321079.585972 +1321082.099878 +1321091.446985 +1321133.004198 +1321133.135634 +1321184.504920 +1321184.504920 +1321184.504920 +1321191.106560 +1321210.413014 +1321252.899388 +1321252.899388 +1321252.899388 +1321270.735460 +1321283.537345 +1321342.401923 +1321342.401923 +1321350.741069 +1321352.483933 +1321366.076187 +1321375.141895 +1321423.681105 +1321427.854766 +1321443.602621 +1321443.931632 +1321466.176416 +1321492.469807 +1321521.049846 +1321521.679452 +1321542.282811 +1321576.176625 +1321576.176625 +1321576.176625 +1321620.210253 +1321624.540625 +1321641.552248 +1321660.263899 +1321689.613241 +1321715.685157 +1321716.597006 +1321744.155751 +1321744.155751 +1321745.181737 +1321751.364338 +1321785.358211 +1321793.882672 +1321816.759258 +1321828.491431 +1321859.045811 +1321859.045811 +1321897.998706 +1321901.402156 +1321901.402156 +1321935.034472 +1321956.349121 +1321956.349121 +1321956.349121 +1322002.281259 +1322002.281259 +1322019.522522 +1322023.473501 +1322075.574485 +1322083.242660 +1322090.202272 +1322114.081162 +1322119.558847 +1322142.095763 +1322163.829550 +1322183.964224 +1322183.964224 +1322224.555290 +1322249.826774 +1322249.826774 +1322249.826774 +1322249.826774 +1322269.812897 +1322291.501673 +1322300.931467 +1322310.755150 +1322341.222810 +1322364.010655 +1322368.834411 +1322399.189323 +1322399.189323 +1322452.835433 +1322452.835433 +1322454.933553 +1322486.238631 +1322498.509312 +1322518.694528 +1322523.963091 +1322538.545765 +1322541.455087 +1322567.055858 +1322618.945704 +1322618.945704 +1322618.945704 +1322639.867337 +1322653.472302 +1322694.989495 +1322694.989495 +1322706.831602 +1322752.512886 +1322752.512886 +1322758.298482 +1322764.040695 +1322794.659160 +1322794.659160 +1322814.680395 +1322815.283746 +1322824.931897 +1322853.960837 +1322855.156488 +1322893.795724 +1322914.596349 +1322934.876081 +1322934.876081 +1322950.626894 +1322966.904945 +1323019.019798 +1323019.019798 +1323049.883944 +1323049.883944 +1323051.227500 +1323058.528124 +1323064.316759 +1323115.219779 +1323124.617479 +1323143.509481 +1323155.090565 +1323165.235329 +1323165.235329 +1323186.897060 +1323212.582848 +1323240.838296 +1323241.184539 +1323285.686289 +1323285.686289 +1323311.040122 +1323311.040122 +1323345.552952 +1323345.552952 +1323353.317692 +1323354.370797 +1323376.233690 +1323428.535067 +1323438.525000 +1323444.213601 +1323451.787302 +1323456.791032 +1323494.063709 +1323506.124164 +1323506.668377 +1323526.129011 +1323553.378841 +1323553.378841 +1323570.857049 +1323594.625020 +1323594.625020 +1323622.623767 +1323637.845623 +1323678.877524 +1323689.275574 +1323694.406394 +1323713.893210 +1323720.172883 +1323748.862494 +1323748.862494 +1323785.424598 +1323791.322856 +1323811.008430 +1323821.530210 +1323841.850046 +1323862.335322 +1323869.481690 +1323869.481690 +1323877.718932 +1323889.586313 +1323921.501958 +1323945.436087 +1323961.806318 +1323984.643471 +1323984.643471 +1324000.481403 +1324016.995417 +1324024.928038 +1324068.346413 +1324068.346413 +1324091.258458 +1324098.976266 +1324132.897256 +1324132.897256 +1324156.308416 +1324187.013954 +1324187.013954 +1324189.836264 +1324202.823707 +1324244.695672 +1324244.695672 +1324298.224423 +1324298.224423 +1324298.224423 +1324319.839206 +1324319.839206 +1324319.839206 +1324358.320999 +1324361.427900 +1324385.732627 +1324419.906409 +1324433.471873 +1324433.471873 +1324451.841381 +1324463.841594 +1324473.239921 +1324475.591680 +1324523.006373 +1324531.624017 +1324531.624017 +1324556.960404 +1324560.641331 +1324564.645769 +1324596.086796 +1324632.499732 +1324685.846535 +1324685.846535 +1324685.846535 +1324685.846535 +1324706.555241 +1324724.957534 +1324753.108118 +1324759.688440 +1324759.688440 +1324792.594768 +1324792.594768 +1324792.594768 +1324806.832617 +1324827.853856 +1324854.189815 +1324874.568778 +1324916.124409 +1324916.124409 +1324927.037978 +1324941.181177 +1324985.697147 +1324985.697147 +1324985.697147 +1325002.693947 +1325002.693947 +1325021.277269 +1325021.277269 +1325087.941882 +1325087.941882 +1325087.941882 +1325114.824516 +1325134.414402 +1325135.244928 +1325156.961965 +1325157.026155 +1325188.957207 +1325199.343651 +1325221.084752 +1325252.377307 +1325252.377307 +1325273.217175 +1325273.217175 +1325273.217175 +1325308.169792 +1325308.169792 +1325352.495102 +1325352.495102 +1325367.426933 +1325396.206009 +1325397.861303 +1325397.861303 +1325417.301196 +1325423.546920 +1325462.336843 +1325462.336843 +1325502.564869 +1325502.564869 +1325548.017968 +1325548.017968 +1325567.298381 +1325567.298381 +1325577.283593 +1325577.283593 +1325619.769394 +1325636.262313 +1325636.262313 +1325659.258526 +1325677.987921 +1325677.987921 +1325696.417981 +1325708.812685 +1325730.090990 +1325756.546407 +1325756.546407 +1325756.546407 +1325783.415812 +1325815.057967 +1325820.344886 +1325839.983471 +1325865.555176 +1325865.555176 +1325866.131827 +1325886.170118 +1325928.380037 +1325928.380037 +1325954.084706 +1325965.930922 +1325994.693214 +1325999.405258 +1325999.405258 +1326028.227716 +1326039.492278 +1326058.435225 +1326058.435225 +1326102.364357 +1326116.669438 +1326116.669438 +1326116.669438 +1326149.022275 +1326152.722175 +1326180.446349 +1326195.356386 +1326200.148575 +1326248.159650 +1326288.353927 +1326288.353927 +1326288.353927 +1326288.353927 +1326292.281810 +1326292.281810 +1326301.766577 +1326319.493704 +1326349.835534 +1326356.769247 +1326390.486832 +1326420.504352 +1326420.504352 +1326420.504352 +1326450.980883 +1326463.093828 +1326488.713800 +1326501.144587 +1326509.697072 +1326511.336612 +1326540.868966 +1326540.868966 +1326589.968038 +1326589.968038 +1326589.968038 +1326621.544456 +1326621.544456 +1326639.344066 +1326661.863102 +1326671.729991 +1326703.401354 +1326703.401354 +1326711.138983 +1326717.250719 +1326768.962112 +1326770.089124 +1326814.226765 +1326814.226765 +1326814.226765 +1326814.226765 +1326834.085271 +1326834.085271 +1326888.432825 +1326896.577540 +1326896.577540 +1326926.727205 +1326926.727205 +1326950.536774 +1326950.536774 +1326959.070844 +1326975.515860 +1327021.855204 +1327031.517722 +1327031.517722 +1327038.421661 +1327044.937505 +1327077.163231 +1327077.163231 +1327077.163231 +1327099.645381 +1327110.502650 +1327157.914957 +1327187.607329 +1327187.607329 +1327189.694492 +1327201.355560 +1327241.576435 +1327241.576435 +1327251.018535 +1327276.602459 +1327295.324508 +1327295.324508 +1327296.283174 +1327325.511106 +1327347.782426 +1327347.782426 +1327365.156999 +1327369.193713 +1327396.908956 +1327411.828668 +1327434.202377 +1327453.383556 +1327481.491129 +1327481.491129 +1327481.491129 +1327525.671698 +1327534.388256 +1327539.308099 +1327543.616697 +1327558.642661 +1327576.136139 +1327593.698076 +1327627.686258 +1327627.686258 +1327636.142651 +1327647.419969 +1327670.497543 +1327682.972694 +1327687.296870 +1327711.478451 +1327728.649367 +1327728.649367 +1327742.658965 +1327757.439719 +1327800.683611 +1327830.550923 +1327830.823380 +1327830.823380 +1327856.848900 +1327856.848900 +1327881.454807 +1327882.821863 +1327906.633273 +1327906.633273 +1327939.183725 +1327967.210861 +1327976.604378 +1327979.065636 +1327979.065636 +1327988.503215 +1328023.467585 +1328031.757375 +1328056.424729 +1328060.349912 +1328088.750349 +1328088.750349 +1328104.104535 +1328104.104535 +1328117.148381 +1328127.273030 +1328167.375660 +1328167.375660 +1328190.868814 +1328248.306227 +1328248.306227 +1328248.306227 +1328251.077568 +1328291.600731 +1328300.165272 +1328300.165272 +1328324.553344 +1328334.988341 +1328369.407405 +1328369.407405 +1328388.646123 +1328388.646123 +1328388.646123 +1328388.646123 +1328427.569587 +1328440.908300 +1328470.699816 +1328470.699816 +1328515.360169 +1328515.360169 +1328528.825031 +1328528.825031 +1328558.804141 +1328575.761046 +1328595.114774 +1328611.980656 +1328615.275535 +1328615.275535 +1328634.998665 +1328634.998665 +1328658.963481 +1328660.580826 +1328692.432360 +1328696.389638 +1328724.180431 +1328728.124903 +1328748.297505 +1328773.905288 +1328790.598311 +1328790.598311 +1328798.115496 +1328833.144809 +1328833.144809 +1328835.613132 +1328867.520364 +1328909.109664 +1328909.496408 +1328926.955083 +1328934.129319 +1328934.129319 +1328970.525567 +1328977.475150 +1328997.973255 +1329028.253028 +1329028.253028 +1329028.253028 +1329040.026731 +1329046.616942 +1329079.405943 +1329085.858429 +1329110.002359 +1329110.002359 +1329146.210622 +1329146.210622 +1329150.647077 +1329161.214567 +1329161.636443 +1329184.322928 +1329222.734017 +1329235.849318 +1329235.849318 +1329268.439707 +1329308.053157 +1329308.053157 +1329309.192503 +1329333.576779 +1329333.576779 +1329355.145997 +1329366.412086 +1329393.831233 +1329399.410568 +1329427.723191 +1329427.723191 +1329448.147940 +1329463.688809 +1329468.402286 +1329486.954263 +1329497.099060 +1329541.719609 +1329541.719609 +1329541.719609 +1329541.719609 +1329547.595573 +1329602.173725 +1329602.173725 +1329644.434961 +1329644.434961 +1329644.434961 +1329658.240085 +1329674.298456 +1329674.298456 +1329681.513887 +1329731.633997 +1329731.633997 +1329749.076319 +1329768.366256 +1329768.366256 +1329771.688512 +1329790.660475 +1329813.934168 +1329813.934168 +1329844.459420 +1329864.069743 +1329864.069743 +1329870.015246 +1329906.800160 +1329935.970850 +1329935.970850 +1329968.841117 +1329968.841117 +1329968.841117 +1329976.904570 +1329980.933749 +1330003.884466 +1330003.884466 +1330060.649492 +1330068.303023 +1330068.303023 +1330068.303023 +1330120.554679 +1330120.554679 +1330121.246531 +1330165.277233 +1330165.277233 +1330170.105937 +1330185.396777 +1330186.443035 +1330195.838706 +1330235.413183 +1330264.655057 +1330274.148957 +1330274.148957 +1330305.695982 +1330307.109187 +1330307.109187 +1330319.199200 +1330352.812777 +1330354.161972 +1330385.225088 +1330385.225088 +1330385.225088 +1330411.762337 +1330428.154481 +1330433.193397 +1330459.465383 +1330459.465383 +1330471.343717 +1330476.573313 +1330524.388429 +1330524.388429 +1330557.789917 +1330557.789917 +1330561.630143 +1330589.566038 +1330589.566038 +1330609.509190 +1330609.509190 +1330645.639139 +1330690.939213 +1330715.039033 +1330716.906163 +1330716.906163 +1330716.906163 +1330716.906163 +1330728.791782 +1330766.101149 +1330780.973721 +1330780.973721 +1330797.587689 +1330810.107785 +1330831.458732 +1330846.781058 +1330846.781058 +1330861.860556 +1330861.860556 +1330901.906693 +1330901.906693 +1330904.273615 +1330922.068003 +1330936.066760 +1330962.085933 +1330962.085933 +1330970.829891 +1331001.521430 +1331041.017006 +1331046.436128 +1331046.436128 +1331076.220825 +1331076.220825 +1331099.741107 +1331125.644724 +1331128.879379 +1331128.879379 +1331132.819313 +1331164.777463 +1331164.777463 +1331170.989786 +1331201.663104 +1331201.663104 +1331201.663104 +1331222.846575 +1331248.892451 +1331255.350173 +1331264.676132 +1331311.673991 +1331311.673991 +1331334.037995 +1331334.037995 +1331367.010448 +1331375.903046 +1331382.977455 +1331401.973716 +1331410.058962 +1331435.379781 +1331435.379781 +1331452.591635 +1331465.716210 +1331465.716210 +1331479.632993 +1331497.257599 +1331523.904594 +1331531.882484 +1331572.169635 +1331572.169635 +1331594.056933 +1331594.056933 +1331597.610256 +1331601.215820 +1331625.484519 +1331625.484519 +1331646.387529 +1331683.398271 +1331683.398271 +1331683.398271 +1331693.084594 +1331716.055107 +1331748.592910 +1331767.121284 +1331767.121284 +1331770.182788 +1331791.592182 +1331817.435266 +1331823.899727 +1331850.086750 +1331850.086750 +1331850.086750 +1331870.917631 +1331893.517945 +1331909.753339 +1331913.835968 +1331930.799125 +1331964.727955 +1331964.727955 +1331964.727955 +1331968.251138 +1332003.166251 +1332003.166251 +1332025.371310 +1332031.810951 +1332048.472701 +1332071.403689 +1332085.697087 +1332085.697087 +1332108.173148 +1332133.961169 +1332135.469239 +1332161.547894 +1332161.547894 +1332186.419645 +1332186.419645 +1332193.923929 +1332195.019528 +1332229.710735 +1332253.958639 +1332263.028340 +1332276.554506 +1332290.033435 +1332290.033435 +1332290.033435 +1332316.611764 +1332342.261114 +1332351.446965 +1332363.975332 +1332374.787748 +1332419.638550 +1332419.638550 +1332419.638550 +1332432.388641 +1332455.316567 +1332455.316567 +1332466.332912 +1332482.340645 +1332494.003439 +1332540.179423 +1332540.179423 +1332540.209181 +1332540.209181 +1332568.375609 +1332585.686811 +1332604.456787 +1332626.350138 +1332626.350138 +1332644.338351 +1332657.429800 +1332703.415795 +1332703.415795 +1332703.415795 +1332712.039665 +1332724.095347 +1332743.472836 +1332754.643485 +1332759.789044 +1332764.441525 +1332822.857187 +1332822.857187 +1332847.205678 +1332847.205678 +1332847.205678 +1332847.205678 +1332862.119375 +1332892.339523 +1332892.339523 +1332930.349471 +1332930.349471 +1332950.084078 +1332950.084078 +1332950.084078 +1332984.555320 +1332990.851682 +1333005.552146 +1333005.552146 +1333044.866869 +1333044.866869 +1333089.376315 +1333089.376315 +1333089.961701 +1333099.512656 +1333133.979537 +1333133.979537 +1333151.871911 +1333157.130867 +1333173.100016 +1333198.661335 +1333217.264932 +1333245.595872 +1333245.595872 +1333245.595872 +1333268.291988 +1333268.291988 +1333304.234232 +1333304.234232 +1333304.234232 +1333304.234232 +1333330.038535 +1333330.038535 +1333373.177790 +1333390.425193 +1333390.425193 +1333421.677062 +1333421.677062 +1333421.677062 +1333421.677062 +1333428.453799 +1333440.639035 +1333484.337709 +1333487.168812 +1333520.484645 +1333523.554304 +1333525.048226 +1333535.373058 +1333549.069484 +1333572.286501 +1333592.051205 +1333592.051205 +1333614.518747 +1333626.355490 +1333655.952191 +1333655.952191 +1333674.348699 +1333681.951794 +1333681.951794 +1333708.916905 +1333711.688706 +1333734.906144 +1333756.115786 +1333801.216672 +1333801.216672 +1333801.216672 +1333801.216672 +1333813.564780 +1333813.564780 +1333857.989529 +1333857.989529 +1333865.723124 +1333865.723124 +1333910.198290 +1333928.276429 +1333933.855611 +1333961.800135 +1333961.800135 +1333976.485276 +1333976.485276 +1333976.485276 +1334002.575194 +1334041.572570 +1334041.572570 +1334062.122480 +1334062.122480 +1334062.122480 +1334095.105098 +1334124.513400 +1334124.513400 +1334140.147445 +1334140.147445 +1334188.042617 +1334188.042617 +1334188.042617 +1334188.042617 +1334210.732788 +1334210.732788 +1334226.405993 +1334244.574544 +1334250.564673 +1334292.952356 +1334294.586888 +1334315.767293 +1334315.843905 +1334338.778348 +1334339.072804 +1334339.072804 +1334389.601107 +1334389.601107 +1334389.601107 +1334389.601107 +1334400.120338 +1334419.427758 +1334423.747343 +1334425.573167 +1334469.309100 +1334469.555342 +1334490.411426 +1334499.220880 +1334499.220880 +1334535.343486 +1334552.858454 +1334566.785629 +1334569.650300 +1334600.623452 +1334607.682112 +1334614.335445 +1334626.713442 +1334645.274872 +1334657.119607 +1334683.049849 +1334695.640590 +1334704.015964 +1334704.015964 +1334721.887755 +1334721.887755 +1334759.429077 +1334759.429077 +1334795.934260 +1334795.934260 +1334797.801229 +1334808.238548 +1334840.730955 +1334840.730955 +1334851.237079 +1334868.570832 +1334894.989694 +1334897.499971 +1334913.789510 +1334927.365604 +1334931.447205 +1334938.292908 +1334966.701569 +1334966.701569 +1334992.379446 +1334997.961778 +1335021.167547 +1335021.167547 +1335039.639864 +1335039.639864 +1335077.043509 +1335089.439260 +1335091.042963 +1335119.701328 +1335123.627932 +1335126.414396 +1335126.414396 +1335154.492490 +1335158.906556 +1335160.589932 +1335222.645692 +1335222.645692 +1335248.436837 +1335248.436837 +1335248.436837 +1335248.436837 +1335273.289644 +1335277.436150 +1335277.436150 +1335306.273803 +1335331.300002 +1335341.191221 +1335373.460510 +1335373.460510 +1335373.460510 +1335419.689963 +1335419.689963 +1335425.755028 +1335438.024119 +1335438.259161 +1335451.399806 +1335467.202212 +1335485.538828 +1335498.766860 +1335508.141513 +1335514.953864 +1335525.114906 +1335558.735069 +1335573.374175 +1335573.374175 +1335589.681323 +1335608.553742 +1335608.553742 +1335653.123137 +1335653.123137 +1335653.852014 +1335672.131289 +1335678.225943 +1335678.225943 +1335710.295473 +1335716.863620 +1335742.270059 +1335755.911591 +1335775.634258 +1335779.891161 +1335799.937409 +1335799.937409 +1335842.008109 +1335842.008109 +1335842.008109 +1335842.008109 +1335868.490937 +1335882.329620 +1335904.878681 +1335916.818967 +1335917.756918 +1335934.715245 +1335958.860189 +1335990.262335 +1335990.262335 +1335990.262335 +1335990.262335 +1335993.286088 +1336027.716741 +1336047.869295 +1336067.917289 +1336067.917289 +1336067.917289 +1336102.167580 +1336108.078223 +1336108.078223 +1336130.336680 +1336159.442882 +1336177.949216 +1336177.949216 +1336199.419173 +1336199.419173 +1336199.419173 +1336203.081645 +1336255.874537 +1336255.874537 +1336255.874537 +1336280.254354 +1336280.254354 +1336298.469163 +1336338.965537 +1336340.652601 +1336346.138927 +1336346.138927 +1336346.138927 +1336390.437980 +1336390.437980 +1336412.071411 +1336412.071411 +1336412.071411 +1336450.298044 +1336450.298044 +1336450.298044 +1336479.412393 +1336483.949630 +1336512.744125 +1336526.476728 +1336534.176705 +1336538.934508 +1336582.336587 +1336582.336587 +1336582.336587 +1336583.495641 +1336583.495641 +1336622.378590 +1336650.037946 +1336650.037946 +1336695.537953 +1336695.537953 +1336717.837792 +1336722.283378 +1336722.283378 +1336726.276688 +1336740.785578 +1336774.080301 +1336774.080301 +1336777.672271 +1336786.267106 +1336805.315838 +1336807.204916 +1336807.204916 +1336849.045535 +1336859.055399 +1336863.286408 +1336907.907463 +1336919.991494 +1336919.991494 +1336919.991494 +1336926.052449 +1336946.855767 +1336968.621321 +1336986.086754 +1336986.678935 +1337011.037018 +1337011.037018 +1337027.275594 +1337027.275594 +1337053.689537 +1337097.022735 +1337097.022735 +1337097.022735 +1337097.022735 +1337128.418779 +1337145.011600 +1337163.535895 +1337163.535895 +1337163.535895 +1337172.308578 +1337190.532749 +1337219.371540 +1337219.371540 +1337235.917057 +1337235.917057 +1337258.749117 +1337269.769526 +1337285.596627 +1337299.804951 +1337310.522914 +1337311.096756 +1337332.039566 +1337355.486389 +1337387.794555 +1337387.794555 +1337394.775093 +1337404.572998 +1337415.269670 +1337434.103764 +1337456.340783 +1337456.340783 +1337464.963730 +1337473.810899 +1337492.650145 +1337530.086114 +1337530.086114 +1337530.091145 +1337557.404143 +1337557.404143 +1337561.108830 +1337569.616129 +1337590.861299 +1337631.180214 +1337631.180214 +1337660.026516 +1337660.026516 +1337660.026516 +1337677.546022 +1337689.927627 +1337699.598521 +1337701.662440 +1337723.124950 +1337723.124950 +1337754.081719 +1337765.111946 +1337787.988961 +1337809.036169 +1337814.307094 +1337814.307094 +1337820.823020 +1337855.567956 +1337855.567956 +1337855.567956 +1337890.005633 +1337894.516593 +1337902.952562 +1337902.952562 +1337957.136168 +1337957.136168 +1337965.882337 +1337965.882337 +1337993.330941 +1338000.041446 +1338036.706482 +1338037.774915 +1338042.736004 +1338051.836740 +1338051.836740 +1338074.594180 +1338101.696138 +1338120.010520 +1338120.010520 +1338120.010520 +1338122.984096 +1338166.875371 +1338166.875371 +1338173.699835 +1338173.699835 +1338204.085197 +1338204.085197 +1338234.011481 +1338234.011481 +1338270.999841 +1338270.999841 +1338274.782723 +1338274.782723 +1338304.002615 +1338304.002615 +1338356.667988 +1338359.023876 +1338359.023876 +1338362.522301 +1338370.221369 +1338407.670158 +1338407.670158 +1338420.821450 +1338438.653854 +1338474.756299 +1338474.756299 +1338474.756299 +1338474.756299 +1338519.114129 +1338521.173834 +1338521.173834 +1338547.425520 +1338557.810616 +1338557.810616 +1338578.809582 +1338578.809582 +1338600.685187 +1338600.685187 +1338620.867410 +1338620.867410 +1338664.064540 +1338673.236284 +1338681.204920 +1338681.204920 +1338724.609389 +1338742.097716 +1338742.097716 +1338744.897251 +1338751.579720 +1338757.880631 +1338757.880631 +1338797.230779 +1338806.855385 +1338811.097077 +1338815.788973 +1338849.562964 +1338849.562964 +1338885.652262 +1338885.652262 +1338885.652262 +1338886.173407 +1338928.927124 +1338928.927124 +1338941.431705 +1338953.489586 +1338973.870755 +1338973.870755 +1338981.072691 +1338995.487734 +1338995.487734 +1339035.621339 +1339049.383509 +1339049.383509 +1339078.597076 +1339078.597076 +1339078.597076 +1339112.629758 +1339112.629758 +1339132.933661 +1339155.000289 +1339155.000289 +1339155.000289 +1339173.830735 +1339193.841313 +1339193.841313 +1339208.391790 +1339233.191781 +1339262.649473 +1339262.649473 +1339281.778080 +1339281.778080 +1339302.078689 +1339304.193672 +1339325.579495 +1339325.579495 +1339331.790426 +1339366.848741 +1339366.848741 +1339378.017637 +1339408.766748 +1339408.766748 +1339427.746496 +1339444.014822 +1339444.014822 +1339459.137747 +1339459.137747 +1339477.608028 +1339483.218039 +1339491.527008 +1339541.289750 +1339541.289750 +1339563.977255 +1339566.906579 +1339566.906579 +1339607.538759 +1339607.538759 +1339612.291448 +1339612.291448 +1339621.193526 +1339625.466612 +1339660.491175 +1339676.509445 +1339685.904861 +1339685.904861 +1339693.015214 +1339723.093573 +1339723.093573 +1339740.034707 +1339740.034707 +1339749.057062 +1339774.539936 +1339784.181686 +1339798.710762 +1339812.405922 +1339830.277237 +1339851.728664 +1339852.442302 +1339871.785418 +1339871.785418 +1339899.017244 +1339899.017244 +1339926.304047 +1339926.304047 +1339946.183033 +1339969.321426 +1339979.508803 +1339979.508803 +1339999.044207 +1340028.758899 +1340028.758899 +1340028.758899 +1340043.187355 +1340059.878862 +1340059.878862 +1340079.202473 +1340114.975825 +1340114.975825 +1340114.975825 +1340115.648068 +1340147.708757 +1340147.708757 +1340183.496162 +1340183.496162 +1340186.863110 +1340208.134013 +1340214.652266 +1340245.795807 +1340245.795807 +1340268.741260 +1340268.741260 +1340269.139935 +1340304.604034 +1340304.604034 +1340323.621804 +1340323.621804 +1340340.809980 +1340347.080253 +1340358.419054 +1340371.898271 +1340405.347913 +1340412.726232 +1340437.279987 +1340446.368168 +1340450.678384 +1340469.677913 +1340473.953872 +1340473.953872 +1340473.953872 +1340476.713855 +1340511.199537 +1340511.199537 +1340552.076356 +1340552.076356 +1340595.350426 +1340595.350426 +1340595.350426 +1340605.298371 +1340621.428554 +1340621.428554 +1340621.428554 +1340648.382863 +1340648.382863 +1340683.469148 +1340692.209942 +1340716.255828 +1340716.255828 +1340733.542646 +1340742.935336 +1340742.935336 +1340751.339271 +1340754.541872 +1340780.894594 +1340788.993302 +1340824.245966 +1340824.245966 +1340827.502705 +1340835.932040 +1340866.281971 +1340889.942017 +1340889.942017 +1340903.156731 +1340936.022570 +1340936.022570 +1340936.022570 +1340938.924212 +1340943.612149 +1340973.644252 +1340991.266705 +1340995.952543 +1341016.669587 +1341016.669587 +1341060.783015 +1341060.783015 +1341067.038449 +1341067.038449 +1341089.361348 +1341103.329553 +1341103.329553 +1341103.329553 +1341129.967630 +1341144.640607 +1341172.813574 +1341184.620080 +1341184.620080 +1341233.652532 +1341236.645078 +1341236.645078 +1341236.645078 +1341238.436469 +1341253.528291 +1341260.056702 +1341291.602668 +1341298.980776 +1341298.980776 +1341308.901212 +1341320.834856 +1341326.818550 +1341339.851785 +1341367.162303 +1341380.669218 +1341380.669218 +1341394.539318 +1341430.908574 +1341430.908574 +1341453.757129 +1341475.427073 +1341475.427073 +1341500.673294 +1341510.090209 +1341510.090209 +1341517.994034 +1341537.120657 +1341548.244649 +1341559.098459 +1341567.550958 +1341576.126595 +1341584.855669 +1341584.855669 +1341628.456639 +1341628.456639 +1341628.456639 +1341677.453672 +1341688.413635 +1341688.413635 +1341688.413635 +1341711.466653 +1341711.466653 +1341728.546443 +1341745.255803 +1341752.288590 +1341752.288590 +1341774.485782 +1341808.580342 +1341808.580342 +1341814.502200 +1341848.316850 +1341852.305066 +1341876.930216 +1341876.930216 +1341891.164195 +1341926.759046 +1341926.759046 +1341926.759046 +1341926.759046 +1341926.759046 +1341936.620635 +1341938.264998 +1341954.433970 +1341986.302285 +1341997.442403 +1342016.227568 +1342016.453143 +1342040.740336 +1342040.740336 +1342059.822314 +1342059.822314 +1342081.943313 +1342086.873888 +1342125.403886 +1342125.403886 +1342126.958794 +1342126.958794 +1342139.487996 +1342181.063255 +1342182.545815 +1342182.545815 +1342205.838195 +1342226.461362 +1342226.461362 +1342241.066805 +1342246.459347 +1342273.958081 +1342273.958081 +1342291.312806 +1342291.312806 +1342332.296949 +1342332.296949 +1342367.497635 +1342367.497635 +1342367.497635 +1342367.497635 +1342371.506898 +1342405.207899 +1342405.207899 +1342434.339948 +1342449.798607 +1342449.798607 +1342458.773976 +1342466.720569 +1342488.245269 +1342498.195117 +1342498.195117 +1342538.399480 +1342545.958357 +1342545.958357 +1342545.958357 +1342576.843912 +1342586.890528 +1342586.890528 +1342621.554987 +1342621.937931 +1342652.273393 +1342652.273393 +1342678.126023 +1342678.126023 +1342682.414272 +1342695.615936 +1342695.615936 +1342715.434891 +1342745.875127 +1342745.875127 +1342790.885023 +1342790.885023 +1342790.885023 +1342790.885023 +1342815.421385 +1342815.421385 +1342844.552350 +1342849.563789 +1342849.563789 +1342868.982286 +1342896.488119 +1342896.488119 +1342929.413983 +1342929.413983 +1342929.413983 +1342929.413983 +1342929.413983 +1342949.676489 +1342999.572042 +1342999.572042 +1343004.462324 +1343004.462324 +1343011.530205 +1343045.827850 +1343052.603364 +1343072.943421 +1343086.876414 +1343105.910944 +1343105.910944 +1343121.744237 +1343135.924156 +1343135.924156 +1343141.733117 +1343141.733117 +1343175.780456 +1343180.527310 +1343200.793203 +1343224.156010 +1343224.156010 +1343229.448967 +1343231.482124 +1343240.660328 +1343270.995414 +1343281.450023 +1343303.800241 +1343332.289288 +1343332.289288 +1343354.247512 +1343354.247512 +1343354.247512 +1343369.272530 +1343371.514336 +1343410.688385 +1343410.688385 +1343410.688385 +1343433.853926 +1343445.815587 +1343445.815587 +1343445.815587 +1343477.936986 +1343504.841769 +1343518.443489 +1343520.831769 +1343520.831769 +1343548.846038 +1343548.846038 +1343548.846038 +1343548.961215 +1343577.425832 +1343612.980980 +1343635.010473 +1343635.010473 +1343639.873738 +1343665.160124 +1343673.646310 +1343673.646310 +1343686.145934 +1343704.468222 +1343726.145334 +1343726.145334 +1343726.145334 +1343751.938657 +1343751.938657 +1343751.938657 +1343759.429383 +1343796.793345 +1343839.857865 +1343839.857865 +1343839.857865 +1343856.206647 +1343872.375510 +1343872.375510 +1343878.899234 +1343923.162487 +1343923.162487 +1343923.162487 +1343942.736898 +1343971.116994 +1343971.116994 +1343971.116994 +1343975.004409 +1343983.490566 +1343983.490566 +1343983.490566 +1344013.785319 +1344057.924359 +1344067.161192 +1344067.161192 +1344093.742772 +1344095.308890 +1344106.638789 +1344106.638789 +1344109.264909 +1344139.671977 +1344153.532850 +1344153.532850 +1344172.969568 +1344189.303810 +1344217.986216 +1344217.986216 +1344217.986216 +1344223.695813 +1344223.695813 +1344262.065107 +1344262.065107 +1344267.540342 +1344286.063428 +1344293.989825 +1344309.085318 +1344353.540924 +1344353.540924 +1344353.540924 +1344372.101922 +1344395.021426 +1344395.021426 +1344395.021426 +1344397.249400 +1344434.258714 +1344434.258714 +1344434.258714 +1344435.915403 +1344459.526833 +1344474.599082 +1344492.368026 +1344522.315286 +1344538.015949 +1344562.317929 +1344562.317929 +1344562.317929 +1344562.317929 +1344562.317929 +1344573.770940 +1344591.587091 +1344609.113264 +1344634.315958 +1344634.315958 +1344654.773156 +1344659.859231 +1344659.859231 +1344659.859231 +1344707.293796 +1344707.293796 +1344726.831319 +1344726.831319 +1344749.734786 +1344758.985416 +1344772.114242 +1344772.114242 +1344787.842703 +1344787.842703 +1344818.695082 +1344818.695082 +1344844.600535 +1344869.327827 +1344869.327827 +1344869.327827 +1344904.870611 +1344904.870611 +1344921.518092 +1344942.770849 +1344942.770849 +1344942.770849 +1344956.205484 +1344971.560307 +1344986.491239 +1344996.142438 +1345001.536240 +1345001.536240 +1345025.200642 +1345025.200642 +1345053.144018 +1345061.990542 +1345096.663074 +1345096.663074 +1345101.055866 +1345122.705082 +1345131.328055 +1345131.328055 +1345150.992108 +1345163.954746 +1345194.793288 +1345194.793288 +1345194.793288 +1345198.412772 +1345225.750496 +1345225.750496 +1345238.907952 +1345258.575100 +1345265.291320 +1345269.559903 +1345312.309813 +1345331.771526 +1345331.771526 +1345341.710168 +1345360.371668 +1345362.057476 +1345374.421124 +1345374.421124 +1345391.022046 +1345391.022046 +1345399.885911 +1345428.248203 +1345458.841891 +1345458.841891 +1345464.281032 +1345467.039465 +1345467.039465 +1345474.547468 +1345485.676332 +1345485.676332 +1345514.064985 +1345526.339999 +1345556.315474 +1345561.399912 +1345595.244608 +1345611.996427 +1345611.996427 +1345611.996427 +1345625.020190 +1345625.020190 +1345654.429162 +1345654.429162 +1345675.975561 +1345675.975561 +1345693.816096 +1345693.816096 +1345724.934153 +1345741.418906 +1345741.418906 +1345741.418906 +1345783.291893 +1345785.915085 +1345785.915085 +1345785.915085 +1345809.639910 +1345811.402387 +1345811.402387 +1345864.534355 +1345864.534355 +1345892.044540 +1345895.358339 +1345912.543848 +1345912.543848 +1345912.543848 +1345951.079893 +1345951.079893 +1345967.332525 +1345967.332525 +1345974.880888 +1345989.367442 +1345992.167848 +1346010.563566 +1346010.563566 +1346043.691262 +1346043.691262 +1346076.378980 +1346092.042803 +1346092.042803 +1346095.182081 +1346095.182081 +1346135.987549 +1346135.987549 +1346144.143612 +1346144.143612 +1346148.973045 +1346167.531871 +1346226.763897 +1346226.763897 +1346242.649941 +1346242.649941 +1346242.649941 +1346242.649941 +1346263.734847 +1346264.404516 +1346310.444525 +1346310.444525 +1346310.444525 +1346310.444525 +1346329.468778 +1346337.876704 +1346356.373528 +1346356.373528 +1346368.975264 +1346375.861797 +1346388.230396 +1346413.001669 +1346425.460789 +1346431.716104 +1346463.023778 +1346463.023778 +1346463.153143 +1346467.919561 +1346484.486480 +1346518.209756 +1346520.975479 +1346539.955125 +1346558.627000 +1346567.771503 +1346567.771503 +1346574.441153 +1346595.711155 +1346595.711155 +1346628.041210 +1346628.041210 +1346644.362101 +1346644.362101 +1346672.559277 +1346672.559277 +1346672.559277 +1346695.754644 +1346714.753369 +1346714.753369 +1346731.400021 +1346742.195229 +1346742.195229 +1346754.836476 +1346788.270226 +1346788.270226 +1346802.811413 +1346802.811413 +1346813.027314 +1346842.779662 +1346852.516054 +1346872.600812 +1346872.600812 +1346872.600812 +1346925.240458 +1346925.240458 +1346925.240458 +1346925.240458 +1346955.087088 +1346955.087088 +1346963.993767 +1346970.992520 +1346981.110263 +1347016.329158 +1347028.715638 +1347028.715638 +1347038.031757 +1347038.031757 +1347071.671993 +1347071.671993 +1347081.923007 +1347081.923007 +1347085.845516 +1347123.828417 +1347132.385925 +1347147.788902 +1347150.546183 +1347154.663896 +1347183.691955 +1347183.691955 +1347203.884810 +1347222.201426 +1347222.201426 +1347222.201426 +1347222.201426 +1347252.946980 +1347261.262209 +1347261.262209 +1347266.144854 +1347287.032725 +1347292.371084 +1347301.102262 +1347363.196995 +1347363.196995 +1347363.196995 +1347384.630555 +1347384.630555 +1347390.381625 +1347429.829697 +1347429.829697 +1347431.818000 +1347450.150972 +1347451.048499 +1347468.522222 +1347468.522222 +1347499.001319 +1347499.001319 +1347499.001319 +1347501.896634 +1347538.663807 +1347538.663807 +1347559.892481 +1347566.987052 +1347609.986699 +1347609.986699 +1347609.986699 +1347609.986699 +1347624.338329 +1347624.338329 +1347653.218512 +1347653.218512 +1347690.679132 +1347690.679132 +1347706.613877 +1347706.613877 +1347721.829008 +1347738.393268 +1347739.875606 +1347758.721331 +1347767.019093 +1347767.019093 +1347804.891985 +1347804.891985 +1347806.260418 +1347826.312377 +1347826.312377 +1347836.310879 +1347860.515735 +1347864.716155 +1347875.655909 +1347876.145951 +1347904.193319 +1347927.084547 +1347933.988196 +1347933.988196 +1347933.988196 +1347942.334521 +1347959.783109 +1348004.055221 +1348015.384384 +1348015.384384 +1348015.384384 +1348023.002943 +1348068.205184 +1348068.205184 +1348068.205184 +1348079.462624 +1348091.725503 +1348096.404867 +1348121.686536 +1348121.686536 +1348121.686536 +1348132.747732 +1348132.747732 +1348181.590558 +1348181.590558 +1348198.987978 +1348210.282589 +1348227.474499 +1348227.474499 +1348227.474499 +1348250.588602 +1348250.588602 +1348250.945733 +1348268.557107 +1348295.351681 +1348318.027729 +1348318.027729 +1348326.571455 +1348328.304326 +1348328.304326 +1348365.258801 +1348374.528607 +1348374.528607 +1348406.698999 +1348406.698999 +1348406.698999 +1348436.028405 +1348436.028405 +1348442.319635 +1348443.083629 +1348445.154372 +1348461.629258 +1348487.056127 +1348493.081823 +1348493.081823 +1348520.793035 +1348526.846065 +1348573.702164 +1348573.702164 +1348573.702164 +1348587.845966 +1348587.845966 +1348615.857264 +1348615.857264 +1348615.857264 +1348634.949747 +1348663.547744 +1348663.547744 +1348678.590014 +1348678.590014 +1348686.447130 +1348686.447130 +1348720.681258 +1348732.534483 +1348742.640368 +1348742.640368 +1348758.684497 +1348761.610331 +1348765.384248 +1348774.130736 +1348824.083540 +1348824.083540 +1348825.414396 +1348835.375298 +1348854.539488 +1348854.539488 +1348859.789039 +1348872.888990 +1348901.766838 +1348929.434424 +1348929.434424 +1348946.176049 +1348946.176049 +1348946.176049 +1348953.172921 +1348953.172921 +1348963.891695 +1348982.831869 +1349006.228821 +1349006.228821 +1349006.228821 +1349030.725199 +1349045.894963 +1349055.253344 +1349064.905404 +1349072.840897 +1349094.209569 +1349120.523822 +1349120.523822 +1349120.523822 +1349153.764605 +1349165.218144 +1349165.218144 +1349170.930423 +1349181.699622 +1349199.367276 +1349219.819736 +1349219.819736 +1349268.253637 +1349268.253637 +1349268.253637 +1349268.253637 +1349268.323362 +1349280.183237 +1349280.183237 +1349305.416054 +1349318.760631 +1349318.760631 +1349322.145967 +1349328.173353 +1349329.463514 +1349358.751074 +1349377.244344 +1349382.017082 +1349382.017082 +1349425.300725 +1349425.300725 +1349426.516861 +1349444.911779 +1349444.911779 +1349462.588975 +1349479.633929 +1349501.482192 +1349501.482192 +1349501.482192 +1349522.322346 +1349545.730972 +1349545.730972 +1349545.730972 +1349545.730972 +1349545.730972 +1349572.901392 +1349603.877650 +1349614.983324 +1349617.891592 +1349621.688214 +1349631.289420 +1349662.047693 +1349677.697147 +1349688.070671 +1349693.426373 +1349693.426373 +1349720.512729 +1349720.512729 +1349728.328215 +1349729.088544 +1349765.058077 +1349773.061752 +1349773.061752 +1349773.061752 +1349786.062802 +1349786.062802 +1349811.113636 +1349811.113636 +1349811.113636 +1349848.547228 +1349874.701746 +1349874.701746 +1349885.971990 +1349889.477039 +1349894.361533 +1349919.042717 +1349919.042717 +1349919.042717 +1349938.380997 +1349942.875554 +1349961.139980 +1350006.034146 +1350006.034146 +1350006.034146 +1350014.897926 +1350014.897926 +1350049.202613 +1350049.202613 +1350049.202613 +1350077.592248 +1350077.592248 +1350077.592248 +1350083.096722 +1350102.482274 +1350113.150708 +1350120.850717 +1350124.333669 +1350154.206071 +1350162.330491 +1350173.009667 +1350197.140704 +1350197.140704 +1350197.140704 +1350220.142438 +1350220.142438 +1350242.927039 +1350269.518963 +1350269.518963 +1350269.518963 +1350269.518963 +1350301.213114 +1350303.562638 +1350320.726128 +1350334.690012 +1350371.804416 +1350371.804416 +1350371.804416 +1350371.804416 +1350371.804416 +1350389.425045 +1350406.368491 +1350406.368491 +1350413.593792 +1350418.400522 +1350428.832698 +1350428.832698 +1350472.028917 +1350472.028917 +1350511.290613 +1350521.700262 +1350521.700262 +1350525.537523 +1350542.482360 +1350542.482360 +1350546.824123 +1350546.824123 +1350556.148450 +1350595.703295 +1350598.985008 +1350613.619823 +1350636.040489 +1350641.353933 +1350641.353933 +1350641.353933 +1350660.600282 +1350660.600282 +1350687.122872 +1350695.406547 +1350695.406547 +1350719.734974 +1350724.551970 +1350725.736980 +1350764.325706 +1350764.325706 +1350764.325706 +1350764.325706 +1350769.447625 +1350769.447625 +1350818.573734 +1350818.573734 +1350827.648966 +1350855.428859 +1350855.428859 +1350857.612935 +1350872.332971 +1350895.238044 +1350917.160135 +1350936.246997 +1350936.246997 +1350936.246997 +1350959.042751 +1350959.042751 +1350959.042751 +1350974.124942 +1350974.124942 +1350986.590961 +1351003.893055 +1351012.977192 +1351028.980905 +1351028.980905 +1351053.915449 +1351059.822496 +1351059.822496 +1351062.865010 +1351095.991504 +1351095.991504 +1351111.107703 +1351114.923728 +1351114.923728 +1351139.914926 +1351165.948815 +1351165.948815 +1351184.818173 +1351184.818173 +1351188.796399 +1351192.611104 +1351211.594742 +1351241.332818 +1351241.332818 +1351241.332818 +1351263.337293 +1351301.535934 +1351301.535934 +1351301.535934 +1351349.652855 +1351349.652855 +1351349.652855 +1351349.652855 +1351349.652855 +1351364.443188 +1351364.443188 +1351378.195054 +1351383.407046 +1351416.796100 +1351423.908357 +1351423.908357 +1351458.293160 +1351458.293160 +1351458.293160 +1351458.293160 +1351491.320128 +1351491.320128 +1351497.280924 +1351498.710932 +1351521.930714 +1351521.930714 +1351522.134075 +1351564.624740 +1351564.624740 +1351564.624740 +1351569.121989 +1351616.850628 +1351616.850628 +1351616.850628 +1351634.990924 +1351635.366063 +1351664.294576 +1351664.294576 +1351678.844027 +1351685.636721 +1351694.551201 +1351698.708271 +1351715.609614 +1351719.290360 +1351755.069522 +1351760.345928 +1351760.345928 +1351760.345928 +1351760.345928 +1351773.121673 +1351774.006656 +1351804.476585 +1351830.425527 +1351830.425527 +1351847.476126 +1351847.476126 +1351899.359208 +1351899.359208 +1351899.359208 +1351900.825614 +1351900.825614 +1351900.825614 +1351903.001054 +1351914.804357 +1351936.825138 +1351957.048781 +1351981.791514 +1351985.105584 +1351996.410364 +1351996.410364 +1352003.201881 +1352028.831228 +1352028.831228 +1352038.911366 +1352042.493591 +1352058.601888 +1352077.919554 +1352077.919554 +1352089.681853 +1352089.681853 +1352111.636713 +1352121.658268 +1352133.454200 +1352141.595433 +1352141.595433 +1352173.499086 +1352173.499086 +1352173.499086 +1352173.499086 +1352207.797173 +1352207.797173 +1352231.394992 +1352250.146695 +1352250.146695 +1352250.146695 +1352282.794076 +1352282.794076 +1352295.172159 +1352322.466655 +1352322.466655 +1352324.901698 +1352324.901698 +1352324.901698 +1352346.388907 +1352346.388907 +1352360.646161 +1352360.646161 +1352393.932391 +1352393.932391 +1352409.920191 +1352422.695992 +1352444.293072 +1352444.293072 +1352461.470440 +1352461.470440 +1352463.947176 +1352480.196497 +1352491.481061 +1352491.481061 +1352511.175255 +1352511.175255 +1352512.039635 +1352533.400195 +1352539.316868 +1352568.848479 +1352568.848479 +1352594.052190 +1352594.052190 +1352607.012825 +1352612.770945 +1352612.770945 +1352612.770945 +1352647.242248 +1352670.542358 +1352682.388919 +1352682.388919 +1352705.961131 +1352723.823977 +1352723.823977 +1352724.413142 +1352725.465839 +1352728.701584 +1352735.698515 +1352743.468658 +1352752.924829 +1352783.587526 +1352783.587526 +1352788.698174 +1352799.455682 +1352812.075277 +1352826.163175 +1352856.256791 +1352856.256791 +1352903.324316 +1352903.324316 +1352903.324316 +1352903.324316 +1352906.922053 +1352914.589207 +1352914.589207 +1352925.306084 +1352945.724425 +1352955.133154 +1352963.065374 +1352990.759804 +1352990.759804 +1352995.319177 +1352998.448822 +1353018.180495 +1353042.672903 +1353042.672903 +1353042.672903 +1353047.625320 +1353055.933244 +1353091.737786 +1353091.737786 +1353109.435036 +1353109.435036 +1353109.850054 +1353120.701597 +1353120.701597 +1353155.083724 +1353168.496856 +1353170.686634 +1353177.665387 +1353183.666964 +1353213.112739 +1353223.506134 +1353235.774506 +1353242.973260 +1353242.973260 +1353242.973260 +1353242.973260 +1353289.558304 +1353294.848143 +1353316.703439 +1353316.703439 +1353316.703439 +1353324.762581 +1353354.410716 +1353372.336978 +1353372.336978 +1353372.336978 +1353382.874910 +1353401.259875 +1353401.259875 +1353401.259875 +1353401.589731 +1353401.589731 +1353401.589731 +1353433.175809 +1353469.056224 +1353487.088563 +1353487.088563 +1353488.551060 +1353488.734495 +1353530.832646 +1353530.832646 +1353537.090230 +1353537.090230 +1353555.111999 +1353555.111999 +1353555.111999 +1353613.594451 +1353613.594451 +1353617.290648 +1353617.905865 +1353617.905865 +1353617.905865 +1353628.219211 +1353641.229366 +1353649.226101 +1353661.049920 +1353664.255317 +1353681.386326 +1353693.258642 +1353717.114573 +1353717.114573 +1353731.864691 +1353734.213131 +1353758.310163 +1353758.310163 +1353778.438501 +1353778.438501 +1353796.981836 +1353796.981836 +1353798.957663 +1353811.992229 +1353815.688629 +1353815.829232 +1353852.141781 +1353863.485323 +1353899.626896 +1353899.695277 +1353899.695277 +1353901.904062 +1353903.580935 +1353904.804325 +1353945.944478 +1353945.944478 +1353945.944478 +1353956.436096 +1353977.262051 +1353977.262051 +1354038.154001 +1354038.154001 +1354042.109170 +1354042.109170 +1354042.109170 +1354047.284239 +1354051.951527 +1354069.654700 +1354069.654700 +1354071.685124 +1354121.702136 +1354121.702136 +1354121.702136 +1354122.970548 +1354146.950671 +1354168.536018 +1354188.383630 +1354188.383630 +1354190.318005 +1354190.318005 +1354193.810457 +1354193.810457 +1354227.738402 +1354235.476665 +1354243.401568 +1354243.401568 +1354246.087598 +1354287.559957 +1354287.559957 +1354287.559957 +1354287.559957 +1354310.892001 +1354310.892001 +1354332.744262 +1354332.744262 +1354332.744262 +1354336.603150 +1354360.496565 +1354372.913458 +1354386.179872 +1354421.702422 +1354421.702422 +1354428.159939 +1354440.035394 +1354440.035394 +1354458.184225 +1354465.154845 +1354475.103919 +1354482.701086 +1354482.701086 +1354505.113255 +1354505.113255 +1354505.113255 +1354505.113255 +1354523.281187 +1354542.971463 +1354570.529280 +1354570.529280 +1354572.424904 +1354587.997042 +1354588.939236 +1354596.704333 +1354632.466888 +1354637.924062 +1354640.821883 +1354640.821883 +1354663.245628 +1354677.265940 +1354677.265940 +1354700.544043 +1354700.544043 +1354700.544043 +1354722.057845 +1354722.057845 +1354732.083841 +1354732.083841 +1354732.083841 +1354752.608074 +1354776.567204 +1354776.567204 +1354821.027283 +1354821.027283 +1354821.027283 +1354829.026891 +1354829.026891 +1354860.680576 +1354866.362467 +1354866.362467 +1354866.362467 +1354875.304690 +1354879.378682 +1354896.195284 +1354922.108092 +1354925.282035 +1354953.866169 +1354953.866169 +1354953.866169 +1354963.278343 +1354989.079613 +1354997.826751 +1354998.138534 +1355012.884119 +1355012.884119 +1355015.413470 +1355029.876637 +1355035.617564 +1355077.984602 +1355077.984602 +1355086.142739 +1355086.142739 +1355086.142739 +1355089.874350 +1355126.984759 +1355126.984759 +1355148.286627 +1355148.286627 +1355148.286627 +1355156.391740 +1355183.551692 +1355183.551692 +1355215.303267 +1355215.303267 +1355228.845525 +1355228.845525 +1355228.845525 +1355248.960338 +1355267.842994 +1355267.842994 +1355267.842994 +1355267.842994 +1355287.907488 +1355301.058943 +1355309.350817 +1355309.350817 +1355344.757043 +1355344.757043 +1355352.192223 +1355372.017173 +1355372.017173 +1355397.494850 +1355404.159357 +1355419.400542 +1355426.901161 +1355426.901161 +1355441.327926 +1355441.327926 +1355441.327926 +1355441.327926 +1355480.656505 +1355480.656505 +1355493.111690 +1355515.646317 +1355515.646317 +1355545.690721 +1355545.690721 +1355545.690721 +1355546.346105 +1355567.104530 +1355573.488734 +1355573.488734 +1355579.784727 +1355597.384219 +1355604.755157 +1355635.795920 +1355635.795920 +1355635.795920 +1355635.795920 +1355662.720397 +1355664.059895 +1355664.059895 +1355680.017603 +1355709.628328 +1355718.820325 +1355749.706574 +1355749.706574 +1355762.912922 +1355762.912922 +1355762.912922 +1355783.409536 +1355783.409536 +1355797.804092 +1355797.804092 +1355797.804092 +1355818.913203 +1355818.913203 +1355825.933828 +1355830.218117 +1355853.147723 +1355871.476402 +1355876.184684 +1355876.184684 +1355885.581125 +1355894.749450 +1355916.170813 +1355921.994954 +1355956.492917 +1355976.291195 +1355976.291195 +1355976.291195 +1355976.291195 +1355976.291195 +1355981.316381 +1356013.958220 +1356013.958220 +1356013.958220 +1356039.865701 +1356039.865701 +1356055.503685 +1356055.503685 +1356099.883506 +1356099.883506 +1356099.883506 +1356126.960591 +1356126.960591 +1356126.960591 +1356145.152828 +1356168.716630 +1356168.716630 +1356168.716630 +1356172.444793 +1356175.038045 +1356191.487391 +1356191.846100 +1356197.827486 +1356213.761525 +1356222.094732 +1356242.190348 +1356251.678245 +1356258.985585 +1356278.942709 +1356280.297578 +1356298.084680 +1356337.639591 +1356337.639591 +1356337.639591 +1356341.118898 +1356350.907039 +1356356.834203 +1356369.794837 +1356382.766137 +1356382.766137 +1356382.766137 +1356411.864925 +1356415.114665 +1356415.114665 +1356415.317269 +1356427.572293 +1356433.641470 +1356480.220436 +1356480.220436 +1356480.220436 +1356521.775460 +1356521.775460 +1356529.008788 +1356529.008788 +1356529.008788 +1356529.008788 +1356538.806716 +1356558.332220 +1356558.332220 +1356572.759993 +1356581.893078 +1356614.557570 +1356614.557570 +1356635.302635 +1356635.302635 +1356672.318396 +1356672.318396 +1356672.318396 +1356672.318396 +1356685.234607 +1356728.036438 +1356728.036438 +1356728.036438 +1356728.036438 +1356728.036438 +1356764.153193 +1356764.153193 +1356764.153193 +1356775.403471 +1356779.170323 +1356779.170323 +1356791.017688 +1356799.114993 +1356811.121383 +1356827.407406 +1356855.804664 +1356863.000983 +1356863.000983 +1356863.122776 +1356863.122776 +1356864.607398 +1356901.219102 +1356901.219102 +1356949.262027 +1356949.262027 +1356964.634121 +1356978.451099 +1356978.451099 +1356978.451099 +1356978.451099 +1356978.451099 +1356983.847105 +1356991.254184 +1357027.313023 +1357027.313023 +1357032.940248 +1357035.554402 +1357066.553361 +1357066.553361 +1357082.541835 +1357087.350034 +1357096.346543 +1357096.346543 +1357096.346543 +1357110.332116 +1357110.500956 +1357110.500956 +1357154.252163 +1357167.658665 +1357180.271847 +1357198.103897 +1357198.103897 +1357213.061881 +1357213.061881 +1357242.308711 +1357242.308711 +1357256.022872 +1357256.022872 +1357256.022872 +1357278.428882 +1357299.229022 +1357299.229022 +1357299.229022 +1357299.229022 +1357311.271776 +1357311.271776 +1357326.455882 +1357359.654871 +1357359.654871 +1357359.654871 +1357409.922926 +1357409.922926 +1357409.922926 +1357409.922926 +1357409.922926 +1357447.825082 +1357447.825082 +1357451.388141 +1357453.241944 +1357456.571071 +1357472.304162 +1357482.168920 +1357490.458621 +1357517.679626 +1357517.679626 +1357530.014787 +1357530.014787 +1357530.014787 +1357536.863419 +1357576.070726 +1357576.070726 +1357576.070726 +1357588.730008 +1357588.730008 +1357609.671024 +1357624.708561 +1357633.232920 +1357662.318329 +1357662.318329 +1357675.477754 +1357675.477754 +1357675.477754 +1357675.477754 +1357710.143299 +1357710.143299 +1357744.287019 +1357744.287019 +1357744.287019 +1357767.105356 +1357774.767167 +1357774.767167 +1357793.066553 +1357793.066553 +1357813.453231 +1357813.453231 +1357813.453231 +1357838.001432 +1357860.357630 +1357860.357630 +1357860.357630 +1357867.068555 +1357867.068555 +1357869.089348 +1357914.893069 +1357914.893069 +1357914.893069 +1357919.655484 +1357955.856376 +1357955.856376 +1357955.856376 +1357974.783369 +1357983.277697 +1357983.277697 +1357988.452207 +1358004.615045 +1358011.836331 +1358011.836331 +1358024.286216 +1358042.833543 +1358042.833543 +1358053.030320 +1358053.030320 +1358057.470559 +1358074.869896 +1358106.732538 +1358106.732538 +1358106.732538 +1358111.241760 +1358128.631259 +1358152.048037 +1358166.340194 +1358174.825055 +1358174.825055 +1358180.955498 +1358180.955498 +1358180.955498 +1358215.828457 +1358224.740772 +1358224.740772 +1358234.720205 +1358234.720205 +1358234.720205 +1358283.492569 +1358301.754707 +1358302.068989 +1358302.068989 +1358302.068989 +1358314.674170 +1358333.381686 +1358333.381686 +1358335.200058 +1358363.013588 +1358363.013588 +1358364.768712 +1358394.505074 +1358408.270381 +1358408.300750 +1358417.122470 +1358417.122470 +1358431.397072 +1358437.583372 +1358454.914843 +1358454.914843 +1358461.784730 +1358473.664284 +1358492.665527 +1358495.748907 +1358506.855591 +1358530.575273 +1358565.601003 +1358565.601003 +1358565.601003 +1358565.601003 +1358565.601003 +1358578.933199 +1358593.734351 +1358594.872018 +1358594.872018 +1358606.128522 +1358623.551007 +1358623.551007 +1358650.219255 +1358650.219255 +1358673.353268 +1358673.353268 +1358701.739148 +1358701.739148 +1358703.470645 +1358740.197668 +1358740.197668 +1358740.197668 +1358740.197668 +1358744.171828 +1358744.171828 +1358783.879402 +1358783.879402 +1358799.234704 +1358811.593652 +1358811.593652 +1358811.593652 +1358830.002947 +1358845.404859 +1358845.404859 +1358845.404859 +1358847.115150 +1358883.999631 +1358893.691242 +1358918.980169 +1358920.946208 +1358926.301294 +1358926.301294 +1358926.301294 +1358937.622066 +1358937.622066 +1358943.876436 +1358976.363632 +1358976.363632 +1358976.363632 +1358984.031603 +1359020.565156 +1359020.565156 +1359020.565156 +1359040.249190 +1359054.115605 +1359054.115605 +1359062.142961 +1359074.589647 +1359095.462840 +1359095.462840 +1359108.186078 +1359122.670049 +1359122.670049 +1359143.694115 +1359143.694115 +1359148.166153 +1359149.919047 +1359197.610283 +1359197.610283 +1359197.610283 +1359197.610283 +1359216.016371 +1359234.606960 +1359249.158757 +1359249.158757 +1359304.694004 +1359304.694004 +1359304.694004 +1359304.694004 +1359304.694004 +1359304.694004 +1359304.694004 +1359304.694004 +1359304.694004 +1359304.694004 +1359345.407847 +1359365.486602 +1359371.680978 +1359374.702323 +1359375.066120 +1359383.838810 +1359409.266307 +1359409.266307 +1359409.266307 +1359452.588033 +1359452.588033 +1359455.708455 +1359458.699566 +1359487.846223 +1359487.846223 +1359520.887947 +1359520.887947 +1359520.887947 +1359520.887947 +1359520.887947 +1359520.887947 +1359528.810689 +1359528.810689 +1359540.318844 +1359565.710916 +1359576.648778 +1359578.463019 +1359584.040615 +1359635.899868 +1359635.899868 +1359635.899868 +1359635.899868 +1359665.686700 +1359665.686700 +1359677.615394 +1359677.615394 +1359722.710066 +1359722.710066 +1359722.710066 +1359722.710066 +1359722.710066 +1359722.710066 +1359742.924933 +1359742.924933 +1359802.808261 +1359802.808261 +1359802.808261 +1359802.808261 +1359819.385419 +1359819.385419 +1359825.328060 +1359827.801515 +1359827.801515 +1359845.158419 +1359845.158419 +1359846.131993 +1359880.874872 +1359880.927024 +1359904.310706 +1359904.310706 +1359914.731243 +1359914.731243 +1359927.741894 +1359945.517103 +1359970.545236 +1359970.545236 +1359990.489291 +1359997.932350 +1359997.932350 +1359999.110900 +1359999.110900 +1360017.177639 +1360045.529834 +1360045.529834 +1360045.529834 +1360045.529834 +1360046.330297 +1360047.742343 +1360060.451913 +1360060.451913 +1360101.031275 +1360106.997227 +1360106.997227 +1360122.357980 +1360125.149931 +1360133.216474 +1360136.550844 +1360175.294473 +1360204.175849 +1360205.706973 +1360205.706973 +1360214.045869 +1360214.045869 +1360219.224201 +1360219.224201 +1360238.940314 +1360250.783790 +1360250.783790 +1360270.316003 +1360270.316003 +1360270.316003 +1360286.466212 +1360286.466212 +1360301.806934 +1360323.103326 +1360334.035418 +1360345.520378 +1360370.472732 +1360370.472732 +1360370.472732 +1360377.588574 +1360377.588574 +1360399.811123 +1360407.544891 +1360407.544891 +1360428.972569 +1360428.972569 +1360437.747338 +1360469.527036 +1360469.527036 +1360474.195568 +1360487.685210 +1360487.685210 +1360515.558372 +1360515.558372 +1360529.394522 +1360529.394522 +1360537.003887 +1360537.003887 +1360563.950573 +1360578.874997 +1360578.874997 +1360578.874997 +1360615.048958 +1360615.048958 +1360615.048958 +1360615.048958 +1360628.192192 +1360634.038445 +1360659.609642 +1360659.609642 +1360659.609642 +1360681.824852 +1360709.268374 +1360709.268374 +1360728.402219 +1360728.402219 +1360728.402219 +1360729.287426 +1360746.850035 +1360746.850035 +1360776.054663 +1360784.648502 +1360805.270161 +1360805.270161 +1360805.270161 +1360805.270161 +1360825.349942 +1360825.349942 +1360825.349942 +1360825.349942 +1360852.839308 +1360864.086450 +1360864.086450 +1360864.086450 +1360899.093539 +1360903.375050 +1360903.375050 +1360923.016218 +1360930.958859 +1360952.560908 +1360952.560908 +1360973.110104 +1360982.358264 +1360982.358264 +1360982.358264 +1360987.080992 +1361023.810052 +1361023.810052 +1361026.395327 +1361026.395327 +1361060.943976 +1361065.188214 +1361084.988632 +1361084.988632 +1361102.685654 +1361102.685654 +1361102.685654 +1361102.685654 +1361113.719851 +1361113.719851 +1361114.909200 +1361132.175983 +1361142.764223 +1361163.856884 +1361168.775254 +1361182.016324 +1361225.299658 +1361225.299658 +1361225.299658 +1361225.299658 +1361247.625458 +1361247.625458 +1361247.625458 +1361271.430163 +1361271.430163 +1361271.430163 +1361291.611301 +1361291.611301 +1361316.970639 +1361316.970639 +1361316.970639 +1361325.077370 +1361354.797453 +1361354.797453 +1361372.015030 +1361372.015030 +1361379.083313 +1361383.780885 +1361383.780885 +1361384.898861 +1361432.097030 +1361432.097030 +1361451.999942 +1361451.999942 +1361451.999942 +1361451.999942 +1361461.558583 +1361467.671546 +1361467.671546 +1361492.047797 +1361493.181270 +1361529.908854 +1361529.908854 +1361550.419913 +1361550.419913 +1361550.419913 +1361550.419913 +1361577.292385 +1361578.133414 +1361595.648655 +1361595.648655 +1361620.431454 +1361620.431454 +1361622.464331 +1361631.239196 +1361631.239196 +1361645.784015 +1361667.414165 +1361672.313298 +1361695.202810 +1361696.891054 +1361718.007331 +1361719.276849 +1361730.761762 +1361730.947591 +1361730.947591 +1361741.216279 +1361744.954460 +1361744.954460 +1361758.867358 +1361808.497235 +1361808.497235 +1361809.559299 +1361809.559299 +1361835.087734 +1361839.258053 +1361856.291866 +1361856.291866 +1361856.291866 +1361856.291866 +1361858.083878 +1361891.378156 +1361896.753072 +1361916.591925 +1361916.591925 +1361926.614354 +1361929.834842 +1361939.821142 +1361939.821142 +1361954.381789 +1361974.149444 +1361978.929007 +1362004.052964 +1362004.052964 +1362004.052964 +1362004.944308 +1362022.672595 +1362024.185551 +1362024.185551 +1362024.185551 +1362040.739212 +1362066.460523 +1362093.048726 +1362093.048726 +1362093.048726 +1362108.393559 +1362108.393559 +1362113.629001 +1362136.766881 +1362143.507708 +1362143.507708 +1362172.153470 +1362172.153470 +1362174.539855 +1362179.785322 +1362209.582469 +1362225.067932 +1362225.067932 +1362225.067932 +1362225.067932 +1362242.554825 +1362263.689844 +1362263.689844 +1362290.585398 +1362290.585398 +1362290.585398 +1362291.116687 +1362315.898776 +1362319.273266 +1362319.273266 +1362334.126162 +1362334.126162 +1362348.495849 +1362376.464067 +1362376.464067 +1362395.249643 +1362395.249643 +1362403.902490 +1362407.348756 +1362457.090466 +1362457.090466 +1362457.090466 +1362457.090466 +1362470.497348 +1362470.497348 +1362482.487275 +1362491.171519 +1362491.171519 +1362499.268332 +1362527.435934 +1362527.435934 +1362529.452883 +1362529.708617 +1362545.396794 +1362548.204255 +1362562.244842 +1362568.657384 +1362600.470291 +1362600.470291 +1362600.470291 +1362614.782210 +1362629.829827 +1362650.522677 +1362650.522677 +1362657.209113 +1362663.324030 +1362664.666712 +1362664.666712 +1362675.106153 +1362678.223551 +1362697.849714 +1362748.627995 +1362748.627995 +1362748.627995 +1362750.070753 +1362761.632583 +1362778.524595 +1362778.524595 +1362778.524595 +1362778.524595 +1362785.386999 +1362823.104550 +1362823.104550 +1362834.508825 +1362834.508825 +1362844.019259 +1362844.019259 +1362881.084273 +1362881.084273 +1362881.084273 +1362894.656774 +1362894.656774 +1362916.597072 +1362916.597072 +1362923.061725 +1362933.187697 +1362943.516084 +1362958.588088 +1362958.588088 +1362964.744943 +1362983.309318 +1362997.606994 +1363011.756995 +1363012.238397 +1363024.026723 +1363024.026723 +1363034.058720 +1363034.058720 +1363043.639036 +1363061.042822 +1363074.779901 +1363074.779901 +1363074.779901 +1363088.022055 +1363106.086723 +1363106.086723 +1363148.580586 +1363148.580586 +1363148.580586 +1363158.958055 +1363179.916149 +1363179.916149 +1363190.064848 +1363190.064848 +1363193.043344 +1363197.279658 +1363227.875227 +1363227.875227 +1363233.567787 +1363251.092433 +1363256.576019 +1363270.512814 +1363270.512814 +1363272.750088 +1363275.028574 +1363289.403226 +1363302.751229 +1363302.751229 +1363315.738268 +1363339.672618 +1363339.672618 +1363341.943492 +1363380.943859 +1363380.943859 +1363380.943859 +1363395.271028 +1363395.271028 +1363405.799746 +1363411.238705 +1363411.238705 +1363441.728327 +1363455.462102 +1363457.130305 +1363467.017802 +1363467.017802 +1363492.709468 +1363510.273654 +1363510.273654 +1363510.273654 +1363532.376102 +1363532.376102 +1363534.668916 +1363539.863125 +1363562.031276 +1363562.031276 +1363570.921654 +1363573.921711 +1363594.495344 +1363594.495344 +1363599.063928 +1363608.324561 +1363608.324561 +1363646.211954 +1363646.211954 +1363666.186859 +1363666.186859 +1363682.950886 +1363682.950886 +1363682.950886 +1363690.908576 +1363729.504388 +1363729.504388 +1363729.504388 +1363736.063689 +1363736.063689 +1363754.897529 +1363767.416359 +1363776.627362 +1363783.496281 +1363783.496281 +1363792.571161 +1363792.571161 +1363820.879653 +1363820.879653 +1363825.904650 +1363825.904650 +1363827.435397 +1363865.865717 +1363865.865717 +1363876.543770 +1363879.615804 +1363888.278538 +1363903.734857 +1363903.734857 +1363936.979138 +1363940.398330 +1363940.398330 +1363940.398330 +1363943.201924 +1363971.477704 +1363975.908522 +1363979.311526 +1364005.948042 +1364005.948042 +1364032.467980 +1364032.467980 +1364037.193766 +1364037.193766 +1364052.697829 +1364052.697829 +1364052.697829 +1364073.499460 +1364081.171802 +1364099.757377 +1364099.757377 +1364099.757377 +1364143.304805 +1364143.304805 +1364162.384388 +1364162.384388 +1364162.384388 +1364167.645831 +1364175.182914 +1364175.182914 +1364177.445992 +1364178.747656 +1364197.252132 +1364216.430256 +1364242.692809 +1364243.037348 +1364243.037348 +1364269.571563 +1364269.708085 +1364269.708085 +1364280.575026 +1364285.608584 +1364303.916543 +1364303.916543 +1364306.204025 +1364327.074318 +1364327.074318 +1364339.918186 +1364369.389967 +1364369.389967 +1364369.389967 +1364395.736763 +1364395.736763 +1364398.907734 +1364398.907734 +1364398.907734 +1364439.606247 +1364439.606247 +1364439.606247 +1364470.000928 +1364470.000928 +1364470.000928 +1364487.481231 +1364487.481231 +1364509.867032 +1364509.867032 +1364509.867032 +1364532.417080 +1364533.391124 +1364555.758562 +1364555.758562 +1364555.758562 +1364569.066972 +1364576.836022 +1364580.171555 +1364580.171555 +1364598.101347 +1364605.798341 +1364629.404496 +1364629.404496 +1364629.404496 +1364652.775629 +1364669.537350 +1364669.537350 +1364674.997339 +1364675.281216 +1364687.256307 +1364698.473457 +1364717.690402 +1364717.690402 +1364717.690402 +1364733.057520 +1364749.234119 +1364749.234119 +1364784.029689 +1364784.029689 +1364784.029689 +1364797.323072 +1364805.376898 +1364805.376898 +1364805.376898 +1364819.497693 +1364850.889432 +1364850.889432 +1364850.889432 +1364850.889432 +1364876.003404 +1364886.820226 +1364886.820226 +1364886.820226 +1364905.713931 +1364919.176417 +1364919.176417 +1364919.176417 +1364923.848548 +1364923.848548 +1364935.374085 +1364948.968787 +1364965.101022 +1364965.101022 +1364978.589838 +1364998.506549 +1365023.622653 +1365023.622653 +1365023.622653 +1365028.012523 +1365028.207401 +1365046.050377 +1365046.050377 +1365056.628309 +1365067.378050 +1365067.378050 +1365081.822077 +1365099.069422 +1365106.121053 +1365106.121053 +1365113.903268 +1365141.113270 +1365141.113270 +1365173.787551 +1365173.787551 +1365176.852574 +1365176.852574 +1365176.852574 +1365188.047291 +1365188.047291 +1365224.393793 +1365224.393793 +1365224.393793 +1365231.982417 +1365257.599297 +1365257.599297 +1365279.906078 +1365279.906078 +1365279.906078 +1365281.482401 +1365305.455900 +1365305.455900 +1365305.455900 +1365334.750330 +1365345.514951 +1365345.514951 +1365345.514951 +1365353.425700 +1365353.425700 +1365384.083546 +1365398.111406 +1365398.111406 +1365413.394412 +1365422.265312 +1365429.591990 +1365429.591990 +1365446.748922 +1365446.748922 +1365460.211973 +1365460.211973 +1365466.175761 +1365491.638875 +1365491.638875 +1365496.181853 +1365521.834048 +1365521.834048 +1365521.834048 +1365521.834048 +1365534.499549 +1365534.499549 +1365573.313395 +1365573.313395 +1365573.313395 +1365577.531403 +1365583.489616 +1365597.480396 +1365597.480396 +1365597.480396 +1365638.372272 +1365638.372272 +1365638.372272 +1365662.883240 +1365665.640898 +1365665.640898 +1365675.158029 +1365675.158029 +1365689.492651 +1365689.492651 +1365700.541070 +1365718.801077 +1365719.929226 +1365747.639309 +1365770.073178 +1365770.073178 +1365770.073178 +1365770.073178 +1365771.792968 +1365779.672700 +1365795.533171 +1365795.533171 +1365800.603479 +1365816.359559 +1365834.942158 +1365834.942158 +1365841.288722 +1365844.433149 +1365873.833486 +1365873.833486 +1365873.833486 +1365900.269924 +1365900.269924 +1365919.032579 +1365919.032579 +1365919.032579 +1365942.685534 +1365942.685534 +1365942.685534 +1365943.807969 +1365979.061709 +1365979.061709 +1365981.825587 +1365981.825587 +1365981.825587 +1366000.852859 +1366007.181856 +1366018.391612 +1366018.391612 +1366018.391612 +1366018.391612 +1366024.122495 +1366069.695935 +1366070.356092 +1366093.067052 +1366093.067052 +1366093.067052 +1366102.282441 +1366122.341814 +1366135.653474 +1366135.653474 +1366135.653474 +1366135.653474 +1366145.359812 +1366148.721863 +1366148.721863 +1366161.595267 +1366164.204738 +1366206.829025 +1366206.829025 +1366206.829025 +1366220.435756 +1366226.159425 +1366226.159425 +1366238.106387 +1366250.312413 +1366252.111046 +1366252.111046 +1366268.384245 +1366281.639766 +1366292.813715 +1366292.813715 +1366305.843475 +1366305.843475 +1366328.643145 +1366333.259214 +1366333.259214 +1366336.956664 +1366372.523885 +1366372.523885 +1366393.867064 +1366393.867064 +1366393.867064 +1366393.867064 +1366393.867064 +1366408.802091 +1366421.422742 +1366421.422742 +1366448.470948 +1366448.470948 +1366454.067042 +1366454.067042 +1366457.820096 +1366457.820096 +1366457.820096 +1366471.876660 +1366471.876660 +1366507.682494 +1366518.936273 +1366518.936273 +1366531.183137 +1366548.682482 +1366548.682482 +1366573.631501 +1366573.631501 +1366573.631501 +1366581.700820 +1366581.700820 +1366598.134623 +1366598.134623 +1366606.240039 +1366632.011684 +1366632.011684 +1366632.011684 +1366632.011684 +1366642.498761 +1366676.916289 +1366676.916289 +1366676.916289 +1366697.335766 +1366705.629760 +1366707.975964 +1366707.975964 +1366725.957112 +1366725.957112 +1366735.238130 +1366746.930358 +1366749.349444 +1366770.129691 +1366770.129691 +1366770.129691 +1366789.910195 +1366789.910195 +1366825.934698 +1366825.934698 +1366825.934698 +1366838.713810 +1366838.713810 +1366845.624296 +1366845.624296 +1366857.841798 +1366861.413276 +1366872.097550 +1366883.132247 +1366883.132247 +1366894.943110 +1366898.814676 +1366898.814676 +1366901.341493 +1366913.098547 +1366922.066250 +1366946.272676 +1366954.572105 +1366962.454854 +1366962.890772 +1367000.531790 +1367000.531790 +1367000.531790 +1367007.467578 +1367007.871110 +1367014.021935 +1367014.021935 +1367046.138107 +1367054.033410 +1367054.033410 +1367064.991241 +1367082.673203 +1367082.673203 +1367086.585243 +1367086.585243 +1367086.585243 +1367086.585243 +1367103.707549 +1367115.619629 +1367157.233031 +1367157.233031 +1367157.233031 +1367157.233031 +1367184.403031 +1367184.403031 +1367192.358082 +1367192.358082 +1367204.126665 +1367204.126665 +1367220.923705 +1367220.923705 +1367220.923705 +1367228.062816 +1367252.607562 +1367252.607562 +1367271.409609 +1367271.409609 +1367275.374807 +1367290.179150 +1367295.260497 +1367295.260497 +1367295.959167 +1367304.852017 +1367346.199122 +1367346.199122 +1367349.829898 +1367360.241647 +1367362.368174 +1367362.368174 +1367365.645025 +1367368.924142 +1367403.266483 +1367403.266483 +1367403.266483 +1367403.266483 +1367415.369227 +1367423.498535 +1367423.919365 +1367423.919365 +1367455.960899 +1367458.409918 +1367470.995482 +1367470.995482 +1367506.664058 +1367506.664058 +1367518.365155 +1367518.365155 +1367518.365155 +1367518.365155 +1367521.206766 +1367529.951635 +1367563.247339 +1367563.247339 +1367601.848394 +1367601.848394 +1367601.848394 +1367601.848394 +1367601.848394 +1367613.622118 +1367613.622118 +1367614.633168 +1367622.077176 +1367622.077176 +1367642.339878 +1367655.648022 +1367667.835943 +1367667.835943 +1367695.027727 +1367695.027727 +1367695.027727 +1367702.066534 +1367709.866086 +1367716.870914 +1367718.586678 +1367718.586678 +1367736.909359 +1367742.050478 +1367761.623418 +1367764.386640 +1367782.534063 +1367782.534063 +1367782.534063 +1367791.266097 +1367819.811788 +1367830.090218 +1367830.090218 +1367848.578215 +1367848.578215 +1367848.578215 +1367874.524564 +1367874.524564 +1367874.524564 +1367874.524564 +1367897.004090 +1367897.004090 +1367902.713410 +1367902.713410 +1367902.713410 +1367912.803361 +1367933.985281 +1367949.439461 +1367955.475291 +1367975.600025 +1367975.600025 +1367975.600025 +1367984.503689 +1368011.020938 +1368011.020938 +1368015.246660 +1368024.605843 +1368024.605843 +1368040.237684 +1368040.237684 +1368040.237684 +1368043.447508 +1368069.333899 +1368069.333899 +1368069.333899 +1368072.359040 +1368110.729605 +1368110.729605 +1368131.116952 +1368131.116952 +1368131.116952 +1368131.116952 +1368144.759865 +1368144.759865 +1368158.021814 +1368158.021814 +1368174.732210 +1368188.625686 +1368188.625686 +1368188.625686 +1368208.382414 +1368220.999893 +1368220.999893 +1368229.624702 +1368236.616552 +1368256.442479 +1368256.442479 +1368257.535809 +1368266.035148 +1368279.156993 +1368283.839263 +1368297.777092 +1368297.777092 +1368307.247469 +1368317.179175 +1368317.179175 +1368341.199888 +1368341.199888 +1368342.184932 +1368342.184932 +1368383.288747 +1368383.288747 +1368383.288747 +1368383.288747 +1368383.288747 +1368403.055274 +1368447.135230 +1368447.135230 +1368447.135230 +1368447.135230 +1368447.135230 +1368472.689924 +1368472.689924 +1368472.689924 +1368482.684662 +1368489.157192 +1368492.384638 +1368492.384638 +1368515.335056 +1368515.335056 +1368515.335056 +1368524.529427 +1368539.751116 +1368547.669091 +1368547.669091 +1368547.669091 +1368560.102077 +1368560.729573 +1368590.536471 +1368591.800132 +1368597.222114 +1368601.688545 +1368612.831971 +1368623.183529 +1368625.692191 +1368633.062788 +1368660.759177 +1368661.323972 +1368665.953541 +1368669.666625 +1368669.666625 +1368680.366559 +1368695.524919 +1368695.524919 +1368702.033541 +1368702.033541 +1368738.360091 +1368752.018950 +1368752.018950 +1368752.018950 +1368758.490643 +1368778.535283 +1368778.535283 +1368778.647052 +1368799.909675 +1368807.477297 +1368807.477297 +1368812.356155 +1368843.545350 +1368843.545350 +1368843.545350 +1368843.545350 +1368852.224065 +1368852.224065 +1368852.224065 +1368863.586799 +1368863.586799 +1368896.649860 +1368896.649860 +1368909.672414 +1368922.833561 +1368922.833561 +1368931.067181 +1368935.319240 +1368944.111710 +1368967.594861 +1368967.594861 +1368976.378094 +1368980.589034 +1368986.339803 +1368990.760554 +1368996.062824 +1369007.476039 +1369015.196265 +1369046.039603 +1369046.039603 +1369046.039603 +1369053.069659 +1369063.995152 +1369063.995152 +1369067.664856 +1369076.251867 +1369093.676391 +1369103.208065 +1369103.208065 +1369110.335089 +1369122.830087 +1369131.009801 +1369131.009801 +1369143.880762 +1369149.355693 +1369170.377725 +1369170.377725 +1369188.950569 +1369188.950569 +1369193.600819 +1369193.600819 +1369201.810208 +1369210.781600 +1369227.121933 +1369244.034815 +1369258.404997 +1369258.404997 +1369258.404997 +1369258.404997 +1369258.404997 +1369293.610643 +1369293.610643 +1369304.735961 +1369304.735961 +1369321.633124 +1369321.633124 +1369321.633124 +1369338.810902 +1369338.810902 +1369362.253452 +1369363.708550 +1369372.073901 +1369397.529134 +1369397.529134 +1369397.529134 +1369397.529134 +1369412.749119 +1369414.761964 +1369414.761964 +1369449.578466 +1369452.013216 +1369454.473120 +1369454.473120 +1369465.466141 +1369465.466141 +1369465.466141 +1369465.466141 +1369476.542173 +1369488.640390 +1369508.970923 +1369508.970923 +1369517.851007 +1369520.558144 +1369539.200117 +1369542.868744 +1369546.776833 +1369546.776833 +1369559.071103 +1369566.548554 +1369583.289302 +1369594.144814 +1369603.191962 +1369603.191962 +1369612.732204 +1369639.182489 +1369651.866353 +1369671.271065 +1369671.271065 +1369671.271065 +1369671.271065 +1369677.849888 +1369701.202013 +1369701.202013 +1369701.202013 +1369701.202013 +1369701.202013 +1369701.202013 +1369706.422589 +1369706.422589 +1369706.560534 +1369727.470119 +1369751.216948 +1369771.827945 +1369771.827945 +1369781.156199 +1369781.156199 +1369784.916240 +1369791.797889 +1369831.122034 +1369831.122034 +1369831.122034 +1369855.419524 +1369862.888999 +1369862.888999 +1369870.729107 +1369875.191431 +1369875.191431 +1369888.357245 +1369888.357245 +1369888.357245 +1369905.188632 +1369922.541788 +1369922.541788 +1369922.541788 +1369928.035231 +1369928.035231 +1369944.435125 +1369950.873060 +1369962.146994 +1369973.337714 +1369973.337714 +1369983.430255 +1370000.593165 +1370000.593165 +1370019.897039 +1370019.897039 +1370019.897039 +1370044.448344 +1370046.849862 +1370046.849862 +1370056.464775 +1370056.464775 +1370104.952877 +1370104.952877 +1370118.654838 +1370118.654838 +1370121.261323 +1370121.261323 +1370121.261323 +1370126.730041 +1370149.433781 +1370157.723075 +1370157.723075 +1370157.723075 +1370157.723075 +1370157.723075 +1370194.571663 +1370194.571663 +1370220.104392 +1370220.104392 +1370220.104392 +1370224.222945 +1370224.222945 +1370250.460205 +1370251.081459 +1370251.813109 +1370264.332896 +1370273.562653 +1370288.145388 +1370288.145388 +1370291.859670 +1370300.938332 +1370314.107666 +1370314.107666 +1370319.922585 +1370324.522378 +1370352.145496 +1370352.145496 +1370365.952684 +1370365.952684 +1370375.061323 +1370375.061323 +1370382.905909 +1370382.905909 +1370386.925962 +1370406.806153 +1370417.473358 +1370436.725567 +1370436.725567 +1370436.725567 +1370484.422563 +1370484.422563 +1370484.422563 +1370484.422563 +1370484.422563 +1370484.422563 +1370489.161510 +1370504.817496 +1370504.817496 +1370505.270535 +1370534.182456 +1370534.182456 +1370534.182456 +1370548.930037 +1370548.930037 +1370573.387028 +1370579.315281 +1370579.315281 +1370579.315281 +1370600.728725 +1370600.728725 +1370617.888097 +1370622.453009 +1370622.453009 +1370633.739092 +1370640.105619 +1370660.470654 +1370660.470654 +1370670.983739 +1370689.420285 +1370694.714826 +1370694.714826 +1370698.027313 +1370698.027313 +1370727.303313 +1370727.303313 +1370737.418980 +1370737.418980 +1370749.964203 +1370749.964203 +1370761.175437 +1370761.175437 +1370772.000760 +1370787.762181 +1370787.762181 +1370799.281276 +1370835.884606 +1370835.884606 +1370835.884606 +1370835.884606 +1370859.838208 +1370859.838208 +1370859.838208 +1370864.065684 +1370868.971410 +1370868.971410 +1370923.860093 +1370923.860093 +1370923.860093 +1370923.860093 +1370923.860093 +1370928.678766 +1370930.559138 +1370933.073617 +1370940.975040 +1370940.975040 +1370961.418230 +1370974.543565 +1370974.543565 +1371011.070573 +1371011.070573 +1371011.070573 +1371011.070573 +1371011.070573 +1371016.034697 +1371016.034697 +1371019.632641 +1371019.632641 +1371040.392016 +1371063.508624 +1371063.508624 +1371064.836099 +1371077.110788 +1371088.733643 +1371102.715285 +1371102.715285 +1371102.715285 +1371102.715285 +1371137.399517 +1371137.399517 +1371150.742993 +1371150.742993 +1371168.947861 +1371168.947861 +1371183.689338 +1371183.689338 +1371183.689338 +1371189.315019 +1371238.200200 +1371238.200200 +1371238.200200 +1371238.200200 +1371260.253955 +1371260.253955 +1371260.253955 +1371284.079598 +1371284.079598 +1371284.079598 +1371300.401227 +1371310.353257 +1371310.353257 +1371310.353257 +1371311.172807 +1371325.416812 +1371325.416812 +1371325.416812 +1371338.427123 +1371338.427123 +1371362.304245 +1371362.304245 +1371362.304245 +1371362.304245 +1371397.350048 +1371397.350048 +1371397.350048 +1371397.350048 +1371407.806792 +1371424.653426 +1371432.222332 +1371447.923460 +1371447.923460 +1371449.458282 +1371449.458282 +1371468.854225 +1371468.854225 +1371468.854225 +1371506.408786 +1371506.408786 +1371511.889242 +1371514.198940 +1371514.198940 +1371532.683578 +1371532.683578 +1371532.958254 +1371539.643134 +1371540.301537 +1371573.519594 +1371573.519594 +1371608.974450 +1371608.974450 +1371608.974450 +1371624.744041 +1371624.744041 +1371624.744041 +1371633.029337 +1371636.752268 +1371649.659093 +1371649.659093 +1371681.969697 +1371681.969697 +1371694.756913 +1371694.756913 +1371694.756913 +1371697.935538 +1371710.764389 +1371734.503855 +1371743.748928 +1371743.748928 +1371743.748928 +1371743.748928 +1371743.748928 +1371743.748928 +1371758.823323 +1371792.298854 +1371792.298854 +1371792.298854 +1371792.553610 +1371818.682528 +1371818.682528 +1371819.062521 +1371819.062521 +1371843.904337 +1371857.456528 +1371857.456528 +1371857.456528 +1371857.456528 +1371857.456528 +1371874.468775 +1371874.468775 +1371876.671804 +1371905.506972 +1371929.712175 +1371939.442659 +1371939.442659 +1371939.442659 +1371939.442659 +1371947.503539 +1371950.318266 +1371950.318266 +1371953.018721 +1371979.882457 +1371979.882457 +1371979.882457 +1371982.290891 +1371988.827983 +1372029.482387 +1372029.482387 +1372029.482387 +1372038.246041 +1372066.751216 +1372066.751216 +1372066.751216 +1372073.648314 +1372081.808501 +1372084.999273 +1372097.361023 +1372097.361023 +1372116.890740 +1372118.550958 +1372122.554350 +1372150.459563 +1372150.459563 +1372150.459563 +1372165.439883 +1372165.439883 +1372188.926789 +1372188.926789 +1372188.926789 +1372188.926789 +1372188.926789 +1372197.441240 +1372202.542520 +1372220.902694 +1372220.902694 +1372234.309914 +1372248.272611 +1372268.753122 +1372269.688691 +1372269.688691 +1372269.688691 +1372293.094485 +1372293.094485 +1372293.094485 +1372293.094485 +1372321.628645 +1372321.628645 +1372332.780220 +1372332.780220 +1372344.120987 +1372344.120987 +1372360.277244 +1372360.277244 +1372377.856352 +1372377.856352 +1372396.631134 +1372396.631134 +1372398.845145 +1372398.845145 +1372403.320109 +1372429.493068 +1372429.493068 +1372432.138825 +1372435.383774 +1372452.560158 +1372452.560158 +1372471.796510 +1372471.796510 +1372471.796510 +1372492.507190 +1372507.780194 +1372507.780194 +1372507.780194 +1372526.571533 +1372526.571533 +1372538.271482 +1372538.271482 +1372541.356465 +1372543.831469 +1372600.970757 +1372600.970757 +1372600.970757 +1372600.970757 +1372600.970757 +1372616.900966 +1372616.900966 +1372629.199282 +1372629.199282 +1372629.199282 +1372629.239591 +1372652.712330 +1372652.712330 +1372664.409001 +1372682.125149 +1372682.125149 +1372682.125149 +1372694.510798 +1372696.513793 +1372696.513793 +1372696.513793 +1372696.513793 +1372720.883827 +1372753.529318 +1372753.529318 +1372753.529318 +1372753.529318 +1372764.570970 +1372764.570970 +1372764.570970 +1372782.251584 +1372800.443502 +1372837.907985 +1372837.907985 +1372837.907985 +1372837.907985 +1372837.907985 +1372860.818161 +1372860.818161 +1372860.818161 +1372860.818161 +1372865.793698 +1372874.177352 +1372883.842338 +1372883.842338 +1372883.842338 +1372900.392881 +1372905.379337 +1372905.379337 +1372935.207921 +1372947.813328 +1372953.035078 +1372953.035078 +1372953.035078 +1372982.678083 +1372982.678083 +1372984.334730 +1372985.542975 +1373012.968382 +1373012.968382 +1373030.612216 +1373030.612216 +1373030.612216 +1373032.794320 +1373034.666841 +1373053.500581 +1373053.500581 +1373073.674279 +1373073.674279 +1373078.150818 +1373078.150818 +1373078.150818 +1373093.448475 +1373111.303080 +1373112.507659 +1373130.023967 +1373130.023967 +1373130.023967 +1373130.023967 +1373162.200294 +1373162.200294 +1373162.200294 +1373168.322013 +1373169.038450 +1373181.544748 +1373212.532484 +1373229.546686 +1373240.077640 +1373240.077640 +1373240.077640 +1373240.077640 +1373241.301260 +1373241.301260 +1373241.301260 +1373260.953577 +1373260.953577 +1373275.369271 +1373275.369271 +1373301.812160 +1373316.577820 +1373330.124480 +1373330.124480 +1373330.124480 +1373336.787918 +1373336.787918 +1373342.627041 +1373352.996753 +1373361.426474 +1373391.341775 +1373391.341775 +1373391.341775 +1373391.341775 +1373391.341775 +1373417.582222 +1373417.582222 +1373420.395585 +1373420.395585 +1373447.056753 +1373457.015616 +1373470.529820 +1373470.529820 +1373470.529820 +1373470.529820 +1373485.765409 +1373485.765409 +1373485.765409 +1373501.947819 +1373501.947819 +1373518.850892 +1373522.596633 +1373522.596633 +1373534.976749 +1373536.786719 +1373547.232987 +1373559.389216 +1373564.014700 +1373576.397890 +1373582.379925 +1373610.590652 +1373610.590652 +1373610.590652 +1373610.590652 +1373618.327185 +1373632.453095 +1373653.201449 +1373653.201449 +1373653.201449 +1373653.201449 +1373653.201449 +1373675.802429 +1373677.739010 +1373686.055500 +1373691.657461 +1373697.107676 +1373697.107676 +1373702.005664 +1373702.005664 +1373708.123572 +1373721.840878 +1373721.840878 +1373731.917339 +1373753.318611 +1373780.315824 +1373798.392225 +1373798.392225 +1373798.392225 +1373798.404623 +1373802.069527 +1373802.069527 +1373803.037599 +1373820.622498 +1373820.622498 +1373834.948637 +1373860.607155 +1373860.607155 +1373860.607155 +1373870.238279 +1373870.238279 +1373884.417508 +1373899.730586 +1373900.610226 +1373900.610226 +1373930.000035 +1373935.519742 +1373938.778053 +1373947.455057 +1373947.455057 +1373947.656070 +1373947.656070 +1373965.339868 +1373967.477073 +1373967.477073 +1373983.493256 +1373994.558362 +1373994.558362 +1373996.652240 +1374023.260183 +1374023.260183 +1374025.317327 +1374028.289644 +1374047.071084 +1374072.331693 +1374072.331693 +1374072.331693 +1374077.288498 +1374077.288498 +1374084.585552 +1374092.725311 +1374099.836782 +1374105.988420 +1374116.139524 +1374134.072768 +1374138.625783 +1374138.625783 +1374166.721369 +1374166.721369 +1374166.721369 +1374166.721369 +1374174.733160 +1374174.733160 +1374201.292273 +1374202.037302 +1374206.755090 +1374206.755090 +1374209.318746 +1374223.803524 +1374241.785692 +1374250.835741 +1374255.261567 +1374257.423295 +1374264.064357 +1374266.304281 +1374285.420511 +1374285.420511 +1374285.420511 +1374285.420511 +1374313.543948 +1374313.543948 +1374315.972511 +1374315.972511 +1374321.670730 +1374344.662401 +1374351.703778 +1374351.703778 +1374351.703778 +1374379.291997 +1374379.291997 +1374389.112849 +1374390.711368 +1374409.006802 +1374409.006802 +1374420.286520 +1374442.648124 +1374442.648124 +1374444.474355 +1374444.474355 +1374479.127513 +1374479.127513 +1374479.127513 +1374479.127513 +1374488.884631 +1374511.536967 +1374511.536967 +1374511.536967 +1374511.536967 +1374520.672638 +1374545.344278 +1374545.344278 +1374545.344278 +1374545.344278 +1374563.985090 +1374563.985090 +1374563.985090 +1374565.392590 +1374585.365819 +1374585.365819 +1374590.565765 +1374590.565765 +1374604.918166 +1374638.895718 +1374638.895718 +1374654.489332 +1374654.489332 +1374659.842527 +1374659.842527 +1374659.842527 +1374665.217021 +1374673.205466 +1374675.023984 +1374709.676583 +1374709.676583 +1374735.022184 +1374735.022184 +1374735.022184 +1374735.022184 +1374756.325993 +1374756.325993 +1374756.325993 +1374756.325993 +1374756.325993 +1374765.502649 +1374765.502649 +1374788.209889 +1374788.209889 +1374792.852203 +1374801.853332 +1374844.492300 +1374844.492300 +1374844.492300 +1374849.313883 +1374852.731005 +1374871.716455 +1374871.716455 +1374872.583469 +1374872.583469 +1374872.583469 +1374893.241119 +1374893.241119 +1374893.241119 +1374910.152166 +1374917.305895 +1374917.305895 +1374918.874522 +1374919.283692 +1374936.896187 +1374936.896187 +1374962.694750 +1374962.694750 +1374973.981275 +1374984.966524 +1374984.966524 +1375021.328575 +1375021.328575 +1375021.328575 +1375023.290621 +1375023.290621 +1375059.532888 +1375059.532888 +1375065.028642 +1375065.028642 +1375065.028642 +1375067.547623 +1375098.415848 +1375099.637739 +1375099.637739 +1375099.637739 +1375099.637739 +1375099.883078 +1375099.883078 +1375122.980461 +1375127.459585 +1375167.310716 +1375167.310716 +1375167.310716 +1375167.310716 +1375167.310716 +1375174.794951 +1375183.423284 +1375183.423284 +1375184.975807 +1375210.374257 +1375210.374257 +1375213.105461 +1375243.567923 +1375243.567923 +1375243.567923 +1375243.567923 +1375246.260880 +1375257.496538 +1375257.496538 +1375289.369047 +1375289.369047 +1375310.291405 +1375310.291405 +1375310.291405 +1375310.291405 +1375320.732557 +1375336.461123 +1375337.952752 +1375344.763086 +1375344.763086 +1375344.871999 +1375349.093010 +1375377.225260 +1375406.492474 +1375412.456742 +1375412.456742 +1375412.456742 +1375413.294987 +1375439.029158 +1375440.631229 +1375440.631229 +1375443.827786 +1375443.827786 +1375443.827786 +1375443.827786 +1375451.626913 +1375459.099765 +1375459.099765 +1375495.983604 +1375495.983604 +1375513.713693 +1375513.713693 +1375513.713693 +1375523.520744 +1375523.520744 +1375542.890552 +1375544.699287 +1375548.717378 +1375548.717378 +1375548.717378 +1375548.876321 +1375571.127413 +1375573.092107 +1375592.870476 +1375624.453756 +1375624.453756 +1375624.453756 +1375624.453756 +1375628.542707 +1375643.678389 +1375643.678389 +1375643.678389 +1375646.737775 +1375669.277477 +1375669.277477 +1375669.277477 +1375669.277477 +1375717.365145 +1375717.365145 +1375717.365145 +1375717.365145 +1375717.365145 +1375741.091839 +1375748.147009 +1375748.147009 +1375754.377289 +1375755.022150 +1375755.022150 +1375769.427384 +1375773.745293 +1375783.996290 +1375783.996290 +1375783.996290 +1375808.600583 +1375808.600583 +1375813.471934 +1375834.726097 +1375834.726097 +1375860.596179 +1375870.100600 +1375870.100600 +1375870.100600 +1375870.100600 +1375870.100600 +1375872.549642 +1375876.597880 +1375876.597880 +1375882.696240 +1375882.696240 +1375920.923761 +1375937.838341 +1375946.244599 +1375946.244599 +1375946.244599 +1375946.244599 +1375974.991410 +1375974.991410 +1375974.991410 +1375974.991410 +1375994.065763 +1375994.065763 +1375998.334425 +1376013.525026 +1376013.525026 +1376014.657429 +1376030.894423 +1376035.874519 +1376060.366251 +1376077.498543 +1376077.498543 +1376077.498543 +1376077.498543 +1376077.498543 +1376077.498543 +1376090.354938 +1376090.354938 +1376090.354938 +1376105.009814 +1376131.153940 +1376131.153940 +1376131.153940 +1376134.145875 +1376134.145875 +1376164.075232 +1376164.075232 +1376184.955106 +1376184.955106 +1376196.507113 +1376196.507113 +1376202.238033 +1376219.937824 +1376219.937824 +1376219.937824 +1376231.446649 +1376259.207904 +1376259.207904 +1376259.207904 +1376259.207904 +1376259.207904 +1376259.207904 +1376267.948240 +1376295.118893 +1376295.118893 +1376296.631855 +1376296.631855 +1376305.409477 +1376305.409477 +1376305.409477 +1376336.670261 +1376336.670261 +1376350.059990 +1376350.059990 +1376351.061640 +1376362.315729 +1376378.555294 +1376378.555294 +1376378.555294 +1376378.555294 +1376387.231589 +1376391.615089 +1376398.757982 +1376413.175621 +1376423.317061 +1376434.817815 +1376448.405975 +1376459.388064 +1376459.388064 +1376459.388064 +1376463.954953 +1376479.555252 +1376479.555252 +1376500.282190 +1376500.282190 +1376500.282190 +1376503.399035 +1376503.940420 +1376503.940420 +1376518.619330 +1376528.347063 +1376559.425876 +1376559.425876 +1376559.425876 +1376602.288022 +1376602.288022 +1376602.288022 +1376602.288022 +1376602.288022 +1376614.981777 +1376614.981777 +1376628.532212 +1376628.532212 +1376640.987194 +1376641.280298 +1376641.280298 +1376641.280298 +1376641.280298 +1376655.599579 +1376660.947863 +1376691.974054 +1376691.974054 +1376691.974054 +1376691.974054 +1376698.208076 +1376698.208076 +1376736.188288 +1376736.188288 +1376736.188288 +1376736.188288 +1376740.969575 +1376740.969575 +1376753.581156 +1376761.630942 +1376761.630942 +1376785.177866 +1376785.177866 +1376798.091965 +1376802.206317 +1376802.206317 +1376802.206317 +1376811.841859 +1376842.197420 +1376842.197420 +1376842.197420 +1376842.197420 +1376842.197420 +1376859.565064 +1376869.478582 +1376899.101084 +1376905.028722 +1376905.028722 +1376906.432761 +1376914.071895 +1376914.071895 +1376924.061876 +1376924.061876 +1376924.061876 +1376924.061876 +1376946.550036 +1376946.550036 +1376951.614976 +1376976.582629 +1376981.366368 +1376990.004623 +1376990.004623 +1376995.051965 +1376995.051965 +1377000.521949 +1377007.753468 +1377022.752053 +1377022.752053 +1377035.695551 +1377040.681488 +1377049.251268 +1377049.251268 +1377063.260069 +1377066.060966 +1377066.060966 +1377074.994564 +1377074.994564 +1377093.903628 +1377099.098780 +1377101.896443 +1377101.896443 +1377117.462518 +1377131.295760 +1377132.680304 +1377159.292230 +1377159.292230 +1377159.292230 +1377159.292230 +1377184.711641 +1377184.711641 +1377184.711641 +1377184.711641 +1377184.711641 +1377184.711641 +1377188.503036 +1377218.356953 +1377229.451058 +1377229.451058 +1377230.962200 +1377264.229335 +1377264.229335 +1377264.229335 +1377264.229335 +1377266.288626 +1377277.977359 +1377280.369343 +1377291.724153 +1377317.401954 +1377333.653427 +1377333.653427 +1377333.653427 +1377342.269002 +1377350.467843 +1377350.467843 +1377350.467843 +1377372.878718 +1377372.878718 +1377372.878718 +1377372.878718 +1377406.873628 +1377406.873628 +1377406.873628 +1377406.873628 +1377426.107766 +1377426.107766 +1377428.457832 +1377442.858436 +1377456.426280 +1377456.426280 +1377456.426280 +1377456.426280 +1377456.426280 +1377456.426280 +1377490.229148 +1377490.229148 +1377521.424278 +1377521.424278 +1377521.424278 +1377521.424278 +1377521.424278 +1377521.424278 +1377521.424278 +1377522.907652 +1377534.034538 +1377534.034538 +1377534.034538 +1377535.926284 +1377553.896555 +1377554.792312 +1377574.909306 +1377605.261828 +1377605.261828 +1377622.201201 +1377622.201201 +1377626.930673 +1377647.839340 +1377647.839340 +1377647.839340 +1377663.757368 +1377667.624236 +1377667.624236 +1377672.082572 +1377688.059939 +1377689.969156 +1377689.969156 +1377696.039212 +1377703.288252 +1377718.112720 +1377718.112720 +1377718.112720 +1377747.041718 +1377747.041718 +1377747.041718 +1377747.041718 +1377778.974245 +1377778.974245 +1377780.645357 +1377780.645357 +1377780.645357 +1377780.645357 +1377793.756539 +1377812.073631 +1377812.073631 +1377819.088548 +1377821.201697 +1377824.155642 +1377839.918091 +1377842.857722 +1377862.103057 +1377870.390068 +1377895.578796 +1377895.578796 +1377895.578796 +1377895.578796 +1377895.578796 +1377895.578796 +1377895.578796 +1377917.970981 +1377920.473686 +1377921.659707 +1377934.868410 +1377935.560717 +1377939.245339 +1377967.055918 +1377967.055918 +1377986.248039 +1377986.248039 +1377986.248039 +1377989.642293 +1378002.265859 +1378002.265859 +1378007.996655 +1378007.996655 +1378045.447340 +1378046.680022 +1378046.680022 +1378046.680022 +1378063.835595 +1378063.835595 +1378063.835595 +1378077.392824 +1378077.392824 +1378095.711876 +1378100.578959 +1378100.578959 +1378100.578959 +1378100.578959 +1378144.771675 +1378144.771675 +1378161.897212 +1378161.897212 +1378161.897212 +1378161.897212 +1378161.897212 +1378170.251551 +1378170.251551 +1378170.251551 +1378170.251551 +1378206.153511 +1378206.153511 +1378228.723874 +1378228.723874 +1378228.723874 +1378228.723874 +1378228.723874 +1378244.199929 +1378244.199929 +1378252.932012 +1378258.086906 +1378272.556214 +1378290.851947 +1378290.851947 +1378290.851947 +1378290.851947 +1378306.632661 +1378312.072744 +1378312.072744 +1378315.617926 +1378334.655587 +1378334.655587 +1378334.655587 +1378355.579754 +1378355.579754 +1378381.603761 +1378381.603761 +1378381.603761 +1378383.858399 +1378410.714543 +1378410.714543 +1378410.714543 +1378412.879353 +1378412.879353 +1378412.879353 +1378426.119081 +1378426.119081 +1378470.116703 +1378470.116703 +1378470.116703 +1378470.116703 +1378492.166885 +1378492.166885 +1378507.103070 +1378515.666979 +1378515.666979 +1378515.666979 +1378534.513860 +1378534.513860 +1378546.834045 +1378546.834045 +1378546.834045 +1378547.861784 +1378551.147739 +1378551.147739 +1378554.153156 +1378554.153156 +1378573.464812 +1378579.653879 +1378595.805780 +1378595.805780 +1378608.610509 +1378608.610509 +1378617.107646 +1378623.595630 +1378623.595630 +1378667.882234 +1378671.608785 +1378671.608785 +1378686.810719 +1378686.810719 +1378686.810719 +1378688.586796 +1378693.598822 +1378693.598822 +1378693.598822 +1378726.533714 +1378737.979794 +1378737.979794 +1378737.979794 +1378746.306991 +1378746.306991 +1378763.541870 +1378763.541870 +1378772.876096 +1378773.836783 +1378773.836783 +1378784.261985 +1378800.082385 +1378808.014205 +1378837.143824 +1378837.143824 +1378837.143824 +1378837.143824 +1378837.143824 +1378837.143824 +1378837.143824 +1378837.143824 +1378837.143824 +1378837.143824 +1378860.018086 +1378877.286521 +1378877.286521 +1378886.498184 +1378919.097973 +1378919.097973 +1378922.713121 +1378951.018422 +1378951.018422 +1378951.018422 +1378951.018422 +1378951.018422 +1378967.174837 +1378967.174837 +1378977.756581 +1378977.756581 +1378990.464692 +1378991.524514 +1379007.252238 +1379007.252238 +1379031.475883 +1379031.475883 +1379031.475883 +1379041.927728 +1379041.927728 +1379041.927728 +1379061.989271 +1379061.989271 +1379064.827047 +1379065.428293 +1379077.873006 +1379089.570615 +1379115.290410 +1379115.290410 +1379115.290410 +1379121.764153 +1379126.747863 +1379126.747863 +1379154.155075 +1379154.155075 +1379154.155075 +1379154.155075 +1379154.155075 +1379166.773133 +1379166.773133 +1379166.773133 +1379166.773133 +1379201.067288 +1379201.391546 +1379201.391546 +1379221.813299 +1379225.746086 +1379225.746086 +1379252.051656 +1379252.051656 +1379258.883580 +1379258.883580 +1379258.883580 +1379295.046309 +1379295.046309 +1379295.046309 +1379295.046309 +1379304.856038 +1379311.948109 +1379311.948109 +1379311.948109 +1379311.948109 +1379343.937985 +1379343.937985 +1379344.611699 +1379353.524380 +1379357.111195 +1379357.111195 +1379360.079588 +1379387.323126 +1379392.587441 +1379392.587441 +1379392.587441 +1379392.587441 +1379392.587441 +1379424.369788 +1379424.369788 +1379424.369788 +1379439.886021 +1379439.886021 +1379459.503865 +1379466.321407 +1379476.573859 +1379476.573859 +1379479.254653 +1379479.254653 +1379495.827165 +1379495.827165 +1379496.178761 +1379496.178761 +1379522.446090 +1379522.446090 +1379522.446090 +1379554.510322 +1379568.076329 +1379568.076329 +1379568.076329 +1379568.076329 +1379568.076329 +1379568.076329 +1379575.839528 +1379575.839528 +1379594.659807 +1379594.659807 +1379617.622438 +1379622.961304 +1379643.997596 +1379643.997596 +1379643.997596 +1379643.997596 +1379653.763579 +1379670.298817 +1379670.298817 +1379670.298817 +1379676.412269 +1379676.412269 +1379686.156710 +1379686.156710 +1379699.948561 +1379699.948561 +1379736.647876 +1379736.647876 +1379744.737316 +1379744.737316 +1379748.196295 +1379748.196295 +1379761.191576 +1379761.191576 +1379772.189667 +1379772.189667 +1379774.290921 +1379801.467092 +1379801.467092 +1379801.467092 +1379801.467092 +1379815.526717 +1379835.442974 +1379835.442974 +1379835.442974 +1379839.289257 +1379851.554945 +1379851.554945 +1379869.380282 +1379869.380282 +1379870.824366 +1379870.824366 +1379896.942555 +1379896.942555 +1379896.942555 +1379896.942555 +1379926.790784 +1379926.790784 +1379926.790784 +1379926.790784 +1379926.790784 +1379926.790784 +1379961.276411 +1379961.276411 +1379961.276411 +1379961.276411 +1379961.276411 +1379971.243536 +1379971.368981 +1379993.008530 +1380000.470394 +1380018.737179 +1380018.737179 +1380018.737179 +1380052.288152 +1380052.288152 +1380052.288152 +1380052.288152 +1380052.288152 +1380056.560629 +1380056.560629 +1380072.645637 +1380079.303702 +1380081.968432 +1380102.432027 +1380102.432027 +1380126.949341 +1380126.949341 +1380126.949341 +1380126.949341 +1380153.517871 +1380153.517871 +1380154.191182 +1380154.191182 +1380154.191182 +1380156.357015 +1380176.941199 +1380176.941199 +1380176.941199 +1380176.941199 +1380207.434450 +1380220.003161 +1380220.003161 +1380227.610116 +1380230.176729 +1380253.319671 +1380253.319671 +1380253.319671 +1380253.319671 +1380253.319671 +1380256.649880 +1380273.530158 +1380273.530158 +1380273.530158 +1380294.714826 +1380294.714826 +1380294.714826 +1380294.714826 +1380314.142890 +1380341.681730 +1380341.681730 +1380341.681730 +1380341.681730 +1380343.302693 +1380353.046823 +1380364.603058 +1380368.677593 +1380389.243847 +1380389.243847 +1380412.874198 +1380412.874198 +1380412.874198 +1380412.874198 +1380420.000520 +1380420.000520 +1380420.000520 +1380421.709048 +1380428.479624 +1380436.767340 +1380439.965287 +1380439.965287 +1380463.261434 +1380465.627738 +1380474.958592 +1380474.958592 +1380474.958592 +1380498.382926 +1380498.382926 +1380498.382926 +1380526.833160 +1380526.833160 +1380527.928249 +1380550.467333 +1380550.467333 +1380583.533951 +1380583.533951 +1380583.533951 +1380583.533951 +1380583.533951 +1380583.533951 +1380583.533951 +1380590.189764 +1380603.486225 +1380603.486225 +1380631.674750 +1380631.674750 +1380631.674750 +1380631.674750 +1380631.674750 +1380638.498045 +1380666.425570 +1380666.425570 +1380670.790318 +1380670.790318 +1380670.889009 +1380672.540142 +1380688.085188 +1380688.085188 +1380697.082205 +1380697.082205 +1380726.415866 +1380726.415866 +1380746.170773 +1380746.170773 +1380748.078087 +1380748.078087 +1380748.078087 +1380756.236491 +1380789.414141 +1380789.414141 +1380789.414141 +1380789.414141 +1380798.909472 +1380798.909472 +1380830.194229 +1380830.194229 +1380830.194229 +1380830.194229 +1380841.607323 +1380841.607323 +1380874.567859 +1380874.567859 +1380874.567859 +1380874.567859 +1380874.567859 +1380874.567859 +1380885.814570 +1380885.814570 +1380885.814570 +1380885.814570 +1380911.650381 +1380911.650381 +1380929.682691 +1380929.682691 +1380940.067866 +1380957.293366 +1380957.293366 +1380957.293366 +1380971.137134 +1380977.733468 +1380977.733468 +1380977.733468 +1381006.533693 +1381006.533693 +1381028.121866 +1381037.446678 +1381037.446678 +1381037.446678 +1381037.446678 +1381037.446678 +1381041.130997 +1381041.130997 +1381077.666614 +1381077.666614 +1381077.666614 +1381077.666614 +1381077.666614 +1381098.396206 +1381116.814397 +1381116.814397 +1381116.814397 +1381116.814397 +1381120.890947 +1381136.130411 +1381136.130411 +1381136.130411 +1381143.086732 +1381143.086732 +1381171.566322 +1381171.566322 +1381171.566322 +1381171.566322 +1381171.566322 +1381173.384934 +1381187.225102 +1381187.225102 +1381207.834327 +1381207.834327 +1381214.651295 +1381214.651295 +1381239.844130 +1381239.844130 +1381244.660984 +1381262.440195 +1381263.637936 +1381263.800177 +1381263.800177 +1381263.800177 +1381270.552008 +1381282.151534 +1381296.352401 +1381302.484976 +1381310.864310 +1381312.780616 +1381319.760090 +1381319.760090 +1381319.760090 +1381326.476824 +1381345.713378 +1381345.713378 +1381347.412281 +1381359.079575 +1381359.079575 +1381359.433610 +1381359.433610 +1381380.705895 +1381407.544150 +1381407.544150 +1381407.544150 +1381416.909805 +1381424.546468 +1381443.153127 +1381443.153127 +1381447.661964 +1381447.661964 +1381447.661964 +1381448.335951 +1381456.434009 +1381481.630632 +1381481.630632 +1381481.820863 +1381494.823285 +1381494.823285 +1381494.823285 +1381514.669728 +1381514.669728 +1381524.079663 +1381524.079663 +1381548.448630 +1381560.237997 +1381561.716926 +1381561.716926 +1381561.716926 +1381561.716926 +1381595.558607 +1381595.558607 +1381595.558607 +1381595.558607 +1381595.558607 +1381609.848641 +1381620.552634 +1381625.335895 +1381626.916893 +1381636.982574 +1381636.982574 +1381654.073459 +1381654.073459 +1381654.073459 +1381654.073459 +1381665.086038 +1381665.086038 +1381668.632211 +1381672.006586 +1381709.130829 +1381709.130829 +1381709.130829 +1381709.130829 +1381709.130829 +1381729.626949 +1381729.626949 +1381729.626949 +1381729.626949 +1381748.677890 +1381766.910598 +1381766.910598 +1381776.300250 +1381785.767318 +1381785.767318 +1381793.371639 +1381794.600488 +1381795.475977 +1381809.687781 +1381819.016909 +1381826.961179 +1381826.961179 +1381826.961179 +1381826.961179 +1381861.546454 +1381863.969468 +1381863.969468 +1381863.969468 +1381868.222545 +1381873.198882 +1381899.148558 +1381899.148558 +1381906.919239 +1381906.919239 +1381906.919239 +1381923.605111 +1381923.605111 +1381934.267706 +1381934.267706 +1381934.318775 +1381948.016771 +1381963.423583 +1381963.423583 +1381978.348519 +1381978.348519 +1381978.348519 +1381982.961383 +1381990.572100 +1382004.975542 +1382004.975542 +1382004.975542 +1382025.671434 +1382025.671434 +1382025.671434 +1382025.927594 +1382041.439632 +1382054.165963 +1382059.911734 +1382059.911734 +1382072.900322 +1382072.900322 +1382072.900322 +1382085.403877 +1382092.543291 +1382098.623499 +1382113.152874 +1382113.152874 +1382113.152874 +1382128.075557 +1382128.075557 +1382144.241320 +1382157.281704 +1382157.281704 +1382157.281704 +1382157.281704 +1382187.013206 +1382187.013206 +1382187.013206 +1382187.013206 +1382188.464830 +1382188.464830 +1382201.865263 +1382201.891728 +1382222.969923 +1382230.555312 +1382268.487811 +1382268.487811 +1382268.487811 +1382268.487811 +1382275.270998 +1382275.270998 +1382275.270998 +1382275.270998 +1382289.955743 +1382289.955743 +1382308.338080 +1382308.338080 +1382308.338080 +1382308.338080 +1382313.307269 +1382313.307269 +1382336.706531 +1382336.706531 +1382359.889292 +1382359.889292 +1382359.889292 +1382365.196839 +1382373.329088 +1382373.329088 +1382376.370524 +1382393.846260 +1382400.000833 +1382400.000833 +1382420.093661 +1382422.067472 +1382438.317329 +1382438.317329 +1382461.436902 +1382461.436902 +1382461.436902 +1382461.436902 +1382461.436902 +1382461.436902 +1382461.436902 +1382461.436902 +1382464.769382 +1382480.069192 +1382506.655674 +1382521.496101 +1382529.920983 +1382530.758648 +1382530.758648 +1382550.112187 +1382550.112187 +1382550.112187 +1382556.601374 +1382580.535531 +1382580.535531 +1382580.535531 +1382580.535531 +1382580.535531 +1382580.535531 +1382588.859123 +1382609.086570 +1382609.086570 +1382618.724886 +1382628.588453 +1382628.588453 +1382628.588453 +1382631.698074 +1382644.703603 +1382653.929219 +1382653.929219 +1382656.782034 +1382676.246202 +1382697.085903 +1382697.085903 +1382715.746553 +1382715.746553 +1382719.346833 +1382719.346833 +1382726.803642 +1382730.687251 +1382734.079832 +1382734.168954 +1382742.222390 +1382742.222390 +1382742.222390 +1382756.177236 +1382756.177236 +1382756.177236 +1382760.701900 +1382770.125216 +1382792.303231 +1382792.303231 +1382792.303231 +1382799.432581 +1382822.894556 +1382845.213050 +1382845.213050 +1382850.277023 +1382850.277023 +1382852.868220 +1382876.743856 +1382876.743856 +1382876.743856 +1382876.743856 +1382876.743856 +1382876.743856 +1382898.731606 +1382915.822005 +1382915.822005 +1382915.822005 +1382915.822005 +1382922.028993 +1382922.028993 +1382928.885235 +1382933.117827 +1382933.117827 +1382942.133827 +1382986.666015 +1382986.666015 +1382986.666015 +1382991.362115 +1382991.362115 +1382991.362115 +1382993.013315 +1382999.271040 +1383006.096259 +1383006.096259 +1383014.549717 +1383014.549717 +1383038.787010 +1383038.787010 +1383038.787010 +1383040.781850 +1383074.875695 +1383074.875695 +1383074.875695 +1383074.875695 +1383074.875695 +1383084.216859 +1383105.443820 +1383118.041128 +1383121.391206 +1383121.391206 +1383128.223725 +1383144.304156 +1383144.304156 +1383144.304156 +1383144.304156 +1383153.002826 +1383176.532353 +1383176.532353 +1383176.532353 +1383176.532353 +1383176.532353 +1383183.726007 +1383183.726007 +1383188.681827 +1383188.681827 +1383215.304795 +1383226.942328 +1383226.942328 +1383226.942328 +1383247.092600 +1383247.092600 +1383247.092600 +1383247.092600 +1383252.264765 +1383280.504187 +1383290.260710 +1383290.260710 +1383303.227929 +1383321.617650 +1383321.617650 +1383321.617650 +1383321.617650 +1383324.187121 +1383327.657840 +1383355.470334 +1383355.470334 +1383355.470334 +1383365.154504 +1383365.154504 +1383365.154504 +1383380.922484 +1383402.164616 +1383402.164616 +1383420.817640 +1383420.817640 +1383420.817640 +1383420.817640 +1383430.968042 +1383430.968042 +1383430.968042 +1383447.842153 +1383447.842153 +1383447.842153 +1383447.842153 +1383458.752924 +1383474.276431 +1383474.276431 +1383474.276431 +1383474.761990 +1383501.730296 +1383501.730296 +1383501.730296 +1383501.730296 +1383511.386661 +1383511.386661 +1383511.386661 +1383539.850215 +1383539.850215 +1383546.279979 +1383547.075847 +1383547.075847 +1383557.775879 +1383569.514777 +1383569.514777 +1383577.269324 +1383579.474920 +1383579.474920 +1383579.718815 +1383612.405202 +1383612.405202 +1383640.511308 +1383640.511308 +1383640.511308 +1383640.511308 +1383652.786099 +1383665.041073 +1383671.362713 +1383671.362713 +1383671.362713 +1383701.258607 +1383701.258607 +1383701.258607 +1383701.258607 +1383704.908240 +1383704.908240 +1383730.502038 +1383730.502038 +1383754.502931 +1383754.502931 +1383754.502931 +1383754.502931 +1383754.502931 +1383773.961323 +1383773.961323 +1383775.076074 +1383775.076074 +1383775.076074 +1383775.076074 +1383811.882895 +1383838.274488 +1383838.274488 +1383838.274488 +1383838.274488 +1383840.184597 +1383840.184597 +1383872.077310 +1383872.077310 +1383872.077310 +1383872.077310 +1383872.077310 +1383889.561423 +1383889.561423 +1383889.561423 +1383889.561423 +1383889.561423 +1383889.561423 +1383898.041626 +1383921.538565 +1383921.538565 +1383936.839975 +1383936.839975 +1383936.839975 +1383942.495930 +1383942.495930 +1383959.168804 +1383959.168804 +1383962.442135 +1383967.604627 +1383976.129046 +1383976.129046 +1383987.173890 +1383987.173890 +1383997.913885 +1384024.433826 +1384024.433826 +1384024.433826 +1384024.433826 +1384033.740159 +1384033.740159 +1384046.699917 +1384046.699917 +1384057.565909 +1384057.565909 +1384057.565909 +1384064.163954 +1384075.194232 +1384086.628586 +1384115.889478 +1384115.889478 +1384115.889478 +1384115.889478 +1384115.889478 +1384120.585805 +1384123.723084 +1384160.323706 +1384160.323706 +1384160.323706 +1384160.323706 +1384160.323706 +1384176.238795 +1384176.597505 +1384197.727501 +1384197.727501 +1384197.727501 +1384216.118425 +1384216.801033 +1384216.801033 +1384216.801033 +1384251.821297 +1384251.821297 +1384251.821297 +1384251.821297 +1384251.821297 +1384251.821297 +1384268.077466 +1384272.426274 +1384276.219818 +1384289.188651 +1384300.720189 +1384300.720189 +1384300.720189 +1384300.720189 +1384300.720189 +1384330.145066 +1384352.995435 +1384352.995435 +1384356.160568 +1384356.160568 +1384356.160568 +1384361.343922 +1384369.241037 +1384369.241037 +1384369.241037 +1384369.241037 +1384380.746949 +1384389.956842 +1384403.142519 +1384403.142519 +1384403.142519 +1384414.893472 +1384417.143741 +1384434.660472 +1384437.406367 +1384452.936083 +1384471.902307 +1384471.902307 +1384471.902307 +1384471.902307 +1384471.902307 +1384485.927020 +1384498.114861 +1384498.114861 +1384498.114861 +1384501.303756 +1384502.765753 +1384502.765753 +1384544.709923 +1384544.709923 +1384544.709923 +1384544.709923 +1384544.709923 +1384547.736628 +1384556.481831 +1384556.481831 +1384560.821897 +1384560.821897 +1384585.119489 +1384585.119489 +1384601.195072 +1384601.195072 +1384619.707516 +1384621.677843 +1384621.677843 +1384621.677843 +1384649.363713 +1384649.363713 +1384649.363713 +1384649.363713 +1384665.357673 +1384665.357673 +1384665.357673 +1384695.948055 +1384695.948055 +1384697.266399 +1384699.840031 +1384699.840031 +1384699.840031 +1384699.840031 +1384712.791607 +1384712.791607 +1384720.392863 +1384720.392863 +1384742.701092 +1384765.636314 +1384765.636314 +1384765.636314 +1384765.636314 +1384775.125970 +1384775.125970 +1384775.125970 +1384775.125970 +1384789.254122 +1384795.066345 +1384795.066345 +1384816.269844 +1384821.367373 +1384830.767898 +1384830.767898 +1384832.601176 +1384854.561949 +1384854.561949 +1384854.561949 +1384854.561949 +1384860.649311 +1384877.615874 +1384877.615874 +1384903.950000 +1384903.950000 +1384903.950000 +1384903.950000 +1384914.766255 +1384922.720508 +1384922.720508 +1384925.710486 +1384925.710486 +1384939.327841 +1384958.398477 +1384958.398477 +1384959.959342 +1384959.959342 +1384959.959342 +1384959.959342 +1384972.966598 +1384977.818841 +1384982.129974 +1385013.426507 +1385013.426507 +1385013.426507 +1385013.426507 +1385018.077255 +1385021.429588 +1385030.878134 +1385030.878134 +1385033.277870 +1385042.070947 +1385042.070947 +1385064.544247 +1385086.898785 +1385086.898785 +1385087.305513 +1385089.619468 +1385095.792871 +1385095.792871 +1385096.926141 +1385124.805776 +1385139.525491 +1385139.525491 +1385139.525491 +1385143.056228 +1385143.056228 +1385156.321077 +1385156.321077 +1385156.321077 +1385156.321077 +1385187.345589 +1385187.345589 +1385208.409120 +1385208.409120 +1385211.864821 +1385211.864821 +1385211.864821 +1385211.864821 +1385211.864821 +1385221.394297 +1385221.394297 +1385224.601990 +1385245.181225 +1385245.181225 +1385253.377486 +1385258.587154 +1385262.505937 +1385291.794601 +1385291.794601 +1385291.794601 +1385291.794601 +1385291.794601 +1385291.794601 +1385292.904758 +1385304.839522 +1385304.839522 +1385318.257725 +1385329.046096 +1385332.907769 +1385332.907769 +1385378.743449 +1385378.743449 +1385378.743449 +1385378.743449 +1385392.734882 +1385392.734882 +1385392.734882 +1385392.734882 +1385393.095251 +1385393.095251 +1385399.449758 +1385406.133886 +1385411.900297 +1385411.900297 +1385417.709097 +1385441.787607 +1385441.787607 +1385452.353798 +1385452.353798 +1385458.358887 +1385458.358887 +1385458.499455 +1385474.929105 +1385474.929105 +1385510.870389 +1385524.747374 +1385524.747374 +1385524.747374 +1385524.747374 +1385524.747374 +1385530.456049 +1385548.841619 +1385548.841619 +1385572.978253 +1385572.978253 +1385572.978253 +1385572.978253 +1385572.978253 +1385572.978253 +1385587.571506 +1385587.571506 +1385616.115190 +1385616.115190 +1385616.115190 +1385616.788279 +1385616.788279 +1385616.788279 +1385616.788279 +1385643.179336 +1385643.179336 +1385648.993770 +1385657.678584 +1385662.330643 +1385677.355802 +1385678.846980 +1385678.846980 +1385678.846980 +1385681.215860 +1385681.215860 +1385686.252787 +1385698.724533 +1385703.420963 +1385707.175914 +1385711.929464 +1385711.929464 +1385721.920715 +1385721.920715 +1385755.288637 +1385755.288637 +1385765.848744 +1385773.658177 +1385773.658177 +1385778.802698 +1385778.802698 +1385778.802698 +1385784.206759 +1385810.911445 +1385810.911445 +1385810.911445 +1385827.380311 +1385827.380311 +1385831.675545 +1385852.803457 +1385854.698901 +1385854.698901 +1385854.698901 +1385872.970271 +1385872.970271 +1385872.970271 +1385872.970271 +1385872.970271 +1385882.078573 +1385896.250899 +1385912.823658 +1385912.823658 +1385912.823658 +1385919.791455 +1385947.443124 +1385947.443124 +1385947.443124 +1385947.443124 +1385947.443124 +1385947.443124 +1385949.762351 +1385949.762351 +1385964.228505 +1385964.228505 +1385986.450989 +1385986.450989 +1385986.450989 +1385986.450989 +1385996.023765 +1385996.023765 +1386005.170659 +1386030.412986 +1386030.412986 +1386030.412986 +1386060.499527 +1386060.499527 +1386060.499527 +1386060.499527 +1386060.499527 +1386060.499527 +1386074.296035 +1386088.234920 +1386100.617005 +1386100.617005 +1386100.617005 +1386104.089072 +1386111.950314 +1386119.196358 +1386119.196358 +1386127.650030 +1386127.650030 +1386127.650030 +1386134.509233 +1386136.305901 +1386161.458300 +1386161.458300 +1386173.073714 +1386188.428674 +1386188.428674 +1386221.233239 +1386221.233239 +1386221.233239 +1386221.233239 +1386221.233239 +1386221.233239 +1386221.233239 +1386221.233239 +1386221.233239 +1386224.860594 +1386254.486608 +1386254.486608 +1386254.486608 +1386269.331422 +1386277.488212 +1386277.626196 +1386288.433988 +1386288.433988 +1386288.433988 +1386301.361773 +1386308.518573 +1386308.518573 +1386308.518573 +1386308.518573 +1386319.728037 +1386320.339224 +1386320.339224 +1386320.339224 +1386341.023876 +1386353.411171 +1386366.354861 +1386366.354861 +1386366.354861 +1386366.354861 +1386372.092147 +1386395.763720 +1386402.416970 +1386402.416970 +1386402.416970 +1386417.082246 +1386417.082246 +1386433.899734 +1386433.899734 +1386433.899734 +1386433.899734 +1386433.899734 +1386459.054542 +1386459.054542 +1386467.368317 +1386467.368317 +1386481.185177 +1386488.545438 +1386491.429475 +1386491.429475 +1386503.911995 +1386503.911995 +1386508.312562 +1386527.161121 +1386527.161121 +1386527.161121 +1386532.076693 +1386556.571340 +1386575.636319 +1386575.636319 +1386575.636319 +1386575.636319 +1386575.636319 +1386580.824914 +1386580.824914 +1386580.824914 +1386596.779794 +1386596.779794 +1386596.779794 +1386599.285607 +1386599.285607 +1386604.854293 +1386609.014256 +1386631.422041 +1386637.256735 +1386640.503856 +1386640.503856 +1386640.503856 +1386678.779582 +1386678.779582 +1386678.779582 +1386678.779582 +1386679.385162 +1386683.285976 +1386705.386015 +1386705.386015 +1386705.386015 +1386712.790948 +1386712.790948 +1386712.790948 +1386723.392625 +1386728.477759 +1386728.590697 +1386748.762532 +1386749.178338 +1386757.651618 +1386757.651618 +1386775.568034 +1386775.568034 +1386781.873820 +1386781.873820 +1386802.696467 +1386802.696467 +1386812.260016 +1386812.260016 +1386820.604229 +1386820.604229 +1386820.604229 +1386822.624727 +1386845.819014 +1386845.819014 +1386845.819014 +1386845.819014 +1386848.129691 +1386851.512989 +1386873.809961 +1386873.809961 +1386886.616962 +1386886.616962 +1386886.616962 +1386886.616962 +1386906.969414 +1386920.987513 +1386930.798264 +1386930.798264 +1386930.798264 +1386935.034204 +1386935.034204 +1386935.034204 +1386935.824098 +1386950.929742 +1386973.304005 +1386973.304005 +1386973.304005 +1386973.304005 +1386985.078076 +1386985.078076 +1386985.078076 +1386989.704588 +1386990.113924 +1387000.860723 +1387002.349229 +1387014.367405 +1387014.367405 +1387019.342518 +1387019.387733 +1387055.355867 +1387055.355867 +1387061.660168 +1387061.660168 +1387069.023467 +1387083.157566 +1387083.157566 +1387083.157566 +1387088.650328 +1387088.650328 +1387088.650328 +1387116.094894 +1387116.094894 +1387118.560601 +1387118.560601 +1387130.471453 +1387130.471453 +1387130.471453 +1387136.767654 +1387136.767654 +1387145.494848 +1387155.484676 +1387176.893395 +1387176.893395 +1387176.893395 +1387180.018580 +1387180.018580 +1387188.092311 +1387210.955020 +1387212.293876 +1387212.293876 +1387234.732479 +1387234.732479 +1387239.230588 +1387239.230588 +1387239.230588 +1387246.115177 +1387251.747217 +1387257.573332 +1387257.573332 +1387257.573332 +1387269.350195 +1387277.196491 +1387277.196491 +1387289.286319 +1387308.030319 +1387308.030319 +1387328.903260 +1387328.903260 +1387330.987464 +1387330.987464 +1387352.014074 +1387352.014074 +1387352.014074 +1387352.014074 +1387354.815118 +1387369.333097 +1387369.333097 +1387369.333097 +1387380.837102 +1387380.837102 +1387382.087396 +1387382.087396 +1387395.851421 +1387395.851421 +1387409.819984 +1387430.352546 +1387430.352546 +1387430.352546 +1387434.470896 +1387445.492691 +1387445.492691 +1387455.809192 +1387465.157041 +1387465.157041 +1387465.157041 +1387468.620420 +1387468.620420 +1387482.211302 +1387488.935409 +1387488.935409 +1387489.453682 +1387493.716024 +1387493.716024 +1387543.992008 +1387543.992008 +1387543.992008 +1387543.992008 +1387544.189984 +1387544.189984 +1387544.189984 +1387549.932878 +1387551.867690 +1387564.228331 +1387571.693365 +1387581.548288 +1387581.548288 +1387591.062268 +1387591.062268 +1387606.447016 +1387606.447016 +1387606.447016 +1387610.903770 +1387634.123768 +1387634.123768 +1387634.123768 +1387634.123768 +1387643.578393 +1387658.948975 +1387658.948975 +1387658.948975 +1387671.775588 +1387684.395221 +1387684.395221 +1387684.395221 +1387696.998893 +1387696.998893 +1387696.998893 +1387696.998893 +1387714.723243 +1387722.017825 +1387722.017825 +1387725.465003 +1387733.885772 +1387733.885772 +1387733.885772 +1387745.738368 +1387751.317744 +1387769.742188 +1387769.742188 +1387788.320485 +1387788.320485 +1387788.320485 +1387788.320485 +1387788.320485 +1387789.821265 +1387816.581611 +1387816.581611 +1387821.714687 +1387821.714687 +1387839.093370 +1387839.093370 +1387841.590582 +1387841.590582 +1387841.590582 +1387850.584776 +1387850.584776 +1387850.584776 +1387878.781926 +1387890.386683 +1387890.386683 +1387890.386683 +1387894.589409 +1387911.086568 +1387921.345768 +1387921.345768 +1387921.345768 +1387921.345768 +1387921.345768 +1387941.320030 +1387941.320030 +1387941.320030 +1387955.656608 +1387956.808740 +1387956.808740 +1387965.755583 +1387965.755583 +1387965.755583 +1387984.245930 +1387994.020711 +1387994.020711 +1387997.784421 +1388013.615126 +1388013.615126 +1388013.615126 +1388013.615126 +1388013.615126 +1388019.311717 +1388019.311717 +1388035.849771 +1388038.269422 +1388065.367094 +1388065.367094 +1388065.367094 +1388065.367094 +1388094.362889 +1388094.362889 +1388094.362889 +1388094.362889 +1388094.362889 +1388094.586077 +1388104.706676 +1388104.706676 +1388121.159878 +1388121.159878 +1388121.159878 +1388131.176346 +1388145.601754 +1388146.613864 +1388173.932348 +1388173.932348 +1388173.932348 +1388173.932348 +1388173.932348 +1388188.621761 +1388188.621761 +1388189.251967 +1388192.802231 +1388219.309837 +1388230.297641 +1388230.297641 +1388230.297641 +1388230.297641 +1388230.297641 +1388230.932007 +1388241.275781 +1388241.275781 +1388241.275781 +1388263.710013 +1388269.906608 +1388269.906608 +1388281.699471 +1388281.699471 +1388281.699471 +1388281.699471 +1388294.223495 +1388294.223495 +1388296.691695 +1388314.138580 +1388352.537810 +1388352.537810 +1388352.537810 +1388352.537810 +1388352.537810 +1388352.537810 +1388352.537810 +1388356.070366 +1388356.070366 +1388356.070366 +1388358.646869 +1388365.310557 +1388369.622765 +1388390.624050 +1388403.431012 +1388404.493376 +1388404.493376 +1388404.493376 +1388410.475219 +1388411.732052 +1388430.273158 +1388430.273158 +1388433.833604 +1388433.836327 +1388440.200673 +1388455.041522 +1388461.928370 +1388461.928370 +1388461.928370 +1388478.703599 +1388478.703599 +1388485.983949 +1388495.649999 +1388495.649999 +1388495.649999 +1388514.164294 +1388514.164294 +1388514.164294 +1388514.164294 +1388514.164294 +1388537.934176 +1388548.538323 +1388548.538323 +1388560.713530 +1388560.713530 +1388578.877014 +1388588.092962 +1388588.092962 +1388590.308949 +1388590.308949 +1388590.308949 +1388602.023738 +1388602.023738 +1388604.258471 +1388604.258471 +1388616.072735 +1388625.157277 +1388643.689243 +1388648.221210 +1388648.221210 +1388648.221210 +1388653.896738 +1388653.896738 +1388663.704832 +1388663.704832 +1388673.359305 +1388673.359305 +1388673.359305 +1388689.627859 +1388706.551727 +1388706.551727 +1388706.551727 +1388706.551727 +1388712.869139 +1388719.291092 +1388719.291092 +1388755.480857 +1388755.480857 +1388755.480857 +1388755.480857 +1388755.480857 +1388762.490453 +1388762.490453 +1388776.369546 +1388776.369546 +1388794.257243 +1388794.257243 +1388794.257243 +1388798.682185 +1388798.682185 +1388818.191446 +1388818.191446 +1388818.191446 +1388818.191446 +1388818.191446 +1388818.191446 +1388823.518555 +1388841.763176 +1388841.763176 +1388863.522658 +1388877.144501 +1388877.621074 +1388877.621074 +1388877.621074 +1388877.621074 +1388877.621074 +1388888.463397 +1388907.413608 +1388907.413608 +1388925.416367 +1388925.416367 +1388937.573812 +1388941.448086 +1388941.448086 +1388941.448086 +1388941.448086 +1388941.448086 +1388941.448086 +1388944.767276 +1388973.340857 +1388973.340857 +1388974.497953 +1388994.665630 +1388994.665630 +1388994.665630 +1388994.665630 +1388999.591835 +1389001.852830 +1389007.300637 +1389007.300637 +1389028.197975 +1389028.197975 +1389054.851220 +1389054.851220 +1389074.784783 +1389074.784783 +1389074.784783 +1389074.784783 +1389094.124820 +1389094.124820 +1389094.124820 +1389097.563701 +1389097.563701 +1389097.563701 +1389101.598561 +1389101.598561 +1389101.598561 +1389101.598561 +1389112.335881 +1389139.883746 +1389139.883746 +1389139.883746 +1389139.883746 +1389139.883746 +1389148.059331 +1389150.725358 +1389161.364866 +1389181.878675 +1389181.878675 +1389181.878675 +1389185.051039 +1389196.272129 +1389201.135732 +1389201.135732 +1389216.417448 +1389216.417448 +1389216.417448 +1389235.415658 +1389235.419102 +1389253.153525 +1389253.153525 +1389260.979353 +1389260.979353 +1389260.979353 +1389260.979353 +1389285.272204 +1389285.272204 +1389301.525591 +1389301.525591 +1389301.525591 +1389301.525591 +1389301.525591 +1389308.702414 +1389308.702414 +1389308.702414 +1389316.730963 +1389316.730963 +1389316.730963 +1389316.730963 +1389350.567625 +1389351.906886 +1389351.906886 +1389389.271610 +1389389.271610 +1389389.783992 +1389389.783992 +1389389.783992 +1389389.783992 +1389393.153335 +1389414.696106 +1389421.517982 +1389421.517982 +1389421.517982 +1389421.517982 +1389421.517982 +1389454.469657 +1389454.469657 +1389454.469657 +1389454.469657 +1389460.033836 +1389485.761553 +1389485.761553 +1389485.761553 +1389486.876406 +1389486.876406 +1389487.198665 +1389487.198665 +1389487.198665 +1389503.549780 +1389503.549780 +1389503.549780 +1389503.549780 +1389524.903331 +1389524.903331 +1389549.952513 +1389549.952513 +1389555.273680 +1389555.273680 +1389555.273680 +1389555.273680 +1389565.948501 +1389565.948501 +1389575.961338 +1389575.961338 +1389585.851472 +1389585.851472 +1389585.851472 +1389585.851472 +1389624.610590 +1389628.995378 +1389630.376835 +1389630.376835 +1389630.376835 +1389632.851751 +1389647.439789 +1389647.439789 +1389647.439789 +1389653.804415 +1389653.804415 +1389658.129906 +1389668.239881 +1389668.239881 +1389691.343763 +1389691.343763 +1389691.343763 +1389691.343763 +1389691.343763 +1389691.343763 +1389717.167706 +1389721.193133 +1389733.913124 +1389737.171980 +1389737.171980 +1389737.171980 +1389760.001024 +1389760.001024 +1389760.001024 +1389767.338107 +1389778.977482 +1389778.977482 +1389794.093757 +1389794.093757 +1389794.093757 +1389794.848499 +1389794.848499 +1389818.052197 +1389818.052197 +1389818.052197 +1389818.052197 +1389818.052197 +1389818.052197 +1389823.848799 +1389854.829442 +1389854.829442 +1389854.829442 +1389854.829442 +1389882.686546 +1389882.686546 +1389882.686546 +1389882.686546 +1389895.125105 +1389895.125105 +1389895.125105 +1389918.873078 +1389918.873078 +1389918.873078 +1389918.873078 +1389918.873078 +1389918.873078 +1389933.276861 +1389947.108904 +1389947.108904 +1389952.852593 +1389965.292898 +1389965.292898 +1389965.292898 +1389976.712642 +1389976.712642 +1389976.712642 +1389976.712642 +1390008.516114 +1390008.516114 +1390021.866703 +1390021.866703 +1390021.866703 +1390021.866703 +1390057.561369 +1390057.561369 +1390057.561369 +1390057.561369 +1390057.561369 +1390064.384560 +1390064.384560 +1390064.384560 +1390066.618385 +1390066.618385 +1390077.150951 +1390077.150951 +1390077.150951 +1390077.505538 +1390081.802968 +1390100.050733 +1390130.731383 +1390130.731383 +1390130.731383 +1390137.106033 +1390138.109250 +1390139.920631 +1390149.378527 +1390149.378527 +1390149.378527 +1390156.348200 +1390162.493826 +1390170.978297 +1390170.978297 +1390171.551187 +1390178.764775 +1390205.708628 +1390205.708628 +1390205.708628 +1390206.365170 +1390206.365170 +1390209.647906 +1390234.903434 +1390234.903434 +1390234.903434 +1390234.903434 +1390234.903434 +1390234.903434 +1390272.361845 +1390272.361845 +1390272.361845 +1390272.361845 +1390272.361845 +1390281.165508 +1390289.949829 +1390289.949829 +1390299.542027 +1390299.542027 +1390299.542027 +1390313.690607 +1390324.269790 +1390324.269790 +1390344.958183 +1390351.145365 +1390351.145365 +1390351.145365 +1390364.240787 +1390364.240787 +1390364.240787 +1390373.321797 +1390373.709979 +1390386.135517 +1390386.135517 +1390396.656422 +1390396.656422 +1390405.590412 +1390405.590412 +1390409.891991 +1390409.891991 +1390409.891991 +1390421.151897 +1390421.151897 +1390439.065267 +1390448.292884 +1390467.522678 +1390467.522678 +1390467.522678 +1390467.522678 +1390467.522678 +1390467.522678 +1390469.775312 +1390488.640790 +1390488.640790 +1390503.969017 +1390503.969017 +1390503.969017 +1390503.969017 +1390520.123046 +1390538.433649 +1390538.433649 +1390538.433649 +1390546.126920 +1390546.126920 +1390546.126920 +1390546.126920 +1390548.539389 +1390604.246591 +1390604.246591 +1390604.246591 +1390604.246591 +1390604.246591 +1390604.246591 +1390604.246591 +1390609.509396 +1390609.509396 +1390609.509396 +1390609.509396 +1390609.509396 +1390609.509396 +1390630.982965 +1390630.982965 +1390641.137812 +1390651.802605 +1390662.126168 +1390662.286500 +1390667.907987 +1390684.650655 +1390684.650655 +1390684.650655 +1390703.658200 +1390703.658200 +1390703.658200 +1390703.658200 +1390706.833984 +1390706.833984 +1390718.532579 +1390718.532579 +1390739.073735 +1390739.073735 +1390739.073735 +1390739.073735 +1390739.073735 +1390752.911899 +1390752.911899 +1390800.810276 +1390800.810276 +1390800.810276 +1390800.810276 +1390800.810276 +1390802.350581 +1390802.350581 +1390802.350581 +1390802.350581 +1390802.350581 +1390808.476335 +1390836.447063 +1390836.447063 +1390836.447063 +1390841.796693 +1390855.774681 +1390855.774681 +1390855.774681 +1390855.774681 +1390867.529428 +1390878.358317 +1390878.358317 +1390878.358317 +1390878.358317 +1390885.303011 +1390901.460542 +1390901.460542 +1390901.460542 +1390901.460542 +1390901.460542 +1390906.247883 +1390924.724725 +1390931.657416 +1390939.697820 +1390939.697820 +1390960.784092 +1390960.784092 +1390960.784092 +1390968.100584 +1390985.562104 +1390985.562104 +1390985.562104 +1390986.085177 +1391011.091217 +1391011.091217 +1391011.091217 +1391011.091217 +1391011.091217 +1391013.507387 +1391027.381475 +1391027.381475 +1391047.617584 +1391047.617584 +1391047.617584 +1391047.617584 +1391047.617584 +1391049.501905 +1391049.501905 +1391049.501905 +1391054.581715 +1391076.434653 +1391096.355202 +1391096.355202 +1391102.125232 +1391102.125232 +1391102.125232 +1391111.856601 +1391151.088605 +1391151.088605 +1391151.088605 +1391151.088605 +1391151.088605 +1391151.088605 +1391162.885274 +1391162.885274 +1391168.879978 +1391168.879978 +1391188.029646 +1391188.029646 +1391192.772398 +1391192.772398 +1391192.772398 +1391192.772398 +1391198.273171 +1391205.167152 +1391205.167152 +1391225.818510 +1391225.818510 +1391225.818510 +1391225.818510 +1391226.136533 +1391243.849884 +1391243.849884 +1391262.401727 +1391262.401727 +1391281.976374 +1391281.976374 +1391284.696160 +1391284.696160 +1391287.440664 +1391287.440664 +1391287.440664 +1391303.121698 +1391303.121698 +1391303.121698 +1391309.138263 +1391309.138263 +1391327.559968 +1391336.929071 +1391336.929071 +1391336.929071 +1391346.111682 +1391346.111682 +1391346.111682 +1391356.074497 +1391356.074497 +1391356.074497 +1391380.607050 +1391380.607050 +1391410.256926 +1391410.256926 +1391410.256926 +1391410.256926 +1391410.256926 +1391414.775729 +1391419.874793 +1391419.874793 +1391420.730982 +1391432.603998 +1391435.246358 +1391435.246358 +1391437.134911 +1391456.395144 +1391458.121700 +1391459.350840 +1391476.230649 +1391476.230649 +1391476.230649 +1391500.715480 +1391500.715480 +1391500.715480 +1391520.921584 +1391520.921584 +1391520.921584 +1391520.921584 +1391523.337403 +1391523.985479 +1391542.141061 +1391552.415974 +1391556.511123 +1391556.511123 +1391561.338468 +1391562.324937 +1391562.324937 +1391562.324937 +1391562.324937 +1391580.857894 +1391580.857894 +1391599.377079 +1391599.377079 +1391599.377079 +1391606.881141 +1391606.881141 +1391622.611247 +1391622.611247 +1391622.611247 +1391623.018600 +1391645.610026 +1391645.610026 +1391645.610026 +1391661.116781 +1391661.116781 +1391661.116781 +1391681.864790 +1391681.864790 +1391681.864790 +1391681.864790 +1391701.194584 +1391701.194584 +1391701.194584 +1391701.194584 +1391705.897246 +1391705.897246 +1391722.127602 +1391722.127602 +1391725.706042 +1391725.706042 +1391735.724654 +1391735.724654 +1391735.724654 +1391735.724654 +1391773.892036 +1391773.892036 +1391773.892036 +1391777.358846 +1391777.358846 +1391782.304396 +1391782.304396 +1391807.155816 +1391817.920670 +1391817.920670 +1391817.920670 +1391817.920670 +1391817.920670 +1391844.176563 +1391844.176563 +1391844.176563 +1391846.704081 +1391846.704081 +1391859.056402 +1391859.056402 +1391874.088888 +1391874.088888 +1391874.088888 +1391905.910435 +1391905.910435 +1391905.910435 +1391922.468319 +1391929.537967 +1391929.537967 +1391929.537967 +1391929.537967 +1391929.537967 +1391934.962646 +1391934.962646 +1391935.988747 +1391935.988747 +1391954.048111 +1391955.425289 +1391955.425289 +1391955.425289 +1391986.906984 +1391986.906984 +1391986.906984 +1391986.906984 +1392012.640503 +1392024.028127 +1392024.028127 +1392024.028127 +1392024.028127 +1392024.028127 +1392037.039726 +1392038.068566 +1392038.702070 +1392038.702070 +1392051.707560 +1392051.707560 +1392051.707560 +1392051.707560 +1392063.189340 +1392076.311429 +1392086.058448 +1392087.549779 +1392087.549779 +1392087.549779 +1392092.776693 +1392092.776693 +1392124.294943 +1392124.294943 +1392124.294943 +1392124.294943 +1392129.227080 +1392129.227080 +1392129.227080 +1392129.227080 +1392134.601272 +1392145.573500 +1392145.573500 +1392169.461982 +1392183.244622 +1392183.244622 +1392183.244622 +1392183.244622 +1392203.892888 +1392203.892888 +1392203.892888 +1392203.892888 +1392203.892888 +1392203.892888 +1392203.892888 +1392206.734836 +1392214.706510 +1392243.018138 +1392244.153821 +1392251.065795 +1392276.795372 +1392276.795372 +1392276.795372 +1392276.795372 +1392276.795372 +1392276.795372 +1392279.771965 +1392298.910581 +1392298.910581 +1392298.910581 +1392298.910581 +1392319.993510 +1392319.993510 +1392323.318606 +1392323.318606 +1392327.958730 +1392327.958730 +1392327.958730 +1392346.348649 +1392352.211490 +1392353.138180 +1392353.138180 +1392390.166873 +1392390.166873 +1392394.141776 +1392407.339384 +1392407.339384 +1392407.339384 +1392407.339384 +1392407.339384 +1392407.339384 +1392412.451182 +1392412.451182 +1392412.495987 +1392412.495987 +1392429.341468 +1392429.341468 +1392429.341468 +1392449.632584 +1392457.170031 +1392462.310510 +1392469.928379 +1392477.078743 +1392477.078743 +1392477.078743 +1392479.464821 +1392479.464821 +1392486.074450 +1392486.074450 +1392506.790822 +1392524.076542 +1392524.076542 +1392524.076542 +1392524.076542 +1392529.204831 +1392534.620181 +1392546.698282 +1392546.698282 +1392556.224135 +1392557.566179 +1392573.364692 +1392573.364692 +1392573.364692 +1392573.364692 +1392573.364692 +1392595.784261 +1392602.727067 +1392602.727067 +1392602.727067 +1392611.863936 +1392614.753919 +1392632.607152 +1392632.607152 +1392632.607152 +1392634.850356 +1392635.596355 +1392635.596355 +1392648.818341 +1392648.818341 +1392648.818341 +1392648.818341 +1392705.894337 +1392705.894337 +1392705.894337 +1392705.894337 +1392705.894337 +1392705.894337 +1392705.894337 +1392705.894337 +1392722.154920 +1392733.999549 +1392733.999549 +1392733.999549 +1392763.583015 +1392763.583015 +1392763.583015 +1392763.583015 +1392763.583015 +1392763.583015 +1392773.038782 +1392773.038782 +1392773.038782 +1392773.038782 +1392780.333593 +1392791.779916 +1392791.779916 +1392791.779916 +1392791.779916 +1392801.436905 +1392821.806444 +1392828.504446 +1392828.504446 +1392828.504446 +1392848.525399 +1392848.525399 +1392863.170794 +1392863.170794 +1392863.170794 +1392863.170794 +1392888.097992 +1392888.097992 +1392888.097992 +1392888.097992 +1392909.192475 +1392909.192475 +1392909.192475 +1392909.192475 +1392909.192475 +1392912.307248 +1392919.289469 +1392919.289469 +1392932.732858 +1392932.732858 +1392934.311491 +1392934.311491 +1392934.311491 +1392934.311491 +1392942.542118 +1392953.315563 +1392974.648258 +1392978.476741 +1392978.476741 +1393004.320739 +1393004.320739 +1393004.320739 +1393018.885176 +1393018.885176 +1393018.885176 +1393018.885176 +1393018.885176 +1393018.885176 +1393018.885176 +1393019.597237 +1393029.930937 +1393033.772569 +1393049.324861 +1393049.324861 +1393070.645075 +1393070.645075 +1393070.645075 +1393070.645075 +1393085.948969 +1393085.948969 +1393091.178445 +1393091.178445 +1393109.912810 +1393113.837559 +1393115.021379 +1393115.021379 +1393115.021379 +1393123.480320 +1393123.480320 +1393123.480320 +1393123.480320 +1393137.801527 +1393144.958290 +1393147.582034 +1393179.614331 +1393182.238244 +1393182.238244 +1393182.238244 +1393193.379049 +1393193.379049 +1393193.379049 +1393209.268041 +1393209.268041 +1393209.268041 +1393209.268041 +1393217.403469 +1393217.403469 +1393224.260969 +1393224.260969 +1393225.210268 +1393236.926824 +1393236.926824 +1393236.926824 +1393257.675074 +1393266.463499 +1393280.513307 +1393280.513307 +1393280.513307 +1393282.263100 +1393301.972822 +1393301.972822 +1393301.972822 +1393301.972822 +1393301.972822 +1393301.972822 +1393332.254671 +1393332.616923 +1393332.616923 +1393332.616923 +1393336.948244 +1393336.948244 +1393336.948244 +1393346.276764 +1393376.587773 +1393376.587773 +1393376.587773 +1393376.587773 +1393378.445001 +1393385.624379 +1393398.452124 +1393398.452124 +1393407.291056 +1393407.291056 +1393415.046040 +1393415.046040 +1393415.046040 +1393426.845275 +1393426.845275 +1393434.535643 +1393434.535643 +1393434.535643 +1393434.535643 +1393456.165640 +1393456.165640 +1393465.369158 +1393465.369158 +1393465.369158 +1393478.030294 +1393483.985870 +1393488.821552 +1393505.511266 +1393505.511266 +1393515.267397 +1393515.267397 +1393515.267397 +1393520.250613 +1393524.997496 +1393538.347461 +1393539.866640 +1393539.866640 +1393539.866640 +1393551.899430 +1393576.673308 +1393576.673308 +1393576.673308 +1393576.673308 +1393583.823662 +1393583.823662 +1393610.790393 +1393610.790393 +1393615.313084 +1393615.313084 +1393615.313084 +1393615.313084 +1393632.285721 +1393632.285721 +1393638.294057 +1393638.294057 +1393639.912281 +1393639.912281 +1393669.924882 +1393669.924882 +1393690.227697 +1393690.227697 +1393690.227697 +1393690.227697 +1393690.227697 +1393690.227697 +1393690.293756 +1393701.535849 +1393701.535849 +1393711.718956 +1393733.240776 +1393740.213404 +1393740.213404 +1393740.213404 +1393740.213404 +1393760.383434 +1393760.383434 +1393760.383434 +1393760.383434 +1393767.787096 +1393785.806111 +1393785.806111 +1393793.017433 +1393793.017433 +1393793.017433 +1393808.648721 +1393808.648721 +1393808.648721 +1393815.597536 +1393815.597536 +1393823.574849 +1393850.950640 +1393850.950640 +1393850.950640 +1393850.950640 +1393850.950640 +1393852.333591 +1393852.333591 +1393859.039770 +1393859.039770 +1393859.039770 +1393867.359052 +1393867.852365 +1393881.056948 +1393921.253657 +1393921.253657 +1393921.253657 +1393921.253657 +1393923.775826 +1393923.775826 +1393923.775826 +1393923.775826 +1393923.775826 +1393930.478167 +1393930.478167 +1393941.746509 +1393943.763857 +1393943.763857 +1393946.126194 +1393967.116463 +1393967.116463 +1393974.164750 +1393984.671617 +1393988.512203 +1394002.015486 +1394002.015486 +1394002.015486 +1394009.620468 +1394009.620468 +1394009.620468 +1394013.266475 +1394013.266475 +1394021.421573 +1394021.421573 +1394039.264818 +1394039.264818 +1394039.264818 +1394079.989357 +1394079.989357 +1394079.989357 +1394079.989357 +1394079.989357 +1394079.989357 +1394079.989357 +1394111.293122 +1394111.293122 +1394111.293122 +1394123.106225 +1394123.106225 +1394123.106225 +1394124.920368 +1394131.122100 +1394131.122100 +1394131.122100 +1394131.122100 +1394163.443436 +1394163.443436 +1394163.443436 +1394169.984299 +1394174.672662 +1394174.672662 +1394190.241566 +1394190.241566 +1394190.241566 +1394208.794259 +1394209.985320 +1394209.985320 +1394209.985320 +1394222.251362 +1394222.251362 +1394224.113131 +1394224.113131 +1394224.113131 +1394224.113131 +1394241.887559 +1394260.372973 +1394260.372973 +1394268.792043 +1394268.792043 +1394268.792043 +1394278.002957 +1394283.393256 +1394283.393256 +1394289.557485 +1394316.596916 +1394316.596916 +1394316.596916 +1394316.596916 +1394316.596916 +1394319.775860 +1394323.723006 +1394323.723006 +1394323.723006 +1394323.723006 +1394323.723006 +1394347.244565 +1394361.783574 +1394361.783574 +1394361.783574 +1394375.311067 +1394388.453231 +1394388.453231 +1394388.453231 +1394391.582728 +1394391.582728 +1394391.799668 +1394394.541866 +1394406.707281 +1394406.707281 +1394424.534932 +1394427.704372 +1394427.704372 +1394432.961275 +1394448.912009 +1394448.912009 +1394448.912009 +1394448.912009 +1394465.925383 +1394465.925383 +1394465.925383 +1394467.258696 +1394488.702382 +1394488.702382 +1394488.702382 +1394488.702382 +1394499.550846 +1394502.633222 +1394502.633222 +1394531.704621 +1394531.704621 +1394531.704621 +1394548.590959 +1394550.993239 +1394550.993239 +1394550.993239 +1394550.993239 +1394550.993239 +1394580.719832 +1394580.719832 +1394580.719832 +1394584.439345 +1394584.439345 +1394596.297239 +1394596.297239 +1394596.297239 +1394603.875467 +1394607.429201 +1394607.429201 +1394619.944504 +1394619.944504 +1394622.274703 +1394637.162250 +1394655.255154 +1394666.939460 +1394666.939460 +1394666.939460 +1394666.939460 +1394666.939460 +1394666.939460 +1394666.939460 +1394670.942858 +1394688.805764 +1394688.805764 +1394705.862761 +1394705.862761 +1394705.862761 +1394711.805915 +1394746.222816 +1394746.222816 +1394746.222816 +1394746.222816 +1394746.222816 +1394746.222816 +1394746.222816 +1394746.222816 +1394761.954210 +1394774.052883 +1394781.867581 +1394781.867581 +1394781.867581 +1394781.867581 +1394781.867581 +1394781.867581 +1394781.867581 +1394782.970429 +1394802.988750 +1394811.726991 +1394811.726991 +1394814.244744 +1394827.009351 +1394827.009351 +1394836.224468 +1394836.224468 +1394836.224468 +1394836.942411 +1394840.410340 +1394840.410340 +1394855.389711 +1394865.047166 +1394874.936528 +1394883.853152 +1394883.853152 +1394916.175353 +1394935.035771 +1394935.035771 +1394935.035771 +1394935.035771 +1394935.035771 +1394935.035771 +1394935.035771 +1394935.035771 +1394935.035771 +1394936.213011 +1394936.213011 +1394936.213011 +1394964.256039 +1394964.256039 +1394964.256039 +1394971.252253 +1394987.852136 +1394987.852136 +1394997.491778 +1394997.491778 +1395006.278705 +1395006.278705 +1395006.712747 +1395006.712747 +1395031.909736 +1395031.909736 +1395036.552377 +1395041.709110 +1395041.709110 +1395041.709110 +1395045.650149 +1395045.650149 +1395045.650149 +1395045.650149 +1395045.972838 +1395053.315259 +1395062.560960 +1395069.133664 +1395069.133664 +1395072.389556 +1395105.868290 +1395105.868290 +1395118.587450 +1395118.587450 +1395119.989290 +1395124.774561 +1395132.506428 +1395132.506428 +1395132.801312 +1395146.200750 +1395146.200750 +1395146.200750 +1395152.825900 +1395161.085425 +1395172.336253 +1395172.336253 +1395172.336253 +1395179.775463 +1395179.775463 +1395179.775463 +1395189.339546 +1395199.878188 +1395215.005087 +1395215.005087 +1395215.005087 +1395230.435380 +1395230.435380 +1395230.435380 +1395248.461079 +1395248.461079 +1395248.461079 +1395248.461079 +1395248.461079 +1395249.880080 +1395249.880080 +1395260.080184 +1395263.653962 +1395270.860908 +1395273.685003 +1395296.444882 +1395296.444882 +1395296.444882 +1395296.444882 +1395301.212883 +1395311.861389 +1395319.232404 +1395319.232404 +1395319.232404 +1395319.232404 +1395326.767447 +1395334.072658 +1395334.072658 +1395334.072658 +1395359.727742 +1395362.695709 +1395368.547418 +1395368.547418 +1395368.547418 +1395368.547418 +1395385.217595 +1395390.378322 +1395390.378322 +1395390.378322 +1395403.164820 +1395415.177723 +1395418.762290 +1395418.762290 +1395426.355555 +1395430.504219 +1395452.276350 +1395453.969014 +1395453.969014 +1395453.969014 +1395453.969014 +1395468.244179 +1395470.218486 +1395470.218486 +1395472.222705 +1395475.003076 +1395475.003076 +1395478.088715 +1395478.088715 +1395492.866318 +1395492.866318 +1395515.608362 +1395515.608362 +1395515.608362 +1395515.608362 +1395515.608362 +1395538.941271 +1395547.071679 +1395571.813197 +1395571.813197 +1395571.813197 +1395571.813197 +1395590.546948 +1395590.546948 +1395590.546948 +1395590.546948 +1395590.546948 +1395590.546948 +1395590.546948 +1395590.546948 +1395590.546948 +1395614.733806 +1395614.733806 +1395627.456471 +1395627.456471 +1395627.456471 +1395627.456471 +1395648.681232 +1395648.681232 +1395676.726845 +1395676.726845 +1395676.726845 +1395676.726845 +1395676.726845 +1395678.286235 +1395678.286235 +1395690.718120 +1395690.718120 +1395691.467532 +1395691.467532 +1395708.138724 +1395716.064182 +1395722.351975 +1395722.351975 +1395722.351975 +1395722.351975 +1395722.351975 +1395722.351975 +1395741.684909 +1395741.684909 +1395741.684909 +1395745.262475 +1395763.870918 +1395763.870918 +1395763.870918 +1395768.730746 +1395768.730746 +1395777.639021 +1395786.827775 +1395786.827775 +1395787.467808 +1395796.944674 +1395806.591647 +1395822.886783 +1395836.166468 +1395836.166468 +1395839.613142 +1395850.246563 +1395850.246563 +1395850.246563 +1395850.246563 +1395860.875365 +1395876.545271 +1395876.545271 +1395876.545271 +1395876.545271 +1395876.545271 +1395877.423018 +1395877.423018 +1395883.190333 +1395889.109377 +1395889.109377 +1395897.626499 +1395909.325182 +1395909.325182 +1395909.325182 +1395915.245184 +1395943.708034 +1395943.708034 +1395943.708034 +1395943.708034 +1395945.654728 +1395960.435396 +1395960.435396 +1395978.198168 +1395978.198168 +1395978.198168 +1395981.545638 +1395981.545638 +1395995.345595 +1395995.345595 +1396003.144610 +1396005.616958 +1396009.821572 +1396009.821572 +1396016.708798 +1396016.708798 +1396028.553798 +1396028.553798 +1396049.869049 +1396049.869049 +1396049.869049 +1396049.869049 +1396065.213317 +1396065.213317 +1396075.221535 +1396075.221535 +1396080.072407 +1396097.636916 +1396097.636916 +1396108.654733 +1396108.654733 +1396108.654733 +1396108.654733 +1396108.654733 +1396108.654733 +1396109.870311 +1396131.266303 +1396152.496261 +1396158.019030 +1396159.363731 +1396159.363731 +1396159.363731 +1396159.363731 +1396159.363731 +1396159.363731 +1396159.363731 +1396181.522591 +1396181.522591 +1396181.522591 +1396198.537523 +1396207.554067 +1396207.554067 +1396207.554067 +1396207.554067 +1396224.366335 +1396225.537782 +1396225.537782 +1396225.537782 +1396225.537782 +1396225.903672 +1396243.716230 +1396250.333717 +1396250.333717 +1396250.333717 +1396250.800158 +1396291.728109 +1396291.728109 +1396291.728109 +1396291.728109 +1396291.728109 +1396291.728109 +1396295.537375 +1396303.134927 +1396303.134927 +1396314.845089 +1396314.845089 +1396330.007139 +1396330.494574 +1396331.747421 +1396331.747421 +1396352.774025 +1396352.774025 +1396352.774025 +1396352.774025 +1396355.070020 +1396355.070020 +1396370.370339 +1396370.370339 +1396370.370339 +1396382.828870 +1396383.662564 +1396400.138503 +1396400.138503 +1396416.373783 +1396416.373783 +1396416.373783 +1396416.373783 +1396435.521429 +1396435.521429 +1396443.022043 +1396443.022043 +1396443.022043 +1396443.022043 +1396443.022043 +1396443.022043 +1396458.769050 +1396458.769050 +1396463.688946 +1396466.754682 +1396466.754682 +1396480.824363 +1396481.697958 +1396486.141284 +1396486.141284 +1396520.555859 +1396520.555859 +1396520.555859 +1396520.555859 +1396520.555859 +1396537.801001 +1396537.801001 +1396541.108117 +1396541.885273 +1396570.152540 +1396570.152540 +1396570.152540 +1396581.997161 +1396581.997161 +1396582.517955 +1396596.307087 +1396596.307087 +1396596.307087 +1396596.307087 +1396603.989415 +1396603.989415 +1396605.021910 +1396614.921953 +1396623.625916 +1396623.625916 +1396623.625916 +1396628.089031 +1396628.089031 +1396628.089031 +1396658.359916 +1396659.613532 +1396659.613532 +1396659.613532 +1396659.613532 +1396659.613532 +1396675.716358 +1396698.584409 +1396707.446351 +1396707.446351 +1396707.446351 +1396707.446351 +1396707.446351 +1396707.446351 +1396707.446351 +1396708.854747 +1396713.431489 +1396716.457059 +1396725.937319 +1396728.131628 +1396737.813870 +1396757.273873 +1396757.273873 +1396757.273873 +1396769.520786 +1396769.520786 +1396780.520334 +1396780.520334 +1396789.814233 +1396789.814233 +1396790.166009 +1396797.636652 +1396797.636652 +1396797.636652 +1396833.690807 +1396833.690807 +1396849.625685 +1396849.625685 +1396849.625685 +1396849.625685 +1396849.625685 +1396849.625685 +1396849.625685 +1396849.625685 +1396849.625685 +1396865.090367 +1396865.922118 +1396885.779207 +1396885.779207 +1396885.779207 +1396886.500147 +1396923.561626 +1396923.561626 +1396923.561626 +1396923.561626 +1396923.561626 +1396923.561626 +1396923.561626 +1396923.822837 +1396923.822837 +1396944.938272 +1396944.938272 +1396944.938272 +1396948.629669 +1396948.629669 +1396954.915570 +1396959.530810 +1396967.797069 +1396967.797069 +1397000.280143 +1397000.280143 +1397000.280143 +1397000.280143 +1397000.280143 +1397009.068708 +1397012.793784 +1397012.793784 +1397012.793784 +1397012.793784 +1397022.489950 +1397036.877138 +1397036.877138 +1397036.877138 +1397051.895927 +1397051.895927 +1397054.925258 +1397055.895539 +1397090.479644 +1397095.789289 +1397095.789289 +1397095.789289 +1397095.789289 +1397095.789289 +1397095.789289 +1397095.789289 +1397095.789289 +1397104.751362 +1397104.751362 +1397104.751362 +1397115.971531 +1397115.971531 +1397130.013642 +1397139.223296 +1397139.223296 +1397139.223296 +1397152.922044 +1397157.850016 +1397157.850016 +1397163.600392 +1397183.970355 +1397183.970355 +1397191.827156 +1397191.827156 +1397196.714603 +1397196.714603 +1397196.714603 +1397208.071168 +1397226.685155 +1397226.685155 +1397236.729272 +1397236.729272 +1397236.729272 +1397236.729272 +1397239.911767 +1397239.911767 +1397249.924197 +1397249.924197 +1397249.924197 +1397265.050849 +1397279.228249 +1397279.228249 +1397279.228249 +1397310.338391 +1397310.338391 +1397310.338391 +1397311.991940 +1397311.991940 +1397311.991940 +1397311.991940 +1397312.608894 +1397319.984780 +1397319.984780 +1397326.475320 +1397335.185128 +1397335.185128 +1397335.185128 +1397340.922219 +1397364.508019 +1397364.508019 +1397369.663723 +1397369.713439 +1397390.048219 +1397390.048219 +1397396.878699 +1397396.878699 +1397396.878699 +1397396.878699 +1397420.880154 +1397420.880154 +1397436.689322 +1397436.689322 +1397436.689322 +1397436.689322 +1397436.796530 +1397436.796530 +1397436.796530 +1397445.694139 +1397445.694139 +1397453.354204 +1397480.498090 +1397480.498090 +1397480.498090 +1397481.805191 +1397481.805191 +1397486.527881 +1397486.527881 +1397486.527881 +1397507.383356 +1397516.710106 +1397516.710106 +1397554.070449 +1397554.070449 +1397554.070449 +1397554.070449 +1397554.070449 +1397554.070449 +1397554.070449 +1397554.070449 +1397554.070449 +1397556.619000 +1397556.619000 +1397556.619000 +1397584.274927 +1397584.274927 +1397593.503386 +1397594.369496 +1397596.619730 +1397596.619730 +1397600.925407 +1397600.925407 +1397600.925407 +1397609.655706 +1397625.476361 +1397625.476361 +1397629.093873 +1397629.093873 +1397629.093873 +1397637.836444 +1397640.313977 +1397657.663290 +1397672.720672 +1397672.720672 +1397672.720672 +1397672.720672 +1397675.671554 +1397675.671554 +1397679.200157 +1397711.413998 +1397711.413998 +1397711.413998 +1397711.413998 +1397711.413998 +1397711.413998 +1397716.490133 +1397716.490133 +1397727.628135 +1397727.628135 +1397740.785548 +1397740.785548 +1397756.655194 +1397765.876308 +1397775.412849 +1397779.772201 +1397779.772201 +1397779.772201 +1397787.625347 +1397788.981427 +1397788.981427 +1397788.981427 +1397808.573691 +1397808.573691 +1397808.573691 +1397808.573691 +1397826.240515 +1397826.240515 +1397826.240515 +1397826.240515 +1397832.039420 +1397848.985339 +1397848.985339 +1397848.985339 +1397848.985339 +1397851.274273 +1397851.274273 +1397863.380123 +1397863.380123 +1397880.546463 +1397880.546463 +1397880.546463 +1397880.546463 +1397880.546463 +1397892.092504 +1397902.673391 +1397913.680027 +1397913.680027 +1397931.438584 +1397931.438584 +1397931.438584 +1397931.438584 +1397931.438584 +1397937.017811 +1397937.017811 +1397962.367050 +1397962.367050 +1397962.367050 +1397962.367050 +1397962.367050 +1397967.069864 +1397970.983823 +1397975.115036 +1397975.115036 +1398001.138449 +1398002.104511 +1398002.104511 +1398004.759916 +1398004.759916 +1398020.609400 +1398024.617022 +1398036.067320 +1398036.067320 +1398036.850234 +1398036.867495 +1398036.867495 +1398050.556735 +1398050.556735 +1398050.556735 +1398050.556735 +1398050.556735 +1398051.763274 +1398051.763274 +1398077.958019 +1398077.958019 +1398096.664348 +1398096.664348 +1398111.084821 +1398111.084821 +1398111.084821 +1398114.590424 +1398138.328835 +1398141.096175 +1398141.096175 +1398141.096175 +1398141.096175 +1398141.096175 +1398141.096175 +1398151.142226 +1398172.916685 +1398176.711947 +1398176.711947 +1398183.501769 +1398183.501769 +1398183.501769 +1398188.530772 +1398188.530772 +1398188.530772 +1398189.682476 +1398200.296594 +1398211.788210 +1398235.323831 +1398235.323831 +1398235.323831 +1398237.801427 +1398239.640634 +1398263.497682 +1398263.497682 +1398263.497682 +1398263.497682 +1398263.497682 +1398263.497682 +1398263.497682 +1398285.905115 +1398285.905115 +1398299.119844 +1398299.119844 +1398299.119844 +1398299.119844 +1398299.119844 +1398299.119844 +1398326.543545 +1398326.543545 +1398326.543545 +1398327.444497 +1398327.444497 +1398329.313061 +1398329.313061 +1398348.574974 +1398348.923350 +1398363.401079 +1398372.808367 +1398372.808367 +1398372.808367 +1398372.808367 +1398372.808367 +1398372.808367 +1398391.250929 +1398391.250929 +1398391.250929 +1398391.250929 +1398391.250929 +1398399.777874 +1398399.777874 +1398399.777874 +1398433.713845 +1398433.713845 +1398433.713845 +1398447.630178 +1398455.062442 +1398455.062442 +1398455.062442 +1398455.062442 +1398461.840910 +1398461.840910 +1398461.840910 +1398466.256006 +1398481.589008 +1398481.589008 +1398481.589008 +1398496.284906 +1398496.284906 +1398496.284906 +1398496.284906 +1398496.284906 +1398496.284906 +1398496.284906 +1398507.460970 +1398535.572310 +1398535.572310 +1398535.572310 +1398548.894189 +1398566.075705 +1398566.075705 +1398566.075705 +1398566.075705 +1398566.075705 +1398587.870453 +1398587.870453 +1398587.870453 +1398587.870453 +1398594.786402 +1398594.786402 +1398594.786402 +1398594.786402 +1398596.589390 +1398625.605840 +1398625.605840 +1398625.605840 +1398625.605840 +1398631.277414 +1398636.496533 +1398643.732747 +1398643.732747 +1398643.732747 +1398673.949510 +1398673.949510 +1398673.949510 +1398673.949510 +1398673.949510 +1398673.949510 +1398690.044127 +1398690.044127 +1398690.044127 +1398690.044127 +1398718.504114 +1398718.504114 +1398718.504114 +1398718.504114 +1398718.504114 +1398718.504114 +1398718.504114 +1398720.148326 +1398725.983599 +1398739.061880 +1398758.423980 +1398758.423980 +1398758.423980 +1398758.423980 +1398776.609515 +1398776.609515 +1398776.609515 +1398776.609515 +1398776.609515 +1398789.404920 +1398797.849455 +1398797.849455 +1398797.849455 +1398802.354810 +1398802.354810 +1398811.940325 +1398811.940325 +1398811.940325 +1398824.868383 +1398836.722331 +1398836.722331 +1398836.722331 +1398836.722331 +1398836.722331 +1398852.572090 +1398852.572090 +1398854.315268 +1398864.188342 +1398864.188342 +1398885.590136 +1398885.590136 +1398885.590136 +1398885.590136 +1398885.590136 +1398886.640916 +1398899.107087 +1398901.234514 +1398912.513382 +1398918.934118 +1398949.412790 +1398949.412790 +1398949.412790 +1398949.412790 +1398949.412790 +1398949.412790 +1398959.938390 +1398959.938390 +1398959.938390 +1398959.938390 +1398964.291510 +1398965.631036 +1398999.840727 +1398999.840727 +1398999.840727 +1398999.840727 +1398999.840727 +1398999.840727 +1399011.122456 +1399016.583442 +1399016.583442 +1399016.583442 +1399019.408799 +1399019.408799 +1399019.408799 +1399025.745497 +1399045.418834 +1399050.970322 +1399050.970322 +1399057.973310 +1399070.811993 +1399070.811993 +1399087.968187 +1399087.968187 +1399087.968187 +1399087.968187 +1399096.377382 +1399107.147131 +1399107.147131 +1399107.147131 +1399108.010685 +1399108.010685 +1399113.555536 +1399117.771643 +1399121.646429 +1399129.606561 +1399158.975124 +1399158.975124 +1399158.975124 +1399158.975124 +1399158.975124 +1399170.617333 +1399170.617333 +1399170.617333 +1399170.617333 +1399170.617333 +1399190.587866 +1399190.587866 +1399190.587866 +1399190.587866 +1399204.310937 +1399204.310937 +1399204.310937 +1399224.584624 +1399224.584624 +1399224.584624 +1399226.230108 +1399226.230108 +1399226.230108 +1399236.398738 +1399260.001160 +1399260.001160 +1399280.492659 +1399280.492659 +1399280.492659 +1399280.492659 +1399299.437016 +1399299.437016 +1399299.437016 +1399299.437016 +1399299.437016 +1399299.437016 +1399299.437016 +1399299.437016 +1399299.437016 +1399299.437016 +1399313.673730 +1399313.673730 +1399313.673730 +1399323.858344 +1399337.442265 +1399337.442265 +1399349.131842 +1399349.131842 +1399356.459132 +1399356.459132 +1399356.459132 +1399356.459132 +1399378.495757 +1399378.495757 +1399378.495757 +1399392.934696 +1399392.934696 +1399392.934696 +1399403.715263 +1399403.715263 +1399410.125560 +1399410.125560 +1399410.125560 +1399410.125560 +1399442.861695 +1399442.861695 +1399442.861695 +1399442.861695 +1399442.861695 +1399442.861695 +1399452.290581 +1399462.459948 +1399462.459948 +1399462.459948 +1399470.360746 +1399489.224583 +1399489.224583 +1399489.224583 +1399500.540939 +1399507.477014 +1399507.477014 +1399507.477014 +1399510.394019 +1399510.394019 +1399525.352438 +1399525.352438 +1399531.836989 +1399531.836989 +1399546.214078 +1399546.214078 +1399546.214078 +1399546.214078 +1399551.222515 +1399567.328241 +1399567.328241 +1399567.328241 +1399575.916322 +1399575.916322 +1399583.786902 +1399583.786902 +1399602.557177 +1399602.557177 +1399606.282709 +1399606.282709 +1399645.061727 +1399645.061727 +1399645.061727 +1399645.061727 +1399645.061727 +1399645.061727 +1399656.934909 +1399656.934909 +1399656.934909 +1399656.934909 +1399656.934909 +1399656.934909 +1399656.934909 +1399656.934909 +1399692.550349 +1399692.550349 +1399713.859549 +1399713.859549 +1399716.049135 +1399716.049135 +1399716.049135 +1399716.049135 +1399717.398462 +1399717.398462 +1399734.296968 +1399734.296968 +1399734.296968 +1399734.296968 +1399755.144418 +1399755.144418 +1399755.144418 +1399755.144418 +1399760.462508 +1399766.990907 +1399766.990907 +1399766.990907 +1399772.566016 +1399776.164646 +1399778.848715 +1399778.848715 +1399791.296332 +1399791.296332 +1399811.348978 +1399813.398559 +1399828.412370 +1399828.412370 +1399828.412370 +1399828.412370 +1399828.412370 +1399828.412370 +1399835.191986 +1399835.191986 +1399835.191986 +1399835.191986 +1399835.191986 +1399844.768528 +1399844.768528 +1399854.830157 +1399871.584583 +1399879.641077 +1399892.835789 +1399892.835789 +1399899.535636 +1399921.645686 +1399925.993442 +1399925.993442 +1399925.993442 +1399925.993442 +1399925.993442 +1399932.717851 +1399937.321013 +1399937.321013 +1399937.321013 +1399937.321013 +1399938.891238 +1399958.959076 +1399958.959076 +1399958.959076 +1399959.891713 +1399959.891713 +1399969.338271 +1399969.338271 +1399983.918037 +1399983.918037 +1400001.771501 +1400001.771501 +1400001.771501 +1400004.027445 +1400004.027445 +1400024.406230 +1400029.839885 +1400052.070843 +1400052.070843 +1400052.070843 +1400059.103616 +1400059.103616 +1400059.103616 +1400059.103616 +1400070.712827 +1400070.712827 +1400072.093417 +1400072.093417 +1400072.093417 +1400072.093417 +1400072.093417 +1400083.812297 +1400083.812297 +1400083.812297 +1400089.473689 +1400092.459522 +1400112.874125 +1400112.874125 +1400120.261837 +1400120.261837 +1400120.261837 +1400125.373430 +1400125.373430 +1400125.373430 +1400149.387737 +1400149.387737 +1400150.621218 +1400161.535684 +1400161.535684 +1400161.535684 +1400164.268639 +1400164.268639 +1400191.521421 +1400191.521421 +1400197.434931 +1400197.434931 +1400210.532365 +1400210.532365 +1400223.123310 +1400223.123310 +1400230.627946 +1400230.627946 +1400230.627946 +1400247.650955 +1400247.650955 +1400247.650955 +1400247.650955 +1400247.650955 +1400255.186634 +1400255.186634 +1400279.733004 +1400279.733004 +1400279.733004 +1400279.733004 +1400279.733004 +1400283.834531 +1400283.834531 +1400283.834531 +1400317.455717 +1400317.455717 +1400317.455717 +1400317.455717 +1400317.455717 +1400317.637858 +1400317.637858 +1400319.829931 +1400327.478771 +1400327.478771 +1400350.880150 +1400350.880150 +1400356.550357 +1400356.550357 +1400356.550357 +1400357.370312 +1400357.691530 +1400385.299781 +1400385.299781 +1400385.299781 +1400405.937871 +1400406.838507 +1400406.838507 +1400406.838507 +1400406.838507 +1400406.838507 +1400413.203008 +1400413.203008 +1400413.203008 +1400439.457003 +1400444.357202 +1400444.357202 +1400444.357202 +1400452.793436 +1400452.793436 +1400459.005116 +1400466.433992 +1400466.433992 +1400480.757213 +1400480.757213 +1400480.757213 +1400480.757213 +1400499.017277 +1400499.017277 +1400499.017277 +1400499.017277 +1400519.141482 +1400519.141482 +1400522.734683 +1400522.734683 +1400527.157732 +1400527.157732 +1400527.157732 +1400535.390919 +1400544.433925 +1400544.433925 +1400550.752306 +1400551.364879 +1400560.595176 +1400560.595176 +1400560.595176 +1400583.667835 +1400583.667835 +1400590.968334 +1400590.968334 +1400590.968334 +1400610.044970 +1400610.044970 +1400612.600445 +1400612.950930 +1400615.139179 +1400615.139179 +1400618.715979 +1400618.715979 +1400644.037562 +1400644.037562 +1400644.037562 +1400649.833510 +1400653.228146 +1400653.228146 +1400653.228146 +1400655.856055 +1400668.525082 +1400668.525082 +1400675.376448 +1400675.376448 +1400675.376448 +1400675.376448 +1400701.636796 +1400701.636796 +1400701.636796 +1400701.636796 +1400717.442395 +1400721.377458 +1400725.406719 +1400725.406719 +1400728.761073 +1400739.342938 +1400742.341606 +1400742.341606 +1400747.843489 +1400747.843489 +1400772.838077 +1400773.229865 +1400785.405683 +1400785.405683 +1400785.405683 +1400785.405683 +1400793.607125 +1400793.607125 +1400793.607125 +1400793.607125 +1400795.353336 +1400823.846210 +1400823.846210 +1400830.020648 +1400830.020648 +1400830.020648 +1400839.906948 +1400839.906948 +1400840.640151 +1400840.640151 +1400857.932531 +1400857.932531 +1400857.932531 +1400857.932531 +1400864.505573 +1400864.505573 +1400864.505573 +1400864.505573 +1400870.618627 +1400872.474208 +1400872.474208 +1400872.474208 +1400893.256341 +1400893.870761 +1400894.336549 +1400894.336549 +1400923.805470 +1400925.665110 +1400925.665110 +1400948.061093 +1400948.061093 +1400948.061093 +1400948.061093 +1400948.061093 +1400958.013186 +1400960.701231 +1400966.923942 +1400966.923942 +1400981.891353 +1400981.891353 +1400984.703510 +1400984.703510 +1400985.267872 +1401009.200198 +1401009.200198 +1401009.200198 +1401009.200198 +1401009.200198 +1401011.694492 +1401014.567944 +1401014.567944 +1401020.227394 +1401030.074554 +1401030.074554 +1401041.517973 +1401045.717097 +1401045.717097 +1401046.835182 +1401049.485800 +1401052.060691 +1401052.060691 +1401080.590906 +1401080.590906 +1401081.896853 +1401091.326553 +1401091.326553 +1401108.059931 +1401108.059931 +1401108.216087 +1401108.216087 +1401118.192212 +1401119.914663 +1401131.225605 +1401131.225605 +1401131.225605 +1401131.225605 +1401131.225605 +1401131.225605 +1401146.051321 +1401146.410892 +1401151.128133 +1401169.552551 +1401169.552551 +1401169.552551 +1401176.727708 +1401176.727708 +1401202.033429 +1401202.033429 +1401202.033429 +1401202.033429 +1401213.017873 +1401214.925495 +1401224.673475 +1401226.194853 +1401226.194853 +1401240.376169 +1401240.376169 +1401240.376169 +1401240.376169 +1401240.376169 +1401240.376169 +1401243.840949 +1401243.840949 +1401263.726958 +1401263.726958 +1401271.002524 +1401271.002524 +1401282.488709 +1401285.988100 +1401310.437699 +1401310.437699 +1401310.437699 +1401310.437699 +1401310.437699 +1401310.437699 +1401310.437699 +1401312.221762 +1401312.221762 +1401319.022078 +1401338.299125 +1401338.299125 +1401346.012714 +1401346.012714 +1401353.195661 +1401354.605661 +1401372.442148 +1401372.442148 +1401372.442148 +1401372.442148 +1401372.442148 +1401378.240892 +1401378.240892 +1401395.513052 +1401406.079098 +1401406.079098 +1401406.079098 +1401414.477413 +1401419.785898 +1401419.785898 +1401419.785898 +1401420.395471 +1401420.395471 +1401420.395471 +1401434.538300 +1401434.538300 +1401455.238729 +1401456.264684 +1401456.264684 +1401459.962532 +1401459.962532 +1401470.691072 +1401470.691072 +1401476.555301 +1401485.447769 +1401485.447769 +1401500.123905 +1401500.123905 +1401500.123905 +1401500.123905 +1401500.123905 +1401500.123905 +1401503.183334 +1401532.412487 +1401533.805142 +1401533.805142 +1401533.805142 +1401545.574965 +1401545.574965 +1401545.574965 +1401545.574965 +1401552.170702 +1401555.814370 +1401562.580043 +1401562.580043 +1401562.580043 +1401565.168180 +1401583.341493 +1401583.341493 +1401602.474484 +1401602.474484 +1401602.474484 +1401602.474484 +1401602.474484 +1401609.149306 +1401609.149306 +1401614.350816 +1401628.533065 +1401640.213657 +1401654.542783 +1401662.704940 +1401662.704940 +1401662.704940 +1401662.704940 +1401664.191877 +1401664.191877 +1401664.191877 +1401664.191877 +1401679.922100 +1401679.922100 +1401679.922100 +1401683.037943 +1401709.748724 +1401709.748724 +1401709.748724 +1401709.748724 +1401732.026014 +1401732.026014 +1401732.026014 +1401734.886232 +1401734.886232 +1401734.886232 +1401734.886232 +1401754.114136 +1401754.114136 +1401761.643040 +1401768.072765 +1401768.072765 +1401778.046540 +1401778.046540 +1401778.046540 +1401778.046540 +1401778.046540 +1401778.046540 +1401778.046540 +1401778.046540 +1401807.406831 +1401807.406831 +1401814.965958 +1401814.965958 +1401814.965958 +1401814.965958 +1401814.965958 +1401814.965958 +1401825.120183 +1401835.612674 +1401852.732878 +1401852.732878 +1401860.514980 +1401872.129600 +1401873.652958 +1401873.652958 +1401880.924848 +1401880.924848 +1401895.033690 +1401895.033690 +1401895.033690 +1401895.033690 +1401895.033690 +1401895.033690 +1401911.340371 +1401911.340371 +1401911.340371 +1401911.340371 +1401911.340371 +1401912.803667 +1401912.803667 +1401922.888595 +1401922.888595 +1401936.173386 +1401944.039226 +1401949.816664 +1401990.263612 +1401990.263612 +1401990.263612 +1401990.263612 +1401990.263612 +1401990.263612 +1401995.483774 +1401995.483774 +1401995.483774 +1401995.483774 +1401999.924582 +1401999.924582 +1402003.579358 +1402009.107848 +1402011.203598 +1402023.219407 +1402033.810091 +1402033.810091 +1402033.810091 +1402040.339529 +1402040.339529 +1402040.339529 +1402050.621661 +1402050.621661 +1402075.328709 +1402075.328709 +1402075.328709 +1402077.497377 +1402091.765143 +1402091.765143 +1402095.451777 +1402095.451777 +1402110.443410 +1402110.443410 +1402110.443410 +1402110.443410 +1402116.116791 +1402117.375686 +1402117.375686 +1402135.025828 +1402135.025828 +1402145.963987 +1402145.963987 +1402145.963987 +1402145.963987 +1402145.963987 +1402180.781648 +1402180.781648 +1402180.781648 +1402180.781648 +1402180.781648 +1402180.781648 +1402187.941564 +1402187.941564 +1402191.926560 +1402191.926560 +1402227.561085 +1402227.561085 +1402227.561085 +1402227.561085 +1402229.890493 +1402229.890493 +1402229.890493 +1402229.890493 +1402236.336688 +1402258.337782 +1402258.337782 +1402258.337782 +1402258.337782 +1402260.360644 +1402269.346842 +1402269.346842 +1402269.346842 +1402269.346842 +1402276.157770 +1402276.157770 +1402278.768189 +1402291.781205 +1402294.819931 +1402294.819931 +1402324.911471 +1402324.911471 +1402324.911471 +1402324.911471 +1402328.409738 +1402328.409738 +1402328.409738 +1402354.884086 +1402354.884086 +1402354.884086 +1402354.884086 +1402354.884086 +1402363.823454 +1402372.445405 +1402372.445405 +1402391.865969 +1402397.298582 +1402397.298582 +1402397.298582 +1402397.298582 +1402397.298582 +1402397.298582 +1402405.907478 +1402405.907478 +1402423.609744 +1402428.419354 +1402428.419354 +1402428.419354 +1402438.236614 +1402438.236614 +1402440.150779 +1402440.150779 +1402446.205582 +1402446.205582 +1402473.731981 +1402473.731981 +1402473.731981 +1402473.731981 +1402473.731981 +1402473.731981 +1402473.731981 +1402473.731981 +1402509.098063 +1402509.098063 +1402509.098063 +1402509.098063 +1402520.351535 +1402520.351535 +1402520.351535 +1402528.152709 +1402532.436691 +1402534.277983 +1402534.277983 +1402547.663598 +1402547.663598 +1402547.663598 +1402547.663598 +1402547.663598 +1402549.940791 +1402549.940791 +1402549.940791 +1402559.901133 +1402572.166869 +1402578.623709 +1402578.623709 +1402590.991357 +1402611.154418 +1402611.154418 +1402611.154418 +1402611.154418 +1402611.154418 +1402611.154418 +1402648.348241 +1402648.348241 +1402648.348241 +1402648.348241 +1402663.880999 +1402663.880999 +1402663.880999 +1402666.083349 +1402668.735858 +1402668.735858 +1402677.853409 +1402677.853409 +1402677.853409 +1402677.853409 +1402692.343572 +1402698.895505 +1402698.895505 +1402698.895505 +1402698.895505 +1402698.895505 +1402715.466378 +1402715.466378 +1402715.466378 +1402715.466378 +1402720.705726 +1402720.705726 +1402722.746541 +1402726.785726 +1402732.942042 +1402760.281918 +1402760.281918 +1402760.281918 +1402760.281918 +1402760.871413 +1402783.306502 +1402783.306502 +1402783.306502 +1402783.306502 +1402783.306502 +1402788.347389 +1402805.185709 +1402805.185709 +1402816.956008 +1402816.956008 +1402816.956008 +1402816.956008 +1402816.956008 +1402816.956008 +1402816.956008 +1402819.095123 +1402844.183224 +1402844.183224 +1402844.183224 +1402844.183224 +1402865.536927 +1402865.536927 +1402865.536927 +1402865.536927 +1402865.536927 +1402865.536927 +1402872.098046 +1402872.098046 +1402872.098046 +1402872.098046 +1402894.515228 +1402894.515228 +1402910.082330 +1402926.800804 +1402927.926813 +1402927.926813 +1402927.926813 +1402927.926813 +1402929.951969 +1402947.532025 +1402953.792589 +1402953.792589 +1402953.792589 +1402953.792589 +1402953.792589 +1402953.792589 +1402953.792589 +1402972.246164 +1402972.246164 +1402980.122973 +1402980.122973 +1402980.122973 +1402991.023873 +1402999.510187 +1402999.510187 +1402999.510187 +1403013.319361 +1403013.319361 +1403014.981818 +1403014.981818 +1403049.055001 +1403049.055001 +1403049.055001 +1403049.055001 +1403049.055001 +1403049.055001 +1403050.112519 +1403050.112519 +1403050.112519 +1403050.112519 +1403060.079230 +1403060.079230 +1403062.882923 +1403062.882923 +1403088.874190 +1403088.874190 +1403099.431025 +1403099.431025 +1403099.431025 +1403109.640117 +1403118.026945 +1403118.026945 +1403118.026945 +1403138.923899 +1403138.923899 +1403142.235327 +1403142.235327 +1403142.235327 +1403150.809446 +1403150.809446 +1403150.809446 +1403150.809446 +1403178.106094 +1403178.106094 +1403199.876301 +1403199.876301 +1403199.876301 +1403199.876301 +1403199.876301 +1403199.876301 +1403199.876301 +1403199.876301 +1403207.668619 +1403207.668619 +1403217.089650 +1403217.089650 +1403220.672994 +1403220.672994 +1403228.496370 +1403237.721346 +1403237.721346 +1403238.352161 +1403238.352161 +1403238.352161 +1403238.352161 +1403238.352161 +1403269.789535 +1403269.789535 +1403274.797337 +1403274.797337 +1403297.148344 +1403297.148344 +1403297.148344 +1403297.148344 +1403310.378045 +1403311.517169 +1403323.245329 +1403323.245329 +1403323.245329 +1403323.245329 +1403323.245329 +1403325.121593 +1403347.085018 +1403347.085018 +1403347.085018 +1403347.085018 +1403347.085018 +1403349.549665 +1403357.819521 +1403362.427955 +1403362.427955 +1403362.427955 +1403367.799162 +1403373.614577 +1403373.614577 +1403387.550719 +1403404.574930 +1403405.804660 +1403405.804660 +1403405.804660 +1403405.804660 +1403420.159614 +1403420.159614 +1403420.159614 +1403420.159614 +1403454.968806 +1403454.968806 +1403454.968806 +1403454.968806 +1403454.968806 +1403454.968806 +1403454.968806 +1403454.968806 +1403479.552436 +1403479.552436 +1403479.552436 +1403497.657261 +1403497.657261 +1403497.657261 +1403497.657261 +1403497.657261 +1403497.657261 +1403499.515543 +1403499.515543 +1403499.515543 +1403521.395890 +1403521.395890 +1403521.395890 +1403527.932264 +1403530.860448 +1403541.307882 +1403541.307882 +1403541.307882 +1403554.174241 +1403554.174241 +1403559.153251 +1403559.153251 +1403562.659484 +1403562.659484 +1403563.013426 +1403572.745614 +1403588.421664 +1403588.421664 +1403588.421664 +1403588.421664 +1403588.421664 +1403588.421664 +1403590.351699 +1403590.351699 +1403594.704491 +1403612.840632 +1403612.840632 +1403613.369814 +1403618.577751 +1403626.724873 +1403626.724873 +1403632.239219 +1403644.518008 +1403652.843539 +1403652.843539 +1403665.384920 +1403691.830546 +1403691.830546 +1403691.830546 +1403691.830546 +1403691.830546 +1403691.830546 +1403691.830546 +1403703.523438 +1403703.523438 +1403703.523438 +1403703.523438 +1403720.152523 +1403724.126983 +1403724.126983 +1403724.126983 +1403727.802937 +1403757.323565 +1403757.323565 +1403757.323565 +1403763.686987 +1403763.686987 +1403763.686987 +1403763.686987 +1403763.686987 +1403766.589682 +1403766.589682 +1403782.214866 +1403782.214866 +1403782.214866 +1403782.214866 +1403797.605630 +1403799.571102 +1403799.571102 +1403799.571102 +1403819.157953 +1403826.656694 +1403826.656694 +1403826.656694 +1403828.620094 +1403828.620094 +1403831.529558 +1403848.479618 +1403848.479618 +1403848.479618 +1403848.479618 +1403869.215121 +1403869.215121 +1403869.215121 +1403869.215121 +1403869.215121 +1403872.724467 +1403904.483759 +1403904.483759 +1403904.483759 +1403904.483759 +1403904.483759 +1403904.483759 +1403904.483759 +1403904.483759 +1403913.154316 +1403913.154316 +1403924.628024 +1403924.628024 +1403924.628024 +1403924.966683 +1403942.673587 +1403942.673587 +1403957.368245 +1403957.368245 +1403957.368245 +1403957.368245 +1403957.368245 +1403957.368245 +1403966.406736 +1403981.509553 +1403981.509553 +1403986.861371 +1403986.861371 +1403986.861371 +1403987.600346 +1404000.644246 +1404000.644246 +1404000.644246 +1404000.644246 +1404005.429826 +1404033.954193 +1404033.954193 +1404033.954193 +1404037.036484 +1404037.394030 +1404037.394030 +1404037.394030 +1404037.394030 +1404050.613962 +1404050.613962 +1404065.961734 +1404065.961734 +1404079.467021 +1404079.467021 +1404079.467021 +1404079.467021 +1404079.467021 +1404093.161732 +1404099.098378 +1404099.098378 +1404099.098378 +1404109.714949 +1404117.680219 +1404118.201933 +1404118.201933 +1404123.557275 +1404123.557275 +1404123.866100 +1404148.006138 +1404148.006138 +1404148.006138 +1404148.006138 +1404148.621982 +1404157.709084 +1404157.709084 +1404157.709084 +1404157.709084 +1404157.709084 +1404187.609989 +1404187.609989 +1404187.609989 +1404187.609989 +1404187.609989 +1404191.421097 +1404192.096654 +1404203.206107 +1404206.098659 +1404206.098659 +1404217.636478 +1404217.636478 +1404226.952204 +1404226.952204 +1404226.952204 +1404233.429368 +1404260.358835 +1404260.358835 +1404260.358835 +1404260.358835 +1404260.358835 +1404260.358835 +1404260.358835 +1404271.497722 +1404271.497722 +1404278.637520 +1404278.637520 +1404278.637520 +1404295.957736 +1404299.426272 +1404304.571209 +1404304.571209 +1404312.339066 +1404312.339066 +1404312.339066 +1404326.602820 +1404326.602820 +1404340.618784 +1404364.887593 +1404364.887593 +1404364.887593 +1404364.887593 +1404364.887593 +1404364.887593 +1404369.155845 +1404369.155845 +1404369.155845 +1404377.398139 +1404383.690274 +1404383.690274 +1404383.690274 +1404383.690274 +1404410.149712 +1404410.149712 +1404410.149712 +1404410.149712 +1404414.406309 +1404430.459853 +1404430.459853 +1404445.568372 +1404445.568372 +1404445.568372 +1404445.568372 +1404445.568372 +1404445.568372 +1404445.568372 +1404449.005836 +1404449.005836 +1404449.005836 +1404452.111277 +1404452.111277 +1404487.482168 +1404487.482168 +1404487.482168 +1404487.482168 +1404487.869648 +1404500.860969 +1404500.860969 +1404500.860969 +1404500.860969 +1404504.522692 +1404515.667405 +1404518.488654 +1404518.488654 +1404522.386468 +1404526.403245 +1404526.403245 +1404526.403245 +1404538.830033 +1404550.173460 +1404550.173460 +1404550.173460 +1404551.053227 +1404559.421502 +1404561.120447 +1404570.204351 +1404575.749308 +1404575.749308 +1404575.749308 +1404575.749308 +1404586.748822 +1404599.494766 +1404605.741703 +1404605.741703 +1404613.512085 +1404613.512085 +1404615.126946 +1404615.126946 +1404615.126946 +1404628.839514 +1404642.982426 +1404650.377861 +1404687.592446 +1404687.592446 +1404687.592446 +1404687.592446 +1404687.592446 +1404687.592446 +1404687.592446 +1404687.592446 +1404692.604953 +1404692.604953 +1404702.672383 +1404702.672383 +1404702.672383 +1404702.672383 +1404702.672383 +1404702.672383 +1404702.672383 +1404702.672383 +1404732.989453 +1404732.989453 +1404732.989453 +1404732.989453 +1404732.989453 +1404732.989453 +1404741.206106 +1404760.438505 +1404760.438505 +1404760.438505 +1404762.064210 +1404762.064210 +1404769.422694 +1404769.422694 +1404778.303702 +1404778.303702 +1404792.867795 +1404792.867795 +1404796.749120 +1404796.749120 +1404796.749120 +1404796.749120 +1404822.903054 +1404829.283187 +1404829.283187 +1404829.283187 +1404829.283187 +1404829.283187 +1404829.283187 +1404829.283187 +1404829.283187 +1404829.283187 +1404839.862737 +1404867.179579 +1404867.179579 +1404867.179579 +1404867.179579 +1404898.747972 +1404898.747972 +1404902.149532 +1404902.149532 +1404902.149532 +1404902.149532 +1404902.149532 +1404902.149532 +1404902.149532 +1404907.621991 +1404907.621991 +1404915.400510 +1404915.400510 +1404928.126469 +1404931.457098 +1404931.457098 +1404931.457098 +1404941.417802 +1404953.152934 +1404957.043660 +1404957.043660 +1404957.043660 +1404957.043660 +1404973.353578 +1404977.682941 +1404977.682941 +1404987.452314 +1404987.452314 +1404989.394044 +1404989.394044 +1404997.144596 +1404997.144596 +1405018.772277 +1405018.772277 +1405018.772277 +1405018.772277 +1405018.772277 +1405018.772277 +1405018.772277 +1405018.772277 +1405024.137631 +1405037.707752 +1405061.532062 +1405061.532062 +1405061.532062 +1405061.532062 +1405061.532062 +1405061.532062 +1405063.411907 +1405063.787632 +1405063.787632 +1405089.291038 +1405089.291038 +1405102.045277 +1405102.045277 +1405102.579268 +1405107.899347 +1405124.515343 +1405124.515343 +1405124.515343 +1405124.515343 +1405137.673386 +1405137.673386 +1405137.673386 +1405137.673386 +1405137.673386 +1405144.882457 +1405153.758505 +1405153.758505 +1405153.758505 +1405177.516261 +1405177.516261 +1405177.516261 +1405177.516261 +1405177.516261 +1405180.062963 +1405180.062963 +1405184.077374 +1405184.077374 +1405184.730841 +1405200.267148 +1405200.267148 +1405223.758722 +1405223.758722 +1405223.758722 +1405223.758722 +1405223.758722 +1405223.758722 +1405223.758722 +1405243.005252 +1405243.005252 +1405252.630318 +1405252.630318 +1405252.630318 +1405255.498494 +1405273.103854 +1405291.040916 +1405291.040916 +1405291.040916 +1405291.040916 +1405291.040916 +1405291.040916 +1405291.040916 +1405291.362034 +1405291.362034 +1405303.186340 +1405303.186340 +1405303.186340 +1405303.186340 +1405316.163815 +1405329.625595 +1405338.449611 +1405338.449611 +1405338.449611 +1405338.449611 +1405338.449611 +1405338.449611 +1405361.680280 +1405361.680280 +1405361.680280 +1405361.680280 +1405382.633157 +1405382.633157 +1405382.633157 +1405382.633157 +1405382.633157 +1405392.205825 +1405392.205825 +1405392.205825 +1405416.064905 +1405416.064905 +1405416.064905 +1405416.064905 +1405436.503445 +1405436.503445 +1405436.503445 +1405436.503445 +1405440.959514 +1405440.959514 +1405458.398556 +1405458.398556 +1405458.398556 +1405458.398556 +1405458.398556 +1405458.398556 +1405458.398556 +1405458.398556 +1405469.349272 +1405469.349272 +1405497.243784 +1405497.243784 +1405497.243784 +1405497.243784 +1405497.243784 +1405497.243784 +1405518.516516 +1405526.123676 +1405527.560858 +1405527.560858 +1405527.560858 +1405527.560858 +1405527.560858 +1405527.560858 +1405527.560858 +1405532.385582 +1405539.391152 +1405539.391152 +1405545.139648 +1405545.139648 +1405545.139648 +1405545.139648 +1405557.532521 +1405561.293929 +1405576.905332 +1405576.905332 +1405576.905332 +1405595.635360 +1405595.635360 +1405595.635360 +1405598.394129 +1405598.394129 +1405600.601763 +1405602.762338 +1405612.624652 +1405627.831627 +1405627.831627 +1405629.971807 +1405629.971807 +1405629.971807 +1405629.971807 +1405637.662407 +1405637.662407 +1405658.349116 +1405658.349116 +1405670.106737 +1405670.106737 +1405677.954018 +1405692.793922 +1405692.793922 +1405692.793922 +1405713.105290 +1405713.105290 +1405713.105290 +1405713.105290 +1405713.105290 +1405718.896362 +1405718.896362 +1405718.896362 +1405725.805518 +1405746.300740 +1405746.300740 +1405746.300740 +1405746.300740 +1405746.300740 +1405746.300740 +1405746.300740 +1405748.429057 +1405756.998909 +1405756.998909 +1405762.140093 +1405762.140093 +1405765.947497 +1405767.360227 +1405791.767575 +1405791.767575 +1405808.011906 +1405808.011906 +1405810.174472 +1405810.174472 +1405810.174472 +1405810.174472 +1405811.219383 +1405811.219383 +1405825.530690 +1405825.530690 +1405825.530690 +1405826.480229 +1405831.794175 +1405831.794175 +1405833.504622 +1405833.504622 +1405849.046256 +1405849.046256 +1405851.609523 +1405851.609523 +1405888.005063 +1405888.005063 +1405888.005063 +1405888.005063 +1405906.760601 +1405906.760601 +1405906.760601 +1405906.760601 +1405906.760601 +1405924.614318 +1405924.614318 +1405924.900195 +1405924.900195 +1405924.900195 +1405924.900195 +1405926.895678 +1405926.895678 +1405951.368012 +1405951.368012 +1405951.901189 +1405951.901189 +1405964.782638 +1405968.965753 +1405968.965753 +1405968.965753 +1405968.965753 +1405969.988724 +1405982.235203 +1405982.235203 +1405982.235203 +1405999.342932 +1405999.342932 +1405999.342932 +1405999.342932 +1406001.792120 +1406013.650667 +1406013.650667 +1406013.650667 +1406022.261939 +1406030.768546 +1406040.885681 +1406040.885681 +1406040.885681 +1406043.279408 +1406047.801797 +1406047.801797 +1406047.801797 +1406070.205996 +1406078.602965 +1406078.602965 +1406078.602965 +1406078.602965 +1406078.602965 +1406085.435333 +1406092.871711 +1406092.871711 +1406096.550954 +1406096.550954 +1406110.969401 +1406110.969401 +1406110.969401 +1406126.160234 +1406129.833275 +1406129.833275 +1406134.096424 +1406134.096424 +1406134.096424 +1406140.952946 +1406143.657686 +1406153.201501 +1406153.201501 +1406153.201501 +1406153.201501 +1406153.201501 +1406159.833729 +1406163.751237 +1406175.809096 +1406175.809096 +1406182.282593 +1406189.306156 +1406189.306156 +1406189.306156 +1406204.483312 +1406204.483312 +1406219.929731 +1406219.929731 +1406219.929731 +1406219.929731 +1406219.929731 +1406219.929731 +1406232.320155 +1406232.320155 +1406253.731916 +1406253.731916 +1406253.731916 +1406253.731916 +1406253.731916 +1406253.731916 +1406253.731916 +1406255.771583 +1406255.771583 +1406258.494713 +1406272.471297 +1406283.242969 +1406283.242969 +1406284.293743 +1406284.293743 +1406285.185054 +1406299.370688 +1406301.005832 +1406301.053086 +1406305.184227 +1406305.184227 +1406305.184227 +1406318.490555 +1406318.490555 +1406321.197206 +1406328.085711 +1406348.046526 +1406348.046526 +1406348.046526 +1406348.046526 +1406348.046526 +1406375.132292 +1406375.132292 +1406375.132292 +1406375.132292 +1406376.970360 +1406381.335460 +1406381.335460 +1406401.889691 +1406401.889691 +1406401.889691 +1406401.889691 +1406418.396769 +1406418.396769 +1406418.396769 +1406418.396769 +1406418.396769 +1406418.396769 +1406418.396769 +1406418.396769 +1406447.265547 +1406447.265547 +1406447.265547 +1406461.845786 +1406461.845786 +1406461.845786 +1406468.910297 +1406468.910297 +1406470.239199 +1406470.239199 +1406483.645795 +1406483.645795 +1406483.645795 +1406493.218300 +1406504.965661 +1406504.965661 +1406504.965661 +1406504.965661 +1406504.965661 +1406504.965661 +1406514.815516 +1406525.832826 +1406525.832826 +1406525.832826 +1406525.832826 +1406530.354967 +1406546.236571 +1406546.236571 +1406546.236571 +1406546.236571 +1406568.052085 +1406570.096015 +1406580.462834 +1406580.462834 +1406580.462834 +1406583.848876 +1406583.848876 +1406590.078847 +1406590.078847 +1406590.078847 +1406606.436159 +1406606.436159 +1406608.849454 +1406608.849454 +1406629.191468 +1406629.191468 +1406636.377237 +1406636.377237 +1406636.377237 +1406636.377237 +1406636.377237 +1406645.453039 +1406645.453039 +1406645.453039 +1406645.453039 +1406670.465518 +1406689.162313 +1406689.162313 +1406689.162313 +1406689.162313 +1406689.162313 +1406689.162313 +1406689.162313 +1406694.224587 +1406694.224587 +1406694.224587 +1406709.076401 +1406709.076401 +1406709.076401 +1406709.076401 +1406725.978387 +1406725.978387 +1406739.811197 +1406739.811197 +1406739.811197 +1406739.811197 +1406762.189735 +1406762.189735 +1406762.189735 +1406773.989271 +1406786.852897 +1406786.852897 +1406786.852897 +1406786.852897 +1406788.858631 +1406788.858631 +1406788.858631 +1406788.858631 +1406795.511543 +1406795.511543 +1406795.511543 +1406804.374125 +1406804.374125 +1406804.374125 +1406804.374125 +1406804.374125 +1406809.325235 +1406809.325235 +1406821.538235 +1406843.857448 +1406843.857448 +1406851.956974 +1406851.956974 +1406886.505923 +1406886.505923 +1406886.505923 +1406886.505923 +1406886.505923 +1406886.505923 +1406886.505923 +1406886.505923 +1406886.505923 +1406895.538245 +1406895.538245 +1406895.538245 +1406895.538245 +1406895.538245 +1406895.538245 +1406897.384550 +1406898.400605 +1406919.275527 +1406919.275527 +1406923.624954 +1406923.624954 +1406923.624954 +1406947.060875 +1406947.060875 +1406951.435139 +1406951.435139 +1406951.435139 +1406951.435139 +1406951.435139 +1406965.117748 +1406969.154194 +1406969.154194 +1406983.207661 +1406983.774216 +1406983.774216 +1406983.774216 +1406983.774216 +1406983.774216 +1406983.774216 +1406990.605658 +1406990.605658 +1406998.981622 +1406998.981622 +1407010.395417 +1407010.395417 +1407032.500990 +1407032.500990 +1407041.550913 +1407041.550913 +1407041.550913 +1407041.550913 +1407041.550913 +1407041.550913 +1407055.537107 +1407076.903412 +1407076.903412 +1407076.903412 +1407076.903412 +1407076.903412 +1407076.903412 +1407076.903412 +1407092.369522 +1407092.369522 +1407092.369522 +1407092.369522 +1407099.660525 +1407099.660525 +1407099.660525 +1407101.547066 +1407102.013957 +1407114.255855 +1407140.310640 +1407140.310640 +1407141.766767 +1407141.766767 +1407141.766767 +1407152.465270 +1407152.465270 +1407152.465270 +1407152.465270 +1407152.465270 +1407152.465270 +1407160.095244 +1407161.963814 +1407168.223647 +1407168.223647 +1407171.948634 +1407171.948634 +1407181.101661 +1407203.129463 +1407203.129463 +1407203.129463 +1407203.129463 +1407207.228642 +1407210.142538 +1407210.142538 +1407210.142538 +1407220.540585 +1407249.220558 +1407249.220558 +1407249.220558 +1407249.220558 +1407249.220558 +1407249.220558 +1407249.220558 +1407249.220558 +1407250.379823 +1407260.609681 +1407260.609681 +1407277.244168 +1407277.244168 +1407277.244168 +1407277.244168 +1407294.195245 +1407309.112374 +1407309.112374 +1407309.112374 +1407309.112374 +1407309.112374 +1407309.112374 +1407309.112374 +1407309.112374 +1407309.112374 +1407331.273779 +1407331.273779 +1407338.930313 +1407340.074116 +1407340.074116 +1407340.074116 +1407340.074116 +1407343.844973 +1407343.844973 +1407343.844973 +1407344.457944 +1407365.419489 +1407365.419489 +1407373.191405 +1407373.191405 +1407391.434697 +1407409.435487 +1407409.435487 +1407409.435487 +1407409.435487 +1407409.435487 +1407409.435487 +1407409.435487 +1407409.435487 +1407411.085082 +1407411.085082 +1407426.347130 +1407426.347130 +1407451.915639 +1407451.915639 +1407451.915639 +1407451.915639 +1407451.915639 +1407451.915639 +1407451.915639 +1407451.915639 +1407464.496650 +1407469.607111 +1407469.607111 +1407487.253015 +1407487.253015 +1407487.253015 +1407493.502280 +1407493.502280 +1407493.502280 +1407493.502280 +1407500.705275 +1407500.705275 +1407500.705275 +1407502.033972 +1407502.033972 +1407502.033972 +1407512.585186 +1407512.585186 +1407518.614748 +1407518.614748 +1407531.747147 +1407531.747147 +1407537.263910 +1407540.887631 +1407553.265770 +1407577.563840 +1407577.563840 +1407577.563840 +1407577.855581 +1407577.855581 +1407577.855581 +1407598.904276 +1407602.370515 +1407602.370515 +1407602.370515 +1407604.688204 +1407604.688204 +1407604.688204 +1407614.295832 +1407616.119220 +1407621.374030 +1407621.717991 +1407638.431648 +1407638.431648 +1407638.431648 +1407638.431648 +1407647.001427 +1407647.001427 +1407647.001427 +1407647.001427 +1407662.622891 +1407662.622891 +1407662.622891 +1407662.622891 +1407664.272130 +1407672.235825 +1407684.437548 +1407684.437548 +1407694.913560 +1407694.913560 +1407694.913560 +1407695.398230 +1407695.398230 +1407695.398230 +1407702.127342 +1407702.127342 +1407702.127342 +1407707.837146 +1407716.614195 +1407737.132308 +1407737.132308 +1407737.132308 +1407743.414304 +1407743.414304 +1407755.255372 +1407755.920381 +1407758.798734 +1407758.798734 +1407759.994656 +1407759.994656 +1407771.810726 +1407771.810726 +1407771.810726 +1407771.810726 +1407771.810726 +1407771.810726 +1407802.483463 +1407802.483463 +1407802.483463 +1407807.844295 +1407807.844295 +1407807.844295 +1407807.844295 +1407807.844295 +1407821.477351 +1407839.985180 +1407839.985180 +1407839.985180 +1407840.657493 +1407840.657493 +1407840.657493 +1407840.657493 +1407866.833024 +1407866.833024 +1407866.833024 +1407866.833024 +1407866.833024 +1407869.229111 +1407872.502456 +1407872.502456 +1407872.502456 +1407872.502456 +1407879.634449 +1407879.634449 +1407897.951331 +1407897.951331 +1407897.951331 +1407897.951331 +1407897.951331 +1407914.461960 +1407914.461960 +1407914.461960 +1407940.320692 +1407945.261298 +1407945.261298 +1407945.261298 +1407945.261298 +1407945.261298 +1407945.261298 +1407945.261298 +1407962.570908 +1407962.570908 +1407972.040839 +1407972.040839 +1407972.040839 +1407972.040839 +1407995.545733 +1407995.545733 +1407999.265177 +1407999.265177 +1408003.669389 +1408003.669389 +1408003.669389 +1408003.669389 +1408013.196277 +1408013.196277 +1408030.702352 +1408030.702352 +1408030.702352 +1408046.240863 +1408046.240863 +1408046.325930 +1408046.325930 +1408046.325930 +1408074.341947 +1408074.341947 +1408074.341947 +1408074.341947 +1408074.341947 +1408074.341947 +1408074.341947 +1408074.341947 +1408080.288250 +1408080.288250 +1408080.288250 +1408080.288250 +1408083.325609 +1408085.083232 +1408087.729139 +1408092.643691 +1408101.691703 +1408117.448275 +1408117.448275 +1408120.908617 +1408128.546210 +1408134.749303 +1408134.749303 +1408150.244276 +1408150.244276 +1408150.244276 +1408150.244276 +1408150.244276 +1408150.244276 +1408181.859976 +1408181.859976 +1408181.859976 +1408181.859976 +1408181.859976 +1408181.859976 +1408181.859976 +1408181.859976 +1408181.859976 +1408182.689051 +1408208.521398 +1408208.521398 +1408213.716073 +1408213.716073 +1408213.716073 +1408213.716073 +1408213.716073 +1408218.699271 +1408234.377264 +1408240.853354 +1408240.853354 +1408240.853354 +1408250.139390 +1408255.170976 +1408255.170976 +1408255.170976 +1408255.384719 +1408255.384719 +1408255.384719 +1408275.994544 +1408290.761304 +1408290.761304 +1408290.761304 +1408290.761304 +1408290.761304 +1408290.761304 +1408290.761304 +1408294.105563 +1408294.105563 +1408294.105563 +1408300.862622 +1408300.862622 +1408326.204128 +1408333.855392 +1408333.855392 +1408333.855392 +1408343.074132 +1408343.074132 +1408344.048387 +1408344.048387 +1408344.048387 +1408359.069928 +1408359.069928 +1408367.483717 +1408367.483717 +1408377.232073 +1408377.232073 +1408377.232073 +1408377.232073 +1408388.260401 +1408388.260401 +1408391.945967 +1408391.945967 +1408391.945967 +1408391.945967 +1408416.979796 +1408416.979796 +1408416.979796 +1408416.979796 +1408416.979796 +1408416.979796 +1408416.979796 +1408446.434502 +1408446.434502 +1408446.434502 +1408446.434502 +1408461.221041 +1408461.221041 +1408461.221041 +1408465.115334 +1408477.059400 +1408477.059400 +1408477.059400 +1408477.059400 +1408477.059400 +1408477.478505 +1408477.478505 +1408477.478505 +1408477.478505 +1408496.373524 +1408497.093666 +1408509.788286 +1408516.440039 +1408516.440039 +1408518.909666 +1408524.385627 +1408529.889376 +1408540.345730 +1408540.345730 +1408540.345730 +1408540.345730 +1408555.268134 +1408559.564823 +1408559.564823 +1408559.564823 +1408559.564823 +1408559.564823 +1408571.145875 +1408571.145875 +1408571.145875 +1408571.145875 +1408579.994448 +1408585.729576 +1408585.729576 +1408588.288902 +1408588.288902 +1408588.288902 +1408588.288902 +1408604.899043 +1408612.753574 +1408627.093572 +1408627.093572 +1408628.303814 +1408628.303814 +1408631.623724 +1408634.370276 +1408634.370276 +1408634.370276 +1408634.370276 +1408638.359575 +1408660.452923 +1408661.460075 +1408661.460075 +1408666.107249 +1408673.670857 +1408677.723922 +1408677.723922 +1408679.032100 +1408685.148112 +1408700.635745 +1408700.635745 +1408700.635745 +1408700.635745 +1408700.635745 +1408700.635745 +1408700.635745 +1408731.044083 +1408731.044083 +1408731.044083 +1408731.044083 +1408731.044083 +1408731.044083 +1408731.044083 +1408743.480479 +1408746.389375 +1408746.389375 +1408749.505467 +1408749.505467 +1408754.673714 +1408754.673714 +1408761.991055 +1408761.991055 +1408772.661286 +1408802.134893 +1408802.134893 +1408802.134893 +1408802.134893 +1408802.134893 +1408802.134893 +1408802.134893 +1408809.705083 +1408809.705083 +1408826.496081 +1408826.496081 +1408826.496081 +1408826.496081 +1408833.204205 +1408833.204205 +1408839.278551 +1408839.278551 +1408839.278551 +1408839.278551 +1408843.267406 +1408848.718546 +1408848.718546 +1408848.718546 +1408874.168801 +1408874.168801 +1408886.844335 +1408886.844335 +1408890.915065 +1408890.915065 +1408890.915065 +1408890.915065 +1408904.925998 +1408904.925998 +1408904.925998 +1408917.155645 +1408917.155645 +1408923.563665 +1408923.994348 +1408923.994348 +1408923.994348 +1408923.994348 +1408923.994348 +1408923.994348 +1408923.994348 +1408942.399673 +1408942.399673 +1408983.085706 +1408983.085706 +1408983.085706 +1408983.085706 +1408983.085706 +1408983.085706 +1408984.121963 +1408984.121963 +1408987.027704 +1408987.027704 +1409003.614469 +1409003.614469 +1409003.614469 +1409003.614469 +1409003.614469 +1409003.614469 +1409017.972303 +1409018.071364 +1409018.071364 +1409018.071364 +1409019.067681 +1409019.067681 +1409033.873821 +1409033.873821 +1409033.873821 +1409033.873821 +1409051.455871 +1409051.455871 +1409068.343533 +1409068.343533 +1409082.759261 +1409082.759261 +1409082.759261 +1409082.759261 +1409082.759261 +1409082.759261 +1409107.623657 +1409110.658468 +1409122.283530 +1409122.283530 +1409122.283530 +1409122.283530 +1409122.283530 +1409122.283530 +1409122.283530 +1409122.283530 +1409122.283530 +1409123.246461 +1409134.658335 +1409134.658335 +1409144.676172 +1409144.676172 +1409144.676172 +1409144.676172 +1409165.517329 +1409165.517329 +1409165.517329 +1409165.517329 +1409165.517329 +1409165.517329 +1409182.908263 +1409197.324368 +1409197.324368 +1409197.324368 +1409197.324368 +1409197.324368 +1409197.324368 +1409198.545769 +1409200.917509 +1409200.917509 +1409200.917509 +1409242.517002 +1409242.517002 +1409242.517002 +1409242.517002 +1409242.517002 +1409242.517002 +1409250.493133 +1409250.493133 +1409250.493133 +1409252.369475 +1409252.369475 +1409258.588003 +1409258.588003 +1409258.588003 +1409264.248316 +1409278.502393 +1409278.502393 +1409278.502393 +1409278.502393 +1409285.681349 +1409285.681349 +1409285.681349 +1409285.681349 +1409293.876818 +1409328.029646 +1409328.029646 +1409328.029646 +1409328.029646 +1409328.029646 +1409328.029646 +1409328.029646 +1409328.029646 +1409328.857606 +1409328.857606 +1409352.291300 +1409352.814285 +1409352.814285 +1409352.814285 +1409352.814285 +1409381.545443 +1409381.545443 +1409381.545443 +1409381.545443 +1409381.545443 +1409381.545443 +1409381.545443 +1409381.545443 +1409381.545443 +1409397.095200 +1409415.654081 +1409415.654081 +1409415.654081 +1409415.654081 +1409423.891151 +1409423.891151 +1409423.891151 +1409423.891151 +1409423.891151 +1409436.997033 +1409436.997033 +1409436.997033 +1409436.997033 +1409442.554546 +1409442.554546 +1409462.692681 +1409462.692681 +1409470.353855 +1409490.545946 +1409495.279551 +1409495.279551 +1409495.279551 +1409495.279551 +1409495.279551 +1409495.279551 +1409495.279551 +1409497.356302 +1409502.480247 +1409519.721794 +1409519.721794 +1409519.721794 +1409519.721794 +1409519.721794 +1409523.617977 +1409525.843336 +1409525.843336 +1409525.843336 +1409530.788836 +1409546.641483 +1409559.587165 +1409567.242964 +1409567.242964 +1409567.242964 +1409582.691566 +1409582.691566 +1409582.691566 +1409582.691566 +1409582.691566 +1409588.022947 +1409595.177971 +1409595.177971 +1409595.658500 +1409606.579520 +1409606.579520 +1409606.579520 +1409606.579520 +1409609.900889 +1409609.900889 +1409636.886237 +1409636.886237 +1409636.912999 +1409636.912999 +1409638.066819 +1409638.066819 +1409639.953239 +1409639.953239 +1409639.953239 +1409639.953239 +1409639.953239 +1409641.963339 +1409668.328717 +1409676.615767 +1409676.615767 +1409678.754641 +1409688.888665 +1409688.888665 +1409688.888665 +1409688.888665 +1409690.466410 +1409690.466410 +1409690.466410 +1409692.144125 +1409692.144125 +1409694.216020 +1409701.625177 +1409707.696785 +1409707.696785 +1409727.010375 +1409727.010375 +1409727.010375 +1409750.128822 +1409750.128822 +1409750.128822 +1409750.128822 +1409750.128822 +1409777.559360 +1409777.559360 +1409783.083645 +1409783.083645 +1409789.256918 +1409789.256918 +1409789.256918 +1409789.256918 +1409789.256918 +1409789.256918 +1409789.987704 +1409789.987704 +1409797.202692 +1409797.202692 +1409797.202692 +1409797.202692 +1409825.472628 +1409825.472628 +1409825.472628 +1409825.472628 +1409825.472628 +1409826.084948 +1409826.084948 +1409829.662205 +1409847.187070 +1409851.630514 +1409851.630514 +1409851.630514 +1409853.259689 +1409853.259689 +1409853.259689 +1409853.259689 +1409853.259689 +1409885.248159 +1409885.248159 +1409885.248159 +1409885.248159 +1409896.156294 +1409896.156294 +1409896.156294 +1409901.049262 +1409901.049262 +1409905.241477 +1409908.604407 +1409913.202298 +1409913.202298 +1409916.658998 +1409943.880210 +1409943.880210 +1409943.880210 +1409943.880210 +1409943.880210 +1409943.880210 +1409943.880210 +1409943.880210 +1409943.880210 +1409952.930616 +1409952.930616 +1409952.930616 +1409966.056510 +1409980.963012 +1409981.170599 +1409985.171190 +1410002.748312 +1410014.780482 +1410014.780482 +1410014.780482 +1410014.780482 +1410014.780482 +1410014.780482 +1410014.780482 +1410014.780482 +1410014.780482 +1410014.780482 +1410027.570578 +1410034.606074 +1410034.606074 +1410034.606074 +1410034.606074 +1410034.606074 +1410034.701512 +1410034.701512 +1410034.701512 +1410047.729985 +1410064.033878 +1410064.033878 +1410064.033878 +1410064.033878 +1410072.461134 +1410077.474846 +1410077.474846 +1410091.739248 +1410106.215820 +1410106.215820 +1410106.215820 +1410106.215820 +1410106.215820 +1410106.215820 +1410106.215820 +1410106.215820 +1410115.789297 +1410115.789297 +1410120.334377 +1410125.889139 +1410125.889139 +1410125.889139 +1410130.689854 +1410130.689854 +1410149.455159 +1410149.455159 +1410152.814633 +1410152.814633 +1410156.318784 +1410156.318784 +1410177.907198 +1410177.907198 +1410177.907198 +1410177.907198 +1410177.907198 +1410177.907198 +1410203.205344 +1410203.205344 +1410203.205344 +1410203.205344 +1410206.234686 +1410206.234686 +1410206.234686 +1410206.234686 +1410206.234686 +1410209.757146 +1410233.553313 +1410233.553313 +1410233.553313 +1410233.553313 +1410247.277649 +1410247.277649 +1410255.884131 +1410255.884131 +1410255.884131 +1410255.884131 +1410255.884131 +1410258.623470 +1410270.721885 +1410270.721885 +1410288.492699 +1410291.752673 +1410291.752673 +1410291.752673 +1410291.752673 +1410299.458741 +1410299.458741 +1410299.458741 +1410299.458741 +1410299.458741 +1410319.518163 +1410319.518163 +1410323.906188 +1410323.906188 +1410326.901223 +1410326.901223 +1410326.901223 +1410326.901223 +1410332.119877 +1410332.119877 +1410336.657611 +1410352.675358 +1410352.675358 +1410352.675358 +1410355.791674 +1410355.791674 +1410377.444381 +1410377.444381 +1410377.444381 +1410377.444381 +1410377.444381 +1410377.444381 +1410377.444381 +1410377.444381 +1410402.042065 +1410402.042065 +1410402.042065 +1410402.042065 +1410415.899171 +1410415.899171 +1410415.899171 +1410415.899171 +1410415.899171 +1410437.534939 +1410437.578989 +1410437.578989 +1410437.578989 +1410442.013079 +1410442.013079 +1410442.013079 +1410442.013079 +1410451.601403 +1410470.775297 +1410470.775297 +1410470.775297 +1410473.160632 +1410473.160632 +1410478.716468 +1410478.716468 +1410479.022655 +1410479.022655 +1410495.420881 +1410496.548210 +1410502.352916 +1410502.352916 +1410502.352916 +1410502.352916 +1410502.352916 +1410504.588766 +1410528.787532 +1410528.787532 +1410528.787532 +1410528.787532 +1410528.787532 +1410538.395523 +1410538.395523 +1410547.795841 +1410551.448282 +1410551.448282 +1410557.333828 +1410563.176575 +1410563.176575 +1410563.176575 +1410563.176575 +1410563.176575 +1410563.858049 +1410568.426926 +1410584.630780 +1410584.630780 +1410595.817635 +1410595.817635 +1410595.817635 +1410595.817635 +1410603.756523 +1410603.756523 +1410603.756523 +1410611.948613 +1410611.948613 +1410611.948613 +1410622.325309 +1410623.134432 +1410623.134432 +1410629.596280 +1410629.596280 +1410629.596280 +1410647.913056 +1410647.913056 +1410647.913056 +1410647.913056 +1410647.913056 +1410685.648617 +1410685.648617 +1410685.648617 +1410685.648617 +1410685.648617 +1410686.919449 +1410686.919449 +1410686.919449 +1410686.919449 +1410695.976260 +1410695.976260 +1410695.976260 +1410708.469633 +1410712.696871 +1410712.696871 +1410715.827581 +1410715.827581 +1410715.827581 +1410730.326476 +1410730.326476 +1410735.473673 +1410735.473673 +1410735.473673 +1410746.646418 +1410746.646418 +1410753.629788 +1410753.629788 +1410779.704159 +1410779.704159 +1410779.704159 +1410779.704159 +1410779.704159 +1410779.704159 +1410779.704159 +1410779.704159 +1410779.704159 +1410779.704159 +1410812.374902 +1410812.374902 +1410824.485312 +1410824.485312 +1410824.485312 +1410829.963758 +1410829.963758 +1410829.963758 +1410833.473212 +1410833.473212 +1410871.360317 +1410871.360317 +1410871.360317 +1410871.360317 +1410871.360317 +1410871.360317 +1410871.360317 +1410871.360317 +1410871.360317 +1410871.360317 +1410871.360317 +1410871.360317 +1410871.360317 +1410871.360317 +1410871.360317 +1410871.360317 +1410871.360317 +1410891.760561 +1410903.470244 +1410903.470244 +1410908.272312 +1410908.272312 +1410936.272211 +1410936.272211 +1410936.272211 +1410936.272211 +1410936.272211 +1410936.272211 +1410936.272211 +1410936.272211 +1410943.153702 +1410950.235264 +1410960.243775 +1410961.764054 +1410961.764054 +1410961.764054 +1410961.764054 +1410961.764054 +1410964.809218 +1410969.463101 +1410969.463101 +1410969.463101 +1410969.463101 +1410969.463101 +1410988.005359 +1410988.005359 +1410988.131237 +1410988.131237 +1410988.131237 +1410988.131237 +1410995.213349 +1410995.213349 +1410995.459488 +1410997.574241 +1411017.078236 +1411017.078236 +1411021.094943 +1411021.094943 +1411021.094943 +1411042.564687 +1411042.564687 +1411042.564687 +1411049.017294 +1411049.017294 +1411049.017294 +1411066.966590 +1411066.966590 +1411087.874384 +1411087.874384 +1411087.874384 +1411087.874384 +1411087.874384 +1411087.874384 +1411087.874384 +1411087.874384 +1411089.237043 +1411089.237043 +1411089.237043 +1411096.246762 +1411110.932673 +1411110.932673 +1411114.223354 +1411114.223354 +1411119.456155 +1411156.582079 +1411156.582079 +1411156.582079 +1411156.582079 +1411156.582079 +1411156.582079 +1411156.582079 +1411170.087784 +1411170.087784 +1411170.087784 +1411170.087784 +1411170.087784 +1411170.087784 +1411170.087784 +1411170.087784 +1411180.513825 +1411180.513825 +1411180.513825 +1411180.513825 +1411180.513825 +1411194.127300 +1411194.127300 +1411194.127300 +1411224.576776 +1411224.576776 +1411224.576776 +1411229.764263 +1411249.507283 +1411249.507283 +1411249.507283 +1411249.507283 +1411249.507283 +1411249.507283 +1411249.507283 +1411249.507283 +1411249.507283 +1411253.687468 +1411253.687468 +1411270.963789 +1411270.963789 +1411271.275811 +1411280.027720 +1411280.027720 +1411280.027720 +1411280.027720 +1411280.027720 +1411281.120462 +1411281.120462 +1411288.305611 +1411306.320473 +1411306.320473 +1411306.320473 +1411306.320473 +1411320.185056 +1411330.745171 +1411330.745171 +1411330.745171 +1411330.745171 +1411332.323941 +1411354.774778 +1411354.774778 +1411354.774778 +1411354.774778 +1411354.774778 +1411354.774778 +1411355.443982 +1411379.868160 +1411379.868160 +1411379.868160 +1411379.868160 +1411379.868160 +1411394.349617 +1411394.349617 +1411394.349617 +1411403.658304 +1411403.658304 +1411403.658304 +1411403.658304 +1411413.071351 +1411413.071351 +1411413.071351 +1411413.071351 +1411438.873653 +1411438.873653 +1411438.873653 +1411438.873653 +1411438.873653 +1411438.873653 +1411438.873653 +1411446.040665 +1411450.580336 +1411450.580336 +1411450.580336 +1411455.486149 +1411455.486149 +1411455.486149 +1411455.486149 +1411455.486149 +1411467.056825 +1411467.132007 +1411483.358518 +1411483.358518 +1411483.358518 +1411483.358518 +1411483.358518 +1411505.506158 +1411505.506158 +1411505.506158 +1411505.506158 +1411510.282828 +1411510.282828 +1411510.282828 +1411510.282828 +1411536.805101 +1411536.805101 +1411543.285351 +1411543.285351 +1411543.285351 +1411543.285351 +1411546.522718 +1411548.632368 +1411570.165409 +1411570.165409 +1411570.165409 +1411570.165409 +1411570.165409 +1411571.493754 +1411571.493754 +1411578.346275 +1411578.346275 +1411592.194926 +1411592.194926 +1411592.194926 +1411599.393651 +1411599.393651 +1411601.381050 +1411626.201607 +1411626.201607 +1411636.792742 +1411636.792742 +1411636.792742 +1411636.792742 +1411636.792742 +1411636.792742 +1411636.792742 +1411636.792742 +1411640.885655 +1411650.024374 +1411650.024374 +1411650.024374 +1411652.573162 +1411652.573162 +1411665.363822 +1411665.363822 +1411665.363822 +1411671.003831 +1411671.003831 +1411671.003831 +1411704.778816 +1411704.778816 +1411704.778816 +1411704.778816 +1411704.778816 +1411704.778816 +1411704.778816 +1411704.778816 +1411704.778816 +1411704.778816 +1411711.110620 +1411719.744316 +1411719.744316 +1411736.167715 +1411736.167715 +1411736.167715 +1411738.933428 +1411745.951057 +1411745.951057 +1411764.493562 +1411764.493562 +1411775.825665 +1411775.825665 +1411775.825665 +1411775.825665 +1411784.653263 +1411784.653263 +1411784.653263 +1411784.653263 +1411784.653263 +1411788.052713 +1411809.860762 +1411809.860762 +1411809.860762 +1411813.967018 +1411813.967018 +1411813.967018 +1411813.967018 +1411813.967018 +1411813.967018 +1411817.239000 +1411817.239000 +1411817.239000 +1411817.239000 +1411819.536134 +1411845.405700 +1411845.405700 +1411845.405700 +1411845.405700 +1411853.692437 +1411853.692437 +1411855.662384 +1411855.662384 +1411865.527183 +1411876.835826 +1411876.835826 +1411876.835826 +1411881.858817 +1411897.709130 +1411897.709130 +1411902.067578 +1411921.805995 +1411921.805995 +1411921.805995 +1411921.805995 +1411921.805995 +1411921.805995 +1411921.887001 +1411921.887001 +1411921.887001 +1411931.721456 +1411931.721456 +1411954.074127 +1411954.074127 +1411954.074127 +1411954.074127 +1411954.074127 +1411955.042193 +1411955.042193 +1411955.042193 +1411974.938387 +1411974.938387 +1411974.938387 +1411974.938387 +1411974.938387 +1411974.938387 +1411995.866175 +1411995.866175 +1412000.872473 +1412000.872473 +1412000.872473 +1412005.827812 +1412007.053517 +1412007.053517 +1412007.053517 +1412007.053517 +1412007.053517 +1412018.091349 +1412022.896595 +1412026.590978 +1412027.280692 +1412027.280692 +1412027.280692 +1412027.280692 +1412040.890296 +1412040.890296 +1412040.890296 +1412040.890296 +1412064.069797 +1412064.069797 +1412064.069797 +1412069.863570 +1412069.863570 +1412081.073235 +1412081.073235 +1412081.073235 +1412099.328756 +1412099.328756 +1412099.328756 +1412099.328756 +1412099.328756 +1412107.054658 +1412107.054658 +1412107.054658 +1412116.762415 +1412116.762415 +1412116.762415 +1412134.578017 +1412134.578017 +1412134.578017 +1412134.578017 +1412134.578017 +1412134.578017 +1412134.578017 +1412139.716153 +1412151.199972 +1412157.255974 +1412168.949040 +1412168.949040 +1412168.949040 +1412172.494996 +1412180.434145 +1412180.434145 +1412208.509353 +1412208.509353 +1412208.509353 +1412208.509353 +1412208.509353 +1412208.509353 +1412208.509353 +1412208.509353 +1412208.509353 +1412208.509353 +1412208.509353 +1412208.509353 +1412210.364248 +1412210.364248 +1412220.654506 +1412241.552957 +1412241.552957 +1412252.446322 +1412252.446322 +1412252.446322 +1412266.495578 +1412266.495578 +1412269.779600 +1412269.779600 +1412269.779600 +1412287.685772 +1412287.685772 +1412287.685772 +1412291.413913 +1412291.413913 +1412291.413913 +1412291.413913 +1412309.093930 +1412309.093930 +1412309.093930 +1412312.068148 +1412312.068148 +1412312.068148 +1412312.068148 +1412316.483651 +1412327.650377 +1412327.650377 +1412327.650377 +1412327.650377 +1412327.650377 +1412333.559548 +1412333.559548 +1412334.040630 +1412334.040630 +1412347.373778 +1412347.373778 +1412356.279566 +1412361.874961 +1412367.456030 +1412367.456030 +1412367.456030 +1412367.456030 +1412372.074441 +1412383.687330 +1412383.687330 +1412383.687330 +1412394.052699 +1412394.052699 +1412399.880436 +1412402.453744 +1412402.453744 +1412411.146304 +1412411.146304 +1412411.146304 +1412414.979863 +1412418.589507 +1412430.402161 +1412430.402161 +1412430.402161 +1412430.402161 +1412434.249744 +1412443.554541 +1412461.901291 +1412461.901291 +1412461.901291 +1412472.593568 +1412472.593568 +1412472.593568 +1412472.593568 +1412472.593568 +1412472.593568 +1412482.807499 +1412482.807499 +1412482.807499 +1412482.807499 +1412482.807499 +1412487.753699 +1412495.029661 +1412495.029661 +1412495.761740 +1412495.761740 +1412497.261692 +1412497.261692 +1412519.890149 +1412519.890149 +1412542.210177 +1412542.210177 +1412542.210177 +1412548.427312 +1412548.427312 +1412548.427312 +1412548.427312 +1412552.909060 +1412557.442287 +1412573.827544 +1412573.827544 +1412573.827544 +1412573.827544 +1412573.827544 +1412573.827544 +1412584.319229 +1412595.704956 +1412595.704956 +1412595.704956 +1412595.704956 +1412595.704956 +1412595.704956 +1412595.704956 +1412604.542182 +1412604.542182 +1412608.974225 +1412608.974225 +1412608.974225 +1412621.451032 +1412621.451032 +1412621.451032 +1412621.451032 +1412629.868117 +1412629.868117 +1412630.762811 +1412632.585116 +1412639.317311 +1412639.317311 +1412682.486997 +1412682.486997 +1412682.486997 +1412682.486997 +1412682.486997 +1412682.486997 +1412682.486997 +1412695.699979 +1412701.296727 +1412701.296727 +1412701.296727 +1412701.296727 +1412701.296727 +1412701.296727 +1412701.296727 +1412701.296727 +1412701.296727 +1412708.982035 +1412708.982035 +1412739.907291 +1412739.907291 +1412739.907291 +1412743.977956 +1412743.977956 +1412743.977956 +1412743.977956 +1412745.104364 +1412745.104364 +1412745.104364 +1412757.586063 +1412759.025710 +1412759.944813 +1412759.944813 +1412759.944813 +1412762.908090 +1412783.539949 +1412783.539949 +1412783.539949 +1412783.539949 +1412783.539949 +1412783.539949 +1412792.254884 +1412804.676763 +1412804.676763 +1412810.790028 +1412818.747181 +1412818.747181 +1412818.747181 +1412818.747181 +1412830.744834 +1412830.744834 +1412830.744834 +1412830.744834 +1412833.474604 +1412833.474604 +1412839.639444 +1412839.639444 +1412841.493729 +1412849.831587 +1412859.411863 +1412878.228737 +1412878.228737 +1412878.228737 +1412878.228737 +1412878.228737 +1412878.228737 +1412878.228737 +1412878.228737 +1412896.710668 +1412896.710668 +1412901.120648 +1412901.120648 +1412901.120648 +1412901.120648 +1412923.271336 +1412923.271336 +1412923.271336 +1412923.271336 +1412923.271336 +1412923.271336 +1412923.271336 +1412923.271336 +1412923.271336 +1412925.727653 +1412942.071480 +1412944.580616 +1412944.580616 +1412946.558397 +1412946.558397 +1412972.237011 +1412972.237011 +1412972.237011 +1412972.237011 +1412972.237011 +1412974.860275 +1412984.659005 +1412984.659005 +1412984.659005 +1412987.291262 +1412987.291262 +1412987.291262 +1412998.128231 +1413005.045564 +1413005.045564 +1413021.276860 +1413021.276860 +1413021.276860 +1413021.276860 +1413021.276860 +1413021.276860 +1413038.367580 +1413038.367580 +1413038.367580 +1413044.752259 +1413063.188043 +1413063.188043 +1413063.188043 +1413063.188043 +1413063.188043 +1413063.188043 +1413063.188043 +1413066.703816 +1413092.059718 +1413092.059718 +1413092.059718 +1413092.059718 +1413092.059718 +1413096.732483 +1413096.732483 +1413096.732483 +1413115.848815 +1413121.756882 +1413121.756882 +1413121.756882 +1413121.756882 +1413121.756882 +1413121.756882 +1413121.756882 +1413128.463355 +1413129.299382 +1413149.363339 +1413149.363339 +1413151.593136 +1413151.593136 +1413152.075148 +1413152.075148 +1413152.075148 +1413152.075148 +1413165.534936 +1413168.094877 +1413168.094877 +1413168.094877 +1413168.094877 +1413169.390787 +1413179.926743 +1413179.926743 +1413190.484032 +1413203.451570 +1413205.168603 +1413207.208094 +1413208.079888 +1413208.079888 +1413218.651577 +1413218.651577 +1413218.651577 +1413218.651577 +1413234.575284 +1413234.575284 +1413234.575284 +1413234.575284 +1413249.078501 \ No newline at end of file diff --git a/obj/static/O.linux.x86_64.gnu.opt/cmain.o b/obj/static/O.linux.x86_64.gnu.opt/cmain.o index d5e48d301d6d98e578c36fb3a4d5cecb4e57231b..afbcfe58fa917c49f5dd1ed3b0aa4f9da9d75cc5 100644 Binary files a/obj/static/O.linux.x86_64.gnu.opt/cmain.o and b/obj/static/O.linux.x86_64.gnu.opt/cmain.o differ diff --git a/obj/static/O.linux.x86_64.gnu.opt/probdata_lagr.o b/obj/static/O.linux.x86_64.gnu.opt/probdata_lagr.o index 40f06f30114394891a0ba37adedf740159ef46bf..dbf6dc53efe4fb437b72dd29f7926f26bf487570 100644 Binary files a/obj/static/O.linux.x86_64.gnu.opt/probdata_lagr.o and b/obj/static/O.linux.x86_64.gnu.opt/probdata_lagr.o differ diff --git a/obj/static/O.linux.x86_64.gnu.opt/relax_lagr.o b/obj/static/O.linux.x86_64.gnu.opt/relax_lagr.o index fc27ebde97bcc94ff6dce468a517281c7b89e888..4df197d84fd41e0558b6da465fe5829ae4137d26 100644 Binary files a/obj/static/O.linux.x86_64.gnu.opt/relax_lagr.o and b/obj/static/O.linux.x86_64.gnu.opt/relax_lagr.o differ diff --git a/obj/static/O.linux.x86_64.gnu.opt/vardata_lagr.o b/obj/static/O.linux.x86_64.gnu.opt/vardata_lagr.o index ca171ce968076c9a08438220d7c26d62567bff24..6974595e04195e1d80366d254d7b9f94484f7347 100644 Binary files a/obj/static/O.linux.x86_64.gnu.opt/vardata_lagr.o and b/obj/static/O.linux.x86_64.gnu.opt/vardata_lagr.o differ diff --git a/src/relax_lagr.cpp b/src/relax_lagr.cpp index 29694e849906529b227f470178959978e6f23e99..8d52b91dd1bd622bdaafa892c7e0762f7eb70329 100644 --- a/src/relax_lagr.cpp +++ b/src/relax_lagr.cpp @@ -1024,7 +1024,7 @@ SCIP_DECL_RELAXEXEC(relaxExeclagr) SCIP_Real change=0;//for saving the dual solution of previous. - int maxiter=2000; + int maxiter=20000; int stopping = 0; for(int iter=1;iter<=maxiter;iter++) { @@ -1187,12 +1187,12 @@ SCIP_DECL_RELAXEXEC(relaxExeclagr) // } // else{stepsize=1;} if(progress<0.1){stepsize=stepsize/iter; stopping++;} + stepsize = 1; - - if(iter<3*int(maxiter/4)){stepsize = 75;} - else if(3*int(maxiter/4)<=iter<=4*int(maxiter/5)){stepsize=30;} - else{stepsize=1;} - if(stopping==3){ break;} + // if(iter<2*int(maxiter/3)){stepsize = 55;} + // else if(2*int(maxiter/3)<=iter<=4*int(maxiter/5)){stepsize=75;} + // else{stepsize=40;} + if(stopping==10){ break;} fprintf(dual,"dualbound = %f, lowerbound=%f, norm of subgrad %f\t stepsize= %f \n" ,SCIPgetPrimalbound(relaxscip),lowerbound, getnorm(subgradients,nSlotConss), stepsize); change = SCIPgetPrimalbound(relaxscip); fprintf(variableinfo,"%f\n",solvals[nvars]); diff --git a/time.txt b/time.txt index ff49dffafa58379f7deb009baa45989c64ca35d8..7d44f928c92f35948c32be254d2f274a8e213ea9 100644 --- a/time.txt +++ b/time.txt @@ -1,23 +1,18991 @@ - - row and column identified in (sec) : 5.187866 -0.577017 -1.116944 -1.661683 -2.254000 -2.861594 -3.471414 -4.123031 -4.760961 -5.364344 -6.020021 -6.652950 -7.234927 -7.834878 -8.431421 -8.725060 -8.989309 -9.189576 -9.390126 -9.667225 -10.084505 -10.704548 +18990 +1.947082 +3.632711 +5.398174 +7.215281 +9.093362 +11.058118 +13.059337 +15.132782 +17.212127 +19.261106 +21.366399 +23.408676 +25.459543 +27.555470 +29.734946 +31.934470 +34.259297 +36.525042 +38.524733 +40.548714 +42.693173 +44.884123 +47.048996 +49.220279 +51.408199 +53.667919 +55.941135 +58.264584 +60.647357 +62.972021 +65.263487 +67.514983 +69.796499 +72.081401 +74.445152 +76.736014 +79.035536 +81.374274 +83.675737 +86.003722 +88.315187 +90.623859 +92.906200 +95.194650 +97.446921 +99.736539 +101.996687 +104.339512 +106.449813 +108.543115 +110.703167 +112.804791 +114.922833 +117.028683 +119.175384 +121.300847 +123.404241 +125.519360 +127.629481 +129.749381 +131.871384 +133.986726 +136.129231 +138.228161 +140.322482 +142.424576 +144.549142 +146.673692 +148.787217 +150.906996 +153.001959 +155.111108 +157.339116 +159.913042 +162.308812 +164.501049 +166.733929 +168.865073 +171.138193 +173.433303 +175.584684 +177.688788 +179.824047 +181.946270 +184.063990 +186.225594 +188.338664 +190.477420 +192.599329 +194.721400 +196.848953 +198.970485 +201.086263 +203.225576 +205.348857 +207.466060 +209.708154 +212.077427 +214.190008 +216.289027 +218.375764 +220.502875 +222.620109 +224.772944 +226.852284 +228.927515 +230.993684 +233.043191 +235.107158 +237.218796 +239.336347 +241.451423 +243.590595 +245.693556 +247.760617 +249.819743 +251.854630 +253.856312 +255.764070 +257.547229 +259.333834 +261.203520 +262.984718 +264.802719 +266.625020 +268.578044 +270.628297 +272.650465 +274.592253 +276.425602 +278.288166 +280.161685 +282.030120 +283.885292 +285.779615 +287.538604 +289.299297 +291.037228 +292.808622 +294.550576 +296.277944 +298.000911 +299.745021 +301.500705 +303.231591 +304.980596 +306.745430 +308.507071 +310.285485 +312.097678 +313.893974 +315.640526 +317.433501 +319.204328 +320.995246 +322.735416 +324.523091 +326.337754 +328.078415 +329.806035 +331.624398 +333.359621 +335.115035 +336.909538 +338.669920 +340.419671 +342.212272 +343.974733 +345.777387 +347.590381 +349.393102 +351.293804 +353.136341 +355.067075 +356.838355 +358.603550 +360.406198 +362.220815 +363.900328 +365.550907 +367.190676 +368.834487 +370.483068 +372.139448 +373.851584 +375.505318 +377.156058 +378.796665 +380.651199 +382.378455 +384.051633 +385.727937 +387.465208 +389.138460 +390.816783 +392.492802 +394.174943 +395.839752 +397.522579 +399.176173 +400.836952 +402.502519 +404.182877 +405.827607 +407.456970 +409.104839 +410.759456 +412.451441 +414.120775 +415.769160 +417.430525 +419.144930 +420.831946 +422.480766 +424.150615 +425.839145 +427.500714 +429.273522 +430.630703 +431.821700 +433.018714 +434.205109 +435.398384 +436.633994 +437.844252 +439.029168 +440.231720 +441.410089 +442.588308 +443.780934 +444.952343 +446.125382 +447.314321 +448.490928 +449.648513 +450.835883 +452.008826 +453.176690 +454.372394 +455.551328 +456.725284 +457.903413 +459.126896 +460.347500 +461.534782 +462.702965 +463.874262 +465.058565 +466.240408 +467.434429 +468.601166 +469.776334 +470.952639 +472.128194 +473.335125 +474.517114 +475.700850 +476.855115 +478.027671 +479.203113 +480.404587 +481.555284 +482.722878 +483.862853 +485.022755 +486.198532 +487.357507 +488.505596 +489.671648 +490.838159 +491.985433 +493.145074 +494.301467 +495.457250 +496.595134 +497.733469 +498.883209 +500.039074 +501.190842 +502.348436 +503.502519 +504.651344 +505.790390 +506.923662 +508.058236 +509.201193 +510.334096 +511.490879 +512.635177 +513.782711 +514.952279 +516.100580 +517.248380 +518.391685 +519.549961 +520.691823 +521.850668 +523.010438 +524.168863 +525.325698 +526.465893 +527.619436 +528.766735 +529.924656 +531.079925 +532.216817 +533.359249 +534.501674 +535.637242 +536.791472 +537.944713 +539.209420 +540.372084 +541.579472 +542.800966 +543.951209 +545.105442 +546.242287 +547.402857 +548.565319 +549.721159 +550.882983 +552.026687 +553.171207 +554.336317 +555.490955 +556.641540 +557.795342 +558.942451 +560.128410 +561.346241 +562.526371 +563.681098 +564.829932 +565.983134 +567.132800 +568.289097 +569.451965 +570.603664 +571.755334 +572.913587 +574.066625 +575.230345 +576.392282 +577.534572 +578.691375 +579.848292 +580.988286 +582.138662 +583.295308 +584.447251 +585.600400 +586.766673 +587.908645 +589.086175 +590.249793 +591.422331 +592.591861 +593.765738 +594.948995 +596.129675 +597.311070 +598.486787 +599.638623 +600.796840 +601.953249 +603.113686 +604.271974 +605.430741 +606.577298 +607.736198 +608.884519 +610.040364 +611.220909 +612.379887 +613.532828 +614.687786 +615.846299 +616.995834 +618.166125 +619.329761 +620.482154 +621.647315 +622.796783 +623.955980 +625.120779 +626.279834 +627.429568 +628.586829 +629.742517 +630.894737 +632.047767 +633.215032 +634.373347 +635.536808 +636.700798 +637.854702 +639.012052 +640.172615 +641.323409 +642.489808 +643.651990 +644.806614 +645.959165 +647.102144 +648.258417 +649.420670 +650.575676 +651.747044 +652.884811 +654.043599 +655.204056 +656.359782 +657.509913 +658.665688 +659.828912 +660.978766 +662.148751 +663.290628 +664.426362 +665.565708 +666.718426 +667.865775 +669.016079 +670.163602 +671.300081 +672.438311 +673.605171 +674.754038 +675.922349 +677.067010 +678.210505 +679.364140 +680.504423 +681.640364 +682.776913 +683.923469 +685.068886 +686.250277 +687.405809 +688.556070 +689.699849 +690.859901 +692.005681 +693.145267 +694.306404 +695.465489 +696.620206 +697.759637 +698.907543 +700.054807 +701.195385 +702.341633 +703.484182 +704.630396 +705.776775 +706.921451 +708.064058 +709.214645 +710.359007 +711.535176 +712.675647 +713.815132 +714.973850 +716.131115 +717.269368 +718.413147 +719.561996 +720.716370 +721.865247 +723.007612 +724.159553 +725.295248 +726.443006 +727.705833 +728.855157 +730.048569 +731.251537 +732.404156 +733.562030 +734.709998 +735.857355 +736.999497 +738.142930 +739.286433 +740.436992 +741.580408 +742.727864 +743.868213 +745.008063 +746.156973 +747.301362 +748.436559 +749.590564 +750.741087 +751.885984 +753.026374 +754.174993 +755.325918 +756.464148 +757.609654 +758.747934 +759.891725 +761.032708 +762.194598 +763.345059 +764.496572 +765.636808 +766.769123 +767.905681 +769.058980 +770.202630 +771.356147 +772.495494 +773.635630 +774.780154 +775.932578 +777.078692 +778.226016 +779.384392 +780.544068 +781.697336 +782.837075 +783.981838 +785.133506 +786.285791 +787.444118 +788.585184 +789.731691 +790.885174 +792.032679 +793.181376 +794.337100 +795.483086 +796.680272 +798.039147 +799.298274 +800.850098 +802.452236 +804.041364 +805.520998 +806.894040 +808.255560 +809.811512 +811.217956 +812.550321 +813.687479 +814.825945 +816.009207 +817.173546 +818.312299 +819.455014 +820.603769 +821.777110 +822.922995 +824.069717 +825.214577 +826.424149 +827.578217 +828.750784 +830.154919 +831.926849 +833.518850 +834.828320 +836.066329 +837.283355 +838.418276 +839.566839 +840.697242 +841.869848 +843.003942 +844.151692 +845.287085 +846.434291 +847.628005 +848.799173 +849.926664 +851.075447 +852.278419 +853.419598 +854.562537 +855.722209 +856.877712 +858.038679 +859.183965 +860.344726 +861.488357 +862.663990 +863.808236 +864.960358 +866.107564 +867.289184 +868.463871 +869.601676 +870.748451 +871.898270 +873.061358 +874.222390 +875.375108 +876.525364 +877.715488 +878.872504 +880.028674 +881.178314 +882.326627 +883.485915 +884.633229 +885.798654 +886.964434 +888.144640 +889.288652 +890.437128 +891.593532 +892.732187 +893.899304 +895.057382 +896.200244 +897.345408 +898.535198 +900.906247 +902.651998 +904.650231 +906.319409 +907.507311 +908.692277 +909.856620 +911.041629 +912.237311 +913.435450 +914.829901 +916.528849 +918.026148 +919.535210 +920.761320 +921.954846 +923.140848 +924.370952 +925.603044 +926.813061 +928.117083 +929.453198 +931.155745 +932.674162 +934.025513 +935.297200 +936.505494 +938.069232 +939.838947 +941.416491 +943.008482 +944.509140 +945.824308 +947.158034 +948.442009 +949.712317 +951.143289 +952.518149 +953.756793 +954.961160 +956.138393 +957.295126 +958.438340 +959.583301 +960.754930 +961.954271 +963.092622 +964.258779 +965.446201 +966.627172 +967.805019 +969.017001 +970.362735 +971.781853 +973.080204 +974.277285 +975.472623 +976.654812 +977.879347 +979.100716 +980.326249 +981.555041 +982.776146 +984.036316 +985.306277 +986.569779 +987.809086 +988.987792 +990.161233 +991.373011 +992.563727 +993.716869 +994.890713 +996.045494 +997.271197 +998.500607 +999.752640 +1000.972827 +1002.233671 +1003.420933 +1004.591802 +1005.802130 +1007.002608 +1008.244148 +1009.447160 +1010.683625 +1011.948552 +1013.126771 +1014.321963 +1015.487538 +1016.640740 +1017.796892 +1018.971549 +1020.205966 +1021.398587 +1022.602736 +1023.801974 +1024.967390 +1026.159194 +1027.365314 +1028.560317 +1029.773027 +1030.959130 +1032.129782 +1033.306531 +1034.467097 +1035.637485 +1036.814424 +1038.035672 +1039.270671 +1040.439427 +1041.608418 +1042.753951 +1043.906643 +1045.177409 +1046.419843 +1047.621946 +1048.820239 +1049.993878 +1051.190542 +1052.383410 +1053.611651 +1054.808976 +1056.004134 +1057.220252 +1058.417738 +1059.639337 +1060.839563 +1062.034459 +1063.228243 +1064.426949 +1065.576301 +1066.718660 +1067.855828 +1069.009820 +1070.223059 +1071.465713 +1072.658300 +1073.805858 +1074.970531 +1076.115488 +1077.276667 +1078.417856 +1079.568560 +1080.723307 +1081.879042 +1083.059599 +1084.267632 +1085.461554 +1086.983001 +1088.445424 +1089.671892 +1090.930945 +1092.222473 +1093.555742 +1094.898907 +1096.327332 +1097.607002 +1098.905824 +1100.156558 +1101.511372 +1102.815693 +1104.243322 +1105.856656 +1107.235726 +1108.622417 +1109.972267 +1111.316905 +1112.638338 +1114.021075 +1115.292213 +1116.544149 +1117.891802 +1119.261245 +1120.586366 +1121.840887 +1123.214535 +1124.460012 +1125.807953 +1127.112203 +1128.430667 +1129.766426 +1131.104347 +1132.358650 +1133.623825 +1134.939508 +1136.203160 +1137.502308 +1138.791028 +1140.137829 +1141.418388 +1142.745424 +1144.171664 +1145.444471 +1146.746540 +1147.995297 +1149.252511 +1150.484102 +1151.749170 +1152.932945 +1154.187174 +1155.486203 +1156.736829 +1157.972694 +1159.272640 +1160.559589 +1161.869739 +1163.290271 +1164.538277 +1165.762920 +1167.000313 +1168.301112 +1169.612509 +1170.861384 +1172.246598 +1173.657793 +1174.937783 +1176.185827 +1177.511708 +1178.910455 +1180.561276 +1181.967399 +1183.258449 +1184.524487 +1185.835010 +1187.096807 +1188.357180 +1189.647518 +1190.950579 +1192.216508 +1193.499446 +1194.781254 +1196.038899 +1197.328154 +1198.651364 +1199.881006 +1201.213089 +1202.453152 +1203.658211 +1205.015703 +1206.275007 +1207.494831 +1208.731713 +1210.011886 +1211.258426 +1212.629969 +1213.956344 +1215.260178 +1216.592383 +1217.849058 +1219.129508 +1220.406508 +1221.692488 +1222.938702 +1224.226657 +1225.554863 +1226.773161 +1227.987909 +1229.291420 +1230.575674 +1231.896113 +1233.108606 +1234.377264 +1235.637988 +1236.928482 +1238.196636 +1239.469976 +1240.686811 +1241.951217 +1243.174704 +1244.460056 +1245.707972 +1246.987902 +1248.261159 +1249.503261 +1250.776396 +1252.056735 +1253.317810 +1254.579037 +1255.783252 +1257.025696 +1258.415065 +1259.648893 +1260.973186 +1262.268142 +1263.629345 +1264.848337 +1266.184482 +1267.455335 +1268.736018 +1269.978311 +1271.275407 +1272.525492 +1273.862868 +1275.080275 +1276.366847 +1277.710332 +1278.997041 +1280.198429 +1281.432312 +1282.724778 +1284.060151 +1285.385162 +1286.735924 +1288.020083 +1289.312892 +1290.718228 +1292.594881 +1294.175209 +1295.808863 +1297.140165 +1298.510054 +1299.757294 +1301.178163 +1302.506576 +1303.804512 +1305.130544 +1306.404320 +1307.679561 +1309.021778 +1310.223388 +1311.455252 +1312.801879 +1314.070585 +1315.365529 +1316.657323 +1317.922786 +1319.223420 +1320.449075 +1321.718418 +1322.995531 +1324.449316 +1325.703177 +1326.989811 +1328.214483 +1329.507827 +1330.844873 +1332.183509 +1333.456318 +1334.758264 +1336.010825 +1337.279506 +1338.674830 +1340.025154 +1341.313292 +1342.506393 +1343.802554 +1345.183040 +1346.412867 +1347.655055 +1348.990588 +1350.300641 +1351.577801 +1352.854879 +1354.073524 +1355.388937 +1356.756857 +1358.001239 +1359.284388 +1360.537534 +1361.858964 +1363.218523 +1364.462632 +1365.744434 +1366.961202 +1368.340886 +1369.561813 +1370.932618 +1372.268590 +1373.607445 +1374.985437 +1376.203711 +1377.553933 +1378.933792 +1380.167714 +1381.501287 +1382.717603 +1384.003353 +1385.231302 +1386.499072 +1387.879714 +1389.217718 +1390.450427 +1391.829278 +1393.042160 +1394.400489 +1395.670206 +1396.937401 +1398.159185 +1399.360598 +1400.657724 +1401.940998 +1403.189246 +1404.408861 +1405.705579 +1407.047333 +1408.402398 +1409.667391 +1410.938185 +1412.172574 +1413.492207 +1414.739751 +1416.039879 +1417.386562 +1418.685651 +1419.951286 +1421.219676 +1422.540091 +1423.786949 +1425.093186 +1426.614848 +1427.914051 +1429.240838 +1430.454474 +1431.714390 +1432.975675 +1434.221286 +1435.461258 +1436.749245 +1438.048261 +1439.325883 +1440.626155 +1441.923696 +1443.191678 +1444.497245 +1445.783293 +1447.135081 +1448.489932 +1449.762267 +1450.989511 +1452.234558 +1453.505272 +1454.833217 +1456.103494 +1457.311220 +1458.638235 +1459.964368 +1461.265058 +1462.555470 +1463.881329 +1465.114449 +1466.386549 +1467.676977 +1468.964506 +1470.286851 +1471.583146 +1472.839757 +1474.132872 +1475.462654 +1476.789239 +1478.147021 +1479.629172 +1481.090949 +1482.381577 +1483.646331 +1485.314402 +1486.771410 +1488.052259 +1489.346678 +1490.627472 +1491.983051 +1493.301484 +1494.578644 +1495.841818 +1497.109516 +1498.413316 +1499.664107 +1500.979505 +1502.272002 +1503.618482 +1504.986015 +1506.238541 +1507.589691 +1508.792089 +1510.063357 +1511.313875 +1512.543134 +1513.842604 +1515.085073 +1516.334135 +1517.651338 +1518.922379 +1520.228564 +1521.547546 +1522.852838 +1524.027078 +1525.251308 +1526.583915 +1527.893505 +1529.174825 +1530.489270 +1531.734011 +1533.027382 +1534.284461 +1535.563226 +1536.843680 +1538.145096 +1539.388082 +1540.721129 +1542.026605 +1543.330205 +1544.528178 +1545.749868 +1547.037505 +1548.339468 +1549.680106 +1550.968459 +1552.259782 +1553.537561 +1554.767354 +1556.028190 +1557.268986 +1558.569853 +1559.875948 +1561.157855 +1562.459376 +1563.761519 +1565.110522 +1566.372710 +1567.694435 +1568.902638 +1570.273594 +1571.473534 +1572.717159 +1574.110486 +1575.383144 +1576.657293 +1577.921835 +1579.134445 +1580.406948 +1581.642067 +1582.905096 +1584.156356 +1585.444945 +1586.719808 +1588.017675 +1589.380694 +1590.702096 +1592.109646 +1593.351539 +1594.563475 +1595.975759 +1597.311240 +1598.639738 +1599.876782 +1601.201422 +1602.424936 +1603.711420 +1604.997902 +1606.396581 +1607.745908 +1608.993442 +1610.212301 +1611.464180 +1612.783989 +1614.074017 +1615.424834 +1616.696656 +1617.996127 +1619.304754 +1620.532699 +1621.814933 +1623.057045 +1624.368940 +1625.619771 +1626.951663 +1628.214169 +1629.509023 +1630.792091 +1632.077078 +1633.412107 +1634.704993 +1636.047475 +1637.312062 +1638.681244 +1640.040296 +1641.294578 +1642.517591 +1643.847993 +1645.115821 +1646.407151 +1647.729655 +1648.990534 +1650.335103 +1651.710907 +1653.034384 +1654.446889 +1655.701757 +1657.006217 +1658.255741 +1659.551587 +1660.905733 +1662.172306 +1663.528170 +1664.820761 +1666.124501 +1667.390277 +1668.668859 +1670.067958 +1671.699688 +1673.239444 +1674.587456 +1676.110795 +1677.406721 +1678.703973 +1680.008941 +1681.287111 +1682.552427 +1683.855743 +1685.099510 +1686.362338 +1687.606693 +1688.950557 +1690.192568 +1691.644985 +1692.971164 +1694.194990 +1695.497899 +1696.791201 +1698.099358 +1699.378881 +1700.646085 +1702.016249 +1703.287808 +1704.621194 +1705.890843 +1707.191833 +1708.514195 +1709.771001 +1711.143028 +1712.428408 +1713.638039 +1715.002218 +1716.301179 +1717.591429 +1718.843339 +1720.191823 +1721.596491 +1722.823711 +1724.147070 +1725.395399 +1726.645792 +1727.910867 +1729.202576 +1730.440405 +1731.723054 +1733.074162 +1734.374786 +1735.693257 +1736.955563 +1738.249535 +1739.557025 +1740.762214 +1742.055676 +1743.378799 +1744.753717 +1746.013685 +1747.365387 +1748.661152 +1750.050064 +1751.381970 +1752.681577 +1754.010255 +1755.387448 +1756.743658 +1758.044111 +1759.310815 +1760.587382 +1761.836180 +1763.259841 +1764.802455 +1766.047213 +1767.391489 +1768.669975 +1769.961299 +1771.194787 +1772.440172 +1773.705976 +1774.971752 +1776.235001 +1777.522086 +1778.756074 +1779.985516 +1781.230997 +1782.465343 +1783.722718 +1784.898282 +1786.194294 +1787.418927 +1788.755116 +1790.091175 +1791.406659 +1792.639171 +1793.878980 +1795.170776 +1796.435602 +1797.750526 +1799.124842 +1800.485317 +1801.759375 +1803.005697 +1804.285183 +1805.635833 +1806.902287 +1808.200994 +1809.607904 +1810.881558 +1812.087597 +1813.310294 +1814.626705 +1815.835819 +1817.027351 +1818.347810 +1819.587390 +1820.787402 +1821.995061 +1823.222314 +1824.527008 +1825.753852 +1827.092572 +1828.362756 +1829.837946 +1831.150333 +1832.455254 +1833.707824 +1834.932457 +1836.197173 +1837.518524 +1838.775323 +1840.120634 +1841.350528 +1842.639682 +1843.877195 +1845.141019 +1846.402491 +1847.582707 +1848.932931 +1850.134494 +1851.364105 +1852.625933 +1853.848351 +1855.071748 +1856.287880 +1857.552049 +1858.908548 +1860.199602 +1861.527661 +1862.855437 +1864.200843 +1865.449054 +1866.683106 +1867.910909 +1869.199257 +1870.379629 +1871.575138 +1872.804748 +1874.044306 +1875.239426 +1876.506821 +1877.760369 +1879.001739 +1880.339204 +1881.581000 +1882.807227 +1884.051090 +1885.227080 +1886.540421 +1887.760803 +1888.996604 +1890.158225 +1891.374701 +1892.577872 +1893.774153 +1895.013730 +1896.181156 +1897.469062 +1898.675620 +1899.885918 +1901.193375 +1902.389836 +1903.550515 +1904.768884 +1906.005804 +1907.203858 +1908.379358 +1909.618067 +1910.828296 +1912.058768 +1913.231853 +1914.492371 +1915.743558 +1917.006966 +1918.351737 +1919.531551 +1920.756114 +1921.972344 +1923.184147 +1924.442259 +1925.691601 +1926.968402 +1928.280744 +1929.475365 +1930.694258 +1931.947282 +1933.186705 +1934.363727 +1935.550159 +1936.757561 +1938.017081 +1939.290334 +1940.510040 +1941.692711 +1942.891979 +1944.146451 +1945.445293 +1946.676709 +1947.893868 +1949.126242 +1950.316931 +1951.604895 +1952.840835 +1954.112498 +1955.286871 +1956.536394 +1957.718812 +1958.949161 +1960.331007 +1961.531860 +1962.804457 +1964.072347 +1965.273299 +1966.484986 +1967.699168 +1968.966870 +1970.184900 +1971.485864 +1972.816624 +1974.054574 +1975.400002 +1976.554641 +1977.820669 +1979.081369 +1980.297423 +1981.627978 +1982.886464 +1984.131249 +1985.427377 +1986.706033 +1987.905240 +1989.271146 +1990.550794 +1991.818877 +1993.081098 +1994.340694 +1995.632319 +1996.926772 +1998.094605 +1999.323329 +2000.521893 +2001.705527 +2002.922785 +2004.216550 +2005.420988 +2006.601985 +2007.778977 +2008.992354 +2010.227654 +2011.398571 +2012.572781 +2013.796541 +2015.144217 +2016.368674 +2017.583313 +2018.764546 +2019.993961 +2021.322717 +2022.583884 +2023.852107 +2025.101628 +2026.313079 +2027.504400 +2028.730249 +2029.975075 +2031.210924 +2032.510999 +2033.708199 +2034.940303 +2036.188576 +2037.401226 +2038.654446 +2039.941093 +2041.310763 +2042.533873 +2043.683574 +2044.936006 +2046.255494 +2047.613541 +2048.851601 +2050.185999 +2051.542430 +2052.798615 +2053.987759 +2055.316699 +2056.638876 +2057.831756 +2059.091063 +2060.298059 +2061.563540 +2062.917351 +2064.109083 +2065.273936 +2066.523029 +2067.835880 +2069.000109 +2070.287385 +2071.587010 +2072.863418 +2074.161124 +2075.508229 +2076.708379 +2077.934201 +2079.164408 +2080.356489 +2081.535627 +2082.812979 +2084.161680 +2085.371148 +2086.546277 +2087.867075 +2089.122960 +2090.643035 +2092.208602 +2093.715262 +2095.220159 +2096.493930 +2097.808665 +2098.983390 +2100.210799 +2101.355558 +2102.538277 +2103.688072 +2104.910194 +2106.117972 +2107.275972 +2108.455560 +2109.686709 +2110.921464 +2112.083499 +2113.277466 +2114.423222 +2115.578982 +2116.799798 +2117.991965 +2119.144307 +2120.295323 +2121.460315 +2122.637270 +2123.771434 +2124.953990 +2126.204015 +2127.409231 +2128.611838 +2129.931336 +2131.140360 +2132.286180 +2133.489845 +2134.760812 +2135.951127 +2137.120963 +2138.328049 +2139.545858 +2140.808007 +2141.997827 +2143.203216 +2144.468416 +2145.598086 +2146.773172 +2147.993554 +2149.200824 +2150.401851 +2151.655965 +2152.937580 +2154.176982 +2155.325164 +2156.480676 +2157.660741 +2159.004184 +2160.174840 +2161.497055 +2162.651348 +2163.873505 +2165.117753 +2166.290137 +2167.490757 +2168.759900 +2170.064171 +2171.330355 +2172.487724 +2173.730663 +2174.945337 +2176.093187 +2177.271624 +2178.495981 +2179.737884 +2180.989088 +2182.182282 +2183.356249 +2184.585272 +2185.798242 +2186.903143 +2188.069520 +2189.216893 +2190.368557 +2191.609222 +2192.758560 +2193.960332 +2195.189871 +2196.389873 +2197.692030 +2198.956729 +2200.192126 +2201.421557 +2202.580132 +2203.792187 +2204.942072 +2206.109000 +2207.392896 +2208.569510 +2209.787434 +2211.070628 +2212.380381 +2213.593266 +2214.762650 +2215.989474 +2217.160955 +2218.356165 +2219.547260 +2220.728606 +2221.885172 +2223.117381 +2224.300840 +2225.435245 +2226.599609 +2227.783647 +2228.956288 +2230.209379 +2231.456537 +2232.685739 +2233.885169 +2235.184415 +2236.345463 +2237.535626 +2238.821015 +2240.069247 +2241.349547 +2242.561366 +2243.795425 +2244.963154 +2246.251521 +2247.410743 +2248.591852 +2249.825091 +2250.982378 +2252.223892 +2253.464988 +2254.624348 +2255.866697 +2257.103217 +2258.313618 +2259.518083 +2260.668475 +2261.893834 +2263.105849 +2264.319698 +2265.519694 +2266.789414 +2267.977557 +2269.149164 +2270.325236 +2271.571723 +2272.836634 +2274.135458 +2275.320358 +2276.497218 +2277.701408 +2278.899418 +2280.137866 +2281.296108 +2282.490929 +2283.776541 +2284.923076 +2286.103911 +2287.371410 +2288.578763 +2289.822328 +2291.026443 +2292.294937 +2293.500037 +2294.719038 +2295.990159 +2297.172200 +2298.340736 +2299.638118 +2300.845412 +2302.059887 +2303.284173 +2304.454642 +2305.651486 +2306.928678 +2308.112785 +2309.398575 +2310.547567 +2311.790922 +2312.951931 +2314.196977 +2315.429700 +2316.647274 +2317.939319 +2319.184772 +2320.412140 +2321.650590 +2322.905510 +2324.114228 +2325.367894 +2326.560532 +2327.781854 +2329.128825 +2330.289282 +2331.474081 +2332.697839 +2333.839797 +2335.053329 +2336.291650 +2337.462979 +2338.709529 +2339.973839 +2341.267067 +2342.461540 +2343.640069 +2344.893690 +2346.092749 +2347.239662 +2348.459018 +2349.684372 +2350.881270 +2352.053698 +2353.255389 +2354.465277 +2355.555616 +2356.647118 +2357.732682 +2358.825003 +2359.935570 +2361.036524 +2362.114898 +2363.205667 +2364.336233 +2365.421485 +2366.503682 +2367.593357 +2368.694955 +2369.789501 +2370.877325 +2371.979990 +2373.092184 +2374.192127 +2375.276355 +2376.382046 +2377.475357 +2378.560490 +2379.744639 +2380.875046 +2382.063759 +2383.221344 +2384.329242 +2385.409386 +2386.500412 +2387.598009 +2388.738742 +2389.852047 +2391.133759 +2392.246945 +2393.357607 +2394.448927 +2395.555010 +2396.635827 +2397.727401 +2398.809984 +2399.913010 +2401.001410 +2402.085910 +2403.172139 +2404.262807 +2405.349536 +2406.444996 +2407.531394 +2408.631515 +2409.700501 +2410.778455 +2411.871965 +2412.962601 +2414.045521 +2415.136158 +2416.209094 +2417.283946 +2418.379092 +2419.456990 +2420.525340 +2421.600607 +2422.680202 +2423.868371 +2424.964319 +2426.040238 +2427.187707 +2428.314638 +2429.409781 +2430.498928 +2431.577623 +2432.661657 +2433.742037 +2434.834581 +2435.926315 +2437.019185 +2438.103922 +2439.182947 +2440.285490 +2441.370432 +2442.458051 +2443.533955 +2444.608043 +2445.678128 +2446.753763 +2447.834219 +2448.916776 +2449.999223 +2451.075574 +2452.144262 +2453.209879 +2454.296221 +2455.365011 +2456.436412 +2457.529621 +2458.600844 +2459.694819 +2460.796939 +2461.892530 +2462.977676 +2464.063279 +2465.175591 +2466.249844 +2467.338908 +2468.414581 +2469.498760 +2470.570853 +2471.637442 +2472.721859 +2473.816083 +2474.935033 +2476.012723 +2477.096230 +2478.170431 +2479.265315 +2480.371957 +2481.461761 +2482.548675 +2483.661619 +2484.748197 +2485.853607 +2486.931981 +2488.023716 +2489.103106 +2490.208891 +2491.307800 +2492.417014 +2493.504624 +2494.593422 +2495.681671 +2496.765552 +2497.848566 +2498.941686 +2500.050522 +2501.128591 +2502.213634 +2503.311158 +2504.424238 +2505.505464 +2506.597916 +2507.677740 +2508.769065 +2509.901672 +2510.972642 +2512.053813 +2513.142641 +2514.246339 +2515.357916 +2516.449681 +2517.539861 +2518.622684 +2519.714885 +2520.807929 +2521.886915 +2522.988970 +2524.076655 +2525.155416 +2526.255807 +2527.337622 +2528.434142 +2529.526739 +2530.620525 +2531.707857 +2532.816971 +2533.969824 +2535.059521 +2536.149002 +2537.241620 +2538.331555 +2539.434137 +2540.532691 +2541.630770 +2542.717100 +2543.798779 +2544.895183 +2545.975274 +2547.068579 +2548.227828 +2549.552425 +2550.641577 +2551.724930 +2552.826391 +2553.923304 +2555.042062 +2556.137635 +2557.252197 +2558.360460 +2559.461391 +2560.545707 +2561.627099 +2562.721801 +2563.802140 +2564.887620 +2565.961622 +2567.046093 +2568.127450 +2569.223313 +2570.313284 +2571.403588 +2572.510007 +2573.603937 +2574.815683 +2575.956024 +2577.048675 +2578.134791 +2579.223364 +2580.307366 +2581.399568 +2582.534796 +2583.624814 +2584.727300 +2585.809203 +2586.900525 +2587.987642 +2589.061987 +2590.165175 +2591.247031 +2592.331146 +2593.415715 +2594.508925 +2595.594779 +2596.672014 +2597.769124 +2598.848275 +2599.936280 +2601.028769 +2602.119328 +2603.196771 +2604.286780 +2605.392493 +2606.516568 +2607.618484 +2608.720332 +2609.828574 +2610.912395 +2612.103040 +2613.204631 +2614.308727 +2615.451082 +2616.611372 +2617.713977 +2618.820731 +2619.916782 +2620.995796 +2622.088311 +2623.186616 +2624.276398 +2625.374412 +2626.484747 +2627.578166 +2628.681490 +2629.784292 +2630.900055 +2631.993266 +2633.094843 +2634.189858 +2635.295016 +2636.371985 +2637.458192 +2638.532141 +2639.647414 +2640.747222 +2641.839558 +2642.930799 +2644.014660 +2645.111202 +2646.208759 +2647.308289 +2648.393513 +2649.490842 +2650.602518 +2651.696978 +2652.782950 +2653.872167 +2654.975326 +2656.056777 +2657.147137 +2658.233355 +2659.327934 +2660.409973 +2661.492475 +2662.579843 +2663.659234 +2664.778027 +2665.872637 +2666.965584 +2668.070795 +2669.170721 +2670.251496 +2671.343913 +2672.431490 +2673.531909 +2674.625281 +2675.722460 +2676.805160 +2677.900464 +2678.990674 +2680.109835 +2681.195710 +2682.277204 +2683.374411 +2684.468119 +2685.544622 +2686.638875 +2687.720764 +2688.826640 +2689.940431 +2691.030563 +2692.114880 +2693.193280 +2694.283260 +2695.369349 +2696.451222 +2697.556370 +2698.640027 +2699.730696 +2700.826849 +2701.925412 +2703.019429 +2704.118495 +2705.222715 +2706.309774 +2707.389566 +2708.468152 +2709.554041 +2710.647265 +2711.726748 +2712.806919 +2713.901486 +2715.014118 +2716.095516 +2717.184305 +2718.264091 +2719.349972 +2720.428905 +2721.512806 +2722.595880 +2723.680187 +2724.765829 +2725.843336 +2726.928729 +2728.052024 +2729.153951 +2730.443087 +2731.537298 +2732.626522 +2733.719202 +2734.828760 +2735.918301 +2737.019551 +2738.112563 +2739.220374 +2740.339193 +2741.433223 +2742.540906 +2743.648847 +2744.779064 +2745.885206 +2746.978864 +2748.074359 +2749.186171 +2750.283999 +2751.388729 +2752.609941 +2753.689495 +2754.797491 +2755.868534 +2756.958529 +2758.050694 +2759.136935 +2760.207680 +2761.289290 +2762.373908 +2763.457767 +2764.548038 +2765.636047 +2766.716712 +2767.791784 +2768.885725 +2769.967453 +2771.039565 +2772.112314 +2773.189956 +2774.270536 +2775.363346 +2776.512061 +2777.608124 +2778.699135 +2779.776354 +2780.853920 +2781.928819 +2783.011723 +2784.081491 +2785.160768 +2786.234669 +2787.304727 +2788.382938 +2789.461741 +2790.565638 +2791.639825 +2792.728225 +2793.816050 +2794.910431 +2795.998863 +2797.067126 +2798.148103 +2799.236254 +2800.323370 +2801.508712 +2802.618887 +2803.736242 +2804.885000 +2805.985513 +2807.081416 +2808.169838 +2809.252899 +2810.333608 +2811.417806 +2812.490987 +2813.582422 +2814.664545 +2815.778867 +2816.864134 +2817.944199 +2819.036140 +2820.111965 +2821.194224 +2822.282893 +2823.375240 +2824.467315 +2825.561371 +2826.660316 +2827.760547 +2828.831380 +2829.910229 +2830.996354 +2832.071642 +2833.143255 +2834.223688 +2835.304483 +2836.381075 +2837.461676 +2838.550167 +2839.635401 +2840.733976 +2841.805590 +2842.893475 +2843.980008 +2845.077993 +2846.166786 +2847.246649 +2848.351825 +2849.457469 +2850.547318 +2851.630096 +2852.709768 +2853.794485 +2854.891198 +2855.986193 +2857.067757 +2858.144451 +2859.222657 +2860.299456 +2861.377829 +2862.469455 +2863.552735 +2864.633765 +2865.715300 +2866.799437 +2867.874098 +2868.949146 +2870.039932 +2871.116956 +2872.207051 +2873.338703 +2874.426809 +2875.518459 +2876.619843 +2877.698764 +2878.787413 +2879.876020 +2880.955690 +2882.033983 +2883.114343 +2884.195480 +2885.274868 +2886.358333 +2887.431304 +2888.508959 +2889.589677 +2890.688642 +2891.765610 +2892.838891 +2893.911192 +2894.986642 +2896.062348 +2897.203954 +2898.285370 +2899.369140 +2900.446939 +2901.521360 +2902.593970 +2903.670808 +2904.751922 +2905.828945 +2906.911729 +2907.988213 +2909.070930 +2910.167124 +2911.234107 +2912.313039 +2913.401233 +2914.481642 +2915.583272 +2916.665917 +2917.737482 +2918.831725 +2919.908597 +2920.999152 +2922.074287 +2923.161822 +2924.250124 +2925.317902 +2926.402177 +2927.503042 +2928.580734 +2929.661039 +2930.761577 +2931.838841 +2932.914206 +2933.994160 +2935.071320 +2936.140985 +2937.218871 +2938.296552 +2939.374873 +2940.472706 +2941.542862 +2942.609428 +2943.688830 +2944.799871 +2945.879239 +2946.970406 +2948.072680 +2949.155974 +2950.229575 +2951.310157 +2952.386726 +2953.471962 +2954.551985 +2955.640291 +2956.717961 +2957.797200 +2958.884689 +2959.968996 +2961.043598 +2962.128751 +2963.210846 +2964.290130 +2965.380158 +2966.453446 +2967.544819 +2968.703006 +2969.785196 +2970.875291 +2971.968474 +2973.051228 +2974.141773 +2975.230286 +2976.310202 +2977.388794 +2978.465013 +2979.539741 +2980.620272 +2981.704433 +2982.779859 +2983.860158 +2984.958854 +2986.049635 +2987.138249 +2988.223411 +2989.432972 +2990.543507 +2991.620547 +2992.778392 +2993.925819 +2995.019895 +2996.121383 +2997.201232 +2998.276994 +2999.367694 +3000.436240 +3001.518317 +3002.602589 +3003.704810 +3004.791168 +3005.873904 +3006.944243 +3008.028334 +3009.100633 +3010.175829 +3011.254281 +3012.330304 +3013.398860 +3014.485652 +3015.589048 +3016.679260 +3017.775138 +3018.847551 +3019.983179 +3021.070267 +3022.138018 +3023.215102 +3024.303355 +3025.382645 +3026.455826 +3027.527996 +3028.617641 +3029.695823 +3030.787631 +3031.878638 +3032.955227 +3034.037469 +3035.134528 +3036.222618 +3037.319522 +3038.399696 +3039.478226 +3040.576563 +3041.702455 +3042.789671 +3043.878774 +3044.963909 +3046.038797 +3047.122671 +3048.201760 +3049.279811 +3050.353277 +3051.436944 +3052.533009 +3053.615744 +3054.695218 +3055.767763 +3056.855524 +3057.937556 +3059.015363 +3060.102625 +3061.189848 +3062.256534 +3063.341090 +3064.429036 +3065.543503 +3066.619792 +3067.691662 +3068.766032 +3069.839226 +3070.915662 +3071.989342 +3073.073231 +3074.146999 +3075.226164 +3076.321699 +3077.421202 +3078.498427 +3079.592743 +3080.679477 +3081.774520 +3082.850712 +3083.943568 +3085.014507 +3086.097771 +3087.174466 +3088.282193 +3089.420960 +3090.511675 +3091.608562 +3092.696629 +3093.785299 +3094.870774 +3095.944848 +3097.029265 +3098.100924 +3099.172317 +3100.263246 +3101.349523 +3102.428150 +3103.514402 +3104.610674 +3105.709192 +3106.789126 +3107.866873 +3108.947388 +3110.029792 +3111.098193 +3112.191928 +3113.305690 +3114.383638 +3115.497611 +3116.584135 +3117.665101 +3118.737754 +3119.807200 +3120.881750 +3121.963160 +3123.036161 +3124.122113 +3125.200730 +3126.272283 +3127.349113 +3128.429345 +3129.517859 +3130.601677 +3131.701149 +3132.774253 +3133.897078 +3134.983570 +3136.060781 +3137.140676 +3138.213048 +3139.286742 +3140.404489 +3141.504694 +3142.582811 +3143.671351 +3144.755650 +3145.829693 +3146.904589 +3147.979983 +3149.089453 +3150.195817 +3151.274036 +3152.347150 +3153.417296 +3154.495962 +3155.583175 +3156.662217 +3157.747668 +3158.839270 +3159.919400 +3161.004856 +3162.106113 +3163.203761 +3164.310481 +3165.411344 +3166.515312 +3167.604668 +3168.690458 +3169.805972 +3170.893816 +3172.008600 +3173.093554 +3174.187199 +3175.273605 +3176.351127 +3177.524192 +3178.618915 +3179.731780 +3180.851802 +3182.024379 +3183.142735 +3184.244398 +3185.348101 +3186.464277 +3187.575262 +3188.686732 +3189.788928 +3190.881182 +3191.980026 +3193.096670 +3194.195570 +3195.306570 +3196.406388 +3197.499971 +3198.592942 +3199.683641 +3200.793696 +3201.877211 +3202.950035 +3204.031619 +3205.128175 +3206.210831 +3207.304871 +3208.398078 +3209.503306 +3210.627616 +3211.724912 +3212.805980 +3213.916487 +3215.021385 +3216.160117 +3217.258874 +3218.355948 +3219.474404 +3220.588893 +3221.678348 +3222.773124 +3223.875468 +3224.972835 +3226.095207 +3227.204890 +3228.305621 +3229.404517 +3230.505375 +3231.602154 +3232.680629 +3233.776348 +3234.886104 +3235.982935 +3237.066360 +3238.152430 +3239.242402 +3240.347964 +3241.448580 +3242.537429 +3243.632077 +3244.737218 +3245.841618 +3246.947942 +3248.069550 +3249.178164 +3250.272451 +3251.366907 +3252.460892 +3253.557964 +3254.639660 +3255.714360 +3256.786044 +3257.874780 +3259.008988 +3260.102655 +3261.198954 +3262.279708 +3263.382525 +3264.462032 +3265.566462 +3266.673149 +3267.767711 +3268.867240 +3269.975041 +3271.045195 +3272.125603 +3273.203103 +3274.282054 +3275.354669 +3276.437124 +3277.512689 +3278.584774 +3279.671301 +3280.763580 +3281.851402 +3282.952946 +3284.392831 +3285.523266 +3286.623582 +3287.692445 +3288.782865 +3289.882063 +3290.976256 +3292.065207 +3293.141925 +3294.258727 +3295.343961 +3296.420788 +3297.498565 +3298.572851 +3299.661073 +3300.744778 +3301.825433 +3302.904915 +3303.979196 +3305.062116 +3306.141996 +3307.267326 +3308.353329 +3309.433346 +3310.526632 +3311.625781 +3312.711450 +3313.809346 +3314.905790 +3316.029017 +3317.118700 +3318.189850 +3319.264747 +3320.360249 +3321.440391 +3322.519290 +3323.594553 +3324.686420 +3325.771997 +3326.860784 +3327.953039 +3329.034229 +3330.117370 +3331.191963 +3332.333128 +3333.411396 +3334.513729 +3335.615768 +3336.718329 +3337.810389 +3338.912570 +3340.028051 +3341.128701 +3342.231933 +3343.336253 +3344.432152 +3345.516737 +3346.603895 +3347.699167 +3348.798400 +3349.913833 +3351.010200 +3352.112565 +3353.199995 +3354.305792 +3355.391947 +3356.530787 +3357.616901 +3358.712491 +3359.815262 +3360.897243 +3361.981631 +3363.094255 +3364.201996 +3365.270552 +3366.501635 +3367.590316 +3368.682192 +3369.838756 +3371.007861 +3372.103307 +3373.191969 +3374.278034 +3375.362497 +3376.436725 +3377.502388 +3378.612251 +3379.703664 +3380.838147 +3381.928608 +3383.014761 +3384.095395 +3385.185331 +3386.263772 +3387.343641 +3388.415563 +3389.500057 +3390.578163 +3391.673455 +3392.760025 +3393.843406 +3394.924808 +3396.002753 +3397.091578 +3398.171722 +3399.251472 +3400.329644 +3401.413929 +3402.507021 +3403.604297 +3404.758866 +3405.846232 +3406.925321 +3408.000269 +3409.081124 +3410.171025 +3411.248995 +3412.339090 +3413.414395 +3414.561012 +3415.649225 +3416.755126 +3417.838499 +3418.912752 +3420.002573 +3421.093473 +3422.172664 +3423.245724 +3424.331979 +3425.404476 +3426.494913 +3427.602897 +3428.791993 +3429.871378 +3430.957459 +3432.032129 +3433.114572 +3434.212934 +3435.305214 +3436.422183 +3437.524112 +3438.609474 +3439.708442 +3440.793814 +3441.918999 +3443.005751 +3444.090960 +3445.180635 +3446.260880 +3447.338264 +3448.418650 +3449.513429 +3450.601682 +3451.714639 +3452.812488 +3453.895935 +3455.007569 +3456.082852 +3457.171275 +3458.250523 +3459.339409 +3460.424662 +3461.515649 +3462.602191 +3463.691853 +3464.768498 +3465.858930 +3466.957644 +3468.027067 +3469.110461 +3470.199365 +3471.271456 +3472.345857 +3473.437044 +3474.516257 +3475.587914 +3476.690251 +3477.767210 +3478.835339 +3479.917106 +3480.998079 +3482.067131 +3483.138636 +3484.225351 +3485.316890 +3486.392733 +3487.472350 +3488.550106 +3489.626058 +3490.701158 +3491.783511 +3492.859314 +3493.933513 +3495.018612 +3496.093450 +3497.167938 +3498.241200 +3499.329267 +3500.423689 +3501.534474 +3502.624549 +3503.697094 +3504.779041 +3505.860964 +3506.944201 +3508.020168 +3509.106050 +3510.180157 +3511.254687 +3512.339035 +3513.413854 +3514.498340 +3515.575227 +3516.688881 +3517.765038 +3518.836597 +3519.928775 +3521.013436 +3522.122172 +3523.207806 +3524.312464 +3525.427540 +3526.531596 +3527.627506 +3528.714538 +3529.804902 +3530.908112 +3531.992159 +3533.082186 +3534.168987 +3535.257311 +3536.348649 +3537.431744 +3538.522546 +3539.626870 +3540.729540 +3541.832291 +3542.925173 +3544.006249 +3545.095695 +3546.173043 +3547.287806 +3548.377229 +3549.501348 +3550.592169 +3551.690981 +3552.786741 +3553.881874 +3555.091193 +3556.184723 +3557.279258 +3558.472729 +3559.631529 +3560.758737 +3561.855345 +3562.939276 +3564.023948 +3565.124716 +3566.237786 +3567.326339 +3568.426887 +3569.522483 +3570.607316 +3571.703632 +3572.798807 +3573.958782 +3575.055263 +3576.150124 +3577.243555 +3578.328760 +3579.413240 +3580.511883 +3581.611990 +3582.698908 +3583.801958 +3584.896858 +3586.003078 +3587.092026 +3588.182986 +3589.271775 +3590.359590 +3591.480454 +3592.575082 +3593.662432 +3594.750278 +3595.833684 +3596.948512 +3598.045421 +3599.136462 +3600.243874 +3601.344814 +3602.441878 +3603.538677 +3604.626473 +3605.767980 +3607.174080 +3608.274036 +3609.358364 +3610.455232 +3611.560572 +3612.646699 +3613.738116 +3614.833184 +3615.925096 +3617.067467 +3618.150870 +3619.240222 +3620.346413 +3621.442285 +3622.544827 +3623.646278 +3624.738483 +3625.828377 +3626.927109 +3628.014562 +3629.102378 +3630.366982 +3631.843550 +3633.005669 +3634.218277 +3635.372023 +3636.479323 +3637.585200 +3638.670983 +3639.772476 +3640.858768 +3641.982136 +3643.069242 +3644.166608 +3645.272967 +3646.361196 +3647.445350 +3648.524861 +3649.635226 +3650.736374 +3651.827576 +3652.917111 +3654.007435 +3655.109297 +3656.200454 +3657.302466 +3658.391152 +3659.496625 +3660.597684 +3661.692290 +3662.798667 +3663.887606 +3665.007192 +3666.091413 +3667.203158 +3668.298753 +3669.382178 +3670.477088 +3671.589915 +3672.709845 +3673.860346 +3674.972643 +3676.058175 +3677.172117 +3678.253270 +3679.378792 +3680.473497 +3681.564052 +3682.651431 +3683.744886 +3684.832790 +3685.919921 +3687.022397 +3688.101639 +3689.205405 +3690.298484 +3691.422283 +3692.522215 +3693.619668 +3694.731204 +3695.868494 +3697.004875 +3698.091757 +3699.203631 +3700.299396 +3701.409858 +3702.599558 +3703.806373 +3704.937479 +3706.031223 +3707.134804 +3708.230311 +3709.347143 +3710.450175 +3711.561189 +3712.652411 +3713.742727 +3714.836936 +3715.914153 +3717.021956 +3718.110709 +3719.201953 +3720.304048 +3721.514829 +3722.606322 +3723.692767 +3724.782543 +3725.873582 +3726.973105 +3728.058917 +3729.146672 +3730.229429 +3731.336810 +3732.424703 +3733.514471 +3734.601452 +3735.716110 +3736.804399 +3737.894039 +3738.986856 +3740.094284 +3741.191799 +3742.316349 +3743.523011 +3744.630645 +3745.765445 +3746.938469 +3748.075622 +3749.186212 +3750.290954 +3751.376931 +3752.482948 +3753.573803 +3754.673498 +3755.772048 +3756.862445 +3757.965620 +3759.056298 +3760.138221 +3761.221057 +3762.324345 +3763.439724 +3764.546313 +3765.660147 +3766.795416 +3767.903489 +3769.044834 +3770.220579 +3771.368503 +3772.468437 +3773.580245 +3774.687367 +3775.807416 +3776.917760 +3778.021865 +3779.122465 +3780.224231 +3781.339187 +3782.443471 +3783.539852 +3784.644223 +3785.748398 +3786.852220 +3787.957277 +3789.045520 +3790.201848 +3791.294095 +3792.397070 +3793.507027 +3794.669515 +3795.759019 +3796.851650 +3797.941654 +3799.032987 +3800.127412 +3801.210500 +3802.288005 +3803.377013 +3804.478408 +3805.582660 +3806.685583 +3807.780199 +3808.864807 +3809.966098 +3811.063372 +3812.150122 +3813.237662 +3814.340860 +3815.436490 +3816.538609 +3817.656756 +3818.763283 +3819.849786 +3820.942803 +3822.049241 +3823.148467 +3824.241801 +3825.351274 +3826.440798 +3827.530982 +3828.620249 +3829.712150 +3830.824032 +3831.922900 +3833.007645 +3834.086998 +3835.179577 +3836.279836 +3837.385379 +3838.494949 +3839.585269 +3840.674060 +3841.806040 +3842.928062 +3844.010876 +3845.112484 +3846.192844 +3847.287544 +3848.386146 +3849.464420 +3850.572965 +3851.663620 +3852.771732 +3853.870073 +3854.963886 +3856.055301 +3857.142769 +3858.229059 +3859.335794 +3860.420883 +3861.515986 +3862.599521 +3863.682702 +3864.793065 +3865.880590 +3866.989568 +3868.133374 +3869.237080 +3870.330071 +3871.412555 +3872.505159 +3873.598670 +3874.702849 +3875.807134 +3876.909435 +3878.006666 +3879.110458 +3880.199720 +3881.291340 +3882.385138 +3883.521452 +3884.628886 +3885.734933 +3886.840805 +3887.925375 +3889.018310 +3890.114860 +3891.223700 +3892.379333 +3893.465719 +3894.561373 +3895.653716 +3896.749464 +3897.837546 +3898.923581 +3900.012035 +3901.119577 +3902.210031 +3903.299134 +3904.376304 +3905.484454 +3906.583143 +3907.656744 +3908.750531 +3909.841605 +3910.932371 +3912.021768 +3913.112945 +3914.228231 +3915.326655 +3916.423405 +3917.531071 +3918.630847 +3919.726156 +3920.821805 +3921.915688 +3923.008715 +3924.108084 +3925.199845 +3926.303008 +3927.384661 +3928.470841 +3929.559177 +3930.657557 +3931.831990 +3932.933620 +3934.035053 +3935.263900 +3936.537568 +3937.800980 +3939.020859 +3940.320561 +3941.638634 +3942.864973 +3944.035162 +3945.289102 +3946.550061 +3947.811015 +3948.982961 +3950.179674 +3951.364533 +3952.512517 +3953.640931 +3954.789549 +3956.013384 +3957.257911 +3958.501074 +3959.804725 +3961.109282 +3962.369510 +3963.626381 +3964.933377 +3966.206419 +3967.522127 +3968.866780 +3970.095127 +3971.364224 +3972.632437 +3973.860269 +3975.140094 +3976.530718 +3977.887903 +3979.165436 +3980.414802 +3981.591976 +3982.742193 +3983.934369 +3985.073167 +3986.232968 +3987.375605 +3988.505770 +3989.676844 +3990.827516 +3991.983870 +3993.236624 +3994.478768 +3995.712916 +3996.917235 +3998.103976 +3999.267677 +4000.456517 +4001.621643 +4002.766338 +4003.929278 +4005.106312 +4006.266849 +4007.399472 +4008.580301 +4009.766625 +4010.923475 +4012.043066 +4013.161186 +4014.306632 +4015.488597 +4016.622900 +4017.783275 +4018.895707 +4020.070866 +4021.256939 +4022.393240 +4023.526327 +4024.647629 +4025.761056 +4026.908890 +4028.102885 +4029.255053 +4030.447481 +4031.625527 +4032.744356 +4033.853298 +4034.993059 +4036.148868 +4037.294971 +4038.462421 +4039.599512 +4040.754437 +4041.866600 +4043.014683 +4044.168454 +4045.286703 +4046.481497 +4047.648064 +4048.799561 +4049.921941 +4051.043677 +4052.169157 +4053.297633 +4054.470955 +4055.628473 +4056.768011 +4057.896785 +4059.037872 +4060.225575 +4061.416166 +4062.583955 +4063.689925 +4064.813605 +4065.951203 +4067.108121 +4068.246747 +4069.348029 +4070.525881 +4071.739522 +4072.896330 +4074.048663 +4075.182190 +4076.342120 +4077.473992 +4078.600696 +4079.732934 +4080.947342 +4082.082377 +4083.205692 +4084.358461 +4085.522873 +4086.658714 +4087.807728 +4088.914926 +4090.082768 +4091.185820 +4092.319049 +4093.492807 +4094.641634 +4095.767285 +4096.926793 +4098.113247 +4099.291571 +4100.454423 +4101.661168 +4102.825717 +4104.009790 +4105.155725 +4106.306766 +4107.467824 +4108.608896 +4109.761008 +4110.901828 +4112.051957 +4113.227570 +4114.373612 +4115.537253 +4116.679924 +4117.820087 +4118.979255 +4120.264308 +4121.418588 +4122.588582 +4123.855442 +4125.071261 +4126.229127 +4127.377052 +4128.505127 +4129.663280 +4130.850749 +4132.008423 +4133.126665 +4134.286675 +4135.433377 +4136.535569 +4137.703026 +4138.862045 +4139.974834 +4141.121488 +4142.231350 +4143.376435 +4144.507797 +4145.668386 +4146.798936 +4147.986823 +4149.166987 +4150.308537 +4151.442202 +4152.565300 +4153.721180 +4154.875342 +4156.035586 +4157.249426 +4158.399721 +4159.624491 +4160.782317 +4161.949507 +4163.099362 +4164.236774 +4165.398093 +4166.553357 +4167.752393 +4168.936830 +4170.091726 +4171.278327 +4172.432272 +4173.601939 +4174.807625 +4175.955905 +4177.098179 +4178.247455 +4179.419383 +4180.622189 +4181.847467 +4183.012409 +4184.179335 +4185.356842 +4186.511921 +4187.782469 +4189.082922 +4190.337374 +4191.491376 +4192.680990 +4193.836831 +4194.999926 +4196.189859 +4197.375783 +4198.561138 +4199.761484 +4200.985610 +4202.139674 +4203.298491 +4204.459832 +4205.651719 +4206.864919 +4208.033534 +4209.211326 +4210.360658 +4211.520626 +4212.689278 +4213.837579 +4215.011398 +4216.160640 +4217.320164 +4218.477428 +4219.629500 +4220.784333 +4221.913461 +4223.085727 +4224.215912 +4225.341111 +4226.473027 +4227.616149 +4228.744301 +4229.902724 +4231.030673 +4232.179630 +4233.363343 +4234.484177 +4235.629635 +4236.750046 +4237.902694 +4239.056019 +4240.218362 +4241.341810 +4242.490954 +4243.669681 +4244.814137 +4245.955454 +4247.094007 +4248.224874 +4249.357006 +4250.518995 +4251.706211 +4252.938066 +4254.129860 +4255.289272 +4256.466594 +4257.630214 +4258.807878 +4259.968535 +4261.109645 +4262.245983 +4263.410323 +4264.539832 +4265.710666 +4266.844050 +4268.011206 +4269.121502 +4270.249681 +4271.385117 +4272.507783 +4273.631924 +4274.768503 +4275.917174 +4277.077430 +4278.243487 +4279.396210 +4280.573212 +4281.790596 +4282.889554 +4284.009664 +4285.152056 +4286.273188 +4287.441719 +4288.556262 +4289.800931 +4290.996775 +4292.128629 +4293.276324 +4294.425154 +4295.570409 +4296.704119 +4297.852537 +4298.986911 +4300.110065 +4301.284755 +4302.464896 +4303.686619 +4304.830989 +4305.976516 +4307.093312 +4308.196929 +4309.460333 +4310.606979 +4311.818390 +4313.066503 +4314.288995 +4315.470793 +4316.597599 +4317.716813 +4318.866485 +4320.021303 +4321.186613 +4322.297468 +4323.413255 +4324.522256 +4325.642613 +4326.762200 +4327.899516 +4329.047309 +4330.138808 +4331.219142 +4332.318068 +4333.403180 +4334.494348 +4335.592343 +4336.685948 +4337.786369 +4338.874537 +4339.964117 +4341.064327 +4342.162813 +4343.270449 +4344.349443 +4345.424154 +4346.517716 +4347.596378 +4348.701857 +4349.812977 +4350.907633 +4352.003051 +4353.183621 +4354.273324 +4355.359022 +4356.448914 +4357.545778 +4358.652238 +4359.758334 +4360.874475 +4361.964791 +4363.070494 +4364.154813 +4365.252224 +4366.345476 +4367.446616 +4368.538648 +4369.644969 +4370.737019 +4371.826161 +4372.913740 +4374.002354 +4375.094080 +4376.210218 +4377.430729 +4378.522901 +4379.608206 +4380.729787 +4381.820790 +4382.916366 +4384.015828 +4385.123249 +4386.224966 +4387.320397 +4388.413212 +4389.494471 +4390.580557 +4391.672603 +4392.762692 +4393.873190 +4394.960142 +4396.060404 +4397.148803 +4398.236699 +4399.361444 +4400.460046 +4401.579806 +4402.692138 +4403.783997 +4404.881220 +4405.978804 +4407.081462 +4408.182256 +4409.272413 +4410.365898 +4411.448931 +4412.542878 +4413.629896 +4414.718378 +4415.817902 +4416.910760 +4418.018727 +4419.131958 +4420.217715 +4421.322786 +4422.418523 +4423.522952 +4424.620980 +4425.731725 +4426.835170 +4427.932999 +4429.034689 +4430.129520 +4431.239432 +4432.323763 +4433.419362 +4434.511513 +4435.622911 +4436.718512 +4437.838636 +4438.925226 +4440.028598 +4441.139576 +4442.222616 +4443.334017 +4444.422540 +4445.506253 +4446.600372 +4447.686881 +4448.793308 +4449.887678 +4451.028818 +4452.120371 +4453.222709 +4454.315615 +4455.429996 +4456.518749 +4457.607627 +4458.702881 +4459.791475 +4460.890112 +4461.984027 +4463.065072 +4464.152929 +4465.248247 +4466.352614 +4467.452243 +4468.545680 +4469.705785 +4470.814603 +4471.911769 +4472.998860 +4474.123289 +4475.285337 +4476.379539 +4477.489666 +4478.586910 +4479.691116 +4480.784741 +4481.877066 +4482.971908 +4484.076602 +4485.171301 +4486.268926 +4487.358116 +4488.477604 +4489.571029 +4490.658217 +4491.749212 +4492.843009 +4493.937632 +4495.039944 +4496.146483 +4497.348953 +4498.477835 +4499.672222 +4500.889116 +4502.072951 +4503.191028 +4504.292901 +4505.388867 +4506.497332 +4507.593951 +4508.697009 +4509.799924 +4510.900418 +4512.007370 +4513.105673 +4514.202588 +4515.313348 +4516.408589 +4517.500923 +4518.603995 +4519.702431 +4520.813277 +4521.907657 +4523.020951 +4524.168503 +4525.289550 +4526.397799 +4527.502980 +4528.603712 +4529.802307 +4531.299054 +4532.668061 +4533.984319 +4535.244913 +4536.482287 +4537.775383 +4539.028349 +4540.200423 +4541.353244 +4542.562331 +4543.736569 +4544.895097 +4546.028011 +4547.235574 +4548.428207 +4549.631151 +4550.859263 +4552.008981 +4553.196678 +4554.334777 +4555.475828 +4556.605794 +4557.832671 +4559.002865 +4560.176975 +4561.286470 +4562.371119 +4563.480772 +4564.579059 +4565.666724 +4566.762229 +4567.948177 +4569.077980 +4570.170205 +4571.278171 +4572.373037 +4573.469540 +4574.561874 +4575.658642 +4576.830980 +4577.946947 +4579.040777 +4580.129590 +4581.225110 +4582.348532 +4583.440082 +4584.540037 +4585.624136 +4586.724124 +4587.811134 +4588.920205 +4590.015118 +4591.105827 +4592.205936 +4593.312254 +4594.430990 +4595.532449 +4596.627148 +4597.743404 +4598.836135 +4599.954455 +4601.055084 +4602.155970 +4603.249473 +4604.344652 +4605.422996 +4606.530108 +4607.615333 +4608.711045 +4609.804706 +4610.903112 +4612.000031 +4613.100163 +4614.199738 +4615.295599 +4616.404820 +4617.488290 +4618.603556 +4619.704465 +4620.801660 +4621.893570 +4622.980767 +4624.106835 +4625.232233 +4626.322205 +4627.425925 +4628.540154 +4629.626822 +4630.729895 +4631.836032 +4632.927851 +4634.014026 +4635.113009 +4636.195509 +4637.291888 +4638.403694 +4639.586530 +4640.722816 +4641.831058 +4642.946918 +4644.036547 +4645.124436 +4646.212954 +4647.300753 +4648.408209 +4649.572404 +4650.662473 +4651.750114 +4652.847084 +4653.942710 +4655.054461 +4656.173702 +4657.281554 +4658.381663 +4659.471821 +4660.578712 +4661.714637 +4662.810380 +4664.112310 +4665.252788 +4666.344104 +4667.443492 +4668.552748 +4669.711638 +4670.853407 +4671.995059 +4673.098946 +4674.202610 +4675.297190 +4676.400474 +4677.496627 +4678.591717 +4679.680530 +4680.785893 +4681.891249 +4682.989813 +4684.086123 +4685.185476 +4686.353924 +4687.640584 +4688.951424 +4690.200078 +4691.390028 +4692.703523 +4693.816839 +4694.979633 +4696.104176 +4697.201103 +4698.305607 +4699.458103 +4700.561370 +4701.648595 +4702.734350 +4703.818755 +4704.914682 +4705.988994 +4707.088143 +4708.180676 +4709.282706 +4710.371433 +4711.461386 +4712.565876 +4713.651686 +4714.737415 +4715.834434 +4716.932582 +4718.023372 +4719.157836 +4720.265707 +4721.363715 +4722.474517 +4723.597614 +4724.693902 +4725.788320 +4726.867258 +4727.959459 +4729.045309 +4730.148758 +4731.244295 +4732.341222 +4733.446466 +4734.539321 +4735.632345 +4736.727153 +4737.820508 +4738.908413 +4740.015311 +4741.100584 +4742.208957 +4743.295133 +4744.414637 +4745.505167 +4746.608721 +4747.709484 +4748.810268 +4749.884150 +4750.975572 +4752.077091 +4753.168096 +4754.263099 +4755.354996 +4756.470515 +4757.568083 +4758.676646 +4759.781312 +4760.881901 +4761.984454 +4763.087207 +4764.181996 +4765.295654 +4766.404453 +4767.506662 +4768.622610 +4769.750148 +4770.846009 +4771.942247 +4773.156618 +4774.253626 +4775.352525 +4776.451168 +4777.552518 +4778.646159 +4779.734038 +4780.831909 +4781.927274 +4783.014233 +4784.107003 +4785.213392 +4786.313517 +4787.426174 +4788.533958 +4789.624384 +4790.721478 +4791.831684 +4792.935641 +4794.052700 +4795.133125 +4796.224016 +4797.344794 +4798.447252 +4799.532453 +4800.637683 +4801.721023 +4802.808915 +4803.911810 +4805.004115 +4806.097170 +4807.228696 +4808.354073 +4809.465618 +4810.568633 +4811.667857 +4812.773956 +4813.895927 +4815.015905 +4816.126129 +4817.252111 +4818.372351 +4819.500595 +4820.619755 +4821.776510 +4822.893115 +4824.007766 +4825.135288 +4826.250751 +4827.379818 +4828.498660 +4829.653374 +4830.779901 +4831.897034 +4833.047059 +4834.168025 +4835.311532 +4836.428054 +4837.561105 +4838.673601 +4839.789527 +4840.902479 +4842.025024 +4843.152925 +4844.278875 +4845.394928 +4846.593107 +4847.726960 +4848.853530 +4849.970600 +4851.109258 +4852.318180 +4853.437089 +4854.553711 +4855.672675 +4856.791257 +4857.917034 +4859.027439 +4860.143753 +4861.261832 +4862.371145 +4863.500406 +4864.622801 +4865.749973 +4866.881596 +4867.994459 +4869.126074 +4870.249260 +4871.402317 +4872.524839 +4873.654638 +4874.880473 +4876.013307 +4877.135161 +4878.367934 +4879.503873 +4880.640497 +4881.792135 +4882.952925 +4884.066716 +4885.213756 +4886.327062 +4887.466492 +4888.592116 +4889.743914 +4890.871121 +4891.989676 +4893.110751 +4894.258843 +4895.377962 +4896.512052 +4897.654381 +4898.780520 +4899.896725 +4901.024873 +4902.145305 +4903.266610 +4904.384563 +4905.506847 +4906.616238 +4907.735966 +4908.864783 +4909.980666 +4911.097991 +4912.233449 +4913.360574 +4914.483075 +4915.608114 +4916.712711 +4917.843871 +4918.972829 +4920.105295 +4921.232214 +4922.398871 +4923.519069 +4924.653833 +4925.783527 +4926.908874 +4928.025302 +4929.144817 +4930.254994 +4931.410569 +4932.523140 +4933.648424 +4934.760498 +4935.882604 +4937.010903 +4938.247031 +4939.473977 +4940.640170 +4941.774595 +4942.894535 +4944.030299 +4945.176805 +4946.329353 +4947.543008 +4948.708195 +4949.880241 +4950.991477 +4952.112772 +4953.241053 +4954.362866 +4955.487360 +4956.601023 +4957.737658 +4958.875760 +4959.993240 +4961.129261 +4962.271693 +4963.390773 +4964.506598 +4965.621104 +4966.737585 +4967.852644 +4968.998931 +4970.144552 +4971.276386 +4972.476340 +4973.591204 +4974.707941 +4975.848392 +4976.968243 +4978.126828 +4979.242714 +4980.353352 +4981.460995 +4982.608892 +4983.727898 +4984.863694 +4985.990045 +4987.107958 +4988.217930 +4989.341207 +4990.456805 +4991.568149 +4992.686826 +4993.806992 +4994.928429 +4996.046214 +4997.169616 +4998.302289 +4999.426804 +5000.551804 +5001.676342 +5002.801224 +5003.944106 +5005.062295 +5006.190945 +5007.311406 +5008.447271 +5009.587830 +5010.715233 +5011.839708 +5012.969397 +5014.102815 +5015.219311 +5016.336956 +5017.488036 +5018.611353 +5019.738079 +5020.856233 +5022.067086 +5023.187186 +5024.319671 +5025.442319 +5026.568240 +5027.695100 +5028.808645 +5029.930805 +5031.065358 +5032.189983 +5033.338562 +5034.453347 +5035.549581 +5036.644166 +5037.741255 +5038.834677 +5039.930372 +5041.043905 +5042.151610 +5043.250888 +5044.396462 +5045.516735 +5046.726291 +5047.832823 +5048.928717 +5050.024710 +5051.136482 +5052.252369 +5053.341577 +5054.440863 +5055.536776 +5056.629375 +5057.737978 +5058.839706 +5059.939037 +5061.030696 +5062.131513 +5063.344306 +5064.469884 +5065.581430 +5066.802568 +5067.925962 +5069.026208 +5070.158777 +5071.392874 +5072.491023 +5073.604355 +5074.712116 +5075.824859 +5076.930445 +5078.038362 +5079.134555 +5080.232057 +5081.361437 +5082.479070 +5083.588811 +5084.705051 +5085.842347 +5086.945225 +5088.041161 +5089.147039 +5090.278587 +5091.471306 +5092.682002 +5093.809805 +5094.935872 +5096.033736 +5097.184185 +5098.293429 +5099.381246 +5100.504795 +5101.611266 +5102.703237 +5103.798222 +5104.897219 +5106.001594 +5107.093050 +5108.216206 +5109.315982 +5110.419052 +5111.517139 +5112.614093 +5113.721109 +5114.814214 +5115.914796 +5117.012021 +5118.122691 +5119.230874 +5120.369085 +5121.512649 +5122.602685 +5123.699992 +5124.798905 +5125.897353 +5127.005216 +5128.114102 +5129.199124 +5130.319812 +5131.428614 +5132.528879 +5133.631472 +5134.729031 +5135.833202 +5136.938544 +5138.073805 +5139.186164 +5140.324610 +5141.424506 +5142.534593 +5143.637930 +5144.767953 +5145.933454 +5147.021832 +5148.124840 +5149.227099 +5150.328279 +5151.457065 +5152.564662 +5153.686722 +5154.807453 +5155.943100 +5157.049976 +5158.201287 +5159.334914 +5160.460918 +5161.591376 +5162.715883 +5163.838418 +5164.961726 +5166.087969 +5167.221133 +5168.349225 +5169.501225 +5170.646456 +5171.787685 +5172.912234 +5174.033061 +5175.157859 +5176.286430 +5177.431836 +5178.554674 +5179.675604 +5180.805273 +5181.922536 +5183.064016 +5184.209944 +5185.323939 +5186.438832 +5187.546162 +5188.651238 +5189.745407 +5190.854855 +5191.947481 +5193.042065 +5194.191466 +5195.333815 +5196.432590 +5197.534125 +5198.647057 +5199.739719 +5200.833982 +5201.941067 +5203.037603 +5204.140556 +5205.266811 +5206.417063 +5207.551320 +5208.677743 +5209.802622 +5210.920940 +5212.040671 +5213.161487 +5214.280447 +5215.364527 +5216.455356 +5217.557210 +5218.661742 +5219.865619 +5220.965090 +5222.061762 +5223.159667 +5224.270615 +5225.370133 +5226.462929 +5227.554540 +5228.672017 +5229.779183 +5230.869913 +5231.983284 +5233.086424 +5234.205108 +5235.368671 +5236.474993 +5237.572698 +5238.671574 +5239.763661 +5240.862375 +5241.967950 +5243.061621 +5244.280840 +5245.411383 +5246.508657 +5247.602836 +5248.697549 +5249.803198 +5250.892106 +5252.130729 +5253.249169 +5254.391287 +5255.583196 +5256.690499 +5257.807807 +5258.905133 +5260.030810 +5261.136354 +5262.232910 +5263.338493 +5264.448264 +5265.565234 +5266.666735 +5267.808126 +5268.932604 +5270.048670 +5271.142202 +5272.233585 +5273.334520 +5274.470593 +5275.567064 +5276.659141 +5277.749613 +5278.838665 +5279.926157 +5281.021249 +5282.124089 +5283.224647 +5284.325310 +5285.426796 +5286.538351 +5287.626421 +5288.729365 +5289.839922 +5290.933124 +5292.026929 +5293.143065 +5294.267435 +5295.386861 +5296.479894 +5297.574740 +5298.699017 +5299.789968 +5300.894356 +5301.979866 +5303.081877 +5304.168440 +5305.266036 +5306.370482 +5307.471258 +5308.573211 +5309.666903 +5310.785779 +5311.876330 +5312.975822 +5314.074553 +5315.166819 +5316.257997 +5317.359966 +5318.525033 +5319.620177 +5320.748100 +5321.842945 +5322.931908 +5324.024124 +5325.119913 +5326.219857 +5327.308474 +5328.410725 +5329.556179 +5330.716923 +5331.816277 +5332.906176 +5333.998258 +5335.095669 +5336.185574 +5337.276201 +5338.365541 +5339.457704 +5340.575368 +5341.668879 +5342.785225 +5343.881412 +5345.033568 +5346.130880 +5347.230235 +5348.324582 +5349.409438 +5350.490949 +5351.596332 +5352.690125 +5353.785423 +5354.885589 +5355.998168 +5357.098028 +5358.220872 +5359.322655 +5360.419104 +5361.520824 +5362.617975 +5363.728312 +5364.828956 +5365.925070 +5367.138235 +5368.237112 +5369.333877 +5370.456241 +5371.545055 +5372.643062 +5373.732091 +5374.820191 +5375.917116 +5377.005452 +5378.124410 +5379.220576 +5380.303662 +5381.395293 +5382.503680 +5383.601311 +5384.698354 +5385.790628 +5386.885056 +5387.968726 +5389.060919 +5390.169738 +5391.328810 +5392.423047 +5393.516887 +5394.619823 +5395.729421 +5396.819028 +5397.912047 +5398.998161 +5400.091724 +5401.209085 +5402.321591 +5403.410323 +5404.499759 +5405.609261 +5406.696272 +5407.830239 +5408.922636 +5410.039127 +5411.128353 +5412.239179 +5413.328494 +5414.431484 +5415.544736 +5416.639328 +5417.740345 +5418.842478 +5419.949450 +5421.070883 +5422.157590 +5423.257645 +5424.424245 +5425.532344 +5426.637140 +5427.738990 +5428.834344 +5430.077427 +5431.325729 +5432.456696 +5433.571706 +5434.674915 +5435.778600 +5436.879376 +5437.981232 +5439.080964 +5440.413049 +5441.533802 +5442.663961 +5443.886042 +5445.007878 +5446.113299 +5447.221014 +5448.341544 +5449.437271 +5450.536405 +5451.632221 +5452.732859 +5453.848218 +5454.948944 +5456.047344 +5457.137717 +5458.229976 +5459.339131 +5460.440554 +5461.542270 +5462.639443 +5463.782298 +5464.890803 +5466.019384 +5467.125516 +5468.235586 +5469.332231 +5470.444779 +5471.537269 +5472.648605 +5473.753382 +5474.858335 +5475.975581 +5477.069292 +5478.168282 +5479.264637 +5480.363188 +5481.462610 +5482.558672 +5483.656436 +5484.792746 +5485.889166 +5486.976346 +5488.074302 +5489.177761 +5490.365776 +5491.451625 +5492.550369 +5493.648399 +5494.744223 +5495.865769 +5496.956966 +5498.090826 +5499.204980 +5500.292667 +5501.386186 +5502.488081 +5503.589092 +5504.684688 +5505.778997 +5506.866914 +5507.951665 +5509.038819 +5510.142974 +5511.233156 +5512.325339 +5513.440340 +5514.662134 +5515.758232 +5516.846657 +5517.969621 +5519.100451 +5520.221056 +5521.320878 +5522.419110 +5523.531683 +5524.627172 +5525.735645 +5526.834095 +5527.938366 +5529.043516 +5530.121824 +5531.242025 +5532.331995 +5533.442408 +5534.560987 +5535.666245 +5536.751763 +5537.849414 +5539.001752 +5540.096570 +5541.191738 +5542.281766 +5543.394890 +5544.497331 +5545.600335 +5546.704228 +5547.791319 +5548.888064 +5549.982029 +5551.083080 +5552.181411 +5553.276395 +5554.400743 +5555.520834 +5556.608322 +5557.706901 +5558.803572 +5559.907524 +5560.999263 +5562.094214 +5563.245630 +5564.357006 +5565.457581 +5566.542716 +5567.642029 +5568.732403 +5569.844557 +5571.021265 +5572.172320 +5573.285995 +5574.392273 +5575.489645 +5576.586771 +5577.690061 +5578.788981 +5579.884009 +5580.985075 +5582.084660 +5583.190843 +5584.300038 +5585.400245 +5586.498134 +5587.631089 +5588.730035 +5589.818945 +5590.919797 +5592.017710 +5593.109476 +5594.203056 +5595.334735 +5596.430421 +5597.530007 +5598.619653 +5599.722942 +5600.831408 +5601.918735 +5603.018066 +5604.124234 +5605.222238 +5606.310545 +5607.412211 +5608.504080 +5609.601349 +5610.710115 +5611.849860 +5613.013191 +5614.152757 +5615.275837 +5616.369407 +5617.456785 +5618.559584 +5619.669617 +5620.764820 +5621.874826 +5622.967717 +5624.083642 +5625.175947 +5626.300880 +5627.406086 +5628.587374 +5629.719972 +5630.824231 +5632.003211 +5633.159023 +5634.286289 +5635.390142 +5636.497084 +5637.720304 +5638.830126 +5639.943235 +5641.064175 +5642.157851 +5643.276846 +5644.381573 +5645.518417 +5646.609932 +5647.706256 +5648.792433 +5649.882478 +5650.982966 +5652.078790 +5653.180460 +5654.280975 +5655.384716 +5656.473997 +5657.558596 +5658.657823 +5659.756404 +5660.857570 +5662.001064 +5663.098005 +5664.210398 +5665.314999 +5666.417394 +5667.503547 +5668.600156 +5669.693131 +5670.815250 +5671.902075 +5673.007142 +5674.121555 +5675.227896 +5676.333608 +5677.416997 +5678.523541 +5679.628152 +5680.717061 +5681.816751 +5682.922480 +5684.031582 +5685.136886 +5686.317516 +5687.414475 +5688.519870 +5689.620057 +5690.722112 +5691.844221 +5692.937225 +5694.041300 +5695.152962 +5696.283956 +5697.385830 +5698.488114 +5699.585908 +5700.688732 +5701.772895 +5702.870188 +5703.969218 +5705.077220 +5706.177986 +5707.298000 +5708.433439 +5709.546529 +5710.681184 +5711.801013 +5712.903130 +5714.009802 +5715.111937 +5716.211430 +5717.305892 +5718.418383 +5719.510557 +5720.634704 +5721.752662 +5722.845857 +5723.954916 +5725.053173 +5726.151095 +5727.251317 +5728.334631 +5729.430486 +5730.527511 +5731.630677 +5732.732193 +5733.843813 +5735.044026 +5736.165700 +5737.247991 +5738.351069 +5739.451605 +5740.553210 +5741.648562 +5742.741303 +5743.840646 +5744.941129 +5746.047106 +5747.170865 +5748.269203 +5749.385988 +5750.496451 +5751.604799 +5752.715593 +5753.820317 +5754.927003 +5756.030147 +5757.123377 +5758.236471 +5759.372315 +5760.463276 +5761.564379 +5762.662634 +5763.768078 +5764.870187 +5765.962783 +5767.073734 +5768.164145 +5769.260082 +5770.367111 +5771.511892 +5772.605680 +5773.712759 +5774.841785 +5775.972548 +5777.063344 +5778.169246 +5779.260364 +5780.355556 +5781.445155 +5782.540526 +5783.746385 +5784.837766 +5785.975148 +5787.081630 +5788.194951 +5789.299721 +5790.394569 +5791.502837 +5792.594202 +5793.710891 +5794.818227 +5795.928526 +5797.025902 +5798.128838 +5799.217994 +5800.314948 +5801.406649 +5802.519076 +5803.622470 +5804.721327 +5805.816431 +5806.933184 +5808.022089 +5809.332881 +5810.429868 +5811.527177 +5812.621675 +5813.709503 +5814.810355 +5815.905427 +5817.098510 +5818.199064 +5819.309266 +5820.499359 +5821.667221 +5822.775329 +5823.862224 +5824.961587 +5826.051704 +5827.144665 +5828.250033 +5829.341084 +5830.442192 +5831.536089 +5832.620441 +5833.908064 +5835.006492 +5836.137084 +5837.230820 +5838.352609 +5839.452374 +5840.562106 +5841.674200 +5842.792252 +5843.901855 +5844.992388 +5846.109935 +5847.195857 +5848.285121 +5849.370171 +5850.462228 +5851.572203 +5852.661995 +5853.762196 +5854.852603 +5855.951728 +5857.061821 +5858.230057 +5859.323357 +5860.419679 +5861.509431 +5862.591910 +5863.687048 +5864.778322 +5865.864145 +5866.983343 +5868.091538 +5869.170620 +5870.265799 +5871.375709 +5872.461478 +5873.550874 +5874.645427 +5875.755775 +5876.841746 +5877.928454 +5879.021379 +5880.104565 +5881.204826 +5882.355532 +5883.453452 +5884.592003 +5885.720397 +5886.819574 +5887.918028 +5889.039022 +5890.158518 +5891.246749 +5892.339486 +5893.418905 +5894.507654 +5895.638424 +5896.771133 +5897.877802 +5898.989895 +5900.082817 +5901.193201 +5902.288729 +5903.379157 +5904.483174 +5905.591904 +5906.743999 +5907.836484 +5908.931807 +5910.036103 +5911.135118 +5912.221097 +5913.317442 +5914.414298 +5915.508609 +5916.592365 +5917.685262 +5918.785764 +5919.906912 +5921.034996 +5922.129667 +5923.248313 +5924.340281 +5925.432651 +5926.523400 +5927.605552 +5928.721942 +5929.834877 +5930.946847 +5932.047017 +5933.138630 +5934.244653 +5935.359429 +5936.454838 +5937.558520 +5938.646384 +5939.743674 +5940.841764 +5941.957129 +5943.038001 +5944.134959 +5945.228155 +5946.316827 +5947.404829 +5948.495850 +5949.598813 +5950.680203 +5951.759265 +5952.843163 +5953.954900 +5955.103041 +5956.181063 +5957.262367 +5958.368497 +5959.460852 +5960.576324 +5961.663659 +5962.784587 +5963.889218 +5964.989120 +5966.073311 +5967.168223 +5968.253237 +5969.364021 +5970.454549 +5971.582793 +5972.698685 +5973.798677 +5974.897044 +5975.990812 +5977.082520 +5978.160167 +5979.265097 +5980.416828 +5981.518854 +5982.610633 +5983.711113 +5984.820803 +5985.919515 +5987.025653 +5988.125398 +5989.207310 +5990.306458 +5991.408391 +5992.505104 +5993.608596 +5994.797355 +5996.025662 +5997.176945 +5998.264428 +5999.352242 +6000.446716 +6001.546282 +6002.640130 +6003.743394 +6004.909267 +6006.105548 +6007.325114 +6008.560951 +6009.870886 +6011.033085 +6012.280155 +6013.398355 +6014.539834 +6015.644179 +6016.738186 +6017.827410 +6018.936658 +6020.048972 +6021.166535 +6022.252207 +6023.367998 +6024.468010 +6025.566206 +6026.649470 +6027.734976 +6028.864724 +6030.019028 +6031.121050 +6032.251732 +6033.345934 +6034.446811 +6035.547122 +6036.637195 +6037.749515 +6038.859691 +6039.980068 +6041.076956 +6042.172707 +6043.271733 +6044.381602 +6045.482883 +6046.576906 +6047.691782 +6048.778358 +6049.891817 +6050.996030 +6052.104484 +6053.202659 +6054.371971 +6055.473801 +6056.575280 +6057.657719 +6058.754506 +6059.840081 +6060.953129 +6062.059458 +6063.152970 +6064.270916 +6065.377318 +6066.477571 +6067.573736 +6068.652976 +6069.754001 +6070.843816 +6071.950815 +6073.038126 +6074.136556 +6075.252323 +6076.366437 +6077.482060 +6078.642632 +6079.748076 +6080.861341 +6081.959433 +6083.052783 +6084.167090 +6085.275855 +6086.405372 +6087.532063 +6088.630408 +6089.727536 +6090.821971 +6091.943157 +6093.037666 +6094.149383 +6095.230268 +6096.336628 +6097.430645 +6098.518440 +6099.619539 +6100.712246 +6101.814543 +6102.950233 +6104.046330 +6105.144167 +6106.229962 +6107.318811 +6108.421538 +6109.522929 +6110.626947 +6111.719231 +6112.816715 +6113.914427 +6115.014126 +6116.116361 +6117.211769 +6118.294817 +6119.405264 +6120.491707 +6121.594492 +6122.686018 +6123.782069 +6124.876005 +6125.978403 +6127.076115 +6128.185944 +6129.280002 +6130.364580 +6131.450244 +6132.534474 +6133.618411 +6134.718348 +6135.816111 +6136.898534 +6137.989215 +6139.077712 +6140.176655 +6141.273687 +6142.363565 +6143.464178 +6144.557558 +6145.638290 +6146.761673 +6147.845185 +6148.942221 +6150.059864 +6151.164924 +6152.300745 +6153.409773 +6154.511701 +6155.593065 +6156.678911 +6157.764351 +6158.856458 +6159.971904 +6161.071744 +6162.163905 +6163.253358 +6164.352095 +6165.469016 +6166.556401 +6167.649517 +6168.733004 +6169.840084 +6170.930235 +6172.028286 +6173.119328 +6174.205501 +6175.312635 +6176.468362 +6177.560934 +6178.669354 +6179.770116 +6180.891407 +6181.979916 +6183.079020 +6184.164791 +6185.259965 +6186.392043 +6187.478786 +6188.568462 +6189.669867 +6190.757329 +6191.849482 +6192.964216 +6194.231879 +6195.343617 +6196.484094 +6197.639886 +6198.816668 +6199.930108 +6201.048724 +6202.145736 +6203.254552 +6204.351220 +6205.444959 +6206.558272 +6207.649264 +6208.762820 +6209.853464 +6210.979265 +6212.066726 +6213.163534 +6214.268222 +6215.373213 +6216.500366 +6217.584170 +6218.693288 +6219.794675 +6220.886584 +6221.989892 +6223.082647 +6224.176667 +6225.293409 +6226.387496 +6227.482042 +6228.577472 +6229.678267 +6230.765185 +6231.865450 +6232.952382 +6234.055048 +6235.146545 +6236.248354 +6237.341731 +6238.427895 +6239.525865 +6240.616787 +6241.722969 +6242.816654 +6243.914504 +6245.022262 +6246.127401 +6247.246478 +6248.340484 +6249.479463 +6250.577699 +6251.676967 +6252.767703 +6253.858206 +6254.959496 +6256.070385 +6257.165321 +6258.258268 +6259.356606 +6260.472265 +6261.587320 +6262.702246 +6263.797821 +6264.914025 +6266.017824 +6267.131506 +6268.229152 +6269.346570 +6270.447538 +6271.569868 +6272.678533 +6273.799289 +6274.929236 +6276.023905 +6277.129015 +6278.238708 +6279.345016 +6280.446162 +6281.558110 +6282.641730 +6283.732277 +6284.835663 +6285.935717 +6287.028896 +6288.118207 +6289.230099 +6290.379828 +6291.519155 +6292.651514 +6293.762454 +6294.887240 +6296.008755 +6297.144697 +6298.331520 +6299.459501 +6300.613184 +6301.742177 +6302.852062 +6303.983795 +6305.110826 +6306.246536 +6307.359187 +6308.486980 +6309.615970 +6310.743356 +6311.873456 +6312.996480 +6314.130984 +6315.259444 +6316.385424 +6317.505762 +6318.622796 +6319.739935 +6320.870184 +6322.014851 +6323.140839 +6324.337701 +6325.465139 +6326.586638 +6327.707450 +6328.833690 +6330.072301 +6331.274327 +6332.410562 +6333.539247 +6334.659971 +6335.800080 +6336.926357 +6338.049214 +6339.176529 +6340.305811 +6341.440640 +6342.564981 +6343.686633 +6344.812667 +6345.935557 +6347.065885 +6348.192819 +6349.398261 +6350.527401 +6351.640383 +6352.748676 +6353.876335 +6355.004621 +6356.136811 +6357.265102 +6358.385657 +6359.501589 +6360.617636 +6361.736074 +6362.865472 +6363.987806 +6365.126463 +6366.258636 +6367.378110 +6368.493014 +6369.608863 +6370.761348 +6371.890001 +6373.041550 +6374.235805 +6375.357977 +6376.485294 +6377.603467 +6378.746513 +6379.874209 +6380.996585 +6382.118714 +6383.347181 +6384.573778 +6385.960121 +6387.219803 +6388.503852 +6389.757721 +6390.943619 +6392.067243 +6393.178037 +6394.315662 +6395.447043 +6396.597060 +6397.754969 +6398.898977 +6400.088993 +6401.238274 +6402.362801 +6403.491425 +6404.612916 +6405.733991 +6406.877822 +6408.018747 +6409.110079 +6410.230628 +6411.325889 +6412.422653 +6413.534236 +6414.622573 +6415.723498 +6416.860498 +6417.956300 +6419.052949 +6420.165528 +6421.272812 +6422.386490 +6423.509596 +6424.683118 +6425.812954 +6426.936646 +6428.061143 +6429.180090 +6430.313730 +6431.471918 +6432.606782 +6433.738853 +6434.860304 +6436.006022 +6437.129338 +6438.242902 +6439.369841 +6440.485172 +6441.609584 +6442.735775 +6443.863806 +6444.985343 +6446.122731 +6447.244756 +6448.375005 +6449.547979 +6450.661740 +6451.789794 +6452.902277 +6454.031174 +6455.149174 +6456.269863 +6457.391686 +6458.504853 +6459.630241 +6460.761369 +6461.874442 +6462.989368 +6464.114482 +6465.233827 +6466.369932 +6467.506788 +6468.640626 +6469.798439 +6470.944293 +6472.128581 +6473.295185 +6474.511065 +6475.647689 +6476.792381 +6477.942432 +6479.071139 +6480.195267 +6481.335109 +6482.445803 +6483.558557 +6484.694236 +6485.819264 +6486.935577 +6488.054643 +6489.176213 +6490.292004 +6491.415786 +6492.544351 +6493.670036 +6494.786192 +6495.917850 +6497.071638 +6498.199041 +6499.309134 +6500.532237 +6501.664632 +6502.787109 +6503.901742 +6505.030863 +6506.157213 +6507.269232 +6508.379773 +6509.497846 +6510.619138 +6511.736922 +6512.828794 +6513.934104 +6515.068068 +6516.161868 +6517.272232 +6518.386720 +6519.488233 +6520.573503 +6521.694108 +6522.836153 +6523.957028 +6525.178366 +6526.316272 +6527.461844 +6528.578114 +6529.675819 +6530.790313 +6531.885870 +6532.985830 +6534.112065 +6535.210770 +6536.306269 +6537.399733 +6538.543992 +6539.632864 +6540.730641 +6541.847830 +6542.946213 +6544.046608 +6545.141156 +6546.248183 +6547.343430 +6548.434914 +6549.561405 +6550.665644 +6551.767273 +6552.857118 +6553.951102 +6555.047748 +6556.149870 +6557.247403 +6558.359408 +6559.447177 +6560.544277 +6561.642320 +6562.745358 +6563.877374 +6564.972829 +6566.079954 +6567.184678 +6568.275482 +6569.366733 +6570.467596 +6571.664302 +6572.804702 +6574.028047 +6575.241999 +6576.371558 +6577.469764 +6578.561802 +6579.663243 +6580.776058 +6581.879767 +6582.972785 +6584.101000 +6585.208074 +6586.311655 +6587.399974 +6588.506464 +6589.606571 +6590.700773 +6591.798892 +6592.903413 +6593.991187 +6595.093895 +6596.187624 +6597.303988 +6598.450148 +6599.540841 +6600.643706 +6601.738002 +6602.836102 +6603.923343 +6605.047626 +6606.159615 +6607.267028 +6608.360756 +6609.447063 +6610.544945 +6611.638540 +6612.751957 +6613.842042 +6614.933878 +6616.033862 +6617.127798 +6618.218155 +6619.334535 +6620.431830 +6621.541296 +6622.938784 +6624.029521 +6625.143080 +6626.241296 +6627.338089 +6628.447310 +6629.540896 +6630.651281 +6631.742023 +6632.863288 +6633.962379 +6635.060591 +6636.167156 +6637.265569 +6638.372132 +6639.491763 +6640.590497 +6641.699092 +6642.797935 +6643.952075 +6645.041575 +6646.167487 +6647.344863 +6648.432318 +6649.528887 +6650.647296 +6651.775159 +6652.862596 +6653.963190 +6655.067691 +6656.158991 +6657.259427 +6658.387685 +6659.514058 +6660.610850 +6661.728941 +6662.827884 +6663.906686 +6665.004597 +6666.093973 +6667.195329 +6668.295200 +6669.400719 +6670.493456 +6671.600998 +6672.805719 +6673.896530 +6674.998800 +6676.089485 +6677.232262 +6678.347227 +6679.441911 +6680.545673 +6681.647173 +6682.748433 +6683.844316 +6684.933142 +6686.032279 +6687.156834 +6688.245248 +6689.393515 +6690.499412 +6691.580618 +6692.693581 +6693.805234 +6694.910057 +6696.009519 +6697.264474 +6698.370323 +6699.468879 +6700.563712 +6701.661176 +6702.766039 +6703.880848 +6704.980106 +6706.075857 +6707.178237 +6708.278549 +6709.374630 +6710.475735 +6711.571489 +6712.668384 +6713.770126 +6714.863732 +6715.960323 +6717.053169 +6718.164373 +6719.261909 +6720.384149 +6721.490672 +6722.606767 +6723.697782 +6724.785130 +6725.895038 +6726.992353 +6728.087978 +6729.192458 +6730.284450 +6731.432991 +6732.552444 +6733.646101 +6734.746737 +6735.844299 +6736.948874 +6738.042760 +6739.133447 +6740.234401 +6741.330782 +6742.429855 +6743.539949 +6744.638686 +6745.738393 +6746.846143 +6747.979178 +6749.095701 +6750.255679 +6751.376028 +6752.501521 +6753.616103 +6754.709810 +6755.820230 +6756.924048 +6758.022208 +6759.121957 +6760.356398 +6761.480647 +6762.580005 +6763.787618 +6764.912086 +6766.041446 +6767.150867 +6768.260610 +6769.359046 +6770.470599 +6771.577120 +6772.708786 +6773.821905 +6774.925591 +6776.016695 +6777.111254 +6778.204055 +6779.299400 +6780.403370 +6781.494623 +6782.596827 +6783.691983 +6784.786006 +6785.913464 +6787.014065 +6788.135002 +6789.232216 +6790.333936 +6791.447918 +6792.540451 +6793.650727 +6794.760449 +6795.866048 +6796.964556 +6798.085196 +6799.197168 +6800.288458 +6801.391932 +6802.495689 +6803.593652 +6804.696343 +6805.802563 +6806.928173 +6808.024014 +6809.124593 +6810.216049 +6811.338212 +6812.434850 +6813.523694 +6814.626647 +6815.732923 +6816.824966 +6817.946938 +6819.055568 +6820.158102 +6821.267487 +6822.388205 +6823.483773 +6824.588746 +6825.686111 +6826.795639 +6827.910558 +6829.007336 +6830.108843 +6831.214822 +6832.304977 +6833.403234 +6834.520056 +6835.615038 +6836.701361 +6837.791622 +6838.893782 +6839.990416 +6841.080225 +6842.174502 +6843.283030 +6844.405746 +6845.506532 +6846.625653 +6847.753943 +6848.858101 +6849.951103 +6851.048522 +6852.156660 +6853.246426 +6854.361933 +6855.456985 +6856.577036 +6857.686147 +6858.784984 +6859.896925 +6861.006471 +6862.118172 +6863.221435 +6864.313844 +6865.427275 +6866.555537 +6867.645781 +6868.736747 +6869.828987 +6870.927997 +6872.030515 +6873.210129 +6874.304142 +6875.418825 +6876.555988 +6877.650489 +6878.741671 +6879.844276 +6880.965304 +6882.053241 +6883.134409 +6884.227031 +6885.320898 +6886.424559 +6887.507218 +6888.600256 +6889.701176 +6890.801973 +6891.905042 +6893.006544 +6894.097673 +6895.192888 +6896.291698 +6897.423156 +6898.595446 +6899.742582 +6900.900767 +6902.018509 +6903.134367 +6904.224799 +6905.329533 +6906.437819 +6907.571383 +6908.671353 +6909.756255 +6910.876344 +6911.981454 +6913.092419 +6914.184009 +6915.277562 +6916.376904 +6917.483764 +6918.590042 +6919.698567 +6920.814139 +6921.924372 +6923.122236 +6924.258897 +6925.418533 +6926.573650 +6927.715803 +6928.890003 +6930.056620 +6931.166192 +6932.345632 +6933.559347 +6934.772740 +6935.892787 +6936.999287 +6938.120577 +6939.211047 +6940.314632 +6941.426966 +6942.579810 +6943.682646 +6944.785783 +6945.893788 +6947.005973 +6948.217144 +6949.331140 +6950.416530 +6951.593246 +6952.741287 +6953.836511 +6954.938640 +6956.060177 +6957.155985 +6958.280129 +6959.380558 +6960.477244 +6961.582093 +6962.680863 +6963.779113 +6964.880335 +6965.981846 +6967.075739 +6968.175757 +6969.267854 +6970.363361 +6971.465774 +6972.584865 +6973.681329 +6974.785379 +6975.883827 +6976.977587 +6978.058205 +6979.157583 +6980.250197 +6981.347454 +6982.454521 +6983.545501 +6984.633436 +6985.739441 +6986.841545 +6987.945982 +6989.041130 +6990.185943 +6991.284527 +6992.389371 +6993.482174 +6994.589735 +6995.684112 +6996.776405 +6997.892470 +6998.990396 +7000.085964 +7001.169390 +7002.271287 +7003.368816 +7004.456298 +7005.548387 +7006.670954 +7007.772053 +7008.885421 +7010.002683 +7011.100196 +7012.196464 +7013.291456 +7014.401461 +7015.495629 +7016.605110 +7017.730217 +7018.829368 +7019.928434 +7021.034839 +7022.139004 +7023.300912 +7024.396067 +7025.491745 +7026.586701 +7027.679036 +7028.779246 +7029.879746 +7031.006001 +7032.097228 +7033.197415 +7034.299406 +7035.384801 +7036.518349 +7037.651486 +7038.793898 +7039.906808 +7041.004778 +7042.109418 +7043.223047 +7044.325869 +7045.443882 +7046.544075 +7047.666597 +7048.793499 +7049.883586 +7051.003227 +7052.119696 +7053.221426 +7054.323398 +7055.430600 +7056.543706 +7057.636516 +7058.725435 +7059.823561 +7060.944390 +7062.059600 +7063.174451 +7064.305431 +7065.399171 +7066.507650 +7067.617500 +7068.702104 +7069.800739 +7070.927810 +7072.020847 +7073.156495 +7074.256773 +7075.357539 +7076.459179 +7077.586880 +7078.695994 +7079.793360 +7080.894762 +7081.987535 +7083.083781 +7084.170567 +7085.272417 +7086.359802 +7087.465179 +7088.563895 +7089.663755 +7090.753258 +7091.873509 +7092.978221 +7094.075904 +7095.199776 +7096.313105 +7097.415313 +7098.513446 +7099.638033 +7100.738519 +7101.838558 +7102.934097 +7104.030518 +7105.128507 +7106.246997 +7107.344281 +7108.443906 +7109.586047 +7110.683655 +7111.788432 +7112.901372 +7114.008548 +7115.105041 +7116.195414 +7117.286306 +7118.383509 +7119.490848 +7120.597065 +7121.704780 +7122.828721 +7123.930577 +7125.020332 +7126.125330 +7127.243716 +7128.342885 +7129.449799 +7130.555589 +7131.692524 +7132.820196 +7133.938529 +7135.048430 +7136.152937 +7137.385494 +7138.497589 +7139.603440 +7140.854757 +7141.972521 +7143.087255 +7144.185977 +7145.280302 +7146.392978 +7147.497220 +7148.593927 +7149.697827 +7150.819905 +7151.937331 +7153.029775 +7154.116644 +7155.217410 +7156.324017 +7157.428722 +7158.538854 +7159.647448 +7160.759271 +7161.871085 +7162.969420 +7164.078791 +7165.193807 +7166.293864 +7167.401941 +7168.493376 +7169.581275 +7170.678662 +7171.798437 +7172.935820 +7174.038386 +7175.145018 +7176.256442 +7177.357832 +7178.446036 +7179.539853 +7180.627186 +7181.734980 +7182.867715 +7183.969784 +7185.072872 +7186.176719 +7187.267981 +7188.378891 +7189.475573 +7190.571689 +7191.693250 +7192.788941 +7193.887038 +7194.989686 +7196.112320 +7197.206322 +7198.323435 +7199.421026 +7200.515831 +7201.606548 +7202.701712 +7203.796598 +7204.911983 +7206.016916 +7207.113510 +7208.248409 +7209.340396 +7210.436597 +7211.556459 +7212.641143 +7213.761561 +7214.854189 +7215.950717 +7217.043820 +7218.137253 +7219.235326 +7220.335727 +7221.432414 +7222.526312 +7223.633951 +7224.727031 +7225.836680 +7226.946451 +7228.031357 +7229.121757 +7230.451034 +7231.574219 +7232.670585 +7233.760216 +7234.875538 +7235.966272 +7237.079790 +7238.179233 +7239.279359 +7240.376813 +7241.469020 +7242.587969 +7243.684837 +7244.779023 +7245.875824 +7246.969105 +7248.121545 +7249.219716 +7250.317689 +7251.415309 +7252.505223 +7253.598671 +7254.711500 +7255.816632 +7256.921701 +7258.034992 +7259.123776 +7260.227749 +7261.347180 +7262.445657 +7263.543168 +7264.636031 +7265.745500 +7266.832573 +7267.925832 +7269.018593 +7270.118412 +7271.192355 +7272.296424 +7273.427882 +7274.521466 +7275.603204 +7276.708833 +7277.793364 +7278.911385 +7280.033785 +7281.123509 +7282.230076 +7283.361362 +7284.476713 +7285.577652 +7286.684339 +7287.804299 +7288.892703 +7289.986706 +7291.133967 +7292.240458 +7293.336165 +7294.445233 +7295.541846 +7296.658026 +7297.739849 +7298.835389 +7299.932150 +7301.022631 +7302.129196 +7303.242371 +7304.366182 +7305.478946 +7306.582019 +7307.672628 +7308.774325 +7309.868023 +7310.966330 +7312.064890 +7313.162481 +7314.282451 +7315.380660 +7316.494397 +7317.587096 +7318.683074 +7319.824477 +7320.938945 +7322.054280 +7323.166659 +7324.291784 +7325.517793 +7326.641529 +7327.881663 +7329.260793 +7330.484546 +7331.656759 +7332.844116 +7334.044717 +7335.169599 +7336.268108 +7337.360694 +7338.457595 +7339.589021 +7340.687412 +7341.805806 +7342.912680 +7344.005707 +7345.095403 +7346.188088 +7347.279276 +7348.450610 +7349.555464 +7350.655609 +7351.772200 +7352.885026 +7353.997600 +7355.092255 +7356.179662 +7357.295533 +7358.398421 +7359.499032 +7360.615677 +7361.739654 +7362.960433 +7364.059387 +7365.160792 +7366.303502 +7367.405806 +7368.504735 +7369.600975 +7370.703533 +7371.833930 +7373.089958 +7374.247512 +7375.353625 +7376.491274 +7377.600826 +7378.701202 +7379.796135 +7380.904528 +7382.009360 +7383.110116 +7384.223431 +7385.316427 +7386.399607 +7387.505752 +7388.604528 +7389.711879 +7390.810660 +7391.913479 +7393.007268 +7394.095794 +7395.200112 +7396.290673 +7397.393210 +7398.510954 +7399.624569 +7400.724508 +7401.821579 +7402.914999 +7404.011240 +7405.135856 +7406.224701 +7407.325592 +7408.421112 +7409.522538 +7410.644692 +7411.741961 +7412.836422 +7413.944066 +7415.080558 +7416.210252 +7417.306080 +7418.403336 +7419.500246 +7420.602052 +7421.696603 +7422.798246 +7423.923015 +7425.019093 +7426.116834 +7427.222614 +7428.333533 +7429.424522 +7430.533090 +7431.630867 +7432.736207 +7433.826973 +7434.932408 +7436.030214 +7437.126274 +7438.228796 +7439.318088 +7440.409916 +7441.504303 +7442.615610 +7443.706573 +7444.798422 +7445.894986 +7446.988683 +7448.087849 +7449.194970 +7450.293176 +7451.384841 +7452.492908 +7453.596926 +7454.702198 +7455.786186 +7456.887275 +7457.991637 +7459.107412 +7460.195331 +7461.294591 +7462.434599 +7463.524197 +7464.629994 +7465.719445 +7466.817088 +7467.911525 +7469.008601 +7470.104996 +7471.209308 +7472.319550 +7473.439349 +7474.547229 +7475.649355 +7476.740933 +7477.846153 +7478.935608 +7480.028624 +7481.140450 +7482.239845 +7483.360309 +7484.485242 +7485.575652 +7486.667998 +7487.764630 +7488.862221 +7489.968036 +7491.051797 +7492.142160 +7493.233393 +7494.326517 +7495.420516 +7496.512964 +7497.624137 +7498.755640 +7499.841136 +7500.938466 +7502.048626 +7503.153704 +7504.254834 +7505.374062 +7506.475525 +7507.565369 +7508.676224 +7509.829850 +7510.923167 +7512.033770 +7513.143649 +7514.379020 +7515.477633 +7516.577066 +7517.788096 +7518.898804 +7520.000364 +7521.108075 +7522.205658 +7523.310524 +7524.448237 +7525.546856 +7526.648266 +7527.765387 +7528.862391 +7529.960174 +7531.046854 +7532.148451 +7533.250130 +7534.357103 +7535.452164 +7536.553173 +7537.666998 +7538.763374 +7539.886250 +7540.999532 +7542.087331 +7543.224759 +7544.316175 +7545.424301 +7546.523312 +7547.623983 +7548.728209 +7549.827503 +7550.942418 +7552.040761 +7553.171123 +7554.271913 +7555.362773 +7556.448812 +7557.545624 +7558.634301 +7559.771007 +7560.875426 +7561.962807 +7563.063519 +7564.160547 +7565.247083 +7566.337588 +7567.439480 +7568.543652 +7569.631741 +7570.723354 +7571.837089 +7572.936663 +7574.030297 +7575.143330 +7576.247337 +7577.367102 +7578.479496 +7579.574277 +7580.658355 +7581.760555 +7582.861108 +7583.970279 +7585.091598 +7586.208791 +7587.293191 +7588.401993 +7589.517771 +7590.618578 +7591.770250 +7592.915498 +7594.015072 +7595.126281 +7596.221070 +7597.318208 +7598.408595 +7599.556486 +7600.652090 +7601.753511 +7602.846719 +7603.982922 +7605.084568 +7606.193014 +7607.302129 +7608.398093 +7609.498994 +7610.628324 +7611.728478 +7612.811421 +7613.912635 +7614.999323 +7616.087822 +7617.183728 +7618.286043 +7619.385421 +7620.489147 +7621.588891 +7622.720862 +7623.834428 +7624.940553 +7626.034735 +7627.145974 +7628.249342 +7629.356794 +7630.449594 +7631.556143 +7632.657936 +7633.762316 +7634.856348 +7635.947623 +7637.048536 +7638.146802 +7639.255623 +7640.349978 +7641.457524 +7642.547942 +7643.652763 +7644.754351 +7645.868399 +7646.956625 +7648.053587 +7649.170995 +7650.264172 +7651.368684 +7652.472090 +7653.560072 +7654.654304 +7655.777840 +7656.908302 +7658.020049 +7659.112470 +7660.201054 +7661.315550 +7662.442736 +7663.541031 +7664.656670 +7665.762193 +7666.857777 +7667.970522 +7669.068522 +7670.184732 +7671.281375 +7672.378087 +7673.488464 +7674.607668 +7675.705660 +7676.797376 +7677.916661 +7679.013959 +7680.115095 +7681.227072 +7682.312490 +7683.428104 +7684.534193 +7685.623991 +7686.723529 +7687.820878 +7688.919775 +7690.041305 +7691.139765 +7692.257791 +7693.376899 +7694.498361 +7695.613772 +7696.742922 +7697.863243 +7699.044142 +7700.175463 +7701.310736 +7702.581374 +7703.712546 +7704.847097 +7706.043331 +7707.228843 +7708.362712 +7709.472946 +7710.607359 +7711.718673 +7712.816892 +7713.912873 +7715.011506 +7716.112925 +7717.219501 +7718.340395 +7719.446204 +7720.552324 +7721.663000 +7722.781807 +7723.900617 +7725.011605 +7726.161714 +7727.260766 +7728.362204 +7729.456943 +7730.549811 +7731.663184 +7732.767061 +7733.860064 +7734.955647 +7736.043110 +7737.161155 +7738.281385 +7739.379865 +7740.486736 +7741.592509 +7742.692241 +7743.789262 +7744.898701 +7746.005062 +7747.097562 +7748.189978 +7749.319606 +7750.429581 +7751.531609 +7752.624728 +7753.727034 +7754.825850 +7755.923311 +7757.015225 +7758.127537 +7759.215367 +7760.318058 +7761.422382 +7762.524275 +7763.621527 +7764.757794 +7765.866718 +7766.969337 +7768.085437 +7769.185560 +7770.283180 +7771.395244 +7772.506786 +7773.598961 +7774.709489 +7775.809292 +7776.907058 +7778.000067 +7779.103283 +7780.202481 +7781.306326 +7782.414154 +7783.514688 +7784.619698 +7785.739924 +7786.836133 +7787.935645 +7789.038858 +7790.128248 +7791.213157 +7792.327970 +7793.451499 +7794.544133 +7795.636145 +7796.728528 +7797.824478 +7798.966800 +7800.107267 +7801.252316 +7802.426931 +7803.610310 +7804.716018 +7805.830519 +7806.946714 +7808.067106 +7809.168515 +7810.296323 +7811.403182 +7812.498273 +7813.593952 +7814.716164 +7815.807707 +7816.909577 +7818.015581 +7819.100562 +7820.205138 +7821.306146 +7822.394376 +7823.484536 +7824.598392 +7825.698593 +7826.801506 +7827.904790 +7829.007953 +7830.126591 +7831.215904 +7832.327550 +7833.427321 +7834.519744 +7835.628532 +7836.732887 +7837.835489 +7838.951457 +7840.050385 +7841.161709 +7842.267478 +7843.363567 +7844.463472 +7845.587291 +7846.677387 +7847.779526 +7848.882412 +7850.029269 +7851.121176 +7852.230207 +7853.354198 +7854.449264 +7855.537505 +7856.635408 +7857.736162 +7858.824946 +7859.933521 +7861.019350 +7862.114376 +7863.224217 +7864.316403 +7865.406957 +7866.503054 +7867.596188 +7868.690516 +7869.780145 +7870.871579 +7871.956810 +7873.057474 +7874.186610 +7875.329383 +7876.446160 +7877.551663 +7878.644709 +7879.759536 +7880.875694 +7881.977140 +7883.076307 +7884.177409 +7885.298907 +7886.415876 +7887.552612 +7888.647078 +7889.750090 +7890.978342 +7892.111412 +7893.259687 +7894.452542 +7895.571811 +7896.682938 +7897.806631 +7898.909819 +7900.061683 +7901.159193 +7902.255584 +7903.361813 +7904.479733 +7905.585171 +7906.698390 +7907.802567 +7908.922418 +7910.067990 +7911.197606 +7912.305549 +7913.435800 +7914.561116 +7915.677945 +7916.808492 +7917.930376 +7919.061456 +7920.170970 +7921.283065 +7922.418536 +7923.534843 +7924.661585 +7925.815899 +7926.944222 +7928.078963 +7929.213339 +7930.329100 +7931.428732 +7932.545120 +7933.656937 +7934.789699 +7935.926535 +7937.040210 +7938.168724 +7939.307206 +7940.431943 +7941.557751 +7942.683186 +7943.811065 +7944.930402 +7946.130126 +7947.488170 +7948.621032 +7949.808066 +7951.064905 +7952.625493 +7953.751608 +7954.900060 +7956.023780 +7957.142702 +7958.267071 +7959.391904 +7960.529999 +7961.656044 +7962.779297 +7963.925604 +7965.043305 +7966.178410 +7967.321460 +7968.456661 +7969.573642 +7970.707579 +7971.820484 +7972.945494 +7974.078589 +7975.224384 +7976.347912 +7977.481432 +7978.598660 +7979.719541 +7980.845956 +7982.022044 +7983.154964 +7984.286762 +7985.430941 +7986.579134 +7987.709272 +7988.848219 +7989.960741 +7991.075696 +7992.221214 +7993.344905 +7994.479713 +7995.629388 +7996.757931 +7997.862285 +7998.991876 +8000.104390 +8001.197202 +8002.321133 +8003.426620 +8004.535188 +8005.637991 +8006.740895 +8007.853242 +8008.950209 +8010.053713 +8011.180687 +8012.282655 +8013.388065 +8014.478821 +8015.581455 +8016.675565 +8017.790358 +8018.897930 +8019.988569 +8021.083662 +8022.198056 +8023.308812 +8024.466042 +8025.605200 +8026.730249 +8027.829726 +8028.937114 +8030.058957 +8031.146467 +8032.242157 +8033.348383 +8034.441778 +8035.547961 +8036.642907 +8037.747193 +8038.853952 +8039.955651 +8041.058109 +8042.164206 +8043.267108 +8044.362857 +8045.498306 +8046.641532 +8047.745698 +8048.836299 +8049.946188 +8051.039692 +8052.136005 +8053.240798 +8054.336414 +8055.423665 +8056.514934 +8057.608043 +8058.710341 +8059.819870 +8060.918912 +8062.019329 +8063.133581 +8064.222372 +8065.327013 +8066.473179 +8067.572596 +8068.667652 +8069.781095 +8070.874328 +8071.971086 +8073.074911 +8074.174417 +8075.302942 +8076.410788 +8077.510391 +8078.651529 +8079.858430 +8081.045433 +8082.319764 +8083.621839 +8084.821569 +8086.037244 +8087.139845 +8088.299877 +8089.392245 +8090.499267 +8091.609574 +8092.754823 +8093.874723 +8094.975381 +8096.071182 +8097.181916 +8098.304654 +8099.420330 +8100.550934 +8101.647578 +8102.762490 +8103.859424 +8104.970374 +8106.081606 +8107.174922 +8108.316824 +8109.413322 +8110.533773 +8111.627259 +8112.732028 +8113.864077 +8114.949981 +8116.052981 +8117.148856 +8118.248763 +8119.337721 +8120.423169 +8121.519925 +8122.640892 +8123.752818 +8124.904690 +8126.032228 +8127.151905 +8128.260921 +8129.436516 +8131.024350 +8132.487871 +8133.746985 +8134.924052 +8136.113846 +8137.331341 +8138.501842 +8139.661172 +8140.785258 +8141.940224 +8143.142734 +8144.284579 +8145.409920 +8146.591170 +8147.721896 +8148.875525 +8150.079580 +8151.226269 +8152.397332 +8153.527048 +8154.639240 +8155.734868 +8156.822385 +8157.942936 +8159.052380 +8160.145815 +8161.244090 +8162.349450 +8163.461508 +8164.572203 +8165.672126 +8166.774893 +8167.867154 +8168.968285 +8170.076130 +8171.222992 +8172.317978 +8173.435372 +8174.568756 +8175.687521 +8176.837604 +8177.953555 +8179.064469 +8180.176762 +8181.296061 +8182.387953 +8183.531967 +8184.625746 +8185.720736 +8186.828259 +8187.934940 +8189.047202 +8190.137557 +8191.253187 +8192.366769 +8193.487300 +8194.668683 +8195.769624 +8196.920307 +8198.058232 +8199.192672 +8200.322125 +8201.411008 +8202.530008 +8203.668185 +8204.780606 +8205.891133 +8206.988681 +8208.086353 +8209.203375 +8210.313655 +8211.403573 +8212.501798 +8213.597652 +8214.705004 +8215.806172 +8216.903984 +8218.001740 +8219.130936 +8220.231927 +8221.333577 +8222.428541 +8223.535155 +8224.630580 +8225.798297 +8226.899023 +8227.995417 +8229.095900 +8230.191102 +8231.301442 +8232.417011 +8233.542741 +8234.646038 +8235.759251 +8236.868905 +8237.998173 +8239.094700 +8240.238889 +8241.332977 +8242.447462 +8243.549332 +8244.651962 +8245.788145 +8246.883317 +8247.976716 +8249.073159 +8250.184331 +8251.291496 +8252.403534 +8253.510182 +8254.604122 +8255.701042 +8256.795104 +8257.898813 +8259.000467 +8260.097191 +8261.213076 +8262.346229 +8263.492990 +8264.604614 +8265.707807 +8266.819606 +8268.030148 +8269.132602 +8270.239045 +8271.420881 +8272.656103 +8273.890119 +8275.053617 +8276.148613 +8277.263181 +8278.365033 +8279.477881 +8280.567372 +8281.660809 +8282.792636 +8283.906953 +8284.997674 +8286.115876 +8287.213632 +8288.305061 +8289.416309 +8290.522019 +8291.656255 +8292.745803 +8293.862736 +8294.963308 +8296.059579 +8297.167771 +8298.295903 +8299.410988 +8300.536504 +8301.634261 +8302.724837 +8303.849983 +8304.956030 +8306.047701 +8307.139487 +8308.239625 +8309.348377 +8310.455722 +8311.558934 +8312.658703 +8313.758966 +8314.855404 +8315.957746 +8317.055066 +8318.192589 +8319.312997 +8320.402500 +8321.500579 +8322.595417 +8323.692413 +8324.786493 +8325.924524 +8327.020248 +8328.124853 +8329.229614 +8330.325435 +8331.450896 +8332.549106 +8333.655324 +8334.771697 +8335.874137 +8336.962235 +8338.053806 +8339.170200 +8340.269867 +8341.374259 +8342.475795 +8343.594014 +8344.694481 +8345.783954 +8346.894364 +8348.003996 +8349.100150 +8350.220876 +8351.340759 +8352.454520 +8353.563155 +8354.689874 +8355.798001 +8356.900692 +8357.998410 +8359.098422 +8360.195674 +8361.288740 +8362.384849 +8363.495693 +8364.589652 +8365.693308 +8366.885334 +8367.981058 +8369.086461 +8370.188838 +8371.317011 +8372.407854 +8373.507883 +8374.598310 +8375.769552 +8376.861318 +8377.950256 +8379.044615 +8380.138186 +8381.233197 +8382.346865 +8383.444164 +8384.538524 +8385.621922 +8386.712452 +8387.798349 +8388.885237 +8389.975093 +8391.095542 +8392.177085 +8393.297309 +8394.403601 +8395.502717 +8396.595321 +8397.687297 +8398.803250 +8399.905052 +8401.016444 +8402.145939 +8403.247391 +8404.336662 +8405.442046 +8406.541418 +8407.634483 +8408.738786 +8409.839578 +8410.938981 +8412.039532 +8413.146964 +8414.253674 +8415.355184 +8416.445589 +8417.532109 +8418.651250 +8419.759889 +8420.853208 +8421.950373 +8423.041510 +8424.138084 +8425.269649 +8426.362388 +8427.471390 +8428.560014 +8429.683657 +8430.791586 +8431.898285 +8432.995494 +8434.108586 +8435.218807 +8436.325963 +8437.427554 +8438.528748 +8439.637754 +8440.734573 +8441.828711 +8442.933249 +8444.063134 +8445.154558 +8446.255721 +8447.357060 +8448.464209 +8449.578787 +8450.732814 +8451.840708 +8452.936212 +8454.044414 +8455.151803 +8456.416839 +8457.528339 +8458.631535 +8459.822070 +8461.058830 +8462.191835 +8463.299761 +8464.412719 +8465.509583 +8466.611707 +8467.707857 +8468.799533 +8469.913275 +8471.006317 +8472.114157 +8473.238958 +8474.353824 +8475.470178 +8476.581576 +8477.686364 +8478.792763 +8479.924381 +8481.014146 +8482.107756 +8483.211136 +8484.307612 +8485.404053 +8486.502220 +8487.589334 +8488.683162 +8489.789570 +8490.901478 +8492.008126 +8493.118720 +8494.243050 +8495.399386 +8496.497815 +8497.586724 +8498.689034 +8499.797308 +8500.905727 +8502.009626 +8503.123839 +8504.243419 +8505.336156 +8506.424299 +8507.532397 +8508.637431 +8509.739981 +8510.863363 +8511.956387 +8513.080690 +8514.347234 +8515.556866 +8516.655479 +8517.935543 +8519.194786 +8520.446939 +8521.686392 +8522.784143 +8523.901740 +8524.999321 +8526.115001 +8527.205919 +8528.326792 +8529.429454 +8530.538251 +8531.650680 +8532.747305 +8533.866016 +8534.972718 +8536.088101 +8537.185886 +8538.313213 +8539.446425 +8540.566224 +8541.665589 +8542.751996 +8543.848173 +8544.945971 +8546.033921 +8547.152082 +8548.248411 +8549.353072 +8550.497727 +8551.589128 +8552.692745 +8553.789880 +8554.885436 +8555.989979 +8557.118332 +8558.219810 +8559.342577 +8560.439335 +8561.557311 +8562.662622 +8563.766876 +8564.901254 +8566.035095 +8567.127130 +8568.219023 +8569.332804 +8570.445900 +8571.549059 +8572.632207 +8573.723945 +8574.835026 +8575.938552 +8577.039916 +8578.154814 +8579.270322 +8580.377526 +8581.471577 +8582.565057 +8583.663825 +8584.765973 +8585.866427 +8586.971256 +8588.074727 +8589.179450 +8590.278248 +8591.387778 +8592.487873 +8593.585211 +8594.680516 +8595.767862 +8596.861177 +8597.962244 +8599.059029 +8600.156629 +8601.310860 +8602.403197 +8603.499894 +8604.597661 +8605.696837 +8606.792250 +8607.905609 +8609.005609 +8610.099019 +8611.195614 +8612.295595 +8613.405023 +8614.555944 +8615.646421 +8616.741717 +8617.840413 +8618.936265 +8620.035908 +8621.131412 +8622.229725 +8623.336764 +8624.443405 +8625.584299 +8626.674857 +8627.780456 +8628.895418 +8630.007846 +8631.113268 +8632.209585 +8633.314854 +8634.421141 +8635.517322 +8636.609322 +8637.705701 +8638.797145 +8639.886313 +8640.984164 +8642.084928 +8643.202238 +8644.311582 +8645.494146 +8646.707109 +8648.088436 +8649.456058 +8650.670171 +8651.964263 +8653.115283 +8654.231502 +8655.325361 +8656.446528 +8657.543884 +8658.643377 +8659.765855 +8660.855874 +8661.952520 +8663.057333 +8664.153082 +8665.248978 +8666.348531 +8667.451229 +8668.554575 +8669.653455 +8670.752081 +8671.863030 +8672.964402 +8674.056363 +8675.151652 +8676.258817 +8677.367451 +8678.487716 +8679.580231 +8680.688891 +8681.802832 +8682.902318 +8684.030874 +8685.151592 +8686.252614 +8687.354322 +8688.449400 +8689.556599 +8690.668952 +8691.781540 +8692.874991 +8693.969581 +8695.067118 +8696.174838 +8697.274086 +8698.374382 +8699.474930 +8700.603723 +8701.714237 +8702.811854 +8703.913776 +8705.064519 +8706.233986 +8707.408687 +8708.509589 +8709.621083 +8710.713099 +8711.807489 +8712.904592 +8713.996857 +8715.100310 +8716.225803 +8717.332587 +8718.435527 +8719.528506 +8720.641004 +8721.744648 +8722.851223 +8723.954602 +8725.050127 +8726.154240 +8727.240136 +8728.340528 +8729.472608 +8730.576143 +8731.681028 +8732.784375 +8733.887008 +8735.010247 +8736.113170 +8737.209141 +8738.301175 +8739.424275 +8740.531959 +8741.635853 +8742.723728 +8743.819729 +8744.930433 +8746.035254 +8747.192016 +8748.293329 +8749.398547 +8750.503318 +8751.634444 +8752.730077 +8753.825511 +8754.921593 +8756.021957 +8757.134233 +8758.246305 +8759.343277 +8760.449391 +8761.546965 +8762.651501 +8763.748927 +8764.857968 +8765.953190 +8767.054464 +8768.146251 +8769.233208 +8770.337728 +8771.449069 +8772.549850 +8773.648918 +8774.764866 +8775.890615 +8776.990621 +8778.089746 +8779.185014 +8780.303010 +8781.397586 +8782.498846 +8783.601234 +8784.704442 +8785.794478 +8786.909968 +8788.065688 +8789.165553 +8790.268778 +8791.373007 +8792.476515 +8793.571114 +8794.676661 +8795.840105 +8796.931919 +8798.027479 +8799.161682 +8800.256477 +8801.374018 +8802.488619 +8803.606523 +8804.712398 +8805.800158 +8806.908368 +8808.007380 +8809.104743 +8810.237086 +8811.338440 +8812.435121 +8813.544189 +8814.642794 +8815.769317 +8816.857229 +8817.973638 +8819.063500 +8820.163480 +8821.275749 +8822.369994 +8823.463152 +8824.550389 +8825.648800 +8826.768804 +8827.877646 +8828.994689 +8830.092142 +8831.203464 +8832.311449 +8833.477045 +8834.583189 +8835.911297 +8837.200009 +8838.373000 +8839.549335 +8840.753566 +8841.919670 +8843.072715 +8844.185396 +8845.299098 +8846.414325 +8847.517131 +8848.620725 +8849.728240 +8850.843123 +8851.952817 +8853.056717 +8854.156080 +8855.271106 +8856.364314 +8857.466215 +8858.600958 +8859.714652 +8860.811717 +8861.922677 +8863.024428 +8864.130137 +8865.245994 +8866.362699 +8867.455629 +8868.552386 +8869.643024 +8870.763726 +8871.851176 +8872.948156 +8874.040725 +8875.140089 +8876.255037 +8877.353660 +8878.447112 +8879.555963 +8880.645012 +8881.738591 +8882.852149 +8883.980812 +8885.088439 +8886.184856 +8887.274059 +8888.386907 +8889.491014 +8890.588525 +8891.691662 +8892.797437 +8893.894988 +8894.998189 +8896.091620 +8897.191542 +8898.291019 +8899.396281 +8900.500680 +8901.600531 +8902.690812 +8903.821572 +8904.925301 +8906.035856 +8907.128373 +8908.245676 +8909.353463 +8910.442766 +8911.550541 +8912.702664 +8913.789456 +8914.886905 +8915.986093 +8917.093567 +8918.186224 +8919.281537 +8920.379185 +8921.498610 +8922.611813 +8923.695263 +8924.804036 +8925.933232 +8927.039729 +8928.137947 +8929.240863 +8930.366107 +8931.492719 +8932.606904 +8933.709000 +8934.813506 +8935.985825 +8937.069593 +8938.171513 +8939.288314 +8940.391023 +8941.487630 +8942.591951 +8943.718774 +8944.835572 +8945.935128 +8947.038025 +8948.126324 +8949.230936 +8950.327181 +8951.431971 +8952.540914 +8953.637431 +8954.739087 +8955.833297 +8956.942963 +8958.058431 +8959.155313 +8960.270437 +8961.365432 +8962.458938 +8963.563167 +8964.666939 +8965.766714 +8966.857592 +8967.944422 +8969.052302 +8970.149125 +8971.256391 +8972.385741 +8973.489944 +8974.596835 +8975.689703 +8976.795410 +8977.894124 +8978.992612 +8980.090469 +8981.193287 +8982.305462 +8983.406928 +8984.521454 +8985.632328 +8986.717177 +8987.837596 +8988.943564 +8990.041362 +8991.137473 +8992.234403 +8993.329157 +8994.449115 +8995.553624 +8996.650541 +8997.750331 +8998.852973 +8999.971008 +9001.143011 +9002.250767 +9003.355743 +9004.460494 +9005.575874 +9006.675018 +9007.780833 +9008.869721 +9010.002597 +9011.111453 +9012.224742 +9013.321379 +9014.443360 +9015.537948 +9016.654012 +9017.752792 +9018.853288 +9019.958611 +9021.065057 +9022.227900 +9023.430007 +9024.523716 +9025.952651 +9027.188254 +9028.443357 +9029.666498 +9031.026193 +9032.166026 +9033.295264 +9034.403878 +9035.519820 +9036.624272 +9037.729853 +9038.831261 +9039.944847 +9041.058042 +9042.172405 +9043.289268 +9044.397587 +9045.511773 +9046.633764 +9047.734821 +9048.830764 +9049.960701 +9051.053470 +9052.174731 +9053.285718 +9054.395891 +9055.508823 +9056.598554 +9057.687443 +9058.780174 +9059.894032 +9061.007220 +9062.115778 +9063.234998 +9064.333110 +9065.439802 +9066.529587 +9067.618565 +9068.728339 +9069.832718 +9070.938383 +9072.053698 +9073.147182 +9074.248563 +9075.377497 +9076.492204 +9077.602110 +9078.692760 +9079.808074 +9080.913718 +9082.019096 +9083.123012 +9084.241114 +9085.358174 +9086.507058 +9087.613480 +9088.718832 +9089.838489 +9090.944310 +9092.054112 +9093.169993 +9094.272286 +9095.380804 +9096.483524 +9097.640530 +9098.745740 +9099.850833 +9100.955101 +9102.095938 +9103.195813 +9104.303000 +9105.457020 +9106.560978 +9107.664003 +9108.796744 +9109.917533 +9111.020049 +9112.116346 +9113.215727 +9114.316323 +9115.412057 +9116.512904 +9117.640635 +9118.737884 +9119.836690 +9120.937738 +9122.056386 +9123.155639 +9124.250917 +9125.359001 +9126.482022 +9127.626400 +9128.723714 +9129.841750 +9130.946917 +9132.042681 +9133.148279 +9134.255389 +9135.392321 +9136.506439 +9137.599020 +9138.690711 +9139.795489 +9140.901667 +9141.989480 +9143.083722 +9144.181605 +9145.318999 +9146.439317 +9147.535804 +9148.636797 +9149.748107 +9150.863073 +9151.980413 +9153.111987 +9154.241911 +9155.353269 +9156.447261 +9157.544923 +9158.652176 +9159.761618 +9160.865587 +9161.991453 +9163.111451 +9164.209569 +9165.323166 +9166.419215 +9167.541773 +9168.639064 +9169.749093 +9170.844594 +9171.950217 +9173.123972 +9174.287248 +9175.395727 +9176.523726 +9177.626310 +9178.727162 +9179.817635 +9180.919713 +9182.037153 +9183.134666 +9184.240510 +9185.371939 +9186.477533 +9187.574744 +9188.665559 +9189.769881 +9190.869772 +9191.976518 +9193.088586 +9194.197503 +9195.336474 +9196.438224 +9197.554497 +9198.659590 +9199.779399 +9200.895385 +9202.017919 +9203.112823 +9204.209905 +9205.323024 +9206.425544 +9207.530984 +9208.645332 +9209.746706 +9210.939418 +9212.068098 +9213.232503 +9214.430473 +9215.548038 +9216.665022 +9217.766159 +9218.871093 +9220.010078 +9221.147606 +9222.262623 +9223.370778 +9224.522122 +9225.665526 +9226.797561 +9227.921621 +9229.029946 +9230.173030 +9231.272799 +9232.390363 +9233.482528 +9234.592251 +9235.709674 +9236.806235 +9237.911024 +9239.008463 +9240.102880 +9241.195937 +9242.281091 +9243.393038 +9244.535593 +9245.633632 +9246.732062 +9247.834865 +9248.926235 +9250.037471 +9251.139362 +9252.252389 +9253.362993 +9254.449246 +9255.543769 +9256.656051 +9257.757648 +9258.857514 +9259.964278 +9261.066295 +9262.195241 +9263.317682 +9264.420709 +9265.523412 +9266.615727 +9267.734111 +9268.833305 +9269.935472 +9271.087630 +9272.194615 +9273.295240 +9274.423223 +9275.522680 +9276.663621 +9277.778980 +9278.869097 +9279.970384 +9281.072320 +9282.175311 +9283.276172 +9284.381072 +9285.489800 +9286.593472 +9287.701291 +9288.805374 +9289.915843 +9291.015772 +9292.120747 +9293.232508 +9294.335837 +9295.432481 +9296.532326 +9297.628968 +9298.742686 +9299.838724 +9300.952075 +9302.093069 +9303.188269 +9304.290480 +9305.400971 +9306.519526 +9307.648257 +9308.746483 +9309.849077 +9310.962612 +9312.062565 +9313.163035 +9314.260989 +9315.456552 +9316.603178 +9317.733600 +9318.835859 +9319.941014 +9321.038993 +9322.138553 +9323.232798 +9324.330002 +9325.440371 +9326.529640 +9327.647330 +9328.741230 +9329.853235 +9330.982304 +9332.087955 +9333.183765 +9334.303099 +9335.400296 +9336.508062 +9337.607517 +9338.702273 +9339.809462 +9340.932466 +9342.046305 +9343.150027 +9344.237369 +9345.359396 +9346.476777 +9347.571227 +9348.673556 +9349.778819 +9350.878706 +9352.001401 +9353.097034 +9354.210508 +9355.323316 +9356.421226 +9357.518937 +9358.624325 +9359.736981 +9360.849913 +9361.949400 +9363.043032 +9364.165222 +9365.271958 +9366.494769 +9368.222131 +9369.357945 +9370.461598 +9371.563827 +9372.795362 +9374.338911 +9375.483874 +9376.598610 +9377.724507 +9378.821820 +9379.935049 +9381.064535 +9382.177810 +9383.283367 +9384.399104 +9385.511915 +9386.608058 +9387.703662 +9388.820793 +9389.925169 +9391.036201 +9392.144334 +9393.264872 +9394.383568 +9395.479919 +9396.597962 +9397.700239 +9398.961265 +9400.094979 +9401.205825 +9402.460736 +9403.637723 +9404.765345 +9405.877596 +9406.979870 +9408.101904 +9409.253415 +9410.377328 +9411.475546 +9412.584153 +9413.710860 +9414.817689 +9415.915231 +9417.038479 +9418.133231 +9419.246798 +9420.379805 +9421.479364 +9422.602665 +9423.707064 +9424.818761 +9425.947584 +9427.078574 +9428.186634 +9429.299016 +9430.402015 +9431.511149 +9432.621093 +9433.732833 +9434.835512 +9435.957967 +9437.057201 +9438.174232 +9439.262658 +9440.375242 +9441.500200 +9442.593269 +9443.684837 +9444.786129 +9445.915208 +9447.037050 +9448.136014 +9449.252446 +9450.368317 +9451.476910 +9452.579912 +9453.693094 +9454.785202 +9455.920690 +9457.056627 +9458.175643 +9459.279826 +9460.377282 +9461.488567 +9462.596382 +9463.709445 +9464.803980 +9465.957767 +9467.056543 +9468.163204 +9469.283483 +9470.426265 +9471.519313 +9472.628541 +9473.725538 +9474.831931 +9475.954645 +9477.089974 +9478.187028 +9479.277906 +9480.386548 +9481.480885 +9482.583650 +9483.684375 +9484.778218 +9485.905093 +9487.033180 +9488.128973 +9489.246570 +9490.345705 +9491.444550 +9492.537133 +9493.668303 +9494.766345 +9495.869447 +9496.993619 +9498.139433 +9499.237192 +9500.339536 +9501.448076 +9502.565343 +9503.661192 +9504.760337 +9505.915663 +9507.060672 +9508.149925 +9509.239917 +9510.363272 +9511.469791 +9512.580734 +9513.672517 +9514.776736 +9515.921787 +9517.024084 +9518.145114 +9519.265515 +9520.364648 +9521.472555 +9522.572477 +9523.694298 +9524.803083 +9525.903522 +9527.006345 +9528.121002 +9529.241764 +9530.344283 +9531.439782 +9532.541745 +9533.636331 +9534.730126 +9535.827886 +9536.932650 +9538.031231 +9539.131433 +9540.226526 +9541.335875 +9542.470030 +9543.582577 +9544.695663 +9545.786954 +9546.899930 +9547.992154 +9549.086799 +9550.201442 +9551.308495 +9552.412236 +9553.519259 +9554.629604 +9555.737091 +9556.842319 +9557.936255 +9559.061697 +9560.153737 +9561.245950 +9562.339532 +9563.471100 +9564.567362 +9565.673155 +9566.795816 +9567.900351 +9568.999336 +9570.103794 +9571.219647 +9572.310496 +9573.405289 +9574.504288 +9575.599498 +9576.704585 +9577.815950 +9578.906556 +9580.003211 +9581.128772 +9582.273278 +9583.385689 +9584.490216 +9585.589931 +9586.682607 +9587.845528 +9589.066788 +9590.225636 +9591.616794 +9592.783897 +9594.035710 +9595.148198 +9596.336927 +9597.421367 +9598.517917 +9599.618798 +9600.724543 +9601.872938 +9603.006982 +9604.093957 +9605.188401 +9606.290485 +9607.408934 +9608.538518 +9609.693508 +9610.938859 +9612.060788 +9613.152016 +9614.246078 +9615.358929 +9616.454481 +9617.549319 +9618.678072 +9619.773120 +9620.879469 +9622.015882 +9623.112039 +9624.199574 +9625.304918 +9626.404463 +9627.545162 +9628.631569 +9629.710825 +9630.809195 +9631.908556 +9632.986861 +9634.092158 +9635.180515 +9636.272791 +9637.354415 +9638.457540 +9639.564061 +9640.662585 +9641.763852 +9642.850442 +9643.939137 +9645.028183 +9646.181613 +9647.300566 +9648.387121 +9649.479773 +9650.568702 +9651.661473 +9652.762194 +9653.852262 +9654.969836 +9656.099997 +9657.208746 +9658.301823 +9659.386140 +9660.471386 +9661.567306 +9662.668553 +9663.754181 +9664.847473 +9665.945031 +9667.041486 +9668.143381 +9669.229774 +9670.320534 +9671.422216 +9672.568624 +9673.681246 +9674.769308 +9675.859115 +9676.961606 +9678.073601 +9679.161340 +9680.267284 +9681.365069 +9682.472561 +9683.569623 +9684.662603 +9685.743909 +9686.849534 +9687.944103 +9689.029073 +9690.127326 +9691.240878 +9692.357609 +9693.450578 +9694.573237 +9695.670280 +9696.845786 +9697.976419 +9699.090177 +9700.193231 +9701.288284 +9702.434731 +9703.519544 +9704.607717 +9705.690259 +9706.779000 +9707.885176 +9708.979949 +9710.078744 +9711.209312 +9712.310590 +9713.417570 +9714.524697 +9715.660858 +9716.753653 +9717.844489 +9718.948556 +9720.037216 +9721.135491 +9722.231884 +9723.325070 +9724.432588 +9725.566290 +9726.678432 +9727.786761 +9728.882375 +9729.971735 +9731.087533 +9732.199609 +9733.284450 +9734.400544 +9735.496419 +9736.601151 +9737.690746 +9738.790695 +9739.889664 +9740.999700 +9742.104167 +9743.203295 +9744.294614 +9745.392210 +9746.496625 +9747.594467 +9748.707920 +9749.798619 +9750.891110 +9751.978639 +9753.094152 +9754.184534 +9755.288629 +9756.384175 +9757.495808 +9758.605348 +9759.705809 +9760.836645 +9761.969423 +9763.067525 +9764.161708 +9765.278041 +9766.370016 +9767.484191 +9768.580211 +9769.690814 +9770.804474 +9771.891950 +9772.982206 +9774.074446 +9775.183876 +9776.377082 +9777.492942 +9778.591070 +9779.776183 +9780.925155 +9782.015754 +9783.122099 +9784.216207 +9785.301405 +9786.386335 +9787.484480 +9788.570536 +9789.670607 +9790.853973 +9791.964526 +9793.041377 +9794.134029 +9795.266375 +9796.359919 +9797.456657 +9798.589391 +9799.698805 +9800.803607 +9801.896601 +9802.990247 +9804.090570 +9805.191980 +9806.295730 +9807.385715 +9808.489290 +9809.591155 +9810.685699 +9811.806463 +9812.909794 +9814.001115 +9815.110519 +9816.233512 +9817.331064 +9818.417893 +9819.519009 +9820.609802 +9821.717978 +9822.828703 +9823.934357 +9825.044457 +9826.147738 +9827.244600 +9828.366341 +9829.462152 +9830.571739 +9831.679138 +9832.772294 +9833.887869 +9834.983162 +9836.075458 +9837.194081 +9838.285159 +9839.395683 +9840.486610 +9841.600286 +9842.703196 +9843.795415 +9844.899325 +9846.004057 +9847.162063 +9848.263650 +9849.366985 +9850.458245 +9851.565046 +9852.680975 +9853.779809 +9854.897847 +9856.002838 +9857.092581 +9858.190412 +9859.303466 +9860.423117 +9861.530985 +9862.636203 +9863.752487 +9864.853926 +9865.968093 +9867.105318 +9868.214099 +9869.316268 +9870.426820 +9871.572140 +9872.678370 +9873.770375 +9874.867885 +9875.977588 +9877.080562 +9878.177958 +9879.282402 +9880.375315 +9881.507430 +9882.600966 +9883.724704 +9884.872681 +9885.992053 +9887.107934 +9888.210523 +9889.310243 +9890.435728 +9891.533582 +9892.635622 +9893.730222 +9894.844820 +9895.959325 +9897.062991 +9898.165727 +9899.263180 +9900.371985 +9901.463846 +9902.568777 +9903.714338 +9904.866530 +9905.964934 +9907.063148 +9908.154614 +9909.252881 +9910.344973 +9911.448292 +9912.557503 +9913.658500 +9914.758154 +9915.870921 +9916.963876 +9918.073543 +9919.186455 +9920.282534 +9921.395911 +9922.487455 +9923.577681 +9924.663591 +9925.756741 +9926.850238 +9927.993667 +9929.089353 +9930.466692 +9931.597996 +9932.692374 +9933.786969 +9934.880090 +9936.021966 +9937.111319 +9938.215505 +9939.305116 +9940.391154 +9941.495378 +9942.592665 +9943.722066 +9944.813129 +9945.909500 +9947.005791 +9948.104718 +9949.191137 +9950.313521 +9951.401900 +9952.500281 +9953.636702 +9954.726668 +9955.812946 +9956.938340 +9958.031943 +9959.143366 +9960.240631 +9961.346318 +9962.443156 +9963.528208 +9964.674184 +9965.943902 +9967.272384 +9968.556313 +9969.679115 +9970.933713 +9972.032797 +9973.200874 +9974.294487 +9975.394954 +9976.518044 +9977.614729 +9978.737822 +9979.891168 +9981.042594 +9982.138289 +9983.239902 +9984.340548 +9985.446315 +9986.538317 +9987.624275 +9988.713425 +9989.845784 +9990.944980 +9992.045697 +9993.133283 +9994.230225 +9995.338836 +9996.443333 +9997.575930 +9998.710636 +9999.845688 +10000.942458 +10002.070070 +10003.186114 +10004.275142 +10005.359518 +10006.482065 +10007.596059 +10008.748219 +10009.853413 +10010.961755 +10012.195103 +10013.482009 +10015.613389 +10017.497488 +10018.607720 +10019.696217 +10020.788702 +10021.894485 +10022.991089 +10024.216719 +10025.335121 +10026.417292 +10027.512940 +10028.611192 +10029.696052 +10030.783972 +10031.884482 +10032.972215 +10034.077155 +10035.176327 +10036.271335 +10037.369099 +10038.465858 +10039.568909 +10040.658398 +10041.783471 +10042.876929 +10043.981072 +10045.061853 +10046.158394 +10047.269379 +10048.370560 +10049.463270 +10050.577306 +10051.673220 +10052.762755 +10053.894419 +10054.980003 +10056.106929 +10057.220505 +10058.299171 +10059.388049 +10060.476182 +10061.609163 +10062.699257 +10063.798944 +10064.887814 +10065.984057 +10067.081801 +10068.176681 +10069.272468 +10070.362243 +10071.464389 +10072.576331 +10073.709066 +10074.853858 +10076.004595 +10077.176959 +10078.279989 +10079.365165 +10080.476256 +10081.570534 +10082.696253 +10083.799517 +10084.923985 +10086.005029 +10087.094297 +10088.205172 +10089.289284 +10090.379890 +10091.470333 +10092.565626 +10093.656131 +10094.743863 +10095.836651 +10096.971764 +10100.027322 +10101.500783 +10103.067422 +10104.271505 +10105.493088 +10106.673411 +10107.815229 +10109.185234 +10110.376760 +10111.627166 +10113.546682 +10114.656837 +10115.853252 +10117.130011 +10118.269988 +10119.413067 +10120.675816 +10121.894846 +10123.032359 +10124.188419 +10125.454565 +10126.678489 +10128.430219 +10129.857561 +10131.167464 +10132.428331 +10133.583873 +10134.721397 +10135.862692 +10137.014212 +10138.222641 +10139.678610 +10141.657130 +10143.611622 +10145.480103 +10147.313087 +10148.519190 +10149.669735 +10150.810446 +10152.392281 +10155.172437 +10157.068531 +10158.447808 +10159.832729 +10161.113794 +10162.407693 +10163.668091 +10165.020633 +10166.294510 +10167.590482 +10168.916196 +10170.240327 +10171.497996 +10172.760565 +10174.186099 +10175.456849 +10176.745181 +10177.999954 +10179.402064 +10180.674908 +10182.063302 +10183.342665 +10184.599461 +10185.889638 +10187.190877 +10188.456686 +10189.738670 +10191.268359 +10193.027213 +10194.513247 +10196.100713 +10197.782529 +10199.464445 +10201.123684 +10202.709164 +10204.253789 +10205.538135 +10206.836175 +10208.095105 +10209.344373 +10210.635285 +10212.011920 +10213.305404 +10214.685193 +10216.291149 +10217.939935 +10219.620303 +10220.915589 +10222.223420 +10223.486357 +10224.739692 +10226.057416 +10227.418722 +10228.757747 +10230.026513 +10231.360384 +10232.695274 +10234.122570 +10235.872406 +10237.596748 +10239.334283 +10240.829744 +10242.508257 +10244.110808 +10245.592380 +10246.975443 +10248.297597 +10249.532939 +10250.971573 +10252.609108 +10254.204946 +10255.596285 +10257.345219 +10258.688556 +10259.979005 +10261.446495 +10262.762857 +10264.185637 +10265.929926 +10267.644012 +10268.985920 +10270.374146 +10272.425062 +10275.932751 +10278.784260 +10279.956017 +10281.127526 +10282.525989 +10283.685801 +10285.018323 +10286.134658 +10287.245275 +10288.352303 +10289.464594 +10290.610014 +10292.264244 +10293.552541 +10294.760530 +10295.923421 +10297.032363 +10298.132228 +10299.238949 +10300.438188 +10301.658585 +10302.858495 +10304.055460 +10305.165076 +10306.306910 +10307.457530 +10308.571225 +10309.725569 +10311.224907 +10312.827284 +10314.233412 +10315.524609 +10316.968721 +10318.421668 +10319.509431 +10320.857794 +10322.125095 +10323.792207 +10325.039729 +10326.217989 +10327.488628 +10328.742920 +10329.922989 +10331.156197 +10332.347549 +10333.532693 +10334.766059 +10336.008999 +10337.226179 +10338.587228 +10339.818622 +10340.936201 +10342.034389 +10343.273189 +10344.452121 +10346.470791 +10349.084406 +10350.430343 +10352.081702 +10353.618057 +10355.613951 +10356.913976 +10358.731124 +10360.057225 +10361.330034 +10362.454695 +10363.761516 +10365.881272 +10367.398913 +10369.349071 +10370.690559 +10372.017901 +10373.251611 +10374.752152 +10375.900385 +10377.117269 +10379.509427 +10380.774503 +10381.935859 +10383.048437 +10384.168611 +10385.371208 +10386.851903 +10388.149424 +10389.421729 +10390.588932 +10391.805536 +10393.094141 +10394.416543 +10395.558568 +10396.722803 +10398.022546 +10399.332895 +10400.469810 +10401.608865 +10402.779000 +10403.948111 +10405.088342 +10406.203876 +10407.344285 +10408.492349 +10409.794141 +10411.288032 +10412.470359 +10413.581979 +10414.731440 +10415.868628 +10417.022820 +10418.163051 +10419.328501 +10420.453028 +10421.614392 +10422.789704 +10423.949840 +10425.184694 +10426.334915 +10427.482337 +10428.613568 +10429.754442 +10430.915415 +10432.140392 +10433.287961 +10434.531083 +10435.876887 +10437.045598 +10438.186129 +10439.327227 +10440.463015 +10441.624972 +10442.817986 +10443.937786 +10445.146503 +10446.298545 +10447.451986 +10448.605544 +10449.788882 +10450.934038 +10452.101551 +10453.273556 +10454.504956 +10455.659799 +10456.833557 +10458.148776 +10459.330796 +10460.460335 +10461.591301 +10462.707647 +10463.842364 +10465.018771 +10466.163755 +10467.304357 +10468.469008 +10469.634240 +10470.814400 +10471.995457 +10473.168136 +10474.300887 +10475.424577 +10476.553722 +10477.684556 +10478.825083 +10480.002546 +10481.141563 +10482.309557 +10483.505783 +10484.716796 +10485.842421 +10486.946350 +10488.102276 +10489.221615 +10490.363285 +10491.515403 +10492.794649 +10493.955157 +10495.080268 +10496.214399 +10497.324013 +10498.458433 +10499.556440 +10500.706425 +10501.896545 +10503.065147 +10504.191131 +10505.371521 +10506.548206 +10507.690835 +10508.849346 +10509.962403 +10511.144476 +10512.298139 +10513.513265 +10514.700309 +10515.813918 +10516.969879 +10518.088025 +10519.280710 +10520.482515 +10521.614498 +10522.750139 +10523.971027 +10525.140117 +10526.250444 +10527.509430 +10528.622119 +10529.849006 +10531.041862 +10532.165176 +10533.274810 +10534.405186 +10535.501730 +10536.606858 +10537.809185 +10538.908159 +10540.035677 +10541.160188 +10542.293710 +10543.441692 +10544.566799 +10545.707523 +10546.844208 +10547.976289 +10549.115313 +10550.260943 +10551.400995 +10552.537274 +10553.710722 +10555.426403 +10556.896546 +10558.278060 +10559.663935 +10561.124127 +10562.546521 +10564.077973 +10565.219387 +10566.413179 +10567.587328 +10568.899012 +10570.494905 +10571.811933 +10573.103050 +10574.207717 +10575.333295 +10576.483620 +10577.622596 +10578.735139 +10579.891389 +10581.024069 +10582.964099 +10584.510377 +10585.666660 +10586.805514 +10587.921405 +10589.027941 +10590.161955 +10591.278800 +10592.432486 +10593.585453 +10594.732254 +10595.917189 +10597.026260 +10598.146523 +10599.420035 +10600.528813 +10601.674422 +10602.872649 +10604.011335 +10605.152900 +10606.256953 +10607.368563 +10608.555971 +10609.717460 +10610.938776 +10612.093493 +10613.274894 +10614.447821 +10615.552037 +10616.660388 +10617.778713 +10618.948660 +10620.080105 +10621.209048 +10622.405490 +10623.586358 +10624.693178 +10625.820091 +10627.041579 +10628.200766 +10629.336818 +10630.473177 +10631.585106 +10632.720465 +10633.813121 +10634.929947 +10636.043851 +10637.147178 +10638.299282 +10639.449306 +10640.594452 +10641.702754 +10642.822648 +10643.962919 +10645.066888 +10646.178357 +10647.305005 +10648.416858 +10649.539796 +10650.665597 +10651.786585 +10652.913208 +10654.061748 +10655.194798 +10656.290490 +10657.394402 +10658.546810 +10659.673103 +10660.841463 +10662.213285 +10663.510762 +10664.645490 +10665.754991 +10666.946443 +10668.098417 +10669.268233 +10670.397937 +10671.520446 +10672.624690 +10673.813442 +10675.027722 +10676.168738 +10677.288495 +10678.420424 +10679.533812 +10680.649220 +10681.811990 +10683.000988 +10684.131870 +10685.310816 +10686.470694 +10687.659376 +10688.799080 +10689.947097 +10691.132718 +10692.267521 +10693.464732 +10694.622510 +10695.743763 +10696.876202 +10698.014843 +10699.160684 +10700.327185 +10701.483293 +10702.640105 +10703.832949 +10704.990656 +10706.131936 +10707.321787 +10708.456914 +10709.587719 +10710.785590 +10711.912344 +10713.071074 +10714.199562 +10715.370984 +10716.481252 +10717.732486 +10719.283639 +10720.655066 +10722.130786 +10723.603341 +10724.745617 +10726.100583 +10727.546992 +10728.943926 +10730.198029 +10731.624514 +10732.767097 +10733.879695 +10734.991738 +10736.094928 +10737.221457 +10738.403511 +10739.665816 +10741.121094 +10742.255119 +10743.424514 +10744.565316 +10745.787471 +10747.052313 +10748.227102 +10749.344371 +10750.450118 +10751.567346 +10752.677842 +10753.792040 +10754.931969 +10756.029645 +10757.132547 +10758.262260 +10759.374446 +10760.473224 +10761.645278 +10762.831445 +10763.985037 +10765.125510 +10766.255488 +10767.417333 +10768.537409 +10769.690554 +10770.826002 +10771.939743 +10773.074302 +10774.205168 +10775.353880 +10776.498448 +10777.655623 +10778.791755 +10779.970010 +10781.161974 +10782.540208 +10783.703629 +10784.816236 +10785.954676 +10787.059313 +10788.155068 +10789.289146 +10790.721050 +10792.133603 +10793.602291 +10794.854840 +10795.990389 +10797.546619 +10799.580786 +10801.328099 +10802.968388 +10804.289867 +10805.688909 +10807.055743 +10808.501696 +10810.132133 +10811.615576 +10812.787403 +10813.948679 +10815.086568 +10816.243055 +10817.363813 +10818.495501 +10819.641399 +10820.766905 +10821.887722 +10823.012470 +10824.126977 +10825.259458 +10826.370285 +10827.508236 +10828.791898 +10830.054540 +10831.214654 +10832.388341 +10833.543721 +10834.755467 +10835.970698 +10837.106942 +10838.257559 +10839.588600 +10840.752469 +10841.897233 +10843.057444 +10844.198121 +10845.343409 +10846.472805 +10847.782501 +10848.931516 +10850.774457 +10852.083422 +10853.514599 +10855.631093 +10857.195802 +10858.488317 +10859.667758 +10860.802189 +10861.918087 +10863.280939 +10864.469630 +10865.657210 +10866.950910 +10868.068182 +10869.211251 +10870.416219 +10871.566542 +10872.752510 +10873.918406 +10875.039365 +10876.220106 +10877.365726 +10878.504535 +10879.727567 +10880.830556 +10882.029237 +10883.471777 +10884.618527 +10885.752056 +10886.848716 +10887.999931 +10889.113058 +10890.282261 +10891.657856 +10893.200766 +10894.428363 +10895.539827 +10896.700013 +10897.817236 +10898.974852 +10900.389880 +10901.557219 +10902.818157 +10903.953880 +10905.090605 +10906.206726 +10907.357815 +10908.491742 +10909.621705 +10910.786991 +10911.936198 +10913.170176 +10914.323880 +10915.450034 +10916.687774 +10917.807239 +10919.102852 +10920.254262 +10921.406124 +10922.598313 +10923.752569 +10924.883810 +10926.023175 +10927.125802 +10928.243324 +10929.423890 +10930.594092 +10931.719742 +10933.059484 +10934.275865 +10935.379069 +10936.511126 +10937.836282 +10938.987306 +10940.124327 +10941.266885 +10942.645045 +10943.872985 +10945.463129 +10947.032285 +10948.159702 +10949.597327 +10950.852165 +10953.028998 +10954.719255 +10955.845810 +10957.504999 +10958.895198 +10959.990909 +10961.246724 +10962.660565 +10963.819518 +10965.160734 +10966.382642 +10968.192664 +10969.533075 +10970.777809 +10972.400826 +10973.519840 +10974.668090 +10975.784446 +10976.963122 +10978.068132 +10979.186753 +10980.319574 +10981.474241 +10982.596037 +10983.724564 +10984.810618 +10985.921645 +10987.046908 +10988.220593 +10989.355762 +10990.457299 +10991.596546 +10992.693154 +10993.790532 +10994.921855 +10996.687991 +10997.950082 +10999.208178 +11000.368473 +11001.519668 +11002.645281 +11003.799706 +11004.981836 +11006.160953 +11007.293961 +11008.433652 +11009.820473 +11011.052997 +11012.214678 +11013.466777 +11014.729375 +11016.651373 +11017.982600 +11019.122675 +11020.342453 +11021.528985 +11022.852097 +11024.063334 +11025.194636 +11026.324451 +11027.532169 +11028.757369 +11029.915755 +11031.077645 +11032.254870 +11033.398840 +11034.740962 +11036.161301 +11037.760744 +11039.131663 +11040.363476 +11041.655691 +11043.096844 +11044.303150 +11045.662587 +11046.868940 +11048.175026 +11049.314616 +11050.887221 +11052.293913 +11053.491901 +11054.667926 +11055.836329 +11056.987351 +11058.143068 +11059.282754 +11060.420270 +11061.561502 +11062.669055 +11063.782506 +11064.895677 +11066.057813 +11067.224663 +11068.372728 +11069.472610 +11070.983698 +11072.144472 +11073.317627 +11074.600741 +11075.957018 +11077.151721 +11078.353229 +11079.452507 +11080.628643 +11081.881782 +11083.226045 +11084.467748 +11085.658923 +11086.863793 +11088.038892 +11089.193814 +11090.331899 +11091.471404 +11092.589861 +11093.746650 +11094.891649 +11096.011910 +11097.129111 +11098.256858 +11099.394540 +11100.526017 +11101.648616 +11102.775472 +11103.920732 +11105.105114 +11106.248152 +11107.385811 +11108.539463 +11109.671299 +11110.797768 +11111.950824 +11113.080118 +11114.249905 +11115.358729 +11116.515346 +11117.692274 +11118.855797 +11120.027101 +11121.141714 +11122.271677 +11123.418781 +11124.572928 +11125.711903 +11126.834214 +11127.981688 +11129.126389 +11130.276142 +11131.434811 +11132.599702 +11133.738295 +11134.853429 +11135.959019 +11137.567748 +11139.251490 +11140.605947 +11141.751398 +11142.962303 +11144.249896 +11145.685288 +11147.038131 +11148.304129 +11149.587767 +11150.802958 +11152.062812 +11153.278430 +11154.884399 +11156.016824 +11157.166685 +11158.295421 +11159.414170 +11160.510969 +11161.648546 +11162.789329 +11163.954404 +11165.160380 +11166.306058 +11167.623455 +11168.912441 +11170.122207 +11171.284188 +11172.559821 +11173.746565 +11174.861294 +11176.103874 +11177.412189 +11178.717102 +11179.995651 +11181.180256 +11182.423446 +11183.597458 +11184.835448 +11186.028677 +11187.195373 +11188.675354 +11189.967210 +11191.402066 +11192.545414 +11193.659864 +11194.782244 +11195.930411 +11197.429566 +11198.669888 +11199.849628 +11201.033703 +11202.181621 +11203.815118 +11205.033853 +11206.232464 +11207.489556 +11208.719245 +11209.897787 +11211.128310 +11212.289969 +11213.496886 +11214.704565 +11215.928261 +11217.073166 +11218.302157 +11219.522521 +11220.742489 +11221.978746 +11223.097502 +11224.312530 +11225.580647 +11226.840560 +11228.140940 +11229.486716 +11230.643817 +11231.919685 +11233.489163 +11234.625166 +11235.784243 +11236.962886 +11238.152560 +11239.334651 +11240.482882 +11241.615551 +11242.744921 +11243.889892 +11245.058596 +11246.190016 +11247.327391 +11248.577110 +11249.704417 +11250.919569 +11252.067871 +11253.189669 +11254.308620 +11255.522773 +11256.692775 +11257.822170 +11258.967317 +11260.138477 +11261.283383 +11262.396065 +11263.542908 +11264.670648 +11265.805766 +11266.941821 +11268.069589 +11269.244352 +11270.441672 +11271.579073 +11272.727157 +11273.883168 +11275.011890 +11276.205392 +11277.407848 +11278.577032 +11279.750435 +11280.939131 +11282.081261 +11283.232818 +11284.382775 +11285.537670 +11286.682528 +11287.836640 +11288.998267 +11290.149107 +11291.328623 +11292.518937 +11293.717328 +11294.901450 +11296.018454 +11297.145838 +11298.273348 +11299.422615 +11300.638498 +11301.839972 +11302.944378 +11304.073427 +11305.251430 +11306.401435 +11307.511354 +11308.806917 +11309.941559 +11311.211233 +11312.410770 +11313.652400 +11314.761153 +11315.910619 +11317.081570 +11318.252985 +11319.458935 +11320.578741 +11321.734727 +11322.909050 +11324.022442 +11325.216656 +11326.387355 +11327.533951 +11328.653819 +11329.787426 +11331.246233 +11332.525389 +11333.809525 +11334.994550 +11336.500092 +11337.691582 +11338.839517 +11339.976018 +11341.152841 +11342.370483 +11343.559613 +11344.803696 +11346.026431 +11347.377047 +11348.838492 +11350.233364 +11351.580435 +11352.984471 +11354.282392 +11355.434266 +11356.610224 +11357.770067 +11358.997203 +11360.132806 +11361.259823 +11362.389111 +11363.504086 +11364.624380 +11365.772307 +11366.898145 +11368.040633 +11369.273911 +11370.532682 +11371.761939 +11373.069019 +11374.405336 +11375.643132 +11376.812665 +11377.991118 +11379.544075 +11380.702308 +11381.851154 +11383.043659 +11384.235522 +11385.427429 +11386.647143 +11387.843498 +11389.207654 +11390.473327 +11391.668935 +11392.947639 +11394.209035 +11395.437993 +11396.577955 +11397.741822 +11398.885897 +11400.027630 +11401.292317 +11402.496166 +11403.981391 +11405.173602 +11406.383252 +11407.546840 +11408.678116 +11410.000390 +11411.636585 +11412.768718 +11413.939858 +11415.106297 +11416.328166 +11417.485360 +11418.609585 +11419.750466 +11420.870780 +11421.995544 +11423.137314 +11424.336992 +11425.604793 +11426.792147 +11427.930157 +11429.084613 +11430.264384 +11431.434373 +11432.840565 +11434.143303 +11435.351245 +11436.846829 +11438.090640 +11439.269430 +11440.431220 +11441.598292 +11442.791337 +11444.020092 +11445.255504 +11446.513011 +11447.837258 +11449.085840 +11450.324207 +11451.567841 +11452.772722 +11453.944950 +11455.111589 +11456.382353 +11457.530800 +11458.689496 +11459.837084 +11460.972058 +11462.136338 +11463.393093 +11464.828918 +11465.988332 +11467.290493 +11468.849392 +11470.133629 +11471.503625 +11472.889327 +11474.164977 +11475.529657 +11476.895690 +11478.125896 +11479.271822 +11480.532997 +11481.709877 +11482.853422 +11484.012366 +11485.295301 +11486.516544 +11487.660686 +11488.849065 +11489.981873 +11491.144717 +11492.325698 +11493.609302 +11494.730706 +11495.869269 +11497.021734 +11498.180648 +11499.328693 +11500.498909 +11501.994020 +11503.147116 +11504.409101 +11505.804233 +11507.035838 +11508.383128 +11509.607697 +11510.831719 +11512.143454 +11513.372402 +11514.573146 +11515.729515 +11516.856048 +11517.993835 +11519.137902 +11520.345927 +11521.471443 +11522.583806 +11523.901826 +11525.279605 +11526.589877 +11527.785209 +11528.937648 +11530.114035 +11531.379634 +11532.515171 +11533.655246 +11534.818237 +11535.955376 +11537.107840 +11538.226385 +11539.344061 +11540.484158 +11541.602730 +11542.718371 +11543.847040 +11544.963227 +11546.091575 +11547.207233 +11548.358486 +11549.495559 +11550.620526 +11551.781467 +11552.926859 +11554.067347 +11555.201659 +11556.895980 +11558.208027 +11559.353885 +11560.852695 +11562.171925 +11563.338763 +11564.772622 +11566.142585 +11567.492728 +11568.734066 +11569.872151 +11571.068689 +11572.226655 +11573.400747 +11574.595863 +11575.836365 +11577.103630 +11578.300402 +11579.873133 +11581.117122 +11582.401044 +11583.807917 +11584.962395 +11586.295933 +11587.490348 +11588.772379 +11590.115788 +11591.303669 +11592.535092 +11593.863710 +11594.965391 +11596.088381 +11597.400860 +11598.753409 +11599.960634 +11601.144197 +11602.294650 +11603.444005 +11604.607772 +11605.769268 +11606.978710 +11608.477575 +11609.769713 +11610.946873 +11612.248554 +11613.597909 +11614.770988 +11615.928269 +11617.253994 +11618.430283 +11619.576419 +11620.702860 +11621.848843 +11622.976256 +11624.120049 +11625.429641 +11626.583125 +11627.880144 +11629.265661 +11630.745114 +11631.895509 +11633.052939 +11634.194471 +11635.367771 +11636.525210 +11637.667992 +11638.834206 +11639.977634 +11641.115066 +11642.250518 +11643.387265 +11644.519526 +11645.660433 +11646.794114 +11648.637051 +11649.802860 +11651.224241 +11652.577004 +11653.764199 +11654.942246 +11656.093623 +11657.237929 +11658.372221 +11659.504477 +11660.629217 +11661.902786 +11663.046876 +11664.167370 +11665.333585 +11666.440415 +11667.568684 +11668.839956 +11670.020342 +11671.924261 +11673.902360 +11675.914526 +11677.331867 +11679.063139 +11680.476104 +11681.737182 +11682.896084 +11684.464346 +11687.292419 +11689.738352 +11691.378683 +11692.699019 +11694.952733 +11696.871693 +11698.600710 +11700.018028 +11701.636548 +11702.937351 +11704.436348 +11705.708580 +11706.948981 +11708.261132 +11709.535905 +11710.720774 +11711.886094 +11713.110390 +11714.277818 +11715.532364 +11716.895208 +11718.157709 +11719.419863 +11720.651164 +11721.788057 +11722.953034 +11724.102765 +11725.259817 +11726.421283 +11727.562531 +11728.697658 +11730.125301 +11731.779204 +11733.223490 +11734.651910 +11736.070371 +11737.367194 +11738.580736 +11739.865702 +11741.080831 +11742.292171 +11743.570179 +11744.890551 +11746.110543 +11747.371183 +11748.584856 +11749.891106 +11751.124575 +11752.342404 +11753.919591 +11755.251317 +11756.551127 +11757.761713 +11758.903561 +11760.063441 +11761.227152 +11762.357530 +11763.493416 +11764.641697 +11765.764678 +11766.938464 +11768.071187 +11769.208652 +11770.376452 +11771.543067 +11772.679913 +11773.817438 +11774.946933 +11776.077988 +11777.237671 +11778.393121 +11779.525932 +11780.886614 +11782.332627 +11783.689322 +11784.953547 +11786.134206 +11787.295617 +11788.483218 +11789.662007 +11790.816205 +11791.976501 +11793.118494 +11794.271666 +11795.436522 +11796.618860 +11797.779701 +11798.938713 +11800.143108 +11801.288220 +11802.414548 +11803.565066 +11804.724849 +11805.947090 +11807.116875 +11808.240652 +11809.362049 +11810.499821 +11811.688272 +11812.843824 +11813.984154 +11815.125592 +11816.263221 +11817.409416 +11818.555603 +11819.684590 +11820.831794 +11821.951474 +11823.098353 +11824.261066 +11825.424129 +11826.576727 +11827.721501 +11828.872243 +11830.059051 +11831.223914 +11832.389142 +11833.573033 +11834.753127 +11835.901480 +11837.052973 +11838.212421 +11839.384431 +11840.585963 +11841.755569 +11842.975030 +11844.321639 +11845.692206 +11847.076558 +11848.299119 +11849.456343 +11850.654243 +11852.025428 +11853.214873 +11854.608523 +11855.746101 +11856.914287 +11858.213720 +11859.354323 +11860.710851 +11861.898959 +11863.777662 +11865.037108 +11866.203944 +11867.331168 +11868.539394 +11869.783908 +11871.022038 +11872.153853 +11873.314168 +11874.460045 +11875.759448 +11877.022124 +11878.583032 +11880.013027 +11881.205087 +11882.414730 +11883.613108 +11884.801683 +11886.083519 +11887.342069 +11888.569556 +11889.768426 +11890.946666 +11892.090584 +11893.346973 +11894.589761 +11896.016604 +11897.274822 +11898.473564 +11899.619014 +11900.823269 +11902.052229 +11903.231272 +11904.412986 +11905.748839 +11907.014184 +11908.487913 +11909.801217 +11911.029054 +11912.357650 +11913.642182 +11914.837533 +11916.036185 +11917.261388 +11918.568533 +11919.903548 +11921.311980 +11922.601305 +11923.766360 +11924.991912 +11926.306643 +11927.818150 +11929.311785 +11930.730847 +11932.146401 +11933.618998 +11935.105723 +11936.460864 +11937.624946 +11938.788642 +11940.126874 +11941.430261 +11942.766807 +11944.033181 +11945.302945 +11946.576706 +11948.004335 +11949.230294 +11950.531661 +11951.860416 +11953.095224 +11954.347199 +11955.596615 +11956.851851 +11958.234361 +11959.504447 +11960.720651 +11961.867043 +11963.111941 +11964.294303 +11965.478785 +11966.676003 +11967.857383 +11969.002021 +11970.239563 +11971.587364 +11972.982110 +11974.403134 +11976.587086 +11977.895484 +11979.625002 +11981.728054 +11983.929780 +11985.224148 +11986.761477 +11988.086180 +11989.344924 +11991.200544 +11992.941856 +11994.552712 +11995.943876 +11997.466197 +11998.772030 +12000.063393 +12001.507654 +12003.398486 +12005.655004 +12007.546735 +12008.837992 +12010.337091 +12012.042939 +12013.547070 +12015.243009 +12016.688766 +12018.136722 +12019.432816 +12021.137551 +12022.561602 +12024.595962 +12026.135250 +12027.500983 +12029.198748 +12030.679196 +12032.418679 +12033.649597 +12035.059717 +12036.723041 +12038.074911 +12039.654639 +12041.495626 +12043.465312 +12045.197720 +12046.857095 +12048.267709 +12049.573149 +12051.337318 +12052.743037 +12054.117221 +12055.903193 +12057.692460 +12058.995325 +12060.133660 +12061.508672 +12063.455615 +12064.935445 +12066.252028 +12067.968161 +12069.333030 +12070.680613 +12071.927277 +12073.173831 +12074.485275 +12076.205067 +12077.785856 +12079.117681 +12080.541350 +12082.272386 +12084.055654 +12085.764752 +12087.385271 +12089.170956 +12090.858472 +12092.092990 +12093.401208 +12095.019122 +12096.814850 +12098.232046 +12099.871906 +12101.418203 +12103.186697 +12104.793730 +12106.214278 +12107.934967 +12109.149451 +12110.371888 +12111.581495 +12112.779337 +12114.371324 +12116.161242 +12118.207552 +12119.782086 +12121.494918 +12123.270699 +12124.656103 +12126.575339 +12128.329691 +12129.559135 +12130.786696 +12131.969211 +12133.538099 +12135.674002 +12136.876471 +12138.023120 +12139.443626 +12140.946279 +12142.260004 +12143.522449 +12145.217457 +12146.455294 +12147.690510 +12148.910519 +12150.132136 +12151.366485 +12152.587289 +12153.796965 +12155.031354 +12156.291464 +12157.662944 +12158.930474 +12160.356410 +12161.692859 +12163.138894 +12164.462376 +12165.714706 +12166.925033 +12169.111588 +12171.903718 +12173.585147 +12174.899536 +12178.956634 +12184.884149 +12189.243550 +12191.465376 +12194.284574 +12195.942987 +12197.438888 +12199.201564 +12201.633279 +12202.966487 +12204.448901 +12206.074613 +12208.154775 +12210.291863 +12211.882511 +12213.834494 +12215.525147 +12216.824068 +12218.230409 +12221.849137 +12224.004791 +12225.380934 +12227.201675 +12229.194539 +12231.222058 +12233.140478 +12235.057182 +12236.601821 +12238.531350 +12240.057297 +12241.443203 +12243.210511 +12244.865649 +12246.872726 +12250.581801 +12253.421772 +12256.511328 +12258.490636 +12259.845197 +12261.099011 +12262.337502 +12263.575026 +12264.807304 +12266.069951 +12267.321282 +12268.535224 +12269.763182 +12271.432651 +12272.851564 +12274.344670 +12275.705224 +12277.231435 +12278.737803 +12279.978083 +12281.253310 +12282.515787 +12283.794056 +12285.406083 +12286.710988 +12288.148164 +12289.399518 +12290.816015 +12292.039361 +12293.269146 +12294.502990 +12295.749185 +12296.993678 +12298.234018 +12299.485746 +12300.747976 +12301.968397 +12303.201419 +12304.423484 +12305.672890 +12306.922321 +12308.162189 +12309.401890 +12311.442523 +12312.688769 +12313.927042 +12315.177264 +12316.403368 +12317.647986 +12318.878043 +12320.113510 +12321.393197 +12323.158772 +12325.138510 +12326.700392 +12328.279393 +12329.815249 +12331.059545 +12332.337661 +12333.574963 +12335.697631 +12337.393941 +12339.183240 +12340.423773 +12341.664671 +12342.891532 +12344.141462 +12345.399982 +12346.702197 +12347.957399 +12349.185625 +12350.411298 +12351.780906 +12353.808677 +12356.277256 +12358.137438 +12359.378691 +12361.127316 +12363.177482 +12365.190878 +12366.505279 +12367.883805 +12369.120355 +12370.266495 +12371.524473 +12372.735332 +12374.094321 +12375.234616 +12376.368383 +12377.696607 +12379.435290 +12380.956258 +12382.267115 +12384.089189 +12385.435995 +12387.251638 +12389.436574 +12390.767404 +12392.162015 +12393.479325 +12394.799132 +12396.047077 +12397.373895 +12398.786503 +12400.027096 +12401.178303 +12402.552460 +12403.955011 +12405.406810 +12406.930375 +12408.410689 +12409.571950 +12411.435997 +12412.774789 +12414.195498 +12416.136337 +12417.743621 +12419.562978 +12420.935169 +12423.397731 +12425.633812 +12426.815332 +12428.026241 +12429.695107 +12431.333494 +12432.791913 +12435.273877 +12436.899938 +12438.623681 +12440.131074 +12441.750088 +12444.362102 +12445.806823 +12447.188838 +12448.360544 +12449.514773 +12450.666713 +12451.833527 +12452.973423 +12454.227763 +12456.027835 +12458.140373 +12459.701473 +12460.843948 +12462.038126 +12463.241126 +12464.412589 +12465.582275 +12466.764895 +12467.955103 +12469.101733 +12470.260870 +12471.439260 +12472.587723 +12473.745621 +12474.926002 +12476.055231 +12477.236695 +12478.399411 +12479.530581 +12480.789416 +12482.381313 +12484.021424 +12486.151185 +12487.845449 +12489.087384 +12490.617204 +12491.867601 +12493.410295 +12494.608314 +12496.056982 +12497.564627 +12498.787493 +12500.195319 +12501.693637 +12502.838469 +12504.315059 +12505.964021 +12507.510773 +12508.716344 +12509.845510 +12511.007097 +12512.151500 +12513.575693 +12514.865468 +12516.229088 +12517.594377 +12518.741567 +12519.893730 +12521.310491 +12522.778039 +12524.070870 +12525.363211 +12528.631297 +12531.799529 +12533.758615 +12535.016265 +12536.707330 +12538.091595 +12539.525595 +12541.030104 +12542.425931 +12543.771976 +12544.962105 +12546.115052 +12547.219321 +12548.515931 +12549.640961 +12551.208199 +12552.534784 +12554.359133 +12556.813385 +12558.478245 +12559.603275 +12560.756339 +12561.947495 +12563.084091 +12564.875343 +12566.545711 +12568.478604 +12570.218396 +12571.549536 +12572.955653 +12574.208822 +12575.564795 +12576.695163 +12577.802789 +12578.931447 +12580.700274 +12583.978892 +12585.302876 +12586.752206 +12588.003238 +12589.334741 +12590.481948 +12591.820755 +12593.104687 +12594.228865 +12595.348651 +12596.458044 +12597.565566 +12598.668108 +12599.778111 +12600.884846 +12602.178790 +12603.341301 +12604.624645 +12605.795710 +12607.051374 +12608.415125 +12610.155212 +12611.780665 +12613.338944 +12614.735080 +12615.910699 +12617.040131 +12618.389632 +12620.873203 +12622.967511 +12624.411592 +12625.539613 +12626.795881 +12627.911143 +12629.144634 +12630.800805 +12632.341944 +12633.780417 +12634.980054 +12636.279563 +12637.498599 +12639.848030 +12641.550159 +12642.709772 +12643.934935 +12647.000197 +12648.259317 +12649.448811 +12650.623374 +12651.867487 +12653.614956 +12654.917506 +12656.093855 +12657.527848 +12658.722400 +12659.906028 +12661.082137 +12662.320318 +12663.492918 +12665.056765 +12666.332982 +12667.484133 +12668.670288 +12669.821162 +12670.976424 +12672.145369 +12673.300526 +12674.448247 +12675.579315 +12676.702309 +12677.840213 +12678.963185 +12680.096623 +12681.223590 +12682.348598 +12683.483367 +12684.626331 +12685.744223 +12686.872688 +12688.005282 +12689.158592 +12690.286893 +12691.425169 +12692.586046 +12693.713035 +12694.859998 +12695.988269 +12697.148675 +12698.264718 +12699.401356 +12700.553443 +12701.685141 +12702.796029 +12703.956454 +12705.169888 +12706.379392 +12707.522121 +12708.714877 +12710.172860 +12711.333844 +12712.439945 +12713.560782 +12714.702260 +12715.837337 +12716.942517 +12718.064682 +12719.190100 +12720.349940 +12721.521036 +12722.645233 +12724.059504 +12725.174998 +12726.318259 +12727.457651 +12728.585295 +12729.719430 +12730.846059 +12731.969706 +12733.106643 +12734.226470 +12735.367066 +12736.524066 +12737.665695 +12738.794015 +12739.920920 +12741.050318 +12742.205365 +12743.642536 +12744.843438 +12745.987876 +12747.137353 +12748.261011 +12749.410490 +12750.629478 +12751.821521 +12753.014117 +12754.176400 +12755.332832 +12756.491941 +12757.705593 +12758.893104 +12760.041982 +12761.200252 +12762.339237 +12763.469039 +12764.616264 +12765.774171 +12766.893000 +12768.054235 +12769.199535 +12770.372679 +12771.581957 +12772.850491 +12774.035254 +12775.161757 +12776.279337 +12777.408376 +12778.544319 +12779.664142 +12780.809102 +12781.942366 +12783.103224 +12784.261994 +12785.444609 +12786.991547 +12788.254946 +12789.459435 +12790.659420 +12792.055982 +12793.231321 +12794.445476 +12795.593531 +12796.756259 +12797.913407 +12799.039348 +12800.188729 +12801.285866 +12802.436784 +12803.546062 +12804.666760 +12805.787835 +12806.923270 +12808.049034 +12809.174946 +12810.286543 +12811.393466 +12812.497971 +12813.612668 +12814.726803 +12815.872262 +12816.979951 +12818.123685 +12819.302448 +12820.444390 +12821.585341 +12822.719448 +12823.859063 +12824.999496 +12826.139874 +12827.278519 +12828.435429 +12829.570508 +12830.706413 +12831.906698 +12833.424719 +12834.560864 +12835.697919 +12836.830976 +12838.045245 +12839.420826 +12840.610807 +12841.806398 +12842.955133 +12844.143584 +12845.396475 +12846.553391 +12847.683223 +12848.810783 +12849.920141 +12851.066841 +12852.206439 +12853.365273 +12854.490510 +12855.633924 +12856.788880 +12857.976745 +12859.128556 +12860.660040 +12861.877870 +12863.035489 +12864.206764 +12865.363257 +12866.546228 +12867.720079 +12868.848469 +12869.985979 +12871.143294 +12872.293495 +12873.462912 +12874.592941 +12875.781161 +12876.910854 +12878.033160 +12879.152234 +12880.265729 +12881.419638 +12882.567515 +12883.705289 +12884.847266 +12885.980799 +12887.166273 +12888.334217 +12889.724885 +12891.048574 +12892.433103 +12893.568902 +12894.972957 +12896.217179 +12897.379305 +12898.548967 +12899.746008 +12900.925280 +12902.146116 +12903.486401 +12904.784764 +12906.032243 +12907.338632 +12908.549778 +12909.686053 +12910.827192 +12912.008374 +12913.161177 +12914.288831 +12915.404929 +12916.549537 +12917.675785 +12918.820609 +12919.943352 +12921.114472 +12922.286124 +12923.421699 +12924.549903 +12925.682980 +12926.818777 +12927.935557 +12929.042534 +12930.158983 +12931.295874 +12932.421211 +12933.649212 +12934.800076 +12935.980353 +12937.214036 +12938.449935 +12939.691513 +12940.926436 +12942.174829 +12943.398759 +12944.637607 +12945.967500 +12947.187123 +12948.385931 +12949.541835 +12950.717679 +12951.858993 +12952.991590 +12954.127071 +12955.298370 +12956.432102 +12957.580620 +12958.718755 +12959.866927 +12960.999695 +12962.154064 +12963.278475 +12964.433119 +12965.559272 +12966.717594 +12967.861391 +12969.002412 +12970.142458 +12971.299595 +12972.494643 +12973.989281 +12975.167406 +12976.357051 +12977.543693 +12978.890521 +12980.096612 +12981.305000 +12982.563190 +12983.751316 +12984.900982 +12986.049318 +12987.195670 +12988.313154 +12989.438708 +12990.590502 +12991.754680 +12992.878677 +12994.036537 +12995.190476 +12996.331535 +12997.479516 +12998.645036 +12999.872011 +13001.349502 +13002.525773 +13003.698737 +13004.878830 +13006.142517 +13007.393337 +13008.692191 +13010.235437 +13011.573938 +13012.762871 +13013.968503 +13015.170689 +13016.347835 +13017.592119 +13018.818158 +13020.088593 +13021.364459 +13022.693061 +13024.107090 +13025.588651 +13026.882546 +13028.381016 +13029.972999 +13031.418387 +13032.846023 +13034.580047 +13036.229458 +13037.466869 +13038.801250 +13040.303221 +13041.671451 +13042.882217 +13044.140663 +13045.376339 +13046.548257 +13047.752567 +13048.918826 +13050.075414 +13051.354206 +13052.523360 +13053.676174 +13054.856247 +13056.085920 +13057.302907 +13058.531130 +13059.703997 +13060.868595 +13062.029437 +13063.201733 +13064.354520 +13065.570750 +13066.769937 +13067.941972 +13069.120275 +13070.293438 +13071.443459 +13072.631376 +13073.745929 +13074.898563 +13076.135812 +13077.341681 +13078.553234 +13079.692534 +13080.822883 +13082.074123 +13083.310049 +13084.446406 +13085.600398 +13086.818335 +13088.062814 +13089.342009 +13090.624097 +13091.812890 +13093.043991 +13094.279178 +13095.490100 +13096.696399 +13097.906727 +13099.118769 +13100.336004 +13101.490742 +13102.695221 +13103.903847 +13105.120965 +13106.396170 +13107.573883 +13108.766605 +13109.936325 +13111.120548 +13112.305572 +13113.548994 +13114.774638 +13116.037299 +13117.286306 +13118.505335 +13119.731549 +13120.935294 +13122.105892 +13123.375431 +13124.582554 +13125.783668 +13126.961690 +13128.180589 +13129.350199 +13130.622334 +13131.886250 +13133.103265 +13134.369516 +13135.550483 +13136.829077 +13138.129009 +13139.312609 +13140.486829 +13141.632137 +13142.785032 +13143.959673 +13145.176230 +13146.334804 +13147.515083 +13148.683389 +13149.826202 +13151.002836 +13152.160946 +13153.403603 +13154.612340 +13155.781838 +13156.971409 +13158.190394 +13159.379133 +13160.608364 +13161.737573 +13163.029390 +13164.307077 +13165.513656 +13166.688763 +13167.865925 +13169.041734 +13170.247911 +13171.449043 +13172.698862 +13173.864211 +13175.056889 +13176.227267 +13177.428782 +13178.636744 +13179.786571 +13180.924664 +13182.074002 +13183.323425 +13184.555636 +13185.828675 +13187.158780 +13188.421388 +13189.562902 +13190.705253 +13191.840349 +13192.985588 +13194.120336 +13195.263967 +13196.422618 +13197.560414 +13198.729241 +13199.889821 +13201.063664 +13202.291082 +13203.474655 +13204.610903 +13205.729111 +13206.852700 +13208.014218 +13209.162349 +13210.306896 +13211.451806 +13212.594330 +13213.736016 +13214.894340 +13216.082592 +13217.208273 +13218.496566 +13219.750155 +13221.121622 +13222.440656 +13223.757739 +13225.051853 +13226.330616 +13227.615172 +13228.943892 +13230.215331 +13231.482982 +13232.751448 +13234.107617 +13235.378164 +13236.652730 +13237.920587 +13239.193317 +13240.512115 +13241.833207 +13243.034645 +13244.274961 +13245.535537 +13246.689262 +13247.842773 +13249.091559 +13250.349180 +13251.714756 +13253.054968 +13254.372444 +13255.517629 +13256.686341 +13257.984800 +13259.296583 +13260.456861 +13261.751168 +13263.034614 +13264.327760 +13265.566159 +13266.809787 +13268.027939 +13269.232288 +13270.376480 +13271.572466 +13272.819996 +13274.068579 +13275.286585 +13276.504893 +13277.729817 +13278.941302 +13280.196055 +13281.412099 +13282.614216 +13283.881592 +13285.088996 +13286.306195 +13287.523035 +13288.812388 +13290.034932 +13291.302148 +13292.611504 +13293.858647 +13295.106276 +13296.381667 +13297.657351 +13298.884036 +13300.135758 +13301.333485 +13302.604062 +13303.782902 +13304.975934 +13306.290709 +13307.568084 +13308.851317 +13310.170832 +13311.515650 +13312.836355 +13314.114304 +13315.305160 +13316.463662 +13317.747158 +13319.066717 +13320.384646 +13321.618162 +13322.885843 +13324.181982 +13325.470998 +13326.729049 +13328.091229 +13329.372962 +13330.618303 +13331.914470 +13333.294334 +13334.462613 +13335.675328 +13336.899128 +13338.120466 +13339.341863 +13340.540277 +13341.752480 +13342.998122 +13344.240511 +13345.455857 +13346.687339 +13347.858461 +13349.118833 +13350.378711 +13351.615054 +13352.862314 +13354.075535 +13355.263115 +13356.417845 +13357.548030 +13358.778855 +13359.990953 +13361.205169 +13362.431150 +13363.783869 +13365.020997 +13366.242402 +13367.387430 +13368.534272 +13369.878596 +13371.037500 +13372.196503 +13373.345378 +13374.484555 +13375.623992 +13376.796325 +13377.965497 +13379.131157 +13380.274437 +13381.416643 +13382.592575 +13383.743012 +13384.915502 +13386.030665 +13387.218503 +13388.394499 +13389.657684 +13390.910471 +13392.092645 +13393.275052 +13394.421302 +13395.540688 +13396.687970 +13397.999388 +13399.220386 +13400.445077 +13401.684258 +13402.904510 +13404.119390 +13405.376996 +13406.621303 +13407.867563 +13409.087872 +13410.426546 +13411.659040 +13412.869993 +13414.007187 +13415.168849 +13416.314439 +13417.475256 +13418.675359 +13419.873321 +13421.037637 +13422.232744 +13423.485064 +13424.681620 +13425.851217 +13427.057140 +13428.259611 +13429.410020 +13430.581962 +13431.804839 +13433.087704 +13434.292743 +13435.444704 +13436.637719 +13437.845590 +13439.039474 +13440.205346 +13441.346509 +13442.719810 +13444.029169 +13445.251558 +13446.430281 +13447.631037 +13448.768506 +13449.940538 +13451.086718 +13452.215630 +13453.355750 +13454.494291 +13455.627682 +13456.757626 +13457.888522 +13459.062460 +13460.214356 +13461.461307 +13462.893056 +13464.162556 +13465.422644 +13466.720755 +13467.925639 +13469.110232 +13470.277108 +13471.500349 +13472.707133 +13474.003209 +13475.341854 +13476.571983 +13477.866541 +13479.094571 +13480.594644 +13481.887900 +13483.142275 +13484.340187 +13485.513862 +13486.668595 +13487.826068 +13488.957353 +13490.076742 +13491.206052 +13492.351684 +13493.486295 +13494.614497 +13495.757294 +13496.881283 +13498.041247 +13499.210701 +13500.366561 +13501.892488 +13503.608244 +13505.109079 +13506.336126 +13507.485890 +13508.617757 +13509.763848 +13510.901117 +13512.087219 +13513.348983 +13514.556117 +13515.738055 +13516.980670 +13518.194977 +13519.395134 +13520.654387 +13521.920689 +13523.130532 +13524.309319 +13525.491441 +13526.675153 +13527.887328 +13529.026998 +13530.420549 +13531.713713 +13532.960402 +13534.620160 +13535.798387 +13537.030031 +13538.209487 +13539.434095 +13540.649127 +13541.794000 +13542.945391 +13544.123257 +13545.366435 +13546.616700 +13547.830190 +13549.012097 +13550.261031 +13551.521031 +13552.714987 +13553.931001 +13555.140533 +13556.337962 +13557.516378 +13558.672825 +13559.881968 +13561.035074 +13562.198648 +13563.348586 +13564.534142 +13565.734095 +13566.885594 +13568.084799 +13569.241478 +13570.537985 +13571.766149 +13572.984225 +13574.218219 +13575.437569 +13576.676053 +13577.901629 +13579.118851 +13580.371539 +13581.541636 +13582.790501 +13584.072550 +13585.345136 +13586.492484 +13587.691059 +13588.859034 +13589.985048 +13591.228976 +13592.457276 +13593.682403 +13594.915080 +13596.128146 +13597.322299 +13598.534269 +13599.713955 +13600.904477 +13602.088918 +13603.291022 +13604.494297 +13605.730163 +13606.913510 +13608.085378 +13609.283926 +13610.446906 +13611.586639 +13612.796449 +13613.927986 +13615.052389 +13616.167579 +13617.293129 +13618.423834 +13619.581655 +13620.723409 +13621.848525 +13623.036900 +13624.173175 +13625.324542 +13626.477003 +13627.600456 +13628.767057 +13629.895489 +13631.061359 +13632.217527 +13633.368021 +13634.530932 +13635.650778 +13636.812285 +13637.979168 +13639.142972 +13640.314656 +13641.474980 +13642.669679 +13643.811070 +13645.010518 +13646.185962 +13647.382244 +13648.598930 +13649.804119 +13651.002519 +13652.158367 +13653.346326 +13654.517276 +13655.692721 +13656.798092 +13657.901162 +13659.058215 +13660.249435 +13661.441380 +13662.626875 +13663.764003 +13664.936458 +13666.105860 +13667.287955 +13668.472387 +13669.642271 +13670.915569 +13672.156460 +13673.410912 +13674.656997 +13675.845623 +13677.043112 +13678.237770 +13679.427729 +13680.629546 +13681.805282 +13683.040372 +13684.242302 +13685.537852 +13686.728680 +13687.866330 +13689.106189 +13690.283142 +13691.512448 +13692.689288 +13693.908208 +13695.106803 +13696.302644 +13697.489073 +13698.642245 +13699.850252 +13701.035412 +13702.196035 +13703.340731 +13704.494654 +13705.676637 +13706.921294 +13708.145820 +13709.370671 +13710.584185 +13711.754724 +13712.968125 +13714.168827 +13715.334936 +13716.501941 +13717.645743 +13718.869124 +13720.054889 +13721.205847 +13722.376334 +13723.513076 +13724.722811 +13725.923217 +13727.111560 +13728.302326 +13729.437207 +13730.625019 +13731.744963 +13732.893244 +13734.072235 +13735.220803 +13736.374189 +13737.499364 +13738.735875 +13739.927820 +13741.056387 +13742.213220 +13743.385975 +13744.569071 +13745.854315 +13747.063589 +13748.274717 +13749.537772 +13750.738628 +13752.027232 +13753.277935 +13754.520955 +13755.685224 +13756.907710 +13758.096765 +13759.317329 +13760.516467 +13761.703539 +13762.902919 +13764.064208 +13765.276795 +13766.446595 +13767.624138 +13768.829290 +13769.998740 +13771.126480 +13772.332228 +13773.496740 +13774.641823 +13775.794755 +13776.979675 +13778.169060 +13779.289909 +13780.419775 +13781.626391 +13782.782222 +13783.938705 +13785.095938 +13786.222574 +13787.358144 +13788.692799 +13789.835774 +13791.006569 +13792.272591 +13793.492341 +13794.684030 +13795.883327 +13797.051424 +13798.286195 +13799.438092 +13800.605027 +13801.782704 +13803.002932 +13804.154031 +13805.328538 +13806.509214 +13807.710814 +13808.891775 +13810.093192 +13811.278974 +13812.489670 +13813.694324 +13814.887571 +13816.082133 +13817.255369 +13818.466137 +13819.648573 +13820.835944 +13822.069708 +13823.264371 +13824.444663 +13825.578003 +13826.739728 +13827.897872 +13829.076229 +13830.261192 +13831.539025 +13832.786839 +13833.958610 +13835.162836 +13836.347818 +13837.547696 +13838.685439 +13839.841220 +13841.056006 +13842.241247 +13843.450088 +13844.641621 +13845.850224 +13847.026083 +13848.231436 +13849.408218 +13850.564712 +13851.731027 +13852.907218 +13854.105555 +13855.252279 +13856.397078 +13857.570700 +13858.745223 +13859.944960 +13861.122174 +13862.255053 +13863.436212 +13864.585892 +13865.725387 +13866.845755 +13867.985265 +13869.168505 +13870.393411 +13871.517709 +13872.686734 +13873.882472 +13875.110981 +13876.296513 +13877.469507 +13878.652462 +13879.827597 +13881.012104 +13882.205874 +13883.382012 +13884.596656 +13885.845538 +13887.024766 +13888.215590 +13889.409101 +13890.584366 +13891.733177 +13892.880971 +13894.054500 +13895.202502 +13896.390848 +13897.571582 +13898.762724 +13899.914661 +13901.079018 +13902.235266 +13903.393483 +13904.550870 +13905.726427 +13906.885725 +13908.069444 +13909.268560 +13910.492577 +13911.683852 +13912.904616 +13914.065257 +13915.195722 +13916.346167 +13917.564176 +13918.743979 +13919.894205 +13921.037718 +13922.252409 +13923.399867 +13924.575246 +13925.750001 +13926.898645 +13928.064926 +13929.222715 +13930.455685 +13931.671984 +13932.847794 +13934.031651 +13935.207772 +13936.394839 +13937.631184 +13938.818153 +13940.016192 +13941.212320 +13942.375420 +13943.535244 +13944.687638 +13945.842994 +13947.023830 +13948.229329 +13949.578172 +13950.806470 +13951.963603 +13953.111359 +13954.351379 +13955.591010 +13956.748976 +13957.945740 +13959.095000 +13960.245300 +13961.415012 +13962.621955 +13963.836329 +13965.035692 +13966.190498 +13967.363435 +13968.570078 +13969.740149 +13970.944488 +13972.113035 +13973.253144 +13974.539223 +13975.694923 +13976.854816 +13978.038120 +13979.190341 +13980.347424 +13981.503646 +13982.669387 +13983.807456 +13985.040025 +13986.185413 +13987.335357 +13988.676159 +13989.920793 +13991.129914 +13992.290066 +13993.505980 +13994.652460 +13995.835537 +13997.007570 +13998.251985 +13999.510773 +14000.721812 +14002.031055 +14003.298906 +14004.518726 +14005.783342 +14007.028706 +14008.288579 +14009.505119 +14010.693968 +14011.972393 +14013.218946 +14014.512915 +14015.729208 +14016.978345 +14018.185400 +14019.388410 +14020.646739 +14021.842470 +14023.028448 +14024.324867 +14025.568801 +14026.753052 +14027.928426 +14029.167877 +14030.327088 +14031.516132 +14032.748308 +14033.987902 +14035.194685 +14036.397251 +14037.589456 +14038.785794 +14039.966836 +14041.155045 +14042.326163 +14043.495601 +14044.746772 +14045.895372 +14047.061968 +14048.261366 +14049.417251 +14050.613036 +14051.832745 +14053.078499 +14054.279263 +14055.449425 +14056.625157 +14057.752234 +14058.930957 +14060.118237 +14061.315865 +14062.506346 +14063.704948 +14064.894232 +14066.113265 +14067.274814 +14068.471703 +14069.676512 +14070.809936 +14071.958727 +14073.091792 +14074.234170 +14075.387021 +14076.614856 +14077.855179 +14079.058999 +14080.218962 +14081.424616 +14082.621948 +14083.775911 +14084.998551 +14086.196471 +14087.354632 +14088.525871 +14089.663115 +14090.811732 +14091.952935 +14093.149503 +14094.309837 +14095.479190 +14096.675143 +14097.897423 +14099.084466 +14100.258859 +14101.472584 +14102.683439 +14103.869378 +14105.063274 +14106.268306 +14107.438656 +14108.610026 +14109.757724 +14110.981524 +14112.107677 +14113.273533 +14114.446895 +14115.666561 +14116.834075 +14118.054955 +14119.285850 +14120.461963 +14121.598587 +14122.793829 +14123.994337 +14125.189205 +14126.495897 +14127.777835 +14129.059279 +14130.300692 +14131.501136 +14132.673762 +14133.854536 +14135.013592 +14136.192895 +14137.384063 +14138.823965 +14140.036559 +14141.230787 +14142.418355 +14143.602612 +14144.811379 +14145.982979 +14147.200832 +14148.432627 +14149.633726 +14150.856306 +14152.022698 +14153.188604 +14154.348614 +14155.549218 +14156.706756 +14157.845346 +14158.998873 +14160.178656 +14161.309568 +14162.596664 +14163.776716 +14164.942718 +14166.119369 +14167.301468 +14168.516820 +14169.718819 +14170.885595 +14172.025244 +14173.230040 +14174.448397 +14175.590281 +14176.739809 +14177.917749 +14179.225439 +14180.392651 +14181.579638 +14182.766357 +14183.911050 +14185.102852 +14186.261562 +14187.439205 +14188.593298 +14189.746070 +14190.922065 +14192.054109 +14193.275587 +14194.491827 +14195.727561 +14196.904882 +14198.117117 +14199.312181 +14200.513239 +14201.682962 +14202.854348 +14204.145143 +14205.423183 +14206.598040 +14207.768631 +14208.965553 +14210.200155 +14211.414642 +14212.576138 +14213.864590 +14215.091975 +14216.286145 +14217.455096 +14218.599628 +14219.803084 +14221.003217 +14222.189238 +14223.380278 +14224.571418 +14225.847814 +14227.097486 +14228.315862 +14229.533226 +14230.730581 +14231.915100 +14233.141123 +14234.321859 +14235.489982 +14236.631579 +14237.758226 +14238.934049 +14240.153344 +14241.360414 +14242.554016 +14243.770254 +14244.972696 +14246.210242 +14247.404472 +14248.649158 +14249.846141 +14251.080505 +14252.224343 +14253.348750 +14254.556026 +14255.731228 +14256.930510 +14258.109796 +14259.255828 +14260.460432 +14261.587805 +14262.713990 +14263.843789 +14264.996884 +14266.154879 +14267.316105 +14268.629617 +14269.792553 +14270.970458 +14272.107541 +14273.262670 +14274.417009 +14275.624893 +14276.847522 +14278.062309 +14279.272241 +14280.538902 +14281.739752 +14282.945670 +14284.147217 +14285.385091 +14286.557841 +14287.706779 +14288.909892 +14290.122075 +14291.278633 +14292.457088 +14293.645999 +14294.870813 +14296.019262 +14297.153827 +14298.296629 +14299.442147 +14300.567412 +14301.692341 +14302.987494 +14304.245667 +14305.542380 +14306.777219 +14307.976478 +14309.148606 +14310.395963 +14311.621867 +14312.824300 +14313.987645 +14315.134210 +14316.299490 +14317.472910 +14318.638965 +14319.817220 +14320.962926 +14322.112072 +14323.250216 +14324.434078 +14325.601290 +14326.731356 +14327.927266 +14329.099231 +14330.319277 +14331.510530 +14332.662275 +14333.857102 +14335.306813 +14336.563704 +14337.745760 +14338.933425 +14340.242141 +14341.409695 +14342.602960 +14343.842725 +14345.180775 +14346.608088 +14347.755983 +14348.907288 +14350.116464 +14351.637816 +14352.896472 +14354.139972 +14355.284352 +14356.472474 +14357.693282 +14358.930453 +14360.344681 +14361.643417 +14362.766768 +14363.924917 +14365.101879 +14366.234320 +14367.585240 +14368.876353 +14370.229071 +14371.435368 +14372.654805 +14373.818499 +14374.976148 +14376.121342 +14377.266996 +14378.419148 +14379.588644 +14380.743559 +14381.919880 +14383.157349 +14384.322509 +14385.539760 +14386.667345 +14387.824230 +14388.993557 +14390.134835 +14391.271595 +14392.391494 +14393.514389 +14394.637522 +14395.923118 +14397.057940 +14398.259344 +14399.431229 +14400.550263 +14401.666612 +14402.780539 +14403.938206 +14405.093591 +14406.313197 +14408.269134 +14409.746493 +14411.291171 +14412.646321 +14414.099970 +14415.247123 +14416.379870 +14417.536678 +14418.692678 +14420.098550 +14421.480580 +14423.137704 +14424.599420 +14426.042504 +14427.452527 +14428.929954 +14430.349727 +14431.642100 +14433.110044 +14434.502864 +14435.739000 +14436.897707 +14438.210039 +14439.496587 +14440.671476 +14442.849337 +14444.061630 +14445.256871 +14446.491258 +14447.678795 +14448.863716 +14449.989447 +14451.138542 +14452.306138 +14453.472244 +14454.636537 +14455.786162 +14456.977385 +14458.567869 +14459.868903 +14461.101843 +14462.288824 +14463.572137 +14464.744694 +14466.471972 +14468.028578 +14469.179374 +14470.385331 +14471.503615 +14472.622546 +14473.760478 +14474.930166 +14476.067171 +14477.255848 +14478.406552 +14479.630693 +14481.124572 +14482.271380 +14483.459451 +14484.597554 +14485.779734 +14486.915878 +14488.051795 +14489.215645 +14490.353880 +14491.487593 +14492.696345 +14493.853626 +14495.003853 +14496.190007 +14497.350110 +14498.639666 +14499.852193 +14501.286125 +14502.533325 +14503.669624 +14504.807793 +14505.965845 +14507.102945 +14508.261679 +14509.417937 +14510.573384 +14511.725372 +14512.873624 +14514.065088 +14515.283022 +14516.526886 +14517.864393 +14519.418634 +14520.590921 +14521.943617 +14524.170264 +14526.251311 +14527.907842 +14529.540356 +14531.570177 +14533.690860 +14535.734856 +14537.177911 +14538.744737 +14540.580523 +14542.011035 +14543.805638 +14545.219447 +14546.775191 +14548.576080 +14549.955702 +14551.474966 +14553.239406 +14554.494903 +14555.897064 +14557.525816 +14558.956761 +14560.287295 +14561.992284 +14563.370664 +14564.647589 +14565.852831 +14567.062379 +14568.229647 +14569.469678 +14570.956902 +14572.356477 +14573.550604 +14575.237337 +14577.020199 +14578.868014 +14580.144369 +14581.452371 +14583.775902 +14586.091765 +14587.314598 +14588.655550 +14590.153818 +14591.441996 +14593.505329 +14595.191021 +14597.946717 +14599.159640 +14600.344747 +14601.525658 +14602.677978 +14603.907000 +14605.057925 +14606.379264 +14607.741227 +14608.861365 +14610.008125 +14611.157616 +14612.297782 +14613.549073 +14614.712547 +14615.869518 +14617.002806 +14618.124079 +14619.396227 +14620.723731 +14621.858745 +14623.010222 +14624.709369 +14626.050161 +14627.628627 +14629.249501 +14630.898489 +14632.433487 +14633.586810 +14634.968338 +14636.263494 +14637.399379 +14638.797318 +14640.200683 +14641.346583 +14642.471941 +14643.629449 +14645.028571 +14646.479208 +14648.078125 +14649.282938 +14650.434223 +14652.039713 +14653.276424 +14654.395023 +14655.688164 +14657.073309 +14658.407660 +14660.257131 +14661.958554 +14663.520658 +14665.180273 +14666.539693 +14668.220248 +14669.389697 +14670.556306 +14671.697346 +14673.035179 +14674.438582 +14676.200978 +14677.387681 +14678.540184 +14680.075952 +14681.417306 +14683.651792 +14685.578919 +14686.830127 +14688.000973 +14689.161074 +14690.311007 +14691.458556 +14693.545906 +14695.573722 +14696.839766 +14698.421763 +14699.909723 +14701.252362 +14702.571431 +14703.872265 +14705.098805 +14706.647695 +14708.717707 +14711.379893 +14712.740923 +14714.508490 +14716.530163 +14717.765356 +14720.063918 +14721.777316 +14724.742471 +14726.140311 +14727.438199 +14728.793821 +14731.531771 +14733.000253 +14734.353678 +14735.792840 +14737.264992 +14738.611238 +14740.237750 +14741.630313 +14742.857740 +14744.024204 +14745.349163 +14746.583595 +14747.743216 +14748.859037 +14750.013163 +14751.141334 +14752.290617 +14753.433967 +14754.552246 +14755.685055 +14756.974029 +14759.313194 +14760.916808 +14762.149660 +14763.446386 +14764.736083 +14766.668793 +14767.959061 +14769.749970 +14771.139621 +14772.411573 +14774.914688 +14776.099219 +14777.320210 +14778.493711 +14779.823007 +14781.470967 +14782.658534 +14783.809145 +14785.002649 +14786.179986 +14787.364185 +14788.539299 +14789.722673 +14790.937525 +14792.092893 +14793.265877 +14794.428510 +14795.593534 +14796.725597 +14797.909403 +14799.050957 +14800.202982 +14801.364910 +14803.153971 +14804.380607 +14805.526659 +14806.679040 +14807.801977 +14808.952278 +14810.074215 +14811.211341 +14812.359881 +14813.492752 +14814.656615 +14815.847916 +14816.984270 +14818.162176 +14819.329043 +14820.507360 +14821.628280 +14822.759727 +14824.111303 +14825.334189 +14826.488013 +14827.698798 +14829.241264 +14830.564051 +14831.822629 +14833.199183 +14834.845946 +14837.013366 +14838.871974 +14840.099528 +14841.423028 +14842.657677 +14844.400526 +14845.985978 +14847.610097 +14849.157615 +14850.809489 +14852.835785 +14854.186304 +14855.518628 +14856.799958 +14857.966138 +14859.101628 +14860.380315 +14861.785461 +14863.074530 +14864.260402 +14865.885309 +14867.195104 +14868.358642 +14869.653008 +14871.171906 +14872.414880 +14873.711700 +14874.989311 +14876.426798 +14877.694893 +14878.905962 +14880.173265 +14881.682745 +14884.577741 +14886.432857 +14888.064900 +14889.588646 +14891.069855 +14892.490131 +14894.670417 +14895.966557 +14897.932504 +14899.148671 +14900.301576 +14901.635962 +14902.988777 +14904.408715 +14905.897643 +14907.536105 +14908.887408 +14910.136029 +14911.517152 +14913.323916 +14915.522307 +14916.754688 +14918.187914 +14919.396174 +14920.585791 +14921.787678 +14922.955098 +14925.122515 +14926.606537 +14927.957102 +14929.229400 +14930.467492 +14931.613618 +14932.755225 +14933.890755 +14935.079244 +14936.359502 +14937.759529 +14939.097645 +14940.252602 +14941.406658 +14942.560298 +14943.904712 +14945.190210 +14946.332375 +14947.600296 +14948.799895 +14950.064720 +14951.274496 +14952.549958 +14953.755995 +14955.043395 +14956.829734 +14958.539993 +14959.896991 +14961.962735 +14964.524502 +14966.227172 +14967.985620 +14969.694031 +14971.709218 +14973.722898 +14975.436257 +14977.014720 +14978.725671 +14980.472170 +14981.886809 +14983.333778 +14984.889628 +14986.230746 +14987.645438 +14988.821514 +14989.978560 +14991.129255 +14992.259297 +14993.429839 +14994.585371 +14995.719405 +14996.846583 +14997.973098 +14999.455236 +15000.617020 +15001.819415 +15003.074026 +15004.282578 +15005.552066 +15006.785764 +15008.058393 +15009.564202 +15011.063953 +15012.193075 +15013.320481 +15014.538622 +15015.923712 +15017.544287 +15018.786303 +15020.505862 +15021.696461 +15022.848676 +15024.037161 +15025.208467 +15026.412250 +15027.634427 +15028.870678 +15030.015461 +15031.206631 +15032.873636 +15034.127800 +15035.281954 +15036.642068 +15037.975327 +15039.650086 +15040.991357 +15042.805193 +15044.501080 +15046.865130 +15048.059899 +15049.193926 +15050.346763 +15051.561910 +15052.777221 +15053.922900 +15055.063684 +15056.187026 +15057.458105 +15058.737742 +15059.872760 +15061.044580 +15062.714025 +15063.912554 +15065.069929 +15066.315802 +15067.476257 +15068.643059 +15069.775245 +15070.917869 +15072.052319 +15073.173198 +15074.293125 +15075.440541 +15076.562510 +15077.674708 +15078.804612 +15079.921267 +15081.062007 +15082.187094 +15083.336044 +15084.477548 +15085.603354 +15086.757641 +15087.881113 +15088.992068 +15090.121292 +15091.241061 +15092.357080 +15093.519741 +15094.648768 +15095.776771 +15096.888714 +15098.011045 +15099.151310 +15100.286634 +15101.417142 +15102.559913 +15103.677378 +15104.814819 +15105.933229 +15107.087174 +15108.366375 +15109.510562 +15110.698108 +15111.907305 +15113.117401 +15114.741279 +15115.906185 +15117.227129 +15118.442788 +15119.677240 +15120.829472 +15122.136504 +15123.366558 +15124.890249 +15126.535495 +15128.025748 +15129.227337 +15130.469925 +15131.797521 +15133.734887 +15135.164110 +15136.493567 +15138.331030 +15139.519230 +15140.673017 +15141.840206 +15142.965051 +15144.153882 +15145.642655 +15147.086725 +15148.538189 +15150.387519 +15151.669129 +15153.334463 +15154.743164 +15156.067300 +15157.447753 +15158.779288 +15160.250954 +15161.442216 +15162.698969 +15163.865047 +15165.027436 +15166.388623 +15168.627046 +15170.309699 +15171.947472 +15173.386497 +15174.600984 +15175.870843 +15177.655686 +15178.845662 +15179.994043 +15181.221066 +15182.407405 +15183.732913 +15184.925829 +15187.019068 +15188.584971 +15190.034701 +15191.630872 +15193.590154 +15195.233575 +15196.470737 +15197.747927 +15199.675786 +15201.413142 +15203.008000 +15204.178227 +15205.323579 +15206.561873 +15208.000076 +15209.232289 +15210.371468 +15211.535200 +15213.706538 +15215.493684 +15217.811150 +15219.646396 +15222.243056 +15224.060185 +15225.912999 +15227.476870 +15229.473020 +15231.398057 +15232.535308 +15233.825364 +15235.086946 +15236.690729 +15237.964113 +15239.142816 +15240.433066 +15241.837684 +15243.290493 +15244.436053 +15245.670651 +15247.059142 +15248.713758 +15250.074296 +15251.881259 +15253.042723 +15254.202653 +15255.326526 +15256.932776 +15258.823171 +15260.552651 +15262.153460 +15263.851113 +15265.161878 +15266.619837 +15268.032366 +15269.238730 +15270.441442 +15272.462476 +15274.429570 +15276.198520 +15277.662920 +15279.133854 +15280.551050 +15281.686033 +15282.868745 +15284.107443 +15285.284994 +15286.517114 +15287.747157 +15289.419873 +15291.781951 +15293.674520 +15295.297849 +15297.194980 +15298.947957 +15300.457510 +15302.039340 +15303.647658 +15304.789193 +15306.517394 +15307.682816 +15309.527209 +15310.641561 +15311.831641 +15313.105698 +15314.290333 +15315.507976 +15316.669355 +15318.700621 +15320.960127 +15323.626683 +15326.851661 +15328.879034 +15330.268581 +15331.932737 +15333.388816 +15334.874503 +15336.943412 +15338.605264 +15340.124722 +15341.605340 +15343.237965 +15345.296811 +15347.251884 +15348.725406 +15350.714874 +15352.448085 +15354.426964 +15356.548805 +15358.335691 +15360.065776 +15361.374595 +15362.653008 +15363.841272 +15365.433662 +15367.459019 +15369.436238 +15371.102800 +15372.799526 +15374.326399 +15375.653561 +15377.624033 +15378.775807 +15380.480179 +15381.668382 +15382.815149 +15383.970703 +15385.165102 +15386.491186 +15388.310708 +15389.735165 +15390.917082 +15392.092300 +15393.931615 +15395.317636 +15396.612102 +15398.248136 +15399.800697 +15401.801687 +15403.096098 +15404.312541 +15405.466056 +15407.236605 +15409.195915 +15411.081512 +15413.236699 +15415.003415 +15416.135397 +15417.294939 +15418.589408 +15419.786434 +15420.977051 +15422.131241 +15423.324629 +15424.488624 +15426.128186 +15428.240637 +15430.513245 +15432.112037 +15433.304363 +15435.051920 +15436.780330 +15438.908816 +15440.702994 +15442.424420 +15443.544725 +15444.722068 +15445.885524 +15447.027933 +15448.154545 +15449.384665 +15450.613163 +15451.755405 +15452.873981 +15454.389106 +15456.515614 +15459.376085 +15461.544591 +15464.160339 +15466.147863 +15468.202668 +15469.883624 +15471.624801 +15473.483632 +15475.751713 +15477.208916 +15479.275860 +15480.518975 +15481.691129 +15483.615678 +15485.511292 +15487.106222 +15488.319779 +15489.532709 +15491.242043 +15492.605189 +15494.155441 +15495.359472 +15496.574057 +15497.793815 +15499.107210 +15500.347757 +15501.529426 +15502.642105 +15504.156879 +15505.594006 +15506.872095 +15508.272247 +15509.468116 +15510.639809 +15511.793833 +15512.945824 +15514.088836 +15515.282739 +15516.448527 +15517.583864 +15518.711892 +15519.975659 +15521.443410 +15522.604167 +15523.732933 +15525.187563 +15526.377602 +15527.546117 +15528.706205 +15529.869013 +15531.033188 +15532.182486 +15533.328969 +15534.541065 +15535.698232 +15536.879198 +15538.337152 +15539.481395 +15540.861812 +15542.035454 +15543.180235 +15544.353937 +15545.529405 +15546.703462 +15547.864582 +15549.024754 +15550.189168 +15551.356784 +15552.545997 +15553.720975 +15554.896025 +15556.061579 +15557.227731 +15558.421246 +15559.578605 +15560.758791 +15561.929150 +15563.117420 +15564.299585 +15565.450395 +15566.617139 +15567.773819 +15568.939960 +15570.107982 +15571.280318 +15572.460491 +15573.645868 +15574.821168 +15575.970936 +15577.219130 +15578.581469 +15579.791425 +15580.928882 +15582.343683 +15583.528961 +15584.682579 +15585.844115 +15587.015467 +15588.184409 +15589.313263 +15590.473415 +15591.625841 +15592.777655 +15593.916034 +15595.070147 +15596.284021 +15597.462035 +15598.619808 +15599.768161 +15600.940859 +15602.081855 +15603.242718 +15604.399764 +15605.577684 +15606.782832 +15607.930268 +15609.084532 +15610.261444 +15611.398380 +15612.563595 +15613.728162 +15614.870542 +15616.039915 +15617.194652 +15618.340803 +15619.517089 +15620.637893 +15621.792892 +15622.944748 +15624.109015 +15625.276797 +15626.412319 +15627.571651 +15628.739169 +15629.920045 +15631.075279 +15632.260220 +15633.416769 +15634.579128 +15635.755134 +15636.949375 +15638.132684 +15639.296881 +15640.464363 +15641.655893 +15642.834452 +15644.004258 +15645.152202 +15646.290421 +15647.482072 +15648.640105 +15649.792322 +15650.955430 +15652.089842 +15653.240923 +15654.381087 +15655.537785 +15656.721134 +15657.866175 +15659.020672 +15660.198619 +15661.385085 +15662.521102 +15663.714057 +15664.887734 +15666.046651 +15667.222947 +15668.412516 +15669.588456 +15670.742207 +15671.921115 +15673.134030 +15674.274688 +15675.474121 +15676.770599 +15677.966621 +15679.151160 +15680.334275 +15681.472759 +15682.650800 +15683.796640 +15684.961656 +15686.122559 +15687.303705 +15688.484616 +15689.630919 +15690.787457 +15691.944568 +15693.166669 +15694.393810 +15695.619981 +15696.932624 +15698.636017 +15699.870287 +15701.112937 +15702.328818 +15703.457889 +15704.698931 +15706.131142 +15707.344029 +15708.560071 +15709.933944 +15711.549566 +15712.784992 +15713.967346 +15715.096861 +15716.582680 +15717.829708 +15719.068612 +15720.238994 +15721.453515 +15722.602880 +15723.968245 +15725.218662 +15726.450305 +15727.602192 +15729.049314 +15730.256625 +15731.484780 +15733.200687 +15734.842647 +15736.478642 +15737.659523 +15738.959637 +15740.207190 +15741.394360 +15742.607564 +15743.732219 +15744.859493 +15746.470692 +15747.862780 +15749.205222 +15750.555025 +15751.772955 +15753.671959 +15755.161715 +15758.309683 +15759.975183 +15761.452085 +15763.504267 +15765.498398 +15767.324297 +15769.324960 +15771.458933 +15773.532366 +15775.124300 +15777.122408 +15778.827840 +15780.863335 +15782.293798 +15783.962196 +15785.354434 +15786.476608 +15787.625582 +15788.810456 +15789.969887 +15791.166465 +15792.538681 +15793.717168 +15794.889756 +15796.339174 +15797.580344 +15798.778319 +15800.749142 +15802.144915 +15803.731835 +15805.207298 +15807.563670 +15808.773955 +15810.462665 +15812.441759 +15814.613588 +15816.864025 +15818.015538 +15819.140484 +15820.313821 +15821.459309 +15823.285760 +15825.149619 +15826.794710 +15828.530080 +15830.175111 +15831.325000 +15832.458740 +15833.571758 +15835.457469 +15836.679186 +15838.115685 +15839.259248 +15840.437221 +15841.615613 +15842.751526 +15843.899641 +15845.071765 +15846.232158 +15847.405257 +15848.633339 +15849.779570 +15850.949922 +15852.128884 +15853.285450 +15854.436812 +15855.591310 +15856.757555 +15857.914500 +15859.074081 +15860.227828 +15861.422343 +15862.569627 +15863.770539 +15864.929742 +15866.087034 +15867.281285 +15868.431889 +15869.607516 +15870.785936 +15871.949428 +15873.112222 +15874.286328 +15875.459229 +15876.628668 +15877.820420 +15878.968488 +15880.099977 +15881.263597 +15882.454939 +15883.639990 +15884.844473 +15886.044692 +15887.240493 +15888.387551 +15889.539545 +15890.727104 +15891.906705 +15893.449949 +15894.612079 +15895.791566 +15897.144342 +15898.293945 +15899.468985 +15900.663120 +15901.838692 +15903.008588 +15904.204431 +15905.373513 +15906.688949 +15907.925676 +15909.092327 +15910.289728 +15911.465228 +15912.622632 +15913.784216 +15914.932836 +15916.092627 +15917.284313 +15918.447549 +15919.633778 +15920.772714 +15921.909905 +15923.048513 +15924.187827 +15925.319850 +15926.498648 +15927.672683 +15928.824740 +15929.989019 +15931.161836 +15932.361291 +15933.520725 +15934.651659 +15935.860105 +15937.003267 +15938.196738 +15939.335861 +15940.499779 +15941.655316 +15942.811438 +15943.972976 +15945.132711 +15946.297154 +15947.454246 +15948.637917 +15949.824181 +15951.024901 +15952.173369 +15953.332480 +15954.522352 +15955.702483 +15956.842291 +15958.010557 +15959.169527 +15960.319978 +15961.506100 +15962.656542 +15963.809552 +15964.976806 +15966.156362 +15967.328654 +15968.461536 +15969.628357 +15970.787115 +15971.956588 +15973.117326 +15974.281779 +15975.433913 +15976.565997 +15977.735980 +15978.906210 +15980.095878 +15981.277311 +15982.484512 +15983.640822 +15984.805625 +15985.948840 +15987.107103 +15988.247034 +15989.386718 +15990.545588 +15991.741771 +15992.934678 +15994.091076 +15995.276658 +15996.454741 +15997.649149 +15998.810921 +15999.979423 +16001.168178 +16002.326296 +16003.486529 +16004.637021 +16005.925875 +16007.095721 +16008.271908 +16009.438362 +16010.606774 +16011.763017 +16012.908878 +16014.062474 +16015.223248 +16016.407918 +16017.575382 +16018.791753 +16020.043068 +16021.213647 +16022.417021 +16023.607943 +16024.790122 +16025.947233 +16027.139856 +16028.325731 +16029.485490 +16030.638940 +16031.795676 +16032.991739 +16034.134103 +16035.273946 +16036.451539 +16037.626594 +16038.799015 +16039.982369 +16041.156010 +16042.340165 +16043.503973 +16044.686921 +16045.850659 +16047.011126 +16048.200934 +16049.351637 +16050.555311 +16051.733425 +16052.918809 +16054.106275 +16055.272668 +16056.451830 +16057.617458 +16058.789463 +16059.950507 +16061.123577 +16062.278351 +16063.476475 +16064.678815 +16065.829661 +16066.980605 +16068.112835 +16069.278820 +16070.394550 +16071.546095 +16072.699780 +16073.844514 +16074.974052 +16076.129606 +16077.290789 +16078.471662 +16079.652392 +16080.818002 +16081.972302 +16083.174042 +16084.361867 +16085.586501 +16086.779050 +16087.936836 +16089.144421 +16090.309396 +16091.458085 +16092.598166 +16093.737100 +16094.878445 +16095.999663 +16097.165445 +16098.313519 +16099.468478 +16100.630743 +16101.930380 +16103.177920 +16104.418930 +16105.625436 +16106.836635 +16108.027546 +16109.181204 +16110.344635 +16111.499416 +16112.613295 +16113.761519 +16114.922216 +16116.120166 +16117.254334 +16118.412871 +16119.546895 +16120.746443 +16121.918279 +16123.070140 +16124.207424 +16125.365592 +16126.527336 +16127.721430 +16128.891129 +16130.035406 +16131.219389 +16132.400679 +16133.582337 +16134.738376 +16135.869367 +16137.027177 +16138.176648 +16139.341484 +16140.547687 +16141.703467 +16142.896955 +16144.062236 +16145.244375 +16146.421652 +16147.575926 +16148.711655 +16149.884836 +16151.089654 +16152.244051 +16153.432546 +16154.627716 +16155.778802 +16156.929142 +16158.112011 +16159.271515 +16160.437139 +16161.614241 +16162.764534 +16163.952908 +16165.123800 +16166.283508 +16167.439361 +16168.603870 +16169.779311 +16170.942211 +16172.102073 +16173.251003 +16174.419966 +16175.580896 +16176.724641 +16177.893443 +16179.056456 +16180.230386 +16181.397422 +16182.600972 +16183.784240 +16184.963838 +16186.160608 +16187.349214 +16188.562834 +16189.693254 +16190.851237 +16192.046324 +16193.211251 +16194.360810 +16195.547458 +16196.766432 +16197.981524 +16199.134940 +16200.268116 +16201.422772 +16202.560394 +16203.733366 +16204.880503 +16206.127562 +16207.282653 +16208.494428 +16209.711510 +16210.979696 +16212.310371 +16214.010948 +16215.140870 +16216.292882 +16217.710906 +16219.002770 +16220.442321 +16221.906963 +16223.080133 +16224.301133 +16226.145594 +16227.724810 +16229.559000 +16230.923373 +16232.225658 +16234.220286 +16236.034219 +16237.671395 +16239.484918 +16240.627289 +16241.751949 +16242.888554 +16244.039876 +16245.205151 +16246.352134 +16247.480502 +16248.619088 +16249.790799 +16250.924733 +16252.048806 +16253.212383 +16254.366418 +16255.547177 +16256.703173 +16257.830758 +16258.969234 +16260.291275 +16261.436841 +16262.607891 +16263.761423 +16264.900213 +16266.082337 +16267.205536 +16268.323370 +16269.458659 +16270.607893 +16271.728980 +16273.546470 +16274.749540 +16275.938213 +16277.128389 +16278.921535 +16280.804222 +16282.836895 +16284.700160 +16285.879537 +16287.318201 +16288.938874 +16290.676117 +16292.382241 +16293.715456 +16294.864754 +16296.537356 +16298.495309 +16300.320382 +16301.607519 +16302.771614 +16303.922517 +16305.337250 +16306.661687 +16307.807449 +16308.924598 +16310.547102 +16312.218439 +16313.539860 +16314.847475 +16316.154815 +16317.544038 +16318.666787 +16319.800804 +16321.096286 +16323.164556 +16324.304569 +16325.443835 +16327.146285 +16328.513642 +16330.154344 +16331.692668 +16333.369986 +16334.640084 +16335.951592 +16337.075329 +16338.215864 +16339.349018 +16340.477727 +16341.598854 +16342.943038 +16344.104755 +16345.249863 +16346.383611 +16347.547218 +16348.729465 +16349.865013 +16351.204616 +16352.558238 +16353.759014 +16355.238567 +16356.573207 +16358.618138 +16359.839042 +16361.036251 +16362.340096 +16363.711099 +16364.930018 +16366.082293 +16367.236017 +16368.418906 +16369.530616 +16370.724749 +16371.880737 +16373.069874 +16374.357578 +16375.626421 +16376.791101 +16377.981079 +16379.170112 +16380.341638 +16381.497169 +16382.623209 +16383.826453 +16384.996972 +16386.342204 +16387.898640 +16389.037059 +16390.161265 +16391.330125 +16392.611828 +16393.819003 +16395.011426 +16396.188699 +16397.333149 +16398.814891 +16399.983720 +16402.062784 +16403.403830 +16404.611456 +16405.803107 +16407.137207 +16408.483195 +16409.975449 +16411.316602 +16412.604733 +16413.976432 +16415.267480 +16416.848416 +16417.996351 +16419.183340 +16420.379939 +16421.752072 +16422.955313 +16424.238490 +16425.922437 +16427.152602 +16428.305993 +16429.465716 +16430.653312 +16431.913579 +16433.037282 +16434.198011 +16435.369347 +16436.516698 +16437.736767 +16439.125464 +16440.294828 +16441.447825 +16442.568192 +16443.740589 +16445.028145 +16446.208248 +16447.368653 +16448.532323 +16449.786344 +16451.104834 +16452.791987 +16453.986232 +16455.114192 +16456.228113 +16457.350954 +16458.465531 +16459.696975 +16460.960812 +16462.266016 +16464.689206 +16465.902900 +16467.152813 +16468.476476 +16469.652203 +16470.832142 +16472.020272 +16473.178601 +16474.327858 +16475.456328 +16476.590370 +16477.743344 +16478.886486 +16480.044973 +16481.712049 +16482.996984 +16484.181740 +16485.350089 +16486.526071 +16487.803904 +16489.021864 +16490.462710 +16491.669045 +16493.047964 +16494.574017 +16495.701326 +16496.952334 +16498.318437 +16500.003003 +16501.503297 +16502.878306 +16504.012387 +16505.426172 +16506.618575 +16507.823479 +16508.976300 +16510.147681 +16511.337085 +16512.584627 +16514.032347 +16516.095546 +16517.534253 +16518.879479 +16520.051568 +16521.238252 +16522.377945 +16523.498823 +16524.639294 +16525.792824 +16526.946664 +16528.097284 +16529.379839 +16530.523719 +16531.697778 +16532.864602 +16534.006145 +16535.141655 +16536.301306 +16537.695174 +16538.920539 +16540.188202 +16541.571444 +16542.851295 +16544.593840 +16545.749857 +16547.076185 +16548.403294 +16549.542744 +16550.674822 +16551.950046 +16553.366120 +16554.488547 +16555.613725 +16556.740866 +16557.901052 +16559.472357 +16560.782598 +16562.022843 +16563.637449 +16564.907268 +16566.215050 +16567.374022 +16568.867597 +16570.006390 +16571.573159 +16572.908268 +16574.572635 +16575.928185 +16577.062120 +16578.179701 +16579.298242 +16580.414427 +16581.555783 +16582.683846 +16583.809052 +16585.427324 +16586.928866 +16588.248384 +16589.410612 +16590.520765 +16591.648994 +16592.765800 +16594.004813 +16595.380428 +16596.902367 +16598.224027 +16599.716389 +16601.232737 +16602.620344 +16603.974739 +16605.206433 +16606.720530 +16607.938923 +16609.274674 +16611.766364 +16612.952223 +16614.319514 +16616.087499 +16617.758406 +16620.020937 +16622.493591 +16623.656541 +16625.614767 +16626.952515 +16628.155369 +16629.370024 +16631.423119 +16632.953022 +16634.141594 +16635.300744 +16636.748606 +16638.045398 +16639.527384 +16640.860578 +16642.255521 +16644.001767 +16645.995519 +16647.345293 +16649.314828 +16650.614937 +16651.835094 +16654.529958 +16655.723381 +16656.928380 +16658.220437 +16659.573846 +16661.676400 +16663.399396 +16664.582264 +16665.715006 +16666.869147 +16668.007357 +16669.152972 +16670.294806 +16671.440245 +16672.572491 +16673.698030 +16674.832364 +16675.992901 +16677.124911 +16678.280476 +16679.453193 +16680.586803 +16681.720910 +16682.862117 +16684.010269 +16685.173160 +16686.293341 +16687.421240 +16688.537403 +16689.687523 +16690.853612 +16691.987745 +16693.140510 +16694.279424 +16695.418310 +16696.536214 +16697.667148 +16698.864325 +16700.028196 +16701.159138 +16702.288443 +16703.462711 +16704.647646 +16705.839944 +16706.986225 +16708.107242 +16709.237715 +16710.373191 +16711.539907 +16712.675339 +16713.811207 +16714.981287 +16716.101921 +16717.227796 +16718.355207 +16719.482797 +16720.603402 +16721.736339 +16722.880243 +16724.025351 +16725.132863 +16726.271446 +16727.414118 +16728.541028 +16729.670432 +16730.802301 +16731.950844 +16733.078805 +16734.223481 +16735.353496 +16736.485571 +16737.608637 +16738.736788 +16739.943269 +16741.109768 +16742.283676 +16743.422121 +16744.541892 +16745.675966 +16746.815063 +16747.959066 +16749.092797 +16750.214294 +16751.332429 +16752.461098 +16753.597379 +16754.746700 +16755.883688 +16757.062291 +16758.230114 +16759.391117 +16760.537302 +16761.683114 +16762.845601 +16763.989488 +16765.137306 +16766.279410 +16767.403132 +16768.519023 +16769.657086 +16770.767508 +16771.939551 +16773.097727 +16774.235195 +16775.373800 +16776.505085 +16777.627908 +16778.754466 +16779.882136 +16781.003217 +16782.147722 +16783.305822 +16784.435632 +16785.554700 +16786.719990 +16787.866253 +16789.027118 +16790.164330 +16791.296347 +16792.438436 +16793.582292 +16794.706387 +16795.850224 +16797.010680 +16798.144929 +16799.276172 +16800.414864 +16801.534744 +16802.668905 +16803.801703 +16804.947344 +16806.069872 +16807.215373 +16808.348087 +16809.473749 +16810.618684 +16811.777187 +16812.893309 +16814.031646 +16815.203043 +16816.339392 +16817.455435 +16818.583896 +16819.713667 +16820.857472 +16822.019548 +16823.138490 +16824.269136 +16825.384845 +16826.540020 +16827.687626 +16828.819249 +16829.963270 +16831.097178 +16832.249167 +16833.384615 +16834.503577 +16835.639453 +16836.772484 +16837.922413 +16839.069636 +16840.211862 +16841.347794 +16842.481020 +16843.603795 +16844.777338 +16845.897805 +16847.014987 +16848.149122 +16849.288374 +16850.438490 +16851.577832 +16852.703148 +16853.823320 +16855.060656 +16856.226938 +16857.372009 +16858.525601 +16859.652856 +16860.796082 +16861.927021 +16863.069122 +16864.194795 +16865.330230 +16866.500764 +16867.652624 +16868.787912 +16869.928918 +16871.045131 +16872.187227 +16873.303353 +16874.463404 +16875.613825 +16876.739362 +16877.859135 +16879.002562 +16880.163454 +16881.336516 +16882.472022 +16883.598944 +16884.750553 +16885.865935 +16886.992802 +16888.149100 +16889.268976 +16890.399331 +16891.562404 +16892.708856 +16893.833025 +16895.069869 +16896.498987 +16897.692458 +16898.830329 +16899.962686 +16901.114872 +16902.354441 +16903.659324 +16904.890156 +16906.069100 +16907.243577 +16908.389771 +16909.511765 +16910.657755 +16911.788028 +16912.937889 +16914.070640 +16915.226717 +16916.359629 +16917.472838 +16918.593226 +16919.711720 +16920.841234 +16921.973363 +16923.121843 +16924.243557 +16925.365876 +16926.495443 +16927.634932 +16928.775511 +16929.937601 +16931.082245 +16932.228232 +16933.361283 +16934.492941 +16935.622808 +16936.767603 +16937.884183 +16939.012796 +16940.154556 +16941.266262 +16942.399041 +16943.527611 +16944.669735 +16945.782637 +16946.950897 +16948.073262 +16949.207236 +16950.334540 +16951.453647 +16952.647689 +16953.811564 +16954.934651 +16956.091933 +16957.260354 +16958.388502 +16959.544565 +16960.670992 +16961.787683 +16962.932468 +16964.046037 +16965.193288 +16966.326432 +16967.454318 +16968.610512 +16969.785369 +16970.902967 +16972.067071 +16973.193776 +16974.309687 +16975.438452 +16976.613551 +16977.732601 +16978.880599 +16980.030988 +16981.183872 +16982.347731 +16983.478968 +16984.640885 +16985.779807 +16986.942163 +16988.071937 +16989.201973 +16990.349457 +16991.484968 +16992.643173 +16993.775983 +16994.922675 +16996.060850 +16997.189840 +16998.318136 +16999.450298 +17000.598319 +17001.761756 +17002.881587 +17004.016070 +17005.210240 +17006.418540 +17007.568875 +17008.687144 +17009.819013 +17010.967738 +17012.083057 +17013.227800 +17014.351524 +17015.500440 +17016.635583 +17017.755543 +17018.870697 +17020.025154 +17021.149697 +17022.296644 +17023.433231 +17024.605396 +17025.730876 +17026.894816 +17028.047109 +17029.208966 +17030.343012 +17031.478085 +17032.632821 +17033.760339 +17034.878410 +17035.988756 +17037.146229 +17038.294132 +17039.414906 +17040.579733 +17041.724568 +17042.856712 +17043.992182 +17045.132429 +17046.254571 +17047.375868 +17048.512483 +17049.720437 +17050.903720 +17052.050599 +17053.195012 +17054.327156 +17055.489400 +17056.623421 +17057.737137 +17058.868839 +17060.014595 +17061.138156 +17062.278813 +17063.404323 +17064.528282 +17065.669939 +17066.787841 +17067.903828 +17069.027000 +17070.162239 +17071.282165 +17072.404525 +17073.550975 +17074.679494 +17075.798929 +17076.940437 +17078.056342 +17079.177968 +17080.317263 +17081.454764 +17082.625306 +17083.775976 +17084.929336 +17086.056165 +17087.203078 +17088.341715 +17089.464669 +17090.608348 +17091.768885 +17092.889343 +17094.025957 +17095.162587 +17096.351315 +17097.464807 +17098.614740 +17099.746109 +17100.864383 +17101.987826 +17103.117732 +17104.263593 +17105.400412 +17106.517900 +17107.670883 +17108.791951 +17109.926996 +17111.054256 +17112.191434 +17113.320250 +17114.440946 +17115.590618 +17116.741489 +17117.872912 +17119.007267 +17120.126802 +17121.260310 +17122.376531 +17123.524129 +17124.673266 +17125.817669 +17126.943263 +17128.072750 +17129.206176 +17130.629690 +17131.759879 +17132.902057 +17134.038399 +17135.202610 +17136.321157 +17137.486518 +17138.616921 +17139.739943 +17140.863956 +17142.004208 +17143.136433 +17144.257478 +17145.408025 +17146.550333 +17147.784378 +17148.961992 +17150.083392 +17151.204423 +17152.353640 +17153.504683 +17154.633272 +17155.790399 +17156.922045 +17158.061141 +17159.198798 +17160.331630 +17161.467152 +17162.616536 +17163.760875 +17164.892306 +17166.067142 +17167.200335 +17168.340520 +17169.479328 +17170.606413 +17171.739307 +17172.906152 +17174.031709 +17175.169847 +17176.328028 +17177.452961 +17178.584965 +17179.695568 +17180.841822 +17181.967833 +17183.088374 +17184.212334 +17185.331450 +17186.442605 +17187.592242 +17188.711544 +17189.870209 +17191.002373 +17192.157503 +17193.283675 +17194.423482 +17195.547632 +17196.682007 +17197.960001 +17199.303538 +17200.947076 +17202.081363 +17203.207909 +17204.330254 +17205.456964 +17206.615836 +17207.796397 +17208.974563 +17210.295722 +17211.906255 +17213.587750 +17214.725114 +17215.853587 +17216.995811 +17218.456572 +17220.053447 +17221.193554 +17222.350362 +17223.491148 +17224.688467 +17225.806389 +17226.958469 +17228.064806 +17229.213168 +17230.331880 +17231.484067 +17232.639643 +17233.763071 +17234.932299 +17236.091145 +17237.265671 +17238.473850 +17239.639656 +17240.838996 +17242.007458 +17243.121282 +17244.263826 +17245.698174 +17247.088645 +17248.431052 +17249.600679 +17250.826302 +17252.044181 +17253.217079 +17254.352815 +17255.513067 +17256.650864 +17257.799424 +17258.947884 +17260.118251 +17261.279168 +17262.481047 +17263.634561 +17264.798113 +17265.984195 +17267.124142 +17268.300997 +17269.471975 +17270.593566 +17271.745245 +17272.923691 +17274.048141 +17275.216863 +17276.338239 +17277.478092 +17278.679415 +17279.808420 +17280.959459 +17282.108908 +17283.271999 +17284.588529 +17285.949147 +17287.129314 +17288.247802 +17289.425876 +17290.881516 +17292.070385 +17293.565833 +17294.944622 +17296.091816 +17297.228508 +17298.392944 +17299.502426 +17300.688061 +17301.802983 +17302.944927 +17304.060916 +17305.199553 +17306.315218 +17307.436735 +17308.547727 +17309.677235 +17310.802200 +17311.934559 +17313.110452 +17314.278851 +17315.505063 +17316.673675 +17317.824227 +17318.954320 +17320.105239 +17321.244838 +17322.431221 +17323.561662 +17324.704327 +17325.876039 +17327.030861 +17328.192461 +17329.371091 +17330.506393 +17331.714313 +17332.848950 +17333.973127 +17335.139957 +17336.284182 +17337.412910 +17338.545650 +17339.686602 +17340.905423 +17342.092692 +17343.240400 +17344.359984 +17345.542451 +17346.705660 +17347.892108 +17349.055272 +17350.209252 +17351.331802 +17352.455445 +17353.648889 +17354.888198 +17356.043939 +17357.210956 +17358.348601 +17359.557628 +17360.750426 +17361.954383 +17363.109724 +17364.295324 +17365.491405 +17366.690223 +17367.909521 +17369.056676 +17370.222392 +17371.380778 +17372.588349 +17373.727783 +17374.883644 +17376.031685 +17377.194254 +17378.341660 +17379.478639 +17380.617332 +17381.768421 +17382.929296 +17384.114142 +17385.240485 +17386.363928 +17387.498061 +17388.619904 +17389.750367 +17390.922629 +17392.356476 +17394.374465 +17395.644480 +17396.848797 +17398.048420 +17399.278633 +17400.489750 +17401.877191 +17404.071455 +17406.638433 +17408.434657 +17409.685120 +17411.011219 +17412.577544 +17413.915721 +17415.060932 +17416.225704 +17417.406359 +17418.539044 +17419.717028 +17420.895804 +17422.016158 +17423.138951 +17424.271320 +17425.453361 +17426.692409 +17427.956983 +17429.102384 +17430.390453 +17431.580052 +17432.794292 +17434.018935 +17435.356364 +17436.593389 +17437.929744 +17439.343568 +17440.540500 +17441.746674 +17442.903258 +17444.077692 +17445.218527 +17446.374445 +17447.564109 +17448.727618 +17449.903044 +17451.056554 +17452.222055 +17453.380711 +17454.539904 +17455.731104 +17456.893268 +17458.034153 +17459.186956 +17460.452841 +17461.648371 +17462.778625 +17463.948254 +17465.089366 +17466.365418 +17467.750841 +17469.091622 +17470.363251 +17471.632347 +17472.784175 +17473.926528 +17475.147550 +17476.317120 +17477.460099 +17478.593250 +17479.747933 +17481.081900 +17482.492952 +17483.667944 +17485.100043 +17486.861086 +17488.081577 +17489.266626 +17490.470403 +17491.649553 +17492.835015 +17494.018509 +17495.189025 +17496.413642 +17497.639512 +17498.841949 +17500.054152 +17501.235035 +17502.385610 +17504.368243 +17505.826415 +17507.014509 +17508.178828 +17509.362427 +17510.503635 +17511.683703 +17512.879501 +17514.040378 +17515.221908 +17516.408549 +17517.637014 +17518.794106 +17520.203308 +17521.364333 +17522.530047 +17523.718835 +17524.908843 +17526.070170 +17527.490371 +17528.658812 +17529.809645 +17530.965542 +17532.141076 +17533.372893 +17534.538089 +17535.746725 +17536.911413 +17538.114676 +17539.340050 +17540.922270 +17542.073167 +17543.296020 +17544.712066 +17546.291876 +17547.856313 +17549.361993 +17550.714789 +17551.900306 +17553.125649 +17554.589546 +17555.788490 +17556.950006 +17558.109713 +17559.289255 +17560.570871 +17561.742782 +17562.900487 +17564.092608 +17565.253610 +17566.399475 +17567.635306 +17568.786737 +17569.923717 +17571.073563 +17572.197826 +17573.325812 +17574.484229 +17575.617905 +17576.789950 +17577.967153 +17579.105842 +17580.282342 +17581.473396 +17582.616698 +17583.777914 +17584.907976 +17586.030833 +17587.174826 +17588.374373 +17589.528426 +17590.697397 +17591.884688 +17593.049965 +17594.215924 +17595.394318 +17596.557029 +17597.732976 +17598.852892 +17599.993264 +17601.116260 +17602.250977 +17603.384974 +17604.546886 +17605.709093 +17606.870768 +17608.086943 +17609.291946 +17610.492088 +17611.645583 +17612.788389 +17613.964206 +17615.127993 +17616.327162 +17617.499135 +17618.662367 +17619.813702 +17620.969725 +17622.129842 +17623.269548 +17624.428707 +17625.594380 +17626.788493 +17627.966863 +17629.128808 +17630.272797 +17631.410664 +17632.544302 +17633.684277 +17634.905656 +17636.035177 +17637.159688 +17638.286344 +17639.405095 +17640.529653 +17641.676097 +17642.829884 +17643.982489 +17645.125002 +17646.269302 +17647.403666 +17648.531091 +17649.713631 +17650.863317 +17651.984814 +17653.105507 +17654.227392 +17655.348111 +17656.466434 +17657.653331 +17658.883947 +17660.105244 +17661.299589 +17662.448332 +17663.583163 +17664.709041 +17665.845326 +17667.037465 +17668.199703 +17669.338960 +17670.501106 +17671.637620 +17672.783289 +17673.933177 +17675.104902 +17676.247442 +17677.389961 +17678.545932 +17679.704331 +17680.881309 +17682.108956 +17683.258116 +17684.400922 +17685.550102 +17686.694662 +17687.831194 +17688.954158 +17690.144129 +17691.362975 +17692.515187 +17693.682383 +17694.844692 +17696.031100 +17697.166029 +17698.294102 +17699.431466 +17700.559031 +17701.680763 +17702.816390 +17703.958539 +17705.087964 +17706.254948 +17707.405725 +17708.526072 +17709.682784 +17710.815688 +17711.964128 +17713.130700 +17714.264584 +17715.420705 +17716.628906 +17717.791724 +17718.967480 +17720.118043 +17721.435693 +17722.659201 +17723.825829 +17724.956455 +17726.134965 +17727.295734 +17728.466114 +17729.625580 +17730.765654 +17731.907083 +17733.047562 +17734.196875 +17735.365374 +17736.511809 +17737.672677 +17738.816208 +17739.995457 +17741.153684 +17742.335190 +17743.494802 +17744.659054 +17745.823831 +17746.998212 +17748.162208 +17749.311801 +17750.459884 +17751.621931 +17752.769111 +17753.892724 +17755.056783 +17756.234707 +17757.421027 +17758.613362 +17759.821326 +17760.960439 +17762.110206 +17763.251567 +17764.384320 +17765.546656 +17766.706079 +17767.859358 +17768.991505 +17770.151097 +17771.325818 +17772.482753 +17773.621064 +17774.791939 +17775.949347 +17777.103157 +17778.300072 +17779.464606 +17780.652586 +17781.800291 +17783.023561 +17784.179762 +17785.345397 +17786.506110 +17787.650511 +17788.823844 +17789.969444 +17791.133265 +17792.283925 +17793.454481 +17794.632004 +17795.801599 +17796.981322 +17798.124151 +17799.250922 +17800.406733 +17801.561854 +17802.719713 +17803.885545 +17805.073665 +17806.234681 +17807.364581 +17808.529581 +17809.689828 +17810.847417 +17812.015421 +17813.165456 +17814.333634 +17815.486308 +17816.679008 +17817.834860 +17818.968464 +17820.110335 +17821.277081 +17822.445124 +17823.589604 +17824.765323 +17825.972509 +17827.112906 +17828.285686 +17829.417719 +17830.551926 +17831.716831 +17832.872688 +17834.012242 +17835.183205 +17836.343154 +17837.479203 +17838.631772 +17839.802423 +17840.934783 +17842.123559 +17843.299213 +17844.463176 +17845.629118 +17846.803328 +17847.955900 +17849.122822 +17850.279346 +17851.453070 +17852.626465 +17853.787912 +17854.962142 +17856.118814 +17857.381028 +17858.518587 +17859.634429 +17860.763042 +17861.923215 +17863.090384 +17864.248390 +17865.400080 +17866.551428 +17867.705731 +17868.902896 +17870.050224 +17871.220604 +17872.390023 +17873.565980 +17874.700538 +17875.866581 +17877.035683 +17878.177546 +17879.345891 +17880.479666 +17881.617797 +17882.778576 +17883.941240 +17885.087079 +17886.231773 +17887.383248 +17888.529640 +17889.667903 +17890.819078 +17891.981913 +17893.147091 +17894.312890 +17895.444732 +17896.714995 +17897.998481 +17899.221431 +17900.386378 +17901.593454 +17902.884469 +17904.327860 +17905.538329 +17906.689163 +17907.927206 +17909.187329 +17910.458004 +17911.609648 +17912.763259 +17913.912905 +17915.088417 +17916.242423 +17917.561389 +17918.708554 +17919.874258 +17921.023903 +17922.196064 +17923.391417 +17924.517521 +17925.673161 +17926.846438 +17927.976759 +17929.135965 +17930.313498 +17931.490810 +17932.652142 +17933.796605 +17934.987054 +17936.143763 +17937.305632 +17938.515166 +17939.649084 +17940.815543 +17942.001729 +17943.160407 +17944.299225 +17945.471829 +17946.645353 +17947.840125 +17949.036040 +17950.193548 +17951.380177 +17952.561608 +17953.748219 +17954.957202 +17956.139584 +17957.342609 +17958.570996 +17959.734000 +17960.894874 +17962.076832 +17963.232184 +17964.397201 +17965.568650 +17966.741174 +17967.885022 +17969.025181 +17970.172621 +17971.359643 +17972.566198 +17973.721100 +17974.886873 +17976.036605 +17977.220583 +17978.395904 +17979.555946 +17980.702817 +17981.897383 +17983.057463 +17984.223697 +17985.382827 +17986.540422 +17987.783014 +17988.977439 +17990.152944 +17991.360941 +17992.672849 +17994.568303 +17995.834470 +17996.977159 +17998.200420 +17999.363860 +18000.528033 +18001.688939 +18002.840148 +18004.026269 +18005.166412 +18006.306953 +18007.502544 +18008.655238 +18009.823130 +18010.981142 +18012.164865 +18013.317789 +18014.475969 +18015.628587 +18016.847461 +18018.024035 +18019.182849 +18020.343449 +18021.509646 +18022.645263 +18023.796275 +18024.946015 +18026.091308 +18027.276962 +18028.438598 +18029.629613 +18030.803520 +18031.957182 +18033.108991 +18034.262496 +18035.428566 +18036.631868 +18037.790976 +18038.918756 +18040.039565 +18041.181389 +18042.331365 +18043.498743 +18044.646198 +18045.805219 +18046.957571 +18048.103073 +18049.263042 +18050.434105 +18051.583057 +18052.725030 +18053.891953 +18055.027083 +18056.190987 +18057.349530 +18058.574352 +18059.768753 +18060.946583 +18062.121210 +18063.277413 +18064.408887 +18065.571009 +18066.752814 +18067.934716 +18069.068281 +18070.209558 +18071.340256 +18072.489424 +18073.658036 +18074.821872 +18076.014311 +18077.179706 +18078.340580 +18079.723010 +18080.986720 +18082.193453 +18083.330049 +18084.501027 +18085.680684 +18086.842238 +18088.024209 +18089.225224 +18090.355352 +18091.503933 +18092.669407 +18093.804379 +18094.978007 +18096.136676 +18097.281257 +18098.489778 +18099.636329 +18100.775515 +18101.971092 +18103.108784 +18104.291821 +18105.486927 +18106.627469 +18107.790052 +18108.952987 +18110.079285 +18111.238680 +18112.382016 +18113.532930 +18114.684264 +18115.823629 +18116.996994 +18118.168365 +18119.349586 +18120.504920 +18121.647717 +18122.796885 +18123.973964 +18125.140400 +18126.279596 +18127.435120 +18128.580378 +18129.731399 +18130.854383 +18131.997288 +18133.131705 +18134.259727 +18135.404267 +18136.546164 +18137.695885 +18138.888264 +18140.024158 +18141.153568 +18142.300099 +18143.431336 +18144.553026 +18145.673433 +18146.815043 +18147.939133 +18149.105573 +18150.312098 +18151.461065 +18152.618494 +18153.790500 +18154.966981 +18156.112660 +18157.390149 +18158.526334 +18160.057076 +18161.527332 +18163.398580 +18164.519333 +18165.652981 +18166.808668 +18168.308694 +18169.825333 +18171.054750 +18172.237343 +18173.595142 +18174.727440 +18175.909577 +18177.066930 +18178.259345 +18179.658167 +18181.168804 +18182.316564 +18183.753033 +18184.907483 +18186.041393 +18187.171297 +18188.288877 +18189.413414 +18190.581646 +18191.719019 +18192.877043 +18194.036898 +18195.174723 +18196.305097 +18197.450703 +18198.599141 +18199.784889 +18200.912898 +18202.056359 +18203.190618 +18204.304792 +18205.442200 +18206.576075 +18207.813077 +18209.049989 +18210.312710 +18211.661539 +18212.993395 +18214.438960 +18215.812788 +18216.941597 +18218.085195 +18219.215163 +18220.343031 +18221.458571 +18222.625704 +18223.768502 +18225.148038 +18226.463449 +18227.734797 +18229.444652 +18231.094749 +18232.688101 +18233.932484 +18235.310731 +18236.771312 +18238.075316 +18239.215529 +18240.667668 +18242.007563 +18243.235757 +18244.552897 +18245.985919 +18247.450960 +18248.738527 +18250.103720 +18251.217731 +18252.573332 +18254.198345 +18255.780841 +18256.910436 +18258.607251 +18259.974622 +18262.054317 +18263.434329 +18265.964083 +18267.206744 +18268.561016 +18269.834817 +18271.268607 +18272.915861 +18274.808899 +18276.927926 +18279.127104 +18280.843620 +18282.754757 +18284.550494 +18286.147486 +18287.440247 +18288.912523 +18291.216126 +18292.803119 +18293.996253 +18295.170759 +18296.434925 +18297.657256 +18298.826290 +18300.048238 +18301.771654 +18303.595963 +18305.011458 +18306.300530 +18307.555616 +18309.138792 +18310.403613 +18311.681230 +18312.890792 +18314.061518 +18315.249323 +18316.420632 +18317.619856 +18318.855204 +18320.043432 +18321.657431 +18322.950383 +18324.245662 +18325.761710 +18327.059013 +18328.331709 +18329.814407 +18331.757036 +18333.105698 +18335.808375 +18337.099583 +18338.371837 +18339.549718 +18340.801250 +18342.087569 +18343.502093 +18344.692884 +18346.041736 +18347.712745 +18348.938967 +18351.476718 +18353.377160 +18355.209913 +18356.342696 +18357.458530 +18358.626960 +18359.762856 +18360.877733 +18362.016147 +18363.190294 +18364.318715 +18365.463761 +18366.596892 +18367.737515 +18368.872411 +18370.012506 +18371.139577 +18372.288257 +18373.423391 +18374.594026 +18375.815876 +18377.145432 +18379.026724 +18380.205022 +18381.374895 +18382.505235 +18383.626516 +18384.758991 +18385.891543 +18387.099550 +18388.429841 +18389.567885 +18390.704928 +18391.850117 +18393.892716 +18396.324813 +18397.512606 +18398.841649 +18400.194685 +18401.445451 +18402.582904 +18403.736734 +18404.934627 +18406.057202 +18407.220963 +18408.430319 +18409.578594 +18410.707909 +18411.958088 +18413.753483 +18415.934835 +18417.730148 +18419.182696 +18421.238174 +18422.766779 +18423.949430 +18425.083625 +18426.221954 +18427.356668 +18428.520043 +18429.736319 +18430.946383 +18432.071944 +18433.236193 +18434.396379 +18435.514515 +18436.628073 +18437.778815 +18438.899212 +18440.104118 +18441.235610 +18442.398865 +18443.577164 +18444.738918 +18445.882325 +18447.018275 +18448.153288 +18449.298575 +18450.448508 +18451.590409 +18452.734753 +18453.850952 +18454.985076 +18456.111147 +18457.263003 +18458.403955 +18459.520194 +18460.644872 +18461.768658 +18462.893032 +18464.057379 +18465.211149 +18466.374064 +18467.878615 +18469.457751 +18470.810369 +18472.113997 +18473.332580 +18474.560299 +18475.775170 +18476.952284 +18478.099073 +18479.294026 +18480.961266 +18482.617497 +18483.906659 +18485.130877 +18486.510777 +18488.008129 +18489.239971 +18490.515029 +18491.783510 +18493.293585 +18494.903402 +18496.190813 +18497.491770 +18498.655309 +18499.846105 +18501.049846 +18502.284375 +18504.192872 +18506.181417 +18507.764047 +18509.314284 +18510.838981 +18512.095687 +18513.615664 +18515.530816 +18517.215958 +18519.292840 +18521.615596 +18524.227751 +18526.112734 +18527.412747 +18530.350549 +18531.585132 +18532.743299 +18533.914667 +18535.062502 +18536.209069 +18537.352863 +18538.615180 +18539.834421 +18541.155486 +18542.465509 +18543.659652 +18544.954598 +18546.083135 +18547.211911 +18548.326434 +18549.539659 +18550.784362 +18552.426645 +18553.649982 +18555.277926 +18556.731727 +18558.193052 +18559.329992 +18560.467340 +18561.594825 +18562.733758 +18564.087125 +18565.842371 +18567.385944 +18568.787983 +18570.193116 +18572.078712 +18573.562632 +18575.387506 +18576.755200 +18577.971222 +18579.605558 +18580.759705 +18582.541894 +18584.523153 +18585.826486 +18587.667810 +18589.057826 +18590.834575 +18592.415210 +18594.121609 +18595.293318 +18596.516249 +18598.048964 +18599.195287 +18600.326379 +18601.448981 +18602.644994 +18603.810635 +18604.989308 +18606.154675 +18608.140137 +18609.809832 +18611.137874 +18613.203562 +18614.787567 +18616.316729 +18617.473256 +18619.724284 +18621.019644 +18622.171461 +18623.391954 +18625.412142 +18626.776411 +18628.545363 +18630.310844 +18632.002846 +18633.606892 +18635.536179 +18637.282756 +18638.411925 +18639.558045 +18641.222586 +18642.370951 +18643.526033 +18644.716714 +18646.004897 +18647.403051 +18648.558716 +18649.696716 +18651.402224 +18652.572205 +18653.709010 +18654.858560 +18655.997623 +18657.137770 +18658.585388 +18659.696397 +18660.828732 +18661.964854 +18663.096241 +18664.222128 +18665.381654 +18666.512689 +18667.694126 +18668.834444 +18669.980717 +18671.123213 +18672.280634 +18673.864128 +18675.175834 +18676.661834 +18677.781069 +18679.037047 +18680.349274 +18681.684839 +18682.847819 +18683.960793 +18685.107789 +18686.259752 +18687.390524 +18689.169522 +18690.342546 +18692.081250 +18693.238044 +18694.375424 +18695.518148 +18696.650999 +18697.792941 +18698.922606 +18700.059778 +18701.227357 +18702.386850 +18703.514907 +18704.657481 +18705.777982 +18707.231636 +18708.661443 +18709.786024 +18710.914459 +18712.074454 +18713.228710 +18714.392321 +18715.962794 +18717.664802 +18719.456669 +18721.027667 +18722.510277 +18724.525310 +18725.692108 +18727.171160 +18729.662769 +18731.660818 +18733.130230 +18734.435231 +18735.750468 +18737.005736 +18738.200214 +18739.409697 +18740.615619 +18741.779497 +18742.912274 +18744.082648 +18745.194236 +18746.315249 +18747.579661 +18748.758947 +18749.936032 +18751.141553 +18752.376644 +18753.524225 +18754.653691 +18755.792789 +18756.984826 +18758.137206 +18759.803697 +18761.781487 +18763.563360 +18764.871343 +18766.074144 +18767.450636 +18769.217095 +18771.095924 +18773.195720 +18775.722684 +18777.021804 +18779.098680 +18780.859107 +18783.288774 +18784.945988 +18786.582282 +18787.898217 +18789.147673 +18790.649690 +18791.927649 +18793.176245 +18794.419489 +18795.610227 +18796.810325 +18798.033726 +18799.282265 +18800.476731 +18801.885267 +18804.656263 +18806.716091 +18808.626248 +18810.805459 +18813.149554 +18814.899983 +18816.109205 +18817.290014 +18818.554531 +18819.779572 +18821.336008 +18822.989074 +18824.231076 +18825.448277 +18828.091007 +18830.016900 +18831.188499 +18832.414197 +18833.588909 +18834.731678 +18836.181211 +18837.305261 +18838.432740 +18839.606502 +18840.745694 +18842.068920 +18843.418803 +18844.852797 +18846.298397 +18847.506038 +18848.752873 +18849.889185 +18851.049286 +18852.189016 +18853.947302 +18855.322778 +18856.664610 +18858.098078 +18859.501753 +18860.858110 +18862.231005 +18863.759762 +18865.045913 +18866.173244 +18867.294997 +18868.483144 +18869.630808 +18870.773417 +18871.921668 +18873.078160 +18874.210789 +18875.368758 +18876.484136 +18877.607610 +18878.742636 +18879.878505 +18881.018539 +18882.341935 +18883.876526 +18885.243155 +18886.382294 +18887.501480 +18888.668855 +18889.875853 +18891.077107 +18892.238291 +18893.602863 +18894.898423 +18896.239526 +18897.420407 +18898.617669 +18899.805567 +18900.963028 +18902.147148 +18903.264306 +18904.449250 +18905.620613 +18906.736449 +18907.846995 +18909.188889 +18910.372354 +18911.529857 +18912.661949 +18913.786693 +18914.947838 +18916.058798 +18917.185936 +18918.384758 +18919.738854 +18920.928344 +18922.123313 +18923.383235 +18924.526513 +18925.677859 +18926.809294 +18927.958324 +18929.084663 +18930.412954 +18931.836496 +18933.891563 +18935.779349 +18937.235010 +18938.707156 +18940.204559 +18941.752215 +18943.025302 +18944.972138 +18946.350624 +18947.600590 +18948.850242 +18950.083811 +18952.125451 +18953.325783 +18954.640836 +18957.068733 +18958.356666 +18959.496035 +18960.738807 +18961.897003 +18963.058697 +18964.257158 +18965.432744 +18966.644843 +18967.878393 +18969.066940 +18970.708882 +18972.098908 +18973.394728 +18974.916039 +18976.123510 +18977.319123 +18978.812375 +18980.450861 +18982.025403 +18983.440943 +18985.047811 +18986.396473 +18987.679461 +18989.581275 +18991.239132 +18992.601880 +18994.313627 +18995.684682 +18996.850532 +18998.334600 +19000.361989 +19002.116008 +19003.837965 +19005.010299 +19006.183975 +19007.607246 +19008.841405 +19010.642325 +19012.936815 +19014.545308 +19016.192196 +19017.871196 +19019.053731 +19020.255349 +19021.424735 +19022.619257 +19023.817427 +19025.434433 +19027.266070 +19028.833701 +19030.546692 +19032.229393 +19033.914577 +19035.489150 +19036.781816 +19038.473775 +19039.838248 +19041.280019 +19042.998161 +19044.879721 +19046.721788 +19047.911271 +19049.262610 +19050.477520 +19051.686267 +19053.165205 +19055.209406 +19056.560094 +19057.757551 +19058.933597 +19060.279529 +19061.433717 +19062.713168 +19065.003365 +19066.906185 +19068.218095 +19069.444952 +19070.684174 +19072.964182 +19074.270016 +19075.620750 +19077.105524 +19078.300138 +19079.488824 +19080.804521 +19083.002748 +19084.369975 +19085.648797 +19086.864542 +19088.010155 +19089.184587 +19090.396956 +19091.608930 +19092.977368 +19094.637931 +19095.804173 +19096.988839 +19098.304698 +19099.875316 +19101.124464 +19103.095153 +19106.029315 +19107.498075 +19108.653943 +19109.867254 +19111.265304 +19112.499654 +19114.058133 +19117.528133 +19119.038910 +19120.405587 +19121.744497 +19123.311360 +19124.521570 +19125.948568 +19127.307965 +19128.762206 +19130.328319 +19131.702446 +19132.857802 +19134.043475 +19135.456650 +19136.854935 +19138.215311 +19139.418852 +19141.201528 +19142.808652 +19143.978739 +19145.403718 +19147.013481 +19148.715947 +19150.059160 +19151.200120 +19152.442560 +19154.224797 +19156.221087 +19157.695407 +19159.282341 +19160.443816 +19161.565517 +19162.680407 +19163.844682 +19165.051548 +19166.190636 +19167.327675 +19168.673327 +19170.037400 +19171.170786 +19172.295629 +19173.964795 +19175.413007 +19176.987407 +19178.122957 +19179.249044 +19180.377708 +19181.514838 +19182.664738 +19183.789613 +19184.955320 +19186.093717 +19187.209195 +19188.354511 +19189.485478 +19190.658371 +19192.174511 +19193.312670 +19194.483855 +19195.612739 +19197.207120 +19198.750212 +19199.889490 +19201.008580 +19202.579829 +19204.185258 +19205.834969 +19207.669900 +19208.976207 +19210.119174 +19211.240193 +19213.103647 +19215.190194 +19216.724447 +19218.152731 +19219.400457 +19220.555566 +19221.698577 +19223.042982 +19224.741409 +19225.988863 +19227.422742 +19228.642568 +19229.788044 +19230.932592 +19232.080450 +19233.246894 +19234.419211 +19235.642900 +19236.816327 +19238.010067 +19239.180441 +19240.316081 +19241.468806 +19242.610270 +19243.746371 +19244.922738 +19246.076604 +19247.220869 +19248.377247 +19249.546791 +19250.676790 +19251.842179 +19252.998497 +19254.131702 +19255.310502 +19256.484323 +19257.639411 +19258.797270 +19259.940935 +19261.079858 +19262.222371 +19263.377011 +19264.536943 +19265.700869 +19266.862741 +19268.008547 +19269.162263 +19270.352478 +19271.512090 +19272.647800 +19273.806532 +19274.957696 +19276.121279 +19277.273346 +19278.423109 +19279.575306 +19280.721301 +19281.901454 +19283.048497 +19284.251876 +19285.532283 +19286.966111 +19288.169065 +19289.327096 +19290.460786 +19291.626703 +19292.791050 +19293.951281 +19295.140430 +19296.289545 +19297.423163 +19298.583141 +19299.723291 +19300.865869 +19302.038615 +19303.214414 +19304.388779 +19305.555986 +19306.703458 +19307.866739 +19309.013949 +19310.171889 +19311.337335 +19312.480809 +19313.636449 +19314.853002 +19316.021193 +19317.184384 +19318.339323 +19319.503391 +19320.641277 +19321.835666 +19323.029063 +19324.239556 +19325.392542 +19326.519764 +19327.649461 +19328.778855 +19329.942411 +19331.151131 +19332.347981 +19333.530322 +19334.726439 +19335.889643 +19337.055038 +19338.217415 +19339.413278 +19340.596014 +19341.747561 +19342.880068 +19344.023810 +19345.194525 +19346.351390 +19347.495045 +19348.674353 +19349.847159 +19350.966838 +19352.123435 +19353.290564 +19354.438110 +19355.568119 +19356.691345 +19357.817065 +19358.968611 +19360.130181 +19361.298985 +19362.455387 +19363.597530 +19364.756501 +19365.906718 +19367.030769 +19368.175141 +19369.347101 +19370.557386 +19371.726426 +19372.875765 +19374.022955 +19375.170440 +19376.316245 +19377.478720 +19378.641118 +19379.790895 +19380.962841 +19382.121670 +19383.291150 +19384.458977 +19385.599920 +19386.766523 +19387.902975 +19389.073136 +19390.219019 +19391.383373 +19392.542107 +19393.706724 +19394.884049 +19396.032097 +19397.196776 +19398.323965 +19399.500017 +19400.654861 +19401.828216 +19402.955375 +19404.077336 +19405.231469 +19406.375304 +19407.525624 +19408.665627 +19409.816462 +19410.949390 +19412.111949 +19413.270962 +19414.535995 +19415.688022 +19416.878287 +19418.131563 +19419.338387 +19420.517762 +19421.664569 +19422.822064 +19423.982816 +19425.156388 +19426.344612 +19427.472793 +19428.603156 +19429.729253 +19430.878774 +19432.041442 +19433.212177 +19434.361016 +19435.520482 +19436.680978 +19437.844504 +19438.982507 +19440.147440 +19441.292659 +19442.461213 +19443.610287 +19444.803729 +19445.939909 +19447.100483 +19448.254637 +19449.397819 +19450.572753 +19451.736256 +19452.887356 +19454.032865 +19455.245703 +19456.427729 +19457.582377 +19458.765450 +19459.937627 +19461.084464 +19462.255505 +19463.402019 +19464.553304 +19465.751140 +19467.140535 +19469.096019 +19470.808024 +19472.227357 +19473.489307 +19474.976471 +19476.557984 +19478.446851 +19479.838209 +19481.340659 +19482.637139 +19483.888002 +19485.098606 +19486.265941 +19487.383330 +19488.678438 +19490.090483 +19491.574521 +19493.007050 +19494.136995 +19495.475198 +19497.515599 +19499.333797 +19500.801667 +19502.163565 +19503.282927 +19504.405424 +19505.532502 +19506.664091 +19507.793030 +19508.933153 +19510.075582 +19511.198765 +19512.338140 +19513.806743 +19515.417527 +19516.539648 +19518.162751 +19519.890106 +19521.255500 +19522.948619 +19524.349990 +19525.707340 +19526.856057 +19527.986014 +19529.106419 +19530.241951 +19531.528881 +19532.740660 +19534.078371 +19535.254320 +19536.413930 +19537.592705 +19539.112246 +19540.536708 +19541.729259 +19543.069257 +19544.808294 +19545.993154 +19547.128685 +19548.487117 +19549.931756 +19551.085296 +19552.439387 +19553.566233 +19554.767991 +19555.916382 +19557.456495 +19558.606427 +19559.722606 +19560.842041 +19562.003350 +19563.132545 +19564.261068 +19565.393199 +19566.531779 +19567.674501 +19568.799745 +19569.951501 +19571.077259 +19572.204018 +19573.322126 +19574.446381 +19575.587775 +19576.841031 +19578.288979 +19579.598692 +19580.945324 +19582.193062 +19583.594511 +19585.527372 +19586.968747 +19588.255606 +19589.668236 +19591.021071 +19592.166220 +19593.295579 +19594.426213 +19595.602186 +19596.734990 +19597.869182 +19599.022575 +19600.161656 +19601.309654 +19602.752818 +19604.377639 +19605.629896 +19606.846761 +19607.997499 +19609.130584 +19610.289632 +19611.448459 +19612.675311 +19613.826688 +19614.995342 +19616.135728 +19617.282344 +19618.440043 +19619.600303 +19620.766252 +19621.901628 +19623.050333 +19624.191332 +19625.336582 +19626.476227 +19627.659080 +19628.830926 +19630.088934 +19631.240092 +19632.419022 +19633.561143 +19634.684168 +19635.845540 +19636.985625 +19638.135871 +19639.286487 +19640.419981 +19641.588822 +19642.752639 +19643.902201 +19645.065878 +19646.210540 +19647.345901 +19648.518990 +19649.657221 +19650.866736 +19652.008526 +19653.129106 +19654.294826 +19655.445586 +19656.587941 +19657.729506 +19658.890486 +19660.061300 +19661.210001 +19662.384424 +19663.540409 +19664.706868 +19665.891963 +19667.053299 +19668.215963 +19669.406465 +19670.608070 +19671.772163 +19672.925539 +19674.068447 +19675.219969 +19676.539809 +19677.747142 +19678.899407 +19680.096365 +19681.255138 +19682.411737 +19683.566019 +19684.739094 +19685.941022 +19687.077782 +19688.239171 +19689.390187 +19690.543563 +19691.705804 +19692.846571 +19693.993259 +19695.165145 +19696.309843 +19697.474837 +19698.626318 +19699.783375 +19700.972351 +19702.217399 +19703.445046 +19704.593358 +19705.735119 +19706.883233 +19708.071897 +19709.249975 +19710.431569 +19711.568948 +19712.706577 +19713.870223 +19715.009716 +19716.198050 +19717.351821 +19718.550297 +19719.786330 +19721.066358 +19722.210168 +19723.364681 +19724.531010 +19725.666635 +19726.801024 +19728.021375 +19729.223922 +19730.385144 +19731.576989 +19732.720226 +19733.858997 +19735.006213 +19736.144847 +19737.289546 +19738.447170 +19739.590545 +19740.757495 +19741.898761 +19743.055560 +19744.231078 +19745.398127 +19746.545274 +19747.676249 +19748.814682 +19749.953170 +19751.097105 +19752.286561 +19753.447739 +19754.610094 +19755.786070 +19756.964525 +19758.105980 +19759.252841 +19760.396549 +19761.561249 +19762.720047 +19763.854845 +19764.972315 +19766.114098 +19767.235461 +19768.400133 +19769.568892 +19770.739445 +19771.898483 +19773.029901 +19774.212780 +19775.359992 +19776.507804 +19777.652442 +19778.817855 +19779.973445 +19781.164733 +19782.298169 +19783.435676 +19784.572491 +19785.705158 +19786.827772 +19787.991202 +19789.114960 +19790.261161 +19791.416170 +19792.554928 +19793.721425 +19794.851022 +19796.032657 +19797.195020 +19798.343249 +19799.515443 +19800.657170 +19801.823951 +19802.968557 +19804.098328 +19805.224819 +19806.364291 +19807.481690 +19808.607642 +19809.716140 +19810.865224 +19812.040048 +19813.154099 +19814.291429 +19815.443813 +19816.591427 +19817.707845 +19818.853911 +19820.047129 +19821.201974 +19822.364071 +19823.502668 +19824.663699 +19825.913115 +19827.038928 +19828.188959 +19829.335765 +19830.585820 +19831.735300 +19832.851029 +19834.025115 +19835.228688 +19836.398586 +19837.644843 +19838.818642 +19839.973555 +19841.130874 +19842.278211 +19843.446796 +19844.612690 +19845.850768 +19847.041296 +19848.195042 +19849.342097 +19850.503721 +19851.664666 +19852.811037 +19853.979283 +19855.178791 +19856.379147 +19857.546515 +19858.688393 +19859.845698 +19861.012502 +19862.180899 +19863.334299 +19864.504658 +19865.670492 +19866.811426 +19867.985535 +19869.155341 +19870.345828 +19871.507106 +19872.661116 +19873.791775 +19874.962387 +19876.118350 +19877.279283 +19878.426833 +19879.587334 +19880.743075 +19881.885303 +19883.032455 +19884.266799 +19885.478491 +19886.665395 +19887.796654 +19888.960853 +19890.087084 +19891.419608 +19892.924622 +19894.245117 +19896.508885 +19898.064937 +19899.236938 +19900.409976 +19901.608932 +19902.833417 +19903.993766 +19905.396429 +19906.756058 +19908.565776 +19910.150347 +19912.182343 +19913.923725 +19915.667290 +19917.073524 +19918.464711 +19920.315231 +19921.594706 +19923.065740 +19924.880551 +19926.729259 +19927.900424 +19929.307974 +19930.546034 +19932.310109 +19933.572963 +19935.205540 +19937.036869 +19938.861041 +19940.891307 +19942.182055 +19943.637880 +19944.953694 +19946.377066 +19948.102686 +19949.252577 +19950.464151 +19952.187784 +19953.804854 +19955.018104 +19956.182353 +19957.360515 +19959.386483 +19961.426405 +19962.956929 +19964.150823 +19965.322661 +19967.017576 +19968.552074 +19970.132015 +19971.794889 +19974.048894 +19975.403581 +19976.952441 +19978.544815 +19980.076902 +19981.220032 +19982.399946 +19983.551282 +19984.735482 +19985.939366 +19987.089640 +19988.357357 +19989.612123 +19990.843325 +19992.028086 +19993.189547 +19994.359197 +19995.527127 +19996.718189 +19997.894854 +19999.630494 +20001.074298 +20003.126459 +20005.080473 +20006.269458 +20007.468132 +20008.612303 +20009.782924 +20011.328199 +20012.971785 +20014.521148 +20015.666058 +20017.110499 +20018.371874 +20019.566094 +20021.341258 +20022.707803 +20024.130611 +20025.874003 +20027.043426 +20028.203985 +20029.367426 +20030.666300 +20032.338767 +20033.714381 +20034.993643 +20036.258868 +20037.419550 +20038.601050 +20039.738476 +20040.906050 +20042.060034 +20043.202957 +20044.408878 +20045.597910 +20046.760402 +20047.903353 +20049.040355 +20050.216308 +20051.363892 +20052.541473 +20053.740676 +20054.963120 +20056.137431 +20057.312143 +20058.462245 +20059.624774 +20060.787195 +20061.935916 +20063.131376 +20065.056879 +20066.735969 +20067.895127 +20069.033449 +20070.166211 +20071.393079 +20072.544269 +20073.721751 +20074.881437 +20076.052582 +20077.251854 +20078.409998 +20079.539409 +20080.682183 +20081.821339 +20082.978266 +20084.152363 +20085.339529 +20086.503072 +20087.656942 +20088.793586 +20089.974396 +20091.111050 +20092.263563 +20093.422141 +20094.563269 +20095.755114 +20096.898185 +20098.044883 +20099.169864 +20100.318987 +20101.507091 +20102.661532 +20103.797419 +20104.953920 +20106.118919 +20107.309283 +20108.465925 +20109.627444 +20110.766889 +20111.959247 +20113.107308 +20114.268485 +20115.470431 +20116.665741 +20117.851971 +20118.986785 +20120.116101 +20121.289455 +20122.456368 +20123.619366 +20124.763775 +20125.937647 +20127.078031 +20128.222556 +20129.364541 +20130.535423 +20131.708489 +20132.866937 +20134.006287 +20135.137721 +20136.287786 +20137.429542 +20138.575318 +20139.726762 +20140.913110 +20142.068279 +20143.225657 +20144.389601 +20145.611117 +20146.788481 +20147.909517 +20149.058329 +20150.221599 +20151.367924 +20152.536455 +20153.805783 +20155.038182 +20156.218221 +20157.371577 +20158.517274 +20159.653718 +20160.802375 +20161.955970 +20163.085539 +20164.226934 +20165.365911 +20166.533804 +20167.692178 +20168.858648 +20170.056244 +20171.221398 +20172.411538 +20173.577800 +20174.746397 +20175.937475 +20177.117877 +20178.284658 +20179.435906 +20180.614634 +20181.810183 +20182.989172 +20184.147462 +20185.320194 +20186.510698 +20187.659881 +20188.826932 +20189.969360 +20191.120062 +20192.305601 +20193.455827 +20194.703962 +20196.238143 +20197.430302 +20198.576655 +20199.747857 +20200.892960 +20202.056641 +20203.205786 +20204.366112 +20205.542772 +20206.715922 +20207.899555 +20209.047191 +20210.186842 +20211.343545 +20212.479369 +20213.611600 +20214.758712 +20215.907380 +20217.053366 +20218.202288 +20219.379140 +20220.572805 +20221.866664 +20223.051642 +20224.195854 +20225.335391 +20226.521620 +20227.658437 +20228.861041 +20230.016950 +20231.174346 +20232.335735 +20233.487952 +20234.681914 +20235.822712 +20236.992165 +20238.136175 +20239.298199 +20240.465916 +20241.801034 +20243.018212 +20244.207084 +20245.368370 +20246.565503 +20247.712575 +20248.887905 +20250.069255 +20251.258682 +20252.421178 +20253.702040 +20254.896873 +20256.052842 +20257.208215 +20258.363819 +20259.513546 +20260.675062 +20261.839892 +20262.996961 +20264.279404 +20265.471886 +20266.668153 +20267.832712 +20268.976246 +20270.160534 +20271.347586 +20272.552755 +20273.719413 +20274.937495 +20276.083597 +20277.261914 +20278.414602 +20279.596967 +20280.742041 +20281.892680 +20283.031165 +20284.180853 +20285.342458 +20286.476950 +20287.615235 +20288.761318 +20289.904755 +20291.052927 +20292.215455 +20293.371015 +20294.543673 +20295.680341 +20296.841087 +20297.974380 +20299.131147 +20300.306074 +20301.468740 +20302.600920 +20303.743912 +20304.889772 +20306.082219 +20307.230897 +20308.383407 +20309.540643 +20310.657612 +20311.808255 +20312.957687 +20314.108058 +20315.274721 +20316.431017 +20317.604105 +20318.765915 +20319.913843 +20321.148461 +20322.393090 +20323.543574 +20324.712589 +20325.905973 +20327.035631 +20328.165321 +20329.329682 +20330.481231 +20331.655145 +20332.810780 +20333.967683 +20335.104046 +20336.274020 +20337.405473 +20338.549971 +20339.680408 +20340.817139 +20341.958721 +20343.106297 +20344.248647 +20345.412777 +20346.651546 +20347.791460 +20348.980746 +20350.120261 +20351.268433 +20352.454969 +20353.694245 +20354.907249 +20356.077914 +20357.239239 +20358.388390 +20359.531355 +20360.692344 +20361.855964 +20363.005068 +20364.170177 +20365.301915 +20366.500552 +20367.657489 +20368.844872 +20370.011595 +20371.214134 +20372.380285 +20373.516993 +20374.678020 +20375.829996 +20377.001153 +20378.150792 +20379.295933 +20380.437605 +20381.586879 +20382.717336 +20383.842784 +20384.999180 +20386.167316 +20387.312051 +20388.482965 +20389.656855 +20390.856428 +20392.018828 +20393.205085 +20394.328672 +20395.480925 +20396.666904 +20397.846993 +20398.987414 +20400.117160 +20401.299769 +20402.440131 +20403.590885 +20404.726683 +20405.882628 +20407.027956 +20408.184312 +20409.368873 +20410.534945 +20411.662787 +20412.802358 +20413.961952 +20415.143848 +20416.294700 +20417.442647 +20418.570758 +20419.733242 +20420.902799 +20422.077362 +20423.272309 +20424.414606 +20425.582375 +20426.735569 +20427.855876 +20429.038388 +20430.162378 +20431.307107 +20432.459090 +20433.598113 +20434.759099 +20435.893143 +20437.068659 +20438.223140 +20439.404495 +20440.562817 +20441.730931 +20442.902512 +20444.082780 +20445.240567 +20446.402867 +20447.572945 +20448.741526 +20449.921636 +20451.336232 +20453.340133 +20454.748102 +20456.263699 +20457.519360 +20458.682210 +20459.802221 +20460.989099 +20462.218291 +20463.428383 +20464.676666 +20465.884110 +20467.723021 +20469.563438 +20471.475030 +20472.934576 +20474.909439 +20476.306100 +20477.744975 +20479.878568 +20481.511725 +20483.209106 +20484.672896 +20486.489178 +20487.978842 +20489.337326 +20490.750895 +20492.338092 +20493.927549 +20495.117502 +20496.653101 +20497.977502 +20499.394020 +20500.591272 +20501.777047 +20502.891914 +20504.032239 +20505.708052 +20507.106324 +20508.435836 +20509.875707 +20511.148452 +20512.290709 +20513.407249 +20514.554536 +20515.700661 +20517.316736 +20518.455341 +20520.233380 +20522.187170 +20523.682355 +20525.392602 +20526.597818 +20527.722362 +20528.856350 +20529.980611 +20531.127800 +20532.255386 +20533.395109 +20534.518713 +20535.681825 +20536.840216 +20537.968381 +20539.315927 +20540.445619 +20541.594982 +20542.722526 +20544.074142 +20545.257112 +20546.397829 +20547.543583 +20548.668233 +20549.821908 +20551.134417 +20552.774808 +20554.146621 +20555.310456 +20556.432304 +20557.822464 +20559.121328 +20560.376992 +20562.185636 +20563.577151 +20564.794129 +20566.063197 +20567.251601 +20568.571992 +20570.055098 +20571.354147 +20572.520539 +20573.665611 +20575.605086 +20576.982537 +20578.153373 +20579.319749 +20580.474739 +20581.664607 +20582.832201 +20584.094325 +20585.426226 +20586.697422 +20587.830942 +20588.959979 +20590.116172 +20591.246845 +20592.369114 +20593.501106 +20594.618946 +20595.792802 +20596.912104 +20598.037950 +20599.195199 +20600.330232 +20601.479045 +20602.609410 +20603.826399 +20604.975339 +20606.122096 +20607.275458 +20608.402611 +20609.563954 +20610.728916 +20611.872782 +20613.008247 +20614.134521 +20615.265172 +20616.433831 +20617.600589 +20618.752927 +20619.878207 +20620.999374 +20622.225131 +20623.352895 +20624.463927 +20625.582398 +20626.773041 +20627.925400 +20629.056971 +20630.195011 +20631.386690 +20632.534379 +20633.668417 +20634.823528 +20635.941220 +20637.062365 +20638.209538 +20639.360223 +20640.485576 +20641.615763 +20642.727190 +20643.852318 +20644.991737 +20646.120115 +20647.258968 +20648.386496 +20649.522006 +20650.656329 +20651.844064 +20652.960145 +20654.138977 +20655.288175 +20656.439059 +20657.660332 +20658.883691 +20660.060634 +20661.190800 +20662.340571 +20663.459913 +20664.574173 +20665.738225 +20666.935934 +20668.155792 +20669.611593 +20670.876637 +20672.054720 +20673.187586 +20674.381322 +20675.549795 +20676.770328 +20678.014204 +20679.230100 +20680.500848 +20681.756312 +20682.965673 +20684.100825 +20685.221600 +20686.400013 +20687.547735 +20688.686855 +20689.814291 +20690.946960 +20692.134926 +20693.334137 +20694.462822 +20695.585073 +20696.739670 +20697.875809 +20698.988092 +20700.099192 +20701.230652 +20702.365389 +20703.483431 +20704.614829 +20705.737620 +20706.869657 +20707.997034 +20709.132418 +20710.306431 +20711.417378 +20712.569649 +20713.706717 +20714.815168 +20715.945922 +20717.079439 +20718.212595 +20719.426225 +20720.660551 +20721.873071 +20723.152137 +20724.439785 +20725.565826 +20726.767887 +20727.977677 +20729.124689 +20730.436180 +20731.591615 +20732.755236 +20733.994166 +20735.509806 +20736.696644 +20737.901105 +20739.151830 +20740.265573 +20741.403124 +20742.590326 +20743.847015 +20745.152128 +20746.333047 +20747.489984 +20748.751552 +20749.885527 +20751.036952 +20752.227405 +20753.389543 +20754.607567 +20755.723463 +20756.863534 +20757.987571 +20759.181177 +20760.364608 +20761.532364 +20762.689753 +20764.076889 +20765.206316 +20766.436736 +20767.608941 +20768.933488 +20770.651682 +20772.143363 +20773.698689 +20775.032611 +20776.172739 +20777.356815 +20778.494439 +20779.652786 +20780.866893 +20782.011608 +20783.318809 +20784.515578 +20785.946831 +20787.429687 +20788.861557 +20790.272371 +20791.628166 +20793.246642 +20794.985943 +20796.759060 +20799.171850 +20800.792992 +20802.525965 +20804.181770 +20805.964337 +20807.771624 +20809.502120 +20811.255305 +20813.043864 +20814.851718 +20816.668238 +20818.444577 +20819.629519 +20820.890091 +20822.438543 +20823.635514 +20825.200977 +20826.863604 +20828.373545 +20829.908116 +20831.575669 +20833.149549 +20834.768720 +20836.348529 +20837.827932 +20839.028464 +20840.224665 +20841.373058 +20842.602938 +20843.812767 +20844.999410 +20846.524677 +20848.404761 +20849.791726 +20851.329056 +20852.523184 +20853.701008 +20854.901793 +20856.081414 +20857.280294 +20858.428589 +20859.685979 +20860.859195 +20862.162372 +20863.872707 +20865.347079 +20866.660445 +20867.949881 +20869.133582 +20870.323723 +20871.508427 +20872.670569 +20873.901358 +20875.193266 +20876.336126 +20877.465980 +20878.622941 +20879.762512 +20880.955037 +20882.087429 +20883.281012 +20884.555208 +20885.696991 +20886.862334 +20888.037396 +20889.342429 +20890.562503 +20891.753560 +20892.917518 +20894.977119 +20897.444703 +20899.060937 +20900.573013 +20901.776995 +20903.063304 +20904.682151 +20906.117368 +20907.573289 +20909.065268 +20910.251077 +20911.577393 +20912.699945 +20913.852860 +20915.071135 +20916.266722 +20917.435941 +20918.569495 +20919.726856 +20920.892973 +20922.424043 +20923.774384 +20925.459881 +20926.899423 +20928.112318 +20929.682883 +20931.758976 +20933.397093 +20934.702492 +20936.028868 +20937.259831 +20938.969814 +20940.347349 +20941.780362 +20943.300042 +20944.484162 +20945.630377 +20946.755167 +20947.932522 +20949.170519 +20950.562512 +20951.943109 +20953.387344 +20954.983142 +20956.392501 +20957.863689 +20959.119067 +20960.329334 +20961.595493 +20962.784114 +20963.985122 +20965.227641 +20966.441958 +20967.712617 +20968.929577 +20970.132096 +20971.323122 +20972.586683 +20973.866907 +20975.095057 +20976.289565 +20977.478113 +20978.658017 +20979.923444 +20981.170385 +20982.398366 +20983.562297 +20984.824743 +20986.070577 +20987.288904 +20988.475914 +20989.744869 +20990.987900 +20992.205176 +20993.414585 +20994.710784 +20995.951160 +20997.201852 +20998.431711 +20999.693114 +21000.848388 +21002.030889 +21003.294849 +21004.529797 +21005.722235 +21006.988363 +21008.494933 +21009.836482 +21011.279455 +21012.607785 +21013.801140 +21015.362463 +21016.652639 +21017.845764 +21019.105430 +21020.663569 +21022.077557 +21023.236384 +21024.375990 +21025.507294 +21026.728822 +21027.901227 +21029.035738 +21030.193925 +21031.437817 +21032.610908 +21033.785401 +21035.446785 +21037.055025 +21038.207963 +21039.349878 +21040.726663 +21043.313822 +21044.478433 +21045.610619 +21046.770277 +21047.960794 +21049.102315 +21050.243247 +21051.415942 +21052.557990 +21053.764001 +21054.892016 +21056.040171 +21057.207579 +21058.330011 +21059.452758 +21060.586733 +21061.711123 +21062.857585 +21064.058598 +21065.200805 +21066.380249 +21067.515990 +21068.646283 +21069.773803 +21070.916825 +21072.063955 +21073.227276 +21074.429404 +21075.645053 +21077.016483 +21078.244588 +21079.413343 +21080.550091 +21081.673706 +21082.890522 +21084.037206 +21085.153543 +21086.307875 +21087.462537 +21088.660183 +21089.791538 +21090.911519 +21092.059622 +21093.258969 +21094.481930 +21095.619182 +21096.761958 +21097.979578 +21099.141936 +21100.270054 +21101.421658 +21102.586313 +21103.840391 +21105.008210 +21106.147858 +21107.435586 +21108.681026 +21109.858190 +21110.990092 +21112.162011 +21113.315961 +21114.481336 +21115.655339 +21116.870425 +21118.029921 +21119.215132 +21120.374270 +21121.500902 +21122.683469 +21123.899793 +21125.068350 +21126.245131 +21127.370748 +21128.634857 +21129.924406 +21131.079991 +21132.247948 +21133.398976 +21134.554849 +21135.761724 +21136.972155 +21138.102899 +21139.248348 +21140.516045 +21141.722580 +21142.941744 +21144.066610 +21145.278003 +21146.465447 +21147.665982 +21148.832821 +21150.025357 +21151.254064 +21152.386774 +21153.510313 +21154.637024 +21155.848191 +21157.040107 +21158.193383 +21159.356310 +21160.547841 +21161.773213 +21162.949657 +21164.088814 +21165.260314 +21166.441198 +21167.636585 +21168.805985 +21169.940714 +21171.084154 +21172.252943 +21173.399816 +21174.553181 +21175.720494 +21176.887200 +21178.057893 +21179.201922 +21180.326063 +21181.520004 +21182.665062 +21183.795855 +21184.944685 +21186.146709 +21187.328596 +21188.455283 +21189.593678 +21190.717454 +21191.906692 +21193.086352 +21194.203604 +21195.341342 +21196.536614 +21197.792371 +21198.925592 +21200.062498 +21201.207478 +21202.398601 +21203.586059 +21204.733116 +21205.925510 +21207.129341 +21208.364386 +21209.549107 +21210.673409 +21211.879295 +21213.080837 +21214.222108 +21215.343685 +21216.498839 +21217.713356 +21218.886806 +21220.026678 +21221.167918 +21222.395409 +21223.589302 +21224.803706 +21225.935877 +21227.093440 +21228.300674 +21229.448809 +21230.581942 +21231.768069 +21232.982503 +21234.156993 +21235.306937 +21236.452450 +21237.625294 +21238.796084 +21239.954837 +21241.086688 +21242.257746 +21243.470845 +21244.628065 +21245.769771 +21246.920748 +21248.134099 +21249.309372 +21250.456232 +21251.595947 +21252.763005 +21254.012073 +21255.163893 +21256.348603 +21257.503193 +21258.700954 +21259.878741 +21261.004192 +21262.122135 +21263.304789 +21264.534089 +21265.661084 +21266.808993 +21267.938970 +21269.121256 +21270.290820 +21271.424867 +21272.563672 +21274.208846 +21276.175283 +21277.410402 +21278.605418 +21279.798867 +21280.945116 +21282.081827 +21283.245685 +21284.429262 +21285.578076 +21286.757734 +21287.914193 +21289.080320 +21290.407688 +21292.356473 +21293.616047 +21294.786535 +21296.023012 +21297.289748 +21298.488768 +21299.654489 +21300.827093 +21301.955118 +21303.132336 +21304.300705 +21305.502106 +21306.624874 +21307.818384 +21308.982375 +21310.288770 +21311.464119 +21312.598881 +21313.722329 +21314.918437 +21316.093468 +21317.287114 +21318.537670 +21319.802887 +21320.993711 +21322.128816 +21323.300319 +21324.485085 +21325.685192 +21326.855426 +21328.006810 +21329.163183 +21330.381873 +21331.578184 +21332.737749 +21333.916472 +21335.059735 +21336.265056 +21337.424439 +21338.574173 +21339.718180 +21340.928620 +21342.092981 +21343.228767 +21344.371363 +21345.525936 +21346.749045 +21348.022071 +21349.155716 +21350.292323 +21351.451917 +21352.670268 +21353.849518 +21354.998292 +21356.132902 +21357.376725 +21358.511160 +21359.674141 +21360.818504 +21362.011970 +21363.171303 +21364.312449 +21365.447964 +21366.625950 +21367.811420 +21369.043603 +21370.235939 +21371.468284 +21372.651575 +21373.835873 +21374.975487 +21376.102155 +21377.304419 +21378.457338 +21379.649594 +21380.766703 +21381.917677 +21383.118722 +21384.261420 +21385.405770 +21386.544822 +21387.754759 +21388.918301 +21390.040666 +21391.208119 +21392.388189 +21393.566917 +21394.685817 +21395.816560 +21396.938151 +21398.200194 +21399.355138 +21400.488734 +21401.662140 +21402.846430 +21404.023547 +21405.176701 +21406.306937 +21407.469099 +21408.649389 +21409.915346 +21411.070700 +21412.205637 +21413.370253 +21414.525367 +21415.637977 +21416.784446 +21417.995424 +21419.163365 +21420.289411 +21421.422886 +21422.561152 +21423.781551 +21424.965510 +21426.129502 +21427.276430 +21428.464701 +21429.610445 +21430.750059 +21431.887361 +21433.071319 +21434.226818 +21435.407747 +21436.590287 +21437.735828 +21438.901726 +21440.056870 +21441.191956 +21442.361995 +21443.523964 +21444.748601 +21445.874139 +21446.998405 +21448.223177 +21449.409709 +21450.589479 +21451.720124 +21452.847792 +21454.013596 +21455.233673 +21456.381001 +21457.503205 +21458.681437 +21459.865295 +21461.027517 +21462.159440 +21463.352193 +21464.530303 +21465.726043 +21466.871809 +21467.990983 +21469.189827 +21470.406840 +21471.566445 +21472.727484 +21473.926519 +21475.090845 +21476.239972 +21477.376376 +21478.550202 +21479.703943 +21480.872257 +21482.015931 +21483.144024 +21484.278732 +21485.481175 +21486.628683 +21487.768857 +21488.960600 +21490.136557 +21491.275128 +21492.405731 +21493.562119 +21494.691345 +21495.896266 +21497.063571 +21498.210611 +21499.382097 +21500.558312 +21501.754200 +21502.875150 +21504.005697 +21505.149743 +21506.367793 +21507.551119 +21508.789429 +21510.038864 +21511.286818 +21512.455088 +21513.584601 +21514.734322 +21515.885881 +21517.040256 +21518.216244 +21519.357310 +21520.530171 +21521.762716 +21522.944099 +21524.106041 +21525.285324 +21526.441603 +21527.593125 +21528.725071 +21529.873047 +21531.072656 +21532.323284 +21533.457655 +21534.628034 +21535.770158 +21536.980777 +21538.133243 +21539.272936 +21540.406918 +21541.587511 +21542.782293 +21543.988640 +21545.119586 +21546.242377 +21547.467223 +21548.648713 +21549.776222 +21550.902656 +21552.044185 +21553.246590 +21554.375200 +21555.517425 +21556.683995 +21557.884180 +21559.043377 +21560.206230 +21561.364315 +21562.527037 +21563.684791 +21564.819821 +21565.978986 +21567.138384 +21568.352126 +21569.485449 +21570.613669 +21571.769140 +21572.972433 +21574.163012 +21575.291639 +21576.488163 +21577.651939 +21578.859507 +21580.024009 +21581.130450 +21582.272591 +21583.475264 +21584.639137 +21585.777636 +21586.904540 +21588.113228 +21589.312437 +21590.474173 +21591.625542 +21592.800411 +21594.015182 +21595.156712 +21596.319158 +21597.492416 +21598.682240 +21599.839148 +21600.993462 +21602.123142 +21603.303102 +21604.515245 +21605.686465 +21606.818421 +21607.968922 +21609.335479 +21610.478510 +21611.631248 +21612.751856 +21613.906817 +21615.100747 +21616.243696 +21617.395366 +21618.556596 +21619.733370 +21620.909571 +21622.036931 +21623.165984 +21624.354428 +21625.526221 +21626.701251 +21627.836410 +21628.998007 +21630.446981 +21631.643000 +21632.791233 +21633.935026 +21635.129585 +21636.299843 +21637.479685 +21638.605244 +21639.808738 +21641.001813 +21642.158546 +21643.295137 +21644.473934 +21645.654121 +21646.774870 +21647.933887 +21649.143436 +21650.341220 +21651.480447 +21652.621211 +21653.799921 +21654.945347 +21656.147231 +21657.270861 +21658.411711 +21659.579726 +21660.788730 +21661.959494 +21663.078655 +21664.206345 +21665.357484 +21666.555514 +21667.689875 +21668.866100 +21670.013434 +21671.193898 +21672.355494 +21673.513136 +21674.685009 +21675.846157 +21677.034949 +21678.174826 +21679.298281 +21680.548352 +21681.739619 +21682.865779 +21684.028479 +21685.152905 +21686.317070 +21687.487615 +21688.646865 +21689.802794 +21691.044207 +21692.227586 +21693.372016 +21694.531448 +21695.678977 +21696.896129 +21698.054889 +21699.238969 +21700.381593 +21701.622640 +21702.781578 +21703.938649 +21705.066743 +21706.216642 +21707.411386 +21708.740883 +21709.918745 +21711.091961 +21712.294549 +21713.466434 +21714.652624 +21715.773276 +21717.004793 +21718.169776 +21719.303266 +21720.433121 +21721.599484 +21722.827368 +21723.977033 +21725.128983 +21726.306324 +21727.494092 +21728.716061 +21729.866002 +21731.017241 +21732.167051 +21733.373378 +21734.530301 +21735.684655 +21736.886880 +21738.078853 +21739.242604 +21740.374931 +21741.515420 +21742.719436 +21743.911785 +21745.057034 +21746.226048 +21747.374059 +21748.599123 +21749.815278 +21750.945972 +21752.058978 +21753.218538 +21754.392941 +21755.553619 +21756.688196 +21757.841014 +21759.014933 +21760.137011 +21761.327249 +21762.478989 +21763.656151 +21764.851900 +21765.975118 +21767.147621 +21768.298665 +21769.490579 +21770.672626 +21771.805412 +21772.933533 +21774.218036 +21775.451946 +21776.618956 +21777.780379 +21778.979822 +21780.155091 +21781.286674 +21782.452837 +21783.605997 +21784.763315 +21785.907671 +21787.050875 +21788.220090 +21789.414281 +21790.568343 +21791.713572 +21792.878666 +21794.032057 +21795.229287 +21796.355065 +21797.530936 +21798.699870 +21799.906074 +21801.104777 +21802.249246 +21803.404573 +21804.618355 +21805.782113 +21806.912219 +21808.147961 +21809.434984 +21810.664051 +21811.826365 +21812.965988 +21814.113237 +21815.303332 +21816.442972 +21817.570134 +21818.780570 +21819.946171 +21821.112560 +21822.244347 +21823.372090 +21824.503170 +21825.746865 +21826.927811 +21828.075058 +21829.254298 +21830.428484 +21831.605134 +21832.767849 +21833.920544 +21835.081190 +21836.271101 +21837.388106 +21838.552959 +21839.708123 +21840.894470 +21842.069714 +21843.212859 +21844.352492 +21845.510177 +21846.668207 +21847.797835 +21848.991798 +21850.133818 +21851.370634 +21852.560622 +21853.676397 +21854.834324 +21856.048008 +21857.238038 +21858.374444 +21859.526342 +21860.797257 +21861.996834 +21863.159546 +21864.331356 +21865.469439 +21866.631425 +21867.785849 +21868.915191 +21870.117934 +21871.297011 +21872.469331 +21873.615313 +21874.786783 +21875.909026 +21877.087421 +21878.229134 +21879.411458 +21880.572883 +21881.746972 +21882.954404 +21884.105342 +21885.240238 +21886.381172 +21887.548914 +21888.696535 +21889.846382 +21890.994632 +21892.217394 +21893.381439 +21894.505895 +21895.624536 +21896.765406 +21897.958216 +21899.139129 +21900.263408 +21901.396082 +21902.612882 +21903.780587 +21904.919750 +21906.055765 +21907.209673 +21908.491598 +21909.634261 +21910.780953 +21911.911081 +21913.076205 +21914.215757 +21915.353807 +21916.472135 +21917.645596 +21918.871821 +21920.001942 +21921.154015 +21922.328423 +21923.516417 +21924.709865 +21925.857318 +21926.984192 +21928.202404 +21929.375151 +21930.513121 +21931.665170 +21932.833432 +21934.013219 +21935.154808 +21936.296403 +21937.434733 +21938.616627 +21939.848070 +21941.008628 +21942.219384 +21943.387524 +21944.611027 +21945.791618 +21946.954193 +21948.104374 +21949.322720 +21950.484148 +21951.651396 +21952.831284 +21954.033724 +21955.239080 +21956.371821 +21957.508487 +21958.693968 +21959.910568 +21961.058523 +21962.226074 +21963.365765 +21964.534337 +21965.710250 +21966.830326 +21967.972680 +21969.163210 +21970.399654 +21971.525675 +21972.728194 +21973.890263 +21975.172866 +21976.353145 +21977.659746 +21979.052854 +21980.626145 +21982.196744 +21983.426646 +21984.669514 +21985.818624 +21987.023235 +21988.200382 +21989.343280 +21990.589007 +21991.777374 +21992.951046 +21994.089642 +21995.220319 +21996.397947 +21997.547575 +21998.717940 +21999.916243 +22001.105448 +22002.380189 +22003.581273 +22004.731896 +22005.873043 +22007.020129 +22008.206981 +22009.465693 +22010.662126 +22011.813520 +22012.995286 +22014.171028 +22015.293255 +22016.451386 +22017.712370 +22018.849847 +22020.028937 +22021.202555 +22022.408094 +22023.549475 +22024.719410 +22025.900004 +22027.052973 +22028.241945 +22029.380123 +22030.523850 +22031.741828 +22033.011380 +22034.178329 +22035.306169 +22036.447874 +22037.659678 +22038.810661 +22039.969371 +22041.085574 +22042.315266 +22043.477386 +22044.623142 +22045.809479 +22046.958940 +22048.136035 +22049.358225 +22050.502940 +22051.672933 +22052.822298 +22053.990215 +22055.166000 +22056.289461 +22057.419869 +22058.618644 +22059.780519 +22060.932442 +22062.113370 +22063.317720 +22064.526533 +22065.711232 +22066.840879 +22068.056707 +22069.245445 +22070.395959 +22071.522512 +22072.673430 +22073.866606 +22075.065011 +22076.212409 +22077.398365 +22078.569313 +22079.769774 +22080.900945 +22082.054030 +22083.206778 +22084.456898 +22085.621020 +22086.768145 +22087.916696 +22089.085695 +22090.239545 +22091.363092 +22092.500820 +22093.688224 +22094.899095 +22096.040900 +22097.175487 +22098.326704 +22099.588086 +22100.749003 +22101.868540 +22103.002286 +22104.258545 +22105.431995 +22106.553013 +22107.694324 +22108.924769 +22110.213714 +22111.357837 +22112.482782 +22113.624014 +22114.782978 +22115.954869 +22117.093933 +22118.225239 +22119.369183 +22120.634613 +22121.759912 +22122.879104 +22124.032850 +22125.211103 +22126.377945 +22127.539743 +22128.661281 +22129.887101 +22131.113559 +22132.303187 +22133.449887 +22134.594394 +22135.754859 +22136.886428 +22138.030569 +22139.175989 +22140.377385 +22141.565786 +22142.690819 +22143.838085 +22144.995524 +22146.182630 +22147.403229 +22148.590395 +22149.769097 +22150.932284 +22152.108356 +22153.236802 +22154.384625 +22155.537401 +22156.702876 +22157.828534 +22158.966821 +22160.157696 +22161.311936 +22162.494891 +22163.639709 +22164.848993 +22166.048171 +22167.220367 +22168.342278 +22169.462398 +22170.612865 +22171.840865 +22172.996283 +22174.158681 +22175.325445 +22176.484029 +22177.697632 +22178.833474 +22179.985215 +22181.144900 +22182.325734 +22183.511491 +22184.697854 +22185.848727 +22186.987420 +22188.159366 +22189.298651 +22190.451825 +22191.606849 +22192.795039 +22193.943451 +22195.157018 +22196.319716 +22197.555464 +22198.687382 +22199.841652 +22201.010937 +22202.189611 +22203.395282 +22204.576073 +22205.706561 +22206.829061 +22207.975850 +22209.295097 +22210.458352 +22211.606880 +22212.743053 +22213.927689 +22215.071964 +22216.225440 +22217.374261 +22218.613153 +22219.765766 +22220.913133 +22222.069791 +22223.235561 +22224.373394 +22225.594228 +22226.759966 +22227.918083 +22229.163586 +22230.305740 +22231.438995 +22232.598127 +22233.802903 +22234.952435 +22236.083485 +22237.267932 +22238.490520 +22239.631673 +22240.785727 +22241.928506 +22243.090207 +22244.264166 +22245.439776 +22246.611371 +22247.802731 +22248.970979 +22250.186983 +22251.327557 +22252.445916 +22253.615533 +22254.852197 +22255.969620 +22257.131670 +22258.274942 +22259.466532 +22260.645478 +22261.778545 +22262.957041 +22264.116429 +22265.290962 +22266.488736 +22267.647492 +22268.805655 +22270.011791 +22271.151098 +22272.331893 +22273.607665 +22274.851681 +22276.043634 +22277.185717 +22278.312458 +22279.460249 +22280.648185 +22281.774606 +22282.934386 +22284.077119 +22285.218176 +22286.413272 +22287.555074 +22288.714120 +22289.900681 +22291.101228 +22292.217349 +22293.340366 +22294.514413 +22295.759121 +22296.928632 +22298.048868 +22299.205758 +22300.417686 +22301.605029 +22302.736834 +22303.876877 +22305.050806 +22306.261647 +22307.390563 +22308.579612 +22309.855063 +22310.989507 +22312.173852 +22313.286757 +22314.431823 +22315.589250 +22316.795624 +22317.932164 +22319.135197 +22320.283403 +22321.454734 +22322.591609 +22323.762135 +22324.941311 +22326.103797 +22327.274848 +22328.433945 +22329.560406 +22330.702346 +22331.907491 +22333.041205 +22334.227876 +22335.412084 +22336.658964 +22337.882524 +22339.011610 +22340.187455 +22341.351074 +22342.539198 +22343.695149 +22344.851100 +22345.986832 +22347.137649 +22348.292170 +22349.483527 +22350.647476 +22351.820671 +22352.997025 +22354.157691 +22355.360283 +22356.499952 +22357.693599 +22358.874491 +22360.041910 +22361.182321 +22362.362975 +22363.557528 +22364.699148 +22365.838942 +22367.021452 +22368.246736 +22369.371842 +22370.515857 +22371.693082 +22372.900878 +22374.037947 +22375.177752 +22376.342500 +22377.528421 +22378.708237 +22379.848633 +22380.973244 +22382.100911 +22383.260096 +22384.428759 +22385.602018 +22386.794203 +22387.935604 +22389.133579 +22390.263838 +22391.403993 +22392.527787 +22393.763771 +22394.887703 +22396.036134 +22397.195214 +22398.447656 +22399.584818 +22400.748179 +22401.874672 +22403.085544 +22404.251806 +22405.424198 +22406.576253 +22407.832318 +22408.970509 +22410.162548 +22411.336024 +22412.447557 +22413.642866 +22414.819243 +22415.938142 +22417.070671 +22418.234307 +22419.410190 +22420.553196 +22421.717971 +22422.862268 +22424.089183 +22425.280589 +22426.406467 +22427.531630 +22428.696204 +22429.857475 +22431.006782 +22432.153104 +22433.377650 +22434.603276 +22435.753393 +22436.866595 +22437.980547 +22439.101264 +22440.249118 +22441.406495 +22442.528529 +22443.760995 +22444.939514 +22446.129096 +22447.286602 +22448.410354 +22449.562182 +22450.783799 +22451.924889 +22453.094814 +22454.227344 +22455.445572 +22456.593938 +22457.712666 +22458.835035 +22460.021279 +22461.192107 +22462.312849 +22463.479071 +22464.655136 +22465.913205 +22467.044737 +22468.179284 +22469.365815 +22470.516680 +22471.730083 +22472.845790 +22474.047420 +22475.212301 +22476.424160 +22477.578720 +22478.704195 +22479.863618 +22481.057883 +22482.258783 +22483.406235 +22484.531890 +22485.702260 +22486.899729 +22488.048468 +22489.182812 +22490.341141 +22491.534808 +22492.748017 +22493.878254 +22495.025856 +22496.209548 +22497.373925 +22498.510447 +22499.626896 +22500.808867 +22502.060098 +22503.188049 +22504.340950 +22505.509916 +22506.649791 +22507.941502 +22509.124080 +22510.261600 +22511.425868 +22512.577703 +22513.714261 +22514.850242 +22516.014381 +22517.218510 +22518.382167 +22519.551108 +22520.682170 +22521.854939 +22523.028367 +22524.151146 +22525.326061 +22526.479803 +22527.638699 +22528.765456 +22530.040774 +22531.815675 +22533.396284 +22534.687350 +22535.876418 +22537.213621 +22538.506750 +22539.758698 +22540.968785 +22542.222374 +22543.452474 +22544.698247 +22545.897421 +22547.133391 +22548.438493 +22549.616158 +22550.907766 +22552.181939 +22553.513500 +22554.681427 +22555.846764 +22557.024897 +22558.204957 +22559.328470 +22560.516242 +22561.649392 +22562.790931 +22563.965074 +22565.112926 +22566.248398 +22567.422530 +22568.597890 +22569.791226 +22570.936385 +22572.081350 +22573.219621 +22574.430484 +22575.607984 +22576.724693 +22577.908384 +22579.092994 +22580.267544 +22581.406873 +22582.578794 +22583.741197 +22584.953648 +22586.109451 +22587.246428 +22588.416175 +22589.686689 +22590.826173 +22591.958908 +22593.101930 +22594.328854 +22595.499141 +22596.608518 +22597.750229 +22598.939867 +22600.135780 +22601.280565 +22602.425773 +22603.585139 +22604.736846 +22605.967069 +22607.130041 +22608.337532 +22609.568200 +22610.747639 +22611.892441 +22613.083213 +22614.241731 +22615.491213 +22616.647769 +22617.810978 +22618.969133 +22620.141532 +22621.308224 +22622.496219 +22623.607531 +22624.804825 +22625.998262 +22627.137144 +22628.259413 +22629.446046 +22630.664118 +22631.798866 +22632.983217 +22634.096813 +22635.260222 +22636.451777 +22637.605751 +22638.796396 +22640.020547 +22641.211134 +22642.387410 +22643.542681 +22644.732278 +22645.897338 +22647.098427 +22648.255749 +22649.410770 +22650.609747 +22651.830040 +22652.957686 +22654.085574 +22655.265785 +22656.480712 +22657.621268 +22658.795401 +22659.957366 +22661.177013 +22662.359655 +22663.531847 +22664.689519 +22665.842445 +22667.002954 +22668.173570 +22669.355480 +22670.513937 +22671.678183 +22672.867594 +22674.003030 +22675.212529 +22676.448867 +22677.600699 +22678.738959 +22679.910776 +22681.048080 +22682.205307 +22683.372631 +22684.506085 +22685.625341 +22686.794371 +22687.996824 +22689.154681 +22690.281638 +22691.472618 +22692.715935 +22693.822568 +22694.948933 +22696.082689 +22697.223700 +22698.436100 +22699.610191 +22700.775028 +22701.921889 +22703.105111 +22704.290326 +22705.418168 +22706.555391 +22707.726677 +22709.030443 +22710.245607 +22711.398985 +22712.534507 +22713.705748 +22714.873130 +22716.035323 +22717.179101 +22718.344856 +22719.533782 +22720.683914 +22721.828248 +22722.988792 +22724.182609 +22725.344055 +22726.488081 +22727.646910 +22728.831026 +22730.000869 +22731.159618 +22732.302027 +22733.474500 +22734.691178 +22735.849684 +22736.996468 +22738.130180 +22739.391741 +22740.602457 +22741.753379 +22742.924709 +22744.104895 +22745.251402 +22746.419862 +22747.610199 +22748.779851 +22750.033612 +22751.172455 +22752.352961 +22753.491525 +22754.708059 +22755.861063 +22756.994596 +22758.165197 +22759.377742 +22760.526729 +22761.683869 +22762.827260 +22763.975146 +22765.162850 +22766.330332 +22767.515050 +22768.677329 +22769.810980 +22770.976464 +22772.110333 +22773.280707 +22774.436043 +22775.649433 +22776.795967 +22777.956798 +22779.089708 +22780.304987 +22781.478864 +22782.611215 +22783.751414 +22784.931752 +22786.098442 +22787.284008 +22788.424963 +22789.565492 +22790.747605 +22791.897012 +22793.020403 +22794.166355 +22795.365235 +22796.563390 +22797.716889 +22798.844861 +22800.014179 +22801.229849 +22802.414253 +22803.587122 +22804.750150 +22805.943028 +22807.128865 +22808.269025 +22809.567720 +22810.781298 +22812.013877 +22813.153460 +22814.302417 +22815.454924 +22816.657602 +22817.829341 +22818.971555 +22820.135792 +22821.389253 +22822.522113 +22823.642231 +22824.769313 +22825.925134 +22827.139179 +22828.294593 +22829.464633 +22830.604544 +22831.771094 +22832.959951 +22834.080357 +22835.227431 +22836.404024 +22837.618685 +22838.785603 +22839.894331 +22841.093109 +22842.256548 +22843.440728 +22844.570910 +22845.715201 +22846.945060 +22848.136938 +22849.271336 +22850.504762 +22851.665454 +22852.892320 +22854.001070 +22855.173531 +22856.319749 +22857.568866 +22858.733656 +22859.879579 +22861.009136 +22862.177561 +22863.380687 +22864.536398 +22865.669087 +22866.828499 +22868.004008 +22869.231803 +22870.383331 +22871.507637 +22872.652437 +22873.875678 +22875.021743 +22876.201383 +22877.345952 +22878.621060 +22879.747075 +22880.938122 +22882.103571 +22883.321624 +22884.505522 +22885.630437 +22886.762889 +22887.925450 +22889.142587 +22890.262818 +22891.403687 +22892.606537 +22893.846157 +22894.988704 +22896.105085 +22897.240520 +22898.399211 +22899.569018 +22900.770362 +22901.929313 +22903.103712 +22904.327564 +22905.497056 +22906.657833 +22907.809605 +22909.091045 +22910.264209 +22911.398028 +22912.532944 +22913.679716 +22914.893513 +22916.055255 +22917.205658 +22918.361643 +22919.544684 +22920.679969 +22921.828701 +22923.007312 +22924.192920 +22925.381649 +22926.552609 +22927.719626 +22928.836346 +22929.975454 +22931.137099 +22932.277642 +22933.506126 +22934.632858 +22935.810761 +22936.988729 +22938.191639 +22939.389450 +22940.658860 +22941.809746 +22942.984515 +22944.132975 +22945.334061 +22946.497597 +22947.629232 +22948.760301 +22949.951674 +22951.175119 +22952.340176 +22953.519775 +22954.687201 +22955.848616 diff --git a/var.txt b/var.txt index 888e260497b09a0011d10507eda8886be8ca7127..fc6161196f3009dd1d935a991f2b9c71aa999bda 100644 --- a/var.txt +++ b/var.txt @@ -1,21 +1,18991 @@ +18990 969553.451655 -969553.451655 -969553.451655 -969553.451655 -969553.451655 -975054.507198 -990029.733667 -994288.881020 -1000589.510165 -1008794.095190 -1013181.306891 -1022669.479794 -1027274.212503 -1168335.072033 -1168335.072033 -1196279.733667 -1215381.326405 -1215381.326405 -1323824.212503 -1323824.212503 -1323824.212503 +970758.779461 +971924.200775 +972984.307895 +974050.286894 +975016.061762 +975976.214386 +976857.818754 +977760.629360 +978588.055560 +979411.139985 +980186.094698 +980974.414410 +981721.176878 +982444.613921 +983171.021030 +983879.968084 +984576.545759 +985258.471322 +985936.788115 +986588.141280 +987246.815095 +987895.734428 +988524.128863 +989129.449336 +989736.924508 +990336.499391 +990914.031479 +991506.303444 +992061.210680 +992637.047976 +993178.099834 +993740.792991 +994261.129073 +994835.624788 +995367.463174 +995920.928944 +996420.301898 +996951.877113 +997463.084155 +997974.436039 +998482.457267 +999002.691491 +999467.191883 +999981.788417 +1000453.968108 +1000938.153018 +1001405.492442 +1001886.591025 +1002336.026325 +1002801.355711 +1003254.969040 +1003732.835645 +1004183.951977 +1004626.296423 +1005064.204365 +1005498.457882 +1005950.678120 +1006384.873797 +1006840.841636 +1007268.752472 +1007693.878602 +1008110.248807 +1008533.624709 +1008948.165899 +1009335.501422 +1009761.032886 +1010161.821032 +1010555.515498 +1010938.708109 +1011354.698029 +1011737.349062 +1012124.672395 +1012491.698884 +1012899.018327 +1013277.181281 +1013668.447685 +1014016.736144 +1014385.509320 +1014775.580053 +1015151.035720 +1015525.211372 +1015860.274163 +1016246.506218 +1016599.670996 +1016958.492361 +1017340.393463 +1017678.426981 +1018042.027186 +1018401.860922 +1018746.625939 +1019098.243497 +1019457.089440 +1019763.685542 +1020121.623034 +1020480.034263 +1020791.693755 +1021118.490274 +1021444.545959 +1021795.434624 +1022127.257340 +1022404.702147 +1022744.538535 +1023079.111143 +1023405.337037 +1023675.540364 +1024004.720538 +1024331.240105 +1024638.748000 +1024928.272157 +1025249.072402 +1025562.331831 +1025854.480702 +1026155.358645 +1026452.839006 +1026745.500403 +1027073.222303 +1027360.663652 +1027643.729054 +1027932.986969 +1028250.188502 +1028528.374674 +1028810.517238 +1029144.046824 +1029377.889133 +1029669.767399 +1029960.237006 +1030229.370867 +1030538.706498 +1030810.172786 +1031041.876915 +1031365.216847 +1031627.626269 +1031896.559198 +1032176.137505 +1032424.128313 +1032717.347129 +1032964.547221 +1033251.117530 +1033491.147443 +1033743.714293 +1034036.859497 +1034279.429383 +1034542.392835 +1034800.614165 +1035097.951182 +1035311.356403 +1035571.343546 +1035839.227069 +1036102.203184 +1036329.980631 +1036606.539953 +1036850.104217 +1037103.914519 +1037345.981562 +1037601.072029 +1037885.520819 +1038110.883815 +1038328.753119 +1038597.275097 +1038827.826814 +1039076.970857 +1039334.642483 +1039549.958919 +1039813.726400 +1040036.667717 +1040260.024156 +1040508.371467 +1040752.644956 +1041004.575394 +1041213.923873 +1041434.296929 +1041697.595955 +1041903.836127 +1042146.642475 +1042355.383488 +1042605.304539 +1042849.941208 +1043062.743321 +1043308.815165 +1043547.107389 +1043769.447410 +1043992.443556 +1044229.950052 +1044423.992615 +1044671.021366 +1044900.836716 +1045114.799988 +1045335.537207 +1045589.622798 +1045774.661200 +1046000.548459 +1046240.140954 +1046450.827624 +1046694.428852 +1046906.328658 +1047111.896961 +1047346.777355 +1047519.433647 +1047781.347737 +1047994.147574 +1048214.590813 +1048416.790279 +1048620.591990 +1048847.838973 +1049072.195622 +1049264.591675 +1049506.396164 +1049705.703059 +1049911.209533 +1050127.451644 +1050307.412154 +1050557.612680 +1050764.245640 +1050979.876318 +1051185.336457 +1051383.192064 +1051554.476319 +1051788.900714 +1052008.713707 +1052190.684768 +1052394.379048 +1052644.768685 +1052833.602457 +1053006.206735 +1053207.406872 +1053425.766496 +1053639.488108 +1053823.720603 +1053998.840196 +1054204.975795 +1054419.413611 +1054621.480431 +1054810.261270 +1055017.324733 +1055201.659284 +1055397.533342 +1055601.115807 +1055777.226652 +1056007.142981 +1056204.846523 +1056384.797957 +1056559.282381 +1056791.821500 +1056982.203923 +1057175.522440 +1057359.049810 +1057531.754733 +1057739.744992 +1057921.659589 +1058140.706298 +1058296.211936 +1058493.546014 +1058716.195442 +1058928.609273 +1059083.996506 +1059240.876925 +1059441.926814 +1059666.372497 +1059841.173867 +1060013.732747 +1060189.087523 +1060424.441499 +1060602.723975 +1060780.493345 +1060948.066842 +1061142.704486 +1061356.456939 +1061528.162696 +1061686.381328 +1061894.643505 +1062100.074018 +1062249.197985 +1062441.723271 +1062620.029708 +1062781.128007 +1062988.512814 +1063146.002141 +1063336.738353 +1063523.563617 +1063701.845334 +1063861.227145 +1064045.558133 +1064219.655093 +1064400.530328 +1064563.994996 +1064736.077386 +1064922.447264 +1065092.813697 +1065254.341772 +1065461.298410 +1065611.762097 +1065754.229555 +1065949.173036 +1066113.420756 +1066301.885040 +1066489.131811 +1066677.590542 +1066813.405603 +1066996.387211 +1067171.381613 +1067329.031471 +1067530.649338 +1067673.186582 +1067826.779902 +1068023.047588 +1068176.352927 +1068376.077974 +1068519.048590 +1068687.770671 +1068853.123983 +1068994.749038 +1069196.474914 +1069343.005965 +1069511.899619 +1069683.621933 +1069833.793179 +1070052.641069 +1070197.992900 +1070342.345639 +1070510.379192 +1070674.557180 +1070850.790479 +1071023.983885 +1071166.922930 +1071350.655734 +1071513.135796 +1071672.016656 +1071800.930773 +1072009.462930 +1072133.378132 +1072292.607348 +1072471.706700 +1072633.732094 +1072777.026215 +1072960.662962 +1073091.599814 +1073273.375480 +1073441.263977 +1073584.883392 +1073732.163736 +1073926.362119 +1074053.838954 +1074220.538319 +1074385.988312 +1074520.794862 +1074667.017757 +1074838.430998 +1075033.305697 +1075144.646045 +1075299.295124 +1075468.388246 +1075636.618455 +1075786.498842 +1075937.120515 +1076088.829242 +1076252.242747 +1076405.102484 +1076558.633085 +1076692.575099 +1076863.963442 +1077037.734979 +1077180.790034 +1077325.680783 +1077494.800688 +1077630.189117 +1077804.768062 +1077961.816638 +1078103.135698 +1078218.749153 +1078409.997138 +1078540.685356 +1078728.731674 +1078850.031364 +1078994.139220 +1079150.338734 +1079305.503522 +1079457.744683 +1079607.356678 +1079768.410521 +1079903.094993 +1080061.038937 +1080171.061499 +1080378.159181 +1080529.557506 +1080672.987590 +1080789.115697 +1080971.208754 +1081106.740439 +1081261.660929 +1081397.521427 +1081542.369562 +1081725.127315 +1081855.153478 +1081989.124623 +1082159.533231 +1082292.714794 +1082406.747587 +1082591.663664 +1082741.471300 +1082895.207023 +1083004.937731 +1083159.943844 +1083303.237443 +1083453.871198 +1083585.719973 +1083754.588273 +1083881.592265 +1084062.724251 +1084169.717394 +1084326.991849 +1084490.440129 +1084607.458493 +1084751.881086 +1084903.258976 +1085038.100849 +1085202.894268 +1085332.545492 +1085496.032125 +1085622.529940 +1085790.434477 +1085932.431596 +1086071.541320 +1086194.621177 +1086329.635750 +1086460.934997 +1086624.466645 +1086757.156059 +1086902.103145 +1087067.515568 +1087187.630012 +1087318.563297 +1087478.354729 +1087625.023684 +1087765.363425 +1087898.361644 +1088056.643178 +1088163.673181 +1088302.721527 +1088454.118033 +1088592.866868 +1088735.552544 +1088873.567483 +1088998.088657 +1089166.579581 +1089277.574959 +1089445.788556 +1089577.581077 +1089685.039179 +1089844.889363 +1090007.470004 +1090124.484301 +1090265.030342 +1090374.905239 +1090536.084781 +1090652.781120 +1090783.723154 +1090924.706094 +1091073.279076 +1091219.971490 +1091340.602410 +1091469.213670 +1091622.696884 +1091774.386206 +1091880.765852 +1092021.254246 +1092142.351832 +1092276.624219 +1092427.298763 +1092523.729503 +1092699.080008 +1092812.977771 +1092936.780856 +1093080.377581 +1093233.527605 +1093348.749040 +1093462.968786 +1093583.569530 +1093729.808315 +1093866.211406 +1093999.961012 +1094109.166937 +1094236.994507 +1094375.744467 +1094514.809384 +1094645.132215 +1094742.913352 +1094890.419169 +1094999.658716 +1095129.141066 +1095292.675897 +1095412.297764 +1095555.265043 +1095638.100251 +1095790.146505 +1095937.041464 +1096008.541877 +1096170.968799 +1096288.995359 +1096424.229513 +1096530.026216 +1096694.142737 +1096790.064128 +1096932.060054 +1097070.483359 +1097163.037926 +1097310.712674 +1097437.362862 +1097528.874229 +1097703.873927 +1097792.368984 +1097936.962781 +1098042.685539 +1098172.356102 +1098290.325572 +1098392.038228 +1098512.560825 +1098670.695246 +1098812.862441 +1098906.939857 +1099037.472394 +1099152.851628 +1099294.588431 +1099419.704094 +1099504.512057 +1099656.810718 +1099757.215779 +1099880.695408 +1099992.694548 +1100134.145896 +1100245.892971 +1100360.400965 +1100478.509003 +1100619.798440 +1100708.377712 +1100853.110206 +1100988.392796 +1101073.029348 +1101199.773382 +1101315.476878 +1101456.045078 +1101569.883802 +1101675.875212 +1101811.661905 +1101917.559044 +1102063.036025 +1102124.193249 +1102268.882467 +1102375.061584 +1102534.035940 +1102635.009613 +1102753.846128 +1102858.316899 +1102983.503111 +1103084.412294 +1103211.792137 +1103358.658117 +1103448.934849 +1103582.799297 +1103688.871891 +1103775.431508 +1103920.612224 +1104038.634396 +1104166.905972 +1104265.459924 +1104387.396169 +1104509.301197 +1104601.128193 +1104733.771686 +1104872.946010 +1104965.156910 +1105092.785809 +1105186.833571 +1105313.949878 +1105444.022131 +1105535.049841 +1105666.729737 +1105771.828051 +1105921.883563 +1105997.561509 +1106078.953979 +1106223.642679 +1106347.495491 +1106469.698988 +1106584.454137 +1106710.480702 +1106785.205332 +1106915.915331 +1107018.212822 +1107155.065304 +1107257.176793 +1107373.453364 +1107460.413413 +1107613.835891 +1107706.355604 +1107814.042156 +1107911.798612 +1108046.439430 +1108143.808783 +1108274.015443 +1108348.611030 +1108491.463274 +1108589.392071 +1108738.738910 +1108812.857176 +1108924.876250 +1109032.221219 +1109149.269893 +1109262.386827 +1109371.366064 +1109465.047628 +1109581.685100 +1109709.033198 +1109826.041530 +1109950.631160 +1110012.210492 +1110131.227851 +1110232.745236 +1110374.676438 +1110459.865578 +1110584.485863 +1110685.508956 +1110771.802409 +1110943.579764 +1110998.512707 +1111140.611761 +1111214.963031 +1111333.150018 +1111473.995885 +1111520.937170 +1111673.512897 +1111793.391283 +1111880.809331 +1111977.956452 +1112105.852838 +1112200.147861 +1112300.112924 +1112415.931918 +1112545.769532 +1112656.127256 +1112724.051643 +1112811.215495 +1112942.372115 +1113083.145047 +1113164.427192 +1113270.879058 +1113389.449514 +1113491.431534 +1113581.479164 +1113684.771821 +1113772.655866 +1113872.329162 +1114002.014994 +1114076.746590 +1114207.404497 +1114326.007848 +1114392.779545 +1114512.656667 +1114641.619475 +1114732.852156 +1114827.285953 +1114927.391689 +1115035.682229 +1115140.156267 +1115262.505727 +1115323.697104 +1115449.324639 +1115575.471933 +1115654.158775 +1115735.178737 +1115858.783653 +1115963.717842 +1116064.150446 +1116164.358535 +1116277.013971 +1116362.509628 +1116462.147399 +1116567.401474 +1116687.873836 +1116784.388550 +1116882.535084 +1116998.705242 +1117092.002848 +1117186.760699 +1117291.706282 +1117362.815237 +1117478.532842 +1117576.204962 +1117688.829776 +1117797.395678 +1117895.761115 +1117988.466670 +1118096.620948 +1118200.305812 +1118318.935928 +1118416.630979 +1118516.809915 +1118595.957798 +1118698.579275 +1118818.207488 +1118886.988022 +1119004.898184 +1119107.771927 +1119207.656223 +1119300.359285 +1119411.505920 +1119490.179543 +1119619.628628 +1119709.205887 +1119786.809738 +1119896.350910 +1120011.237386 +1120097.273600 +1120193.536463 +1120311.590219 +1120407.848912 +1120512.793198 +1120598.178816 +1120676.931603 +1120782.900847 +1120892.025865 +1120970.745291 +1121094.247245 +1121159.071369 +1121276.289918 +1121370.275555 +1121472.422914 +1121578.197665 +1121685.217203 +1121776.035971 +1121878.935816 +1121966.171414 +1122072.890041 +1122133.453340 +1122286.050850 +1122353.249333 +1122442.562000 +1122546.219394 +1122675.846300 +1122720.942816 +1122842.267212 +1122939.342770 +1123055.709222 +1123117.704126 +1123253.455677 +1123326.318716 +1123442.905179 +1123513.866924 +1123637.421375 +1123742.784989 +1123830.352703 +1123907.411042 +1124008.713692 +1124122.914271 +1124204.140895 +1124299.141619 +1124386.059807 +1124465.846457 +1124607.134228 +1124707.569271 +1124783.562645 +1124865.352518 +1124986.566100 +1125091.335386 +1125147.637192 +1125276.095032 +1125353.161700 +1125444.930307 +1125564.324941 +1125643.794906 +1125720.855462 +1125827.386826 +1125939.408205 +1126013.396374 +1126136.699100 +1126218.178197 +1126312.581894 +1126366.462463 +1126515.428526 +1126602.803074 +1126698.896037 +1126796.042007 +1126869.828298 +1126961.898293 +1127060.401287 +1127161.030984 +1127242.063824 +1127334.820110 +1127426.983762 +1127512.433673 +1127611.621661 +1127703.767660 +1127801.225446 +1127878.913761 +1128006.557167 +1128045.693120 +1128144.484170 +1128269.637852 +1128363.144049 +1128441.114006 +1128485.983197 +1128617.667877 +1128698.509894 +1128835.363958 +1128898.983479 +1128984.949805 +1129066.147744 +1129155.444500 +1129237.103319 +1129339.360169 +1129427.398520 +1129529.738195 +1129599.960489 +1129699.953344 +1129790.927102 +1129882.786489 +1129968.674368 +1130070.936095 +1130157.050985 +1130236.300652 +1130336.141477 +1130394.886179 +1130516.501324 +1130592.049152 +1130693.223546 +1130769.682273 +1130846.039941 +1130936.520325 +1131047.209132 +1131133.494770 +1131222.250279 +1131293.715415 +1131400.214583 +1131460.825524 +1131587.596203 +1131636.766516 +1131738.379312 +1131848.952153 +1131943.271988 +1132008.628393 +1132091.816058 +1132173.662536 +1132304.144404 +1132368.405282 +1132456.376592 +1132542.785041 +1132641.259133 +1132676.144539 +1132781.973255 +1132903.996488 +1132961.657225 +1133058.918316 +1133115.094607 +1133244.570003 +1133312.850498 +1133406.503623 +1133479.383009 +1133570.790918 +1133669.744546 +1133752.011341 +1133862.994976 +1133900.359526 +1134014.407571 +1134111.810702 +1134169.762116 +1134258.941651 +1134314.334146 +1134432.859289 +1134517.917436 +1134622.323073 +1134678.111140 +1134766.168744 +1134846.422381 +1134920.712676 +1135010.283825 +1135104.677409 +1135156.798739 +1135257.583481 +1135387.741790 +1135444.606538 +1135525.165576 +1135609.721159 +1135692.612086 +1135786.651426 +1135890.648798 +1135934.505850 +1136034.119881 +1136110.869551 +1136206.738082 +1136278.213485 +1136382.840264 +1136447.378220 +1136535.313434 +1136617.870070 +1136706.903617 +1136785.496806 +1136852.110689 +1136952.154447 +1137046.850951 +1137130.923056 +1137216.786776 +1137283.031253 +1137367.080572 +1137446.804168 +1137539.481440 +1137624.811499 +1137696.242317 +1137768.042589 +1137856.805620 +1137953.787491 +1138009.082696 +1138126.586091 +1138206.631946 +1138282.556836 +1138365.413172 +1138463.830448 +1138520.591750 +1138620.463558 +1138680.553580 +1138765.943790 +1138856.593573 +1138920.671221 +1139034.073287 +1139120.755801 +1139171.053093 +1139290.493143 +1139342.591962 +1139445.715716 +1139516.832792 +1139622.201214 +1139680.479134 +1139751.274309 +1139844.310883 +1139906.013589 +1140020.517678 +1140111.471565 +1140184.068298 +1140273.581002 +1140344.524159 +1140411.555569 +1140496.524456 +1140581.335418 +1140666.124987 +1140749.902505 +1140811.352603 +1140879.485948 +1140966.293950 +1141050.728851 +1141165.729010 +1141235.941114 +1141313.933165 +1141396.238275 +1141464.687433 +1141549.084052 +1141655.762789 +1141719.022949 +1141822.899274 +1141885.414190 +1141962.263828 +1142035.884959 +1142132.178251 +1142230.800077 +1142310.379672 +1142376.442153 +1142465.483216 +1142529.559520 +1142581.588728 +1142687.809978 +1142764.440308 +1142834.012093 +1142931.022257 +1143014.444272 +1143098.242553 +1143151.529024 +1143246.545589 +1143323.238412 +1143402.223830 +1143505.851182 +1143577.845006 +1143647.761808 +1143731.833212 +1143800.207751 +1143890.734039 +1143950.228585 +1144047.107779 +1144136.418481 +1144226.085092 +1144287.494632 +1144366.363289 +1144453.941073 +1144524.404833 +1144621.320216 +1144657.183652 +1144767.585563 +1144821.340949 +1144916.232790 +1144991.711490 +1145091.275338 +1145144.218910 +1145260.094103 +1145318.039177 +1145398.115172 +1145477.438411 +1145542.947395 +1145652.736321 +1145723.903150 +1145787.152332 +1145882.765047 +1145958.794834 +1146013.688409 +1146081.957993 +1146195.424335 +1146269.085372 +1146358.000340 +1146433.292594 +1146518.938645 +1146577.517161 +1146647.598207 +1146755.380571 +1146810.773645 +1146909.271501 +1146961.372145 +1147033.202352 +1147113.874716 +1147204.442208 +1147277.500587 +1147346.856520 +1147458.950830 +1147538.062196 +1147595.558612 +1147686.951612 +1147756.116211 +1147833.386207 +1147929.731493 +1148009.705239 +1148087.901202 +1148105.190193 +1148209.098126 +1148319.649961 +1148381.707687 +1148465.486903 +1148507.907912 +1148626.556119 +1148696.249388 +1148760.014672 +1148853.051033 +1148886.875331 +1148991.748651 +1149089.919555 +1149156.748865 +1149228.557091 +1149320.947400 +1149366.110491 +1149441.261800 +1149532.311008 +1149617.009015 +1149703.040562 +1149772.290034 +1149859.093329 +1149932.422771 +1150010.109614 +1150090.667114 +1150159.097803 +1150237.296633 +1150282.754743 +1150388.072085 +1150441.394951 +1150530.235505 +1150644.386818 +1150675.965971 +1150741.577326 +1150807.217348 +1150862.723011 +1150975.817472 +1151067.561217 +1151095.354370 +1151198.354190 +1151288.583572 +1151359.406618 +1151439.149544 +1151490.818485 +1151577.716096 +1151649.715351 +1151728.944898 +1151809.701882 +1151878.990378 +1151942.679281 +1152025.477258 +1152086.023635 +1152191.677642 +1152266.020899 +1152335.920750 +1152382.203122 +1152428.427918 +1152554.604786 +1152629.903001 +1152709.250058 +1152781.843248 +1152873.837795 +1152932.061219 +1153000.195064 +1153061.047488 +1153141.203455 +1153221.375754 +1153310.405808 +1153365.328192 +1153430.473572 +1153515.970360 +1153605.223588 +1153663.019729 +1153766.940331 +1153818.977681 +1153891.152645 +1153953.908361 +1154046.018315 +1154104.050051 +1154197.989537 +1154273.606096 +1154331.851466 +1154421.515127 +1154462.125337 +1154575.566295 +1154646.516959 +1154708.240417 +1154780.763218 +1154856.686962 +1154914.641483 +1154964.237323 +1155080.860805 +1155166.906832 +1155231.768503 +1155280.264873 +1155374.324177 +1155448.511202 +1155533.383417 +1155559.895530 +1155678.799014 +1155721.310759 +1155797.765276 +1155904.284936 +1155951.498985 +1156053.283604 +1156124.321356 +1156187.975197 +1156265.426956 +1156338.412984 +1156375.217071 +1156458.275615 +1156552.525805 +1156604.133168 +1156676.366498 +1156754.964169 +1156849.893984 +1156912.301217 +1156986.039138 +1157053.808512 +1157079.920536 +1157210.276553 +1157251.577377 +1157335.657251 +1157434.614784 +1157503.080646 +1157554.602912 +1157646.075478 +1157686.165466 +1157823.463449 +1157863.166151 +1157940.163855 +1157982.294857 +1158074.877785 +1158157.174028 +1158218.141309 +1158281.398587 +1158362.226624 +1158433.132010 +1158499.476258 +1158576.394695 +1158646.739583 +1158736.733517 +1158786.657159 +1158865.609848 +1158938.334110 +1159004.637163 +1159085.091524 +1159167.226612 +1159209.495711 +1159310.026146 +1159366.420997 +1159472.833827 +1159498.550972 +1159550.850547 +1159648.934286 +1159742.503851 +1159818.651826 +1159888.478731 +1159922.655221 +1160009.723437 +1160075.670348 +1160142.750449 +1160215.667210 +1160330.801400 +1160334.349755 +1160452.565589 +1160493.566800 +1160600.886202 +1160675.687450 +1160752.146922 +1160800.206613 +1160856.577441 +1160927.650415 +1160995.121010 +1161110.542275 +1161134.471817 +1161232.854467 +1161295.562995 +1161393.520355 +1161428.136988 +1161497.703594 +1161606.989940 +1161674.503687 +1161722.604055 +1161762.455781 +1161836.454055 +1161938.674342 +1162015.076412 +1162057.134200 +1162154.223692 +1162224.984049 +1162291.381364 +1162352.510139 +1162414.557505 +1162512.615246 +1162570.985777 +1162644.838926 +1162702.321132 +1162791.841944 +1162846.112795 +1162911.836191 +1162994.790891 +1163056.433122 +1163123.010143 +1163190.061163 +1163243.783066 +1163332.645399 +1163382.734961 +1163466.221441 +1163522.337085 +1163583.800446 +1163666.800595 +1163740.354828 +1163817.391765 +1163876.205842 +1163943.628611 +1164022.750390 +1164096.758937 +1164174.518558 +1164206.708146 +1164281.648350 +1164333.340951 +1164435.818800 +1164476.321934 +1164538.542618 +1164648.908597 +1164711.007548 +1164783.072552 +1164835.494759 +1164910.957974 +1164984.246050 +1165046.400397 +1165102.589070 +1165187.736142 +1165263.731162 +1165335.350069 +1165377.316943 +1165463.171980 +1165530.223559 +1165619.194178 +1165624.909103 +1165746.883027 +1165803.710281 +1165870.565213 +1165896.696352 +1166016.441624 +1166064.478602 +1166142.244018 +1166207.755925 +1166293.023983 +1166312.154737 +1166385.306736 +1166482.452175 +1166554.447134 +1166587.144282 +1166686.231282 +1166740.623932 +1166789.239640 +1166880.126209 +1166945.835202 +1167034.620644 +1167095.240737 +1167152.170167 +1167230.377090 +1167305.880631 +1167350.240299 +1167426.500265 +1167506.320565 +1167562.267500 +1167612.271985 +1167705.958095 +1167787.044531 +1167819.809657 +1167903.288026 +1167978.854185 +1168045.784282 +1168066.443803 +1168170.696216 +1168220.959246 +1168267.149290 +1168342.735587 +1168433.367894 +1168502.517760 +1168571.051235 +1168639.675299 +1168715.152994 +1168775.601509 +1168844.296436 +1168898.854231 +1168952.494068 +1169026.937286 +1169102.207982 +1169145.778348 +1169224.837148 +1169287.521635 +1169380.332326 +1169432.011506 +1169504.170888 +1169609.148217 +1169610.595914 +1169670.394882 +1169751.267974 +1169836.649866 +1169886.094762 +1169938.840413 +1170053.320993 +1170096.030348 +1170137.149023 +1170234.442927 +1170290.662419 +1170347.919047 +1170415.777291 +1170470.010242 +1170535.076917 +1170643.763637 +1170681.414579 +1170736.519228 +1170807.916781 +1170864.526242 +1170947.737072 +1171025.778807 +1171086.418631 +1171154.576105 +1171191.246018 +1171243.949933 +1171347.656526 +1171409.166081 +1171486.124059 +1171533.017285 +1171628.463529 +1171645.127413 +1171728.947979 +1171824.207847 +1171860.076146 +1171928.301984 +1171994.546962 +1172054.196894 +1172110.013045 +1172202.177401 +1172248.610723 +1172343.757491 +1172347.356710 +1172440.391229 +1172514.914247 +1172569.343204 +1172660.988683 +1172693.022973 +1172774.903422 +1172853.268829 +1172897.955548 +1172956.787517 +1173042.678276 +1173087.231596 +1173187.281269 +1173247.400065 +1173294.627163 +1173349.493859 +1173440.460963 +1173485.986267 +1173554.473052 +1173613.535209 +1173669.267170 +1173763.240803 +1173795.176549 +1173858.541752 +1173954.022821 +1173969.435951 +1174065.789279 +1174135.571444 +1174181.395781 +1174261.217498 +1174320.147231 +1174391.206264 +1174451.507698 +1174546.721638 +1174563.775799 +1174659.967981 +1174721.392250 +1174733.228584 +1174834.544633 +1174890.029619 +1174971.086806 +1175018.691201 +1175079.871336 +1175164.308019 +1175199.657953 +1175285.709909 +1175356.449303 +1175396.351436 +1175473.199418 +1175511.580116 +1175606.410770 +1175642.615446 +1175753.835461 +1175791.340203 +1175843.193887 +1175913.837352 +1175983.041066 +1176025.770431 +1176094.352934 +1176126.640265 +1176265.155834 +1176288.826539 +1176387.307082 +1176425.105830 +1176459.849391 +1176536.312782 +1176611.108038 +1176665.248985 +1176748.963259 +1176835.688237 +1176835.688237 +1176897.245094 +1176980.414670 +1177059.146523 +1177103.867795 +1177156.521235 +1177262.995748 +1177281.752578 +1177347.973934 +1177417.245502 +1177481.193760 +1177553.197883 +1177620.292133 +1177676.408018 +1177743.774254 +1177819.078281 +1177867.866955 +1177938.101459 +1177956.814837 +1178051.244998 +1178134.677859 +1178178.920746 +1178254.139313 +1178284.921337 +1178368.454597 +1178421.746998 +1178514.216719 +1178552.635300 +1178611.073539 +1178679.746682 +1178752.522420 +1178814.648639 +1178841.139312 +1178913.108501 +1178990.038395 +1179046.838202 +1179124.488107 +1179186.353588 +1179228.559039 +1179299.702390 +1179335.815231 +1179398.846922 +1179475.895446 +1179557.488227 +1179593.128260 +1179660.125621 +1179706.062772 +1179780.064610 +1179855.763171 +1179886.107741 +1179993.650289 +1180039.046182 +1180085.582130 +1180144.552148 +1180224.804025 +1180275.151123 +1180324.989188 +1180406.825745 +1180461.154083 +1180489.017309 +1180580.549097 +1180666.129398 +1180717.825719 +1180779.348663 +1180833.914081 +1180887.521446 +1180959.123049 +1181026.945428 +1181057.856669 +1181141.418119 +1181210.893628 +1181279.727027 +1181329.027257 +1181354.515633 +1181465.732232 +1181524.477669 +1181569.679848 +1181604.710505 +1181702.834550 +1181751.623989 +1181790.447689 +1181869.293448 +1181903.260865 +1182006.717360 +1182025.708764 +1182118.523367 +1182181.128564 +1182233.894273 +1182265.200827 +1182327.769865 +1182413.265915 +1182464.833628 +1182532.788690 +1182566.912528 +1182618.346969 +1182733.982860 +1182781.542570 +1182809.128568 +1182867.161477 +1182916.858882 +1183007.651165 +1183092.618963 +1183156.334434 +1183196.035114 +1183245.514884 +1183284.261518 +1183350.276569 +1183422.173293 +1183496.569614 +1183544.899287 +1183621.684905 +1183672.879230 +1183732.705672 +1183797.392940 +1183838.471842 +1183888.700278 +1183971.194584 +1184035.944016 +1184072.517648 +1184123.373855 +1184232.269437 +1184254.609447 +1184328.062051 +1184365.348334 +1184415.170496 +1184494.008481 +1184572.746112 +1184617.719599 +1184691.900221 +1184762.988582 +1184808.457071 +1184861.018786 +1184896.247884 +1184968.919780 +1185038.292105 +1185086.196470 +1185157.042506 +1185221.918763 +1185273.610513 +1185335.052215 +1185408.331647 +1185419.346835 +1185529.454120 +1185575.836093 +1185614.553074 +1185660.512128 +1185721.441853 +1185804.889533 +1185848.043188 +1185913.150474 +1185988.627787 +1186021.591132 +1186076.801229 +1186140.262114 +1186213.507465 +1186275.426976 +1186314.599893 +1186389.965697 +1186437.506440 +1186482.018544 +1186557.157633 +1186613.864899 +1186680.317114 +1186727.730265 +1186805.546129 +1186837.932797 +1186907.669107 +1186957.211865 +1187039.066137 +1187059.334166 +1187177.522341 +1187210.085793 +1187262.356360 +1187329.368149 +1187389.976715 +1187439.831876 +1187486.128532 +1187542.733462 +1187593.327589 +1187668.925969 +1187724.085466 +1187799.366324 +1187858.674564 +1187916.633680 +1187964.256828 +1188001.403222 +1188068.540732 +1188132.283660 +1188184.345889 +1188238.025934 +1188301.912484 +1188383.424722 +1188414.236118 +1188464.598664 +1188552.093890 +1188591.176653 +1188663.329389 +1188700.163668 +1188732.810974 +1188846.137209 +1188886.222290 +1188923.000637 +1188991.662916 +1189052.350740 +1189142.220657 +1189168.074480 +1189233.052475 +1189293.670686 +1189341.335798 +1189416.542352 +1189455.734325 +1189509.466676 +1189573.048457 +1189598.201060 +1189685.609628 +1189742.775641 +1189780.024941 +1189827.802419 +1189893.570137 +1189967.147897 +1190030.614039 +1190063.036973 +1190140.580460 +1190184.472499 +1190238.995126 +1190314.064937 +1190373.220055 +1190421.692051 +1190468.555625 +1190553.202659 +1190589.610262 +1190634.096782 +1190693.516797 +1190743.502578 +1190818.622890 +1190893.578470 +1190927.776899 +1190936.080934 +1191040.453935 +1191095.432189 +1191165.474503 +1191195.590507 +1191271.736929 +1191284.973008 +1191393.343381 +1191413.713489 +1191484.314412 +1191546.293650 +1191591.494282 +1191628.871733 +1191682.074162 +1191742.780077 +1191822.479551 +1191883.850207 +1191930.186883 +1191971.273108 +1192032.045954 +1192078.117022 +1192148.449146 +1192189.841916 +1192278.581053 +1192310.796658 +1192352.002408 +1192454.083850 +1192483.040599 +1192534.732933 +1192573.802519 +1192640.510308 +1192721.944184 +1192740.426499 +1192806.608988 +1192863.763475 +1192925.250559 +1192979.243667 +1193034.107932 +1193089.261126 +1193142.308543 +1193174.921296 +1193265.904950 +1193300.784125 +1193367.774014 +1193398.850377 +1193490.455233 +1193537.723336 +1193587.731739 +1193628.309560 +1193682.929418 +1193753.193289 +1193795.093148 +1193845.969867 +1193930.374661 +1193982.970971 +1194047.990632 +1194048.014700 +1194124.628551 +1194200.061616 +1194253.999256 +1194261.689774 +1194319.681750 +1194414.715648 +1194463.797613 +1194517.543151 +1194559.012701 +1194618.364636 +1194654.862093 +1194739.027608 +1194771.181992 +1194841.680483 +1194879.681081 +1194955.530175 +1194998.924212 +1195037.877089 +1195118.287066 +1195170.174870 +1195212.049481 +1195267.227894 +1195274.168793 +1195379.885276 +1195427.352085 +1195491.511819 +1195502.846065 +1195563.741091 +1195635.829174 +1195706.059609 +1195768.996952 +1195793.697382 +1195853.435881 +1195910.598298 +1195944.349054 +1196034.750085 +1196062.622208 +1196149.963492 +1196191.904019 +1196238.034982 +1196278.577703 +1196357.806205 +1196368.927134 +1196437.588697 +1196488.802438 +1196554.231019 +1196585.791415 +1196637.025453 +1196714.605934 +1196772.940189 +1196824.637687 +1196854.570897 +1196950.418401 +1196964.082977 +1197040.432843 +1197074.034608 +1197173.513763 +1197200.024939 +1197269.209457 +1197290.212703 +1197356.335494 +1197392.504661 +1197467.228170 +1197492.165438 +1197545.509080 +1197617.313137 +1197684.674755 +1197731.385341 +1197797.652785 +1197837.502331 +1197880.503034 +1197930.094021 +1198014.428308 +1198037.092497 +1198093.728829 +1198154.863778 +1198196.898198 +1198276.222085 +1198306.368767 +1198369.417474 +1198413.424100 +1198481.880024 +1198530.191905 +1198554.411846 +1198608.289328 +1198664.950538 +1198737.381911 +1198789.043745 +1198841.597931 +1198905.184319 +1198943.818918 +1198991.607133 +1199049.700773 +1199109.889422 +1199137.379965 +1199194.403642 +1199279.003728 +1199333.834211 +1199382.818779 +1199402.557918 +1199449.598569 +1199519.332133 +1199571.704694 +1199630.599637 +1199663.243744 +1199721.358427 +1199764.040631 +1199847.172693 +1199872.529905 +1199957.299184 +1199995.451469 +1200015.630226 +1200094.606675 +1200162.523581 +1200217.138528 +1200254.130203 +1200306.052299 +1200368.370539 +1200431.685844 +1200431.685844 +1200517.496923 +1200573.854412 +1200629.657219 +1200667.824517 +1200739.561180 +1200794.245292 +1200836.759677 +1200861.577069 +1200948.130148 +1200990.413590 +1201055.316881 +1201077.886884 +1201166.550962 +1201196.136553 +1201255.946959 +1201295.961621 +1201359.503788 +1201412.959695 +1201472.377993 +1201504.548213 +1201565.876414 +1201611.661107 +1201632.202838 +1201699.250640 +1201757.727184 +1201825.332969 +1201903.997186 +1201903.997186 +1201991.977311 +1202003.600412 +1202037.986771 +1202128.501149 +1202202.074827 +1202253.845244 +1202292.818995 +1202323.266323 +1202376.023381 +1202437.545787 +1202492.566174 +1202553.385051 +1202558.804441 +1202624.834282 +1202720.181085 +1202744.308723 +1202797.675384 +1202832.825927 +1202882.871805 +1202957.642347 +1203015.802435 +1203069.640911 +1203100.932310 +1203155.329679 +1203201.101390 +1203242.522533 +1203285.081924 +1203344.741418 +1203404.575680 +1203447.658078 +1203505.981142 +1203537.333742 +1203599.108612 +1203667.132794 +1203701.430326 +1203746.400037 +1203813.657662 +1203840.142892 +1203944.970419 +1203948.203282 +1204013.984148 +1204055.302849 +1204088.716519 +1204136.368595 +1204202.410772 +1204274.486862 +1204290.611505 +1204364.129745 +1204423.045355 +1204461.819835 +1204536.460508 +1204552.316801 +1204639.035422 +1204653.212794 +1204725.704090 +1204752.759972 +1204823.570279 +1204874.953986 +1204931.680883 +1204989.833369 +1205031.236730 +1205074.333567 +1205115.861946 +1205163.193437 +1205224.261212 +1205287.189150 +1205322.038101 +1205352.089112 +1205432.778800 +1205492.931051 +1205505.991149 +1205581.347748 +1205600.354937 +1205637.800005 +1205750.776260 +1205784.511376 +1205813.401723 +1205872.068109 +1205941.999898 +1205956.406000 +1206002.731691 +1206068.955759 +1206132.441461 +1206145.689183 +1206210.021421 +1206246.708248 +1206323.119761 +1206362.251833 +1206417.634079 +1206480.640432 +1206480.746694 +1206534.120641 +1206611.640976 +1206684.008669 +1206706.352653 +1206742.552194 +1206814.987722 +1206863.296615 +1206879.412250 +1206956.650494 +1207006.793277 +1207040.936544 +1207100.044718 +1207136.107723 +1207221.426626 +1207245.976281 +1207291.319413 +1207330.461487 +1207419.634460 +1207436.582701 +1207483.003353 +1207538.402314 +1207593.886626 +1207643.641576 +1207674.196296 +1207707.813967 +1207783.026478 +1207817.603180 +1207863.748231 +1207896.434150 +1207981.320999 +1208032.974103 +1208076.988381 +1208112.600636 +1208177.188053 +1208259.797689 +1208259.797689 +1208301.737288 +1208371.792480 +1208419.661376 +1208431.884820 +1208511.815110 +1208553.062207 +1208603.236188 +1208638.987795 +1208686.592173 +1208728.206401 +1208799.405820 +1208827.493703 +1208891.387616 +1208961.216722 +1208973.095888 +1209046.473373 +1209109.767954 +1209141.091587 +1209169.029226 +1209227.270979 +1209301.104749 +1209342.952255 +1209345.645871 +1209410.330054 +1209453.654907 +1209517.290718 +1209573.772761 +1209622.363979 +1209659.462079 +1209727.418825 +1209773.270471 +1209794.623411 +1209853.220361 +1209884.909624 +1209960.603808 +1210002.392017 +1210042.485309 +1210073.164896 +1210144.404588 +1210175.913866 +1210254.925619 +1210259.914216 +1210328.987688 +1210388.143265 +1210421.544898 +1210471.153492 +1210548.000538 +1210548.000538 +1210622.321828 +1210676.457139 +1210731.335916 +1210760.438593 +1210799.002279 +1210828.455897 +1210891.505515 +1210965.495639 +1211003.681036 +1211048.433055 +1211098.406837 +1211149.218131 +1211194.803705 +1211233.708827 +1211294.060122 +1211332.586741 +1211390.163614 +1211423.233724 +1211457.598701 +1211515.821918 +1211570.057299 +1211618.566999 +1211662.923614 +1211698.003859 +1211753.325602 +1211789.370488 +1211838.192442 +1211882.854760 +1211944.180521 +1212016.087285 +1212053.735848 +1212077.949334 +1212112.427688 +1212174.292705 +1212213.212923 +1212260.265760 +1212310.812882 +1212382.169807 +1212409.183555 +1212445.246860 +1212514.164642 +1212573.305057 +1212609.775075 +1212659.418979 +1212695.991711 +1212740.420941 +1212782.079314 +1212814.488730 +1212860.596439 +1212941.355934 +1212982.730343 +1212987.053969 +1213058.757715 +1213112.737869 +1213171.114861 +1213196.444635 +1213231.153138 +1213307.500813 +1213343.260447 +1213383.501101 +1213439.006880 +1213494.938317 +1213509.732653 +1213560.384793 +1213596.710943 +1213672.547516 +1213693.154608 +1213749.352947 +1213797.144509 +1213861.554641 +1213861.873067 +1213944.309837 +1213999.328027 +1214050.472314 +1214092.836789 +1214112.280891 +1214157.849691 +1214203.943347 +1214260.213140 +1214338.485576 +1214350.110886 +1214439.692975 +1214439.692975 +1214491.985578 +1214545.466023 +1214616.921931 +1214624.624606 +1214645.276604 +1214688.769698 +1214770.478670 +1214835.554883 +1214883.926694 +1214931.336075 +1214931.336075 +1214994.287712 +1215034.902626 +1215093.112481 +1215132.522035 +1215168.467906 +1215222.462898 +1215252.884692 +1215297.933581 +1215375.778777 +1215401.992729 +1215432.287978 +1215465.784017 +1215546.143859 +1215589.909424 +1215627.858288 +1215659.148407 +1215693.180189 +1215744.195873 +1215805.201849 +1215845.852870 +1215892.906809 +1215942.280996 +1215968.708080 +1216021.824747 +1216085.695027 +1216094.704036 +1216151.209095 +1216185.429903 +1216226.691492 +1216286.034454 +1216325.971345 +1216367.102931 +1216417.311473 +1216491.785116 +1216545.278439 +1216565.515674 +1216622.930101 +1216648.762058 +1216670.504186 +1216734.109034 +1216795.389194 +1216807.694484 +1216897.495904 +1216897.495904 +1216945.706584 +1217000.073878 +1217045.614861 +1217066.045863 +1217136.199370 +1217182.434781 +1217230.830592 +1217253.688066 +1217313.392131 +1217348.623019 +1217375.177144 +1217458.016163 +1217492.794170 +1217537.866649 +1217575.389312 +1217635.362876 +1217658.786227 +1217714.443154 +1217754.128824 +1217801.233265 +1217828.559874 +1217875.712504 +1217928.024113 +1217955.541613 +1218006.658808 +1218073.447011 +1218110.234025 +1218158.135476 +1218186.171540 +1218262.428860 +1218296.336710 +1218333.980569 +1218353.941022 +1218414.131525 +1218481.800182 +1218502.171980 +1218511.780819 +1218611.164978 +1218612.846916 +1218693.511581 +1218738.909411 +1218777.082108 +1218800.092433 +1218814.116532 +1218916.093223 +1218939.357627 +1218981.880925 +1219026.000535 +1219070.447685 +1219103.082484 +1219133.003744 +1219198.645613 +1219253.402608 +1219302.337997 +1219324.916741 +1219385.610297 +1219385.610297 +1219461.862812 +1219528.347944 +1219528.347944 +1219602.732941 +1219633.096514 +1219677.166840 +1219728.280561 +1219762.666238 +1219808.391076 +1219847.079176 +1219895.593929 +1219934.191584 +1219996.697502 +1220024.127425 +1220055.432087 +1220102.122910 +1220166.689623 +1220189.259784 +1220224.869574 +1220275.572336 +1220326.228553 +1220379.572817 +1220407.986705 +1220455.341111 +1220498.384563 +1220535.299597 +1220592.866798 +1220633.228756 +1220680.113022 +1220710.105232 +1220770.983856 +1220797.465776 +1220827.743115 +1220889.675153 +1220940.460805 +1220954.745860 +1220999.969769 +1221030.055548 +1221087.805551 +1221143.514161 +1221174.418993 +1221241.564938 +1221281.975709 +1221342.718619 +1221350.496901 +1221391.193662 +1221424.844089 +1221518.021385 +1221535.284449 +1221563.015625 +1221640.523984 +1221651.902771 +1221691.045532 +1221737.733992 +1221791.533710 +1221807.614428 +1221846.106998 +1221910.963235 +1221950.418129 +1222003.455588 +1222044.118774 +1222096.397839 +1222117.543727 +1222169.540411 +1222200.320001 +1222235.798830 +1222269.464239 +1222335.425280 +1222379.055205 +1222414.938142 +1222443.324161 +1222480.851252 +1222536.232482 +1222615.283829 +1222627.469337 +1222695.876170 +1222722.772413 +1222728.303618 +1222795.561066 +1222857.309416 +1222872.655267 +1222918.445178 +1222987.786197 +1223022.912553 +1223084.424145 +1223116.011154 +1223116.011154 +1223157.141217 +1223218.533436 +1223261.630292 +1223304.205661 +1223361.783428 +1223396.543072 +1223440.141950 +1223505.220562 +1223527.878389 +1223552.861702 +1223604.134525 +1223621.644490 +1223701.772042 +1223716.164914 +1223770.806967 +1223821.292026 +1223852.469783 +1223885.852477 +1223930.391820 +1223981.263669 +1224043.203875 +1224043.203875 +1224128.975615 +1224141.556026 +1224193.354260 +1224222.386452 +1224286.256933 +1224324.634535 +1224381.005020 +1224388.602462 +1224435.729801 +1224490.767300 +1224523.976236 +1224566.857048 +1224607.871879 +1224657.079029 +1224687.282306 +1224784.791422 +1224784.791422 +1224829.650591 +1224860.714233 +1224943.528248 +1224943.528248 +1225007.028112 +1225028.230498 +1225087.766820 +1225106.853429 +1225151.430338 +1225201.551645 +1225227.674466 +1225294.741417 +1225302.059335 +1225363.958542 +1225412.383685 +1225452.634446 +1225478.513906 +1225533.770554 +1225555.661484 +1225635.531345 +1225655.000214 +1225685.308456 +1225747.457037 +1225776.337966 +1225821.458196 +1225866.358114 +1225896.580821 +1225940.641813 +1225994.489220 +1226027.239197 +1226106.800053 +1226112.872559 +1226166.367471 +1226204.590914 +1226250.347039 +1226267.332199 +1226293.899478 +1226368.131488 +1226412.980216 +1226461.199609 +1226488.082072 +1226511.136939 +1226552.230866 +1226605.550974 +1226661.062478 +1226700.540025 +1226730.490943 +1226791.801007 +1226808.226849 +1226855.367239 +1226920.236569 +1226960.994237 +1227003.465257 +1227016.498531 +1227064.296025 +1227093.851443 +1227134.055773 +1227185.851916 +1227248.471854 +1227249.629754 +1227324.977005 +1227370.164037 +1227393.702139 +1227447.584451 +1227469.167214 +1227513.828546 +1227548.250895 +1227605.920933 +1227666.473216 +1227679.355083 +1227687.791862 +1227770.185155 +1227852.001101 +1227864.385327 +1227902.790710 +1227916.283838 +1227953.559099 +1228017.872553 +1228067.011959 +1228105.749139 +1228172.251763 +1228172.251763 +1228216.568760 +1228266.094523 +1228311.931658 +1228352.718070 +1228376.511270 +1228435.176973 +1228444.141801 +1228488.160037 +1228565.681603 +1228584.371708 +1228650.577707 +1228670.937976 +1228710.316351 +1228761.288450 +1228769.186307 +1228865.878664 +1228880.628448 +1228913.102508 +1228913.102508 +1228984.529332 +1229027.843072 +1229051.612077 +1229111.003279 +1229169.425886 +1229177.733474 +1229251.494360 +1229261.779273 +1229350.577188 +1229350.577188 +1229417.590046 +1229417.829710 +1229452.030009 +1229508.426287 +1229558.404991 +1229580.880200 +1229644.294548 +1229668.910525 +1229738.193812 +1229772.587640 +1229808.316917 +1229858.715195 +1229858.715195 +1229923.648797 +1229938.322342 +1229993.761673 +1230041.645622 +1230087.716315 +1230132.025517 +1230185.953484 +1230212.564051 +1230246.991660 +1230299.294390 +1230332.901125 +1230369.266361 +1230378.306689 +1230417.626510 +1230484.736887 +1230523.103398 +1230579.287173 +1230596.576769 +1230655.910151 +1230692.559391 +1230709.910989 +1230776.202028 +1230819.472509 +1230826.643831 +1230855.122739 +1230915.135961 +1230972.107933 +1230995.369717 +1231055.160921 +1231081.267621 +1231132.881887 +1231194.670984 +1231194.670984 +1231237.045174 +1231281.385158 +1231337.791884 +1231357.452522 +1231409.434232 +1231436.544774 +1231496.564702 +1231527.732425 +1231559.350421 +1231595.630334 +1231651.506111 +1231678.717106 +1231718.478141 +1231743.359955 +1231802.119504 +1231848.295545 +1231890.555558 +1231899.262036 +1231945.756606 +1232020.297908 +1232043.300236 +1232073.513778 +1232122.418319 +1232153.966506 +1232213.795947 +1232226.223358 +1232260.398188 +1232293.095960 +1232333.268920 +1232382.142537 +1232437.929412 +1232461.109829 +1232505.436980 +1232535.353070 +1232573.043168 +1232625.545438 +1232676.424241 +1232695.413394 +1232729.218460 +1232796.961383 +1232839.465940 +1232844.651209 +1232896.210356 +1232969.505297 +1232972.858488 +1233033.007544 +1233047.467994 +1233126.186535 +1233128.442576 +1233164.145617 +1233203.272274 +1233236.595629 +1233299.660656 +1233352.199378 +1233369.742728 +1233424.358667 +1233464.392777 +1233510.440115 +1233541.809684 +1233582.083157 +1233595.084276 +1233627.799903 +1233704.572951 +1233712.704906 +1233763.376435 +1233778.942358 +1233830.009495 +1233890.605161 +1233924.502052 +1233924.502052 +1234005.278297 +1234022.699699 +1234099.125611 +1234106.054402 +1234149.980601 +1234197.516330 +1234215.532040 +1234254.918263 +1234310.652668 +1234346.515005 +1234375.290084 +1234411.015556 +1234481.663492 +1234488.180044 +1234531.023529 +1234568.295959 +1234622.503362 +1234626.023269 +1234672.812372 +1234716.973711 +1234777.457471 +1234805.672345 +1234864.215517 +1234896.557490 +1234923.972970 +1234964.517777 +1234995.076530 +1235014.897238 +1235068.036049 +1235115.720869 +1235138.359094 +1235166.713864 +1235229.097843 +1235291.659487 +1235300.226206 +1235319.527411 +1235372.130910 +1235425.384355 +1235451.857650 +1235483.123134 +1235534.358621 +1235575.177691 +1235609.048193 +1235666.074828 +1235677.528815 +1235724.902989 +1235724.902989 +1235770.738844 +1235819.333315 +1235886.346806 +1235912.361496 +1235926.707119 +1235979.895367 +1235998.094040 +1236067.769864 +1236109.645153 +1236140.093604 +1236181.280889 +1236204.588325 +1236247.260130 +1236305.266063 +1236316.638448 +1236382.204132 +1236405.280634 +1236445.796575 +1236463.919574 +1236494.123426 +1236497.367425 +1236588.633627 +1236611.315848 +1236658.504209 +1236694.835357 +1236755.630167 +1236777.373400 +1236811.709333 +1236841.116849 +1236891.947448 +1236917.645219 +1236958.488347 +1236993.971229 +1237046.997014 +1237081.265327 +1237120.227390 +1237178.424202 +1237186.225811 +1237241.749777 +1237266.646920 +1237286.182721 +1237356.955626 +1237385.342075 +1237415.771327 +1237442.426757 +1237507.339365 +1237520.630337 +1237552.549564 +1237597.154623 +1237622.154388 +1237649.043507 +1237720.574778 +1237746.016832 +1237755.758046 +1237815.664738 +1237882.397955 +1237897.994730 +1237943.748338 +1237983.457449 +1238013.837747 +1238050.389146 +1238090.905514 +1238126.019397 +1238151.726217 +1238190.271915 +1238237.540416 +1238283.877319 +1238305.607025 +1238355.906249 +1238396.046371 +1238449.263304 +1238459.096068 +1238522.471406 +1238554.401650 +1238567.420896 +1238610.073238 +1238658.915711 +1238694.737038 +1238715.606984 +1238758.193852 +1238816.726200 +1238822.929324 +1238869.177323 +1238883.155381 +1238961.577647 +1238961.577647 +1239002.430124 +1239044.857691 +1239106.170785 +1239157.625658 +1239164.065930 +1239181.547039 +1239212.146678 +1239266.448525 +1239335.518217 +1239357.445473 +1239389.371614 +1239426.843396 +1239493.582646 +1239513.278159 +1239522.170967 +1239573.448075 +1239595.356612 +1239647.447855 +1239688.012698 +1239706.055405 +1239730.497463 +1239792.041307 +1239856.152342 +1239856.152342 +1239886.387316 +1239951.128502 +1239963.471721 +1240030.337690 +1240065.276362 +1240108.297661 +1240146.470345 +1240146.470345 +1240189.535670 +1240270.553896 +1240278.480790 +1240303.240632 +1240366.735070 +1240370.997464 +1240401.031934 +1240447.384261 +1240524.799184 +1240529.649760 +1240575.982109 +1240614.610497 +1240621.021746 +1240662.304955 +1240725.815536 +1240770.944155 +1240779.942775 +1240824.221599 +1240850.191956 +1240931.465223 +1240931.465223 +1240995.991524 +1241010.842068 +1241068.960191 +1241101.181551 +1241122.506994 +1241172.861387 +1241188.100019 +1241237.698979 +1241292.318785 +1241296.110908 +1241355.151567 +1241381.658727 +1241409.367663 +1241447.934287 +1241460.400206 +1241525.100861 +1241551.554237 +1241592.409019 +1241637.742530 +1241665.337304 +1241731.461510 +1241755.821265 +1241814.622686 +1241833.850627 +1241865.162498 +1241888.625892 +1241923.846854 +1241975.210049 +1241995.018477 +1242061.215347 +1242069.151194 +1242113.273779 +1242139.185948 +1242222.020938 +1242232.885254 +1242301.109244 +1242301.109244 +1242371.807019 +1242391.378790 +1242393.325914 +1242437.560354 +1242492.550833 +1242523.611587 +1242537.638985 +1242578.852214 +1242638.835055 +1242667.028801 +1242703.912022 +1242738.448338 +1242764.844090 +1242803.259575 +1242842.876941 +1242858.829466 +1242910.587858 +1242935.264171 +1242991.998953 +1243029.180247 +1243055.386675 +1243083.476945 +1243122.277111 +1243171.620950 +1243207.573763 +1243265.418269 +1243270.274855 +1243305.296059 +1243350.222332 +1243375.029215 +1243443.160721 +1243456.303758 +1243509.866920 +1243510.051476 +1243549.809670 +1243602.216600 +1243647.634396 +1243671.466118 +1243682.171781 +1243747.375672 +1243780.720419 +1243832.561137 +1243876.294194 +1243902.130780 +1243924.643983 +1243965.474286 +1243978.217530 +1244048.090338 +1244077.297053 +1244115.792798 +1244130.864007 +1244169.860169 +1244212.938649 +1244238.928260 +1244282.676398 +1244306.281295 +1244367.242450 +1244367.242450 +1244440.705604 +1244489.454185 +1244506.248345 +1244531.187968 +1244567.140715 +1244605.963875 +1244628.897948 +1244679.563106 +1244679.757641 +1244734.626794 +1244786.837900 +1244816.754525 +1244859.695647 +1244887.774538 +1244925.566337 +1244967.807370 +1244974.769977 +1245018.683189 +1245064.695892 +1245094.904535 +1245119.637108 +1245188.786354 +1245202.090125 +1245225.385974 +1245242.823168 +1245305.632981 +1245357.013651 +1245373.152205 +1245393.729267 +1245440.217673 +1245475.533346 +1245515.992392 +1245543.324030 +1245606.876980 +1245606.876980 +1245657.781669 +1245671.701645 +1245741.169893 +1245747.784277 +1245770.631651 +1245837.178655 +1245862.205662 +1245903.378049 +1245941.487038 +1245961.530525 +1246005.377932 +1246036.740149 +1246070.073308 +1246113.920415 +1246149.550139 +1246178.637969 +1246183.096911 +1246266.116805 +1246295.250335 +1246337.860024 +1246350.266098 +1246390.563155 +1246414.903422 +1246471.532032 +1246483.767792 +1246528.345135 +1246536.080741 +1246593.864211 +1246611.261590 +1246633.268073 +1246676.705616 +1246734.222867 +1246751.850490 +1246804.684141 +1246856.782659 +1246858.230140 +1246915.058271 +1246924.142672 +1246969.990791 +1246980.973578 +1247064.144916 +1247081.938199 +1247111.038829 +1247142.833897 +1247158.494042 +1247176.497010 +1247226.819239 +1247286.228571 +1247339.794061 +1247354.246078 +1247392.816756 +1247420.726546 +1247439.646273 +1247465.928635 +1247519.432936 +1247528.420787 +1247577.028302 +1247629.819340 +1247682.059503 +1247701.085541 +1247729.036502 +1247760.041704 +1247780.436437 +1247827.264050 +1247861.286462 +1247897.331987 +1247908.100931 +1247948.946763 +1247994.102639 +1247998.441402 +1248057.421489 +1248099.241258 +1248158.176102 +1248158.904333 +1248199.372331 +1248231.123386 +1248273.286401 +1248302.159957 +1248334.120015 +1248352.464134 +1248388.868057 +1248441.591590 +1248465.931459 +1248530.302415 +1248530.769934 +1248587.016204 +1248596.986190 +1248641.512222 +1248671.822805 +1248729.439890 +1248729.439890 +1248795.846177 +1248795.846177 +1248851.551608 +1248876.483292 +1248923.681369 +1248941.645315 +1248993.609379 +1249024.269731 +1249026.789592 +1249049.222128 +1249112.884611 +1249151.376862 +1249196.405474 +1249217.751692 +1249243.131023 +1249294.417379 +1249318.339723 +1249356.344620 +1249396.689176 +1249421.584790 +1249434.810373 +1249490.611490 +1249519.524135 +1249519.524135 +1249599.387565 +1249625.765497 +1249638.138684 +1249693.716146 +1249736.919157 +1249744.579896 +1249803.744066 +1249813.246743 +1249873.587094 +1249907.099848 +1249936.547614 +1249964.150444 +1249993.782655 +1250029.536021 +1250059.265076 +1250103.796342 +1250131.509256 +1250143.431887 +1250189.090301 +1250235.645476 +1250266.410890 +1250284.381905 +1250300.365915 +1250380.522330 +1250413.313904 +1250444.465624 +1250444.465624 +1250490.542143 +1250554.156001 +1250554.156001 +1250593.516735 +1250628.801119 +1250672.042536 +1250716.964341 +1250757.366927 +1250757.366927 +1250797.998215 +1250842.148776 +1250858.609582 +1250904.836851 +1250951.098114 +1250956.044425 +1251001.011375 +1251038.211482 +1251089.893064 +1251113.383166 +1251144.849985 +1251160.191032 +1251210.753329 +1251210.753329 +1251265.488128 +1251301.998735 +1251336.857198 +1251389.901102 +1251400.798423 +1251436.942202 +1251470.265887 +1251505.942375 +1251555.118045 +1251555.118045 +1251628.726830 +1251628.726830 +1251679.420950 +1251705.376342 +1251753.573192 +1251772.013415 +1251782.320973 +1251817.208985 +1251859.816829 +1251869.077145 +1251912.204906 +1251950.949359 +1251996.810245 +1252032.209438 +1252055.548237 +1252080.092965 +1252113.134627 +1252155.442266 +1252204.633433 +1252204.635315 +1252277.829416 +1252277.829416 +1252321.856457 +1252358.941702 +1252393.352150 +1252427.047517 +1252454.248753 +1252454.248753 +1252489.884849 +1252549.113375 +1252572.681286 +1252607.518300 +1252641.002163 +1252692.018403 +1252739.127508 +1252773.784782 +1252773.784782 +1252795.133693 +1252818.805295 +1252848.953585 +1252949.355960 +1252949.355960 +1252991.562466 +1253012.128716 +1253059.018910 +1253081.920543 +1253101.275843 +1253158.734264 +1253164.513875 +1253211.182942 +1253228.505768 +1253259.298170 +1253303.919700 +1253339.276588 +1253374.199645 +1253399.624783 +1253438.820963 +1253471.463201 +1253495.376002 +1253537.736335 +1253585.449965 +1253587.698694 +1253608.498086 +1253652.095737 +1253685.137717 +1253717.039193 +1253758.940132 +1253780.879898 +1253813.111887 +1253865.140443 +1253872.821680 +1253915.693148 +1253948.609671 +1253978.950525 +1253978.950525 +1254048.427583 +1254117.092687 +1254137.485853 +1254165.590983 +1254181.609083 +1254220.229038 +1254232.104558 +1254270.562926 +1254295.289447 +1254332.279101 +1254355.547477 +1254390.511835 +1254434.628141 +1254473.444619 +1254506.509435 +1254526.636751 +1254563.067441 +1254598.621954 +1254610.226063 +1254646.759896 +1254692.654288 +1254723.599590 +1254756.765599 +1254777.844518 +1254830.841424 +1254843.199810 +1254898.034549 +1254936.769296 +1254936.769296 +1254982.927060 +1255014.938699 +1255044.171891 +1255064.674478 +1255124.021434 +1255163.639254 +1255177.196520 +1255207.985468 +1255245.166424 +1255267.411583 +1255298.604443 +1255319.508209 +1255387.557808 +1255387.557808 +1255429.178195 +1255486.289896 +1255496.827768 +1255504.175088 +1255560.117562 +1255598.133562 +1255636.377876 +1255636.377876 +1255691.608376 +1255703.302877 +1255775.023182 +1255775.023182 +1255834.353200 +1255847.658100 +1255882.710422 +1255920.181826 +1255923.999145 +1255973.862222 +1256007.588746 +1256050.379053 +1256076.395434 +1256103.497214 +1256126.134557 +1256157.783970 +1256182.874031 +1256240.142861 +1256267.301782 +1256273.033522 +1256326.944507 +1256351.402098 +1256376.672241 +1256419.138558 +1256458.123193 +1256462.392059 +1256500.116803 +1256538.557784 +1256579.373539 +1256611.785239 +1256623.903811 +1256702.656045 +1256702.656045 +1256731.156481 +1256738.903497 +1256781.378049 +1256833.725897 +1256849.395087 +1256879.686344 +1256930.677620 +1256952.071308 +1257002.912793 +1257024.328075 +1257041.013653 +1257077.405233 +1257093.646459 +1257144.346825 +1257180.482957 +1257188.912855 +1257228.740547 +1257246.157393 +1257302.046376 +1257332.662975 +1257387.774599 +1257398.247103 +1257427.616140 +1257452.957564 +1257485.358963 +1257533.862761 +1257547.451947 +1257564.135358 +1257608.818628 +1257610.866728 +1257674.158047 +1257689.203716 +1257729.305238 +1257775.232634 +1257802.230572 +1257836.119819 +1257904.353719 +1257904.353719 +1257928.993071 +1257943.395926 +1257998.856097 +1258023.334120 +1258065.188965 +1258075.852068 +1258111.621425 +1258136.833073 +1258152.381659 +1258182.209429 +1258227.914693 +1258251.049075 +1258341.730335 +1258341.730335 +1258358.701531 +1258391.457995 +1258406.771898 +1258457.192536 +1258493.887867 +1258527.167956 +1258535.903707 +1258567.941941 +1258606.868556 +1258639.954849 +1258663.365418 +1258723.628845 +1258749.797993 +1258779.029082 +1258803.557442 +1258826.796592 +1258830.949655 +1258871.107780 +1258914.921448 +1258941.788734 +1258966.336537 +1259017.213936 +1259037.234302 +1259083.924623 +1259088.077690 +1259145.392759 +1259161.460793 +1259221.039154 +1259258.872685 +1259263.424403 +1259263.781852 +1259304.742538 +1259344.279035 +1259393.466556 +1259393.466556 +1259438.630985 +1259465.519744 +1259486.785577 +1259531.123579 +1259561.090705 +1259589.556832 +1259625.307843 +1259663.814702 +1259689.419260 +1259723.945273 +1259765.835938 +1259799.899665 +1259802.358010 +1259845.483434 +1259845.483434 +1259884.797082 +1259917.716678 +1259941.086876 +1259968.662669 +1260018.141183 +1260043.299435 +1260087.925330 +1260129.143641 +1260162.908620 +1260162.908620 +1260216.894147 +1260217.011262 +1260263.548700 +1260293.777154 +1260335.777977 +1260335.777977 +1260360.346569 +1260422.873252 +1260456.647872 +1260456.647872 +1260507.098647 +1260513.651786 +1260550.042238 +1260580.258250 +1260614.060646 +1260643.089495 +1260703.215598 +1260718.662252 +1260757.342700 +1260757.342700 +1260792.447293 +1260816.876990 +1260858.035663 +1260896.915269 +1260919.787451 +1260951.547150 +1260982.659742 +1260999.376862 +1261024.804664 +1261075.178972 +1261084.719221 +1261139.756780 +1261164.442635 +1261222.833536 +1261222.833536 +1261282.420959 +1261282.420959 +1261310.531535 +1261342.015215 +1261357.109025 +1261392.216467 +1261415.640844 +1261463.557055 +1261493.268373 +1261501.488171 +1261558.202749 +1261569.248348 +1261626.604501 +1261652.122688 +1261701.759939 +1261701.759939 +1261746.363761 +1261772.807272 +1261818.402813 +1261818.402813 +1261841.415353 +1261870.681727 +1261900.978261 +1261960.064750 +1261988.696414 +1262011.836586 +1262050.161783 +1262050.161783 +1262114.259100 +1262114.259100 +1262147.714527 +1262157.640848 +1262216.392597 +1262229.160328 +1262274.801042 +1262297.733745 +1262330.054169 +1262348.790763 +1262395.843823 +1262440.534068 +1262440.534068 +1262477.039686 +1262505.537046 +1262516.794756 +1262565.411816 +1262571.154758 +1262615.391878 +1262653.217660 +1262680.540917 +1262726.229016 +1262744.229276 +1262746.499436 +1262789.322906 +1262806.042022 +1262873.993389 +1262890.482657 +1262923.700640 +1262949.795023 +1263005.004708 +1263018.083239 +1263065.347298 +1263065.347298 +1263094.496406 +1263115.700865 +1263136.917830 +1263185.877777 +1263216.634998 +1263216.634998 +1263262.874360 +1263279.348384 +1263335.809572 +1263364.822251 +1263382.462844 +1263405.463427 +1263463.194253 +1263463.194253 +1263511.655374 +1263519.656682 +1263550.161842 +1263558.737489 +1263630.550680 +1263650.924140 +1263665.808181 +1263704.905250 +1263754.072789 +1263770.481429 +1263791.751533 +1263842.110264 +1263850.534434 +1263876.547933 +1263876.547933 +1263946.357530 +1263980.028576 +1264001.592558 +1264031.536055 +1264055.478036 +1264076.006336 +1264141.394321 +1264141.394321 +1264158.149902 +1264177.032140 +1264250.380068 +1264251.172868 +1264296.234058 +1264304.784528 +1264332.824525 +1264346.637161 +1264402.746508 +1264429.130749 +1264478.916275 +1264499.923157 +1264523.680692 +1264562.061741 +1264580.512170 +1264603.455115 +1264643.400122 +1264665.917114 +1264688.424427 +1264705.745064 +1264763.178918 +1264779.722714 +1264803.269905 +1264825.406390 +1264844.382039 +1264903.983938 +1264915.461236 +1264949.344386 +1264949.344386 +1265018.161301 +1265042.067202 +1265080.296485 +1265090.821763 +1265129.987356 +1265152.706361 +1265188.410485 +1265226.563353 +1265237.776127 +1265272.620555 +1265280.051726 +1265306.314234 +1265362.200728 +1265398.831569 +1265409.558991 +1265453.404951 +1265457.449693 +1265492.508057 +1265529.603343 +1265537.243653 +1265594.195162 +1265628.336880 +1265642.718359 +1265652.742921 +1265687.412661 +1265727.846982 +1265776.442895 +1265776.442895 +1265805.564160 +1265838.011301 +1265859.300107 +1265916.076541 +1265936.432249 +1265953.407993 +1266004.324982 +1266012.550341 +1266043.474946 +1266069.767752 +1266110.357864 +1266147.924905 +1266181.606535 +1266190.227207 +1266203.844702 +1266239.564397 +1266262.590610 +1266300.572052 +1266317.248386 +1266367.251935 +1266403.738410 +1266422.890769 +1266455.717627 +1266455.717627 +1266519.596215 +1266551.169944 +1266567.741742 +1266582.024518 +1266626.492976 +1266648.160385 +1266682.862500 +1266717.126219 +1266747.807063 +1266764.706007 +1266767.259015 +1266814.387760 +1266849.521034 +1266858.721049 +1266889.608214 +1266928.310263 +1266950.598795 +1267014.821819 +1267040.859897 +1267040.859897 +1267101.415505 +1267101.415505 +1267115.649462 +1267132.211061 +1267212.184569 +1267214.411799 +1267264.232989 +1267274.486221 +1267311.799169 +1267328.242614 +1267364.953950 +1267400.707302 +1267420.742558 +1267467.602955 +1267493.787525 +1267515.010445 +1267534.650140 +1267568.217921 +1267593.109328 +1267595.969931 +1267632.988172 +1267703.348619 +1267722.280136 +1267723.688141 +1267775.684010 +1267813.706565 +1267813.706565 +1267827.418738 +1267853.924897 +1267905.295583 +1267930.960268 +1267974.829458 +1268020.598194 +1268020.598194 +1268055.152325 +1268075.848548 +1268100.919840 +1268132.647191 +1268145.935109 +1268203.060349 +1268238.909856 +1268260.202058 +1268260.202058 +1268260.202058 +1268302.737761 +1268344.616614 +1268404.988617 +1268416.230417 +1268436.117311 +1268475.481735 +1268478.154160 +1268557.539682 +1268561.813865 +1268575.976568 +1268603.538574 +1268626.577658 +1268681.356767 +1268681.356767 +1268721.336671 +1268754.927746 +1268791.354822 +1268804.514679 +1268844.895415 +1268862.857037 +1268896.170881 +1268918.273615 +1268935.691497 +1268967.022751 +1269013.776515 +1269044.944741 +1269057.637882 +1269065.336984 +1269141.306619 +1269141.306619 +1269178.844395 +1269205.942481 +1269246.505549 +1269246.505549 +1269272.064254 +1269308.412990 +1269332.345521 +1269365.480057 +1269409.460467 +1269415.971586 +1269472.772247 +1269506.248975 +1269506.248975 +1269516.914087 +1269584.598021 +1269600.718056 +1269620.256208 +1269627.956836 +1269677.721591 +1269677.721591 +1269769.812475 +1269769.812475 +1269790.289376 +1269837.634924 +1269839.996946 +1269873.851944 +1269908.268471 +1269951.483372 +1269956.554647 +1269988.543897 +1270003.066126 +1270051.744454 +1270082.148678 +1270095.653824 +1270119.749207 +1270150.717605 +1270161.968110 +1270206.815567 +1270211.674864 +1270248.626273 +1270288.671626 +1270309.476769 +1270334.500319 +1270380.420541 +1270422.307166 +1270438.309489 +1270450.032991 +1270482.505620 +1270538.664942 +1270538.664942 +1270564.980807 +1270612.350682 +1270638.788671 +1270684.685473 +1270684.685473 +1270719.969171 +1270752.244634 +1270752.244634 +1270752.244634 +1270825.764416 +1270825.764416 +1270890.906709 +1270898.624766 +1270925.356692 +1270953.144115 +1270972.855788 +1271003.622961 +1271032.825773 +1271073.388735 +1271073.388735 +1271143.968134 +1271172.732624 +1271186.118571 +1271198.255636 +1271241.041229 +1271268.243772 +1271299.177571 +1271299.736357 +1271330.424181 +1271364.004391 +1271396.793828 +1271410.326240 +1271453.342171 +1271484.327127 +1271533.588246 +1271551.017202 +1271569.710184 +1271595.062761 +1271619.846709 +1271627.136560 +1271697.777697 +1271709.322482 +1271750.647287 +1271750.647287 +1271770.237386 +1271800.458599 +1271832.817596 +1271858.281397 +1271911.462726 +1271920.459013 +1271971.575838 +1271971.575838 +1272015.429828 +1272015.429828 +1272051.101591 +1272082.274741 +1272155.218884 +1272155.218884 +1272179.528178 +1272184.498347 +1272224.082027 +1272258.686415 +1272308.858572 +1272310.776976 +1272349.364979 +1272349.364979 +1272380.895286 +1272414.671260 +1272457.052037 +1272457.052037 +1272503.381926 +1272518.348701 +1272563.090186 +1272608.691501 +1272608.691501 +1272634.585419 +1272679.220365 +1272719.298676 +1272725.107342 +1272725.107342 +1272781.138736 +1272811.772508 +1272831.096083 +1272843.753821 +1272881.815608 +1272881.815608 +1272944.339487 +1272944.339487 +1272981.698085 +1273016.847111 +1273044.350937 +1273063.856710 +1273097.590891 +1273137.144750 +1273181.439049 +1273181.439049 +1273191.424457 +1273240.350024 +1273248.042798 +1273295.639428 +1273303.709915 +1273337.246900 +1273379.249435 +1273379.249435 +1273418.253746 +1273461.690248 +1273481.917835 +1273520.718145 +1273520.718145 +1273546.819875 +1273582.181628 +1273616.672467 +1273659.159852 +1273670.646872 +1273687.376187 +1273739.898048 +1273753.524735 +1273775.426169 +1273788.005381 +1273799.017653 +1273862.175918 +1273873.061018 +1273904.764555 +1273963.615653 +1273982.966837 +1273995.855346 +1274026.424598 +1274047.982231 +1274063.680398 +1274063.680398 +1274117.976250 +1274161.275244 +1274177.470442 +1274223.477896 +1274236.108446 +1274269.672107 +1274283.905765 +1274301.574070 +1274374.875625 +1274391.384932 +1274391.384932 +1274416.876373 +1274444.250266 +1274473.572848 +1274505.587688 +1274507.817705 +1274555.842123 +1274577.093576 +1274626.198378 +1274632.268231 +1274632.268231 +1274675.529333 +1274717.522950 +1274729.845508 +1274801.992750 +1274811.878289 +1274827.124386 +1274835.985540 +1274875.523985 +1274903.675750 +1274926.604358 +1274951.593426 +1274984.954463 +1275001.262249 +1275024.994107 +1275055.733720 +1275065.873049 +1275114.588497 +1275150.171303 +1275164.602746 +1275190.582629 +1275200.191669 +1275239.834979 +1275248.269853 +1275322.872252 +1275322.872252 +1275374.261545 +1275380.547502 +1275441.818857 +1275452.721170 +1275452.721170 +1275470.704257 +1275536.129296 +1275536.129296 +1275554.124131 +1275591.404309 +1275629.010432 +1275646.069793 +1275669.497521 +1275682.665924 +1275715.429851 +1275745.627111 +1275787.680296 +1275797.659741 +1275852.406869 +1275852.406869 +1275875.239491 +1275920.636645 +1275920.636645 +1275942.942051 +1275970.832839 +1275998.674333 +1276035.618186 +1276068.621760 +1276097.848366 +1276121.863442 +1276136.304251 +1276167.727164 +1276177.189686 +1276246.495809 +1276255.331272 +1276264.444737 +1276294.532788 +1276294.532788 +1276351.637389 +1276381.521284 +1276392.591798 +1276432.375820 +1276459.348813 +1276483.418599 +1276519.095658 +1276519.095658 +1276544.159863 +1276593.281826 +1276625.140260 +1276645.502548 +1276668.394015 +1276672.790016 +1276723.069478 +1276727.135875 +1276762.259460 +1276802.414283 +1276827.245090 +1276827.245090 +1276853.693443 +1276858.012946 +1276926.296402 +1276943.826613 +1276967.557306 +1276990.969232 +1277034.378470 +1277061.633288 +1277087.948094 +1277098.145646 +1277101.214308 +1277159.634926 +1277162.468933 +1277221.036735 +1277221.036735 +1277244.706334 +1277287.533056 +1277306.555203 +1277320.409712 +1277347.461121 +1277372.092710 +1277419.769737 +1277443.368746 +1277459.018102 +1277481.510268 +1277513.590135 +1277537.270094 +1277537.270094 +1277588.357939 +1277588.357939 +1277642.837879 +1277677.239286 +1277690.192792 +1277753.901694 +1277753.901694 +1277763.874606 +1277786.440576 +1277815.279136 +1277827.482671 +1277867.647877 +1277906.684352 +1277906.684352 +1277953.128249 +1277975.163685 +1277997.352747 +1277997.352747 +1278065.048459 +1278065.048459 +1278097.171004 +1278111.001964 +1278155.692493 +1278155.692493 +1278193.128308 +1278201.363876 +1278221.719451 +1278265.163257 +1278334.358675 +1278334.358675 +1278342.930114 +1278378.639999 +1278397.945658 +1278444.648606 +1278448.543828 +1278490.969322 +1278490.969322 +1278556.179506 +1278556.179506 +1278589.597397 +1278599.941664 +1278632.610803 +1278668.483031 +1278680.691349 +1278680.691349 +1278735.926432 +1278735.926432 +1278752.406696 +1278839.225347 +1278847.527030 +1278850.073082 +1278850.073082 +1278885.729480 +1278925.636047 +1278948.732673 +1278963.062362 +1279020.170786 +1279030.326650 +1279079.029492 +1279088.076137 +1279106.196100 +1279126.406272 +1279157.315043 +1279170.956404 +1279187.565212 +1279225.428634 +1279235.151729 +1279293.877434 +1279296.139291 +1279332.657411 +1279332.657411 +1279362.861237 +1279400.006264 +1279425.640612 +1279445.473209 +1279484.545432 +1279495.861069 +1279525.040074 +1279545.890610 +1279558.860346 +1279615.698164 +1279615.698164 +1279673.535612 +1279688.577997 +1279727.152534 +1279727.152534 +1279772.032303 +1279786.319360 +1279796.183388 +1279813.286073 +1279871.886413 +1279888.996643 +1279888.996643 +1279926.617051 +1279945.804910 +1280008.167901 +1280008.167901 +1280020.865185 +1280078.261637 +1280078.261637 +1280101.744533 +1280103.129169 +1280154.634928 +1280175.571780 +1280184.631261 +1280218.337430 +1280243.047176 +1280290.201740 +1280290.201740 +1280309.935007 +1280362.181573 +1280372.707949 +1280400.819202 +1280434.739521 +1280467.194347 +1280467.194347 +1280469.401675 +1280519.566628 +1280541.422485 +1280551.127550 +1280588.140260 +1280634.011142 +1280664.097835 +1280693.309186 +1280693.820539 +1280707.725053 +1280723.882073 +1280742.864044 +1280799.872639 +1280800.910607 +1280858.854022 +1280861.085593 +1280882.888599 +1280925.095909 +1280963.750618 +1280963.750618 +1280982.023663 +1281012.258344 +1281025.947238 +1281056.006434 +1281098.371123 +1281122.242506 +1281125.210618 +1281146.903151 +1281174.613581 +1281210.436463 +1281244.416341 +1281264.681011 +1281322.720125 +1281323.930769 +1281361.040143 +1281361.040143 +1281386.330607 +1281386.330607 +1281418.762650 +1281454.854644 +1281469.417407 +1281475.677047 +1281516.644024 +1281543.265295 +1281566.358233 +1281585.558910 +1281641.223721 +1281641.223721 +1281696.820815 +1281696.820815 +1281740.512302 +1281740.512302 +1281798.912387 +1281798.912387 +1281829.033513 +1281840.553878 +1281899.506430 +1281899.506430 +1281899.506430 +1281952.596933 +1281978.009087 +1282005.345930 +1282005.345930 +1282034.032131 +1282044.915977 +1282069.446112 +1282109.267092 +1282175.639805 +1282175.639805 +1282175.639805 +1282216.951669 +1282217.827952 +1282283.119013 +1282283.119013 +1282315.181877 +1282315.181877 +1282346.765616 +1282359.245203 +1282369.443677 +1282419.329166 +1282453.175911 +1282457.432924 +1282525.134028 +1282525.134028 +1282554.918550 +1282607.596237 +1282607.596237 +1282629.092034 +1282638.766968 +1282655.974891 +1282687.369048 +1282695.001056 +1282741.449919 +1282782.691237 +1282782.691237 +1282805.573071 +1282841.224105 +1282853.015308 +1282898.999183 +1282898.999183 +1282923.561918 +1282953.853300 +1282953.853300 +1282990.239079 +1283026.132604 +1283030.180026 +1283090.699765 +1283090.699765 +1283128.547782 +1283161.134311 +1283161.134311 +1283186.659692 +1283229.614399 +1283266.630708 +1283266.630708 +1283266.630708 +1283323.511398 +1283323.511398 +1283367.674069 +1283372.414351 +1283394.599913 +1283422.248491 +1283441.311319 +1283503.505183 +1283513.963697 +1283513.963697 +1283553.394621 +1283557.213400 +1283594.186101 +1283612.980757 +1283646.027681 +1283657.717746 +1283672.110373 +1283719.920984 +1283731.603878 +1283738.026622 +1283783.571165 +1283828.590765 +1283834.574479 +1283850.535304 +1283875.207174 +1283876.485025 +1283933.915013 +1283938.723922 +1283952.276852 +1283996.218067 +1284023.538567 +1284023.538567 +1284068.157268 +1284097.334383 +1284102.927778 +1284142.051740 +1284157.938262 +1284198.764256 +1284216.981783 +1284216.981783 +1284237.365803 +1284265.157045 +1284292.369725 +1284306.916840 +1284367.861037 +1284382.345667 +1284406.621855 +1284406.621855 +1284443.624991 +1284456.578104 +1284508.902018 +1284508.902018 +1284521.101660 +1284561.929087 +1284581.905285 +1284581.905285 +1284607.175482 +1284663.663640 +1284666.536028 +1284716.045501 +1284716.045501 +1284760.188638 +1284764.566487 +1284790.592572 +1284805.106393 +1284824.099353 +1284874.092869 +1284874.092869 +1284911.476801 +1284911.476801 +1284956.783409 +1284956.783409 +1285008.220509 +1285015.998136 +1285057.812588 +1285081.977341 +1285087.593164 +1285087.593164 +1285154.595542 +1285154.595542 +1285209.969502 +1285209.969502 +1285209.969502 +1285238.578626 +1285281.476594 +1285282.542369 +1285321.287365 +1285351.119676 +1285364.783590 +1285387.838745 +1285399.565271 +1285430.559453 +1285475.218653 +1285486.853028 +1285497.383002 +1285534.507464 +1285540.463535 +1285574.605275 +1285604.183930 +1285616.471144 +1285624.527948 +1285667.694740 +1285705.795779 +1285705.795779 +1285705.795779 +1285757.956314 +1285784.663587 +1285819.297499 +1285834.581312 +1285868.100722 +1285880.845404 +1285898.651480 +1285904.001836 +1285928.572635 +1285967.433436 +1285979.291654 +1286003.458324 +1286033.496774 +1286061.540498 +1286061.540498 +1286134.662623 +1286134.662623 +1286143.810874 +1286158.810049 +1286186.597741 +1286204.645641 +1286227.674456 +1286264.360269 +1286323.776516 +1286323.776516 +1286326.325320 +1286373.723766 +1286389.217213 +1286410.630986 +1286423.120023 +1286456.727619 +1286463.904711 +1286524.685243 +1286524.685243 +1286524.685243 +1286545.973261 +1286603.431190 +1286603.431190 +1286616.867072 +1286650.150979 +1286671.782544 +1286711.990369 +1286719.520743 +1286733.482714 +1286790.510990 +1286794.353767 +1286794.353767 +1286848.535681 +1286856.357939 +1286881.470304 +1286903.136592 +1286931.342548 +1286946.393912 +1286984.364121 +1286989.286666 +1287028.079340 +1287044.915445 +1287074.043901 +1287094.530382 +1287114.180108 +1287139.404940 +1287139.404940 +1287163.260076 +1287171.799462 +1287181.901789 +1287263.300464 +1287267.517595 +1287303.685408 +1287315.556478 +1287336.322932 +1287348.716500 +1287396.102104 +1287396.102104 +1287433.084308 +1287477.704681 +1287478.614007 +1287492.211247 +1287510.840503 +1287519.024614 +1287540.393782 +1287585.921187 +1287620.471165 +1287620.471165 +1287671.313577 +1287671.313577 +1287705.440525 +1287731.694833 +1287746.693445 +1287767.443442 +1287805.929150 +1287806.862472 +1287837.560737 +1287861.691177 +1287909.132853 +1287909.132853 +1287955.547081 +1287955.547081 +1287970.080088 +1287999.212189 +1288014.813520 +1288046.667703 +1288070.173665 +1288082.498052 +1288102.130251 +1288149.896598 +1288149.896598 +1288155.592780 +1288200.721569 +1288220.758619 +1288225.244815 +1288251.087258 +1288278.764425 +1288314.796275 +1288347.997053 +1288347.997053 +1288382.271026 +1288407.783219 +1288431.528350 +1288467.689168 +1288467.689168 +1288486.990016 +1288534.721336 +1288534.721336 +1288565.124012 +1288592.061433 +1288607.278743 +1288635.577904 +1288673.470196 +1288673.470196 +1288692.484063 +1288720.295245 +1288745.054378 +1288768.520041 +1288774.651513 +1288799.148787 +1288839.941503 +1288843.231889 +1288875.636005 +1288898.789007 +1288923.120291 +1288947.537317 +1288961.462524 +1288986.370793 +1289005.557226 +1289012.598726 +1289065.109287 +1289071.289407 +1289124.540473 +1289124.540473 +1289153.771001 +1289172.072359 +1289195.511620 +1289206.100438 +1289258.678578 +1289258.678578 +1289272.626729 +1289304.589152 +1289348.959917 +1289348.959917 +1289382.234684 +1289387.638651 +1289450.320898 +1289450.320898 +1289450.320898 +1289489.581818 +1289493.700026 +1289525.221233 +1289528.943106 +1289561.345396 +1289585.491159 +1289638.284402 +1289638.284402 +1289677.085988 +1289700.840022 +1289700.840022 +1289746.317987 +1289746.317987 +1289787.566178 +1289787.566178 +1289810.068470 +1289846.629492 +1289849.148637 +1289868.565574 +1289905.751720 +1289910.240293 +1289992.334978 +1289992.334978 +1289995.882668 +1290034.421624 +1290063.346886 +1290063.346886 +1290071.358637 +1290074.746522 +1290166.623199 +1290166.623199 +1290166.623199 +1290198.058990 +1290253.589210 +1290253.589210 +1290294.972726 +1290294.972726 +1290310.072882 +1290336.352691 +1290336.352691 +1290346.148986 +1290402.286350 +1290416.051730 +1290441.332766 +1290449.785607 +1290484.578419 +1290489.760024 +1290499.390726 +1290549.358764 +1290552.059635 +1290584.635329 +1290627.658182 +1290656.556640 +1290656.556640 +1290690.121072 +1290709.476091 +1290733.049406 +1290737.620050 +1290774.518066 +1290780.092879 +1290819.377497 +1290856.907929 +1290856.907929 +1290874.636690 +1290912.476617 +1290914.137736 +1290926.292539 +1290968.963269 +1290972.548816 +1291025.373448 +1291038.975852 +1291038.975852 +1291083.008024 +1291106.334285 +1291109.272352 +1291141.681221 +1291174.228699 +1291198.272146 +1291198.272146 +1291232.138113 +1291234.287305 +1291287.267105 +1291295.816202 +1291307.888938 +1291343.676378 +1291346.532528 +1291402.279116 +1291402.279116 +1291440.755288 +1291466.082178 +1291480.849734 +1291508.322368 +1291508.322368 +1291527.483552 +1291551.154929 +1291568.111839 +1291613.482334 +1291613.482334 +1291622.666273 +1291658.909653 +1291671.924974 +1291707.527066 +1291721.538548 +1291764.783526 +1291769.814731 +1291792.711620 +1291830.108557 +1291830.108557 +1291844.964186 +1291879.055826 +1291895.995681 +1291938.126424 +1291941.167760 +1291977.084206 +1292011.160400 +1292011.160400 +1292037.466294 +1292081.441307 +1292081.441307 +1292110.418119 +1292127.422269 +1292151.208492 +1292160.955891 +1292160.955891 +1292205.880987 +1292205.880987 +1292237.262108 +1292284.838386 +1292284.838386 +1292341.747857 +1292341.747857 +1292350.624915 +1292417.324507 +1292417.324507 +1292421.378718 +1292421.378718 +1292452.164407 +1292511.654441 +1292514.127980 +1292536.753378 +1292546.308857 +1292575.505880 +1292576.464376 +1292611.630344 +1292644.076435 +1292671.068515 +1292710.434678 +1292731.192527 +1292742.089688 +1292754.003528 +1292765.993630 +1292784.279982 +1292801.631060 +1292822.035154 +1292840.147730 +1292859.256244 +1292886.425173 +1292886.425173 +1292945.768063 +1292945.768063 +1293026.511955 +1293026.511955 +1293033.814144 +1293034.260207 +1293062.287796 +1293101.469723 +1293101.469723 +1293101.469723 +1293162.633857 +1293162.633857 +1293191.113315 +1293230.548153 +1293230.548153 +1293246.659882 +1293280.133360 +1293280.133360 +1293316.890741 +1293362.566057 +1293365.107505 +1293389.226070 +1293418.795914 +1293442.745940 +1293443.482324 +1293485.754534 +1293489.883364 +1293489.883364 +1293558.874793 +1293572.370617 +1293583.806282 +1293640.967855 +1293640.967855 +1293640.967855 +1293684.877390 +1293693.183164 +1293693.183164 +1293738.035202 +1293761.248028 +1293761.248028 +1293777.046055 +1293786.135736 +1293856.595313 +1293856.595313 +1293891.599683 +1293919.727688 +1293919.727688 +1293961.518873 +1293970.058063 +1293970.058063 +1293991.018214 +1294036.030148 +1294056.017898 +1294056.017898 +1294088.860373 +1294123.070093 +1294151.449391 +1294167.469215 +1294211.306567 +1294211.306567 +1294228.556103 +1294233.186859 +1294268.299694 +1294276.759185 +1294293.759185 +1294336.045691 +1294367.200439 +1294368.248566 +1294371.253545 +1294412.544161 +1294433.217519 +1294456.643077 +1294476.323852 +1294504.283392 +1294520.062704 +1294548.495496 +1294548.495496 +1294581.851690 +1294600.651920 +1294621.449006 +1294647.831432 +1294647.831432 +1294681.005125 +1294700.517497 +1294717.269250 +1294749.187252 +1294792.417663 +1294812.129228 +1294815.150341 +1294815.150341 +1294835.975724 +1294869.749212 +1294900.516266 +1294902.822030 +1294910.310256 +1294943.088487 +1294965.194450 +1294994.996333 +1295021.034458 +1295029.994640 +1295058.160165 +1295095.078332 +1295112.559978 +1295145.169107 +1295145.169107 +1295173.975755 +1295173.975755 +1295216.031196 +1295228.315143 +1295279.288157 +1295279.288157 +1295279.953701 +1295313.387381 +1295330.416980 +1295374.211079 +1295398.169586 +1295398.169586 +1295398.169586 +1295432.282990 +1295433.623439 +1295474.532681 +1295488.173885 +1295548.095840 +1295548.095840 +1295568.686845 +1295578.286964 +1295622.399517 +1295650.074489 +1295675.448940 +1295675.448940 +1295675.448940 +1295686.284019 +1295752.931608 +1295756.480656 +1295774.552516 +1295787.545624 +1295826.049316 +1295826.776892 +1295858.127444 +1295858.127444 +1295896.159711 +1295908.337178 +1295942.686777 +1295972.272150 +1296002.471308 +1296002.471308 +1296031.174584 +1296034.965060 +1296045.186996 +1296093.625854 +1296121.106291 +1296149.676376 +1296149.676376 +1296166.965411 +1296166.965411 +1296218.194674 +1296219.201766 +1296271.430375 +1296271.430375 +1296310.840076 +1296310.840076 +1296310.840076 +1296353.449648 +1296384.709825 +1296386.178010 +1296415.080367 +1296433.100297 +1296448.482238 +1296500.958732 +1296500.958732 +1296500.958732 +1296536.462007 +1296579.050750 +1296579.050750 +1296601.254905 +1296625.523697 +1296626.786728 +1296670.494689 +1296688.396455 +1296688.396455 +1296732.362077 +1296750.229139 +1296779.807306 +1296802.291726 +1296806.453610 +1296806.453610 +1296849.310922 +1296880.842584 +1296880.842584 +1296900.926607 +1296940.214007 +1296960.472210 +1296971.598802 +1296994.971154 +1297024.794375 +1297054.658684 +1297054.658684 +1297093.428693 +1297101.142591 +1297131.509577 +1297138.754944 +1297171.755763 +1297171.755763 +1297201.058478 +1297219.165414 +1297235.567359 +1297247.717650 +1297298.053144 +1297305.291972 +1297341.250232 +1297350.689845 +1297393.125816 +1297415.595466 +1297426.611444 +1297436.751784 +1297438.667639 +1297472.339906 +1297498.536153 +1297498.536153 +1297530.152311 +1297565.120553 +1297565.120553 +1297588.725988 +1297600.693184 +1297622.706816 +1297639.804872 +1297666.192835 +1297692.302991 +1297712.107778 +1297732.405330 +1297757.383544 +1297776.225669 +1297808.322622 +1297809.271287 +1297842.711062 +1297842.711062 +1297866.757365 +1297879.618725 +1297912.882953 +1297952.806900 +1297952.806900 +1297965.855936 +1298001.592259 +1298027.003466 +1298037.690944 +1298055.495760 +1298072.948041 +1298128.247143 +1298160.742849 +1298160.742849 +1298160.742849 +1298168.264937 +1298174.853664 +1298238.885823 +1298255.705115 +1298255.705115 +1298287.185117 +1298316.091327 +1298322.195235 +1298342.600782 +1298356.570429 +1298386.208291 +1298397.826006 +1298417.201873 +1298445.153538 +1298471.241859 +1298491.784269 +1298522.392223 +1298552.894748 +1298552.894748 +1298590.395920 +1298597.118378 +1298597.118378 +1298618.068884 +1298641.596642 +1298691.288314 +1298703.631439 +1298732.824691 +1298732.824691 +1298732.824691 +1298760.499925 +1298784.487000 +1298809.534232 +1298832.058148 +1298876.676268 +1298876.676268 +1298909.395280 +1298929.148436 +1298929.148436 +1298949.200753 +1298978.426762 +1298999.948880 +1299005.113061 +1299023.402577 +1299057.493433 +1299113.221352 +1299113.221352 +1299132.035625 +1299148.535688 +1299184.776327 +1299184.776327 +1299198.879429 +1299221.770531 +1299221.770531 +1299280.504261 +1299306.349211 +1299310.221740 +1299310.221740 +1299310.221740 +1299373.512170 +1299403.563295 +1299419.682864 +1299419.682864 +1299450.481173 +1299450.481173 +1299488.078296 +1299512.877500 +1299530.540271 +1299540.371327 +1299577.047317 +1299593.568754 +1299609.665039 +1299622.381972 +1299681.972498 +1299690.657365 +1299690.657365 +1299705.781093 +1299744.276765 +1299756.511075 +1299756.511075 +1299761.867203 +1299804.390608 +1299816.868112 +1299852.824724 +1299859.250074 +1299910.348456 +1299910.348456 +1299928.615842 +1299928.615842 +1299970.429184 +1299970.429184 +1300026.284117 +1300026.284117 +1300048.144892 +1300068.033785 +1300083.505533 +1300107.191850 +1300142.465198 +1300158.351136 +1300193.637484 +1300193.637484 +1300247.820344 +1300247.820344 +1300247.820344 +1300273.849136 +1300273.849136 +1300291.234716 +1300343.754953 +1300343.754953 +1300369.293490 +1300396.108386 +1300396.108386 +1300427.235771 +1300444.065038 +1300458.867661 +1300485.311503 +1300517.958679 +1300549.813394 +1300549.813394 +1300582.787468 +1300584.808013 +1300610.465062 +1300628.388481 +1300673.210962 +1300673.210962 +1300692.086818 +1300723.662966 +1300741.614132 +1300741.614132 +1300770.966714 +1300776.075164 +1300793.693850 +1300842.062242 +1300866.886552 +1300878.717588 +1300907.867742 +1300914.110970 +1300941.126872 +1300941.126872 +1300969.556630 +1300991.195241 +1301019.470237 +1301019.470237 +1301061.156390 +1301070.232980 +1301070.232980 +1301105.237724 +1301111.070769 +1301147.265413 +1301172.768894 +1301208.172648 +1301208.172648 +1301208.172648 +1301247.177242 +1301280.921283 +1301319.223784 +1301319.223784 +1301319.223784 +1301358.298762 +1301366.285598 +1301384.302397 +1301414.436522 +1301428.048501 +1301449.198555 +1301449.198555 +1301493.118238 +1301515.852854 +1301531.966335 +1301558.485338 +1301580.509371 +1301588.232203 +1301620.504018 +1301620.504018 +1301630.103493 +1301654.118901 +1301685.237087 +1301707.200888 +1301709.575132 +1301716.622841 +1301770.226068 +1301801.544304 +1301802.638061 +1301822.184134 +1301849.903044 +1301857.969337 +1301888.009572 +1301937.270728 +1301937.270728 +1301937.270728 +1301953.784045 +1301981.233288 +1302013.953160 +1302013.953160 +1302045.071326 +1302057.017942 +1302095.421732 +1302114.266022 +1302147.335476 +1302147.335476 +1302147.335476 +1302174.766428 +1302192.577821 +1302215.749593 +1302253.173117 +1302257.609206 +1302288.028475 +1302288.028475 +1302301.712749 +1302331.488963 +1302371.532726 +1302379.738433 +1302395.646548 +1302406.361950 +1302426.882562 +1302448.758881 +1302454.608920 +1302489.699143 +1302498.117322 +1302509.925481 +1302529.806440 +1302584.544374 +1302584.544374 +1302592.219185 +1302606.373160 +1302645.891644 +1302650.681696 +1302693.104263 +1302705.994672 +1302709.886214 +1302750.419739 +1302750.419739 +1302769.566737 +1302797.950568 +1302829.209479 +1302854.967555 +1302865.294647 +1302909.294179 +1302912.158901 +1302916.296801 +1302923.945772 +1302927.168659 +1302967.968514 +1303018.297152 +1303020.026955 +1303036.802903 +1303036.802903 +1303061.129136 +1303092.219213 +1303100.431417 +1303130.330902 +1303144.845601 +1303174.373074 +1303207.216142 +1303218.551210 +1303230.819551 +1303238.058066 +1303273.829408 +1303287.622391 +1303294.201806 +1303312.511924 +1303359.604525 +1303360.187089 +1303404.742034 +1303419.963603 +1303419.963603 +1303450.095531 +1303450.095531 +1303488.424509 +1303488.424509 +1303525.860345 +1303525.860345 +1303545.372883 +1303549.887207 +1303592.131355 +1303620.947396 +1303673.801215 +1303673.801215 +1303686.155362 +1303689.399159 +1303736.426056 +1303736.426056 +1303747.512640 +1303783.072651 +1303800.962950 +1303807.363867 +1303810.930724 +1303817.965856 +1303865.581377 +1303882.619981 +1303912.901266 +1303921.430537 +1303956.247235 +1303969.453889 +1303982.811728 +1303982.811728 +1304031.160159 +1304054.623133 +1304054.623133 +1304072.846102 +1304107.734032 +1304107.734032 +1304107.734032 +1304139.963283 +1304147.578375 +1304180.117502 +1304201.366159 +1304229.446558 +1304258.825156 +1304258.825156 +1304267.474431 +1304306.961584 +1304347.083880 +1304349.749266 +1304370.837973 +1304396.929927 +1304413.990808 +1304423.189952 +1304433.232480 +1304433.232480 +1304449.619181 +1304483.626180 +1304490.506135 +1304528.033817 +1304540.417105 +1304548.416217 +1304566.027339 +1304601.797383 +1304614.301959 +1304624.351455 +1304679.349623 +1304679.349623 +1304699.180633 +1304699.180633 +1304729.309823 +1304731.901939 +1304760.403789 +1304788.151073 +1304797.434306 +1304821.694575 +1304866.126823 +1304870.643385 +1304889.892919 +1304905.421282 +1304905.421282 +1304942.909108 +1304968.747308 +1305002.125368 +1305002.125368 +1305024.171738 +1305024.171738 +1305034.676947 +1305056.570502 +1305080.027648 +1305128.466846 +1305128.466846 +1305151.867309 +1305151.867309 +1305190.783655 +1305206.706811 +1305235.003520 +1305262.660647 +1305262.660647 +1305262.660647 +1305305.518063 +1305323.914747 +1305331.375104 +1305331.375104 +1305361.026338 +1305391.846541 +1305396.397906 +1305411.438402 +1305438.273875 +1305479.069028 +1305482.810413 +1305498.226029 +1305536.591458 +1305567.025802 +1305567.259873 +1305583.675547 +1305615.217731 +1305615.217731 +1305615.217731 +1305647.249283 +1305655.527917 +1305695.743990 +1305698.471148 +1305735.073741 +1305744.764388 +1305781.890899 +1305781.890899 +1305803.054119 +1305828.301342 +1305828.301342 +1305870.356766 +1305870.356766 +1305897.799094 +1305916.135180 +1305916.135180 +1305923.101841 +1305923.101841 +1305991.607967 +1306009.850430 +1306028.378209 +1306037.276237 +1306082.036393 +1306082.036393 +1306113.045781 +1306123.897788 +1306123.897788 +1306145.098630 +1306163.597289 +1306167.894723 +1306228.293208 +1306228.293208 +1306256.833129 +1306256.833129 +1306278.976197 +1306296.371657 +1306312.559218 +1306355.259562 +1306365.648722 +1306365.648722 +1306395.450439 +1306437.752720 +1306445.276604 +1306448.025915 +1306480.217829 +1306499.236216 +1306512.360046 +1306515.996859 +1306545.985950 +1306545.985950 +1306583.793236 +1306586.851697 +1306616.945986 +1306647.268761 +1306662.989571 +1306666.974400 +1306707.939226 +1306707.939226 +1306751.936022 +1306760.140554 +1306760.140554 +1306785.562315 +1306821.149998 +1306830.532639 +1306838.263507 +1306868.007119 +1306900.348787 +1306900.348787 +1306931.482861 +1306947.189616 +1306964.829456 +1306972.995558 +1307003.038217 +1307019.265119 +1307019.265119 +1307019.265119 +1307067.288257 +1307067.288257 +1307081.826518 +1307134.576984 +1307142.727213 +1307162.556780 +1307199.879195 +1307199.879195 +1307203.114104 +1307244.143765 +1307267.056961 +1307267.056961 +1307295.938860 +1307297.767324 +1307315.402176 +1307334.166618 +1307358.663645 +1307360.529079 +1307405.472302 +1307422.327233 +1307438.654431 +1307447.016335 +1307468.940181 +1307488.828128 +1307532.520701 +1307541.903302 +1307577.385475 +1307577.929254 +1307578.213250 +1307596.880706 +1307620.042409 +1307631.524843 +1307660.020073 +1307693.317369 +1307698.261365 +1307712.784393 +1307736.597636 +1307772.349228 +1307772.349228 +1307783.784587 +1307803.241887 +1307841.004511 +1307851.883478 +1307851.883478 +1307884.069783 +1307898.811051 +1307911.958065 +1307933.625795 +1307969.505734 +1307983.259911 +1308006.769792 +1308006.769792 +1308016.058231 +1308042.615170 +1308049.706451 +1308087.014646 +1308107.102110 +1308107.102110 +1308158.039611 +1308160.279422 +1308223.065487 +1308223.065487 +1308223.065487 +1308231.846174 +1308252.896451 +1308261.511575 +1308299.933383 +1308299.933383 +1308316.023105 +1308350.558028 +1308350.558028 +1308383.425855 +1308397.125756 +1308405.428872 +1308437.323991 +1308465.075025 +1308478.133699 +1308505.348067 +1308510.486600 +1308510.486600 +1308545.033218 +1308546.535995 +1308592.204182 +1308592.204182 +1308607.496778 +1308628.316643 +1308664.573156 +1308685.506862 +1308699.944304 +1308711.557338 +1308723.022219 +1308723.022219 +1308771.806767 +1308791.768968 +1308838.752892 +1308838.752892 +1308857.535501 +1308862.960637 +1308877.256238 +1308877.256238 +1308887.364052 +1308918.932463 +1308918.932463 +1308952.302985 +1308991.007727 +1309024.250690 +1309024.250690 +1309043.031332 +1309068.257551 +1309081.867620 +1309081.867620 +1309120.861010 +1309120.861010 +1309169.408502 +1309169.408502 +1309173.490300 +1309184.069770 +1309232.165752 +1309254.676331 +1309256.902377 +1309258.179558 +1309295.556412 +1309331.679190 +1309331.679190 +1309331.679190 +1309365.208904 +1309367.779845 +1309375.032567 +1309393.014224 +1309442.709868 +1309442.709868 +1309468.353417 +1309484.157778 +1309484.157778 +1309525.425786 +1309556.382995 +1309562.664113 +1309562.664113 +1309608.954855 +1309639.955255 +1309648.384698 +1309696.691710 +1309696.691710 +1309696.691710 +1309708.133467 +1309743.604102 +1309749.217030 +1309749.217030 +1309796.625794 +1309796.625794 +1309805.993065 +1309807.524829 +1309845.222844 +1309866.379457 +1309879.398726 +1309879.398726 +1309916.580070 +1309924.620532 +1309978.341854 +1309978.341854 +1310007.625350 +1310007.625350 +1310064.118694 +1310064.118694 +1310064.118694 +1310074.190292 +1310090.793870 +1310134.882832 +1310140.070960 +1310170.682056 +1310170.682056 +1310178.106538 +1310213.734419 +1310213.734419 +1310254.201340 +1310274.442593 +1310274.442593 +1310294.053762 +1310295.068094 +1310321.560324 +1310371.975443 +1310373.919298 +1310373.919298 +1310402.600731 +1310433.243219 +1310474.677585 +1310474.677585 +1310479.557788 +1310488.366973 +1310519.550505 +1310523.378394 +1310523.378394 +1310567.598418 +1310579.239018 +1310599.417687 +1310631.215909 +1310631.215909 +1310678.671376 +1310678.671376 +1310682.868608 +1310705.268993 +1310709.759831 +1310741.806982 +1310769.470441 +1310789.695041 +1310795.709480 +1310802.741263 +1310810.519070 +1310878.193132 +1310878.193132 +1310878.193132 +1310881.190291 +1310900.710264 +1310965.247276 +1310965.247276 +1310965.247276 +1310996.114960 +1311000.525795 +1311051.747646 +1311051.747646 +1311080.450134 +1311101.988192 +1311101.988192 +1311108.120940 +1311148.023580 +1311190.924065 +1311190.924065 +1311190.924065 +1311218.737817 +1311231.300263 +1311244.087272 +1311262.557863 +1311287.642818 +1311315.580730 +1311348.110559 +1311348.110559 +1311381.917490 +1311381.917490 +1311393.475414 +1311416.526557 +1311448.094545 +1311448.094545 +1311448.094545 +1311472.832129 +1311472.832129 +1311502.592074 +1311549.740392 +1311549.740392 +1311580.613332 +1311594.556170 +1311622.396771 +1311635.549045 +1311635.549045 +1311674.023382 +1311674.023382 +1311689.337508 +1311689.337508 +1311740.543926 +1311740.543926 +1311740.543926 +1311782.758364 +1311814.029291 +1311820.141642 +1311823.571957 +1311873.227153 +1311874.440859 +1311874.440859 +1311896.691160 +1311933.586403 +1311946.814465 +1311952.264202 +1311965.579687 +1312002.785101 +1312033.167666 +1312044.231074 +1312044.231074 +1312066.039704 +1312085.404497 +1312088.812780 +1312088.812780 +1312143.067996 +1312167.509837 +1312178.664302 +1312197.745107 +1312219.760679 +1312249.262174 +1312249.262174 +1312252.745925 +1312312.163329 +1312312.163329 +1312312.163329 +1312322.919514 +1312349.831810 +1312386.359391 +1312388.414727 +1312394.180633 +1312431.621294 +1312440.665287 +1312466.822945 +1312466.822945 +1312484.745763 +1312495.146167 +1312517.132250 +1312560.181921 +1312568.459941 +1312591.611927 +1312599.865092 +1312599.865092 +1312629.193288 +1312668.072445 +1312668.072445 +1312680.690126 +1312704.938759 +1312722.734944 +1312753.454905 +1312760.287350 +1312794.551460 +1312794.551460 +1312802.193561 +1312826.062541 +1312842.771101 +1312842.771101 +1312892.429827 +1312897.320197 +1312926.488943 +1312926.995695 +1312961.391472 +1312969.136480 +1312976.746246 +1312999.841769 +1313014.225262 +1313031.939017 +1313051.632446 +1313059.041146 +1313090.173931 +1313090.173931 +1313128.731915 +1313128.731915 +1313144.272570 +1313192.418058 +1313192.418058 +1313208.140813 +1313220.413794 +1313255.883465 +1313255.883465 +1313287.701673 +1313301.680309 +1313314.414747 +1313348.327963 +1313348.327963 +1313387.463127 +1313387.463127 +1313401.274655 +1313408.548422 +1313451.931621 +1313466.633535 +1313493.892695 +1313493.892695 +1313522.378218 +1313522.378218 +1313557.786930 +1313570.885311 +1313570.885311 +1313584.112734 +1313618.395720 +1313636.752413 +1313636.752413 +1313660.221436 +1313674.906092 +1313716.039331 +1313749.348534 +1313749.348534 +1313788.919896 +1313788.919896 +1313788.919896 +1313817.877189 +1313830.357906 +1313840.583717 +1313862.298695 +1313870.889553 +1313892.271946 +1313907.937588 +1313916.767685 +1313936.138232 +1313974.902354 +1313979.545888 +1314018.224752 +1314018.224752 +1314048.821785 +1314048.821785 +1314066.102931 +1314081.903676 +1314101.543582 +1314119.073447 +1314122.699656 +1314159.203349 +1314192.464543 +1314192.464543 +1314221.683955 +1314221.683955 +1314255.901719 +1314263.736979 +1314274.798000 +1314274.798000 +1314323.209205 +1314343.624521 +1314363.140226 +1314363.140226 +1314384.213939 +1314431.831648 +1314431.831648 +1314443.177516 +1314471.838073 +1314471.838073 +1314489.266647 +1314494.082358 +1314521.908210 +1314538.868644 +1314583.931756 +1314583.931756 +1314597.441522 +1314612.753801 +1314633.006431 +1314633.006431 +1314663.341357 +1314666.868218 +1314723.146031 +1314723.146031 +1314729.296405 +1314762.047284 +1314762.047284 +1314797.962409 +1314808.896298 +1314817.154610 +1314830.828953 +1314837.213353 +1314850.383455 +1314890.866337 +1314903.893636 +1314935.995169 +1314935.995169 +1314974.485496 +1314984.641770 +1314996.274791 +1314996.274791 +1315010.795573 +1315028.877729 +1315055.296619 +1315089.214886 +1315089.214886 +1315113.975157 +1315152.626266 +1315152.626266 +1315171.926049 +1315190.735218 +1315192.943105 +1315211.753452 +1315211.753452 +1315249.158295 +1315276.795983 +1315276.795983 +1315313.016972 +1315313.016972 +1315329.478440 +1315351.707263 +1315381.187876 +1315381.187876 +1315408.103360 +1315417.273314 +1315451.675803 +1315463.157021 +1315476.490903 +1315516.172305 +1315527.845082 +1315528.827399 +1315541.943475 +1315553.750375 +1315588.037510 +1315588.037510 +1315591.161754 +1315616.509107 +1315616.509107 +1315677.145767 +1315677.145767 +1315723.814312 +1315723.814312 +1315723.814312 +1315723.814312 +1315769.057892 +1315795.719016 +1315815.501281 +1315815.501281 +1315833.516685 +1315870.970100 +1315870.970100 +1315871.542780 +1315914.297913 +1315915.667570 +1315959.172118 +1315960.433481 +1315960.433481 +1315992.659518 +1316020.162194 +1316020.162194 +1316046.788010 +1316071.541889 +1316071.541889 +1316098.495262 +1316116.343478 +1316125.336609 +1316165.934373 +1316165.934373 +1316165.934373 +1316203.421899 +1316206.523076 +1316238.606604 +1316238.606604 +1316270.414260 +1316288.186678 +1316288.186678 +1316307.254636 +1316334.388032 +1316372.932132 +1316372.932132 +1316377.482364 +1316430.997909 +1316447.269798 +1316457.981153 +1316457.981153 +1316469.114996 +1316485.560296 +1316504.085690 +1316523.670594 +1316527.660049 +1316534.443867 +1316565.972337 +1316578.994010 +1316626.310190 +1316631.369707 +1316634.420547 +1316656.144607 +1316671.566805 +1316686.828672 +1316721.287987 +1316752.657569 +1316752.657569 +1316752.657569 +1316783.797584 +1316815.122073 +1316815.122073 +1316819.090855 +1316871.147712 +1316907.170251 +1316907.170251 +1316907.170251 +1316925.676613 +1316942.247594 +1316949.819781 +1316971.908436 +1316987.087326 +1317001.091900 +1317004.189713 +1317004.541102 +1317023.469799 +1317070.968156 +1317072.253911 +1317131.836197 +1317131.836197 +1317131.836197 +1317185.035808 +1317185.035808 +1317185.035808 +1317232.755331 +1317232.755331 +1317249.594855 +1317249.594855 +1317301.642403 +1317301.642403 +1317325.865499 +1317325.865499 +1317353.120537 +1317363.158975 +1317401.635123 +1317401.635123 +1317401.635123 +1317431.105714 +1317457.400257 +1317457.400257 +1317462.464388 +1317478.574656 +1317519.204633 +1317536.860383 +1317536.860383 +1317564.748557 +1317582.058697 +1317585.351361 +1317630.690344 +1317630.690344 +1317659.327219 +1317671.243531 +1317696.724677 +1317721.825189 +1317721.825189 +1317733.612200 +1317757.211652 +1317757.211652 +1317793.473704 +1317793.473704 +1317819.360435 +1317839.582163 +1317863.798453 +1317877.004399 +1317877.004399 +1317907.772022 +1317909.756147 +1317938.327448 +1317951.905773 +1317971.497825 +1318008.844422 +1318008.844422 +1318025.840072 +1318043.182845 +1318054.871781 +1318085.322691 +1318085.601063 +1318113.638117 +1318148.075744 +1318148.075744 +1318162.752414 +1318164.277123 +1318183.653414 +1318201.948553 +1318224.231534 +1318243.858124 +1318246.943993 +1318299.567569 +1318299.567569 +1318319.616708 +1318324.546181 +1318348.283891 +1318352.569844 +1318376.653309 +1318409.313162 +1318409.313162 +1318409.895212 +1318445.445945 +1318448.250332 +1318502.870374 +1318502.870374 +1318502.870374 +1318539.522276 +1318567.204834 +1318571.235504 +1318587.384624 +1318608.640610 +1318627.718764 +1318627.718764 +1318627.718764 +1318677.584338 +1318677.584338 +1318694.736318 +1318726.389040 +1318728.152859 +1318748.695952 +1318763.807135 +1318812.317941 +1318812.317941 +1318844.240010 +1318844.240010 +1318844.240010 +1318850.703077 +1318854.964019 +1318906.056653 +1318931.986145 +1318934.174090 +1318970.935450 +1318970.935450 +1319000.991864 +1319007.874966 +1319038.938269 +1319038.938269 +1319038.938269 +1319074.784410 +1319074.784410 +1319085.788058 +1319101.175226 +1319118.561525 +1319152.922679 +1319162.248054 +1319184.294876 +1319191.896081 +1319209.667305 +1319235.380963 +1319235.380963 +1319291.467414 +1319291.467414 +1319294.587825 +1319311.876679 +1319332.840431 +1319338.992891 +1319349.658851 +1319387.485602 +1319387.485602 +1319406.730528 +1319406.730528 +1319465.392340 +1319474.019530 +1319474.019530 +1319508.278922 +1319508.278922 +1319547.886846 +1319547.886846 +1319575.432803 +1319575.432803 +1319611.674696 +1319611.674696 +1319612.573301 +1319635.835494 +1319662.149506 +1319672.039611 +1319680.806680 +1319690.526150 +1319706.849454 +1319778.352846 +1319778.352846 +1319778.352846 +1319778.352846 +1319801.011284 +1319825.373993 +1319826.412174 +1319855.649897 +1319855.649897 +1319909.172279 +1319909.172279 +1319915.067064 +1319937.507003 +1319975.072400 +1319990.105556 +1320007.388352 +1320007.388352 +1320037.747414 +1320054.267470 +1320059.289692 +1320059.289692 +1320073.538106 +1320110.540209 +1320135.146728 +1320157.515457 +1320157.515457 +1320157.515457 +1320195.686836 +1320195.686836 +1320212.003078 +1320219.585362 +1320260.506243 +1320268.865680 +1320268.865680 +1320272.547188 +1320300.882407 +1320300.882407 +1320349.527097 +1320394.405741 +1320394.405741 +1320400.313691 +1320400.313691 +1320400.313691 +1320424.726171 +1320458.991657 +1320488.795754 +1320493.838047 +1320498.828096 +1320540.261280 +1320544.603089 +1320588.928127 +1320588.928127 +1320592.249809 +1320594.107293 +1320647.823208 +1320662.861543 +1320666.008121 +1320666.008121 +1320696.452873 +1320696.452873 +1320731.360701 +1320734.148338 +1320758.352853 +1320758.352853 +1320791.820271 +1320813.080283 +1320831.905127 +1320855.909144 +1320855.909144 +1320855.909144 +1320887.575888 +1320905.454145 +1320915.810214 +1320915.810214 +1320947.335589 +1320967.679916 +1320970.733143 +1320991.134865 +1321024.877340 +1321066.999126 +1321079.585972 +1321079.585972 +1321082.099878 +1321091.446985 +1321133.004198 +1321133.135634 +1321184.504920 +1321184.504920 +1321184.504920 +1321191.106560 +1321210.413014 +1321252.899388 +1321252.899388 +1321252.899388 +1321270.735460 +1321283.537345 +1321342.401923 +1321342.401923 +1321350.741069 +1321352.483933 +1321366.076187 +1321375.141895 +1321423.681105 +1321427.854766 +1321443.602621 +1321443.931632 +1321466.176416 +1321492.469807 +1321521.049846 +1321521.679452 +1321542.282811 +1321576.176625 +1321576.176625 +1321576.176625 +1321620.210253 +1321624.540625 +1321641.552248 +1321660.263899 +1321689.613241 +1321715.685157 +1321716.597006 +1321744.155751 +1321744.155751 +1321745.181737 +1321751.364338 +1321785.358211 +1321793.882672 +1321816.759258 +1321828.491431 +1321859.045811 +1321859.045811 +1321897.998706 +1321901.402156 +1321901.402156 +1321935.034472 +1321956.349121 +1321956.349121 +1321956.349121 +1322002.281259 +1322002.281259 +1322019.522522 +1322023.473501 +1322075.574485 +1322083.242660 +1322090.202272 +1322114.081162 +1322119.558847 +1322142.095763 +1322163.829550 +1322183.964224 +1322183.964224 +1322224.555290 +1322249.826774 +1322249.826774 +1322249.826774 +1322249.826774 +1322269.812897 +1322291.501673 +1322300.931467 +1322310.755150 +1322341.222810 +1322364.010655 +1322368.834411 +1322399.189323 +1322399.189323 +1322452.835433 +1322452.835433 +1322454.933553 +1322486.238631 +1322498.509312 +1322518.694528 +1322523.963091 +1322538.545765 +1322541.455087 +1322567.055858 +1322618.945704 +1322618.945704 +1322618.945704 +1322639.867337 +1322653.472302 +1322694.989495 +1322694.989495 +1322706.831602 +1322752.512886 +1322752.512886 +1322758.298482 +1322764.040695 +1322794.659160 +1322794.659160 +1322814.680395 +1322815.283746 +1322824.931897 +1322853.960837 +1322855.156488 +1322893.795724 +1322914.596349 +1322934.876081 +1322934.876081 +1322950.626894 +1322966.904945 +1323019.019798 +1323019.019798 +1323049.883944 +1323049.883944 +1323051.227500 +1323058.528124 +1323064.316759 +1323115.219779 +1323124.617479 +1323143.509481 +1323155.090565 +1323165.235329 +1323165.235329 +1323186.897060 +1323212.582848 +1323240.838296 +1323241.184539 +1323285.686289 +1323285.686289 +1323311.040122 +1323311.040122 +1323345.552952 +1323345.552952 +1323353.317692 +1323354.370797 +1323376.233690 +1323428.535067 +1323438.525000 +1323444.213601 +1323451.787302 +1323456.791032 +1323494.063709 +1323506.124164 +1323506.668377 +1323526.129011 +1323553.378841 +1323553.378841 +1323570.857049 +1323594.625020 +1323594.625020 +1323622.623767 +1323637.845623 +1323678.877524 +1323689.275574 +1323694.406394 +1323713.893210 +1323720.172883 +1323748.862494 +1323748.862494 +1323785.424598 +1323791.322856 +1323811.008430 +1323821.530210 +1323841.850046 +1323862.335322 +1323869.481690 +1323869.481690 +1323877.718932 +1323889.586313 +1323921.501958 +1323945.436087 +1323961.806318 +1323984.643471 +1323984.643471 +1324000.481403 +1324016.995417 +1324024.928038 +1324068.346413 +1324068.346413 +1324091.258458 +1324098.976266 +1324132.897256 +1324132.897256 +1324156.308416 +1324187.013954 +1324187.013954 +1324189.836264 +1324202.823707 +1324244.695672 +1324244.695672 +1324298.224423 +1324298.224423 +1324298.224423 +1324319.839206 +1324319.839206 +1324319.839206 +1324358.320999 +1324361.427900 +1324385.732627 +1324419.906409 +1324433.471873 +1324433.471873 +1324451.841381 +1324463.841594 +1324473.239921 +1324475.591680 +1324523.006373 +1324531.624017 +1324531.624017 +1324556.960404 +1324560.641331 +1324564.645769 +1324596.086796 +1324632.499732 +1324685.846535 +1324685.846535 +1324685.846535 +1324685.846535 +1324706.555241 +1324724.957534 +1324753.108118 +1324759.688440 +1324759.688440 +1324792.594768 +1324792.594768 +1324792.594768 +1324806.832617 +1324827.853856 +1324854.189815 +1324874.568778 +1324916.124409 +1324916.124409 +1324927.037978 +1324941.181177 +1324985.697147 +1324985.697147 +1324985.697147 +1325002.693947 +1325002.693947 +1325021.277269 +1325021.277269 +1325087.941882 +1325087.941882 +1325087.941882 +1325114.824516 +1325134.414402 +1325135.244928 +1325156.961965 +1325157.026155 +1325188.957207 +1325199.343651 +1325221.084752 +1325252.377307 +1325252.377307 +1325273.217175 +1325273.217175 +1325273.217175 +1325308.169792 +1325308.169792 +1325352.495102 +1325352.495102 +1325367.426933 +1325396.206009 +1325397.861303 +1325397.861303 +1325417.301196 +1325423.546920 +1325462.336843 +1325462.336843 +1325502.564869 +1325502.564869 +1325548.017968 +1325548.017968 +1325567.298381 +1325567.298381 +1325577.283593 +1325577.283593 +1325619.769394 +1325636.262313 +1325636.262313 +1325659.258526 +1325677.987921 +1325677.987921 +1325696.417981 +1325708.812685 +1325730.090990 +1325756.546407 +1325756.546407 +1325756.546407 +1325783.415812 +1325815.057967 +1325820.344886 +1325839.983471 +1325865.555176 +1325865.555176 +1325866.131827 +1325886.170118 +1325928.380037 +1325928.380037 +1325954.084706 +1325965.930922 +1325994.693214 +1325999.405258 +1325999.405258 +1326028.227716 +1326039.492278 +1326058.435225 +1326058.435225 +1326102.364357 +1326116.669438 +1326116.669438 +1326116.669438 +1326149.022275 +1326152.722175 +1326180.446349 +1326195.356386 +1326200.148575 +1326248.159650 +1326288.353927 +1326288.353927 +1326288.353927 +1326288.353927 +1326292.281810 +1326292.281810 +1326301.766577 +1326319.493704 +1326349.835534 +1326356.769247 +1326390.486832 +1326420.504352 +1326420.504352 +1326420.504352 +1326450.980883 +1326463.093828 +1326488.713800 +1326501.144587 +1326509.697072 +1326511.336612 +1326540.868966 +1326540.868966 +1326589.968038 +1326589.968038 +1326589.968038 +1326621.544456 +1326621.544456 +1326639.344066 +1326661.863102 +1326671.729991 +1326703.401354 +1326703.401354 +1326711.138983 +1326717.250719 +1326768.962112 +1326770.089124 +1326814.226765 +1326814.226765 +1326814.226765 +1326814.226765 +1326834.085271 +1326834.085271 +1326888.432825 +1326896.577540 +1326896.577540 +1326926.727205 +1326926.727205 +1326950.536774 +1326950.536774 +1326959.070844 +1326975.515860 +1327021.855204 +1327031.517722 +1327031.517722 +1327038.421661 +1327044.937505 +1327077.163231 +1327077.163231 +1327077.163231 +1327099.645381 +1327110.502650 +1327157.914957 +1327187.607329 +1327187.607329 +1327189.694492 +1327201.355560 +1327241.576435 +1327241.576435 +1327251.018535 +1327276.602459 +1327295.324508 +1327295.324508 +1327296.283174 +1327325.511106 +1327347.782426 +1327347.782426 +1327365.156999 +1327369.193713 +1327396.908956 +1327411.828668 +1327434.202377 +1327453.383556 +1327481.491129 +1327481.491129 +1327481.491129 +1327525.671698 +1327534.388256 +1327539.308099 +1327543.616697 +1327558.642661 +1327576.136139 +1327593.698076 +1327627.686258 +1327627.686258 +1327636.142651 +1327647.419969 +1327670.497543 +1327682.972694 +1327687.296870 +1327711.478451 +1327728.649367 +1327728.649367 +1327742.658965 +1327757.439719 +1327800.683611 +1327830.550923 +1327830.823380 +1327830.823380 +1327856.848900 +1327856.848900 +1327881.454807 +1327882.821863 +1327906.633273 +1327906.633273 +1327939.183725 +1327967.210861 +1327976.604378 +1327979.065636 +1327979.065636 +1327988.503215 +1328023.467585 +1328031.757375 +1328056.424729 +1328060.349912 +1328088.750349 +1328088.750349 +1328104.104535 +1328104.104535 +1328117.148381 +1328127.273030 +1328167.375660 +1328167.375660 +1328190.868814 +1328248.306227 +1328248.306227 +1328248.306227 +1328251.077568 +1328291.600731 +1328300.165272 +1328300.165272 +1328324.553344 +1328334.988341 +1328369.407405 +1328369.407405 +1328388.646123 +1328388.646123 +1328388.646123 +1328388.646123 +1328427.569587 +1328440.908300 +1328470.699816 +1328470.699816 +1328515.360169 +1328515.360169 +1328528.825031 +1328528.825031 +1328558.804141 +1328575.761046 +1328595.114774 +1328611.980656 +1328615.275535 +1328615.275535 +1328634.998665 +1328634.998665 +1328658.963481 +1328660.580826 +1328692.432360 +1328696.389638 +1328724.180431 +1328728.124903 +1328748.297505 +1328773.905288 +1328790.598311 +1328790.598311 +1328798.115496 +1328833.144809 +1328833.144809 +1328835.613132 +1328867.520364 +1328909.109664 +1328909.496408 +1328926.955083 +1328934.129319 +1328934.129319 +1328970.525567 +1328977.475150 +1328997.973255 +1329028.253028 +1329028.253028 +1329028.253028 +1329040.026731 +1329046.616942 +1329079.405943 +1329085.858429 +1329110.002359 +1329110.002359 +1329146.210622 +1329146.210622 +1329150.647077 +1329161.214567 +1329161.636443 +1329184.322928 +1329222.734017 +1329235.849318 +1329235.849318 +1329268.439707 +1329308.053157 +1329308.053157 +1329309.192503 +1329333.576779 +1329333.576779 +1329355.145997 +1329366.412086 +1329393.831233 +1329399.410568 +1329427.723191 +1329427.723191 +1329448.147940 +1329463.688809 +1329468.402286 +1329486.954263 +1329497.099060 +1329541.719609 +1329541.719609 +1329541.719609 +1329541.719609 +1329547.595573 +1329602.173725 +1329602.173725 +1329644.434961 +1329644.434961 +1329644.434961 +1329658.240085 +1329674.298456 +1329674.298456 +1329681.513887 +1329731.633997 +1329731.633997 +1329749.076319 +1329768.366256 +1329768.366256 +1329771.688512 +1329790.660475 +1329813.934168 +1329813.934168 +1329844.459420 +1329864.069743 +1329864.069743 +1329870.015246 +1329906.800160 +1329935.970850 +1329935.970850 +1329968.841117 +1329968.841117 +1329968.841117 +1329976.904570 +1329980.933749 +1330003.884466 +1330003.884466 +1330060.649492 +1330068.303023 +1330068.303023 +1330068.303023 +1330120.554679 +1330120.554679 +1330121.246531 +1330165.277233 +1330165.277233 +1330170.105937 +1330185.396777 +1330186.443035 +1330195.838706 +1330235.413183 +1330264.655057 +1330274.148957 +1330274.148957 +1330305.695982 +1330307.109187 +1330307.109187 +1330319.199200 +1330352.812777 +1330354.161972 +1330385.225088 +1330385.225088 +1330385.225088 +1330411.762337 +1330428.154481 +1330433.193397 +1330459.465383 +1330459.465383 +1330471.343717 +1330476.573313 +1330524.388429 +1330524.388429 +1330557.789917 +1330557.789917 +1330561.630143 +1330589.566038 +1330589.566038 +1330609.509190 +1330609.509190 +1330645.639139 +1330690.939213 +1330715.039033 +1330716.906163 +1330716.906163 +1330716.906163 +1330716.906163 +1330728.791782 +1330766.101149 +1330780.973721 +1330780.973721 +1330797.587689 +1330810.107785 +1330831.458732 +1330846.781058 +1330846.781058 +1330861.860556 +1330861.860556 +1330901.906693 +1330901.906693 +1330904.273615 +1330922.068003 +1330936.066760 +1330962.085933 +1330962.085933 +1330970.829891 +1331001.521430 +1331041.017006 +1331046.436128 +1331046.436128 +1331076.220825 +1331076.220825 +1331099.741107 +1331125.644724 +1331128.879379 +1331128.879379 +1331132.819313 +1331164.777463 +1331164.777463 +1331170.989786 +1331201.663104 +1331201.663104 +1331201.663104 +1331222.846575 +1331248.892451 +1331255.350173 +1331264.676132 +1331311.673991 +1331311.673991 +1331334.037995 +1331334.037995 +1331367.010448 +1331375.903046 +1331382.977455 +1331401.973716 +1331410.058962 +1331435.379781 +1331435.379781 +1331452.591635 +1331465.716210 +1331465.716210 +1331479.632993 +1331497.257599 +1331523.904594 +1331531.882484 +1331572.169635 +1331572.169635 +1331594.056933 +1331594.056933 +1331597.610256 +1331601.215820 +1331625.484519 +1331625.484519 +1331646.387529 +1331683.398271 +1331683.398271 +1331683.398271 +1331693.084594 +1331716.055107 +1331748.592910 +1331767.121284 +1331767.121284 +1331770.182788 +1331791.592182 +1331817.435266 +1331823.899727 +1331850.086750 +1331850.086750 +1331850.086750 +1331870.917631 +1331893.517945 +1331909.753339 +1331913.835968 +1331930.799125 +1331964.727955 +1331964.727955 +1331964.727955 +1331968.251138 +1332003.166251 +1332003.166251 +1332025.371310 +1332031.810951 +1332048.472701 +1332071.403689 +1332085.697087 +1332085.697087 +1332108.173148 +1332133.961169 +1332135.469239 +1332161.547894 +1332161.547894 +1332186.419645 +1332186.419645 +1332193.923929 +1332195.019528 +1332229.710735 +1332253.958639 +1332263.028340 +1332276.554506 +1332290.033435 +1332290.033435 +1332290.033435 +1332316.611764 +1332342.261114 +1332351.446965 +1332363.975332 +1332374.787748 +1332419.638550 +1332419.638550 +1332419.638550 +1332432.388641 +1332455.316567 +1332455.316567 +1332466.332912 +1332482.340645 +1332494.003439 +1332540.179423 +1332540.179423 +1332540.209181 +1332540.209181 +1332568.375609 +1332585.686811 +1332604.456787 +1332626.350138 +1332626.350138 +1332644.338351 +1332657.429800 +1332703.415795 +1332703.415795 +1332703.415795 +1332712.039665 +1332724.095347 +1332743.472836 +1332754.643485 +1332759.789044 +1332764.441525 +1332822.857187 +1332822.857187 +1332847.205678 +1332847.205678 +1332847.205678 +1332847.205678 +1332862.119375 +1332892.339523 +1332892.339523 +1332930.349471 +1332930.349471 +1332950.084078 +1332950.084078 +1332950.084078 +1332984.555320 +1332990.851682 +1333005.552146 +1333005.552146 +1333044.866869 +1333044.866869 +1333089.376315 +1333089.376315 +1333089.961701 +1333099.512656 +1333133.979537 +1333133.979537 +1333151.871911 +1333157.130867 +1333173.100016 +1333198.661335 +1333217.264932 +1333245.595872 +1333245.595872 +1333245.595872 +1333268.291988 +1333268.291988 +1333304.234232 +1333304.234232 +1333304.234232 +1333304.234232 +1333330.038535 +1333330.038535 +1333373.177790 +1333390.425193 +1333390.425193 +1333421.677062 +1333421.677062 +1333421.677062 +1333421.677062 +1333428.453799 +1333440.639035 +1333484.337709 +1333487.168812 +1333520.484645 +1333523.554304 +1333525.048226 +1333535.373058 +1333549.069484 +1333572.286501 +1333592.051205 +1333592.051205 +1333614.518747 +1333626.355490 +1333655.952191 +1333655.952191 +1333674.348699 +1333681.951794 +1333681.951794 +1333708.916905 +1333711.688706 +1333734.906144 +1333756.115786 +1333801.216672 +1333801.216672 +1333801.216672 +1333801.216672 +1333813.564780 +1333813.564780 +1333857.989529 +1333857.989529 +1333865.723124 +1333865.723124 +1333910.198290 +1333928.276429 +1333933.855611 +1333961.800135 +1333961.800135 +1333976.485276 +1333976.485276 +1333976.485276 +1334002.575194 +1334041.572570 +1334041.572570 +1334062.122480 +1334062.122480 +1334062.122480 +1334095.105098 +1334124.513400 +1334124.513400 +1334140.147445 +1334140.147445 +1334188.042617 +1334188.042617 +1334188.042617 +1334188.042617 +1334210.732788 +1334210.732788 +1334226.405993 +1334244.574544 +1334250.564673 +1334292.952356 +1334294.586888 +1334315.767293 +1334315.843905 +1334338.778348 +1334339.072804 +1334339.072804 +1334389.601107 +1334389.601107 +1334389.601107 +1334389.601107 +1334400.120338 +1334419.427758 +1334423.747343 +1334425.573167 +1334469.309100 +1334469.555342 +1334490.411426 +1334499.220880 +1334499.220880 +1334535.343486 +1334552.858454 +1334566.785629 +1334569.650300 +1334600.623452 +1334607.682112 +1334614.335445 +1334626.713442 +1334645.274872 +1334657.119607 +1334683.049849 +1334695.640590 +1334704.015964 +1334704.015964 +1334721.887755 +1334721.887755 +1334759.429077 +1334759.429077 +1334795.934260 +1334795.934260 +1334797.801229 +1334808.238548 +1334840.730955 +1334840.730955 +1334851.237079 +1334868.570832 +1334894.989694 +1334897.499971 +1334913.789510 +1334927.365604 +1334931.447205 +1334938.292908 +1334966.701569 +1334966.701569 +1334992.379446 +1334997.961778 +1335021.167547 +1335021.167547 +1335039.639864 +1335039.639864 +1335077.043509 +1335089.439260 +1335091.042963 +1335119.701328 +1335123.627932 +1335126.414396 +1335126.414396 +1335154.492490 +1335158.906556 +1335160.589932 +1335222.645692 +1335222.645692 +1335248.436837 +1335248.436837 +1335248.436837 +1335248.436837 +1335273.289644 +1335277.436150 +1335277.436150 +1335306.273803 +1335331.300002 +1335341.191221 +1335373.460510 +1335373.460510 +1335373.460510 +1335419.689963 +1335419.689963 +1335425.755028 +1335438.024119 +1335438.259161 +1335451.399806 +1335467.202212 +1335485.538828 +1335498.766860 +1335508.141513 +1335514.953864 +1335525.114906 +1335558.735069 +1335573.374175 +1335573.374175 +1335589.681323 +1335608.553742 +1335608.553742 +1335653.123137 +1335653.123137 +1335653.852014 +1335672.131289 +1335678.225943 +1335678.225943 +1335710.295473 +1335716.863620 +1335742.270059 +1335755.911591 +1335775.634258 +1335779.891161 +1335799.937409 +1335799.937409 +1335842.008109 +1335842.008109 +1335842.008109 +1335842.008109 +1335868.490937 +1335882.329620 +1335904.878681 +1335916.818967 +1335917.756918 +1335934.715245 +1335958.860189 +1335990.262335 +1335990.262335 +1335990.262335 +1335990.262335 +1335993.286088 +1336027.716741 +1336047.869295 +1336067.917289 +1336067.917289 +1336067.917289 +1336102.167580 +1336108.078223 +1336108.078223 +1336130.336680 +1336159.442882 +1336177.949216 +1336177.949216 +1336199.419173 +1336199.419173 +1336199.419173 +1336203.081645 +1336255.874537 +1336255.874537 +1336255.874537 +1336280.254354 +1336280.254354 +1336298.469163 +1336338.965537 +1336340.652601 +1336346.138927 +1336346.138927 +1336346.138927 +1336390.437980 +1336390.437980 +1336412.071411 +1336412.071411 +1336412.071411 +1336450.298044 +1336450.298044 +1336450.298044 +1336479.412393 +1336483.949630 +1336512.744125 +1336526.476728 +1336534.176705 +1336538.934508 +1336582.336587 +1336582.336587 +1336582.336587 +1336583.495641 +1336583.495641 +1336622.378590 +1336650.037946 +1336650.037946 +1336695.537953 +1336695.537953 +1336717.837792 +1336722.283378 +1336722.283378 +1336726.276688 +1336740.785578 +1336774.080301 +1336774.080301 +1336777.672271 +1336786.267106 +1336805.315838 +1336807.204916 +1336807.204916 +1336849.045535 +1336859.055399 +1336863.286408 +1336907.907463 +1336919.991494 +1336919.991494 +1336919.991494 +1336926.052449 +1336946.855767 +1336968.621321 +1336986.086754 +1336986.678935 +1337011.037018 +1337011.037018 +1337027.275594 +1337027.275594 +1337053.689537 +1337097.022735 +1337097.022735 +1337097.022735 +1337097.022735 +1337128.418779 +1337145.011600 +1337163.535895 +1337163.535895 +1337163.535895 +1337172.308578 +1337190.532749 +1337219.371540 +1337219.371540 +1337235.917057 +1337235.917057 +1337258.749117 +1337269.769526 +1337285.596627 +1337299.804951 +1337310.522914 +1337311.096756 +1337332.039566 +1337355.486389 +1337387.794555 +1337387.794555 +1337394.775093 +1337404.572998 +1337415.269670 +1337434.103764 +1337456.340783 +1337456.340783 +1337464.963730 +1337473.810899 +1337492.650145 +1337530.086114 +1337530.086114 +1337530.091145 +1337557.404143 +1337557.404143 +1337561.108830 +1337569.616129 +1337590.861299 +1337631.180214 +1337631.180214 +1337660.026516 +1337660.026516 +1337660.026516 +1337677.546022 +1337689.927627 +1337699.598521 +1337701.662440 +1337723.124950 +1337723.124950 +1337754.081719 +1337765.111946 +1337787.988961 +1337809.036169 +1337814.307094 +1337814.307094 +1337820.823020 +1337855.567956 +1337855.567956 +1337855.567956 +1337890.005633 +1337894.516593 +1337902.952562 +1337902.952562 +1337957.136168 +1337957.136168 +1337965.882337 +1337965.882337 +1337993.330941 +1338000.041446 +1338036.706482 +1338037.774915 +1338042.736004 +1338051.836740 +1338051.836740 +1338074.594180 +1338101.696138 +1338120.010520 +1338120.010520 +1338120.010520 +1338122.984096 +1338166.875371 +1338166.875371 +1338173.699835 +1338173.699835 +1338204.085197 +1338204.085197 +1338234.011481 +1338234.011481 +1338270.999841 +1338270.999841 +1338274.782723 +1338274.782723 +1338304.002615 +1338304.002615 +1338356.667988 +1338359.023876 +1338359.023876 +1338362.522301 +1338370.221369 +1338407.670158 +1338407.670158 +1338420.821450 +1338438.653854 +1338474.756299 +1338474.756299 +1338474.756299 +1338474.756299 +1338519.114129 +1338521.173834 +1338521.173834 +1338547.425520 +1338557.810616 +1338557.810616 +1338578.809582 +1338578.809582 +1338600.685187 +1338600.685187 +1338620.867410 +1338620.867410 +1338664.064540 +1338673.236284 +1338681.204920 +1338681.204920 +1338724.609389 +1338742.097716 +1338742.097716 +1338744.897251 +1338751.579720 +1338757.880631 +1338757.880631 +1338797.230779 +1338806.855385 +1338811.097077 +1338815.788973 +1338849.562964 +1338849.562964 +1338885.652262 +1338885.652262 +1338885.652262 +1338886.173407 +1338928.927124 +1338928.927124 +1338941.431705 +1338953.489586 +1338973.870755 +1338973.870755 +1338981.072691 +1338995.487734 +1338995.487734 +1339035.621339 +1339049.383509 +1339049.383509 +1339078.597076 +1339078.597076 +1339078.597076 +1339112.629758 +1339112.629758 +1339132.933661 +1339155.000289 +1339155.000289 +1339155.000289 +1339173.830735 +1339193.841313 +1339193.841313 +1339208.391790 +1339233.191781 +1339262.649473 +1339262.649473 +1339281.778080 +1339281.778080 +1339302.078689 +1339304.193672 +1339325.579495 +1339325.579495 +1339331.790426 +1339366.848741 +1339366.848741 +1339378.017637 +1339408.766748 +1339408.766748 +1339427.746496 +1339444.014822 +1339444.014822 +1339459.137747 +1339459.137747 +1339477.608028 +1339483.218039 +1339491.527008 +1339541.289750 +1339541.289750 +1339563.977255 +1339566.906579 +1339566.906579 +1339607.538759 +1339607.538759 +1339612.291448 +1339612.291448 +1339621.193526 +1339625.466612 +1339660.491175 +1339676.509445 +1339685.904861 +1339685.904861 +1339693.015214 +1339723.093573 +1339723.093573 +1339740.034707 +1339740.034707 +1339749.057062 +1339774.539936 +1339784.181686 +1339798.710762 +1339812.405922 +1339830.277237 +1339851.728664 +1339852.442302 +1339871.785418 +1339871.785418 +1339899.017244 +1339899.017244 +1339926.304047 +1339926.304047 +1339946.183033 +1339969.321426 +1339979.508803 +1339979.508803 +1339999.044207 +1340028.758899 +1340028.758899 +1340028.758899 +1340043.187355 +1340059.878862 +1340059.878862 +1340079.202473 +1340114.975825 +1340114.975825 +1340114.975825 +1340115.648068 +1340147.708757 +1340147.708757 +1340183.496162 +1340183.496162 +1340186.863110 +1340208.134013 +1340214.652266 +1340245.795807 +1340245.795807 +1340268.741260 +1340268.741260 +1340269.139935 +1340304.604034 +1340304.604034 +1340323.621804 +1340323.621804 +1340340.809980 +1340347.080253 +1340358.419054 +1340371.898271 +1340405.347913 +1340412.726232 +1340437.279987 +1340446.368168 +1340450.678384 +1340469.677913 +1340473.953872 +1340473.953872 +1340473.953872 +1340476.713855 +1340511.199537 +1340511.199537 +1340552.076356 +1340552.076356 +1340595.350426 +1340595.350426 +1340595.350426 +1340605.298371 +1340621.428554 +1340621.428554 +1340621.428554 +1340648.382863 +1340648.382863 +1340683.469148 +1340692.209942 +1340716.255828 +1340716.255828 +1340733.542646 +1340742.935336 +1340742.935336 +1340751.339271 +1340754.541872 +1340780.894594 +1340788.993302 +1340824.245966 +1340824.245966 +1340827.502705 +1340835.932040 +1340866.281971 +1340889.942017 +1340889.942017 +1340903.156731 +1340936.022570 +1340936.022570 +1340936.022570 +1340938.924212 +1340943.612149 +1340973.644252 +1340991.266705 +1340995.952543 +1341016.669587 +1341016.669587 +1341060.783015 +1341060.783015 +1341067.038449 +1341067.038449 +1341089.361348 +1341103.329553 +1341103.329553 +1341103.329553 +1341129.967630 +1341144.640607 +1341172.813574 +1341184.620080 +1341184.620080 +1341233.652532 +1341236.645078 +1341236.645078 +1341236.645078 +1341238.436469 +1341253.528291 +1341260.056702 +1341291.602668 +1341298.980776 +1341298.980776 +1341308.901212 +1341320.834856 +1341326.818550 +1341339.851785 +1341367.162303 +1341380.669218 +1341380.669218 +1341394.539318 +1341430.908574 +1341430.908574 +1341453.757129 +1341475.427073 +1341475.427073 +1341500.673294 +1341510.090209 +1341510.090209 +1341517.994034 +1341537.120657 +1341548.244649 +1341559.098459 +1341567.550958 +1341576.126595 +1341584.855669 +1341584.855669 +1341628.456639 +1341628.456639 +1341628.456639 +1341677.453672 +1341688.413635 +1341688.413635 +1341688.413635 +1341711.466653 +1341711.466653 +1341728.546443 +1341745.255803 +1341752.288590 +1341752.288590 +1341774.485782 +1341808.580342 +1341808.580342 +1341814.502200 +1341848.316850 +1341852.305066 +1341876.930216 +1341876.930216 +1341891.164195 +1341926.759046 +1341926.759046 +1341926.759046 +1341926.759046 +1341926.759046 +1341936.620635 +1341938.264998 +1341954.433970 +1341986.302285 +1341997.442403 +1342016.227568 +1342016.453143 +1342040.740336 +1342040.740336 +1342059.822314 +1342059.822314 +1342081.943313 +1342086.873888 +1342125.403886 +1342125.403886 +1342126.958794 +1342126.958794 +1342139.487996 +1342181.063255 +1342182.545815 +1342182.545815 +1342205.838195 +1342226.461362 +1342226.461362 +1342241.066805 +1342246.459347 +1342273.958081 +1342273.958081 +1342291.312806 +1342291.312806 +1342332.296949 +1342332.296949 +1342367.497635 +1342367.497635 +1342367.497635 +1342367.497635 +1342371.506898 +1342405.207899 +1342405.207899 +1342434.339948 +1342449.798607 +1342449.798607 +1342458.773976 +1342466.720569 +1342488.245269 +1342498.195117 +1342498.195117 +1342538.399480 +1342545.958357 +1342545.958357 +1342545.958357 +1342576.843912 +1342586.890528 +1342586.890528 +1342621.554987 +1342621.937931 +1342652.273393 +1342652.273393 +1342678.126023 +1342678.126023 +1342682.414272 +1342695.615936 +1342695.615936 +1342715.434891 +1342745.875127 +1342745.875127 +1342790.885023 +1342790.885023 +1342790.885023 +1342790.885023 +1342815.421385 +1342815.421385 +1342844.552350 +1342849.563789 +1342849.563789 +1342868.982286 +1342896.488119 +1342896.488119 +1342929.413983 +1342929.413983 +1342929.413983 +1342929.413983 +1342929.413983 +1342949.676489 +1342999.572042 +1342999.572042 +1343004.462324 +1343004.462324 +1343011.530205 +1343045.827850 +1343052.603364 +1343072.943421 +1343086.876414 +1343105.910944 +1343105.910944 +1343121.744237 +1343135.924156 +1343135.924156 +1343141.733117 +1343141.733117 +1343175.780456 +1343180.527310 +1343200.793203 +1343224.156010 +1343224.156010 +1343229.448967 +1343231.482124 +1343240.660328 +1343270.995414 +1343281.450023 +1343303.800241 +1343332.289288 +1343332.289288 +1343354.247512 +1343354.247512 +1343354.247512 +1343369.272530 +1343371.514336 +1343410.688385 +1343410.688385 +1343410.688385 +1343433.853926 +1343445.815587 +1343445.815587 +1343445.815587 +1343477.936986 +1343504.841769 +1343518.443489 +1343520.831769 +1343520.831769 +1343548.846038 +1343548.846038 +1343548.846038 +1343548.961215 +1343577.425832 +1343612.980980 +1343635.010473 +1343635.010473 +1343639.873738 +1343665.160124 +1343673.646310 +1343673.646310 +1343686.145934 +1343704.468222 +1343726.145334 +1343726.145334 +1343726.145334 +1343751.938657 +1343751.938657 +1343751.938657 +1343759.429383 +1343796.793345 +1343839.857865 +1343839.857865 +1343839.857865 +1343856.206647 +1343872.375510 +1343872.375510 +1343878.899234 +1343923.162487 +1343923.162487 +1343923.162487 +1343942.736898 +1343971.116994 +1343971.116994 +1343971.116994 +1343975.004409 +1343983.490566 +1343983.490566 +1343983.490566 +1344013.785319 +1344057.924359 +1344067.161192 +1344067.161192 +1344093.742772 +1344095.308890 +1344106.638789 +1344106.638789 +1344109.264909 +1344139.671977 +1344153.532850 +1344153.532850 +1344172.969568 +1344189.303810 +1344217.986216 +1344217.986216 +1344217.986216 +1344223.695813 +1344223.695813 +1344262.065107 +1344262.065107 +1344267.540342 +1344286.063428 +1344293.989825 +1344309.085318 +1344353.540924 +1344353.540924 +1344353.540924 +1344372.101922 +1344395.021426 +1344395.021426 +1344395.021426 +1344397.249400 +1344434.258714 +1344434.258714 +1344434.258714 +1344435.915403 +1344459.526833 +1344474.599082 +1344492.368026 +1344522.315286 +1344538.015949 +1344562.317929 +1344562.317929 +1344562.317929 +1344562.317929 +1344562.317929 +1344573.770940 +1344591.587091 +1344609.113264 +1344634.315958 +1344634.315958 +1344654.773156 +1344659.859231 +1344659.859231 +1344659.859231 +1344707.293796 +1344707.293796 +1344726.831319 +1344726.831319 +1344749.734786 +1344758.985416 +1344772.114242 +1344772.114242 +1344787.842703 +1344787.842703 +1344818.695082 +1344818.695082 +1344844.600535 +1344869.327827 +1344869.327827 +1344869.327827 +1344904.870611 +1344904.870611 +1344921.518092 +1344942.770849 +1344942.770849 +1344942.770849 +1344956.205484 +1344971.560307 +1344986.491239 +1344996.142438 +1345001.536240 +1345001.536240 +1345025.200642 +1345025.200642 +1345053.144018 +1345061.990542 +1345096.663074 +1345096.663074 +1345101.055866 +1345122.705082 +1345131.328055 +1345131.328055 +1345150.992108 +1345163.954746 +1345194.793288 +1345194.793288 +1345194.793288 +1345198.412772 +1345225.750496 +1345225.750496 +1345238.907952 +1345258.575100 +1345265.291320 +1345269.559903 +1345312.309813 +1345331.771526 +1345331.771526 +1345341.710168 +1345360.371668 +1345362.057476 +1345374.421124 +1345374.421124 +1345391.022046 +1345391.022046 +1345399.885911 +1345428.248203 +1345458.841891 +1345458.841891 +1345464.281032 +1345467.039465 +1345467.039465 +1345474.547468 +1345485.676332 +1345485.676332 +1345514.064985 +1345526.339999 +1345556.315474 +1345561.399912 +1345595.244608 +1345611.996427 +1345611.996427 +1345611.996427 +1345625.020190 +1345625.020190 +1345654.429162 +1345654.429162 +1345675.975561 +1345675.975561 +1345693.816096 +1345693.816096 +1345724.934153 +1345741.418906 +1345741.418906 +1345741.418906 +1345783.291893 +1345785.915085 +1345785.915085 +1345785.915085 +1345809.639910 +1345811.402387 +1345811.402387 +1345864.534355 +1345864.534355 +1345892.044540 +1345895.358339 +1345912.543848 +1345912.543848 +1345912.543848 +1345951.079893 +1345951.079893 +1345967.332525 +1345967.332525 +1345974.880888 +1345989.367442 +1345992.167848 +1346010.563566 +1346010.563566 +1346043.691262 +1346043.691262 +1346076.378980 +1346092.042803 +1346092.042803 +1346095.182081 +1346095.182081 +1346135.987549 +1346135.987549 +1346144.143612 +1346144.143612 +1346148.973045 +1346167.531871 +1346226.763897 +1346226.763897 +1346242.649941 +1346242.649941 +1346242.649941 +1346242.649941 +1346263.734847 +1346264.404516 +1346310.444525 +1346310.444525 +1346310.444525 +1346310.444525 +1346329.468778 +1346337.876704 +1346356.373528 +1346356.373528 +1346368.975264 +1346375.861797 +1346388.230396 +1346413.001669 +1346425.460789 +1346431.716104 +1346463.023778 +1346463.023778 +1346463.153143 +1346467.919561 +1346484.486480 +1346518.209756 +1346520.975479 +1346539.955125 +1346558.627000 +1346567.771503 +1346567.771503 +1346574.441153 +1346595.711155 +1346595.711155 +1346628.041210 +1346628.041210 +1346644.362101 +1346644.362101 +1346672.559277 +1346672.559277 +1346672.559277 +1346695.754644 +1346714.753369 +1346714.753369 +1346731.400021 +1346742.195229 +1346742.195229 +1346754.836476 +1346788.270226 +1346788.270226 +1346802.811413 +1346802.811413 +1346813.027314 +1346842.779662 +1346852.516054 +1346872.600812 +1346872.600812 +1346872.600812 +1346925.240458 +1346925.240458 +1346925.240458 +1346925.240458 +1346955.087088 +1346955.087088 +1346963.993767 +1346970.992520 +1346981.110263 +1347016.329158 +1347028.715638 +1347028.715638 +1347038.031757 +1347038.031757 +1347071.671993 +1347071.671993 +1347081.923007 +1347081.923007 +1347085.845516 +1347123.828417 +1347132.385925 +1347147.788902 +1347150.546183 +1347154.663896 +1347183.691955 +1347183.691955 +1347203.884810 +1347222.201426 +1347222.201426 +1347222.201426 +1347222.201426 +1347252.946980 +1347261.262209 +1347261.262209 +1347266.144854 +1347287.032725 +1347292.371084 +1347301.102262 +1347363.196995 +1347363.196995 +1347363.196995 +1347384.630555 +1347384.630555 +1347390.381625 +1347429.829697 +1347429.829697 +1347431.818000 +1347450.150972 +1347451.048499 +1347468.522222 +1347468.522222 +1347499.001319 +1347499.001319 +1347499.001319 +1347501.896634 +1347538.663807 +1347538.663807 +1347559.892481 +1347566.987052 +1347609.986699 +1347609.986699 +1347609.986699 +1347609.986699 +1347624.338329 +1347624.338329 +1347653.218512 +1347653.218512 +1347690.679132 +1347690.679132 +1347706.613877 +1347706.613877 +1347721.829008 +1347738.393268 +1347739.875606 +1347758.721331 +1347767.019093 +1347767.019093 +1347804.891985 +1347804.891985 +1347806.260418 +1347826.312377 +1347826.312377 +1347836.310879 +1347860.515735 +1347864.716155 +1347875.655909 +1347876.145951 +1347904.193319 +1347927.084547 +1347933.988196 +1347933.988196 +1347933.988196 +1347942.334521 +1347959.783109 +1348004.055221 +1348015.384384 +1348015.384384 +1348015.384384 +1348023.002943 +1348068.205184 +1348068.205184 +1348068.205184 +1348079.462624 +1348091.725503 +1348096.404867 +1348121.686536 +1348121.686536 +1348121.686536 +1348132.747732 +1348132.747732 +1348181.590558 +1348181.590558 +1348198.987978 +1348210.282589 +1348227.474499 +1348227.474499 +1348227.474499 +1348250.588602 +1348250.588602 +1348250.945733 +1348268.557107 +1348295.351681 +1348318.027729 +1348318.027729 +1348326.571455 +1348328.304326 +1348328.304326 +1348365.258801 +1348374.528607 +1348374.528607 +1348406.698999 +1348406.698999 +1348406.698999 +1348436.028405 +1348436.028405 +1348442.319635 +1348443.083629 +1348445.154372 +1348461.629258 +1348487.056127 +1348493.081823 +1348493.081823 +1348520.793035 +1348526.846065 +1348573.702164 +1348573.702164 +1348573.702164 +1348587.845966 +1348587.845966 +1348615.857264 +1348615.857264 +1348615.857264 +1348634.949747 +1348663.547744 +1348663.547744 +1348678.590014 +1348678.590014 +1348686.447130 +1348686.447130 +1348720.681258 +1348732.534483 +1348742.640368 +1348742.640368 +1348758.684497 +1348761.610331 +1348765.384248 +1348774.130736 +1348824.083540 +1348824.083540 +1348825.414396 +1348835.375298 +1348854.539488 +1348854.539488 +1348859.789039 +1348872.888990 +1348901.766838 +1348929.434424 +1348929.434424 +1348946.176049 +1348946.176049 +1348946.176049 +1348953.172921 +1348953.172921 +1348963.891695 +1348982.831869 +1349006.228821 +1349006.228821 +1349006.228821 +1349030.725199 +1349045.894963 +1349055.253344 +1349064.905404 +1349072.840897 +1349094.209569 +1349120.523822 +1349120.523822 +1349120.523822 +1349153.764605 +1349165.218144 +1349165.218144 +1349170.930423 +1349181.699622 +1349199.367276 +1349219.819736 +1349219.819736 +1349268.253637 +1349268.253637 +1349268.253637 +1349268.253637 +1349268.323362 +1349280.183237 +1349280.183237 +1349305.416054 +1349318.760631 +1349318.760631 +1349322.145967 +1349328.173353 +1349329.463514 +1349358.751074 +1349377.244344 +1349382.017082 +1349382.017082 +1349425.300725 +1349425.300725 +1349426.516861 +1349444.911779 +1349444.911779 +1349462.588975 +1349479.633929 +1349501.482192 +1349501.482192 +1349501.482192 +1349522.322346 +1349545.730972 +1349545.730972 +1349545.730972 +1349545.730972 +1349545.730972 +1349572.901392 +1349603.877650 +1349614.983324 +1349617.891592 +1349621.688214 +1349631.289420 +1349662.047693 +1349677.697147 +1349688.070671 +1349693.426373 +1349693.426373 +1349720.512729 +1349720.512729 +1349728.328215 +1349729.088544 +1349765.058077 +1349773.061752 +1349773.061752 +1349773.061752 +1349786.062802 +1349786.062802 +1349811.113636 +1349811.113636 +1349811.113636 +1349848.547228 +1349874.701746 +1349874.701746 +1349885.971990 +1349889.477039 +1349894.361533 +1349919.042717 +1349919.042717 +1349919.042717 +1349938.380997 +1349942.875554 +1349961.139980 +1350006.034146 +1350006.034146 +1350006.034146 +1350014.897926 +1350014.897926 +1350049.202613 +1350049.202613 +1350049.202613 +1350077.592248 +1350077.592248 +1350077.592248 +1350083.096722 +1350102.482274 +1350113.150708 +1350120.850717 +1350124.333669 +1350154.206071 +1350162.330491 +1350173.009667 +1350197.140704 +1350197.140704 +1350197.140704 +1350220.142438 +1350220.142438 +1350242.927039 +1350269.518963 +1350269.518963 +1350269.518963 +1350269.518963 +1350301.213114 +1350303.562638 +1350320.726128 +1350334.690012 +1350371.804416 +1350371.804416 +1350371.804416 +1350371.804416 +1350371.804416 +1350389.425045 +1350406.368491 +1350406.368491 +1350413.593792 +1350418.400522 +1350428.832698 +1350428.832698 +1350472.028917 +1350472.028917 +1350511.290613 +1350521.700262 +1350521.700262 +1350525.537523 +1350542.482360 +1350542.482360 +1350546.824123 +1350546.824123 +1350556.148450 +1350595.703295 +1350598.985008 +1350613.619823 +1350636.040489 +1350641.353933 +1350641.353933 +1350641.353933 +1350660.600282 +1350660.600282 +1350687.122872 +1350695.406547 +1350695.406547 +1350719.734974 +1350724.551970 +1350725.736980 +1350764.325706 +1350764.325706 +1350764.325706 +1350764.325706 +1350769.447625 +1350769.447625 +1350818.573734 +1350818.573734 +1350827.648966 +1350855.428859 +1350855.428859 +1350857.612935 +1350872.332971 +1350895.238044 +1350917.160135 +1350936.246997 +1350936.246997 +1350936.246997 +1350959.042751 +1350959.042751 +1350959.042751 +1350974.124942 +1350974.124942 +1350986.590961 +1351003.893055 +1351012.977192 +1351028.980905 +1351028.980905 +1351053.915449 +1351059.822496 +1351059.822496 +1351062.865010 +1351095.991504 +1351095.991504 +1351111.107703 +1351114.923728 +1351114.923728 +1351139.914926 +1351165.948815 +1351165.948815 +1351184.818173 +1351184.818173 +1351188.796399 +1351192.611104 +1351211.594742 +1351241.332818 +1351241.332818 +1351241.332818 +1351263.337293 +1351301.535934 +1351301.535934 +1351301.535934 +1351349.652855 +1351349.652855 +1351349.652855 +1351349.652855 +1351349.652855 +1351364.443188 +1351364.443188 +1351378.195054 +1351383.407046 +1351416.796100 +1351423.908357 +1351423.908357 +1351458.293160 +1351458.293160 +1351458.293160 +1351458.293160 +1351491.320128 +1351491.320128 +1351497.280924 +1351498.710932 +1351521.930714 +1351521.930714 +1351522.134075 +1351564.624740 +1351564.624740 +1351564.624740 +1351569.121989 +1351616.850628 +1351616.850628 +1351616.850628 +1351634.990924 +1351635.366063 +1351664.294576 +1351664.294576 +1351678.844027 +1351685.636721 +1351694.551201 +1351698.708271 +1351715.609614 +1351719.290360 +1351755.069522 +1351760.345928 +1351760.345928 +1351760.345928 +1351760.345928 +1351773.121673 +1351774.006656 +1351804.476585 +1351830.425527 +1351830.425527 +1351847.476126 +1351847.476126 +1351899.359208 +1351899.359208 +1351899.359208 +1351900.825614 +1351900.825614 +1351900.825614 +1351903.001054 +1351914.804357 +1351936.825138 +1351957.048781 +1351981.791514 +1351985.105584 +1351996.410364 +1351996.410364 +1352003.201881 +1352028.831228 +1352028.831228 +1352038.911366 +1352042.493591 +1352058.601888 +1352077.919554 +1352077.919554 +1352089.681853 +1352089.681853 +1352111.636713 +1352121.658268 +1352133.454200 +1352141.595433 +1352141.595433 +1352173.499086 +1352173.499086 +1352173.499086 +1352173.499086 +1352207.797173 +1352207.797173 +1352231.394992 +1352250.146695 +1352250.146695 +1352250.146695 +1352282.794076 +1352282.794076 +1352295.172159 +1352322.466655 +1352322.466655 +1352324.901698 +1352324.901698 +1352324.901698 +1352346.388907 +1352346.388907 +1352360.646161 +1352360.646161 +1352393.932391 +1352393.932391 +1352409.920191 +1352422.695992 +1352444.293072 +1352444.293072 +1352461.470440 +1352461.470440 +1352463.947176 +1352480.196497 +1352491.481061 +1352491.481061 +1352511.175255 +1352511.175255 +1352512.039635 +1352533.400195 +1352539.316868 +1352568.848479 +1352568.848479 +1352594.052190 +1352594.052190 +1352607.012825 +1352612.770945 +1352612.770945 +1352612.770945 +1352647.242248 +1352670.542358 +1352682.388919 +1352682.388919 +1352705.961131 +1352723.823977 +1352723.823977 +1352724.413142 +1352725.465839 +1352728.701584 +1352735.698515 +1352743.468658 +1352752.924829 +1352783.587526 +1352783.587526 +1352788.698174 +1352799.455682 +1352812.075277 +1352826.163175 +1352856.256791 +1352856.256791 +1352903.324316 +1352903.324316 +1352903.324316 +1352903.324316 +1352906.922053 +1352914.589207 +1352914.589207 +1352925.306084 +1352945.724425 +1352955.133154 +1352963.065374 +1352990.759804 +1352990.759804 +1352995.319177 +1352998.448822 +1353018.180495 +1353042.672903 +1353042.672903 +1353042.672903 +1353047.625320 +1353055.933244 +1353091.737786 +1353091.737786 +1353109.435036 +1353109.435036 +1353109.850054 +1353120.701597 +1353120.701597 +1353155.083724 +1353168.496856 +1353170.686634 +1353177.665387 +1353183.666964 +1353213.112739 +1353223.506134 +1353235.774506 +1353242.973260 +1353242.973260 +1353242.973260 +1353242.973260 +1353289.558304 +1353294.848143 +1353316.703439 +1353316.703439 +1353316.703439 +1353324.762581 +1353354.410716 +1353372.336978 +1353372.336978 +1353372.336978 +1353382.874910 +1353401.259875 +1353401.259875 +1353401.259875 +1353401.589731 +1353401.589731 +1353401.589731 +1353433.175809 +1353469.056224 +1353487.088563 +1353487.088563 +1353488.551060 +1353488.734495 +1353530.832646 +1353530.832646 +1353537.090230 +1353537.090230 +1353555.111999 +1353555.111999 +1353555.111999 +1353613.594451 +1353613.594451 +1353617.290648 +1353617.905865 +1353617.905865 +1353617.905865 +1353628.219211 +1353641.229366 +1353649.226101 +1353661.049920 +1353664.255317 +1353681.386326 +1353693.258642 +1353717.114573 +1353717.114573 +1353731.864691 +1353734.213131 +1353758.310163 +1353758.310163 +1353778.438501 +1353778.438501 +1353796.981836 +1353796.981836 +1353798.957663 +1353811.992229 +1353815.688629 +1353815.829232 +1353852.141781 +1353863.485323 +1353899.626896 +1353899.695277 +1353899.695277 +1353901.904062 +1353903.580935 +1353904.804325 +1353945.944478 +1353945.944478 +1353945.944478 +1353956.436096 +1353977.262051 +1353977.262051 +1354038.154001 +1354038.154001 +1354042.109170 +1354042.109170 +1354042.109170 +1354047.284239 +1354051.951527 +1354069.654700 +1354069.654700 +1354071.685124 +1354121.702136 +1354121.702136 +1354121.702136 +1354122.970548 +1354146.950671 +1354168.536018 +1354188.383630 +1354188.383630 +1354190.318005 +1354190.318005 +1354193.810457 +1354193.810457 +1354227.738402 +1354235.476665 +1354243.401568 +1354243.401568 +1354246.087598 +1354287.559957 +1354287.559957 +1354287.559957 +1354287.559957 +1354310.892001 +1354310.892001 +1354332.744262 +1354332.744262 +1354332.744262 +1354336.603150 +1354360.496565 +1354372.913458 +1354386.179872 +1354421.702422 +1354421.702422 +1354428.159939 +1354440.035394 +1354440.035394 +1354458.184225 +1354465.154845 +1354475.103919 +1354482.701086 +1354482.701086 +1354505.113255 +1354505.113255 +1354505.113255 +1354505.113255 +1354523.281187 +1354542.971463 +1354570.529280 +1354570.529280 +1354572.424904 +1354587.997042 +1354588.939236 +1354596.704333 +1354632.466888 +1354637.924062 +1354640.821883 +1354640.821883 +1354663.245628 +1354677.265940 +1354677.265940 +1354700.544043 +1354700.544043 +1354700.544043 +1354722.057845 +1354722.057845 +1354732.083841 +1354732.083841 +1354732.083841 +1354752.608074 +1354776.567204 +1354776.567204 +1354821.027283 +1354821.027283 +1354821.027283 +1354829.026891 +1354829.026891 +1354860.680576 +1354866.362467 +1354866.362467 +1354866.362467 +1354875.304690 +1354879.378682 +1354896.195284 +1354922.108092 +1354925.282035 +1354953.866169 +1354953.866169 +1354953.866169 +1354963.278343 +1354989.079613 +1354997.826751 +1354998.138534 +1355012.884119 +1355012.884119 +1355015.413470 +1355029.876637 +1355035.617564 +1355077.984602 +1355077.984602 +1355086.142739 +1355086.142739 +1355086.142739 +1355089.874350 +1355126.984759 +1355126.984759 +1355148.286627 +1355148.286627 +1355148.286627 +1355156.391740 +1355183.551692 +1355183.551692 +1355215.303267 +1355215.303267 +1355228.845525 +1355228.845525 +1355228.845525 +1355248.960338 +1355267.842994 +1355267.842994 +1355267.842994 +1355267.842994 +1355287.907488 +1355301.058943 +1355309.350817 +1355309.350817 +1355344.757043 +1355344.757043 +1355352.192223 +1355372.017173 +1355372.017173 +1355397.494850 +1355404.159357 +1355419.400542 +1355426.901161 +1355426.901161 +1355441.327926 +1355441.327926 +1355441.327926 +1355441.327926 +1355480.656505 +1355480.656505 +1355493.111690 +1355515.646317 +1355515.646317 +1355545.690721 +1355545.690721 +1355545.690721 +1355546.346105 +1355567.104530 +1355573.488734 +1355573.488734 +1355579.784727 +1355597.384219 +1355604.755157 +1355635.795920 +1355635.795920 +1355635.795920 +1355635.795920 +1355662.720397 +1355664.059895 +1355664.059895 +1355680.017603 +1355709.628328 +1355718.820325 +1355749.706574 +1355749.706574 +1355762.912922 +1355762.912922 +1355762.912922 +1355783.409536 +1355783.409536 +1355797.804092 +1355797.804092 +1355797.804092 +1355818.913203 +1355818.913203 +1355825.933828 +1355830.218117 +1355853.147723 +1355871.476402 +1355876.184684 +1355876.184684 +1355885.581125 +1355894.749450 +1355916.170813 +1355921.994954 +1355956.492917 +1355976.291195 +1355976.291195 +1355976.291195 +1355976.291195 +1355976.291195 +1355981.316381 +1356013.958220 +1356013.958220 +1356013.958220 +1356039.865701 +1356039.865701 +1356055.503685 +1356055.503685 +1356099.883506 +1356099.883506 +1356099.883506 +1356126.960591 +1356126.960591 +1356126.960591 +1356145.152828 +1356168.716630 +1356168.716630 +1356168.716630 +1356172.444793 +1356175.038045 +1356191.487391 +1356191.846100 +1356197.827486 +1356213.761525 +1356222.094732 +1356242.190348 +1356251.678245 +1356258.985585 +1356278.942709 +1356280.297578 +1356298.084680 +1356337.639591 +1356337.639591 +1356337.639591 +1356341.118898 +1356350.907039 +1356356.834203 +1356369.794837 +1356382.766137 +1356382.766137 +1356382.766137 +1356411.864925 +1356415.114665 +1356415.114665 +1356415.317269 +1356427.572293 +1356433.641470 +1356480.220436 +1356480.220436 +1356480.220436 +1356521.775460 +1356521.775460 +1356529.008788 +1356529.008788 +1356529.008788 +1356529.008788 +1356538.806716 +1356558.332220 +1356558.332220 +1356572.759993 +1356581.893078 +1356614.557570 +1356614.557570 +1356635.302635 +1356635.302635 +1356672.318396 +1356672.318396 +1356672.318396 +1356672.318396 +1356685.234607 +1356728.036438 +1356728.036438 +1356728.036438 +1356728.036438 +1356728.036438 +1356764.153193 +1356764.153193 +1356764.153193 +1356775.403471 +1356779.170323 +1356779.170323 +1356791.017688 +1356799.114993 +1356811.121383 +1356827.407406 +1356855.804664 +1356863.000983 +1356863.000983 +1356863.122776 +1356863.122776 +1356864.607398 +1356901.219102 +1356901.219102 +1356949.262027 +1356949.262027 +1356964.634121 +1356978.451099 +1356978.451099 +1356978.451099 +1356978.451099 +1356978.451099 +1356983.847105 +1356991.254184 +1357027.313023 +1357027.313023 +1357032.940248 +1357035.554402 +1357066.553361 +1357066.553361 +1357082.541835 +1357087.350034 +1357096.346543 +1357096.346543 +1357096.346543 +1357110.332116 +1357110.500956 +1357110.500956 +1357154.252163 +1357167.658665 +1357180.271847 +1357198.103897 +1357198.103897 +1357213.061881 +1357213.061881 +1357242.308711 +1357242.308711 +1357256.022872 +1357256.022872 +1357256.022872 +1357278.428882 +1357299.229022 +1357299.229022 +1357299.229022 +1357299.229022 +1357311.271776 +1357311.271776 +1357326.455882 +1357359.654871 +1357359.654871 +1357359.654871 +1357409.922926 +1357409.922926 +1357409.922926 +1357409.922926 +1357409.922926 +1357447.825082 +1357447.825082 +1357451.388141 +1357453.241944 +1357456.571071 +1357472.304162 +1357482.168920 +1357490.458621 +1357517.679626 +1357517.679626 +1357530.014787 +1357530.014787 +1357530.014787 +1357536.863419 +1357576.070726 +1357576.070726 +1357576.070726 +1357588.730008 +1357588.730008 +1357609.671024 +1357624.708561 +1357633.232920 +1357662.318329 +1357662.318329 +1357675.477754 +1357675.477754 +1357675.477754 +1357675.477754 +1357710.143299 +1357710.143299 +1357744.287019 +1357744.287019 +1357744.287019 +1357767.105356 +1357774.767167 +1357774.767167 +1357793.066553 +1357793.066553 +1357813.453231 +1357813.453231 +1357813.453231 +1357838.001432 +1357860.357630 +1357860.357630 +1357860.357630 +1357867.068555 +1357867.068555 +1357869.089348 +1357914.893069 +1357914.893069 +1357914.893069 +1357919.655484 +1357955.856376 +1357955.856376 +1357955.856376 +1357974.783369 +1357983.277697 +1357983.277697 +1357988.452207 +1358004.615045 +1358011.836331 +1358011.836331 +1358024.286216 +1358042.833543 +1358042.833543 +1358053.030320 +1358053.030320 +1358057.470559 +1358074.869896 +1358106.732538 +1358106.732538 +1358106.732538 +1358111.241760 +1358128.631259 +1358152.048037 +1358166.340194 +1358174.825055 +1358174.825055 +1358180.955498 +1358180.955498 +1358180.955498 +1358215.828457 +1358224.740772 +1358224.740772 +1358234.720205 +1358234.720205 +1358234.720205 +1358283.492569 +1358301.754707 +1358302.068989 +1358302.068989 +1358302.068989 +1358314.674170 +1358333.381686 +1358333.381686 +1358335.200058 +1358363.013588 +1358363.013588 +1358364.768712 +1358394.505074 +1358408.270381 +1358408.300750 +1358417.122470 +1358417.122470 +1358431.397072 +1358437.583372 +1358454.914843 +1358454.914843 +1358461.784730 +1358473.664284 +1358492.665527 +1358495.748907 +1358506.855591 +1358530.575273 +1358565.601003 +1358565.601003 +1358565.601003 +1358565.601003 +1358565.601003 +1358578.933199 +1358593.734351 +1358594.872018 +1358594.872018 +1358606.128522 +1358623.551007 +1358623.551007 +1358650.219255 +1358650.219255 +1358673.353268 +1358673.353268 +1358701.739148 +1358701.739148 +1358703.470645 +1358740.197668 +1358740.197668 +1358740.197668 +1358740.197668 +1358744.171828 +1358744.171828 +1358783.879402 +1358783.879402 +1358799.234704 +1358811.593652 +1358811.593652 +1358811.593652 +1358830.002947 +1358845.404859 +1358845.404859 +1358845.404859 +1358847.115150 +1358883.999631 +1358893.691242 +1358918.980169 +1358920.946208 +1358926.301294 +1358926.301294 +1358926.301294 +1358937.622066 +1358937.622066 +1358943.876436 +1358976.363632 +1358976.363632 +1358976.363632 +1358984.031603 +1359020.565156 +1359020.565156 +1359020.565156 +1359040.249190 +1359054.115605 +1359054.115605 +1359062.142961 +1359074.589647 +1359095.462840 +1359095.462840 +1359108.186078 +1359122.670049 +1359122.670049 +1359143.694115 +1359143.694115 +1359148.166153 +1359149.919047 +1359197.610283 +1359197.610283 +1359197.610283 +1359197.610283 +1359216.016371 +1359234.606960 +1359249.158757 +1359249.158757 +1359304.694004 +1359304.694004 +1359304.694004 +1359304.694004 +1359304.694004 +1359304.694004 +1359304.694004 +1359304.694004 +1359304.694004 +1359304.694004 +1359345.407847 +1359365.486602 +1359371.680978 +1359374.702323 +1359375.066120 +1359383.838810 +1359409.266307 +1359409.266307 +1359409.266307 +1359452.588033 +1359452.588033 +1359455.708455 +1359458.699566 +1359487.846223 +1359487.846223 +1359520.887947 +1359520.887947 +1359520.887947 +1359520.887947 +1359520.887947 +1359520.887947 +1359528.810689 +1359528.810689 +1359540.318844 +1359565.710916 +1359576.648778 +1359578.463019 +1359584.040615 +1359635.899868 +1359635.899868 +1359635.899868 +1359635.899868 +1359665.686700 +1359665.686700 +1359677.615394 +1359677.615394 +1359722.710066 +1359722.710066 +1359722.710066 +1359722.710066 +1359722.710066 +1359722.710066 +1359742.924933 +1359742.924933 +1359802.808261 +1359802.808261 +1359802.808261 +1359802.808261 +1359819.385419 +1359819.385419 +1359825.328060 +1359827.801515 +1359827.801515 +1359845.158419 +1359845.158419 +1359846.131993 +1359880.874872 +1359880.927024 +1359904.310706 +1359904.310706 +1359914.731243 +1359914.731243 +1359927.741894 +1359945.517103 +1359970.545236 +1359970.545236 +1359990.489291 +1359997.932350 +1359997.932350 +1359999.110900 +1359999.110900 +1360017.177639 +1360045.529834 +1360045.529834 +1360045.529834 +1360045.529834 +1360046.330297 +1360047.742343 +1360060.451913 +1360060.451913 +1360101.031275 +1360106.997227 +1360106.997227 +1360122.357980 +1360125.149931 +1360133.216474 +1360136.550844 +1360175.294473 +1360204.175849 +1360205.706973 +1360205.706973 +1360214.045869 +1360214.045869 +1360219.224201 +1360219.224201 +1360238.940314 +1360250.783790 +1360250.783790 +1360270.316003 +1360270.316003 +1360270.316003 +1360286.466212 +1360286.466212 +1360301.806934 +1360323.103326 +1360334.035418 +1360345.520378 +1360370.472732 +1360370.472732 +1360370.472732 +1360377.588574 +1360377.588574 +1360399.811123 +1360407.544891 +1360407.544891 +1360428.972569 +1360428.972569 +1360437.747338 +1360469.527036 +1360469.527036 +1360474.195568 +1360487.685210 +1360487.685210 +1360515.558372 +1360515.558372 +1360529.394522 +1360529.394522 +1360537.003887 +1360537.003887 +1360563.950573 +1360578.874997 +1360578.874997 +1360578.874997 +1360615.048958 +1360615.048958 +1360615.048958 +1360615.048958 +1360628.192192 +1360634.038445 +1360659.609642 +1360659.609642 +1360659.609642 +1360681.824852 +1360709.268374 +1360709.268374 +1360728.402219 +1360728.402219 +1360728.402219 +1360729.287426 +1360746.850035 +1360746.850035 +1360776.054663 +1360784.648502 +1360805.270161 +1360805.270161 +1360805.270161 +1360805.270161 +1360825.349942 +1360825.349942 +1360825.349942 +1360825.349942 +1360852.839308 +1360864.086450 +1360864.086450 +1360864.086450 +1360899.093539 +1360903.375050 +1360903.375050 +1360923.016218 +1360930.958859 +1360952.560908 +1360952.560908 +1360973.110104 +1360982.358264 +1360982.358264 +1360982.358264 +1360987.080992 +1361023.810052 +1361023.810052 +1361026.395327 +1361026.395327 +1361060.943976 +1361065.188214 +1361084.988632 +1361084.988632 +1361102.685654 +1361102.685654 +1361102.685654 +1361102.685654 +1361113.719851 +1361113.719851 +1361114.909200 +1361132.175983 +1361142.764223 +1361163.856884 +1361168.775254 +1361182.016324 +1361225.299658 +1361225.299658 +1361225.299658 +1361225.299658 +1361247.625458 +1361247.625458 +1361247.625458 +1361271.430163 +1361271.430163 +1361271.430163 +1361291.611301 +1361291.611301 +1361316.970639 +1361316.970639 +1361316.970639 +1361325.077370 +1361354.797453 +1361354.797453 +1361372.015030 +1361372.015030 +1361379.083313 +1361383.780885 +1361383.780885 +1361384.898861 +1361432.097030 +1361432.097030 +1361451.999942 +1361451.999942 +1361451.999942 +1361451.999942 +1361461.558583 +1361467.671546 +1361467.671546 +1361492.047797 +1361493.181270 +1361529.908854 +1361529.908854 +1361550.419913 +1361550.419913 +1361550.419913 +1361550.419913 +1361577.292385 +1361578.133414 +1361595.648655 +1361595.648655 +1361620.431454 +1361620.431454 +1361622.464331 +1361631.239196 +1361631.239196 +1361645.784015 +1361667.414165 +1361672.313298 +1361695.202810 +1361696.891054 +1361718.007331 +1361719.276849 +1361730.761762 +1361730.947591 +1361730.947591 +1361741.216279 +1361744.954460 +1361744.954460 +1361758.867358 +1361808.497235 +1361808.497235 +1361809.559299 +1361809.559299 +1361835.087734 +1361839.258053 +1361856.291866 +1361856.291866 +1361856.291866 +1361856.291866 +1361858.083878 +1361891.378156 +1361896.753072 +1361916.591925 +1361916.591925 +1361926.614354 +1361929.834842 +1361939.821142 +1361939.821142 +1361954.381789 +1361974.149444 +1361978.929007 +1362004.052964 +1362004.052964 +1362004.052964 +1362004.944308 +1362022.672595 +1362024.185551 +1362024.185551 +1362024.185551 +1362040.739212 +1362066.460523 +1362093.048726 +1362093.048726 +1362093.048726 +1362108.393559 +1362108.393559 +1362113.629001 +1362136.766881 +1362143.507708 +1362143.507708 +1362172.153470 +1362172.153470 +1362174.539855 +1362179.785322 +1362209.582469 +1362225.067932 +1362225.067932 +1362225.067932 +1362225.067932 +1362242.554825 +1362263.689844 +1362263.689844 +1362290.585398 +1362290.585398 +1362290.585398 +1362291.116687 +1362315.898776 +1362319.273266 +1362319.273266 +1362334.126162 +1362334.126162 +1362348.495849 +1362376.464067 +1362376.464067 +1362395.249643 +1362395.249643 +1362403.902490 +1362407.348756 +1362457.090466 +1362457.090466 +1362457.090466 +1362457.090466 +1362470.497348 +1362470.497348 +1362482.487275 +1362491.171519 +1362491.171519 +1362499.268332 +1362527.435934 +1362527.435934 +1362529.452883 +1362529.708617 +1362545.396794 +1362548.204255 +1362562.244842 +1362568.657384 +1362600.470291 +1362600.470291 +1362600.470291 +1362614.782210 +1362629.829827 +1362650.522677 +1362650.522677 +1362657.209113 +1362663.324030 +1362664.666712 +1362664.666712 +1362675.106153 +1362678.223551 +1362697.849714 +1362748.627995 +1362748.627995 +1362748.627995 +1362750.070753 +1362761.632583 +1362778.524595 +1362778.524595 +1362778.524595 +1362778.524595 +1362785.386999 +1362823.104550 +1362823.104550 +1362834.508825 +1362834.508825 +1362844.019259 +1362844.019259 +1362881.084273 +1362881.084273 +1362881.084273 +1362894.656774 +1362894.656774 +1362916.597072 +1362916.597072 +1362923.061725 +1362933.187697 +1362943.516084 +1362958.588088 +1362958.588088 +1362964.744943 +1362983.309318 +1362997.606994 +1363011.756995 +1363012.238397 +1363024.026723 +1363024.026723 +1363034.058720 +1363034.058720 +1363043.639036 +1363061.042822 +1363074.779901 +1363074.779901 +1363074.779901 +1363088.022055 +1363106.086723 +1363106.086723 +1363148.580586 +1363148.580586 +1363148.580586 +1363158.958055 +1363179.916149 +1363179.916149 +1363190.064848 +1363190.064848 +1363193.043344 +1363197.279658 +1363227.875227 +1363227.875227 +1363233.567787 +1363251.092433 +1363256.576019 +1363270.512814 +1363270.512814 +1363272.750088 +1363275.028574 +1363289.403226 +1363302.751229 +1363302.751229 +1363315.738268 +1363339.672618 +1363339.672618 +1363341.943492 +1363380.943859 +1363380.943859 +1363380.943859 +1363395.271028 +1363395.271028 +1363405.799746 +1363411.238705 +1363411.238705 +1363441.728327 +1363455.462102 +1363457.130305 +1363467.017802 +1363467.017802 +1363492.709468 +1363510.273654 +1363510.273654 +1363510.273654 +1363532.376102 +1363532.376102 +1363534.668916 +1363539.863125 +1363562.031276 +1363562.031276 +1363570.921654 +1363573.921711 +1363594.495344 +1363594.495344 +1363599.063928 +1363608.324561 +1363608.324561 +1363646.211954 +1363646.211954 +1363666.186859 +1363666.186859 +1363682.950886 +1363682.950886 +1363682.950886 +1363690.908576 +1363729.504388 +1363729.504388 +1363729.504388 +1363736.063689 +1363736.063689 +1363754.897529 +1363767.416359 +1363776.627362 +1363783.496281 +1363783.496281 +1363792.571161 +1363792.571161 +1363820.879653 +1363820.879653 +1363825.904650 +1363825.904650 +1363827.435397 +1363865.865717 +1363865.865717 +1363876.543770 +1363879.615804 +1363888.278538 +1363903.734857 +1363903.734857 +1363936.979138 +1363940.398330 +1363940.398330 +1363940.398330 +1363943.201924 +1363971.477704 +1363975.908522 +1363979.311526 +1364005.948042 +1364005.948042 +1364032.467980 +1364032.467980 +1364037.193766 +1364037.193766 +1364052.697829 +1364052.697829 +1364052.697829 +1364073.499460 +1364081.171802 +1364099.757377 +1364099.757377 +1364099.757377 +1364143.304805 +1364143.304805 +1364162.384388 +1364162.384388 +1364162.384388 +1364167.645831 +1364175.182914 +1364175.182914 +1364177.445992 +1364178.747656 +1364197.252132 +1364216.430256 +1364242.692809 +1364243.037348 +1364243.037348 +1364269.571563 +1364269.708085 +1364269.708085 +1364280.575026 +1364285.608584 +1364303.916543 +1364303.916543 +1364306.204025 +1364327.074318 +1364327.074318 +1364339.918186 +1364369.389967 +1364369.389967 +1364369.389967 +1364395.736763 +1364395.736763 +1364398.907734 +1364398.907734 +1364398.907734 +1364439.606247 +1364439.606247 +1364439.606247 +1364470.000928 +1364470.000928 +1364470.000928 +1364487.481231 +1364487.481231 +1364509.867032 +1364509.867032 +1364509.867032 +1364532.417080 +1364533.391124 +1364555.758562 +1364555.758562 +1364555.758562 +1364569.066972 +1364576.836022 +1364580.171555 +1364580.171555 +1364598.101347 +1364605.798341 +1364629.404496 +1364629.404496 +1364629.404496 +1364652.775629 +1364669.537350 +1364669.537350 +1364674.997339 +1364675.281216 +1364687.256307 +1364698.473457 +1364717.690402 +1364717.690402 +1364717.690402 +1364733.057520 +1364749.234119 +1364749.234119 +1364784.029689 +1364784.029689 +1364784.029689 +1364797.323072 +1364805.376898 +1364805.376898 +1364805.376898 +1364819.497693 +1364850.889432 +1364850.889432 +1364850.889432 +1364850.889432 +1364876.003404 +1364886.820226 +1364886.820226 +1364886.820226 +1364905.713931 +1364919.176417 +1364919.176417 +1364919.176417 +1364923.848548 +1364923.848548 +1364935.374085 +1364948.968787 +1364965.101022 +1364965.101022 +1364978.589838 +1364998.506549 +1365023.622653 +1365023.622653 +1365023.622653 +1365028.012523 +1365028.207401 +1365046.050377 +1365046.050377 +1365056.628309 +1365067.378050 +1365067.378050 +1365081.822077 +1365099.069422 +1365106.121053 +1365106.121053 +1365113.903268 +1365141.113270 +1365141.113270 +1365173.787551 +1365173.787551 +1365176.852574 +1365176.852574 +1365176.852574 +1365188.047291 +1365188.047291 +1365224.393793 +1365224.393793 +1365224.393793 +1365231.982417 +1365257.599297 +1365257.599297 +1365279.906078 +1365279.906078 +1365279.906078 +1365281.482401 +1365305.455900 +1365305.455900 +1365305.455900 +1365334.750330 +1365345.514951 +1365345.514951 +1365345.514951 +1365353.425700 +1365353.425700 +1365384.083546 +1365398.111406 +1365398.111406 +1365413.394412 +1365422.265312 +1365429.591990 +1365429.591990 +1365446.748922 +1365446.748922 +1365460.211973 +1365460.211973 +1365466.175761 +1365491.638875 +1365491.638875 +1365496.181853 +1365521.834048 +1365521.834048 +1365521.834048 +1365521.834048 +1365534.499549 +1365534.499549 +1365573.313395 +1365573.313395 +1365573.313395 +1365577.531403 +1365583.489616 +1365597.480396 +1365597.480396 +1365597.480396 +1365638.372272 +1365638.372272 +1365638.372272 +1365662.883240 +1365665.640898 +1365665.640898 +1365675.158029 +1365675.158029 +1365689.492651 +1365689.492651 +1365700.541070 +1365718.801077 +1365719.929226 +1365747.639309 +1365770.073178 +1365770.073178 +1365770.073178 +1365770.073178 +1365771.792968 +1365779.672700 +1365795.533171 +1365795.533171 +1365800.603479 +1365816.359559 +1365834.942158 +1365834.942158 +1365841.288722 +1365844.433149 +1365873.833486 +1365873.833486 +1365873.833486 +1365900.269924 +1365900.269924 +1365919.032579 +1365919.032579 +1365919.032579 +1365942.685534 +1365942.685534 +1365942.685534 +1365943.807969 +1365979.061709 +1365979.061709 +1365981.825587 +1365981.825587 +1365981.825587 +1366000.852859 +1366007.181856 +1366018.391612 +1366018.391612 +1366018.391612 +1366018.391612 +1366024.122495 +1366069.695935 +1366070.356092 +1366093.067052 +1366093.067052 +1366093.067052 +1366102.282441 +1366122.341814 +1366135.653474 +1366135.653474 +1366135.653474 +1366135.653474 +1366145.359812 +1366148.721863 +1366148.721863 +1366161.595267 +1366164.204738 +1366206.829025 +1366206.829025 +1366206.829025 +1366220.435756 +1366226.159425 +1366226.159425 +1366238.106387 +1366250.312413 +1366252.111046 +1366252.111046 +1366268.384245 +1366281.639766 +1366292.813715 +1366292.813715 +1366305.843475 +1366305.843475 +1366328.643145 +1366333.259214 +1366333.259214 +1366336.956664 +1366372.523885 +1366372.523885 +1366393.867064 +1366393.867064 +1366393.867064 +1366393.867064 +1366393.867064 +1366408.802091 +1366421.422742 +1366421.422742 +1366448.470948 +1366448.470948 +1366454.067042 +1366454.067042 +1366457.820096 +1366457.820096 +1366457.820096 +1366471.876660 +1366471.876660 +1366507.682494 +1366518.936273 +1366518.936273 +1366531.183137 +1366548.682482 +1366548.682482 +1366573.631501 +1366573.631501 +1366573.631501 +1366581.700820 +1366581.700820 +1366598.134623 +1366598.134623 +1366606.240039 +1366632.011684 +1366632.011684 +1366632.011684 +1366632.011684 +1366642.498761 +1366676.916289 +1366676.916289 +1366676.916289 +1366697.335766 +1366705.629760 +1366707.975964 +1366707.975964 +1366725.957112 +1366725.957112 +1366735.238130 +1366746.930358 +1366749.349444 +1366770.129691 +1366770.129691 +1366770.129691 +1366789.910195 +1366789.910195 +1366825.934698 +1366825.934698 +1366825.934698 +1366838.713810 +1366838.713810 +1366845.624296 +1366845.624296 +1366857.841798 +1366861.413276 +1366872.097550 +1366883.132247 +1366883.132247 +1366894.943110 +1366898.814676 +1366898.814676 +1366901.341493 +1366913.098547 +1366922.066250 +1366946.272676 +1366954.572105 +1366962.454854 +1366962.890772 +1367000.531790 +1367000.531790 +1367000.531790 +1367007.467578 +1367007.871110 +1367014.021935 +1367014.021935 +1367046.138107 +1367054.033410 +1367054.033410 +1367064.991241 +1367082.673203 +1367082.673203 +1367086.585243 +1367086.585243 +1367086.585243 +1367086.585243 +1367103.707549 +1367115.619629 +1367157.233031 +1367157.233031 +1367157.233031 +1367157.233031 +1367184.403031 +1367184.403031 +1367192.358082 +1367192.358082 +1367204.126665 +1367204.126665 +1367220.923705 +1367220.923705 +1367220.923705 +1367228.062816 +1367252.607562 +1367252.607562 +1367271.409609 +1367271.409609 +1367275.374807 +1367290.179150 +1367295.260497 +1367295.260497 +1367295.959167 +1367304.852017 +1367346.199122 +1367346.199122 +1367349.829898 +1367360.241647 +1367362.368174 +1367362.368174 +1367365.645025 +1367368.924142 +1367403.266483 +1367403.266483 +1367403.266483 +1367403.266483 +1367415.369227 +1367423.498535 +1367423.919365 +1367423.919365 +1367455.960899 +1367458.409918 +1367470.995482 +1367470.995482 +1367506.664058 +1367506.664058 +1367518.365155 +1367518.365155 +1367518.365155 +1367518.365155 +1367521.206766 +1367529.951635 +1367563.247339 +1367563.247339 +1367601.848394 +1367601.848394 +1367601.848394 +1367601.848394 +1367601.848394 +1367613.622118 +1367613.622118 +1367614.633168 +1367622.077176 +1367622.077176 +1367642.339878 +1367655.648022 +1367667.835943 +1367667.835943 +1367695.027727 +1367695.027727 +1367695.027727 +1367702.066534 +1367709.866086 +1367716.870914 +1367718.586678 +1367718.586678 +1367736.909359 +1367742.050478 +1367761.623418 +1367764.386640 +1367782.534063 +1367782.534063 +1367782.534063 +1367791.266097 +1367819.811788 +1367830.090218 +1367830.090218 +1367848.578215 +1367848.578215 +1367848.578215 +1367874.524564 +1367874.524564 +1367874.524564 +1367874.524564 +1367897.004090 +1367897.004090 +1367902.713410 +1367902.713410 +1367902.713410 +1367912.803361 +1367933.985281 +1367949.439461 +1367955.475291 +1367975.600025 +1367975.600025 +1367975.600025 +1367984.503689 +1368011.020938 +1368011.020938 +1368015.246660 +1368024.605843 +1368024.605843 +1368040.237684 +1368040.237684 +1368040.237684 +1368043.447508 +1368069.333899 +1368069.333899 +1368069.333899 +1368072.359040 +1368110.729605 +1368110.729605 +1368131.116952 +1368131.116952 +1368131.116952 +1368131.116952 +1368144.759865 +1368144.759865 +1368158.021814 +1368158.021814 +1368174.732210 +1368188.625686 +1368188.625686 +1368188.625686 +1368208.382414 +1368220.999893 +1368220.999893 +1368229.624702 +1368236.616552 +1368256.442479 +1368256.442479 +1368257.535809 +1368266.035148 +1368279.156993 +1368283.839263 +1368297.777092 +1368297.777092 +1368307.247469 +1368317.179175 +1368317.179175 +1368341.199888 +1368341.199888 +1368342.184932 +1368342.184932 +1368383.288747 +1368383.288747 +1368383.288747 +1368383.288747 +1368383.288747 +1368403.055274 +1368447.135230 +1368447.135230 +1368447.135230 +1368447.135230 +1368447.135230 +1368472.689924 +1368472.689924 +1368472.689924 +1368482.684662 +1368489.157192 +1368492.384638 +1368492.384638 +1368515.335056 +1368515.335056 +1368515.335056 +1368524.529427 +1368539.751116 +1368547.669091 +1368547.669091 +1368547.669091 +1368560.102077 +1368560.729573 +1368590.536471 +1368591.800132 +1368597.222114 +1368601.688545 +1368612.831971 +1368623.183529 +1368625.692191 +1368633.062788 +1368660.759177 +1368661.323972 +1368665.953541 +1368669.666625 +1368669.666625 +1368680.366559 +1368695.524919 +1368695.524919 +1368702.033541 +1368702.033541 +1368738.360091 +1368752.018950 +1368752.018950 +1368752.018950 +1368758.490643 +1368778.535283 +1368778.535283 +1368778.647052 +1368799.909675 +1368807.477297 +1368807.477297 +1368812.356155 +1368843.545350 +1368843.545350 +1368843.545350 +1368843.545350 +1368852.224065 +1368852.224065 +1368852.224065 +1368863.586799 +1368863.586799 +1368896.649860 +1368896.649860 +1368909.672414 +1368922.833561 +1368922.833561 +1368931.067181 +1368935.319240 +1368944.111710 +1368967.594861 +1368967.594861 +1368976.378094 +1368980.589034 +1368986.339803 +1368990.760554 +1368996.062824 +1369007.476039 +1369015.196265 +1369046.039603 +1369046.039603 +1369046.039603 +1369053.069659 +1369063.995152 +1369063.995152 +1369067.664856 +1369076.251867 +1369093.676391 +1369103.208065 +1369103.208065 +1369110.335089 +1369122.830087 +1369131.009801 +1369131.009801 +1369143.880762 +1369149.355693 +1369170.377725 +1369170.377725 +1369188.950569 +1369188.950569 +1369193.600819 +1369193.600819 +1369201.810208 +1369210.781600 +1369227.121933 +1369244.034815 +1369258.404997 +1369258.404997 +1369258.404997 +1369258.404997 +1369258.404997 +1369293.610643 +1369293.610643 +1369304.735961 +1369304.735961 +1369321.633124 +1369321.633124 +1369321.633124 +1369338.810902 +1369338.810902 +1369362.253452 +1369363.708550 +1369372.073901 +1369397.529134 +1369397.529134 +1369397.529134 +1369397.529134 +1369412.749119 +1369414.761964 +1369414.761964 +1369449.578466 +1369452.013216 +1369454.473120 +1369454.473120 +1369465.466141 +1369465.466141 +1369465.466141 +1369465.466141 +1369476.542173 +1369488.640390 +1369508.970923 +1369508.970923 +1369517.851007 +1369520.558144 +1369539.200117 +1369542.868744 +1369546.776833 +1369546.776833 +1369559.071103 +1369566.548554 +1369583.289302 +1369594.144814 +1369603.191962 +1369603.191962 +1369612.732204 +1369639.182489 +1369651.866353 +1369671.271065 +1369671.271065 +1369671.271065 +1369671.271065 +1369677.849888 +1369701.202013 +1369701.202013 +1369701.202013 +1369701.202013 +1369701.202013 +1369701.202013 +1369706.422589 +1369706.422589 +1369706.560534 +1369727.470119 +1369751.216948 +1369771.827945 +1369771.827945 +1369781.156199 +1369781.156199 +1369784.916240 +1369791.797889 +1369831.122034 +1369831.122034 +1369831.122034 +1369855.419524 +1369862.888999 +1369862.888999 +1369870.729107 +1369875.191431 +1369875.191431 +1369888.357245 +1369888.357245 +1369888.357245 +1369905.188632 +1369922.541788 +1369922.541788 +1369922.541788 +1369928.035231 +1369928.035231 +1369944.435125 +1369950.873060 +1369962.146994 +1369973.337714 +1369973.337714 +1369983.430255 +1370000.593165 +1370000.593165 +1370019.897039 +1370019.897039 +1370019.897039 +1370044.448344 +1370046.849862 +1370046.849862 +1370056.464775 +1370056.464775 +1370104.952877 +1370104.952877 +1370118.654838 +1370118.654838 +1370121.261323 +1370121.261323 +1370121.261323 +1370126.730041 +1370149.433781 +1370157.723075 +1370157.723075 +1370157.723075 +1370157.723075 +1370157.723075 +1370194.571663 +1370194.571663 +1370220.104392 +1370220.104392 +1370220.104392 +1370224.222945 +1370224.222945 +1370250.460205 +1370251.081459 +1370251.813109 +1370264.332896 +1370273.562653 +1370288.145388 +1370288.145388 +1370291.859670 +1370300.938332 +1370314.107666 +1370314.107666 +1370319.922585 +1370324.522378 +1370352.145496 +1370352.145496 +1370365.952684 +1370365.952684 +1370375.061323 +1370375.061323 +1370382.905909 +1370382.905909 +1370386.925962 +1370406.806153 +1370417.473358 +1370436.725567 +1370436.725567 +1370436.725567 +1370484.422563 +1370484.422563 +1370484.422563 +1370484.422563 +1370484.422563 +1370484.422563 +1370489.161510 +1370504.817496 +1370504.817496 +1370505.270535 +1370534.182456 +1370534.182456 +1370534.182456 +1370548.930037 +1370548.930037 +1370573.387028 +1370579.315281 +1370579.315281 +1370579.315281 +1370600.728725 +1370600.728725 +1370617.888097 +1370622.453009 +1370622.453009 +1370633.739092 +1370640.105619 +1370660.470654 +1370660.470654 +1370670.983739 +1370689.420285 +1370694.714826 +1370694.714826 +1370698.027313 +1370698.027313 +1370727.303313 +1370727.303313 +1370737.418980 +1370737.418980 +1370749.964203 +1370749.964203 +1370761.175437 +1370761.175437 +1370772.000760 +1370787.762181 +1370787.762181 +1370799.281276 +1370835.884606 +1370835.884606 +1370835.884606 +1370835.884606 +1370859.838208 +1370859.838208 +1370859.838208 +1370864.065684 +1370868.971410 +1370868.971410 +1370923.860093 +1370923.860093 +1370923.860093 +1370923.860093 +1370923.860093 +1370928.678766 +1370930.559138 +1370933.073617 +1370940.975040 +1370940.975040 +1370961.418230 +1370974.543565 +1370974.543565 +1371011.070573 +1371011.070573 +1371011.070573 +1371011.070573 +1371011.070573 +1371016.034697 +1371016.034697 +1371019.632641 +1371019.632641 +1371040.392016 +1371063.508624 +1371063.508624 +1371064.836099 +1371077.110788 +1371088.733643 +1371102.715285 +1371102.715285 +1371102.715285 +1371102.715285 +1371137.399517 +1371137.399517 +1371150.742993 +1371150.742993 +1371168.947861 +1371168.947861 +1371183.689338 +1371183.689338 +1371183.689338 +1371189.315019 +1371238.200200 +1371238.200200 +1371238.200200 +1371238.200200 +1371260.253955 +1371260.253955 +1371260.253955 +1371284.079598 +1371284.079598 +1371284.079598 +1371300.401227 +1371310.353257 +1371310.353257 +1371310.353257 +1371311.172807 +1371325.416812 +1371325.416812 +1371325.416812 +1371338.427123 +1371338.427123 +1371362.304245 +1371362.304245 +1371362.304245 +1371362.304245 +1371397.350048 +1371397.350048 +1371397.350048 +1371397.350048 +1371407.806792 +1371424.653426 +1371432.222332 +1371447.923460 +1371447.923460 +1371449.458282 +1371449.458282 +1371468.854225 +1371468.854225 +1371468.854225 +1371506.408786 +1371506.408786 +1371511.889242 +1371514.198940 +1371514.198940 +1371532.683578 +1371532.683578 +1371532.958254 +1371539.643134 +1371540.301537 +1371573.519594 +1371573.519594 +1371608.974450 +1371608.974450 +1371608.974450 +1371624.744041 +1371624.744041 +1371624.744041 +1371633.029337 +1371636.752268 +1371649.659093 +1371649.659093 +1371681.969697 +1371681.969697 +1371694.756913 +1371694.756913 +1371694.756913 +1371697.935538 +1371710.764389 +1371734.503855 +1371743.748928 +1371743.748928 +1371743.748928 +1371743.748928 +1371743.748928 +1371743.748928 +1371758.823323 +1371792.298854 +1371792.298854 +1371792.298854 +1371792.553610 +1371818.682528 +1371818.682528 +1371819.062521 +1371819.062521 +1371843.904337 +1371857.456528 +1371857.456528 +1371857.456528 +1371857.456528 +1371857.456528 +1371874.468775 +1371874.468775 +1371876.671804 +1371905.506972 +1371929.712175 +1371939.442659 +1371939.442659 +1371939.442659 +1371939.442659 +1371947.503539 +1371950.318266 +1371950.318266 +1371953.018721 +1371979.882457 +1371979.882457 +1371979.882457 +1371982.290891 +1371988.827983 +1372029.482387 +1372029.482387 +1372029.482387 +1372038.246041 +1372066.751216 +1372066.751216 +1372066.751216 +1372073.648314 +1372081.808501 +1372084.999273 +1372097.361023 +1372097.361023 +1372116.890740 +1372118.550958 +1372122.554350 +1372150.459563 +1372150.459563 +1372150.459563 +1372165.439883 +1372165.439883 +1372188.926789 +1372188.926789 +1372188.926789 +1372188.926789 +1372188.926789 +1372197.441240 +1372202.542520 +1372220.902694 +1372220.902694 +1372234.309914 +1372248.272611 +1372268.753122 +1372269.688691 +1372269.688691 +1372269.688691 +1372293.094485 +1372293.094485 +1372293.094485 +1372293.094485 +1372321.628645 +1372321.628645 +1372332.780220 +1372332.780220 +1372344.120987 +1372344.120987 +1372360.277244 +1372360.277244 +1372377.856352 +1372377.856352 +1372396.631134 +1372396.631134 +1372398.845145 +1372398.845145 +1372403.320109 +1372429.493068 +1372429.493068 +1372432.138825 +1372435.383774 +1372452.560158 +1372452.560158 +1372471.796510 +1372471.796510 +1372471.796510 +1372492.507190 +1372507.780194 +1372507.780194 +1372507.780194 +1372526.571533 +1372526.571533 +1372538.271482 +1372538.271482 +1372541.356465 +1372543.831469 +1372600.970757 +1372600.970757 +1372600.970757 +1372600.970757 +1372600.970757 +1372616.900966 +1372616.900966 +1372629.199282 +1372629.199282 +1372629.199282 +1372629.239591 +1372652.712330 +1372652.712330 +1372664.409001 +1372682.125149 +1372682.125149 +1372682.125149 +1372694.510798 +1372696.513793 +1372696.513793 +1372696.513793 +1372696.513793 +1372720.883827 +1372753.529318 +1372753.529318 +1372753.529318 +1372753.529318 +1372764.570970 +1372764.570970 +1372764.570970 +1372782.251584 +1372800.443502 +1372837.907985 +1372837.907985 +1372837.907985 +1372837.907985 +1372837.907985 +1372860.818161 +1372860.818161 +1372860.818161 +1372860.818161 +1372865.793698 +1372874.177352 +1372883.842338 +1372883.842338 +1372883.842338 +1372900.392881 +1372905.379337 +1372905.379337 +1372935.207921 +1372947.813328 +1372953.035078 +1372953.035078 +1372953.035078 +1372982.678083 +1372982.678083 +1372984.334730 +1372985.542975 +1373012.968382 +1373012.968382 +1373030.612216 +1373030.612216 +1373030.612216 +1373032.794320 +1373034.666841 +1373053.500581 +1373053.500581 +1373073.674279 +1373073.674279 +1373078.150818 +1373078.150818 +1373078.150818 +1373093.448475 +1373111.303080 +1373112.507659 +1373130.023967 +1373130.023967 +1373130.023967 +1373130.023967 +1373162.200294 +1373162.200294 +1373162.200294 +1373168.322013 +1373169.038450 +1373181.544748 +1373212.532484 +1373229.546686 +1373240.077640 +1373240.077640 +1373240.077640 +1373240.077640 +1373241.301260 +1373241.301260 +1373241.301260 +1373260.953577 +1373260.953577 +1373275.369271 +1373275.369271 +1373301.812160 +1373316.577820 +1373330.124480 +1373330.124480 +1373330.124480 +1373336.787918 +1373336.787918 +1373342.627041 +1373352.996753 +1373361.426474 +1373391.341775 +1373391.341775 +1373391.341775 +1373391.341775 +1373391.341775 +1373417.582222 +1373417.582222 +1373420.395585 +1373420.395585 +1373447.056753 +1373457.015616 +1373470.529820 +1373470.529820 +1373470.529820 +1373470.529820 +1373485.765409 +1373485.765409 +1373485.765409 +1373501.947819 +1373501.947819 +1373518.850892 +1373522.596633 +1373522.596633 +1373534.976749 +1373536.786719 +1373547.232987 +1373559.389216 +1373564.014700 +1373576.397890 +1373582.379925 +1373610.590652 +1373610.590652 +1373610.590652 +1373610.590652 +1373618.327185 +1373632.453095 +1373653.201449 +1373653.201449 +1373653.201449 +1373653.201449 +1373653.201449 +1373675.802429 +1373677.739010 +1373686.055500 +1373691.657461 +1373697.107676 +1373697.107676 +1373702.005664 +1373702.005664 +1373708.123572 +1373721.840878 +1373721.840878 +1373731.917339 +1373753.318611 +1373780.315824 +1373798.392225 +1373798.392225 +1373798.392225 +1373798.404623 +1373802.069527 +1373802.069527 +1373803.037599 +1373820.622498 +1373820.622498 +1373834.948637 +1373860.607155 +1373860.607155 +1373860.607155 +1373870.238279 +1373870.238279 +1373884.417508 +1373899.730586 +1373900.610226 +1373900.610226 +1373930.000035 +1373935.519742 +1373938.778053 +1373947.455057 +1373947.455057 +1373947.656070 +1373947.656070 +1373965.339868 +1373967.477073 +1373967.477073 +1373983.493256 +1373994.558362 +1373994.558362 +1373996.652240 +1374023.260183 +1374023.260183 +1374025.317327 +1374028.289644 +1374047.071084 +1374072.331693 +1374072.331693 +1374072.331693 +1374077.288498 +1374077.288498 +1374084.585552 +1374092.725311 +1374099.836782 +1374105.988420 +1374116.139524 +1374134.072768 +1374138.625783 +1374138.625783 +1374166.721369 +1374166.721369 +1374166.721369 +1374166.721369 +1374174.733160 +1374174.733160 +1374201.292273 +1374202.037302 +1374206.755090 +1374206.755090 +1374209.318746 +1374223.803524 +1374241.785692 +1374250.835741 +1374255.261567 +1374257.423295 +1374264.064357 +1374266.304281 +1374285.420511 +1374285.420511 +1374285.420511 +1374285.420511 +1374313.543948 +1374313.543948 +1374315.972511 +1374315.972511 +1374321.670730 +1374344.662401 +1374351.703778 +1374351.703778 +1374351.703778 +1374379.291997 +1374379.291997 +1374389.112849 +1374390.711368 +1374409.006802 +1374409.006802 +1374420.286520 +1374442.648124 +1374442.648124 +1374444.474355 +1374444.474355 +1374479.127513 +1374479.127513 +1374479.127513 +1374479.127513 +1374488.884631 +1374511.536967 +1374511.536967 +1374511.536967 +1374511.536967 +1374520.672638 +1374545.344278 +1374545.344278 +1374545.344278 +1374545.344278 +1374563.985090 +1374563.985090 +1374563.985090 +1374565.392590 +1374585.365819 +1374585.365819 +1374590.565765 +1374590.565765 +1374604.918166 +1374638.895718 +1374638.895718 +1374654.489332 +1374654.489332 +1374659.842527 +1374659.842527 +1374659.842527 +1374665.217021 +1374673.205466 +1374675.023984 +1374709.676583 +1374709.676583 +1374735.022184 +1374735.022184 +1374735.022184 +1374735.022184 +1374756.325993 +1374756.325993 +1374756.325993 +1374756.325993 +1374756.325993 +1374765.502649 +1374765.502649 +1374788.209889 +1374788.209889 +1374792.852203 +1374801.853332 +1374844.492300 +1374844.492300 +1374844.492300 +1374849.313883 +1374852.731005 +1374871.716455 +1374871.716455 +1374872.583469 +1374872.583469 +1374872.583469 +1374893.241119 +1374893.241119 +1374893.241119 +1374910.152166 +1374917.305895 +1374917.305895 +1374918.874522 +1374919.283692 +1374936.896187 +1374936.896187 +1374962.694750 +1374962.694750 +1374973.981275 +1374984.966524 +1374984.966524 +1375021.328575 +1375021.328575 +1375021.328575 +1375023.290621 +1375023.290621 +1375059.532888 +1375059.532888 +1375065.028642 +1375065.028642 +1375065.028642 +1375067.547623 +1375098.415848 +1375099.637739 +1375099.637739 +1375099.637739 +1375099.637739 +1375099.883078 +1375099.883078 +1375122.980461 +1375127.459585 +1375167.310716 +1375167.310716 +1375167.310716 +1375167.310716 +1375167.310716 +1375174.794951 +1375183.423284 +1375183.423284 +1375184.975807 +1375210.374257 +1375210.374257 +1375213.105461 +1375243.567923 +1375243.567923 +1375243.567923 +1375243.567923 +1375246.260880 +1375257.496538 +1375257.496538 +1375289.369047 +1375289.369047 +1375310.291405 +1375310.291405 +1375310.291405 +1375310.291405 +1375320.732557 +1375336.461123 +1375337.952752 +1375344.763086 +1375344.763086 +1375344.871999 +1375349.093010 +1375377.225260 +1375406.492474 +1375412.456742 +1375412.456742 +1375412.456742 +1375413.294987 +1375439.029158 +1375440.631229 +1375440.631229 +1375443.827786 +1375443.827786 +1375443.827786 +1375443.827786 +1375451.626913 +1375459.099765 +1375459.099765 +1375495.983604 +1375495.983604 +1375513.713693 +1375513.713693 +1375513.713693 +1375523.520744 +1375523.520744 +1375542.890552 +1375544.699287 +1375548.717378 +1375548.717378 +1375548.717378 +1375548.876321 +1375571.127413 +1375573.092107 +1375592.870476 +1375624.453756 +1375624.453756 +1375624.453756 +1375624.453756 +1375628.542707 +1375643.678389 +1375643.678389 +1375643.678389 +1375646.737775 +1375669.277477 +1375669.277477 +1375669.277477 +1375669.277477 +1375717.365145 +1375717.365145 +1375717.365145 +1375717.365145 +1375717.365145 +1375741.091839 +1375748.147009 +1375748.147009 +1375754.377289 +1375755.022150 +1375755.022150 +1375769.427384 +1375773.745293 +1375783.996290 +1375783.996290 +1375783.996290 +1375808.600583 +1375808.600583 +1375813.471934 +1375834.726097 +1375834.726097 +1375860.596179 +1375870.100600 +1375870.100600 +1375870.100600 +1375870.100600 +1375870.100600 +1375872.549642 +1375876.597880 +1375876.597880 +1375882.696240 +1375882.696240 +1375920.923761 +1375937.838341 +1375946.244599 +1375946.244599 +1375946.244599 +1375946.244599 +1375974.991410 +1375974.991410 +1375974.991410 +1375974.991410 +1375994.065763 +1375994.065763 +1375998.334425 +1376013.525026 +1376013.525026 +1376014.657429 +1376030.894423 +1376035.874519 +1376060.366251 +1376077.498543 +1376077.498543 +1376077.498543 +1376077.498543 +1376077.498543 +1376077.498543 +1376090.354938 +1376090.354938 +1376090.354938 +1376105.009814 +1376131.153940 +1376131.153940 +1376131.153940 +1376134.145875 +1376134.145875 +1376164.075232 +1376164.075232 +1376184.955106 +1376184.955106 +1376196.507113 +1376196.507113 +1376202.238033 +1376219.937824 +1376219.937824 +1376219.937824 +1376231.446649 +1376259.207904 +1376259.207904 +1376259.207904 +1376259.207904 +1376259.207904 +1376259.207904 +1376267.948240 +1376295.118893 +1376295.118893 +1376296.631855 +1376296.631855 +1376305.409477 +1376305.409477 +1376305.409477 +1376336.670261 +1376336.670261 +1376350.059990 +1376350.059990 +1376351.061640 +1376362.315729 +1376378.555294 +1376378.555294 +1376378.555294 +1376378.555294 +1376387.231589 +1376391.615089 +1376398.757982 +1376413.175621 +1376423.317061 +1376434.817815 +1376448.405975 +1376459.388064 +1376459.388064 +1376459.388064 +1376463.954953 +1376479.555252 +1376479.555252 +1376500.282190 +1376500.282190 +1376500.282190 +1376503.399035 +1376503.940420 +1376503.940420 +1376518.619330 +1376528.347063 +1376559.425876 +1376559.425876 +1376559.425876 +1376602.288022 +1376602.288022 +1376602.288022 +1376602.288022 +1376602.288022 +1376614.981777 +1376614.981777 +1376628.532212 +1376628.532212 +1376640.987194 +1376641.280298 +1376641.280298 +1376641.280298 +1376641.280298 +1376655.599579 +1376660.947863 +1376691.974054 +1376691.974054 +1376691.974054 +1376691.974054 +1376698.208076 +1376698.208076 +1376736.188288 +1376736.188288 +1376736.188288 +1376736.188288 +1376740.969575 +1376740.969575 +1376753.581156 +1376761.630942 +1376761.630942 +1376785.177866 +1376785.177866 +1376798.091965 +1376802.206317 +1376802.206317 +1376802.206317 +1376811.841859 +1376842.197420 +1376842.197420 +1376842.197420 +1376842.197420 +1376842.197420 +1376859.565064 +1376869.478582 +1376899.101084 +1376905.028722 +1376905.028722 +1376906.432761 +1376914.071895 +1376914.071895 +1376924.061876 +1376924.061876 +1376924.061876 +1376924.061876 +1376946.550036 +1376946.550036 +1376951.614976 +1376976.582629 +1376981.366368 +1376990.004623 +1376990.004623 +1376995.051965 +1376995.051965 +1377000.521949 +1377007.753468 +1377022.752053 +1377022.752053 +1377035.695551 +1377040.681488 +1377049.251268 +1377049.251268 +1377063.260069 +1377066.060966 +1377066.060966 +1377074.994564 +1377074.994564 +1377093.903628 +1377099.098780 +1377101.896443 +1377101.896443 +1377117.462518 +1377131.295760 +1377132.680304 +1377159.292230 +1377159.292230 +1377159.292230 +1377159.292230 +1377184.711641 +1377184.711641 +1377184.711641 +1377184.711641 +1377184.711641 +1377184.711641 +1377188.503036 +1377218.356953 +1377229.451058 +1377229.451058 +1377230.962200 +1377264.229335 +1377264.229335 +1377264.229335 +1377264.229335 +1377266.288626 +1377277.977359 +1377280.369343 +1377291.724153 +1377317.401954 +1377333.653427 +1377333.653427 +1377333.653427 +1377342.269002 +1377350.467843 +1377350.467843 +1377350.467843 +1377372.878718 +1377372.878718 +1377372.878718 +1377372.878718 +1377406.873628 +1377406.873628 +1377406.873628 +1377406.873628 +1377426.107766 +1377426.107766 +1377428.457832 +1377442.858436 +1377456.426280 +1377456.426280 +1377456.426280 +1377456.426280 +1377456.426280 +1377456.426280 +1377490.229148 +1377490.229148 +1377521.424278 +1377521.424278 +1377521.424278 +1377521.424278 +1377521.424278 +1377521.424278 +1377521.424278 +1377522.907652 +1377534.034538 +1377534.034538 +1377534.034538 +1377535.926284 +1377553.896555 +1377554.792312 +1377574.909306 +1377605.261828 +1377605.261828 +1377622.201201 +1377622.201201 +1377626.930673 +1377647.839340 +1377647.839340 +1377647.839340 +1377663.757368 +1377667.624236 +1377667.624236 +1377672.082572 +1377688.059939 +1377689.969156 +1377689.969156 +1377696.039212 +1377703.288252 +1377718.112720 +1377718.112720 +1377718.112720 +1377747.041718 +1377747.041718 +1377747.041718 +1377747.041718 +1377778.974245 +1377778.974245 +1377780.645357 +1377780.645357 +1377780.645357 +1377780.645357 +1377793.756539 +1377812.073631 +1377812.073631 +1377819.088548 +1377821.201697 +1377824.155642 +1377839.918091 +1377842.857722 +1377862.103057 +1377870.390068 +1377895.578796 +1377895.578796 +1377895.578796 +1377895.578796 +1377895.578796 +1377895.578796 +1377895.578796 +1377917.970981 +1377920.473686 +1377921.659707 +1377934.868410 +1377935.560717 +1377939.245339 +1377967.055918 +1377967.055918 +1377986.248039 +1377986.248039 +1377986.248039 +1377989.642293 +1378002.265859 +1378002.265859 +1378007.996655 +1378007.996655 +1378045.447340 +1378046.680022 +1378046.680022 +1378046.680022 +1378063.835595 +1378063.835595 +1378063.835595 +1378077.392824 +1378077.392824 +1378095.711876 +1378100.578959 +1378100.578959 +1378100.578959 +1378100.578959 +1378144.771675 +1378144.771675 +1378161.897212 +1378161.897212 +1378161.897212 +1378161.897212 +1378161.897212 +1378170.251551 +1378170.251551 +1378170.251551 +1378170.251551 +1378206.153511 +1378206.153511 +1378228.723874 +1378228.723874 +1378228.723874 +1378228.723874 +1378228.723874 +1378244.199929 +1378244.199929 +1378252.932012 +1378258.086906 +1378272.556214 +1378290.851947 +1378290.851947 +1378290.851947 +1378290.851947 +1378306.632661 +1378312.072744 +1378312.072744 +1378315.617926 +1378334.655587 +1378334.655587 +1378334.655587 +1378355.579754 +1378355.579754 +1378381.603761 +1378381.603761 +1378381.603761 +1378383.858399 +1378410.714543 +1378410.714543 +1378410.714543 +1378412.879353 +1378412.879353 +1378412.879353 +1378426.119081 +1378426.119081 +1378470.116703 +1378470.116703 +1378470.116703 +1378470.116703 +1378492.166885 +1378492.166885 +1378507.103070 +1378515.666979 +1378515.666979 +1378515.666979 +1378534.513860 +1378534.513860 +1378546.834045 +1378546.834045 +1378546.834045 +1378547.861784 +1378551.147739 +1378551.147739 +1378554.153156 +1378554.153156 +1378573.464812 +1378579.653879 +1378595.805780 +1378595.805780 +1378608.610509 +1378608.610509 +1378617.107646 +1378623.595630 +1378623.595630 +1378667.882234 +1378671.608785 +1378671.608785 +1378686.810719 +1378686.810719 +1378686.810719 +1378688.586796 +1378693.598822 +1378693.598822 +1378693.598822 +1378726.533714 +1378737.979794 +1378737.979794 +1378737.979794 +1378746.306991 +1378746.306991 +1378763.541870 +1378763.541870 +1378772.876096 +1378773.836783 +1378773.836783 +1378784.261985 +1378800.082385 +1378808.014205 +1378837.143824 +1378837.143824 +1378837.143824 +1378837.143824 +1378837.143824 +1378837.143824 +1378837.143824 +1378837.143824 +1378837.143824 +1378837.143824 +1378860.018086 +1378877.286521 +1378877.286521 +1378886.498184 +1378919.097973 +1378919.097973 +1378922.713121 +1378951.018422 +1378951.018422 +1378951.018422 +1378951.018422 +1378951.018422 +1378967.174837 +1378967.174837 +1378977.756581 +1378977.756581 +1378990.464692 +1378991.524514 +1379007.252238 +1379007.252238 +1379031.475883 +1379031.475883 +1379031.475883 +1379041.927728 +1379041.927728 +1379041.927728 +1379061.989271 +1379061.989271 +1379064.827047 +1379065.428293 +1379077.873006 +1379089.570615 +1379115.290410 +1379115.290410 +1379115.290410 +1379121.764153 +1379126.747863 +1379126.747863 +1379154.155075 +1379154.155075 +1379154.155075 +1379154.155075 +1379154.155075 +1379166.773133 +1379166.773133 +1379166.773133 +1379166.773133 +1379201.067288 +1379201.391546 +1379201.391546 +1379221.813299 +1379225.746086 +1379225.746086 +1379252.051656 +1379252.051656 +1379258.883580 +1379258.883580 +1379258.883580 +1379295.046309 +1379295.046309 +1379295.046309 +1379295.046309 +1379304.856038 +1379311.948109 +1379311.948109 +1379311.948109 +1379311.948109 +1379343.937985 +1379343.937985 +1379344.611699 +1379353.524380 +1379357.111195 +1379357.111195 +1379360.079588 +1379387.323126 +1379392.587441 +1379392.587441 +1379392.587441 +1379392.587441 +1379392.587441 +1379424.369788 +1379424.369788 +1379424.369788 +1379439.886021 +1379439.886021 +1379459.503865 +1379466.321407 +1379476.573859 +1379476.573859 +1379479.254653 +1379479.254653 +1379495.827165 +1379495.827165 +1379496.178761 +1379496.178761 +1379522.446090 +1379522.446090 +1379522.446090 +1379554.510322 +1379568.076329 +1379568.076329 +1379568.076329 +1379568.076329 +1379568.076329 +1379568.076329 +1379575.839528 +1379575.839528 +1379594.659807 +1379594.659807 +1379617.622438 +1379622.961304 +1379643.997596 +1379643.997596 +1379643.997596 +1379643.997596 +1379653.763579 +1379670.298817 +1379670.298817 +1379670.298817 +1379676.412269 +1379676.412269 +1379686.156710 +1379686.156710 +1379699.948561 +1379699.948561 +1379736.647876 +1379736.647876 +1379744.737316 +1379744.737316 +1379748.196295 +1379748.196295 +1379761.191576 +1379761.191576 +1379772.189667 +1379772.189667 +1379774.290921 +1379801.467092 +1379801.467092 +1379801.467092 +1379801.467092 +1379815.526717 +1379835.442974 +1379835.442974 +1379835.442974 +1379839.289257 +1379851.554945 +1379851.554945 +1379869.380282 +1379869.380282 +1379870.824366 +1379870.824366 +1379896.942555 +1379896.942555 +1379896.942555 +1379896.942555 +1379926.790784 +1379926.790784 +1379926.790784 +1379926.790784 +1379926.790784 +1379926.790784 +1379961.276411 +1379961.276411 +1379961.276411 +1379961.276411 +1379961.276411 +1379971.243536 +1379971.368981 +1379993.008530 +1380000.470394 +1380018.737179 +1380018.737179 +1380018.737179 +1380052.288152 +1380052.288152 +1380052.288152 +1380052.288152 +1380052.288152 +1380056.560629 +1380056.560629 +1380072.645637 +1380079.303702 +1380081.968432 +1380102.432027 +1380102.432027 +1380126.949341 +1380126.949341 +1380126.949341 +1380126.949341 +1380153.517871 +1380153.517871 +1380154.191182 +1380154.191182 +1380154.191182 +1380156.357015 +1380176.941199 +1380176.941199 +1380176.941199 +1380176.941199 +1380207.434450 +1380220.003161 +1380220.003161 +1380227.610116 +1380230.176729 +1380253.319671 +1380253.319671 +1380253.319671 +1380253.319671 +1380253.319671 +1380256.649880 +1380273.530158 +1380273.530158 +1380273.530158 +1380294.714826 +1380294.714826 +1380294.714826 +1380294.714826 +1380314.142890 +1380341.681730 +1380341.681730 +1380341.681730 +1380341.681730 +1380343.302693 +1380353.046823 +1380364.603058 +1380368.677593 +1380389.243847 +1380389.243847 +1380412.874198 +1380412.874198 +1380412.874198 +1380412.874198 +1380420.000520 +1380420.000520 +1380420.000520 +1380421.709048 +1380428.479624 +1380436.767340 +1380439.965287 +1380439.965287 +1380463.261434 +1380465.627738 +1380474.958592 +1380474.958592 +1380474.958592 +1380498.382926 +1380498.382926 +1380498.382926 +1380526.833160 +1380526.833160 +1380527.928249 +1380550.467333 +1380550.467333 +1380583.533951 +1380583.533951 +1380583.533951 +1380583.533951 +1380583.533951 +1380583.533951 +1380583.533951 +1380590.189764 +1380603.486225 +1380603.486225 +1380631.674750 +1380631.674750 +1380631.674750 +1380631.674750 +1380631.674750 +1380638.498045 +1380666.425570 +1380666.425570 +1380670.790318 +1380670.790318 +1380670.889009 +1380672.540142 +1380688.085188 +1380688.085188 +1380697.082205 +1380697.082205 +1380726.415866 +1380726.415866 +1380746.170773 +1380746.170773 +1380748.078087 +1380748.078087 +1380748.078087 +1380756.236491 +1380789.414141 +1380789.414141 +1380789.414141 +1380789.414141 +1380798.909472 +1380798.909472 +1380830.194229 +1380830.194229 +1380830.194229 +1380830.194229 +1380841.607323 +1380841.607323 +1380874.567859 +1380874.567859 +1380874.567859 +1380874.567859 +1380874.567859 +1380874.567859 +1380885.814570 +1380885.814570 +1380885.814570 +1380885.814570 +1380911.650381 +1380911.650381 +1380929.682691 +1380929.682691 +1380940.067866 +1380957.293366 +1380957.293366 +1380957.293366 +1380971.137134 +1380977.733468 +1380977.733468 +1380977.733468 +1381006.533693 +1381006.533693 +1381028.121866 +1381037.446678 +1381037.446678 +1381037.446678 +1381037.446678 +1381037.446678 +1381041.130997 +1381041.130997 +1381077.666614 +1381077.666614 +1381077.666614 +1381077.666614 +1381077.666614 +1381098.396206 +1381116.814397 +1381116.814397 +1381116.814397 +1381116.814397 +1381120.890947 +1381136.130411 +1381136.130411 +1381136.130411 +1381143.086732 +1381143.086732 +1381171.566322 +1381171.566322 +1381171.566322 +1381171.566322 +1381171.566322 +1381173.384934 +1381187.225102 +1381187.225102 +1381207.834327 +1381207.834327 +1381214.651295 +1381214.651295 +1381239.844130 +1381239.844130 +1381244.660984 +1381262.440195 +1381263.637936 +1381263.800177 +1381263.800177 +1381263.800177 +1381270.552008 +1381282.151534 +1381296.352401 +1381302.484976 +1381310.864310 +1381312.780616 +1381319.760090 +1381319.760090 +1381319.760090 +1381326.476824 +1381345.713378 +1381345.713378 +1381347.412281 +1381359.079575 +1381359.079575 +1381359.433610 +1381359.433610 +1381380.705895 +1381407.544150 +1381407.544150 +1381407.544150 +1381416.909805 +1381424.546468 +1381443.153127 +1381443.153127 +1381447.661964 +1381447.661964 +1381447.661964 +1381448.335951 +1381456.434009 +1381481.630632 +1381481.630632 +1381481.820863 +1381494.823285 +1381494.823285 +1381494.823285 +1381514.669728 +1381514.669728 +1381524.079663 +1381524.079663 +1381548.448630 +1381560.237997 +1381561.716926 +1381561.716926 +1381561.716926 +1381561.716926 +1381595.558607 +1381595.558607 +1381595.558607 +1381595.558607 +1381595.558607 +1381609.848641 +1381620.552634 +1381625.335895 +1381626.916893 +1381636.982574 +1381636.982574 +1381654.073459 +1381654.073459 +1381654.073459 +1381654.073459 +1381665.086038 +1381665.086038 +1381668.632211 +1381672.006586 +1381709.130829 +1381709.130829 +1381709.130829 +1381709.130829 +1381709.130829 +1381729.626949 +1381729.626949 +1381729.626949 +1381729.626949 +1381748.677890 +1381766.910598 +1381766.910598 +1381776.300250 +1381785.767318 +1381785.767318 +1381793.371639 +1381794.600488 +1381795.475977 +1381809.687781 +1381819.016909 +1381826.961179 +1381826.961179 +1381826.961179 +1381826.961179 +1381861.546454 +1381863.969468 +1381863.969468 +1381863.969468 +1381868.222545 +1381873.198882 +1381899.148558 +1381899.148558 +1381906.919239 +1381906.919239 +1381906.919239 +1381923.605111 +1381923.605111 +1381934.267706 +1381934.267706 +1381934.318775 +1381948.016771 +1381963.423583 +1381963.423583 +1381978.348519 +1381978.348519 +1381978.348519 +1381982.961383 +1381990.572100 +1382004.975542 +1382004.975542 +1382004.975542 +1382025.671434 +1382025.671434 +1382025.671434 +1382025.927594 +1382041.439632 +1382054.165963 +1382059.911734 +1382059.911734 +1382072.900322 +1382072.900322 +1382072.900322 +1382085.403877 +1382092.543291 +1382098.623499 +1382113.152874 +1382113.152874 +1382113.152874 +1382128.075557 +1382128.075557 +1382144.241320 +1382157.281704 +1382157.281704 +1382157.281704 +1382157.281704 +1382187.013206 +1382187.013206 +1382187.013206 +1382187.013206 +1382188.464830 +1382188.464830 +1382201.865263 +1382201.891728 +1382222.969923 +1382230.555312 +1382268.487811 +1382268.487811 +1382268.487811 +1382268.487811 +1382275.270998 +1382275.270998 +1382275.270998 +1382275.270998 +1382289.955743 +1382289.955743 +1382308.338080 +1382308.338080 +1382308.338080 +1382308.338080 +1382313.307269 +1382313.307269 +1382336.706531 +1382336.706531 +1382359.889292 +1382359.889292 +1382359.889292 +1382365.196839 +1382373.329088 +1382373.329088 +1382376.370524 +1382393.846260 +1382400.000833 +1382400.000833 +1382420.093661 +1382422.067472 +1382438.317329 +1382438.317329 +1382461.436902 +1382461.436902 +1382461.436902 +1382461.436902 +1382461.436902 +1382461.436902 +1382461.436902 +1382461.436902 +1382464.769382 +1382480.069192 +1382506.655674 +1382521.496101 +1382529.920983 +1382530.758648 +1382530.758648 +1382550.112187 +1382550.112187 +1382550.112187 +1382556.601374 +1382580.535531 +1382580.535531 +1382580.535531 +1382580.535531 +1382580.535531 +1382580.535531 +1382588.859123 +1382609.086570 +1382609.086570 +1382618.724886 +1382628.588453 +1382628.588453 +1382628.588453 +1382631.698074 +1382644.703603 +1382653.929219 +1382653.929219 +1382656.782034 +1382676.246202 +1382697.085903 +1382697.085903 +1382715.746553 +1382715.746553 +1382719.346833 +1382719.346833 +1382726.803642 +1382730.687251 +1382734.079832 +1382734.168954 +1382742.222390 +1382742.222390 +1382742.222390 +1382756.177236 +1382756.177236 +1382756.177236 +1382760.701900 +1382770.125216 +1382792.303231 +1382792.303231 +1382792.303231 +1382799.432581 +1382822.894556 +1382845.213050 +1382845.213050 +1382850.277023 +1382850.277023 +1382852.868220 +1382876.743856 +1382876.743856 +1382876.743856 +1382876.743856 +1382876.743856 +1382876.743856 +1382898.731606 +1382915.822005 +1382915.822005 +1382915.822005 +1382915.822005 +1382922.028993 +1382922.028993 +1382928.885235 +1382933.117827 +1382933.117827 +1382942.133827 +1382986.666015 +1382986.666015 +1382986.666015 +1382991.362115 +1382991.362115 +1382991.362115 +1382993.013315 +1382999.271040 +1383006.096259 +1383006.096259 +1383014.549717 +1383014.549717 +1383038.787010 +1383038.787010 +1383038.787010 +1383040.781850 +1383074.875695 +1383074.875695 +1383074.875695 +1383074.875695 +1383074.875695 +1383084.216859 +1383105.443820 +1383118.041128 +1383121.391206 +1383121.391206 +1383128.223725 +1383144.304156 +1383144.304156 +1383144.304156 +1383144.304156 +1383153.002826 +1383176.532353 +1383176.532353 +1383176.532353 +1383176.532353 +1383176.532353 +1383183.726007 +1383183.726007 +1383188.681827 +1383188.681827 +1383215.304795 +1383226.942328 +1383226.942328 +1383226.942328 +1383247.092600 +1383247.092600 +1383247.092600 +1383247.092600 +1383252.264765 +1383280.504187 +1383290.260710 +1383290.260710 +1383303.227929 +1383321.617650 +1383321.617650 +1383321.617650 +1383321.617650 +1383324.187121 +1383327.657840 +1383355.470334 +1383355.470334 +1383355.470334 +1383365.154504 +1383365.154504 +1383365.154504 +1383380.922484 +1383402.164616 +1383402.164616 +1383420.817640 +1383420.817640 +1383420.817640 +1383420.817640 +1383430.968042 +1383430.968042 +1383430.968042 +1383447.842153 +1383447.842153 +1383447.842153 +1383447.842153 +1383458.752924 +1383474.276431 +1383474.276431 +1383474.276431 +1383474.761990 +1383501.730296 +1383501.730296 +1383501.730296 +1383501.730296 +1383511.386661 +1383511.386661 +1383511.386661 +1383539.850215 +1383539.850215 +1383546.279979 +1383547.075847 +1383547.075847 +1383557.775879 +1383569.514777 +1383569.514777 +1383577.269324 +1383579.474920 +1383579.474920 +1383579.718815 +1383612.405202 +1383612.405202 +1383640.511308 +1383640.511308 +1383640.511308 +1383640.511308 +1383652.786099 +1383665.041073 +1383671.362713 +1383671.362713 +1383671.362713 +1383701.258607 +1383701.258607 +1383701.258607 +1383701.258607 +1383704.908240 +1383704.908240 +1383730.502038 +1383730.502038 +1383754.502931 +1383754.502931 +1383754.502931 +1383754.502931 +1383754.502931 +1383773.961323 +1383773.961323 +1383775.076074 +1383775.076074 +1383775.076074 +1383775.076074 +1383811.882895 +1383838.274488 +1383838.274488 +1383838.274488 +1383838.274488 +1383840.184597 +1383840.184597 +1383872.077310 +1383872.077310 +1383872.077310 +1383872.077310 +1383872.077310 +1383889.561423 +1383889.561423 +1383889.561423 +1383889.561423 +1383889.561423 +1383889.561423 +1383898.041626 +1383921.538565 +1383921.538565 +1383936.839975 +1383936.839975 +1383936.839975 +1383942.495930 +1383942.495930 +1383959.168804 +1383959.168804 +1383962.442135 +1383967.604627 +1383976.129046 +1383976.129046 +1383987.173890 +1383987.173890 +1383997.913885 +1384024.433826 +1384024.433826 +1384024.433826 +1384024.433826 +1384033.740159 +1384033.740159 +1384046.699917 +1384046.699917 +1384057.565909 +1384057.565909 +1384057.565909 +1384064.163954 +1384075.194232 +1384086.628586 +1384115.889478 +1384115.889478 +1384115.889478 +1384115.889478 +1384115.889478 +1384120.585805 +1384123.723084 +1384160.323706 +1384160.323706 +1384160.323706 +1384160.323706 +1384160.323706 +1384176.238795 +1384176.597505 +1384197.727501 +1384197.727501 +1384197.727501 +1384216.118425 +1384216.801033 +1384216.801033 +1384216.801033 +1384251.821297 +1384251.821297 +1384251.821297 +1384251.821297 +1384251.821297 +1384251.821297 +1384268.077466 +1384272.426274 +1384276.219818 +1384289.188651 +1384300.720189 +1384300.720189 +1384300.720189 +1384300.720189 +1384300.720189 +1384330.145066 +1384352.995435 +1384352.995435 +1384356.160568 +1384356.160568 +1384356.160568 +1384361.343922 +1384369.241037 +1384369.241037 +1384369.241037 +1384369.241037 +1384380.746949 +1384389.956842 +1384403.142519 +1384403.142519 +1384403.142519 +1384414.893472 +1384417.143741 +1384434.660472 +1384437.406367 +1384452.936083 +1384471.902307 +1384471.902307 +1384471.902307 +1384471.902307 +1384471.902307 +1384485.927020 +1384498.114861 +1384498.114861 +1384498.114861 +1384501.303756 +1384502.765753 +1384502.765753 +1384544.709923 +1384544.709923 +1384544.709923 +1384544.709923 +1384544.709923 +1384547.736628 +1384556.481831 +1384556.481831 +1384560.821897 +1384560.821897 +1384585.119489 +1384585.119489 +1384601.195072 +1384601.195072 +1384619.707516 +1384621.677843 +1384621.677843 +1384621.677843 +1384649.363713 +1384649.363713 +1384649.363713 +1384649.363713 +1384665.357673 +1384665.357673 +1384665.357673 +1384695.948055 +1384695.948055 +1384697.266399 +1384699.840031 +1384699.840031 +1384699.840031 +1384699.840031 +1384712.791607 +1384712.791607 +1384720.392863 +1384720.392863 +1384742.701092 +1384765.636314 +1384765.636314 +1384765.636314 +1384765.636314 +1384775.125970 +1384775.125970 +1384775.125970 +1384775.125970 +1384789.254122 +1384795.066345 +1384795.066345 +1384816.269844 +1384821.367373 +1384830.767898 +1384830.767898 +1384832.601176 +1384854.561949 +1384854.561949 +1384854.561949 +1384854.561949 +1384860.649311 +1384877.615874 +1384877.615874 +1384903.950000 +1384903.950000 +1384903.950000 +1384903.950000 +1384914.766255 +1384922.720508 +1384922.720508 +1384925.710486 +1384925.710486 +1384939.327841 +1384958.398477 +1384958.398477 +1384959.959342 +1384959.959342 +1384959.959342 +1384959.959342 +1384972.966598 +1384977.818841 +1384982.129974 +1385013.426507 +1385013.426507 +1385013.426507 +1385013.426507 +1385018.077255 +1385021.429588 +1385030.878134 +1385030.878134 +1385033.277870 +1385042.070947 +1385042.070947 +1385064.544247 +1385086.898785 +1385086.898785 +1385087.305513 +1385089.619468 +1385095.792871 +1385095.792871 +1385096.926141 +1385124.805776 +1385139.525491 +1385139.525491 +1385139.525491 +1385143.056228 +1385143.056228 +1385156.321077 +1385156.321077 +1385156.321077 +1385156.321077 +1385187.345589 +1385187.345589 +1385208.409120 +1385208.409120 +1385211.864821 +1385211.864821 +1385211.864821 +1385211.864821 +1385211.864821 +1385221.394297 +1385221.394297 +1385224.601990 +1385245.181225 +1385245.181225 +1385253.377486 +1385258.587154 +1385262.505937 +1385291.794601 +1385291.794601 +1385291.794601 +1385291.794601 +1385291.794601 +1385291.794601 +1385292.904758 +1385304.839522 +1385304.839522 +1385318.257725 +1385329.046096 +1385332.907769 +1385332.907769 +1385378.743449 +1385378.743449 +1385378.743449 +1385378.743449 +1385392.734882 +1385392.734882 +1385392.734882 +1385392.734882 +1385393.095251 +1385393.095251 +1385399.449758 +1385406.133886 +1385411.900297 +1385411.900297 +1385417.709097 +1385441.787607 +1385441.787607 +1385452.353798 +1385452.353798 +1385458.358887 +1385458.358887 +1385458.499455 +1385474.929105 +1385474.929105 +1385510.870389 +1385524.747374 +1385524.747374 +1385524.747374 +1385524.747374 +1385524.747374 +1385530.456049 +1385548.841619 +1385548.841619 +1385572.978253 +1385572.978253 +1385572.978253 +1385572.978253 +1385572.978253 +1385572.978253 +1385587.571506 +1385587.571506 +1385616.115190 +1385616.115190 +1385616.115190 +1385616.788279 +1385616.788279 +1385616.788279 +1385616.788279 +1385643.179336 +1385643.179336 +1385648.993770 +1385657.678584 +1385662.330643 +1385677.355802 +1385678.846980 +1385678.846980 +1385678.846980 +1385681.215860 +1385681.215860 +1385686.252787 +1385698.724533 +1385703.420963 +1385707.175914 +1385711.929464 +1385711.929464 +1385721.920715 +1385721.920715 +1385755.288637 +1385755.288637 +1385765.848744 +1385773.658177 +1385773.658177 +1385778.802698 +1385778.802698 +1385778.802698 +1385784.206759 +1385810.911445 +1385810.911445 +1385810.911445 +1385827.380311 +1385827.380311 +1385831.675545 +1385852.803457 +1385854.698901 +1385854.698901 +1385854.698901 +1385872.970271 +1385872.970271 +1385872.970271 +1385872.970271 +1385872.970271 +1385882.078573 +1385896.250899 +1385912.823658 +1385912.823658 +1385912.823658 +1385919.791455 +1385947.443124 +1385947.443124 +1385947.443124 +1385947.443124 +1385947.443124 +1385947.443124 +1385949.762351 +1385949.762351 +1385964.228505 +1385964.228505 +1385986.450989 +1385986.450989 +1385986.450989 +1385986.450989 +1385996.023765 +1385996.023765 +1386005.170659 +1386030.412986 +1386030.412986 +1386030.412986 +1386060.499527 +1386060.499527 +1386060.499527 +1386060.499527 +1386060.499527 +1386060.499527 +1386074.296035 +1386088.234920 +1386100.617005 +1386100.617005 +1386100.617005 +1386104.089072 +1386111.950314 +1386119.196358 +1386119.196358 +1386127.650030 +1386127.650030 +1386127.650030 +1386134.509233 +1386136.305901 +1386161.458300 +1386161.458300 +1386173.073714 +1386188.428674 +1386188.428674 +1386221.233239 +1386221.233239 +1386221.233239 +1386221.233239 +1386221.233239 +1386221.233239 +1386221.233239 +1386221.233239 +1386221.233239 +1386224.860594 +1386254.486608 +1386254.486608 +1386254.486608 +1386269.331422 +1386277.488212 +1386277.626196 +1386288.433988 +1386288.433988 +1386288.433988 +1386301.361773 +1386308.518573 +1386308.518573 +1386308.518573 +1386308.518573 +1386319.728037 +1386320.339224 +1386320.339224 +1386320.339224 +1386341.023876 +1386353.411171 +1386366.354861 +1386366.354861 +1386366.354861 +1386366.354861 +1386372.092147 +1386395.763720 +1386402.416970 +1386402.416970 +1386402.416970 +1386417.082246 +1386417.082246 +1386433.899734 +1386433.899734 +1386433.899734 +1386433.899734 +1386433.899734 +1386459.054542 +1386459.054542 +1386467.368317 +1386467.368317 +1386481.185177 +1386488.545438 +1386491.429475 +1386491.429475 +1386503.911995 +1386503.911995 +1386508.312562 +1386527.161121 +1386527.161121 +1386527.161121 +1386532.076693 +1386556.571340 +1386575.636319 +1386575.636319 +1386575.636319 +1386575.636319 +1386575.636319 +1386580.824914 +1386580.824914 +1386580.824914 +1386596.779794 +1386596.779794 +1386596.779794 +1386599.285607 +1386599.285607 +1386604.854293 +1386609.014256 +1386631.422041 +1386637.256735 +1386640.503856 +1386640.503856 +1386640.503856 +1386678.779582 +1386678.779582 +1386678.779582 +1386678.779582 +1386679.385162 +1386683.285976 +1386705.386015 +1386705.386015 +1386705.386015 +1386712.790948 +1386712.790948 +1386712.790948 +1386723.392625 +1386728.477759 +1386728.590697 +1386748.762532 +1386749.178338 +1386757.651618 +1386757.651618 +1386775.568034 +1386775.568034 +1386781.873820 +1386781.873820 +1386802.696467 +1386802.696467 +1386812.260016 +1386812.260016 +1386820.604229 +1386820.604229 +1386820.604229 +1386822.624727 +1386845.819014 +1386845.819014 +1386845.819014 +1386845.819014 +1386848.129691 +1386851.512989 +1386873.809961 +1386873.809961 +1386886.616962 +1386886.616962 +1386886.616962 +1386886.616962 +1386906.969414 +1386920.987513 +1386930.798264 +1386930.798264 +1386930.798264 +1386935.034204 +1386935.034204 +1386935.034204 +1386935.824098 +1386950.929742 +1386973.304005 +1386973.304005 +1386973.304005 +1386973.304005 +1386985.078076 +1386985.078076 +1386985.078076 +1386989.704588 +1386990.113924 +1387000.860723 +1387002.349229 +1387014.367405 +1387014.367405 +1387019.342518 +1387019.387733 +1387055.355867 +1387055.355867 +1387061.660168 +1387061.660168 +1387069.023467 +1387083.157566 +1387083.157566 +1387083.157566 +1387088.650328 +1387088.650328 +1387088.650328 +1387116.094894 +1387116.094894 +1387118.560601 +1387118.560601 +1387130.471453 +1387130.471453 +1387130.471453 +1387136.767654 +1387136.767654 +1387145.494848 +1387155.484676 +1387176.893395 +1387176.893395 +1387176.893395 +1387180.018580 +1387180.018580 +1387188.092311 +1387210.955020 +1387212.293876 +1387212.293876 +1387234.732479 +1387234.732479 +1387239.230588 +1387239.230588 +1387239.230588 +1387246.115177 +1387251.747217 +1387257.573332 +1387257.573332 +1387257.573332 +1387269.350195 +1387277.196491 +1387277.196491 +1387289.286319 +1387308.030319 +1387308.030319 +1387328.903260 +1387328.903260 +1387330.987464 +1387330.987464 +1387352.014074 +1387352.014074 +1387352.014074 +1387352.014074 +1387354.815118 +1387369.333097 +1387369.333097 +1387369.333097 +1387380.837102 +1387380.837102 +1387382.087396 +1387382.087396 +1387395.851421 +1387395.851421 +1387409.819984 +1387430.352546 +1387430.352546 +1387430.352546 +1387434.470896 +1387445.492691 +1387445.492691 +1387455.809192 +1387465.157041 +1387465.157041 +1387465.157041 +1387468.620420 +1387468.620420 +1387482.211302 +1387488.935409 +1387488.935409 +1387489.453682 +1387493.716024 +1387493.716024 +1387543.992008 +1387543.992008 +1387543.992008 +1387543.992008 +1387544.189984 +1387544.189984 +1387544.189984 +1387549.932878 +1387551.867690 +1387564.228331 +1387571.693365 +1387581.548288 +1387581.548288 +1387591.062268 +1387591.062268 +1387606.447016 +1387606.447016 +1387606.447016 +1387610.903770 +1387634.123768 +1387634.123768 +1387634.123768 +1387634.123768 +1387643.578393 +1387658.948975 +1387658.948975 +1387658.948975 +1387671.775588 +1387684.395221 +1387684.395221 +1387684.395221 +1387696.998893 +1387696.998893 +1387696.998893 +1387696.998893 +1387714.723243 +1387722.017825 +1387722.017825 +1387725.465003 +1387733.885772 +1387733.885772 +1387733.885772 +1387745.738368 +1387751.317744 +1387769.742188 +1387769.742188 +1387788.320485 +1387788.320485 +1387788.320485 +1387788.320485 +1387788.320485 +1387789.821265 +1387816.581611 +1387816.581611 +1387821.714687 +1387821.714687 +1387839.093370 +1387839.093370 +1387841.590582 +1387841.590582 +1387841.590582 +1387850.584776 +1387850.584776 +1387850.584776 +1387878.781926 +1387890.386683 +1387890.386683 +1387890.386683 +1387894.589409 +1387911.086568 +1387921.345768 +1387921.345768 +1387921.345768 +1387921.345768 +1387921.345768 +1387941.320030 +1387941.320030 +1387941.320030 +1387955.656608 +1387956.808740 +1387956.808740 +1387965.755583 +1387965.755583 +1387965.755583 +1387984.245930 +1387994.020711 +1387994.020711 +1387997.784421 +1388013.615126 +1388013.615126 +1388013.615126 +1388013.615126 +1388013.615126 +1388019.311717 +1388019.311717 +1388035.849771 +1388038.269422 +1388065.367094 +1388065.367094 +1388065.367094 +1388065.367094 +1388094.362889 +1388094.362889 +1388094.362889 +1388094.362889 +1388094.362889 +1388094.586077 +1388104.706676 +1388104.706676 +1388121.159878 +1388121.159878 +1388121.159878 +1388131.176346 +1388145.601754 +1388146.613864 +1388173.932348 +1388173.932348 +1388173.932348 +1388173.932348 +1388173.932348 +1388188.621761 +1388188.621761 +1388189.251967 +1388192.802231 +1388219.309837 +1388230.297641 +1388230.297641 +1388230.297641 +1388230.297641 +1388230.297641 +1388230.932007 +1388241.275781 +1388241.275781 +1388241.275781 +1388263.710013 +1388269.906608 +1388269.906608 +1388281.699471 +1388281.699471 +1388281.699471 +1388281.699471 +1388294.223495 +1388294.223495 +1388296.691695 +1388314.138580 +1388352.537810 +1388352.537810 +1388352.537810 +1388352.537810 +1388352.537810 +1388352.537810 +1388352.537810 +1388356.070366 +1388356.070366 +1388356.070366 +1388358.646869 +1388365.310557 +1388369.622765 +1388390.624050 +1388403.431012 +1388404.493376 +1388404.493376 +1388404.493376 +1388410.475219 +1388411.732052 +1388430.273158 +1388430.273158 +1388433.833604 +1388433.836327 +1388440.200673 +1388455.041522 +1388461.928370 +1388461.928370 +1388461.928370 +1388478.703599 +1388478.703599 +1388485.983949 +1388495.649999 +1388495.649999 +1388495.649999 +1388514.164294 +1388514.164294 +1388514.164294 +1388514.164294 +1388514.164294 +1388537.934176 +1388548.538323 +1388548.538323 +1388560.713530 +1388560.713530 +1388578.877014 +1388588.092962 +1388588.092962 +1388590.308949 +1388590.308949 +1388590.308949 +1388602.023738 +1388602.023738 +1388604.258471 +1388604.258471 +1388616.072735 +1388625.157277 +1388643.689243 +1388648.221210 +1388648.221210 +1388648.221210 +1388653.896738 +1388653.896738 +1388663.704832 +1388663.704832 +1388673.359305 +1388673.359305 +1388673.359305 +1388689.627859 +1388706.551727 +1388706.551727 +1388706.551727 +1388706.551727 +1388712.869139 +1388719.291092 +1388719.291092 +1388755.480857 +1388755.480857 +1388755.480857 +1388755.480857 +1388755.480857 +1388762.490453 +1388762.490453 +1388776.369546 +1388776.369546 +1388794.257243 +1388794.257243 +1388794.257243 +1388798.682185 +1388798.682185 +1388818.191446 +1388818.191446 +1388818.191446 +1388818.191446 +1388818.191446 +1388818.191446 +1388823.518555 +1388841.763176 +1388841.763176 +1388863.522658 +1388877.144501 +1388877.621074 +1388877.621074 +1388877.621074 +1388877.621074 +1388877.621074 +1388888.463397 +1388907.413608 +1388907.413608 +1388925.416367 +1388925.416367 +1388937.573812 +1388941.448086 +1388941.448086 +1388941.448086 +1388941.448086 +1388941.448086 +1388941.448086 +1388944.767276 +1388973.340857 +1388973.340857 +1388974.497953 +1388994.665630 +1388994.665630 +1388994.665630 +1388994.665630 +1388999.591835 +1389001.852830 +1389007.300637 +1389007.300637 +1389028.197975 +1389028.197975 +1389054.851220 +1389054.851220 +1389074.784783 +1389074.784783 +1389074.784783 +1389074.784783 +1389094.124820 +1389094.124820 +1389094.124820 +1389097.563701 +1389097.563701 +1389097.563701 +1389101.598561 +1389101.598561 +1389101.598561 +1389101.598561 +1389112.335881 +1389139.883746 +1389139.883746 +1389139.883746 +1389139.883746 +1389139.883746 +1389148.059331 +1389150.725358 +1389161.364866 +1389181.878675 +1389181.878675 +1389181.878675 +1389185.051039 +1389196.272129 +1389201.135732 +1389201.135732 +1389216.417448 +1389216.417448 +1389216.417448 +1389235.415658 +1389235.419102 +1389253.153525 +1389253.153525 +1389260.979353 +1389260.979353 +1389260.979353 +1389260.979353 +1389285.272204 +1389285.272204 +1389301.525591 +1389301.525591 +1389301.525591 +1389301.525591 +1389301.525591 +1389308.702414 +1389308.702414 +1389308.702414 +1389316.730963 +1389316.730963 +1389316.730963 +1389316.730963 +1389350.567625 +1389351.906886 +1389351.906886 +1389389.271610 +1389389.271610 +1389389.783992 +1389389.783992 +1389389.783992 +1389389.783992 +1389393.153335 +1389414.696106 +1389421.517982 +1389421.517982 +1389421.517982 +1389421.517982 +1389421.517982 +1389454.469657 +1389454.469657 +1389454.469657 +1389454.469657 +1389460.033836 +1389485.761553 +1389485.761553 +1389485.761553 +1389486.876406 +1389486.876406 +1389487.198665 +1389487.198665 +1389487.198665 +1389503.549780 +1389503.549780 +1389503.549780 +1389503.549780 +1389524.903331 +1389524.903331 +1389549.952513 +1389549.952513 +1389555.273680 +1389555.273680 +1389555.273680 +1389555.273680 +1389565.948501 +1389565.948501 +1389575.961338 +1389575.961338 +1389585.851472 +1389585.851472 +1389585.851472 +1389585.851472 +1389624.610590 +1389628.995378 +1389630.376835 +1389630.376835 +1389630.376835 +1389632.851751 +1389647.439789 +1389647.439789 +1389647.439789 +1389653.804415 +1389653.804415 +1389658.129906 +1389668.239881 +1389668.239881 +1389691.343763 +1389691.343763 +1389691.343763 +1389691.343763 +1389691.343763 +1389691.343763 +1389717.167706 +1389721.193133 +1389733.913124 +1389737.171980 +1389737.171980 +1389737.171980 +1389760.001024 +1389760.001024 +1389760.001024 +1389767.338107 +1389778.977482 +1389778.977482 +1389794.093757 +1389794.093757 +1389794.093757 +1389794.848499 +1389794.848499 +1389818.052197 +1389818.052197 +1389818.052197 +1389818.052197 +1389818.052197 +1389818.052197 +1389823.848799 +1389854.829442 +1389854.829442 +1389854.829442 +1389854.829442 +1389882.686546 +1389882.686546 +1389882.686546 +1389882.686546 +1389895.125105 +1389895.125105 +1389895.125105 +1389918.873078 +1389918.873078 +1389918.873078 +1389918.873078 +1389918.873078 +1389918.873078 +1389933.276861 +1389947.108904 +1389947.108904 +1389952.852593 +1389965.292898 +1389965.292898 +1389965.292898 +1389976.712642 +1389976.712642 +1389976.712642 +1389976.712642 +1390008.516114 +1390008.516114 +1390021.866703 +1390021.866703 +1390021.866703 +1390021.866703 +1390057.561369 +1390057.561369 +1390057.561369 +1390057.561369 +1390057.561369 +1390064.384560 +1390064.384560 +1390064.384560 +1390066.618385 +1390066.618385 +1390077.150951 +1390077.150951 +1390077.150951 +1390077.505538 +1390081.802968 +1390100.050733 +1390130.731383 +1390130.731383 +1390130.731383 +1390137.106033 +1390138.109250 +1390139.920631 +1390149.378527 +1390149.378527 +1390149.378527 +1390156.348200 +1390162.493826 +1390170.978297 +1390170.978297 +1390171.551187 +1390178.764775 +1390205.708628 +1390205.708628 +1390205.708628 +1390206.365170 +1390206.365170 +1390209.647906 +1390234.903434 +1390234.903434 +1390234.903434 +1390234.903434 +1390234.903434 +1390234.903434 +1390272.361845 +1390272.361845 +1390272.361845 +1390272.361845 +1390272.361845 +1390281.165508 +1390289.949829 +1390289.949829 +1390299.542027 +1390299.542027 +1390299.542027 +1390313.690607 +1390324.269790 +1390324.269790 +1390344.958183 +1390351.145365 +1390351.145365 +1390351.145365 +1390364.240787 +1390364.240787 +1390364.240787 +1390373.321797 +1390373.709979 +1390386.135517 +1390386.135517 +1390396.656422 +1390396.656422 +1390405.590412 +1390405.590412 +1390409.891991 +1390409.891991 +1390409.891991 +1390421.151897 +1390421.151897 +1390439.065267 +1390448.292884 +1390467.522678 +1390467.522678 +1390467.522678 +1390467.522678 +1390467.522678 +1390467.522678 +1390469.775312 +1390488.640790 +1390488.640790 +1390503.969017 +1390503.969017 +1390503.969017 +1390503.969017 +1390520.123046 +1390538.433649 +1390538.433649 +1390538.433649 +1390546.126920 +1390546.126920 +1390546.126920 +1390546.126920 +1390548.539389 +1390604.246591 +1390604.246591 +1390604.246591 +1390604.246591 +1390604.246591 +1390604.246591 +1390604.246591 +1390609.509396 +1390609.509396 +1390609.509396 +1390609.509396 +1390609.509396 +1390609.509396 +1390630.982965 +1390630.982965 +1390641.137812 +1390651.802605 +1390662.126168 +1390662.286500 +1390667.907987 +1390684.650655 +1390684.650655 +1390684.650655 +1390703.658200 +1390703.658200 +1390703.658200 +1390703.658200 +1390706.833984 +1390706.833984 +1390718.532579 +1390718.532579 +1390739.073735 +1390739.073735 +1390739.073735 +1390739.073735 +1390739.073735 +1390752.911899 +1390752.911899 +1390800.810276 +1390800.810276 +1390800.810276 +1390800.810276 +1390800.810276 +1390802.350581 +1390802.350581 +1390802.350581 +1390802.350581 +1390802.350581 +1390808.476335 +1390836.447063 +1390836.447063 +1390836.447063 +1390841.796693 +1390855.774681 +1390855.774681 +1390855.774681 +1390855.774681 +1390867.529428 +1390878.358317 +1390878.358317 +1390878.358317 +1390878.358317 +1390885.303011 +1390901.460542 +1390901.460542 +1390901.460542 +1390901.460542 +1390901.460542 +1390906.247883 +1390924.724725 +1390931.657416 +1390939.697820 +1390939.697820 +1390960.784092 +1390960.784092 +1390960.784092 +1390968.100584 +1390985.562104 +1390985.562104 +1390985.562104 +1390986.085177 +1391011.091217 +1391011.091217 +1391011.091217 +1391011.091217 +1391011.091217 +1391013.507387 +1391027.381475 +1391027.381475 +1391047.617584 +1391047.617584 +1391047.617584 +1391047.617584 +1391047.617584 +1391049.501905 +1391049.501905 +1391049.501905 +1391054.581715 +1391076.434653 +1391096.355202 +1391096.355202 +1391102.125232 +1391102.125232 +1391102.125232 +1391111.856601 +1391151.088605 +1391151.088605 +1391151.088605 +1391151.088605 +1391151.088605 +1391151.088605 +1391162.885274 +1391162.885274 +1391168.879978 +1391168.879978 +1391188.029646 +1391188.029646 +1391192.772398 +1391192.772398 +1391192.772398 +1391192.772398 +1391198.273171 +1391205.167152 +1391205.167152 +1391225.818510 +1391225.818510 +1391225.818510 +1391225.818510 +1391226.136533 +1391243.849884 +1391243.849884 +1391262.401727 +1391262.401727 +1391281.976374 +1391281.976374 +1391284.696160 +1391284.696160 +1391287.440664 +1391287.440664 +1391287.440664 +1391303.121698 +1391303.121698 +1391303.121698 +1391309.138263 +1391309.138263 +1391327.559968 +1391336.929071 +1391336.929071 +1391336.929071 +1391346.111682 +1391346.111682 +1391346.111682 +1391356.074497 +1391356.074497 +1391356.074497 +1391380.607050 +1391380.607050 +1391410.256926 +1391410.256926 +1391410.256926 +1391410.256926 +1391410.256926 +1391414.775729 +1391419.874793 +1391419.874793 +1391420.730982 +1391432.603998 +1391435.246358 +1391435.246358 +1391437.134911 +1391456.395144 +1391458.121700 +1391459.350840 +1391476.230649 +1391476.230649 +1391476.230649 +1391500.715480 +1391500.715480 +1391500.715480 +1391520.921584 +1391520.921584 +1391520.921584 +1391520.921584 +1391523.337403 +1391523.985479 +1391542.141061 +1391552.415974 +1391556.511123 +1391556.511123 +1391561.338468 +1391562.324937 +1391562.324937 +1391562.324937 +1391562.324937 +1391580.857894 +1391580.857894 +1391599.377079 +1391599.377079 +1391599.377079 +1391606.881141 +1391606.881141 +1391622.611247 +1391622.611247 +1391622.611247 +1391623.018600 +1391645.610026 +1391645.610026 +1391645.610026 +1391661.116781 +1391661.116781 +1391661.116781 +1391681.864790 +1391681.864790 +1391681.864790 +1391681.864790 +1391701.194584 +1391701.194584 +1391701.194584 +1391701.194584 +1391705.897246 +1391705.897246 +1391722.127602 +1391722.127602 +1391725.706042 +1391725.706042 +1391735.724654 +1391735.724654 +1391735.724654 +1391735.724654 +1391773.892036 +1391773.892036 +1391773.892036 +1391777.358846 +1391777.358846 +1391782.304396 +1391782.304396 +1391807.155816 +1391817.920670 +1391817.920670 +1391817.920670 +1391817.920670 +1391817.920670 +1391844.176563 +1391844.176563 +1391844.176563 +1391846.704081 +1391846.704081 +1391859.056402 +1391859.056402 +1391874.088888 +1391874.088888 +1391874.088888 +1391905.910435 +1391905.910435 +1391905.910435 +1391922.468319 +1391929.537967 +1391929.537967 +1391929.537967 +1391929.537967 +1391929.537967 +1391934.962646 +1391934.962646 +1391935.988747 +1391935.988747 +1391954.048111 +1391955.425289 +1391955.425289 +1391955.425289 +1391986.906984 +1391986.906984 +1391986.906984 +1391986.906984 +1392012.640503 +1392024.028127 +1392024.028127 +1392024.028127 +1392024.028127 +1392024.028127 +1392037.039726 +1392038.068566 +1392038.702070 +1392038.702070 +1392051.707560 +1392051.707560 +1392051.707560 +1392051.707560 +1392063.189340 +1392076.311429 +1392086.058448 +1392087.549779 +1392087.549779 +1392087.549779 +1392092.776693 +1392092.776693 +1392124.294943 +1392124.294943 +1392124.294943 +1392124.294943 +1392129.227080 +1392129.227080 +1392129.227080 +1392129.227080 +1392134.601272 +1392145.573500 +1392145.573500 +1392169.461982 +1392183.244622 +1392183.244622 +1392183.244622 +1392183.244622 +1392203.892888 +1392203.892888 +1392203.892888 +1392203.892888 +1392203.892888 +1392203.892888 +1392203.892888 +1392206.734836 +1392214.706510 +1392243.018138 +1392244.153821 +1392251.065795 +1392276.795372 +1392276.795372 +1392276.795372 +1392276.795372 +1392276.795372 +1392276.795372 +1392279.771965 +1392298.910581 +1392298.910581 +1392298.910581 +1392298.910581 +1392319.993510 +1392319.993510 +1392323.318606 +1392323.318606 +1392327.958730 +1392327.958730 +1392327.958730 +1392346.348649 +1392352.211490 +1392353.138180 +1392353.138180 +1392390.166873 +1392390.166873 +1392394.141776 +1392407.339384 +1392407.339384 +1392407.339384 +1392407.339384 +1392407.339384 +1392407.339384 +1392412.451182 +1392412.451182 +1392412.495987 +1392412.495987 +1392429.341468 +1392429.341468 +1392429.341468 +1392449.632584 +1392457.170031 +1392462.310510 +1392469.928379 +1392477.078743 +1392477.078743 +1392477.078743 +1392479.464821 +1392479.464821 +1392486.074450 +1392486.074450 +1392506.790822 +1392524.076542 +1392524.076542 +1392524.076542 +1392524.076542 +1392529.204831 +1392534.620181 +1392546.698282 +1392546.698282 +1392556.224135 +1392557.566179 +1392573.364692 +1392573.364692 +1392573.364692 +1392573.364692 +1392573.364692 +1392595.784261 +1392602.727067 +1392602.727067 +1392602.727067 +1392611.863936 +1392614.753919 +1392632.607152 +1392632.607152 +1392632.607152 +1392634.850356 +1392635.596355 +1392635.596355 +1392648.818341 +1392648.818341 +1392648.818341 +1392648.818341 +1392705.894337 +1392705.894337 +1392705.894337 +1392705.894337 +1392705.894337 +1392705.894337 +1392705.894337 +1392705.894337 +1392722.154920 +1392733.999549 +1392733.999549 +1392733.999549 +1392763.583015 +1392763.583015 +1392763.583015 +1392763.583015 +1392763.583015 +1392763.583015 +1392773.038782 +1392773.038782 +1392773.038782 +1392773.038782 +1392780.333593 +1392791.779916 +1392791.779916 +1392791.779916 +1392791.779916 +1392801.436905 +1392821.806444 +1392828.504446 +1392828.504446 +1392828.504446 +1392848.525399 +1392848.525399 +1392863.170794 +1392863.170794 +1392863.170794 +1392863.170794 +1392888.097992 +1392888.097992 +1392888.097992 +1392888.097992 +1392909.192475 +1392909.192475 +1392909.192475 +1392909.192475 +1392909.192475 +1392912.307248 +1392919.289469 +1392919.289469 +1392932.732858 +1392932.732858 +1392934.311491 +1392934.311491 +1392934.311491 +1392934.311491 +1392942.542118 +1392953.315563 +1392974.648258 +1392978.476741 +1392978.476741 +1393004.320739 +1393004.320739 +1393004.320739 +1393018.885176 +1393018.885176 +1393018.885176 +1393018.885176 +1393018.885176 +1393018.885176 +1393018.885176 +1393019.597237 +1393029.930937 +1393033.772569 +1393049.324861 +1393049.324861 +1393070.645075 +1393070.645075 +1393070.645075 +1393070.645075 +1393085.948969 +1393085.948969 +1393091.178445 +1393091.178445 +1393109.912810 +1393113.837559 +1393115.021379 +1393115.021379 +1393115.021379 +1393123.480320 +1393123.480320 +1393123.480320 +1393123.480320 +1393137.801527 +1393144.958290 +1393147.582034 +1393179.614331 +1393182.238244 +1393182.238244 +1393182.238244 +1393193.379049 +1393193.379049 +1393193.379049 +1393209.268041 +1393209.268041 +1393209.268041 +1393209.268041 +1393217.403469 +1393217.403469 +1393224.260969 +1393224.260969 +1393225.210268 +1393236.926824 +1393236.926824 +1393236.926824 +1393257.675074 +1393266.463499 +1393280.513307 +1393280.513307 +1393280.513307 +1393282.263100 +1393301.972822 +1393301.972822 +1393301.972822 +1393301.972822 +1393301.972822 +1393301.972822 +1393332.254671 +1393332.616923 +1393332.616923 +1393332.616923 +1393336.948244 +1393336.948244 +1393336.948244 +1393346.276764 +1393376.587773 +1393376.587773 +1393376.587773 +1393376.587773 +1393378.445001 +1393385.624379 +1393398.452124 +1393398.452124 +1393407.291056 +1393407.291056 +1393415.046040 +1393415.046040 +1393415.046040 +1393426.845275 +1393426.845275 +1393434.535643 +1393434.535643 +1393434.535643 +1393434.535643 +1393456.165640 +1393456.165640 +1393465.369158 +1393465.369158 +1393465.369158 +1393478.030294 +1393483.985870 +1393488.821552 +1393505.511266 +1393505.511266 +1393515.267397 +1393515.267397 +1393515.267397 +1393520.250613 +1393524.997496 +1393538.347461 +1393539.866640 +1393539.866640 +1393539.866640 +1393551.899430 +1393576.673308 +1393576.673308 +1393576.673308 +1393576.673308 +1393583.823662 +1393583.823662 +1393610.790393 +1393610.790393 +1393615.313084 +1393615.313084 +1393615.313084 +1393615.313084 +1393632.285721 +1393632.285721 +1393638.294057 +1393638.294057 +1393639.912281 +1393639.912281 +1393669.924882 +1393669.924882 +1393690.227697 +1393690.227697 +1393690.227697 +1393690.227697 +1393690.227697 +1393690.227697 +1393690.293756 +1393701.535849 +1393701.535849 +1393711.718956 +1393733.240776 +1393740.213404 +1393740.213404 +1393740.213404 +1393740.213404 +1393760.383434 +1393760.383434 +1393760.383434 +1393760.383434 +1393767.787096 +1393785.806111 +1393785.806111 +1393793.017433 +1393793.017433 +1393793.017433 +1393808.648721 +1393808.648721 +1393808.648721 +1393815.597536 +1393815.597536 +1393823.574849 +1393850.950640 +1393850.950640 +1393850.950640 +1393850.950640 +1393850.950640 +1393852.333591 +1393852.333591 +1393859.039770 +1393859.039770 +1393859.039770 +1393867.359052 +1393867.852365 +1393881.056948 +1393921.253657 +1393921.253657 +1393921.253657 +1393921.253657 +1393923.775826 +1393923.775826 +1393923.775826 +1393923.775826 +1393923.775826 +1393930.478167 +1393930.478167 +1393941.746509 +1393943.763857 +1393943.763857 +1393946.126194 +1393967.116463 +1393967.116463 +1393974.164750 +1393984.671617 +1393988.512203 +1394002.015486 +1394002.015486 +1394002.015486 +1394009.620468 +1394009.620468 +1394009.620468 +1394013.266475 +1394013.266475 +1394021.421573 +1394021.421573 +1394039.264818 +1394039.264818 +1394039.264818 +1394079.989357 +1394079.989357 +1394079.989357 +1394079.989357 +1394079.989357 +1394079.989357 +1394079.989357 +1394111.293122 +1394111.293122 +1394111.293122 +1394123.106225 +1394123.106225 +1394123.106225 +1394124.920368 +1394131.122100 +1394131.122100 +1394131.122100 +1394131.122100 +1394163.443436 +1394163.443436 +1394163.443436 +1394169.984299 +1394174.672662 +1394174.672662 +1394190.241566 +1394190.241566 +1394190.241566 +1394208.794259 +1394209.985320 +1394209.985320 +1394209.985320 +1394222.251362 +1394222.251362 +1394224.113131 +1394224.113131 +1394224.113131 +1394224.113131 +1394241.887559 +1394260.372973 +1394260.372973 +1394268.792043 +1394268.792043 +1394268.792043 +1394278.002957 +1394283.393256 +1394283.393256 +1394289.557485 +1394316.596916 +1394316.596916 +1394316.596916 +1394316.596916 +1394316.596916 +1394319.775860 +1394323.723006 +1394323.723006 +1394323.723006 +1394323.723006 +1394323.723006 +1394347.244565 +1394361.783574 +1394361.783574 +1394361.783574 +1394375.311067 +1394388.453231 +1394388.453231 +1394388.453231 +1394391.582728 +1394391.582728 +1394391.799668 +1394394.541866 +1394406.707281 +1394406.707281 +1394424.534932 +1394427.704372 +1394427.704372 +1394432.961275 +1394448.912009 +1394448.912009 +1394448.912009 +1394448.912009 +1394465.925383 +1394465.925383 +1394465.925383 +1394467.258696 +1394488.702382 +1394488.702382 +1394488.702382 +1394488.702382 +1394499.550846 +1394502.633222 +1394502.633222 +1394531.704621 +1394531.704621 +1394531.704621 +1394548.590959 +1394550.993239 +1394550.993239 +1394550.993239 +1394550.993239 +1394550.993239 +1394580.719832 +1394580.719832 +1394580.719832 +1394584.439345 +1394584.439345 +1394596.297239 +1394596.297239 +1394596.297239 +1394603.875467 +1394607.429201 +1394607.429201 +1394619.944504 +1394619.944504 +1394622.274703 +1394637.162250 +1394655.255154 +1394666.939460 +1394666.939460 +1394666.939460 +1394666.939460 +1394666.939460 +1394666.939460 +1394666.939460 +1394670.942858 +1394688.805764 +1394688.805764 +1394705.862761 +1394705.862761 +1394705.862761 +1394711.805915 +1394746.222816 +1394746.222816 +1394746.222816 +1394746.222816 +1394746.222816 +1394746.222816 +1394746.222816 +1394746.222816 +1394761.954210 +1394774.052883 +1394781.867581 +1394781.867581 +1394781.867581 +1394781.867581 +1394781.867581 +1394781.867581 +1394781.867581 +1394782.970429 +1394802.988750 +1394811.726991 +1394811.726991 +1394814.244744 +1394827.009351 +1394827.009351 +1394836.224468 +1394836.224468 +1394836.224468 +1394836.942411 +1394840.410340 +1394840.410340 +1394855.389711 +1394865.047166 +1394874.936528 +1394883.853152 +1394883.853152 +1394916.175353 +1394935.035771 +1394935.035771 +1394935.035771 +1394935.035771 +1394935.035771 +1394935.035771 +1394935.035771 +1394935.035771 +1394935.035771 +1394936.213011 +1394936.213011 +1394936.213011 +1394964.256039 +1394964.256039 +1394964.256039 +1394971.252253 +1394987.852136 +1394987.852136 +1394997.491778 +1394997.491778 +1395006.278705 +1395006.278705 +1395006.712747 +1395006.712747 +1395031.909736 +1395031.909736 +1395036.552377 +1395041.709110 +1395041.709110 +1395041.709110 +1395045.650149 +1395045.650149 +1395045.650149 +1395045.650149 +1395045.972838 +1395053.315259 +1395062.560960 +1395069.133664 +1395069.133664 +1395072.389556 +1395105.868290 +1395105.868290 +1395118.587450 +1395118.587450 +1395119.989290 +1395124.774561 +1395132.506428 +1395132.506428 +1395132.801312 +1395146.200750 +1395146.200750 +1395146.200750 +1395152.825900 +1395161.085425 +1395172.336253 +1395172.336253 +1395172.336253 +1395179.775463 +1395179.775463 +1395179.775463 +1395189.339546 +1395199.878188 +1395215.005087 +1395215.005087 +1395215.005087 +1395230.435380 +1395230.435380 +1395230.435380 +1395248.461079 +1395248.461079 +1395248.461079 +1395248.461079 +1395248.461079 +1395249.880080 +1395249.880080 +1395260.080184 +1395263.653962 +1395270.860908 +1395273.685003 +1395296.444882 +1395296.444882 +1395296.444882 +1395296.444882 +1395301.212883 +1395311.861389 +1395319.232404 +1395319.232404 +1395319.232404 +1395319.232404 +1395326.767447 +1395334.072658 +1395334.072658 +1395334.072658 +1395359.727742 +1395362.695709 +1395368.547418 +1395368.547418 +1395368.547418 +1395368.547418 +1395385.217595 +1395390.378322 +1395390.378322 +1395390.378322 +1395403.164820 +1395415.177723 +1395418.762290 +1395418.762290 +1395426.355555 +1395430.504219 +1395452.276350 +1395453.969014 +1395453.969014 +1395453.969014 +1395453.969014 +1395468.244179 +1395470.218486 +1395470.218486 +1395472.222705 +1395475.003076 +1395475.003076 +1395478.088715 +1395478.088715 +1395492.866318 +1395492.866318 +1395515.608362 +1395515.608362 +1395515.608362 +1395515.608362 +1395515.608362 +1395538.941271 +1395547.071679 +1395571.813197 +1395571.813197 +1395571.813197 +1395571.813197 +1395590.546948 +1395590.546948 +1395590.546948 +1395590.546948 +1395590.546948 +1395590.546948 +1395590.546948 +1395590.546948 +1395590.546948 +1395614.733806 +1395614.733806 +1395627.456471 +1395627.456471 +1395627.456471 +1395627.456471 +1395648.681232 +1395648.681232 +1395676.726845 +1395676.726845 +1395676.726845 +1395676.726845 +1395676.726845 +1395678.286235 +1395678.286235 +1395690.718120 +1395690.718120 +1395691.467532 +1395691.467532 +1395708.138724 +1395716.064182 +1395722.351975 +1395722.351975 +1395722.351975 +1395722.351975 +1395722.351975 +1395722.351975 +1395741.684909 +1395741.684909 +1395741.684909 +1395745.262475 +1395763.870918 +1395763.870918 +1395763.870918 +1395768.730746 +1395768.730746 +1395777.639021 +1395786.827775 +1395786.827775 +1395787.467808 +1395796.944674 +1395806.591647 +1395822.886783 +1395836.166468 +1395836.166468 +1395839.613142 +1395850.246563 +1395850.246563 +1395850.246563 +1395850.246563 +1395860.875365 +1395876.545271 +1395876.545271 +1395876.545271 +1395876.545271 +1395876.545271 +1395877.423018 +1395877.423018 +1395883.190333 +1395889.109377 +1395889.109377 +1395897.626499 +1395909.325182 +1395909.325182 +1395909.325182 +1395915.245184 +1395943.708034 +1395943.708034 +1395943.708034 +1395943.708034 +1395945.654728 +1395960.435396 +1395960.435396 +1395978.198168 +1395978.198168 +1395978.198168 +1395981.545638 +1395981.545638 +1395995.345595 +1395995.345595 +1396003.144610 +1396005.616958 +1396009.821572 +1396009.821572 +1396016.708798 +1396016.708798 +1396028.553798 +1396028.553798 +1396049.869049 +1396049.869049 +1396049.869049 +1396049.869049 +1396065.213317 +1396065.213317 +1396075.221535 +1396075.221535 +1396080.072407 +1396097.636916 +1396097.636916 +1396108.654733 +1396108.654733 +1396108.654733 +1396108.654733 +1396108.654733 +1396108.654733 +1396109.870311 +1396131.266303 +1396152.496261 +1396158.019030 +1396159.363731 +1396159.363731 +1396159.363731 +1396159.363731 +1396159.363731 +1396159.363731 +1396159.363731 +1396181.522591 +1396181.522591 +1396181.522591 +1396198.537523 +1396207.554067 +1396207.554067 +1396207.554067 +1396207.554067 +1396224.366335 +1396225.537782 +1396225.537782 +1396225.537782 +1396225.537782 +1396225.903672 +1396243.716230 +1396250.333717 +1396250.333717 +1396250.333717 +1396250.800158 +1396291.728109 +1396291.728109 +1396291.728109 +1396291.728109 +1396291.728109 +1396291.728109 +1396295.537375 +1396303.134927 +1396303.134927 +1396314.845089 +1396314.845089 +1396330.007139 +1396330.494574 +1396331.747421 +1396331.747421 +1396352.774025 +1396352.774025 +1396352.774025 +1396352.774025 +1396355.070020 +1396355.070020 +1396370.370339 +1396370.370339 +1396370.370339 +1396382.828870 +1396383.662564 +1396400.138503 +1396400.138503 +1396416.373783 +1396416.373783 +1396416.373783 +1396416.373783 +1396435.521429 +1396435.521429 +1396443.022043 +1396443.022043 +1396443.022043 +1396443.022043 +1396443.022043 +1396443.022043 +1396458.769050 +1396458.769050 +1396463.688946 +1396466.754682 +1396466.754682 +1396480.824363 +1396481.697958 +1396486.141284 +1396486.141284 +1396520.555859 +1396520.555859 +1396520.555859 +1396520.555859 +1396520.555859 +1396537.801001 +1396537.801001 +1396541.108117 +1396541.885273 +1396570.152540 +1396570.152540 +1396570.152540 +1396581.997161 +1396581.997161 +1396582.517955 +1396596.307087 +1396596.307087 +1396596.307087 +1396596.307087 +1396603.989415 +1396603.989415 +1396605.021910 +1396614.921953 +1396623.625916 +1396623.625916 +1396623.625916 +1396628.089031 +1396628.089031 +1396628.089031 +1396658.359916 +1396659.613532 +1396659.613532 +1396659.613532 +1396659.613532 +1396659.613532 +1396675.716358 +1396698.584409 +1396707.446351 +1396707.446351 +1396707.446351 +1396707.446351 +1396707.446351 +1396707.446351 +1396707.446351 +1396708.854747 +1396713.431489 +1396716.457059 +1396725.937319 +1396728.131628 +1396737.813870 +1396757.273873 +1396757.273873 +1396757.273873 +1396769.520786 +1396769.520786 +1396780.520334 +1396780.520334 +1396789.814233 +1396789.814233 +1396790.166009 +1396797.636652 +1396797.636652 +1396797.636652 +1396833.690807 +1396833.690807 +1396849.625685 +1396849.625685 +1396849.625685 +1396849.625685 +1396849.625685 +1396849.625685 +1396849.625685 +1396849.625685 +1396849.625685 +1396865.090367 +1396865.922118 +1396885.779207 +1396885.779207 +1396885.779207 +1396886.500147 +1396923.561626 +1396923.561626 +1396923.561626 +1396923.561626 +1396923.561626 +1396923.561626 +1396923.561626 +1396923.822837 +1396923.822837 +1396944.938272 +1396944.938272 +1396944.938272 +1396948.629669 +1396948.629669 +1396954.915570 +1396959.530810 +1396967.797069 +1396967.797069 +1397000.280143 +1397000.280143 +1397000.280143 +1397000.280143 +1397000.280143 +1397009.068708 +1397012.793784 +1397012.793784 +1397012.793784 +1397012.793784 +1397022.489950 +1397036.877138 +1397036.877138 +1397036.877138 +1397051.895927 +1397051.895927 +1397054.925258 +1397055.895539 +1397090.479644 +1397095.789289 +1397095.789289 +1397095.789289 +1397095.789289 +1397095.789289 +1397095.789289 +1397095.789289 +1397095.789289 +1397104.751362 +1397104.751362 +1397104.751362 +1397115.971531 +1397115.971531 +1397130.013642 +1397139.223296 +1397139.223296 +1397139.223296 +1397152.922044 +1397157.850016 +1397157.850016 +1397163.600392 +1397183.970355 +1397183.970355 +1397191.827156 +1397191.827156 +1397196.714603 +1397196.714603 +1397196.714603 +1397208.071168 +1397226.685155 +1397226.685155 +1397236.729272 +1397236.729272 +1397236.729272 +1397236.729272 +1397239.911767 +1397239.911767 +1397249.924197 +1397249.924197 +1397249.924197 +1397265.050849 +1397279.228249 +1397279.228249 +1397279.228249 +1397310.338391 +1397310.338391 +1397310.338391 +1397311.991940 +1397311.991940 +1397311.991940 +1397311.991940 +1397312.608894 +1397319.984780 +1397319.984780 +1397326.475320 +1397335.185128 +1397335.185128 +1397335.185128 +1397340.922219 +1397364.508019 +1397364.508019 +1397369.663723 +1397369.713439 +1397390.048219 +1397390.048219 +1397396.878699 +1397396.878699 +1397396.878699 +1397396.878699 +1397420.880154 +1397420.880154 +1397436.689322 +1397436.689322 +1397436.689322 +1397436.689322 +1397436.796530 +1397436.796530 +1397436.796530 +1397445.694139 +1397445.694139 +1397453.354204 +1397480.498090 +1397480.498090 +1397480.498090 +1397481.805191 +1397481.805191 +1397486.527881 +1397486.527881 +1397486.527881 +1397507.383356 +1397516.710106 +1397516.710106 +1397554.070449 +1397554.070449 +1397554.070449 +1397554.070449 +1397554.070449 +1397554.070449 +1397554.070449 +1397554.070449 +1397554.070449 +1397556.619000 +1397556.619000 +1397556.619000 +1397584.274927 +1397584.274927 +1397593.503386 +1397594.369496 +1397596.619730 +1397596.619730 +1397600.925407 +1397600.925407 +1397600.925407 +1397609.655706 +1397625.476361 +1397625.476361 +1397629.093873 +1397629.093873 +1397629.093873 +1397637.836444 +1397640.313977 +1397657.663290 +1397672.720672 +1397672.720672 +1397672.720672 +1397672.720672 +1397675.671554 +1397675.671554 +1397679.200157 +1397711.413998 +1397711.413998 +1397711.413998 +1397711.413998 +1397711.413998 +1397711.413998 +1397716.490133 +1397716.490133 +1397727.628135 +1397727.628135 +1397740.785548 +1397740.785548 +1397756.655194 +1397765.876308 +1397775.412849 +1397779.772201 +1397779.772201 +1397779.772201 +1397787.625347 +1397788.981427 +1397788.981427 +1397788.981427 +1397808.573691 +1397808.573691 +1397808.573691 +1397808.573691 +1397826.240515 +1397826.240515 +1397826.240515 +1397826.240515 +1397832.039420 +1397848.985339 +1397848.985339 +1397848.985339 +1397848.985339 +1397851.274273 +1397851.274273 +1397863.380123 +1397863.380123 +1397880.546463 +1397880.546463 +1397880.546463 +1397880.546463 +1397880.546463 +1397892.092504 +1397902.673391 +1397913.680027 +1397913.680027 +1397931.438584 +1397931.438584 +1397931.438584 +1397931.438584 +1397931.438584 +1397937.017811 +1397937.017811 +1397962.367050 +1397962.367050 +1397962.367050 +1397962.367050 +1397962.367050 +1397967.069864 +1397970.983823 +1397975.115036 +1397975.115036 +1398001.138449 +1398002.104511 +1398002.104511 +1398004.759916 +1398004.759916 +1398020.609400 +1398024.617022 +1398036.067320 +1398036.067320 +1398036.850234 +1398036.867495 +1398036.867495 +1398050.556735 +1398050.556735 +1398050.556735 +1398050.556735 +1398050.556735 +1398051.763274 +1398051.763274 +1398077.958019 +1398077.958019 +1398096.664348 +1398096.664348 +1398111.084821 +1398111.084821 +1398111.084821 +1398114.590424 +1398138.328835 +1398141.096175 +1398141.096175 +1398141.096175 +1398141.096175 +1398141.096175 +1398141.096175 +1398151.142226 +1398172.916685 +1398176.711947 +1398176.711947 +1398183.501769 +1398183.501769 +1398183.501769 +1398188.530772 +1398188.530772 +1398188.530772 +1398189.682476 +1398200.296594 +1398211.788210 +1398235.323831 +1398235.323831 +1398235.323831 +1398237.801427 +1398239.640634 +1398263.497682 +1398263.497682 +1398263.497682 +1398263.497682 +1398263.497682 +1398263.497682 +1398263.497682 +1398285.905115 +1398285.905115 +1398299.119844 +1398299.119844 +1398299.119844 +1398299.119844 +1398299.119844 +1398299.119844 +1398326.543545 +1398326.543545 +1398326.543545 +1398327.444497 +1398327.444497 +1398329.313061 +1398329.313061 +1398348.574974 +1398348.923350 +1398363.401079 +1398372.808367 +1398372.808367 +1398372.808367 +1398372.808367 +1398372.808367 +1398372.808367 +1398391.250929 +1398391.250929 +1398391.250929 +1398391.250929 +1398391.250929 +1398399.777874 +1398399.777874 +1398399.777874 +1398433.713845 +1398433.713845 +1398433.713845 +1398447.630178 +1398455.062442 +1398455.062442 +1398455.062442 +1398455.062442 +1398461.840910 +1398461.840910 +1398461.840910 +1398466.256006 +1398481.589008 +1398481.589008 +1398481.589008 +1398496.284906 +1398496.284906 +1398496.284906 +1398496.284906 +1398496.284906 +1398496.284906 +1398496.284906 +1398507.460970 +1398535.572310 +1398535.572310 +1398535.572310 +1398548.894189 +1398566.075705 +1398566.075705 +1398566.075705 +1398566.075705 +1398566.075705 +1398587.870453 +1398587.870453 +1398587.870453 +1398587.870453 +1398594.786402 +1398594.786402 +1398594.786402 +1398594.786402 +1398596.589390 +1398625.605840 +1398625.605840 +1398625.605840 +1398625.605840 +1398631.277414 +1398636.496533 +1398643.732747 +1398643.732747 +1398643.732747 +1398673.949510 +1398673.949510 +1398673.949510 +1398673.949510 +1398673.949510 +1398673.949510 +1398690.044127 +1398690.044127 +1398690.044127 +1398690.044127 +1398718.504114 +1398718.504114 +1398718.504114 +1398718.504114 +1398718.504114 +1398718.504114 +1398718.504114 +1398720.148326 +1398725.983599 +1398739.061880 +1398758.423980 +1398758.423980 +1398758.423980 +1398758.423980 +1398776.609515 +1398776.609515 +1398776.609515 +1398776.609515 +1398776.609515 +1398789.404920 +1398797.849455 +1398797.849455 +1398797.849455 +1398802.354810 +1398802.354810 +1398811.940325 +1398811.940325 +1398811.940325 +1398824.868383 +1398836.722331 +1398836.722331 +1398836.722331 +1398836.722331 +1398836.722331 +1398852.572090 +1398852.572090 +1398854.315268 +1398864.188342 +1398864.188342 +1398885.590136 +1398885.590136 +1398885.590136 +1398885.590136 +1398885.590136 +1398886.640916 +1398899.107087 +1398901.234514 +1398912.513382 +1398918.934118 +1398949.412790 +1398949.412790 +1398949.412790 +1398949.412790 +1398949.412790 +1398949.412790 +1398959.938390 +1398959.938390 +1398959.938390 +1398959.938390 +1398964.291510 +1398965.631036 +1398999.840727 +1398999.840727 +1398999.840727 +1398999.840727 +1398999.840727 +1398999.840727 +1399011.122456 +1399016.583442 +1399016.583442 +1399016.583442 +1399019.408799 +1399019.408799 +1399019.408799 +1399025.745497 +1399045.418834 +1399050.970322 +1399050.970322 +1399057.973310 +1399070.811993 +1399070.811993 +1399087.968187 +1399087.968187 +1399087.968187 +1399087.968187 +1399096.377382 +1399107.147131 +1399107.147131 +1399107.147131 +1399108.010685 +1399108.010685 +1399113.555536 +1399117.771643 +1399121.646429 +1399129.606561 +1399158.975124 +1399158.975124 +1399158.975124 +1399158.975124 +1399158.975124 +1399170.617333 +1399170.617333 +1399170.617333 +1399170.617333 +1399170.617333 +1399190.587866 +1399190.587866 +1399190.587866 +1399190.587866 +1399204.310937 +1399204.310937 +1399204.310937 +1399224.584624 +1399224.584624 +1399224.584624 +1399226.230108 +1399226.230108 +1399226.230108 +1399236.398738 +1399260.001160 +1399260.001160 +1399280.492659 +1399280.492659 +1399280.492659 +1399280.492659 +1399299.437016 +1399299.437016 +1399299.437016 +1399299.437016 +1399299.437016 +1399299.437016 +1399299.437016 +1399299.437016 +1399299.437016 +1399299.437016 +1399313.673730 +1399313.673730 +1399313.673730 +1399323.858344 +1399337.442265 +1399337.442265 +1399349.131842 +1399349.131842 +1399356.459132 +1399356.459132 +1399356.459132 +1399356.459132 +1399378.495757 +1399378.495757 +1399378.495757 +1399392.934696 +1399392.934696 +1399392.934696 +1399403.715263 +1399403.715263 +1399410.125560 +1399410.125560 +1399410.125560 +1399410.125560 +1399442.861695 +1399442.861695 +1399442.861695 +1399442.861695 +1399442.861695 +1399442.861695 +1399452.290581 +1399462.459948 +1399462.459948 +1399462.459948 +1399470.360746 +1399489.224583 +1399489.224583 +1399489.224583 +1399500.540939 +1399507.477014 +1399507.477014 +1399507.477014 +1399510.394019 +1399510.394019 +1399525.352438 +1399525.352438 +1399531.836989 +1399531.836989 +1399546.214078 +1399546.214078 +1399546.214078 +1399546.214078 +1399551.222515 +1399567.328241 +1399567.328241 +1399567.328241 +1399575.916322 +1399575.916322 +1399583.786902 +1399583.786902 +1399602.557177 +1399602.557177 +1399606.282709 +1399606.282709 +1399645.061727 +1399645.061727 +1399645.061727 +1399645.061727 +1399645.061727 +1399645.061727 +1399656.934909 +1399656.934909 +1399656.934909 +1399656.934909 +1399656.934909 +1399656.934909 +1399656.934909 +1399656.934909 +1399692.550349 +1399692.550349 +1399713.859549 +1399713.859549 +1399716.049135 +1399716.049135 +1399716.049135 +1399716.049135 +1399717.398462 +1399717.398462 +1399734.296968 +1399734.296968 +1399734.296968 +1399734.296968 +1399755.144418 +1399755.144418 +1399755.144418 +1399755.144418 +1399760.462508 +1399766.990907 +1399766.990907 +1399766.990907 +1399772.566016 +1399776.164646 +1399778.848715 +1399778.848715 +1399791.296332 +1399791.296332 +1399811.348978 +1399813.398559 +1399828.412370 +1399828.412370 +1399828.412370 +1399828.412370 +1399828.412370 +1399828.412370 +1399835.191986 +1399835.191986 +1399835.191986 +1399835.191986 +1399835.191986 +1399844.768528 +1399844.768528 +1399854.830157 +1399871.584583 +1399879.641077 +1399892.835789 +1399892.835789 +1399899.535636 +1399921.645686 +1399925.993442 +1399925.993442 +1399925.993442 +1399925.993442 +1399925.993442 +1399932.717851 +1399937.321013 +1399937.321013 +1399937.321013 +1399937.321013 +1399938.891238 +1399958.959076 +1399958.959076 +1399958.959076 +1399959.891713 +1399959.891713 +1399969.338271 +1399969.338271 +1399983.918037 +1399983.918037 +1400001.771501 +1400001.771501 +1400001.771501 +1400004.027445 +1400004.027445 +1400024.406230 +1400029.839885 +1400052.070843 +1400052.070843 +1400052.070843 +1400059.103616 +1400059.103616 +1400059.103616 +1400059.103616 +1400070.712827 +1400070.712827 +1400072.093417 +1400072.093417 +1400072.093417 +1400072.093417 +1400072.093417 +1400083.812297 +1400083.812297 +1400083.812297 +1400089.473689 +1400092.459522 +1400112.874125 +1400112.874125 +1400120.261837 +1400120.261837 +1400120.261837 +1400125.373430 +1400125.373430 +1400125.373430 +1400149.387737 +1400149.387737 +1400150.621218 +1400161.535684 +1400161.535684 +1400161.535684 +1400164.268639 +1400164.268639 +1400191.521421 +1400191.521421 +1400197.434931 +1400197.434931 +1400210.532365 +1400210.532365 +1400223.123310 +1400223.123310 +1400230.627946 +1400230.627946 +1400230.627946 +1400247.650955 +1400247.650955 +1400247.650955 +1400247.650955 +1400247.650955 +1400255.186634 +1400255.186634 +1400279.733004 +1400279.733004 +1400279.733004 +1400279.733004 +1400279.733004 +1400283.834531 +1400283.834531 +1400283.834531 +1400317.455717 +1400317.455717 +1400317.455717 +1400317.455717 +1400317.455717 +1400317.637858 +1400317.637858 +1400319.829931 +1400327.478771 +1400327.478771 +1400350.880150 +1400350.880150 +1400356.550357 +1400356.550357 +1400356.550357 +1400357.370312 +1400357.691530 +1400385.299781 +1400385.299781 +1400385.299781 +1400405.937871 +1400406.838507 +1400406.838507 +1400406.838507 +1400406.838507 +1400406.838507 +1400413.203008 +1400413.203008 +1400413.203008 +1400439.457003 +1400444.357202 +1400444.357202 +1400444.357202 +1400452.793436 +1400452.793436 +1400459.005116 +1400466.433992 +1400466.433992 +1400480.757213 +1400480.757213 +1400480.757213 +1400480.757213 +1400499.017277 +1400499.017277 +1400499.017277 +1400499.017277 +1400519.141482 +1400519.141482 +1400522.734683 +1400522.734683 +1400527.157732 +1400527.157732 +1400527.157732 +1400535.390919 +1400544.433925 +1400544.433925 +1400550.752306 +1400551.364879 +1400560.595176 +1400560.595176 +1400560.595176 +1400583.667835 +1400583.667835 +1400590.968334 +1400590.968334 +1400590.968334 +1400610.044970 +1400610.044970 +1400612.600445 +1400612.950930 +1400615.139179 +1400615.139179 +1400618.715979 +1400618.715979 +1400644.037562 +1400644.037562 +1400644.037562 +1400649.833510 +1400653.228146 +1400653.228146 +1400653.228146 +1400655.856055 +1400668.525082 +1400668.525082 +1400675.376448 +1400675.376448 +1400675.376448 +1400675.376448 +1400701.636796 +1400701.636796 +1400701.636796 +1400701.636796 +1400717.442395 +1400721.377458 +1400725.406719 +1400725.406719 +1400728.761073 +1400739.342938 +1400742.341606 +1400742.341606 +1400747.843489 +1400747.843489 +1400772.838077 +1400773.229865 +1400785.405683 +1400785.405683 +1400785.405683 +1400785.405683 +1400793.607125 +1400793.607125 +1400793.607125 +1400793.607125 +1400795.353336 +1400823.846210 +1400823.846210 +1400830.020648 +1400830.020648 +1400830.020648 +1400839.906948 +1400839.906948 +1400840.640151 +1400840.640151 +1400857.932531 +1400857.932531 +1400857.932531 +1400857.932531 +1400864.505573 +1400864.505573 +1400864.505573 +1400864.505573 +1400870.618627 +1400872.474208 +1400872.474208 +1400872.474208 +1400893.256341 +1400893.870761 +1400894.336549 +1400894.336549 +1400923.805470 +1400925.665110 +1400925.665110 +1400948.061093 +1400948.061093 +1400948.061093 +1400948.061093 +1400948.061093 +1400958.013186 +1400960.701231 +1400966.923942 +1400966.923942 +1400981.891353 +1400981.891353 +1400984.703510 +1400984.703510 +1400985.267872 +1401009.200198 +1401009.200198 +1401009.200198 +1401009.200198 +1401009.200198 +1401011.694492 +1401014.567944 +1401014.567944 +1401020.227394 +1401030.074554 +1401030.074554 +1401041.517973 +1401045.717097 +1401045.717097 +1401046.835182 +1401049.485800 +1401052.060691 +1401052.060691 +1401080.590906 +1401080.590906 +1401081.896853 +1401091.326553 +1401091.326553 +1401108.059931 +1401108.059931 +1401108.216087 +1401108.216087 +1401118.192212 +1401119.914663 +1401131.225605 +1401131.225605 +1401131.225605 +1401131.225605 +1401131.225605 +1401131.225605 +1401146.051321 +1401146.410892 +1401151.128133 +1401169.552551 +1401169.552551 +1401169.552551 +1401176.727708 +1401176.727708 +1401202.033429 +1401202.033429 +1401202.033429 +1401202.033429 +1401213.017873 +1401214.925495 +1401224.673475 +1401226.194853 +1401226.194853 +1401240.376169 +1401240.376169 +1401240.376169 +1401240.376169 +1401240.376169 +1401240.376169 +1401243.840949 +1401243.840949 +1401263.726958 +1401263.726958 +1401271.002524 +1401271.002524 +1401282.488709 +1401285.988100 +1401310.437699 +1401310.437699 +1401310.437699 +1401310.437699 +1401310.437699 +1401310.437699 +1401310.437699 +1401312.221762 +1401312.221762 +1401319.022078 +1401338.299125 +1401338.299125 +1401346.012714 +1401346.012714 +1401353.195661 +1401354.605661 +1401372.442148 +1401372.442148 +1401372.442148 +1401372.442148 +1401372.442148 +1401378.240892 +1401378.240892 +1401395.513052 +1401406.079098 +1401406.079098 +1401406.079098 +1401414.477413 +1401419.785898 +1401419.785898 +1401419.785898 +1401420.395471 +1401420.395471 +1401420.395471 +1401434.538300 +1401434.538300 +1401455.238729 +1401456.264684 +1401456.264684 +1401459.962532 +1401459.962532 +1401470.691072 +1401470.691072 +1401476.555301 +1401485.447769 +1401485.447769 +1401500.123905 +1401500.123905 +1401500.123905 +1401500.123905 +1401500.123905 +1401500.123905 +1401503.183334 +1401532.412487 +1401533.805142 +1401533.805142 +1401533.805142 +1401545.574965 +1401545.574965 +1401545.574965 +1401545.574965 +1401552.170702 +1401555.814370 +1401562.580043 +1401562.580043 +1401562.580043 +1401565.168180 +1401583.341493 +1401583.341493 +1401602.474484 +1401602.474484 +1401602.474484 +1401602.474484 +1401602.474484 +1401609.149306 +1401609.149306 +1401614.350816 +1401628.533065 +1401640.213657 +1401654.542783 +1401662.704940 +1401662.704940 +1401662.704940 +1401662.704940 +1401664.191877 +1401664.191877 +1401664.191877 +1401664.191877 +1401679.922100 +1401679.922100 +1401679.922100 +1401683.037943 +1401709.748724 +1401709.748724 +1401709.748724 +1401709.748724 +1401732.026014 +1401732.026014 +1401732.026014 +1401734.886232 +1401734.886232 +1401734.886232 +1401734.886232 +1401754.114136 +1401754.114136 +1401761.643040 +1401768.072765 +1401768.072765 +1401778.046540 +1401778.046540 +1401778.046540 +1401778.046540 +1401778.046540 +1401778.046540 +1401778.046540 +1401778.046540 +1401807.406831 +1401807.406831 +1401814.965958 +1401814.965958 +1401814.965958 +1401814.965958 +1401814.965958 +1401814.965958 +1401825.120183 +1401835.612674 +1401852.732878 +1401852.732878 +1401860.514980 +1401872.129600 +1401873.652958 +1401873.652958 +1401880.924848 +1401880.924848 +1401895.033690 +1401895.033690 +1401895.033690 +1401895.033690 +1401895.033690 +1401895.033690 +1401911.340371 +1401911.340371 +1401911.340371 +1401911.340371 +1401911.340371 +1401912.803667 +1401912.803667 +1401922.888595 +1401922.888595 +1401936.173386 +1401944.039226 +1401949.816664 +1401990.263612 +1401990.263612 +1401990.263612 +1401990.263612 +1401990.263612 +1401990.263612 +1401995.483774 +1401995.483774 +1401995.483774 +1401995.483774 +1401999.924582 +1401999.924582 +1402003.579358 +1402009.107848 +1402011.203598 +1402023.219407 +1402033.810091 +1402033.810091 +1402033.810091 +1402040.339529 +1402040.339529 +1402040.339529 +1402050.621661 +1402050.621661 +1402075.328709 +1402075.328709 +1402075.328709 +1402077.497377 +1402091.765143 +1402091.765143 +1402095.451777 +1402095.451777 +1402110.443410 +1402110.443410 +1402110.443410 +1402110.443410 +1402116.116791 +1402117.375686 +1402117.375686 +1402135.025828 +1402135.025828 +1402145.963987 +1402145.963987 +1402145.963987 +1402145.963987 +1402145.963987 +1402180.781648 +1402180.781648 +1402180.781648 +1402180.781648 +1402180.781648 +1402180.781648 +1402187.941564 +1402187.941564 +1402191.926560 +1402191.926560 +1402227.561085 +1402227.561085 +1402227.561085 +1402227.561085 +1402229.890493 +1402229.890493 +1402229.890493 +1402229.890493 +1402236.336688 +1402258.337782 +1402258.337782 +1402258.337782 +1402258.337782 +1402260.360644 +1402269.346842 +1402269.346842 +1402269.346842 +1402269.346842 +1402276.157770 +1402276.157770 +1402278.768189 +1402291.781205 +1402294.819931 +1402294.819931 +1402324.911471 +1402324.911471 +1402324.911471 +1402324.911471 +1402328.409738 +1402328.409738 +1402328.409738 +1402354.884086 +1402354.884086 +1402354.884086 +1402354.884086 +1402354.884086 +1402363.823454 +1402372.445405 +1402372.445405 +1402391.865969 +1402397.298582 +1402397.298582 +1402397.298582 +1402397.298582 +1402397.298582 +1402397.298582 +1402405.907478 +1402405.907478 +1402423.609744 +1402428.419354 +1402428.419354 +1402428.419354 +1402438.236614 +1402438.236614 +1402440.150779 +1402440.150779 +1402446.205582 +1402446.205582 +1402473.731981 +1402473.731981 +1402473.731981 +1402473.731981 +1402473.731981 +1402473.731981 +1402473.731981 +1402473.731981 +1402509.098063 +1402509.098063 +1402509.098063 +1402509.098063 +1402520.351535 +1402520.351535 +1402520.351535 +1402528.152709 +1402532.436691 +1402534.277983 +1402534.277983 +1402547.663598 +1402547.663598 +1402547.663598 +1402547.663598 +1402547.663598 +1402549.940791 +1402549.940791 +1402549.940791 +1402559.901133 +1402572.166869 +1402578.623709 +1402578.623709 +1402590.991357 +1402611.154418 +1402611.154418 +1402611.154418 +1402611.154418 +1402611.154418 +1402611.154418 +1402648.348241 +1402648.348241 +1402648.348241 +1402648.348241 +1402663.880999 +1402663.880999 +1402663.880999 +1402666.083349 +1402668.735858 +1402668.735858 +1402677.853409 +1402677.853409 +1402677.853409 +1402677.853409 +1402692.343572 +1402698.895505 +1402698.895505 +1402698.895505 +1402698.895505 +1402698.895505 +1402715.466378 +1402715.466378 +1402715.466378 +1402715.466378 +1402720.705726 +1402720.705726 +1402722.746541 +1402726.785726 +1402732.942042 +1402760.281918 +1402760.281918 +1402760.281918 +1402760.281918 +1402760.871413 +1402783.306502 +1402783.306502 +1402783.306502 +1402783.306502 +1402783.306502 +1402788.347389 +1402805.185709 +1402805.185709 +1402816.956008 +1402816.956008 +1402816.956008 +1402816.956008 +1402816.956008 +1402816.956008 +1402816.956008 +1402819.095123 +1402844.183224 +1402844.183224 +1402844.183224 +1402844.183224 +1402865.536927 +1402865.536927 +1402865.536927 +1402865.536927 +1402865.536927 +1402865.536927 +1402872.098046 +1402872.098046 +1402872.098046 +1402872.098046 +1402894.515228 +1402894.515228 +1402910.082330 +1402926.800804 +1402927.926813 +1402927.926813 +1402927.926813 +1402927.926813 +1402929.951969 +1402947.532025 +1402953.792589 +1402953.792589 +1402953.792589 +1402953.792589 +1402953.792589 +1402953.792589 +1402953.792589 +1402972.246164 +1402972.246164 +1402980.122973 +1402980.122973 +1402980.122973 +1402991.023873 +1402999.510187 +1402999.510187 +1402999.510187 +1403013.319361 +1403013.319361 +1403014.981818 +1403014.981818 +1403049.055001 +1403049.055001 +1403049.055001 +1403049.055001 +1403049.055001 +1403049.055001 +1403050.112519 +1403050.112519 +1403050.112519 +1403050.112519 +1403060.079230 +1403060.079230 +1403062.882923 +1403062.882923 +1403088.874190 +1403088.874190 +1403099.431025 +1403099.431025 +1403099.431025 +1403109.640117 +1403118.026945 +1403118.026945 +1403118.026945 +1403138.923899 +1403138.923899 +1403142.235327 +1403142.235327 +1403142.235327 +1403150.809446 +1403150.809446 +1403150.809446 +1403150.809446 +1403178.106094 +1403178.106094 +1403199.876301 +1403199.876301 +1403199.876301 +1403199.876301 +1403199.876301 +1403199.876301 +1403199.876301 +1403199.876301 +1403207.668619 +1403207.668619 +1403217.089650 +1403217.089650 +1403220.672994 +1403220.672994 +1403228.496370 +1403237.721346 +1403237.721346 +1403238.352161 +1403238.352161 +1403238.352161 +1403238.352161 +1403238.352161 +1403269.789535 +1403269.789535 +1403274.797337 +1403274.797337 +1403297.148344 +1403297.148344 +1403297.148344 +1403297.148344 +1403310.378045 +1403311.517169 +1403323.245329 +1403323.245329 +1403323.245329 +1403323.245329 +1403323.245329 +1403325.121593 +1403347.085018 +1403347.085018 +1403347.085018 +1403347.085018 +1403347.085018 +1403349.549665 +1403357.819521 +1403362.427955 +1403362.427955 +1403362.427955 +1403367.799162 +1403373.614577 +1403373.614577 +1403387.550719 +1403404.574930 +1403405.804660 +1403405.804660 +1403405.804660 +1403405.804660 +1403420.159614 +1403420.159614 +1403420.159614 +1403420.159614 +1403454.968806 +1403454.968806 +1403454.968806 +1403454.968806 +1403454.968806 +1403454.968806 +1403454.968806 +1403454.968806 +1403479.552436 +1403479.552436 +1403479.552436 +1403497.657261 +1403497.657261 +1403497.657261 +1403497.657261 +1403497.657261 +1403497.657261 +1403499.515543 +1403499.515543 +1403499.515543 +1403521.395890 +1403521.395890 +1403521.395890 +1403527.932264 +1403530.860448 +1403541.307882 +1403541.307882 +1403541.307882 +1403554.174241 +1403554.174241 +1403559.153251 +1403559.153251 +1403562.659484 +1403562.659484 +1403563.013426 +1403572.745614 +1403588.421664 +1403588.421664 +1403588.421664 +1403588.421664 +1403588.421664 +1403588.421664 +1403590.351699 +1403590.351699 +1403594.704491 +1403612.840632 +1403612.840632 +1403613.369814 +1403618.577751 +1403626.724873 +1403626.724873 +1403632.239219 +1403644.518008 +1403652.843539 +1403652.843539 +1403665.384920 +1403691.830546 +1403691.830546 +1403691.830546 +1403691.830546 +1403691.830546 +1403691.830546 +1403691.830546 +1403703.523438 +1403703.523438 +1403703.523438 +1403703.523438 +1403720.152523 +1403724.126983 +1403724.126983 +1403724.126983 +1403727.802937 +1403757.323565 +1403757.323565 +1403757.323565 +1403763.686987 +1403763.686987 +1403763.686987 +1403763.686987 +1403763.686987 +1403766.589682 +1403766.589682 +1403782.214866 +1403782.214866 +1403782.214866 +1403782.214866 +1403797.605630 +1403799.571102 +1403799.571102 +1403799.571102 +1403819.157953 +1403826.656694 +1403826.656694 +1403826.656694 +1403828.620094 +1403828.620094 +1403831.529558 +1403848.479618 +1403848.479618 +1403848.479618 +1403848.479618 +1403869.215121 +1403869.215121 +1403869.215121 +1403869.215121 +1403869.215121 +1403872.724467 +1403904.483759 +1403904.483759 +1403904.483759 +1403904.483759 +1403904.483759 +1403904.483759 +1403904.483759 +1403904.483759 +1403913.154316 +1403913.154316 +1403924.628024 +1403924.628024 +1403924.628024 +1403924.966683 +1403942.673587 +1403942.673587 +1403957.368245 +1403957.368245 +1403957.368245 +1403957.368245 +1403957.368245 +1403957.368245 +1403966.406736 +1403981.509553 +1403981.509553 +1403986.861371 +1403986.861371 +1403986.861371 +1403987.600346 +1404000.644246 +1404000.644246 +1404000.644246 +1404000.644246 +1404005.429826 +1404033.954193 +1404033.954193 +1404033.954193 +1404037.036484 +1404037.394030 +1404037.394030 +1404037.394030 +1404037.394030 +1404050.613962 +1404050.613962 +1404065.961734 +1404065.961734 +1404079.467021 +1404079.467021 +1404079.467021 +1404079.467021 +1404079.467021 +1404093.161732 +1404099.098378 +1404099.098378 +1404099.098378 +1404109.714949 +1404117.680219 +1404118.201933 +1404118.201933 +1404123.557275 +1404123.557275 +1404123.866100 +1404148.006138 +1404148.006138 +1404148.006138 +1404148.006138 +1404148.621982 +1404157.709084 +1404157.709084 +1404157.709084 +1404157.709084 +1404157.709084 +1404187.609989 +1404187.609989 +1404187.609989 +1404187.609989 +1404187.609989 +1404191.421097 +1404192.096654 +1404203.206107 +1404206.098659 +1404206.098659 +1404217.636478 +1404217.636478 +1404226.952204 +1404226.952204 +1404226.952204 +1404233.429368 +1404260.358835 +1404260.358835 +1404260.358835 +1404260.358835 +1404260.358835 +1404260.358835 +1404260.358835 +1404271.497722 +1404271.497722 +1404278.637520 +1404278.637520 +1404278.637520 +1404295.957736 +1404299.426272 +1404304.571209 +1404304.571209 +1404312.339066 +1404312.339066 +1404312.339066 +1404326.602820 +1404326.602820 +1404340.618784 +1404364.887593 +1404364.887593 +1404364.887593 +1404364.887593 +1404364.887593 +1404364.887593 +1404369.155845 +1404369.155845 +1404369.155845 +1404377.398139 +1404383.690274 +1404383.690274 +1404383.690274 +1404383.690274 +1404410.149712 +1404410.149712 +1404410.149712 +1404410.149712 +1404414.406309 +1404430.459853 +1404430.459853 +1404445.568372 +1404445.568372 +1404445.568372 +1404445.568372 +1404445.568372 +1404445.568372 +1404445.568372 +1404449.005836 +1404449.005836 +1404449.005836 +1404452.111277 +1404452.111277 +1404487.482168 +1404487.482168 +1404487.482168 +1404487.482168 +1404487.869648 +1404500.860969 +1404500.860969 +1404500.860969 +1404500.860969 +1404504.522692 +1404515.667405 +1404518.488654 +1404518.488654 +1404522.386468 +1404526.403245 +1404526.403245 +1404526.403245 +1404538.830033 +1404550.173460 +1404550.173460 +1404550.173460 +1404551.053227 +1404559.421502 +1404561.120447 +1404570.204351 +1404575.749308 +1404575.749308 +1404575.749308 +1404575.749308 +1404586.748822 +1404599.494766 +1404605.741703 +1404605.741703 +1404613.512085 +1404613.512085 +1404615.126946 +1404615.126946 +1404615.126946 +1404628.839514 +1404642.982426 +1404650.377861 +1404687.592446 +1404687.592446 +1404687.592446 +1404687.592446 +1404687.592446 +1404687.592446 +1404687.592446 +1404687.592446 +1404692.604953 +1404692.604953 +1404702.672383 +1404702.672383 +1404702.672383 +1404702.672383 +1404702.672383 +1404702.672383 +1404702.672383 +1404702.672383 +1404732.989453 +1404732.989453 +1404732.989453 +1404732.989453 +1404732.989453 +1404732.989453 +1404741.206106 +1404760.438505 +1404760.438505 +1404760.438505 +1404762.064210 +1404762.064210 +1404769.422694 +1404769.422694 +1404778.303702 +1404778.303702 +1404792.867795 +1404792.867795 +1404796.749120 +1404796.749120 +1404796.749120 +1404796.749120 +1404822.903054 +1404829.283187 +1404829.283187 +1404829.283187 +1404829.283187 +1404829.283187 +1404829.283187 +1404829.283187 +1404829.283187 +1404829.283187 +1404839.862737 +1404867.179579 +1404867.179579 +1404867.179579 +1404867.179579 +1404898.747972 +1404898.747972 +1404902.149532 +1404902.149532 +1404902.149532 +1404902.149532 +1404902.149532 +1404902.149532 +1404902.149532 +1404907.621991 +1404907.621991 +1404915.400510 +1404915.400510 +1404928.126469 +1404931.457098 +1404931.457098 +1404931.457098 +1404941.417802 +1404953.152934 +1404957.043660 +1404957.043660 +1404957.043660 +1404957.043660 +1404973.353578 +1404977.682941 +1404977.682941 +1404987.452314 +1404987.452314 +1404989.394044 +1404989.394044 +1404997.144596 +1404997.144596 +1405018.772277 +1405018.772277 +1405018.772277 +1405018.772277 +1405018.772277 +1405018.772277 +1405018.772277 +1405018.772277 +1405024.137631 +1405037.707752 +1405061.532062 +1405061.532062 +1405061.532062 +1405061.532062 +1405061.532062 +1405061.532062 +1405063.411907 +1405063.787632 +1405063.787632 +1405089.291038 +1405089.291038 +1405102.045277 +1405102.045277 +1405102.579268 +1405107.899347 +1405124.515343 +1405124.515343 +1405124.515343 +1405124.515343 +1405137.673386 +1405137.673386 +1405137.673386 +1405137.673386 +1405137.673386 +1405144.882457 +1405153.758505 +1405153.758505 +1405153.758505 +1405177.516261 +1405177.516261 +1405177.516261 +1405177.516261 +1405177.516261 +1405180.062963 +1405180.062963 +1405184.077374 +1405184.077374 +1405184.730841 +1405200.267148 +1405200.267148 +1405223.758722 +1405223.758722 +1405223.758722 +1405223.758722 +1405223.758722 +1405223.758722 +1405223.758722 +1405243.005252 +1405243.005252 +1405252.630318 +1405252.630318 +1405252.630318 +1405255.498494 +1405273.103854 +1405291.040916 +1405291.040916 +1405291.040916 +1405291.040916 +1405291.040916 +1405291.040916 +1405291.040916 +1405291.362034 +1405291.362034 +1405303.186340 +1405303.186340 +1405303.186340 +1405303.186340 +1405316.163815 +1405329.625595 +1405338.449611 +1405338.449611 +1405338.449611 +1405338.449611 +1405338.449611 +1405338.449611 +1405361.680280 +1405361.680280 +1405361.680280 +1405361.680280 +1405382.633157 +1405382.633157 +1405382.633157 +1405382.633157 +1405382.633157 +1405392.205825 +1405392.205825 +1405392.205825 +1405416.064905 +1405416.064905 +1405416.064905 +1405416.064905 +1405436.503445 +1405436.503445 +1405436.503445 +1405436.503445 +1405440.959514 +1405440.959514 +1405458.398556 +1405458.398556 +1405458.398556 +1405458.398556 +1405458.398556 +1405458.398556 +1405458.398556 +1405458.398556 +1405469.349272 +1405469.349272 +1405497.243784 +1405497.243784 +1405497.243784 +1405497.243784 +1405497.243784 +1405497.243784 +1405518.516516 +1405526.123676 +1405527.560858 +1405527.560858 +1405527.560858 +1405527.560858 +1405527.560858 +1405527.560858 +1405527.560858 +1405532.385582 +1405539.391152 +1405539.391152 +1405545.139648 +1405545.139648 +1405545.139648 +1405545.139648 +1405557.532521 +1405561.293929 +1405576.905332 +1405576.905332 +1405576.905332 +1405595.635360 +1405595.635360 +1405595.635360 +1405598.394129 +1405598.394129 +1405600.601763 +1405602.762338 +1405612.624652 +1405627.831627 +1405627.831627 +1405629.971807 +1405629.971807 +1405629.971807 +1405629.971807 +1405637.662407 +1405637.662407 +1405658.349116 +1405658.349116 +1405670.106737 +1405670.106737 +1405677.954018 +1405692.793922 +1405692.793922 +1405692.793922 +1405713.105290 +1405713.105290 +1405713.105290 +1405713.105290 +1405713.105290 +1405718.896362 +1405718.896362 +1405718.896362 +1405725.805518 +1405746.300740 +1405746.300740 +1405746.300740 +1405746.300740 +1405746.300740 +1405746.300740 +1405746.300740 +1405748.429057 +1405756.998909 +1405756.998909 +1405762.140093 +1405762.140093 +1405765.947497 +1405767.360227 +1405791.767575 +1405791.767575 +1405808.011906 +1405808.011906 +1405810.174472 +1405810.174472 +1405810.174472 +1405810.174472 +1405811.219383 +1405811.219383 +1405825.530690 +1405825.530690 +1405825.530690 +1405826.480229 +1405831.794175 +1405831.794175 +1405833.504622 +1405833.504622 +1405849.046256 +1405849.046256 +1405851.609523 +1405851.609523 +1405888.005063 +1405888.005063 +1405888.005063 +1405888.005063 +1405906.760601 +1405906.760601 +1405906.760601 +1405906.760601 +1405906.760601 +1405924.614318 +1405924.614318 +1405924.900195 +1405924.900195 +1405924.900195 +1405924.900195 +1405926.895678 +1405926.895678 +1405951.368012 +1405951.368012 +1405951.901189 +1405951.901189 +1405964.782638 +1405968.965753 +1405968.965753 +1405968.965753 +1405968.965753 +1405969.988724 +1405982.235203 +1405982.235203 +1405982.235203 +1405999.342932 +1405999.342932 +1405999.342932 +1405999.342932 +1406001.792120 +1406013.650667 +1406013.650667 +1406013.650667 +1406022.261939 +1406030.768546 +1406040.885681 +1406040.885681 +1406040.885681 +1406043.279408 +1406047.801797 +1406047.801797 +1406047.801797 +1406070.205996 +1406078.602965 +1406078.602965 +1406078.602965 +1406078.602965 +1406078.602965 +1406085.435333 +1406092.871711 +1406092.871711 +1406096.550954 +1406096.550954 +1406110.969401 +1406110.969401 +1406110.969401 +1406126.160234 +1406129.833275 +1406129.833275 +1406134.096424 +1406134.096424 +1406134.096424 +1406140.952946 +1406143.657686 +1406153.201501 +1406153.201501 +1406153.201501 +1406153.201501 +1406153.201501 +1406159.833729 +1406163.751237 +1406175.809096 +1406175.809096 +1406182.282593 +1406189.306156 +1406189.306156 +1406189.306156 +1406204.483312 +1406204.483312 +1406219.929731 +1406219.929731 +1406219.929731 +1406219.929731 +1406219.929731 +1406219.929731 +1406232.320155 +1406232.320155 +1406253.731916 +1406253.731916 +1406253.731916 +1406253.731916 +1406253.731916 +1406253.731916 +1406253.731916 +1406255.771583 +1406255.771583 +1406258.494713 +1406272.471297 +1406283.242969 +1406283.242969 +1406284.293743 +1406284.293743 +1406285.185054 +1406299.370688 +1406301.005832 +1406301.053086 +1406305.184227 +1406305.184227 +1406305.184227 +1406318.490555 +1406318.490555 +1406321.197206 +1406328.085711 +1406348.046526 +1406348.046526 +1406348.046526 +1406348.046526 +1406348.046526 +1406375.132292 +1406375.132292 +1406375.132292 +1406375.132292 +1406376.970360 +1406381.335460 +1406381.335460 +1406401.889691 +1406401.889691 +1406401.889691 +1406401.889691 +1406418.396769 +1406418.396769 +1406418.396769 +1406418.396769 +1406418.396769 +1406418.396769 +1406418.396769 +1406418.396769 +1406447.265547 +1406447.265547 +1406447.265547 +1406461.845786 +1406461.845786 +1406461.845786 +1406468.910297 +1406468.910297 +1406470.239199 +1406470.239199 +1406483.645795 +1406483.645795 +1406483.645795 +1406493.218300 +1406504.965661 +1406504.965661 +1406504.965661 +1406504.965661 +1406504.965661 +1406504.965661 +1406514.815516 +1406525.832826 +1406525.832826 +1406525.832826 +1406525.832826 +1406530.354967 +1406546.236571 +1406546.236571 +1406546.236571 +1406546.236571 +1406568.052085 +1406570.096015 +1406580.462834 +1406580.462834 +1406580.462834 +1406583.848876 +1406583.848876 +1406590.078847 +1406590.078847 +1406590.078847 +1406606.436159 +1406606.436159 +1406608.849454 +1406608.849454 +1406629.191468 +1406629.191468 +1406636.377237 +1406636.377237 +1406636.377237 +1406636.377237 +1406636.377237 +1406645.453039 +1406645.453039 +1406645.453039 +1406645.453039 +1406670.465518 +1406689.162313 +1406689.162313 +1406689.162313 +1406689.162313 +1406689.162313 +1406689.162313 +1406689.162313 +1406694.224587 +1406694.224587 +1406694.224587 +1406709.076401 +1406709.076401 +1406709.076401 +1406709.076401 +1406725.978387 +1406725.978387 +1406739.811197 +1406739.811197 +1406739.811197 +1406739.811197 +1406762.189735 +1406762.189735 +1406762.189735 +1406773.989271 +1406786.852897 +1406786.852897 +1406786.852897 +1406786.852897 +1406788.858631 +1406788.858631 +1406788.858631 +1406788.858631 +1406795.511543 +1406795.511543 +1406795.511543 +1406804.374125 +1406804.374125 +1406804.374125 +1406804.374125 +1406804.374125 +1406809.325235 +1406809.325235 +1406821.538235 +1406843.857448 +1406843.857448 +1406851.956974 +1406851.956974 +1406886.505923 +1406886.505923 +1406886.505923 +1406886.505923 +1406886.505923 +1406886.505923 +1406886.505923 +1406886.505923 +1406886.505923 +1406895.538245 +1406895.538245 +1406895.538245 +1406895.538245 +1406895.538245 +1406895.538245 +1406897.384550 +1406898.400605 +1406919.275527 +1406919.275527 +1406923.624954 +1406923.624954 +1406923.624954 +1406947.060875 +1406947.060875 +1406951.435139 +1406951.435139 +1406951.435139 +1406951.435139 +1406951.435139 +1406965.117748 +1406969.154194 +1406969.154194 +1406983.207661 +1406983.774216 +1406983.774216 +1406983.774216 +1406983.774216 +1406983.774216 +1406983.774216 +1406990.605658 +1406990.605658 +1406998.981622 +1406998.981622 +1407010.395417 +1407010.395417 +1407032.500990 +1407032.500990 +1407041.550913 +1407041.550913 +1407041.550913 +1407041.550913 +1407041.550913 +1407041.550913 +1407055.537107 +1407076.903412 +1407076.903412 +1407076.903412 +1407076.903412 +1407076.903412 +1407076.903412 +1407076.903412 +1407092.369522 +1407092.369522 +1407092.369522 +1407092.369522 +1407099.660525 +1407099.660525 +1407099.660525 +1407101.547066 +1407102.013957 +1407114.255855 +1407140.310640 +1407140.310640 +1407141.766767 +1407141.766767 +1407141.766767 +1407152.465270 +1407152.465270 +1407152.465270 +1407152.465270 +1407152.465270 +1407152.465270 +1407160.095244 +1407161.963814 +1407168.223647 +1407168.223647 +1407171.948634 +1407171.948634 +1407181.101661 +1407203.129463 +1407203.129463 +1407203.129463 +1407203.129463 +1407207.228642 +1407210.142538 +1407210.142538 +1407210.142538 +1407220.540585 +1407249.220558 +1407249.220558 +1407249.220558 +1407249.220558 +1407249.220558 +1407249.220558 +1407249.220558 +1407249.220558 +1407250.379823 +1407260.609681 +1407260.609681 +1407277.244168 +1407277.244168 +1407277.244168 +1407277.244168 +1407294.195245 +1407309.112374 +1407309.112374 +1407309.112374 +1407309.112374 +1407309.112374 +1407309.112374 +1407309.112374 +1407309.112374 +1407309.112374 +1407331.273779 +1407331.273779 +1407338.930313 +1407340.074116 +1407340.074116 +1407340.074116 +1407340.074116 +1407343.844973 +1407343.844973 +1407343.844973 +1407344.457944 +1407365.419489 +1407365.419489 +1407373.191405 +1407373.191405 +1407391.434697 +1407409.435487 +1407409.435487 +1407409.435487 +1407409.435487 +1407409.435487 +1407409.435487 +1407409.435487 +1407409.435487 +1407411.085082 +1407411.085082 +1407426.347130 +1407426.347130 +1407451.915639 +1407451.915639 +1407451.915639 +1407451.915639 +1407451.915639 +1407451.915639 +1407451.915639 +1407451.915639 +1407464.496650 +1407469.607111 +1407469.607111 +1407487.253015 +1407487.253015 +1407487.253015 +1407493.502280 +1407493.502280 +1407493.502280 +1407493.502280 +1407500.705275 +1407500.705275 +1407500.705275 +1407502.033972 +1407502.033972 +1407502.033972 +1407512.585186 +1407512.585186 +1407518.614748 +1407518.614748 +1407531.747147 +1407531.747147 +1407537.263910 +1407540.887631 +1407553.265770 +1407577.563840 +1407577.563840 +1407577.563840 +1407577.855581 +1407577.855581 +1407577.855581 +1407598.904276 +1407602.370515 +1407602.370515 +1407602.370515 +1407604.688204 +1407604.688204 +1407604.688204 +1407614.295832 +1407616.119220 +1407621.374030 +1407621.717991 +1407638.431648 +1407638.431648 +1407638.431648 +1407638.431648 +1407647.001427 +1407647.001427 +1407647.001427 +1407647.001427 +1407662.622891 +1407662.622891 +1407662.622891 +1407662.622891 +1407664.272130 +1407672.235825 +1407684.437548 +1407684.437548 +1407694.913560 +1407694.913560 +1407694.913560 +1407695.398230 +1407695.398230 +1407695.398230 +1407702.127342 +1407702.127342 +1407702.127342 +1407707.837146 +1407716.614195 +1407737.132308 +1407737.132308 +1407737.132308 +1407743.414304 +1407743.414304 +1407755.255372 +1407755.920381 +1407758.798734 +1407758.798734 +1407759.994656 +1407759.994656 +1407771.810726 +1407771.810726 +1407771.810726 +1407771.810726 +1407771.810726 +1407771.810726 +1407802.483463 +1407802.483463 +1407802.483463 +1407807.844295 +1407807.844295 +1407807.844295 +1407807.844295 +1407807.844295 +1407821.477351 +1407839.985180 +1407839.985180 +1407839.985180 +1407840.657493 +1407840.657493 +1407840.657493 +1407840.657493 +1407866.833024 +1407866.833024 +1407866.833024 +1407866.833024 +1407866.833024 +1407869.229111 +1407872.502456 +1407872.502456 +1407872.502456 +1407872.502456 +1407879.634449 +1407879.634449 +1407897.951331 +1407897.951331 +1407897.951331 +1407897.951331 +1407897.951331 +1407914.461960 +1407914.461960 +1407914.461960 +1407940.320692 +1407945.261298 +1407945.261298 +1407945.261298 +1407945.261298 +1407945.261298 +1407945.261298 +1407945.261298 +1407962.570908 +1407962.570908 +1407972.040839 +1407972.040839 +1407972.040839 +1407972.040839 +1407995.545733 +1407995.545733 +1407999.265177 +1407999.265177 +1408003.669389 +1408003.669389 +1408003.669389 +1408003.669389 +1408013.196277 +1408013.196277 +1408030.702352 +1408030.702352 +1408030.702352 +1408046.240863 +1408046.240863 +1408046.325930 +1408046.325930 +1408046.325930 +1408074.341947 +1408074.341947 +1408074.341947 +1408074.341947 +1408074.341947 +1408074.341947 +1408074.341947 +1408074.341947 +1408080.288250 +1408080.288250 +1408080.288250 +1408080.288250 +1408083.325609 +1408085.083232 +1408087.729139 +1408092.643691 +1408101.691703 +1408117.448275 +1408117.448275 +1408120.908617 +1408128.546210 +1408134.749303 +1408134.749303 +1408150.244276 +1408150.244276 +1408150.244276 +1408150.244276 +1408150.244276 +1408150.244276 +1408181.859976 +1408181.859976 +1408181.859976 +1408181.859976 +1408181.859976 +1408181.859976 +1408181.859976 +1408181.859976 +1408181.859976 +1408182.689051 +1408208.521398 +1408208.521398 +1408213.716073 +1408213.716073 +1408213.716073 +1408213.716073 +1408213.716073 +1408218.699271 +1408234.377264 +1408240.853354 +1408240.853354 +1408240.853354 +1408250.139390 +1408255.170976 +1408255.170976 +1408255.170976 +1408255.384719 +1408255.384719 +1408255.384719 +1408275.994544 +1408290.761304 +1408290.761304 +1408290.761304 +1408290.761304 +1408290.761304 +1408290.761304 +1408290.761304 +1408294.105563 +1408294.105563 +1408294.105563 +1408300.862622 +1408300.862622 +1408326.204128 +1408333.855392 +1408333.855392 +1408333.855392 +1408343.074132 +1408343.074132 +1408344.048387 +1408344.048387 +1408344.048387 +1408359.069928 +1408359.069928 +1408367.483717 +1408367.483717 +1408377.232073 +1408377.232073 +1408377.232073 +1408377.232073 +1408388.260401 +1408388.260401 +1408391.945967 +1408391.945967 +1408391.945967 +1408391.945967 +1408416.979796 +1408416.979796 +1408416.979796 +1408416.979796 +1408416.979796 +1408416.979796 +1408416.979796 +1408446.434502 +1408446.434502 +1408446.434502 +1408446.434502 +1408461.221041 +1408461.221041 +1408461.221041 +1408465.115334 +1408477.059400 +1408477.059400 +1408477.059400 +1408477.059400 +1408477.059400 +1408477.478505 +1408477.478505 +1408477.478505 +1408477.478505 +1408496.373524 +1408497.093666 +1408509.788286 +1408516.440039 +1408516.440039 +1408518.909666 +1408524.385627 +1408529.889376 +1408540.345730 +1408540.345730 +1408540.345730 +1408540.345730 +1408555.268134 +1408559.564823 +1408559.564823 +1408559.564823 +1408559.564823 +1408559.564823 +1408571.145875 +1408571.145875 +1408571.145875 +1408571.145875 +1408579.994448 +1408585.729576 +1408585.729576 +1408588.288902 +1408588.288902 +1408588.288902 +1408588.288902 +1408604.899043 +1408612.753574 +1408627.093572 +1408627.093572 +1408628.303814 +1408628.303814 +1408631.623724 +1408634.370276 +1408634.370276 +1408634.370276 +1408634.370276 +1408638.359575 +1408660.452923 +1408661.460075 +1408661.460075 +1408666.107249 +1408673.670857 +1408677.723922 +1408677.723922 +1408679.032100 +1408685.148112 +1408700.635745 +1408700.635745 +1408700.635745 +1408700.635745 +1408700.635745 +1408700.635745 +1408700.635745 +1408731.044083 +1408731.044083 +1408731.044083 +1408731.044083 +1408731.044083 +1408731.044083 +1408731.044083 +1408743.480479 +1408746.389375 +1408746.389375 +1408749.505467 +1408749.505467 +1408754.673714 +1408754.673714 +1408761.991055 +1408761.991055 +1408772.661286 +1408802.134893 +1408802.134893 +1408802.134893 +1408802.134893 +1408802.134893 +1408802.134893 +1408802.134893 +1408809.705083 +1408809.705083 +1408826.496081 +1408826.496081 +1408826.496081 +1408826.496081 +1408833.204205 +1408833.204205 +1408839.278551 +1408839.278551 +1408839.278551 +1408839.278551 +1408843.267406 +1408848.718546 +1408848.718546 +1408848.718546 +1408874.168801 +1408874.168801 +1408886.844335 +1408886.844335 +1408890.915065 +1408890.915065 +1408890.915065 +1408890.915065 +1408904.925998 +1408904.925998 +1408904.925998 +1408917.155645 +1408917.155645 +1408923.563665 +1408923.994348 +1408923.994348 +1408923.994348 +1408923.994348 +1408923.994348 +1408923.994348 +1408923.994348 +1408942.399673 +1408942.399673 +1408983.085706 +1408983.085706 +1408983.085706 +1408983.085706 +1408983.085706 +1408983.085706 +1408984.121963 +1408984.121963 +1408987.027704 +1408987.027704 +1409003.614469 +1409003.614469 +1409003.614469 +1409003.614469 +1409003.614469 +1409003.614469 +1409017.972303 +1409018.071364 +1409018.071364 +1409018.071364 +1409019.067681 +1409019.067681 +1409033.873821 +1409033.873821 +1409033.873821 +1409033.873821 +1409051.455871 +1409051.455871 +1409068.343533 +1409068.343533 +1409082.759261 +1409082.759261 +1409082.759261 +1409082.759261 +1409082.759261 +1409082.759261 +1409107.623657 +1409110.658468 +1409122.283530 +1409122.283530 +1409122.283530 +1409122.283530 +1409122.283530 +1409122.283530 +1409122.283530 +1409122.283530 +1409122.283530 +1409123.246461 +1409134.658335 +1409134.658335 +1409144.676172 +1409144.676172 +1409144.676172 +1409144.676172 +1409165.517329 +1409165.517329 +1409165.517329 +1409165.517329 +1409165.517329 +1409165.517329 +1409182.908263 +1409197.324368 +1409197.324368 +1409197.324368 +1409197.324368 +1409197.324368 +1409197.324368 +1409198.545769 +1409200.917509 +1409200.917509 +1409200.917509 +1409242.517002 +1409242.517002 +1409242.517002 +1409242.517002 +1409242.517002 +1409242.517002 +1409250.493133 +1409250.493133 +1409250.493133 +1409252.369475 +1409252.369475 +1409258.588003 +1409258.588003 +1409258.588003 +1409264.248316 +1409278.502393 +1409278.502393 +1409278.502393 +1409278.502393 +1409285.681349 +1409285.681349 +1409285.681349 +1409285.681349 +1409293.876818 +1409328.029646 +1409328.029646 +1409328.029646 +1409328.029646 +1409328.029646 +1409328.029646 +1409328.029646 +1409328.029646 +1409328.857606 +1409328.857606 +1409352.291300 +1409352.814285 +1409352.814285 +1409352.814285 +1409352.814285 +1409381.545443 +1409381.545443 +1409381.545443 +1409381.545443 +1409381.545443 +1409381.545443 +1409381.545443 +1409381.545443 +1409381.545443 +1409397.095200 +1409415.654081 +1409415.654081 +1409415.654081 +1409415.654081 +1409423.891151 +1409423.891151 +1409423.891151 +1409423.891151 +1409423.891151 +1409436.997033 +1409436.997033 +1409436.997033 +1409436.997033 +1409442.554546 +1409442.554546 +1409462.692681 +1409462.692681 +1409470.353855 +1409490.545946 +1409495.279551 +1409495.279551 +1409495.279551 +1409495.279551 +1409495.279551 +1409495.279551 +1409495.279551 +1409497.356302 +1409502.480247 +1409519.721794 +1409519.721794 +1409519.721794 +1409519.721794 +1409519.721794 +1409523.617977 +1409525.843336 +1409525.843336 +1409525.843336 +1409530.788836 +1409546.641483 +1409559.587165 +1409567.242964 +1409567.242964 +1409567.242964 +1409582.691566 +1409582.691566 +1409582.691566 +1409582.691566 +1409582.691566 +1409588.022947 +1409595.177971 +1409595.177971 +1409595.658500 +1409606.579520 +1409606.579520 +1409606.579520 +1409606.579520 +1409609.900889 +1409609.900889 +1409636.886237 +1409636.886237 +1409636.912999 +1409636.912999 +1409638.066819 +1409638.066819 +1409639.953239 +1409639.953239 +1409639.953239 +1409639.953239 +1409639.953239 +1409641.963339 +1409668.328717 +1409676.615767 +1409676.615767 +1409678.754641 +1409688.888665 +1409688.888665 +1409688.888665 +1409688.888665 +1409690.466410 +1409690.466410 +1409690.466410 +1409692.144125 +1409692.144125 +1409694.216020 +1409701.625177 +1409707.696785 +1409707.696785 +1409727.010375 +1409727.010375 +1409727.010375 +1409750.128822 +1409750.128822 +1409750.128822 +1409750.128822 +1409750.128822 +1409777.559360 +1409777.559360 +1409783.083645 +1409783.083645 +1409789.256918 +1409789.256918 +1409789.256918 +1409789.256918 +1409789.256918 +1409789.256918 +1409789.987704 +1409789.987704 +1409797.202692 +1409797.202692 +1409797.202692 +1409797.202692 +1409825.472628 +1409825.472628 +1409825.472628 +1409825.472628 +1409825.472628 +1409826.084948 +1409826.084948 +1409829.662205 +1409847.187070 +1409851.630514 +1409851.630514 +1409851.630514 +1409853.259689 +1409853.259689 +1409853.259689 +1409853.259689 +1409853.259689 +1409885.248159 +1409885.248159 +1409885.248159 +1409885.248159 +1409896.156294 +1409896.156294 +1409896.156294 +1409901.049262 +1409901.049262 +1409905.241477 +1409908.604407 +1409913.202298 +1409913.202298 +1409916.658998 +1409943.880210 +1409943.880210 +1409943.880210 +1409943.880210 +1409943.880210 +1409943.880210 +1409943.880210 +1409943.880210 +1409943.880210 +1409952.930616 +1409952.930616 +1409952.930616 +1409966.056510 +1409980.963012 +1409981.170599 +1409985.171190 +1410002.748312 +1410014.780482 +1410014.780482 +1410014.780482 +1410014.780482 +1410014.780482 +1410014.780482 +1410014.780482 +1410014.780482 +1410014.780482 +1410014.780482 +1410027.570578 +1410034.606074 +1410034.606074 +1410034.606074 +1410034.606074 +1410034.606074 +1410034.701512 +1410034.701512 +1410034.701512 +1410047.729985 +1410064.033878 +1410064.033878 +1410064.033878 +1410064.033878 +1410072.461134 +1410077.474846 +1410077.474846 +1410091.739248 +1410106.215820 +1410106.215820 +1410106.215820 +1410106.215820 +1410106.215820 +1410106.215820 +1410106.215820 +1410106.215820 +1410115.789297 +1410115.789297 +1410120.334377 +1410125.889139 +1410125.889139 +1410125.889139 +1410130.689854 +1410130.689854 +1410149.455159 +1410149.455159 +1410152.814633 +1410152.814633 +1410156.318784 +1410156.318784 +1410177.907198 +1410177.907198 +1410177.907198 +1410177.907198 +1410177.907198 +1410177.907198 +1410203.205344 +1410203.205344 +1410203.205344 +1410203.205344 +1410206.234686 +1410206.234686 +1410206.234686 +1410206.234686 +1410206.234686 +1410209.757146 +1410233.553313 +1410233.553313 +1410233.553313 +1410233.553313 +1410247.277649 +1410247.277649 +1410255.884131 +1410255.884131 +1410255.884131 +1410255.884131 +1410255.884131 +1410258.623470 +1410270.721885 +1410270.721885 +1410288.492699 +1410291.752673 +1410291.752673 +1410291.752673 +1410291.752673 +1410299.458741 +1410299.458741 +1410299.458741 +1410299.458741 +1410299.458741 +1410319.518163 +1410319.518163 +1410323.906188 +1410323.906188 +1410326.901223 +1410326.901223 +1410326.901223 +1410326.901223 +1410332.119877 +1410332.119877 +1410336.657611 +1410352.675358 +1410352.675358 +1410352.675358 +1410355.791674 +1410355.791674 +1410377.444381 +1410377.444381 +1410377.444381 +1410377.444381 +1410377.444381 +1410377.444381 +1410377.444381 +1410377.444381 +1410402.042065 +1410402.042065 +1410402.042065 +1410402.042065 +1410415.899171 +1410415.899171 +1410415.899171 +1410415.899171 +1410415.899171 +1410437.534939 +1410437.578989 +1410437.578989 +1410437.578989 +1410442.013079 +1410442.013079 +1410442.013079 +1410442.013079 +1410451.601403 +1410470.775297 +1410470.775297 +1410470.775297 +1410473.160632 +1410473.160632 +1410478.716468 +1410478.716468 +1410479.022655 +1410479.022655 +1410495.420881 +1410496.548210 +1410502.352916 +1410502.352916 +1410502.352916 +1410502.352916 +1410502.352916 +1410504.588766 +1410528.787532 +1410528.787532 +1410528.787532 +1410528.787532 +1410528.787532 +1410538.395523 +1410538.395523 +1410547.795841 +1410551.448282 +1410551.448282 +1410557.333828 +1410563.176575 +1410563.176575 +1410563.176575 +1410563.176575 +1410563.176575 +1410563.858049 +1410568.426926 +1410584.630780 +1410584.630780 +1410595.817635 +1410595.817635 +1410595.817635 +1410595.817635 +1410603.756523 +1410603.756523 +1410603.756523 +1410611.948613 +1410611.948613 +1410611.948613 +1410622.325309 +1410623.134432 +1410623.134432 +1410629.596280 +1410629.596280 +1410629.596280 +1410647.913056 +1410647.913056 +1410647.913056 +1410647.913056 +1410647.913056 +1410685.648617 +1410685.648617 +1410685.648617 +1410685.648617 +1410685.648617 +1410686.919449 +1410686.919449 +1410686.919449 +1410686.919449 +1410695.976260 +1410695.976260 +1410695.976260 +1410708.469633 +1410712.696871 +1410712.696871 +1410715.827581 +1410715.827581 +1410715.827581 +1410730.326476 +1410730.326476 +1410735.473673 +1410735.473673 +1410735.473673 +1410746.646418 +1410746.646418 +1410753.629788 +1410753.629788 +1410779.704159 +1410779.704159 +1410779.704159 +1410779.704159 +1410779.704159 +1410779.704159 +1410779.704159 +1410779.704159 +1410779.704159 +1410779.704159 +1410812.374902 +1410812.374902 +1410824.485312 +1410824.485312 +1410824.485312 +1410829.963758 +1410829.963758 +1410829.963758 +1410833.473212 +1410833.473212 +1410871.360317 +1410871.360317 +1410871.360317 +1410871.360317 +1410871.360317 +1410871.360317 +1410871.360317 +1410871.360317 +1410871.360317 +1410871.360317 +1410871.360317 +1410871.360317 +1410871.360317 +1410871.360317 +1410871.360317 +1410871.360317 +1410871.360317 +1410891.760561 +1410903.470244 +1410903.470244 +1410908.272312 +1410908.272312 +1410936.272211 +1410936.272211 +1410936.272211 +1410936.272211 +1410936.272211 +1410936.272211 +1410936.272211 +1410936.272211 +1410943.153702 +1410950.235264 +1410960.243775 +1410961.764054 +1410961.764054 +1410961.764054 +1410961.764054 +1410961.764054 +1410964.809218 +1410969.463101 +1410969.463101 +1410969.463101 +1410969.463101 +1410969.463101 +1410988.005359 +1410988.005359 +1410988.131237 +1410988.131237 +1410988.131237 +1410988.131237 +1410995.213349 +1410995.213349 +1410995.459488 +1410997.574241 +1411017.078236 +1411017.078236 +1411021.094943 +1411021.094943 +1411021.094943 +1411042.564687 +1411042.564687 +1411042.564687 +1411049.017294 +1411049.017294 +1411049.017294 +1411066.966590 +1411066.966590 +1411087.874384 +1411087.874384 +1411087.874384 +1411087.874384 +1411087.874384 +1411087.874384 +1411087.874384 +1411087.874384 +1411089.237043 +1411089.237043 +1411089.237043 +1411096.246762 +1411110.932673 +1411110.932673 +1411114.223354 +1411114.223354 +1411119.456155 +1411156.582079 +1411156.582079 +1411156.582079 +1411156.582079 +1411156.582079 +1411156.582079 +1411156.582079 +1411170.087784 +1411170.087784 +1411170.087784 +1411170.087784 +1411170.087784 +1411170.087784 +1411170.087784 +1411170.087784 +1411180.513825 +1411180.513825 +1411180.513825 +1411180.513825 +1411180.513825 +1411194.127300 +1411194.127300 +1411194.127300 +1411224.576776 +1411224.576776 +1411224.576776 +1411229.764263 +1411249.507283 +1411249.507283 +1411249.507283 +1411249.507283 +1411249.507283 +1411249.507283 +1411249.507283 +1411249.507283 +1411249.507283 +1411253.687468 +1411253.687468 +1411270.963789 +1411270.963789 +1411271.275811 +1411280.027720 +1411280.027720 +1411280.027720 +1411280.027720 +1411280.027720 +1411281.120462 +1411281.120462 +1411288.305611 +1411306.320473 +1411306.320473 +1411306.320473 +1411306.320473 +1411320.185056 +1411330.745171 +1411330.745171 +1411330.745171 +1411330.745171 +1411332.323941 +1411354.774778 +1411354.774778 +1411354.774778 +1411354.774778 +1411354.774778 +1411354.774778 +1411355.443982 +1411379.868160 +1411379.868160 +1411379.868160 +1411379.868160 +1411379.868160 +1411394.349617 +1411394.349617 +1411394.349617 +1411403.658304 +1411403.658304 +1411403.658304 +1411403.658304 +1411413.071351 +1411413.071351 +1411413.071351 +1411413.071351 +1411438.873653 +1411438.873653 +1411438.873653 +1411438.873653 +1411438.873653 +1411438.873653 +1411438.873653 +1411446.040665 +1411450.580336 +1411450.580336 +1411450.580336 +1411455.486149 +1411455.486149 +1411455.486149 +1411455.486149 +1411455.486149 +1411467.056825 +1411467.132007 +1411483.358518 +1411483.358518 +1411483.358518 +1411483.358518 +1411483.358518 +1411505.506158 +1411505.506158 +1411505.506158 +1411505.506158 +1411510.282828 +1411510.282828 +1411510.282828 +1411510.282828 +1411536.805101 +1411536.805101 +1411543.285351 +1411543.285351 +1411543.285351 +1411543.285351 +1411546.522718 +1411548.632368 +1411570.165409 +1411570.165409 +1411570.165409 +1411570.165409 +1411570.165409 +1411571.493754 +1411571.493754 +1411578.346275 +1411578.346275 +1411592.194926 +1411592.194926 +1411592.194926 +1411599.393651 +1411599.393651 +1411601.381050 +1411626.201607 +1411626.201607 +1411636.792742 +1411636.792742 +1411636.792742 +1411636.792742 +1411636.792742 +1411636.792742 +1411636.792742 +1411636.792742 +1411640.885655 +1411650.024374 +1411650.024374 +1411650.024374 +1411652.573162 +1411652.573162 +1411665.363822 +1411665.363822 +1411665.363822 +1411671.003831 +1411671.003831 +1411671.003831 +1411704.778816 +1411704.778816 +1411704.778816 +1411704.778816 +1411704.778816 +1411704.778816 +1411704.778816 +1411704.778816 +1411704.778816 +1411704.778816 +1411711.110620 +1411719.744316 +1411719.744316 +1411736.167715 +1411736.167715 +1411736.167715 +1411738.933428 +1411745.951057 +1411745.951057 +1411764.493562 +1411764.493562 +1411775.825665 +1411775.825665 +1411775.825665 +1411775.825665 +1411784.653263 +1411784.653263 +1411784.653263 +1411784.653263 +1411784.653263 +1411788.052713 +1411809.860762 +1411809.860762 +1411809.860762 +1411813.967018 +1411813.967018 +1411813.967018 +1411813.967018 +1411813.967018 +1411813.967018 +1411817.239000 +1411817.239000 +1411817.239000 +1411817.239000 +1411819.536134 +1411845.405700 +1411845.405700 +1411845.405700 +1411845.405700 +1411853.692437 +1411853.692437 +1411855.662384 +1411855.662384 +1411865.527183 +1411876.835826 +1411876.835826 +1411876.835826 +1411881.858817 +1411897.709130 +1411897.709130 +1411902.067578 +1411921.805995 +1411921.805995 +1411921.805995 +1411921.805995 +1411921.805995 +1411921.805995 +1411921.887001 +1411921.887001 +1411921.887001 +1411931.721456 +1411931.721456 +1411954.074127 +1411954.074127 +1411954.074127 +1411954.074127 +1411954.074127 +1411955.042193 +1411955.042193 +1411955.042193 +1411974.938387 +1411974.938387 +1411974.938387 +1411974.938387 +1411974.938387 +1411974.938387 +1411995.866175 +1411995.866175 +1412000.872473 +1412000.872473 +1412000.872473 +1412005.827812 +1412007.053517 +1412007.053517 +1412007.053517 +1412007.053517 +1412007.053517 +1412018.091349 +1412022.896595 +1412026.590978 +1412027.280692 +1412027.280692 +1412027.280692 +1412027.280692 +1412040.890296 +1412040.890296 +1412040.890296 +1412040.890296 +1412064.069797 +1412064.069797 +1412064.069797 +1412069.863570 +1412069.863570 +1412081.073235 +1412081.073235 +1412081.073235 +1412099.328756 +1412099.328756 +1412099.328756 +1412099.328756 +1412099.328756 +1412107.054658 +1412107.054658 +1412107.054658 +1412116.762415 +1412116.762415 +1412116.762415 +1412134.578017 +1412134.578017 +1412134.578017 +1412134.578017 +1412134.578017 +1412134.578017 +1412134.578017 +1412139.716153 +1412151.199972 +1412157.255974 +1412168.949040 +1412168.949040 +1412168.949040 +1412172.494996 +1412180.434145 +1412180.434145 +1412208.509353 +1412208.509353 +1412208.509353 +1412208.509353 +1412208.509353 +1412208.509353 +1412208.509353 +1412208.509353 +1412208.509353 +1412208.509353 +1412208.509353 +1412208.509353 +1412210.364248 +1412210.364248 +1412220.654506 +1412241.552957 +1412241.552957 +1412252.446322 +1412252.446322 +1412252.446322 +1412266.495578 +1412266.495578 +1412269.779600 +1412269.779600 +1412269.779600 +1412287.685772 +1412287.685772 +1412287.685772 +1412291.413913 +1412291.413913 +1412291.413913 +1412291.413913 +1412309.093930 +1412309.093930 +1412309.093930 +1412312.068148 +1412312.068148 +1412312.068148 +1412312.068148 +1412316.483651 +1412327.650377 +1412327.650377 +1412327.650377 +1412327.650377 +1412327.650377 +1412333.559548 +1412333.559548 +1412334.040630 +1412334.040630 +1412347.373778 +1412347.373778 +1412356.279566 +1412361.874961 +1412367.456030 +1412367.456030 +1412367.456030 +1412367.456030 +1412372.074441 +1412383.687330 +1412383.687330 +1412383.687330 +1412394.052699 +1412394.052699 +1412399.880436 +1412402.453744 +1412402.453744 +1412411.146304 +1412411.146304 +1412411.146304 +1412414.979863 +1412418.589507 +1412430.402161 +1412430.402161 +1412430.402161 +1412430.402161 +1412434.249744 +1412443.554541 +1412461.901291 +1412461.901291 +1412461.901291 +1412472.593568 +1412472.593568 +1412472.593568 +1412472.593568 +1412472.593568 +1412472.593568 +1412482.807499 +1412482.807499 +1412482.807499 +1412482.807499 +1412482.807499 +1412487.753699 +1412495.029661 +1412495.029661 +1412495.761740 +1412495.761740 +1412497.261692 +1412497.261692 +1412519.890149 +1412519.890149 +1412542.210177 +1412542.210177 +1412542.210177 +1412548.427312 +1412548.427312 +1412548.427312 +1412548.427312 +1412552.909060 +1412557.442287 +1412573.827544 +1412573.827544 +1412573.827544 +1412573.827544 +1412573.827544 +1412573.827544 +1412584.319229 +1412595.704956 +1412595.704956 +1412595.704956 +1412595.704956 +1412595.704956 +1412595.704956 +1412595.704956 +1412604.542182 +1412604.542182 +1412608.974225 +1412608.974225 +1412608.974225 +1412621.451032 +1412621.451032 +1412621.451032 +1412621.451032 +1412629.868117 +1412629.868117 +1412630.762811 +1412632.585116 +1412639.317311 +1412639.317311 +1412682.486997 +1412682.486997 +1412682.486997 +1412682.486997 +1412682.486997 +1412682.486997 +1412682.486997 +1412695.699979 +1412701.296727 +1412701.296727 +1412701.296727 +1412701.296727 +1412701.296727 +1412701.296727 +1412701.296727 +1412701.296727 +1412701.296727 +1412708.982035 +1412708.982035 +1412739.907291 +1412739.907291 +1412739.907291 +1412743.977956 +1412743.977956 +1412743.977956 +1412743.977956 +1412745.104364 +1412745.104364 +1412745.104364 +1412757.586063 +1412759.025710 +1412759.944813 +1412759.944813 +1412759.944813 +1412762.908090 +1412783.539949 +1412783.539949 +1412783.539949 +1412783.539949 +1412783.539949 +1412783.539949 +1412792.254884 +1412804.676763 +1412804.676763 +1412810.790028 +1412818.747181 +1412818.747181 +1412818.747181 +1412818.747181 +1412830.744834 +1412830.744834 +1412830.744834 +1412830.744834 +1412833.474604 +1412833.474604 +1412839.639444 +1412839.639444 +1412841.493729 +1412849.831587 +1412859.411863 +1412878.228737 +1412878.228737 +1412878.228737 +1412878.228737 +1412878.228737 +1412878.228737 +1412878.228737 +1412878.228737 +1412896.710668 +1412896.710668 +1412901.120648 +1412901.120648 +1412901.120648 +1412901.120648 +1412923.271336 +1412923.271336 +1412923.271336 +1412923.271336 +1412923.271336 +1412923.271336 +1412923.271336 +1412923.271336 +1412923.271336 +1412925.727653 +1412942.071480 +1412944.580616 +1412944.580616 +1412946.558397 +1412946.558397 +1412972.237011 +1412972.237011 +1412972.237011 +1412972.237011 +1412972.237011 +1412974.860275 +1412984.659005 +1412984.659005 +1412984.659005 +1412987.291262 +1412987.291262 +1412987.291262 +1412998.128231 +1413005.045564 +1413005.045564 +1413021.276860 +1413021.276860 +1413021.276860 +1413021.276860 +1413021.276860 +1413021.276860 +1413038.367580 +1413038.367580 +1413038.367580 +1413044.752259 +1413063.188043 +1413063.188043 +1413063.188043 +1413063.188043 +1413063.188043 +1413063.188043 +1413063.188043 +1413066.703816 +1413092.059718 +1413092.059718 +1413092.059718 +1413092.059718 +1413092.059718 +1413096.732483 +1413096.732483 +1413096.732483 +1413115.848815 +1413121.756882 +1413121.756882 +1413121.756882 +1413121.756882 +1413121.756882 +1413121.756882 +1413121.756882 +1413128.463355 +1413129.299382 +1413149.363339 +1413149.363339 +1413151.593136 +1413151.593136 +1413152.075148 +1413152.075148 +1413152.075148 +1413152.075148 +1413165.534936 +1413168.094877 +1413168.094877 +1413168.094877 +1413168.094877 +1413169.390787 +1413179.926743 +1413179.926743 +1413190.484032 +1413203.451570 +1413205.168603 +1413207.208094 +1413208.079888 +1413208.079888 +1413218.651577 +1413218.651577 +1413218.651577 +1413218.651577 +1413234.575284 +1413234.575284 +1413234.575284 +1413234.575284 +1413249.078501 \ No newline at end of file