{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "
QRE analysis of a sender-receiver game
\n", "
Valeria Burdea, December 2016
\n", "\n", "This is a 2-player sequential game the structure of which is inspired by Glazer and Rubinstein (2004, 2006). In the first stage, the sender is dealt 2 cards - one card orange, one card blue. Each card can take a value between 1 and 9; each combination of values is equally likely. A hand is good if the sum of the two cards is at least 9; a hand is bad otherwise. Upon observing the two cards, the sender chooses one to reveal to the receiver. The receiver observes the revealed card and chooses an action between 'Accept' and 'Reject'. The incentives are such that the sender would always want the receiver to accept, while the receiver would only want to accept if the hand is good and reject otherwise.\n", "\n", "This game is studied experimentally in a working paper, \"Communication with partially verifiable information: An experiment\" by Valeria Burdea, Maria Montero, and Martin Sefton." ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false }, "outputs": [], "source": [ "import gambit" ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": true }, "outputs": [], "source": [ "g=gambit.Game.new_tree()" ] }, { "cell_type": "code", "execution_count": 3, "metadata": { "collapsed": true }, "outputs": [], "source": [ "g.title=\"9x9\"" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Adding the two players:" ] }, { "cell_type": "code", "execution_count": 4, "metadata": { "collapsed": true }, "outputs": [], "source": [ "sender=g.players.add(\"Sender\")\n", "receiver=g.players.add(\"Receiver\")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Adding the chance moves. There are 81 such moves, as there are 81 (9x9) possible combinations of card values:" ] }, { "cell_type": "code", "execution_count": 5, "metadata": { "collapsed": true }, "outputs": [], "source": [ "move=g.root.append_move(g.players.chance, 81)" ] }, { "cell_type": "code", "execution_count": 6, "metadata": { "collapsed": true }, "outputs": [], "source": [ "i=0\n", "b=1\n", "while i<81 and b<10:\n", " for o in range(1, 10):\n", " move.actions[i].label=str(b)+str(o)\n", " i=i+1\n", " b=b+1" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "For each of the 81 states, the sender has two actions: reveal the value on the orange card (action 0) or the value on the blue card (action 1). We add these actions at different information sets as the sender has perfect information about the state of the world:" ] }, { "cell_type": "code", "execution_count": 7, "metadata": { "collapsed": false }, "outputs": [], "source": [ "for j in range(0,81):\n", " moves=g.root.children[j].append_move(sender,2)\n", " moves.label='s'+move.actions[j].label\n", " moves.actions[0].label=move.actions[j].label[0]\n", " moves.actions[1].label=move.actions[j].label[1]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "For each value revealed the receiver has two actions: 'Accept' and 'Reject'. We assume the receiver is colour blind, so she only has 9 information sets corresponding to the 9 possible values on either card. To do this iteratively, we define the move for the first time that card value is observed and then, every other time we append the same previously defined move. We repeat this process for each information set of the receiver.." ] }, { "cell_type": "code", "execution_count": 8, "metadata": { "collapsed": false }, "outputs": [], "source": [ "first=0\n", "for i in range(0,81):\n", " if first>0:\n", " if g.root.children[i].infoset.actions[0].label=='1':\n", " g.root.children[i].children[0].append_move(mover)\n", " if g.root.children[i].infoset.actions[1].label=='1':\n", " g.root.children[i].children[1].append_move(mover)\n", " t=0\n", " while first<1 and t<2:\n", " if g.root.children[i].infoset.actions[t].label=='1':\n", " mover=g.root.children[i].children[t].append_move(receiver,2)\n", " mover.label='1'\n", " mover.actions[0].label=\"Accept\"\n", " mover.actions[1].label=\"Reject\"\n", " if t==0 and g.root.children[i].infoset.actions[1].label=='1':\n", " g.root.children[i].children[1].append_move(mover)\n", " t=t+2\n", " first=1\n", " else:\n", " t=t+1" ] }, { "cell_type": "code", "execution_count": 9, "metadata": { "collapsed": true }, "outputs": [], "source": [ "first=0\n", "for i in range(0,81):\n", " if first>0:\n", " if g.root.children[i].infoset.actions[0].label=='2':\n", " g.root.children[i].children[0].append_move(mover)\n", " if g.root.children[i].infoset.actions[1].label=='2':\n", " g.root.children[i].children[1].append_move(mover)\n", " t=0\n", " while first<1 and t<2:\n", " if g.root.children[i].infoset.actions[t].label=='2':\n", " mover=g.root.children[i].children[t].append_move(receiver,2)\n", " mover.label='2'\n", " mover.actions[0].label=\"Accept\"\n", " mover.actions[1].label=\"Reject\"\n", " if t==0 and g.root.children[i].infoset.actions[1].label=='2':\n", " g.root.children[i].children[1].append_move(mover)\n", " t=t+2\n", " first=1\n", " else:\n", " t=t+1" ] }, { "cell_type": "code", "execution_count": 10, "metadata": { "collapsed": true }, "outputs": [], "source": [ "first=0\n", "for i in range(0,81):\n", " if first>0:\n", " if g.root.children[i].infoset.actions[0].label=='3':\n", " g.root.children[i].children[0].append_move(mover)\n", " if g.root.children[i].infoset.actions[1].label=='3':\n", " g.root.children[i].children[1].append_move(mover)\n", " t=0\n", " while first<1 and t<2:\n", " if g.root.children[i].infoset.actions[t].label=='3':\n", " mover=g.root.children[i].children[t].append_move(receiver,2)\n", " mover.label='3'\n", " mover.actions[0].label=\"Accept\"\n", " mover.actions[1].label=\"Reject\"\n", " if t==0 and g.root.children[i].infoset.actions[1].label=='3':\n", " g.root.children[i].children[1].append_move(mover)\n", " t=t+2\n", " first=1\n", " else:\n", " t=t+1" ] }, { "cell_type": "code", "execution_count": 11, "metadata": { "collapsed": true }, "outputs": [], "source": [ "first=0\n", "for i in range(0,81):\n", " if first>0:\n", " if g.root.children[i].infoset.actions[0].label=='4':\n", " g.root.children[i].children[0].append_move(mover)\n", " if g.root.children[i].infoset.actions[1].label=='4':\n", " g.root.children[i].children[1].append_move(mover)\n", " t=0\n", " while first<1 and t<2:\n", " if g.root.children[i].infoset.actions[t].label=='4':\n", " mover=g.root.children[i].children[t].append_move(receiver,2)\n", " mover.label='4'\n", " mover.actions[0].label=\"Accept\"\n", " mover.actions[1].label=\"Reject\"\n", " if t==0 and g.root.children[i].infoset.actions[1].label=='4':\n", " g.root.children[i].children[1].append_move(mover)\n", " t=t+2\n", " first=1\n", " else:\n", " t=t+1" ] }, { "cell_type": "code", "execution_count": 12, "metadata": { "collapsed": true }, "outputs": [], "source": [ "first=0\n", "for i in range(0,81):\n", " if first>0:\n", " if g.root.children[i].infoset.actions[0].label=='5':\n", " g.root.children[i].children[0].append_move(mover)\n", " if g.root.children[i].infoset.actions[1].label=='5':\n", " g.root.children[i].children[1].append_move(mover)\n", " t=0\n", " while first<1 and t<2:\n", " if g.root.children[i].infoset.actions[t].label=='5':\n", " mover=g.root.children[i].children[t].append_move(receiver,2)\n", " mover.label='5'\n", " mover.actions[0].label=\"Accept\"\n", " mover.actions[1].label=\"Reject\"\n", " if t==0 and g.root.children[i].infoset.actions[1].label=='5':\n", " g.root.children[i].children[1].append_move(mover)\n", " t=t+2\n", " first=1\n", " else:\n", " t=t+1" ] }, { "cell_type": "code", "execution_count": 13, "metadata": { "collapsed": true }, "outputs": [], "source": [ "first=0\n", "for i in range(0,81):\n", " if first>0:\n", " if g.root.children[i].infoset.actions[0].label=='6':\n", " g.root.children[i].children[0].append_move(mover)\n", " if g.root.children[i].infoset.actions[1].label=='6':\n", " g.root.children[i].children[1].append_move(mover)\n", " t=0\n", " while first<1 and t<2:\n", " if g.root.children[i].infoset.actions[t].label=='6':\n", " mover=g.root.children[i].children[t].append_move(receiver,2)\n", " mover.label='6'\n", " mover.actions[0].label=\"Accept\"\n", " mover.actions[1].label=\"Reject\"\n", " if t==0 and g.root.children[i].infoset.actions[1].label=='6':\n", " g.root.children[i].children[1].append_move(mover)\n", " t=t+2\n", " first=1\n", " else:\n", " t=t+1" ] }, { "cell_type": "code", "execution_count": 14, "metadata": { "collapsed": true }, "outputs": [], "source": [ "first=0\n", "for i in range(0,81):\n", " if first>0:\n", " if g.root.children[i].infoset.actions[0].label=='7':\n", " g.root.children[i].children[0].append_move(mover)\n", " if g.root.children[i].infoset.actions[1].label=='7':\n", " g.root.children[i].children[1].append_move(mover)\n", " t=0\n", " while first<1 and t<2:\n", " if g.root.children[i].infoset.actions[t].label=='7':\n", " mover=g.root.children[i].children[t].append_move(receiver,2)\n", " mover.label='7'\n", " mover.actions[0].label=\"Accept\"\n", " mover.actions[1].label=\"Reject\"\n", " if t==0 and g.root.children[i].infoset.actions[1].label=='7':\n", " g.root.children[i].children[1].append_move(mover)\n", " t=t+2\n", " first=1\n", " else:\n", " t=t+1" ] }, { "cell_type": "code", "execution_count": 15, "metadata": { "collapsed": true }, "outputs": [], "source": [ "first=0\n", "for i in range(0,81):\n", " if first>0:\n", " if g.root.children[i].infoset.actions[0].label=='8':\n", " g.root.children[i].children[0].append_move(mover)\n", " if g.root.children[i].infoset.actions[1].label=='8':\n", " g.root.children[i].children[1].append_move(mover)\n", " t=0\n", " while first<1 and t<2:\n", " if g.root.children[i].infoset.actions[t].label=='8':\n", " mover=g.root.children[i].children[t].append_move(receiver,2)\n", " mover.label='8'\n", " mover.actions[0].label=\"Accept\"\n", " mover.actions[1].label=\"Reject\"\n", " if t==0 and g.root.children[i].infoset.actions[1].label=='8':\n", " g.root.children[i].children[1].append_move(mover)\n", " t=t+2\n", " first=1\n", " else:\n", " t=t+1" ] }, { "cell_type": "code", "execution_count": 16, "metadata": { "collapsed": true }, "outputs": [], "source": [ "first=0\n", "for i in range(0,81):\n", " if first>0:\n", " if g.root.children[i].infoset.actions[0].label=='9':\n", " g.root.children[i].children[0].append_move(mover)\n", " if g.root.children[i].infoset.actions[1].label=='9':\n", " g.root.children[i].children[1].append_move(mover)\n", " t=0\n", " while first<1 and t<2:\n", " if g.root.children[i].infoset.actions[t].label=='9':\n", " mover=g.root.children[i].children[t].append_move(receiver,2)\n", " mover.label='9'\n", " mover.actions[0].label=\"Accept\"\n", " mover.actions[1].label=\"Reject\"\n", " if t==0 and g.root.children[i].infoset.actions[1].label=='9':\n", " g.root.children[i].children[1].append_move(mover)\n", " t=t+2\n", " first=1\n", " else:\n", " t=t+1" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We now define the outcomes. There are 4 such possible outcomes depending on whether the receiver accepts or rejects and whether the state is good or bad." ] }, { "cell_type": "code", "execution_count": 17, "metadata": { "collapsed": true }, "outputs": [], "source": [ "accept_good=g.outcomes.add(\"R accepts good hand\")\n", "accept_good[0]=1\n", "accept_good[1]=1" ] }, { "cell_type": "code", "execution_count": 18, "metadata": { "collapsed": true }, "outputs": [], "source": [ "reject_good=g.outcomes.add(\"R rejects good hand\")\n", "reject_good[0]=0\n", "reject_good[1]=0" ] }, { "cell_type": "code", "execution_count": 19, "metadata": { "collapsed": true }, "outputs": [], "source": [ "accept_bad=g.outcomes.add(\"R accepts bad hand\")\n", "accept_bad[0]=1\n", "accept_bad[1]=0" ] }, { "cell_type": "code", "execution_count": 20, "metadata": { "collapsed": true }, "outputs": [], "source": [ "reject_bad=g.outcomes.add(\"R rejects bad hand\")\n", "reject_bad[0]=0\n", "reject_bad[1]=1" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We proceed by appending the previously defined outcome pairs to the corresonding leafs." ] }, { "cell_type": "code", "execution_count": 21, "metadata": { "collapsed": false }, "outputs": [], "source": [ "for i in range(0,81):\n", " hand=int(g.root.children[i].infoset.actions[0].label)+int(g.root.children[i].infoset.actions[1].label)\n", " if hand>8:\n", " g.root.children[i].children[0].children[0].outcome=accept_good\n", " g.root.children[i].children[0].children[1].outcome=reject_good\n", " g.root.children[i].children[1].children[0].outcome=accept_good\n", " g.root.children[i].children[1].children[1].outcome=reject_good\n", " else:\n", " g.root.children[i].children[0].children[0].outcome=accept_bad\n", " g.root.children[i].children[0].children[1].outcome=reject_bad\n", " g.root.children[i].children[1].children[0].outcome=accept_bad\n", " g.root.children[i].children[1].children[1].outcome=reject_bad" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We write the game out to disk in order to be able to use the Gambit command-line tools to compute the principle branch of the QRE." ] }, { "cell_type": "code", "execution_count": 22, "metadata": { "collapsed": true }, "outputs": [], "source": [ "with file(\"extensive9x9.efg\", \"w\") as f:\n", " f.write(g.write('efg'))" ] }, { "cell_type": "markdown", "metadata": { "collapsed": true }, "source": [ "Computing the principal branch of the QRE:" ] }, { "cell_type": "code", "execution_count": 24, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Compute a branch of the logit equilibrium correspondence\n", "Gambit version 14.1.0, Copyright (C) 1994-2014, The Gambit Project\n", "This is free software, distributed under the GNU GPL\n", "\n", "0.000000,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5\n", "0.018135,0.5,0.5,0.499995,0.500005,0.499991,0.500009,0.499986,0.500014,0.499982,0.500018,0.499977,0.500023,0.499973,0.500027,0.499968,0.500032,0.499968,0.500032,0.500005,0.499995,0.5,0.5,0.499995,0.500005,0.499991,0.500009,0.499986,0.500014,0.499982,0.500018,0.499977,0.500023,0.499973,0.500027,0.499973,0.500027,0.500009,0.499991,0.500005,0.499995,0.5,0.5,0.499995,0.500005,0.499991,0.500009,0.499986,0.500014,0.499982,0.500018,0.499977,0.500023,0.499977,0.500023,0.500014,0.499986,0.500009,0.499991,0.500005,0.499995,0.5,0.5,0.499995,0.500005,0.499991,0.500009,0.499986,0.500014,0.499982,0.500018,0.499982,0.500018,0.500018,0.499982,0.500014,0.499986,0.500009,0.499991,0.500005,0.499995,0.5,0.5,0.499995,0.500005,0.499991,0.500009,0.499986,0.500014,0.499986,0.500014,0.500023,0.499977,0.500018,0.499982,0.500014,0.499986,0.500009,0.499991,0.500005,0.499995,0.5,0.5,0.499995,0.500005,0.499991,0.500009,0.499991,0.500009,0.500027,0.499973,0.500023,0.499977,0.500018,0.499982,0.500014,0.499986,0.500009,0.499991,0.500005,0.499995,0.5,0.5,0.499995,0.500005,0.499995,0.500005,0.500032,0.499968,0.500027,0.499973,0.500023,0.499977,0.500018,0.499982,0.500014,0.499986,0.500009,0.499991,0.500005,0.499995,0.5,0.5,0.5,0.5,0.500032,0.499968,0.500027,0.499973,0.500023,0.499977,0.500018,0.499982,0.500014,0.499986,0.500009,0.499991,0.500005,0.499995,0.5,0.5,0.5,0.5,0.497481,0.502519,0.498489,0.501511,0.499496,0.500504,0.500504,0.499496,0.501511,0.498489,0.502519,0.497481,0.503526,0.496474,0.504534,0.495466,0.504534,0.495466\n", "0.038066,0.5,0.5,0.49998,0.50002,0.49996,0.50004,0.49994,0.50006,0.49992,0.50008,0.499899,0.500101,0.499879,0.500121,0.499859,0.500141,0.499859,0.500141,0.50002,0.49998,0.5,0.5,0.49998,0.50002,0.49996,0.50004,0.49994,0.50006,0.499919,0.500081,0.499899,0.500101,0.499879,0.500121,0.499879,0.500121,0.50004,0.49996,0.50002,0.49998,0.5,0.5,0.49998,0.50002,0.49996,0.50004,0.49994,0.50006,0.499919,0.500081,0.499899,0.500101,0.499899,0.500101,0.50006,0.49994,0.50004,0.49996,0.50002,0.49998,0.5,0.5,0.49998,0.50002,0.49996,0.50004,0.49994,0.50006,0.49992,0.50008,0.49992,0.50008,0.50008,0.49992,0.50006,0.49994,0.50004,0.49996,0.50002,0.49998,0.5,0.5,0.49998,0.50002,0.49996,0.50004,0.49994,0.50006,0.49994,0.50006,0.500101,0.499899,0.500081,0.499919,0.50006,0.49994,0.50004,0.49996,0.50002,0.49998,0.5,0.5,0.49998,0.50002,0.49996,0.50004,0.49996,0.50004,0.500121,0.499879,0.500101,0.499899,0.500081,0.499919,0.50006,0.49994,0.50004,0.49996,0.50002,0.49998,0.5,0.5,0.49998,0.50002,0.49998,0.50002,0.500141,0.499859,0.500121,0.499879,0.500101,0.499899,0.50008,0.49992,0.50006,0.49994,0.50004,0.49996,0.50002,0.49998,0.5,0.5,0.5,0.5,0.500141,0.499859,0.500121,0.499879,0.500101,0.499899,0.50008,0.49992,0.50006,0.49994,0.50004,0.49996,0.50002,0.49998,0.5,0.5,0.5,0.5,0.494713,0.505287,0.496827,0.503173,0.498942,0.501058,0.501057,0.498943,0.503171,0.496829,0.505286,0.494714,0.507401,0.492599,0.509515,0.490485,0.509515,0.490485\n", "0.059950,0.5,0.5,0.49995,0.50005,0.4999,0.5001,0.49985,0.50015,0.4998,0.5002,0.49975,0.50025,0.499701,0.500299,0.499651,0.500349,0.499651,0.500349,0.50005,0.49995,0.5,0.5,0.49995,0.50005,0.4999,0.5001,0.49985,0.50015,0.4998,0.5002,0.49975,0.50025,0.499701,0.500299,0.499701,0.500299,0.5001,0.4999,0.50005,0.49995,0.5,0.5,0.49995,0.50005,0.4999,0.5001,0.49985,0.50015,0.4998,0.5002,0.49975,0.50025,0.49975,0.50025,0.50015,0.49985,0.5001,0.4999,0.50005,0.49995,0.5,0.5,0.49995,0.50005,0.4999,0.5001,0.49985,0.50015,0.4998,0.5002,0.4998,0.5002,0.5002,0.4998,0.50015,0.49985,0.5001,0.4999,0.50005,0.49995,0.5,0.5,0.49995,0.50005,0.4999,0.5001,0.49985,0.50015,0.49985,0.50015,0.50025,0.49975,0.5002,0.4998,0.50015,0.49985,0.5001,0.4999,0.50005,0.49995,0.5,0.5,0.49995,0.50005,0.4999,0.5001,0.4999,0.5001,0.500299,0.499701,0.50025,0.49975,0.5002,0.4998,0.50015,0.49985,0.5001,0.4999,0.50005,0.49995,0.5,0.5,0.49995,0.50005,0.49995,0.50005,0.500349,0.499651,0.500299,0.499701,0.50025,0.49975,0.5002,0.4998,0.50015,0.49985,0.5001,0.4999,0.50005,0.49995,0.5,0.5,0.5,0.5,0.500349,0.499651,0.500299,0.499701,0.50025,0.49975,0.5002,0.4998,0.50015,0.49985,0.5001,0.4999,0.50005,0.49995,0.5,0.5,0.5,0.5,0.491672,0.508328,0.495002,0.504998,0.498332,0.501668,0.501662,0.498338,0.504993,0.495007,0.508323,0.491677,0.511654,0.488346,0.514983,0.485017,0.514983,0.485017\n", "0.083946,0.5,0.5,0.499902,0.500098,0.499804,0.500196,0.499706,0.500294,0.499609,0.500391,0.499511,0.500489,0.499413,0.500587,0.499315,0.500685,0.499315,0.500685,0.500098,0.499902,0.5,0.5,0.499902,0.500098,0.499804,0.500196,0.499706,0.500294,0.499609,0.500391,0.499511,0.500489,0.499413,0.500587,0.499413,0.500587,0.500196,0.499804,0.500098,0.499902,0.5,0.5,0.499902,0.500098,0.499804,0.500196,0.499706,0.500294,0.499609,0.500391,0.499511,0.500489,0.499511,0.500489,0.500294,0.499706,0.500196,0.499804,0.500098,0.499902,0.5,0.5,0.499902,0.500098,0.499804,0.500196,0.499706,0.500294,0.499609,0.500391,0.499609,0.500391,0.500391,0.499609,0.500294,0.499706,0.500196,0.499804,0.500098,0.499902,0.5,0.5,0.499902,0.500098,0.499804,0.500196,0.499706,0.500294,0.499706,0.500294,0.500489,0.499511,0.500391,0.499609,0.500294,0.499706,0.500196,0.499804,0.500098,0.499902,0.5,0.5,0.499902,0.500098,0.499804,0.500196,0.499804,0.500196,0.500587,0.499413,0.500489,0.499511,0.500391,0.499609,0.500294,0.499706,0.500196,0.499804,0.500098,0.499902,0.5,0.5,0.499902,0.500098,0.499902,0.500098,0.500685,0.499315,0.500587,0.499413,0.500489,0.499511,0.500391,0.499609,0.500294,0.499706,0.500196,0.499804,0.500098,0.499902,0.5,0.5,0.5,0.5,0.500685,0.499315,0.500587,0.499413,0.500489,0.499511,0.500391,0.499609,0.500294,0.499706,0.500196,0.499804,0.500098,0.499902,0.5,0.5,0.5,0.5,0.488337,0.511663,0.492997,0.507003,0.49766,0.50234,0.502323,0.497677,0.506987,0.493013,0.511651,0.488349,0.516314,0.483686,0.520974,0.479026,0.520974,0.479026\n", "0.110217,0.5,0.5,0.499832,0.500168,0.499663,0.500337,0.499494,0.500506,0.499325,0.500675,0.499157,0.500843,0.498988,0.501012,0.49882,0.50118,0.49882,0.50118,0.500168,0.499832,0.5,0.5,0.499831,0.500169,0.499663,0.500337,0.499494,0.500506,0.499325,0.500675,0.499157,0.500843,0.498988,0.501012,0.498988,0.501012,0.500337,0.499663,0.500169,0.499831,0.5,0.5,0.499831,0.500169,0.499663,0.500337,0.499494,0.500506,0.499325,0.500675,0.499157,0.500843,0.499157,0.500843,0.500506,0.499494,0.500337,0.499663,0.500169,0.499831,0.5,0.5,0.499831,0.500169,0.499663,0.500337,0.499494,0.500506,0.499325,0.500675,0.499325,0.500675,0.500675,0.499325,0.500506,0.499494,0.500337,0.499663,0.500169,0.499831,0.5,0.5,0.499831,0.500169,0.499663,0.500337,0.499494,0.500506,0.499494,0.500506,0.500843,0.499157,0.500675,0.499325,0.500506,0.499494,0.500337,0.499663,0.500169,0.499831,0.5,0.5,0.499831,0.500169,0.499663,0.500337,0.499663,0.500337,0.501012,0.498988,0.500843,0.499157,0.500675,0.499325,0.500506,0.499494,0.500337,0.499663,0.500169,0.499831,0.5,0.5,0.499831,0.500169,0.499831,0.500169,0.50118,0.49882,0.501012,0.498988,0.500843,0.499157,0.500675,0.499325,0.500506,0.499494,0.500337,0.499663,0.500169,0.499831,0.5,0.5,0.5,0.5,0.50118,0.49882,0.501012,0.498988,0.500843,0.499157,0.500675,0.499325,0.500506,0.499494,0.500337,0.499663,0.500169,0.499831,0.5,0.5,0.5,0.5,0.484684,0.515316,0.490799,0.509201,0.496919,0.503081,0.503042,0.496958,0.509166,0.490834,0.515289,0.484711,0.52141,0.47859,0.527526,0.472474,0.527526,0.472474\n", "0.138920,0.5,0.5,0.499733,0.500267,0.499465,0.500535,0.499197,0.500803,0.498929,0.501071,0.498661,0.501339,0.498393,0.501607,0.498125,0.501875,0.498125,0.501875,0.500267,0.499733,0.5,0.5,0.499732,0.500268,0.499464,0.500536,0.499196,0.500804,0.498928,0.501072,0.49866,0.50134,0.498393,0.501607,0.498393,0.501607,0.500535,0.499465,0.500268,0.499732,0.5,0.5,0.499732,0.500268,0.499464,0.500536,0.499196,0.500804,0.498928,0.501072,0.49866,0.50134,0.49866,0.50134,0.500803,0.499197,0.500536,0.499464,0.500268,0.499732,0.5,0.5,0.499732,0.500268,0.499464,0.500536,0.499196,0.500804,0.498928,0.501072,0.498928,0.501072,0.501071,0.498929,0.500804,0.499196,0.500536,0.499464,0.500268,0.499732,0.5,0.5,0.499732,0.500268,0.499464,0.500536,0.499197,0.500803,0.499197,0.500803,0.501339,0.498661,0.501072,0.498928,0.500804,0.499196,0.500536,0.499464,0.500268,0.499732,0.5,0.5,0.499732,0.500268,0.499465,0.500535,0.499465,0.500535,0.501607,0.498393,0.50134,0.49866,0.501072,0.498928,0.500804,0.499196,0.500536,0.499464,0.500268,0.499732,0.5,0.5,0.499732,0.500268,0.499732,0.500268,0.501875,0.498125,0.501607,0.498393,0.50134,0.49866,0.501072,0.498928,0.500803,0.499197,0.500535,0.499465,0.500268,0.499732,0.5,0.5,0.5,0.5,0.501875,0.498125,0.501607,0.498393,0.50134,0.49866,0.501072,0.498928,0.500803,0.499197,0.500535,0.499465,0.500268,0.499732,0.5,0.5,0.5,0.5,0.480689,0.519311,0.488391,0.511609,0.496102,0.503898,0.503819,0.496181,0.511539,0.488461,0.519257,0.480743,0.52697,0.47303,0.534674,0.465326,0.534674,0.465326\n", "0.170210,0.5,0.5,0.499599,0.500401,0.499197,0.500803,0.498795,0.501205,0.498392,0.501608,0.49799,0.50201,0.497588,0.502412,0.497186,0.502814,0.497186,0.502814,0.500401,0.499599,0.5,0.5,0.499598,0.500402,0.499196,0.500804,0.498793,0.501207,0.498391,0.501609,0.497989,0.502011,0.497588,0.502412,0.497588,0.502412,0.500803,0.499197,0.500402,0.499598,0.5,0.5,0.499598,0.500402,0.499195,0.500805,0.498793,0.501207,0.498391,0.501609,0.497989,0.502011,0.497989,0.502011,0.501205,0.498795,0.500804,0.499196,0.500402,0.499598,0.5,0.5,0.499597,0.500403,0.499195,0.500805,0.498793,0.501207,0.498392,0.501608,0.498392,0.501608,0.501608,0.498392,0.501207,0.498793,0.500805,0.499195,0.500403,0.499597,0.5,0.5,0.499598,0.500402,0.499196,0.500804,0.498794,0.501206,0.498794,0.501206,0.50201,0.49799,0.501609,0.498391,0.501207,0.498793,0.500805,0.499195,0.500402,0.499598,0.5,0.5,0.499598,0.500402,0.499197,0.500803,0.499197,0.500803,0.502412,0.497588,0.502011,0.497989,0.501609,0.498391,0.501207,0.498793,0.500804,0.499196,0.500402,0.499598,0.5,0.5,0.499599,0.500401,0.499599,0.500401,0.502814,0.497186,0.502412,0.497588,0.502011,0.497989,0.501608,0.498392,0.501206,0.498794,0.500803,0.499197,0.500401,0.499599,0.5,0.5,0.5,0.5,0.502814,0.497186,0.502412,0.497588,0.502011,0.497989,0.501608,0.498392,0.501206,0.498794,0.500803,0.499197,0.500401,0.499599,0.5,0.5,0.5,0.5,0.47633,0.52367,0.485756,0.514244,0.4952,0.5048,0.504655,0.495345,0.514114,0.485886,0.523571,0.476429,0.533019,0.466981,0.54245,0.45755,0.54245,0.45755\n", "0.204225,0.5,0.5,0.499423,0.500577,0.498845,0.501155,0.498266,0.501734,0.497686,0.502314,0.497107,0.502893,0.496529,0.503471,0.495952,0.504048,0.495952,0.504048,0.500577,0.499423,0.5,0.5,0.499422,0.500578,0.498843,0.501157,0.498263,0.501737,0.497684,0.502316,0.497105,0.502895,0.496528,0.503472,0.496528,0.503472,0.501155,0.498845,0.500578,0.499422,0.5,0.5,0.499421,0.500579,0.498841,0.501159,0.498262,0.501738,0.497683,0.502317,0.497106,0.502894,0.497106,0.502894,0.501734,0.498266,0.501157,0.498843,0.500579,0.499421,0.5,0.5,0.49942,0.50058,0.498841,0.501159,0.498263,0.501737,0.497686,0.502314,0.497686,0.502314,0.502314,0.497686,0.501737,0.498263,0.501159,0.498841,0.50058,0.49942,0.5,0.5,0.499421,0.500579,0.498842,0.501158,0.498265,0.501735,0.498265,0.501735,0.502893,0.497107,0.502316,0.497684,0.501738,0.498262,0.501159,0.498841,0.500579,0.499421,0.5,0.5,0.499421,0.500579,0.498844,0.501156,0.498844,0.501156,0.503471,0.496529,0.502895,0.497105,0.502317,0.497683,0.501737,0.498263,0.501158,0.498842,0.500579,0.499421,0.5,0.5,0.499423,0.500577,0.499423,0.500577,0.504048,0.495952,0.503472,0.496528,0.502894,0.497106,0.502314,0.497686,0.501735,0.498265,0.501156,0.498844,0.500577,0.499423,0.5,0.5,0.5,0.5,0.504048,0.495952,0.503472,0.496528,0.502894,0.497106,0.502314,0.497686,0.501735,0.498265,0.501156,0.498844,0.500577,0.499423,0.5,0.5,0.5,0.5,0.471584,0.528416,0.482878,0.517122,0.494203,0.505797,0.505547,0.494453,0.516899,0.483101,0.528246,0.471754,0.539577,0.460423,0.55088,0.44912,0.55088,0.44912\n", "0.241091,0.5,0.5,0.499198,0.500802,0.498393,0.501607,0.497586,0.502414,0.496778,0.503222,0.49597,0.50403,0.495165,0.504835,0.494362,0.505638,0.494362,0.505638,0.500802,0.499198,0.5,0.5,0.499195,0.500805,0.498388,0.501612,0.49758,0.50242,0.496772,0.503228,0.495967,0.504033,0.495164,0.504836,0.495164,0.504836,0.501607,0.498393,0.500805,0.499195,0.5,0.5,0.499193,0.500807,0.498385,0.501615,0.497578,0.502422,0.496772,0.503228,0.495969,0.504031,0.495969,0.504031,0.502414,0.497586,0.501612,0.498388,0.500807,0.499193,0.5,0.5,0.499192,0.500808,0.498385,0.501615,0.497579,0.502421,0.496776,0.503224,0.496776,0.503224,0.503222,0.496778,0.50242,0.49758,0.501615,0.498385,0.500808,0.499192,0.5,0.5,0.499193,0.500807,0.498387,0.501613,0.497584,0.502416,0.497584,0.502416,0.50403,0.49597,0.503228,0.496772,0.502422,0.497578,0.501615,0.498385,0.500807,0.499193,0.5,0.5,0.499194,0.500806,0.498391,0.501609,0.498391,0.501609,0.504835,0.495165,0.504033,0.495967,0.503228,0.496772,0.502421,0.497579,0.501613,0.498387,0.500806,0.499194,0.5,0.5,0.499197,0.500803,0.499197,0.500803,0.505638,0.494362,0.504836,0.495164,0.504031,0.495969,0.503224,0.496776,0.502416,0.497584,0.501609,0.498391,0.500803,0.499197,0.5,0.5,0.5,0.5,0.505638,0.494362,0.504836,0.495164,0.504031,0.495969,0.503224,0.496776,0.502416,0.497584,0.501609,0.498391,0.500803,0.499197,0.5,0.5,0.5,0.5,0.466431,0.533569,0.479739,0.520261,0.493099,0.506901,0.50649,0.49351,0.519893,0.480107,0.533289,0.466711,0.546659,0.453341,0.559982,0.440018,0.559982,0.440018\n", "0.280909,0.5,0.5,0.498913,0.501087,0.497821,0.502179,0.496726,0.503274,0.495629,0.504371,0.494533,0.505467,0.49344,0.50656,0.492352,0.507648,0.492352,0.507648,0.501087,0.498913,0.5,0.5,0.498908,0.501092,0.497812,0.502188,0.496715,0.503285,0.495619,0.504381,0.494526,0.505474,0.493438,0.506562,0.493438,0.506562,0.502179,0.497821,0.501092,0.498908,0.5,0.5,0.498904,0.501096,0.497807,0.502193,0.496711,0.503289,0.495618,0.504382,0.49453,0.50547,0.49453,0.50547,0.503274,0.496726,0.502188,0.497812,0.501096,0.498904,0.5,0.5,0.498903,0.501097,0.497807,0.502193,0.496713,0.503287,0.495625,0.504375,0.495625,0.504375,0.504371,0.495629,0.503285,0.496715,0.502193,0.497807,0.501097,0.498903,0.5,0.5,0.498904,0.501096,0.49781,0.50219,0.496722,0.503278,0.496722,0.503278,0.505467,0.494533,0.504381,0.495619,0.503289,0.496711,0.502193,0.497807,0.501096,0.498904,0.5,0.5,0.498907,0.501093,0.497819,0.502181,0.497819,0.502181,0.50656,0.49344,0.505474,0.494526,0.504382,0.495618,0.503287,0.496713,0.50219,0.49781,0.501093,0.498907,0.5,0.5,0.498912,0.501088,0.498912,0.501088,0.507648,0.492352,0.506562,0.493438,0.50547,0.49453,0.504375,0.495625,0.503278,0.496722,0.502181,0.497819,0.501088,0.498912,0.5,0.5,0.5,0.5,0.507648,0.492352,0.506562,0.493438,0.50547,0.49453,0.504375,0.495625,0.503278,0.496722,0.502181,0.497819,0.501088,0.498912,0.5,0.5,0.5,0.5,0.460851,0.539149,0.476322,0.523678,0.491874,0.508126,0.507476,0.492524,0.523097,0.476903,0.538707,0.461293,0.554275,0.445725,0.569769,0.430231,0.569769,0.430231\n", "0.323759,0.5,0.5,0.498561,0.501439,0.497112,0.502888,0.495657,0.504343,0.494199,0.505801,0.492743,0.507257,0.491292,0.508708,0.489851,0.510149,0.489851,0.510149,0.501439,0.498561,0.5,0.5,0.498551,0.501449,0.497096,0.502904,0.495638,0.504362,0.494182,0.505818,0.492731,0.507269,0.491289,0.508711,0.491289,0.508711,0.502888,0.497112,0.501449,0.498551,0.5,0.5,0.498545,0.501455,0.497087,0.502913,0.495631,0.504369,0.49418,0.50582,0.492738,0.507262,0.492738,0.507262,0.504343,0.495657,0.502904,0.497096,0.501455,0.498545,0.5,0.5,0.498542,0.501458,0.497086,0.502914,0.495635,0.504365,0.494193,0.505807,0.494193,0.505807,0.505801,0.494199,0.504362,0.495638,0.502913,0.497087,0.501458,0.498542,0.5,0.5,0.498544,0.501456,0.497093,0.502907,0.495651,0.504349,0.495651,0.504349,0.507257,0.492743,0.505818,0.494182,0.504369,0.495631,0.502914,0.497086,0.501456,0.498544,0.5,0.5,0.498549,0.501451,0.497107,0.502893,0.497107,0.502893,0.508708,0.491292,0.507269,0.492731,0.50582,0.49418,0.504365,0.495635,0.502907,0.497093,0.501451,0.498549,0.5,0.5,0.498558,0.501442,0.498558,0.501442,0.510149,0.489851,0.508711,0.491289,0.507262,0.492738,0.505807,0.494193,0.504349,0.495651,0.502893,0.497107,0.501442,0.498558,0.5,0.5,0.5,0.5,0.510149,0.489851,0.508711,0.491289,0.507262,0.492738,0.505807,0.494193,0.504349,0.495651,0.502893,0.497107,0.501442,0.498558,0.5,0.5,0.5,0.5,0.454829,0.545171,0.472609,0.527391,0.490512,0.509488,0.508492,0.491508,0.526502,0.473498,0.544496,0.455504,0.562424,0.437576,0.58024,0.41976,0.58024,0.41976\n", "0.369698,0.5,0.5,0.49813,0.50187,0.496243,0.503757,0.494346,0.505654,0.492445,0.507555,0.490546,0.509454,0.488657,0.511343,0.486783,0.513217,0.486783,0.513217,0.50187,0.49813,0.5,0.5,0.498113,0.501887,0.496216,0.503784,0.494314,0.505686,0.492415,0.507585,0.490526,0.509474,0.488652,0.511348,0.488652,0.511348,0.503757,0.496243,0.501887,0.498113,0.5,0.5,0.498103,0.501897,0.496201,0.503799,0.494302,0.505698,0.492412,0.507588,0.490538,0.509462,0.490538,0.509462,0.505654,0.494346,0.503784,0.496216,0.501897,0.498103,0.5,0.5,0.498098,0.501902,0.496199,0.503801,0.494309,0.505691,0.492434,0.507566,0.492434,0.507566,0.507555,0.492445,0.505686,0.494314,0.503799,0.496201,0.501902,0.498098,0.5,0.5,0.498101,0.501899,0.49621,0.50379,0.494336,0.505664,0.494336,0.505664,0.509454,0.490546,0.507585,0.492415,0.505698,0.494302,0.503801,0.496199,0.501899,0.498101,0.5,0.5,0.49811,0.50189,0.496235,0.503765,0.496235,0.503765,0.511343,0.488657,0.509474,0.490526,0.507588,0.492412,0.505691,0.494309,0.50379,0.49621,0.50189,0.49811,0.5,0.5,0.498125,0.501875,0.498125,0.501875,0.513217,0.486783,0.511348,0.488652,0.509462,0.490538,0.507566,0.492434,0.505664,0.494336,0.503765,0.496235,0.501875,0.498125,0.5,0.5,0.5,0.5,0.513217,0.486783,0.511348,0.488652,0.509462,0.490538,0.507566,0.492434,0.505664,0.494336,0.503765,0.496235,0.501875,0.498125,0.5,0.5,0.5,0.5,0.448348,0.551652,0.468579,0.531421,0.488993,0.511007,0.509523,0.490477,0.530098,0.469902,0.550649,0.449351,0.571101,0.428899,0.591386,0.408614,0.591386,0.408614\n", "0.418759,0.5,0.5,0.497611,0.502389,0.495195,0.504805,0.492761,0.507239,0.49032,0.50968,0.487884,0.512116,0.485463,0.514537,0.483069,0.516931,0.483069,0.516931,0.502389,0.497611,0.5,0.5,0.497583,0.502417,0.495149,0.504851,0.492708,0.507292,0.490272,0.509728,0.48785,0.51215,0.485455,0.514545,0.485455,0.514545,0.504805,0.495195,0.502417,0.497583,0.5,0.5,0.497566,0.502434,0.495125,0.504875,0.492687,0.507313,0.490265,0.509735,0.48787,0.51213,0.48787,0.51213,0.507239,0.492761,0.504851,0.495149,0.502434,0.497566,0.5,0.5,0.497559,0.502441,0.495121,0.504879,0.492699,0.507301,0.490303,0.509697,0.490303,0.509697,0.50968,0.49032,0.507292,0.492708,0.504875,0.495125,0.502441,0.497559,0.5,0.5,0.497563,0.502437,0.49514,0.50486,0.492744,0.507256,0.492744,0.507256,0.512116,0.487884,0.509728,0.490272,0.507313,0.492687,0.504879,0.495121,0.502437,0.497563,0.5,0.5,0.497577,0.502423,0.495181,0.504819,0.495181,0.504819,0.514537,0.485463,0.51215,0.48785,0.509735,0.490265,0.507301,0.492699,0.50486,0.49514,0.502423,0.497577,0.5,0.5,0.497603,0.502397,0.497603,0.502397,0.516931,0.483069,0.514545,0.485455,0.51213,0.48787,0.509697,0.490303,0.507256,0.492744,0.504819,0.495181,0.502397,0.497603,0.5,0.5,0.5,0.5,0.516931,0.483069,0.514545,0.485455,0.51213,0.48787,0.509697,0.490303,0.507256,0.492744,0.504819,0.495181,0.502397,0.497603,0.5,0.5,0.5,0.5,0.441396,0.558604,0.464212,0.535788,0.487295,0.512705,0.510547,0.489453,0.533867,0.466133,0.55715,0.44285,0.580291,0.419709,0.603186,0.396814,0.603186,0.396814\n", "0.470959,0.5,0.5,0.496995,0.503005,0.493945,0.506055,0.490867,0.509133,0.487778,0.512222,0.484696,0.515304,0.481639,0.518361,0.478625,0.521375,0.478625,0.521375,0.503005,0.496995,0.5,0.5,0.49695,0.50305,0.493871,0.506129,0.490782,0.509218,0.487699,0.512301,0.484641,0.515359,0.481626,0.518374,0.481626,0.518374,0.506055,0.493945,0.50305,0.49695,0.5,0.5,0.496921,0.503079,0.493831,0.506169,0.490748,0.509252,0.487689,0.512311,0.484673,0.515327,0.484673,0.515327,0.509133,0.490867,0.506129,0.493871,0.503079,0.496921,0.5,0.5,0.49691,0.50309,0.493826,0.506174,0.490766,0.509234,0.487749,0.512251,0.487749,0.512251,0.512222,0.487778,0.509218,0.490782,0.506169,0.493831,0.50309,0.49691,0.5,0.5,0.496916,0.503084,0.493856,0.506144,0.490838,0.509162,0.490838,0.509162,0.515304,0.484696,0.512301,0.487699,0.509252,0.490748,0.506174,0.493826,0.503084,0.496916,0.5,0.5,0.49694,0.50306,0.493921,0.506079,0.493921,0.506079,0.518361,0.481639,0.515359,0.484641,0.512311,0.487689,0.509234,0.490766,0.506144,0.493856,0.50306,0.49694,0.5,0.5,0.496981,0.503019,0.496981,0.503019,0.521375,0.478625,0.518374,0.481626,0.515327,0.484673,0.512251,0.487749,0.509162,0.490838,0.506079,0.493921,0.503019,0.496981,0.5,0.5,0.5,0.5,0.521375,0.478625,0.518374,0.481626,0.515327,0.484673,0.512251,0.487749,0.509162,0.490838,0.506079,0.493921,0.503019,0.496981,0.5,0.5,0.5,0.5,0.433958,0.566042,0.459484,0.540516,0.485389,0.514611,0.511538,0.488462,0.537785,0.462215,0.56398,0.43602,0.589972,0.410028,0.615611,0.384389,0.615611,0.384389\n", "0.526302,0.5,0.5,0.496271,0.503729,0.492472,0.507528,0.488628,0.511372,0.484768,0.515232,0.480919,0.519081,0.47711,0.52289,0.473368,0.526632,0.473368,0.526632,0.503729,0.496271,0.5,0.5,0.496201,0.503799,0.492356,0.507644,0.488495,0.511505,0.484644,0.515356,0.480833,0.519167,0.477089,0.522911,0.477089,0.522911,0.507528,0.492472,0.503799,0.496201,0.5,0.5,0.496155,0.503845,0.492293,0.507707,0.488441,0.511559,0.484628,0.515372,0.480881,0.519119,0.480881,0.519119,0.511372,0.488628,0.507644,0.492356,0.503845,0.496155,0.5,0.5,0.496137,0.503863,0.492284,0.507716,0.488469,0.511531,0.484722,0.515278,0.484722,0.515278,0.515232,0.484768,0.511505,0.488495,0.507707,0.492293,0.503863,0.496137,0.5,0.5,0.496146,0.503854,0.492331,0.507669,0.488582,0.511418,0.488582,0.511418,0.519081,0.480919,0.515356,0.484644,0.511559,0.488441,0.507716,0.492284,0.503854,0.496146,0.5,0.5,0.496184,0.503816,0.492434,0.507566,0.492434,0.507566,0.52289,0.47711,0.519167,0.480833,0.515372,0.484628,0.511531,0.488469,0.507669,0.492331,0.503816,0.496184,0.5,0.5,0.496249,0.503751,0.496249,0.503751,0.526632,0.473368,0.522911,0.477089,0.519119,0.480881,0.515278,0.484722,0.511418,0.488582,0.507566,0.492434,0.503751,0.496249,0.5,0.5,0.5,0.5,0.526632,0.473368,0.522911,0.477089,0.519119,0.480881,0.515278,0.484722,0.511418,0.488582,0.507566,0.492434,0.503751,0.496249,0.5,0.5,0.5,0.5,0.426022,0.573978,0.454367,0.545633,0.483244,0.516756,0.512465,0.487535,0.541825,0.458175,0.571113,0.428887,0.600115,0.399885,0.62862,0.37138,0.62862,0.37138\n", "0.584789,0.5,0.5,0.49543,0.50457,0.490754,0.509246,0.48601,0.51399,0.48124,0.51876,0.476488,0.523512,0.471797,0.528203,0.467212,0.532788,0.467212,0.532788,0.50457,0.49543,0.5,0.5,0.495323,0.504677,0.490578,0.509422,0.485805,0.514195,0.481049,0.518951,0.476355,0.523645,0.471765,0.528235,0.471765,0.528235,0.509246,0.490754,0.504677,0.495323,0.5,0.5,0.495254,0.504746,0.490479,0.509521,0.485721,0.514279,0.481023,0.518977,0.476429,0.523571,0.476429,0.523571,0.51399,0.48601,0.509422,0.490578,0.504746,0.495254,0.5,0.5,0.495225,0.504775,0.490465,0.509535,0.485764,0.514236,0.481167,0.518833,0.481167,0.518833,0.51876,0.48124,0.514195,0.485805,0.509521,0.490479,0.504775,0.495225,0.5,0.5,0.495239,0.504761,0.490537,0.509463,0.485937,0.514063,0.485937,0.514063,0.523512,0.476488,0.518951,0.481049,0.514279,0.485721,0.509535,0.490465,0.504761,0.495239,0.5,0.5,0.495297,0.504703,0.490695,0.509305,0.490695,0.509305,0.528203,0.471797,0.523645,0.476355,0.518977,0.481023,0.514236,0.485764,0.509463,0.490537,0.504703,0.495297,0.5,0.5,0.495398,0.504602,0.495398,0.504602,0.532788,0.467212,0.528235,0.471765,0.523571,0.476429,0.518833,0.481167,0.514063,0.485937,0.509305,0.490695,0.504602,0.495398,0.5,0.5,0.5,0.5,0.532788,0.467212,0.528235,0.471765,0.523571,0.476429,0.518833,0.481167,0.514063,0.485937,0.509305,0.490695,0.504602,0.495398,0.5,0.5,0.5,0.5,0.417572,0.582428,0.44883,0.55117,0.48082,0.51918,0.513287,0.486713,0.545951,0.454049,0.578517,0.421483,0.610686,0.389314,0.642169,0.357831,0.642169,0.357831\n", "0.646417,0.5,0.5,0.494466,0.505534,0.488773,0.511227,0.482978,0.517022,0.477143,0.522857,0.471336,0.528664,0.465623,0.534377,0.46007,0.53993,0.46007,0.53993,0.505534,0.494466,0.5,0.5,0.494306,0.505694,0.488508,0.511492,0.482668,0.517332,0.476855,0.523145,0.471135,0.528865,0.465573,0.534427,0.465573,0.534427,0.511227,0.488773,0.505694,0.494306,0.5,0.5,0.4942,0.5058,0.488358,0.511642,0.48254,0.51746,0.476814,0.523186,0.471245,0.528755,0.471245,0.528755,0.517022,0.482978,0.511492,0.488508,0.5058,0.4942,0.5,0.5,0.494156,0.505844,0.488335,0.511665,0.482604,0.517396,0.477029,0.522971,0.477029,0.522971,0.522857,0.477143,0.517332,0.482668,0.511642,0.488358,0.505844,0.494156,0.5,0.5,0.494177,0.505823,0.488444,0.511556,0.482864,0.517136,0.482864,0.517136,0.528664,0.471336,0.523145,0.476855,0.51746,0.48254,0.511665,0.488335,0.505823,0.494177,0.5,0.5,0.494265,0.505735,0.488682,0.511318,0.488682,0.511318,0.534377,0.465623,0.528865,0.471135,0.523186,0.476814,0.517396,0.482604,0.511556,0.488444,0.505735,0.494265,0.5,0.5,0.494416,0.505584,0.494416,0.505584,0.53993,0.46007,0.534427,0.465573,0.528755,0.471245,0.522971,0.477029,0.517136,0.482864,0.511318,0.488682,0.505584,0.494416,0.5,0.5,0.5,0.5,0.53993,0.46007,0.534427,0.465573,0.528755,0.471245,0.522971,0.477029,0.517136,0.482864,0.511318,0.488682,0.505584,0.494416,0.5,0.5,0.5,0.5,0.40859,0.59141,0.442834,0.557166,0.478071,0.521929,0.513961,0.486039,0.550125,0.449875,0.586158,0.413842,0.621649,0.378351,0.656203,0.343797,0.656203,0.343797\n", "0.711191,0.5,0.5,0.493372,0.506628,0.486511,0.513489,0.479498,0.520502,0.472425,0.527575,0.465395,0.534605,0.458507,0.541493,0.451858,0.548142,0.451858,0.548142,0.506628,0.493372,0.5,0.5,0.493136,0.506864,0.486118,0.513882,0.479038,0.520962,0.471997,0.528003,0.465097,0.534903,0.458433,0.541567,0.458433,0.541567,0.513489,0.486511,0.506864,0.493136,0.5,0.5,0.492979,0.507021,0.485893,0.514107,0.478844,0.521156,0.471934,0.528066,0.465257,0.534743,0.465257,0.534743,0.520502,0.479498,0.513882,0.486118,0.507021,0.492979,0.5,0.5,0.492912,0.507088,0.485857,0.514143,0.478938,0.521062,0.472251,0.527749,0.472251,0.527749,0.527575,0.472425,0.520962,0.479038,0.514107,0.485893,0.507088,0.492912,0.5,0.5,0.492943,0.507057,0.486018,0.513982,0.479323,0.520677,0.479323,0.520677,0.534605,0.465395,0.528003,0.471997,0.521156,0.478844,0.514143,0.485857,0.507057,0.492943,0.5,0.5,0.493073,0.506927,0.486372,0.513628,0.486372,0.513628,0.541493,0.458507,0.534903,0.465097,0.528066,0.471934,0.521062,0.478938,0.513982,0.486018,0.506927,0.493073,0.5,0.5,0.493297,0.506703,0.493297,0.506703,0.548142,0.451858,0.541567,0.458433,0.534743,0.465257,0.527749,0.472251,0.520677,0.479323,0.513628,0.486372,0.506703,0.493297,0.5,0.5,0.5,0.5,0.548142,0.451858,0.541567,0.458433,0.534743,0.465257,0.527749,0.472251,0.520677,0.479323,0.513628,0.486372,0.506703,0.493297,0.5,0.5,0.5,0.5,0.399055,0.600945,0.436334,0.563666,0.47494,0.52506,0.514432,0.485568,0.554302,0.445698,0.593998,0.406002,0.632963,0.367037,0.670664,0.329336,0.670664,0.329336\n", "0.779120,0.5,0.5,0.492144,0.507856,0.483951,0.516049,0.475536,0.524464,0.467035,0.532965,0.458596,0.541404,0.45037,0.54963,0.442494,0.557506,0.442494,0.557506,0.507856,0.492144,0.5,0.5,0.491803,0.508197,0.483379,0.516621,0.474865,0.525135,0.466409,0.533591,0.458161,0.541839,0.45026,0.54974,0.45026,0.54974,0.516049,0.483951,0.508197,0.491803,0.5,0.5,0.491572,0.508428,0.483048,0.516952,0.474578,0.525422,0.466311,0.533689,0.458389,0.541611,0.458389,0.541611,0.524464,0.475536,0.516621,0.483379,0.508428,0.491572,0.5,0.5,0.491471,0.508529,0.482991,0.517009,0.474711,0.525289,0.466771,0.533229,0.466771,0.533229,0.532965,0.467035,0.525135,0.474865,0.516952,0.483048,0.508529,0.491471,0.5,0.5,0.491515,0.508485,0.483225,0.516775,0.475271,0.524729,0.475271,0.524729,0.541404,0.458596,0.533591,0.466409,0.525422,0.474578,0.517009,0.482991,0.508485,0.491515,0.5,0.5,0.491705,0.508295,0.483743,0.516257,0.483743,0.516257,0.54963,0.45037,0.541839,0.458161,0.533689,0.466311,0.525289,0.474711,0.516775,0.483225,0.508295,0.491705,0.5,0.5,0.492033,0.507967,0.492033,0.507967,0.557506,0.442494,0.54974,0.45026,0.541611,0.458389,0.533229,0.466771,0.524729,0.475271,0.516257,0.483743,0.507967,0.492033,0.5,0.5,0.5,0.5,0.557506,0.442494,0.54974,0.45026,0.541611,0.458389,0.533229,0.466771,0.524729,0.475271,0.516257,0.483743,0.507967,0.492033,0.5,0.5,0.5,0.5,0.388941,0.611059,0.429276,0.570724,0.471363,0.528637,0.514639,0.485361,0.558429,0.441571,0.601995,0.398005,0.644584,0.355416,0.68549,0.31451,0.68549,0.31451\n", "0.850220,0.5,0.5,0.490781,0.509219,0.481083,0.518917,0.471064,0.528936,0.460921,0.539079,0.450871,0.549129,0.441132,0.558868,0.4319,0.5681,0.4319,0.5681,0.509219,0.490781,0.5,0.5,0.490295,0.509705,0.480262,0.519738,0.470097,0.529903,0.460018,0.539982,0.450243,0.549757,0.440971,0.559029,0.440971,0.559029,0.518917,0.481083,0.509705,0.490295,0.5,0.5,0.489959,0.510041,0.479779,0.520221,0.469675,0.530325,0.45987,0.54013,0.450562,0.549438,0.450562,0.549438,0.528936,0.471064,0.519738,0.480262,0.510041,0.489959,0.5,0.5,0.489811,0.510189,0.479691,0.520309,0.469862,0.530138,0.460525,0.539475,0.460525,0.539475,0.539079,0.460921,0.529903,0.470097,0.520221,0.479779,0.510189,0.489811,0.5,0.5,0.489872,0.510128,0.480027,0.519973,0.470667,0.529333,0.470667,0.529333,0.549129,0.450871,0.539982,0.460018,0.530325,0.469675,0.520309,0.479691,0.510128,0.489872,0.5,0.5,0.490147,0.509853,0.480772,0.519228,0.480772,0.519228,0.558868,0.441132,0.549757,0.450243,0.54013,0.45987,0.530138,0.469862,0.519973,0.480027,0.509853,0.490147,0.5,0.5,0.490618,0.509382,0.490618,0.509382,0.5681,0.4319,0.559029,0.440971,0.549438,0.450562,0.539475,0.460525,0.529333,0.470667,0.519228,0.480772,0.509382,0.490618,0.5,0.5,0.5,0.5,0.5681,0.4319,0.559029,0.440971,0.549438,0.450562,0.539475,0.460525,0.529333,0.470667,0.519228,0.480772,0.509382,0.490618,0.5,0.5,0.5,0.5,0.378221,0.621779,0.421599,0.578401,0.467263,0.532737,0.514507,0.485493,0.562451,0.437549,0.610105,0.389895,0.656467,0.343533,0.700613,0.299387,0.700613,0.299387\n", "0.924514,0.5,0.5,0.489285,0.510715,0.477899,0.522101,0.466056,0.533944,0.454035,0.545965,0.44215,0.55785,0.430716,0.569284,0.420007,0.579993,0.420007,0.579993,0.510715,0.489285,0.5,0.5,0.488603,0.511397,0.476737,0.523263,0.46468,0.53532,0.452748,0.547252,0.441257,0.558743,0.430483,0.569517,0.430483,0.569517,0.522101,0.477899,0.511397,0.488603,0.5,0.5,0.488121,0.511879,0.476038,0.523962,0.464068,0.535932,0.452527,0.547473,0.441696,0.558304,0.441696,0.558304,0.533944,0.466056,0.523263,0.476737,0.511879,0.488121,0.5,0.5,0.487903,0.512097,0.475905,0.524095,0.464325,0.535675,0.453445,0.546555,0.453445,0.546555,0.545965,0.454035,0.53532,0.46468,0.523962,0.476038,0.512097,0.487903,0.5,0.5,0.487988,0.512012,0.476381,0.523619,0.465464,0.534536,0.465464,0.534536,0.55785,0.44215,0.547252,0.452748,0.535932,0.464068,0.524095,0.475905,0.512012,0.487988,0.5,0.5,0.48838,0.51162,0.477439,0.522561,0.477439,0.522561,0.569284,0.430716,0.558743,0.441257,0.547473,0.452527,0.535675,0.464325,0.523619,0.476381,0.51162,0.48838,0.5,0.5,0.489048,0.510952,0.489048,0.510952,0.579993,0.420007,0.569517,0.430483,0.558304,0.441696,0.546555,0.453445,0.534536,0.465464,0.522561,0.477439,0.510952,0.489048,0.5,0.5,0.5,0.5,0.579993,0.420007,0.569517,0.430483,0.558304,0.441696,0.546555,0.453445,0.534536,0.465464,0.522561,0.477439,0.510952,0.489048,0.5,0.5,0.5,0.5,0.366863,0.633137,0.41323,0.58677,0.462549,0.537451,0.513953,0.486047,0.566301,0.433699,0.618283,0.381717,0.668568,0.331432,0.715961,0.284039,0.715961,0.284039\n", "1.002021,0.5,0.5,0.487664,0.512336,0.4744,0.5256,0.460492,0.539508,0.446331,0.553669,0.432369,0.567631,0.419053,0.580947,0.406758,0.593242,0.406758,0.593242,0.512336,0.487664,0.5,0.5,0.486719,0.513281,0.472775,0.527225,0.458556,0.541444,0.444519,0.555481,0.431113,0.568887,0.41872,0.58128,0.41872,0.58128,0.5256,0.4744,0.513281,0.486719,0.5,0.5,0.486035,0.513965,0.471775,0.528225,0.457675,0.542325,0.44419,0.55581,0.431706,0.568294,0.431706,0.568294,0.539508,0.460492,0.527225,0.472775,0.513965,0.486035,0.5,0.5,0.485717,0.514283,0.471573,0.528427,0.458024,0.541976,0.445462,0.554538,0.445462,0.554538,0.553669,0.446331,0.541444,0.458556,0.528225,0.471775,0.514283,0.485717,0.5,0.5,0.485832,0.514168,0.47224,0.52776,0.459619,0.540381,0.459619,0.540381,0.567631,0.432369,0.555481,0.444519,0.542325,0.457675,0.528427,0.471573,0.514168,0.485832,0.5,0.5,0.486386,0.513614,0.473727,0.526273,0.473727,0.526273,0.580947,0.419053,0.568887,0.431113,0.55581,0.44419,0.541976,0.458024,0.52776,0.47224,0.513614,0.486386,0.5,0.5,0.487322,0.512678,0.487322,0.512678,0.593242,0.406758,0.58128,0.41872,0.568294,0.431706,0.554538,0.445462,0.540381,0.459619,0.526273,0.473727,0.512678,0.487322,0.5,0.5,0.5,0.5,0.593242,0.406758,0.58128,0.41872,0.568294,0.431706,0.554538,0.445462,0.540381,0.459619,0.526273,0.473727,0.512678,0.487322,0.5,0.5,0.5,0.5,0.354834,0.645166,0.404086,0.595914,0.457115,0.542885,0.512876,0.487124,0.569907,0.430093,0.626478,0.373522,0.680837,0.319163,0.731456,0.268544,0.731456,0.268544\n", "1.082759,0.5,0.5,0.485934,0.514066,0.470599,0.529401,0.454364,0.545636,0.437771,0.562229,0.421467,0.578533,0.406082,0.593918,0.392116,0.607884,0.392116,0.607884,0.514066,0.485934,0.5,0.5,0.48464,0.51536,0.468349,0.531651,0.451668,0.548332,0.435247,0.564753,0.419724,0.580276,0.405609,0.594391,0.405609,0.594391,0.529401,0.470599,0.51536,0.48464,0.5,0.5,0.483677,0.516323,0.46693,0.53307,0.45041,0.54959,0.434762,0.565238,0.420508,0.579492,0.420508,0.579492,0.545636,0.454364,0.531651,0.468349,0.516323,0.483677,0.5,0.5,0.483217,0.516783,0.466625,0.533375,0.450876,0.549124,0.436501,0.563499,0.436501,0.563499,0.562229,0.437771,0.548332,0.451668,0.53307,0.46693,0.516783,0.483217,0.5,0.5,0.483371,0.516629,0.467552,0.532448,0.453085,0.546915,0.453085,0.546915,0.578533,0.421467,0.564753,0.435247,0.54959,0.45041,0.533375,0.466625,0.516629,0.483371,0.5,0.5,0.484147,0.515853,0.469619,0.530381,0.469619,0.530381,0.593918,0.406082,0.580276,0.419724,0.565238,0.434762,0.549124,0.450876,0.532448,0.467552,0.515853,0.484147,0.5,0.5,0.485444,0.514556,0.485444,0.514556,0.607884,0.392116,0.594391,0.405609,0.579492,0.420508,0.563499,0.436501,0.546915,0.453085,0.530381,0.469619,0.514556,0.485444,0.5,0.5,0.5,0.5,0.607884,0.392116,0.594391,0.405609,0.579492,0.420508,0.563499,0.436501,0.546915,0.453085,0.530381,0.469619,0.514556,0.485444,0.5,0.5,0.5,0.5,0.342099,0.657901,0.394077,0.605923,0.450839,0.549161,0.511161,0.488839,0.573187,0.426813,0.634642,0.365358,0.693226,0.306774,0.747016,0.252984,0.747016,0.252984\n", "1.166732,0.5,0.5,0.484117,0.515883,0.466522,0.533478,0.447677,0.552323,0.428329,0.571671,0.409396,0.590604,0.391759,0.608241,0.376068,0.623932,0.376068,0.623932,0.515883,0.484117,0.5,0.5,0.482368,0.517632,0.463438,0.536562,0.443957,0.556043,0.424847,0.575153,0.407003,0.592997,0.391094,0.608906,0.391094,0.608906,0.533478,0.466522,0.517632,0.482368,0.5,0.5,0.481022,0.518978,0.461437,0.538563,0.442173,0.557827,0.424138,0.575862,0.40802,0.59198,0.40802,0.59198,0.552323,0.447677,0.536562,0.463438,0.518978,0.481022,0.5,0.5,0.480358,0.519642,0.46098,0.53902,0.442786,0.557214,0.426484,0.573516,0.426484,0.573516,0.571671,0.428329,0.556043,0.443957,0.538563,0.461437,0.519642,0.480358,0.5,0.5,0.480563,0.519437,0.462259,0.537741,0.445814,0.554186,0.445814,0.554186,0.590604,0.409396,0.575153,0.424847,0.557827,0.442173,0.53902,0.46098,0.519437,0.480563,0.5,0.5,0.481643,0.518357,0.465104,0.534896,0.465104,0.534896,0.608241,0.391759,0.592997,0.407003,0.575862,0.424138,0.557214,0.442786,0.537741,0.462259,0.518357,0.481643,0.5,0.5,0.483419,0.516581,0.483419,0.516581,0.623932,0.376068,0.608906,0.391094,0.59198,0.40802,0.573516,0.426484,0.554186,0.445814,0.534896,0.465104,0.516581,0.483419,0.5,0.5,0.5,0.5,0.623932,0.376068,0.608906,0.391094,0.59198,0.40802,0.573516,0.426484,0.554186,0.445814,0.534896,0.465104,0.516581,0.483419,0.5,0.5,0.5,0.5,0.328631,0.671369,0.383104,0.616896,0.443579,0.556421,0.508675,0.491325,0.576051,0.423949,0.642723,0.357277,0.705687,0.294313,0.762554,0.237446,0.762554,0.237446\n", "1.253925,0.5,0.5,0.482248,0.517752,0.462214,0.537786,0.440455,0.559545,0.417991,0.582009,0.396122,0.603878,0.376063,0.623937,0.358637,0.641363,0.358637,0.641363,0.517752,0.482248,0.5,0.5,0.479912,0.520088,0.45803,0.54197,0.435367,0.564633,0.413234,0.586766,0.392873,0.607127,0.375136,0.624864,0.375136,0.624864,0.537786,0.462214,0.520088,0.479912,0.5,0.5,0.478044,0.521956,0.455223,0.544777,0.432854,0.567146,0.412205,0.587795,0.394162,0.605838,0.394162,0.605838,0.559545,0.440455,0.54197,0.45803,0.521956,0.478044,0.5,0.5,0.477089,0.522911,0.454542,0.545458,0.43365,0.56635,0.415331,0.584669,0.415331,0.584669,0.582009,0.417991,0.564633,0.435367,0.544777,0.455223,0.522911,0.477089,0.5,0.5,0.477359,0.522641,0.456295,0.543705,0.437759,0.562241,0.437759,0.562241,0.603878,0.396122,0.586766,0.413234,0.567146,0.432854,0.545458,0.454542,0.522641,0.477359,0.5,0.5,0.478852,0.521148,0.460176,0.539824,0.460176,0.539824,0.623937,0.376063,0.607127,0.392873,0.587795,0.412205,0.56635,0.43365,0.543705,0.456295,0.521148,0.478852,0.5,0.5,0.48126,0.51874,0.48126,0.51874,0.641363,0.358637,0.624864,0.375136,0.605838,0.394162,0.584669,0.415331,0.562241,0.437759,0.539824,0.460176,0.51874,0.48126,0.5,0.5,0.5,0.5,0.641363,0.358637,0.624864,0.375136,0.605838,0.394162,0.584669,0.415331,0.562241,0.437759,0.539824,0.460176,0.51874,0.48126,0.5,0.5,0.5,0.5,0.314406,0.685594,0.37106,0.62894,0.435174,0.564826,0.505259,0.494741,0.578397,0.421603,0.650671,0.349329,0.718171,0.281829,0.777979,0.222021,0.777979,0.222021\n", "1.344299,0.5,0.5,0.480375,0.519625,0.457746,0.542254,0.432751,0.567249,0.406768,0.593232,0.38163,0.61837,0.359005,0.640995,0.339889,0.660111,0.339889,0.660111,0.519625,0.480375,0.5,0.5,0.477296,0.522704,0.452123,0.547877,0.42585,0.57415,0.400329,0.599671,0.377272,0.622728,0.357726,0.642274,0.357726,0.642274,0.542254,0.457746,0.522704,0.477296,0.5,0.5,0.474718,0.525282,0.448205,0.551795,0.42233,0.57767,0.398849,0.601151,0.378865,0.621135,0.378865,0.621135,0.567249,0.432751,0.547877,0.452123,0.525282,0.474718,0.5,0.5,0.473348,0.526652,0.447198,0.552802,0.423347,0.576653,0.402958,0.597042,0.402958,0.597042,0.593232,0.406768,0.57415,0.42585,0.551795,0.448205,0.526652,0.473348,0.5,0.5,0.473701,0.526299,0.449587,0.550413,0.428874,0.571126,0.428874,0.571126,0.61837,0.38163,0.599671,0.400329,0.57767,0.42233,0.552802,0.447198,0.526299,0.473701,0.5,0.5,0.475757,0.524243,0.454835,0.545165,0.454835,0.545165,0.640995,0.359005,0.622728,0.377272,0.601151,0.398849,0.576653,0.423347,0.550413,0.449587,0.524243,0.475757,0.5,0.5,0.478986,0.521014,0.478986,0.521014,0.660111,0.339889,0.642274,0.357726,0.621135,0.378865,0.597042,0.402958,0.571126,0.428874,0.545165,0.454835,0.521014,0.478986,0.5,0.5,0.5,0.5,0.660111,0.339889,0.642274,0.357726,0.621135,0.378865,0.597042,0.402958,0.571126,0.428874,0.545165,0.454835,0.521014,0.478986,0.5,0.5,0.5,0.5,0.299416,0.700584,0.35784,0.64216,0.425444,0.574556,0.500736,0.499264,0.580115,0.419885,0.658439,0.341561,0.730632,0.269368,0.793196,0.206804,0.793196,0.206804\n", "1.437787,0.5,0.5,0.478563,0.521437,0.453223,0.546777,0.424653,0.575347,0.394695,0.605305,0.365936,0.634064,0.340637,0.659363,0.319943,0.680057,0.319943,0.680057,0.521437,0.478563,0.5,0.5,0.474558,0.525442,0.445739,0.554261,0.415368,0.584632,0.386063,0.613937,0.360163,0.639837,0.338892,0.661108,0.338892,0.661108,0.546777,0.453223,0.525442,0.474558,0.5,0.5,0.471022,0.528978,0.440296,0.559704,0.410468,0.589532,0.383954,0.616046,0.362073,0.637927,0.362073,0.637927,0.575347,0.424653,0.554261,0.445739,0.528978,0.471022,0.5,0.5,0.46906,0.53094,0.438811,0.561189,0.411745,0.588255,0.389282,0.610718,0.389282,0.610718,0.605305,0.394695,0.584632,0.415368,0.559704,0.440296,0.53094,0.46906,0.5,0.5,0.46952,0.53048,0.442052,0.557948,0.419113,0.580887,0.419113,0.580887,0.634064,0.365936,0.613937,0.386063,0.589532,0.410468,0.561189,0.438811,0.53048,0.46952,0.5,0.5,0.472337,0.527663,0.449091,0.550909,0.449091,0.550909,0.659363,0.340637,0.639837,0.360163,0.616046,0.383954,0.588255,0.411745,0.557948,0.442052,0.527663,0.472337,0.5,0.5,0.476623,0.523377,0.476623,0.523377,0.680057,0.319943,0.661108,0.338892,0.637927,0.362073,0.610718,0.389282,0.580887,0.419113,0.550909,0.449091,0.523377,0.476623,0.5,0.5,0.5,0.5,0.680057,0.319943,0.661108,0.338892,0.637927,0.362073,0.610718,0.389282,0.580887,0.419113,0.550909,0.449091,0.523377,0.476623,0.5,0.5,0.5,0.5,0.283671,0.716329,0.343346,0.656654,0.41419,0.58581,0.494899,0.505101,0.581086,0.418914,0.665988,0.334012,0.743027,0.256973,0.808112,0.191888,0.808112,0.191888\n", "1.534291,0.5,0.5,0.476892,0.523108,0.448785,0.551215,0.416293,0.583707,0.381843,0.618157,0.349089,0.650911,0.32106,0.67894,0.298975,0.701025,0.298975,0.701025,0.523108,0.476892,0.5,0.5,0.47176,0.52824,0.438928,0.561072,0.403902,0.596098,0.370389,0.629611,0.341548,0.658452,0.318715,0.681285,0.318715,0.681285,0.551215,0.448785,0.52824,0.47176,0.5,0.5,0.466941,0.533059,0.431397,0.568603,0.397124,0.602876,0.367415,0.632585,0.343755,0.656245,0.343755,0.656245,0.583707,0.416293,0.561072,0.438928,0.533059,0.466941,0.5,0.5,0.464131,0.535869,0.42922,0.57078,0.398698,0.601302,0.374216,0.625784,0.374216,0.625784,0.618157,0.381843,0.596098,0.403902,0.568603,0.431397,0.535869,0.464131,0.5,0.5,0.464731,0.535269,0.433602,0.566398,0.408432,0.591568,0.408432,0.591568,0.650911,0.349089,0.629611,0.370389,0.602876,0.397124,0.57078,0.42922,0.535269,0.464731,0.5,0.5,0.468577,0.531423,0.442965,0.557035,0.442965,0.557035,0.67894,0.32106,0.658452,0.341548,0.632585,0.367415,0.601302,0.398698,0.566398,0.433602,0.531423,0.468577,0.5,0.5,0.474203,0.525797,0.474203,0.525797,0.701025,0.298975,0.681285,0.318715,0.656245,0.343755,0.625784,0.374216,0.591568,0.408432,0.557035,0.442965,0.525797,0.474203,0.5,0.5,0.5,0.5,0.701025,0.298975,0.681285,0.318715,0.656245,0.343755,0.625784,0.374216,0.591568,0.408432,0.557035,0.442965,0.525797,0.474203,0.5,0.5,0.5,0.5,0.267209,0.732791,0.327496,0.672504,0.401199,0.598801,0.487513,0.512487,0.581186,0.418814,0.673289,0.326711,0.755319,0.244681,0.822633,0.177367,0.822633,0.177367\n", "1.633694,0.5,0.5,0.475456,0.524544,0.444619,0.555381,0.407858,0.592142,0.368322,0.631678,0.331177,0.668823,0.300433,0.699567,0.277221,0.722779,0.277221,0.722779,0.524544,0.475456,0.5,0.5,0.468994,0.531006,0.431784,0.568216,0.391462,0.608538,0.353289,0.646711,0.321479,0.678521,0.297332,0.702668,0.297332,0.702668,0.555381,0.444619,0.531006,0.468994,0.5,0.5,0.462473,0.537527,0.42141,0.57859,0.38215,0.61785,0.349145,0.650855,0.323912,0.676088,0.323912,0.676088,0.592142,0.407858,0.568216,0.431784,0.537527,0.462473,0.5,0.5,0.458447,0.541553,0.418231,0.581769,0.384046,0.615954,0.357677,0.642323,0.357677,0.642323,0.631678,0.368322,0.608538,0.391462,0.57859,0.42141,0.541553,0.458447,0.5,0.5,0.45923,0.54077,0.424137,0.575863,0.396789,0.603211,0.396789,0.603211,0.668823,0.331177,0.646711,0.353289,0.61785,0.38215,0.581769,0.418231,0.54077,0.45923,0.5,0.5,0.464468,0.535532,0.43649,0.56351,0.43649,0.56351,0.699567,0.300433,0.678521,0.321479,0.650855,0.349145,0.615954,0.384046,0.575863,0.424137,0.535532,0.464468,0.5,0.5,0.471767,0.528233,0.471767,0.528233,0.722779,0.277221,0.702668,0.297332,0.676088,0.323912,0.642323,0.357677,0.603211,0.396789,0.56351,0.43649,0.528233,0.471767,0.5,0.5,0.5,0.5,0.722779,0.277221,0.702668,0.297332,0.676088,0.323912,0.642323,0.357677,0.603211,0.396789,0.56351,0.43649,0.528233,0.471767,0.5,0.5,0.5,0.5,0.250098,0.749902,0.31024,0.68976,0.386254,0.613746,0.47831,0.52169,0.580284,0.419716,0.68033,0.31967,0.767475,0.232525,0.836675,0.163325,0.836675,0.163325\n", "1.735867,0.5,0.5,0.474363,0.525637,0.440956,0.559044,0.399599,0.600401,0.354282,0.645718,0.312329,0.687671,0.278972,0.721028,0.254972,0.745028,0.254972,0.745028,0.525637,0.474363,0.5,0.5,0.466389,0.533611,0.424458,0.575542,0.378097,0.621903,0.334786,0.665214,0.300077,0.699923,0.274954,0.725046,0.274954,0.725046,0.559044,0.440956,0.533611,0.466389,0.5,0.5,0.457639,0.542361,0.410237,0.589763,0.365408,0.634592,0.329095,0.670905,0.302593,0.697407,0.302593,0.697407,0.600401,0.399599,0.575542,0.424458,0.542361,0.457639,0.5,0.5,0.451866,0.548134,0.405616,0.594384,0.367622,0.632378,0.339588,0.660412,0.339588,0.660412,0.645718,0.354282,0.621903,0.378097,0.589763,0.410237,0.548134,0.451866,0.5,0.5,0.452894,0.547106,0.413553,0.586447,0.384144,0.615856,0.384144,0.615856,0.687671,0.312329,0.665214,0.334786,0.634592,0.365408,0.594384,0.405616,0.547106,0.452894,0.5,0.5,0.460007,0.539993,0.429715,0.570285,0.429715,0.570285,0.721028,0.278972,0.699923,0.300077,0.670905,0.329095,0.632378,0.367622,0.586447,0.413553,0.539993,0.460007,0.5,0.5,0.469363,0.530637,0.469363,0.530637,0.745028,0.254972,0.725046,0.274954,0.697407,0.302593,0.660412,0.339588,0.615856,0.384144,0.570285,0.429715,0.530637,0.469363,0.5,0.5,0.5,0.5,0.745028,0.254972,0.725046,0.274954,0.697407,0.302593,0.660412,0.339588,0.615856,0.384144,0.570285,0.429715,0.530637,0.469363,0.5,0.5,0.5,0.5,0.232449,0.767551,0.291576,0.708424,0.369144,0.630856,0.466992,0.533008,0.578253,0.421747,0.687123,0.312877,0.779476,0.220524,0.850161,0.149839,0.850161,0.149839\n", "1.840694,0.5,0.5,0.473719,0.526281,0.438066,0.561934,0.391838,0.608162,0.339914,0.660086,0.292715,0.707285,0.256948,0.743052,0.23256,0.76744,0.23256,0.76744,0.526281,0.473719,0.5,0.5,0.464113,0.535887,0.417177,0.582823,0.363905,0.636095,0.314964,0.685036,0.277546,0.722454,0.251865,0.748135,0.251865,0.748135,0.561934,0.438066,0.535887,0.464113,0.5,0.5,0.452499,0.547501,0.397795,0.602205,0.346781,0.653219,0.307279,0.692721,0.279913,0.720087,0.279913,0.720087,0.608162,0.391838,0.582823,0.417177,0.547501,0.452499,0.5,0.5,0.444212,0.555788,0.391112,0.608888,0.349259,0.650741,0.319881,0.680119,0.319881,0.680119,0.660086,0.339914,0.636095,0.363905,0.602205,0.397795,0.555788,0.444212,0.5,0.5,0.445577,0.554423,0.401742,0.598258,0.370462,0.629538,0.370462,0.629538,0.707285,0.292715,0.685036,0.314964,0.653219,0.346781,0.608888,0.391112,0.554423,0.445577,0.5,0.5,0.455207,0.544793,0.422705,0.577295,0.422705,0.577295,0.743052,0.256948,0.722454,0.277546,0.692721,0.307279,0.650741,0.349259,0.598258,0.401742,0.544793,0.455207,0.5,0.5,0.467042,0.532958,0.467042,0.532958,0.76744,0.23256,0.748135,0.251865,0.720087,0.279913,0.680119,0.319881,0.629538,0.370462,0.577295,0.422705,0.532958,0.467042,0.5,0.5,0.5,0.5,0.76744,0.23256,0.748135,0.251865,0.720087,0.279913,0.680119,0.319881,0.629538,0.370462,0.577295,0.422705,0.532958,0.467042,0.5,0.5,0.5,0.5,0.21441,0.78559,0.271574,0.728426,0.349694,0.650306,0.45323,0.54677,0.574969,0.425031,0.693705,0.306295,0.791307,0.208693,0.863031,0.136969,0.863031,0.136969\n", "1.948109,0.5,0.5,0.473618,0.526382,0.436243,0.563757,0.384968,0.615032,0.32544,0.67456,0.272535,0.727465,0.234675,0.765325,0.210336,0.789664,0.210336,0.789664,0.526382,0.473618,0.5,0.5,0.462372,0.537628,0.410261,0.589739,0.349042,0.650958,0.293972,0.706028,0.254175,0.745825,0.228417,0.771583,0.228417,0.771583,0.563757,0.436243,0.537628,0.462372,0.5,0.5,0.447176,0.552824,0.384035,0.615965,0.326211,0.673789,0.283804,0.716196,0.256074,0.743926,0.256074,0.743926,0.615032,0.384968,0.589739,0.410261,0.552824,0.447176,0.5,0.5,0.435273,0.564727,0.374424,0.625576,0.328807,0.671193,0.298513,0.701487,0.298513,0.701487,0.67456,0.32544,0.650958,0.349042,0.615965,0.384035,0.564727,0.435273,0.5,0.5,0.437106,0.562894,0.388597,0.611403,0.355714,0.644286,0.355714,0.644286,0.727465,0.272535,0.706028,0.293972,0.673789,0.326211,0.625576,0.374424,0.562894,0.437106,0.5,0.5,0.450092,0.549908,0.415542,0.584458,0.415542,0.584458,0.765325,0.234675,0.745825,0.254175,0.716196,0.283804,0.671193,0.328807,0.611403,0.388597,0.549908,0.450092,0.5,0.5,0.464857,0.535143,0.464857,0.535143,0.789664,0.210336,0.771583,0.228417,0.743926,0.256074,0.701487,0.298513,0.644286,0.355714,0.584458,0.415542,0.535143,0.464857,0.5,0.5,0.5,0.5,0.789664,0.210336,0.771583,0.228417,0.743926,0.256074,0.701487,0.298513,0.644286,0.355714,0.584458,0.415542,0.535143,0.464857,0.5,0.5,0.5,0.5,0.196172,0.803828,0.250392,0.749608,0.327799,0.672201,0.436668,0.563332,0.57032,0.42968,0.700146,0.299854,0.802963,0.197037,0.87524,0.12476,0.87524,0.12476\n", "2.058136,0.5,0.5,0.474123,0.525877,0.435771,0.564229,0.379452,0.620548,0.3111,0.6889,0.252009,0.747991,0.212487,0.787513,0.188645,0.811355,0.188645,0.811355,0.525877,0.474123,0.5,0.5,0.461392,0.538608,0.404133,0.595867,0.333726,0.666274,0.272034,0.727966,0.230339,0.769661,0.205015,0.794985,0.205015,0.794985,0.564229,0.435771,0.538608,0.461392,0.5,0.5,0.44188,0.55812,0.368969,0.631031,0.303733,0.696267,0.258907,0.741093,0.231386,0.768614,0.231386,0.768614,0.620548,0.379452,0.595867,0.404133,0.55812,0.44188,0.5,0.5,0.424798,0.575202,0.355248,0.644752,0.306162,0.693838,0.275486,0.724514,0.275486,0.724514,0.6889,0.3111,0.666274,0.333726,0.631031,0.368969,0.575202,0.424798,0.5,0.5,0.427283,0.572717,0.374018,0.625982,0.339873,0.660127,0.339873,0.660127,0.747991,0.252009,0.727966,0.272034,0.696267,0.303733,0.644752,0.355248,0.572717,0.427283,0.5,0.5,0.444708,0.555292,0.40832,0.59168,0.40832,0.59168,0.787513,0.212487,0.769661,0.230339,0.741093,0.258907,0.693838,0.306162,0.625982,0.374018,0.555292,0.444708,0.5,0.5,0.462858,0.537142,0.462858,0.537142,0.811355,0.188645,0.794985,0.205015,0.768614,0.231386,0.724514,0.275486,0.660127,0.339873,0.59168,0.40832,0.537142,0.462858,0.5,0.5,0.5,0.5,0.811355,0.188645,0.794985,0.205015,0.768614,0.231386,0.724514,0.275486,0.660127,0.339873,0.59168,0.40832,0.537142,0.462858,0.5,0.5,0.5,0.5,0.17795,0.82205,0.228287,0.771713,0.303473,0.696527,0.416941,0.583059,0.564214,0.435786,0.706548,0.293452,0.814449,0.185551,0.886767,0.113233,0.886767,0.113233\n", "2.170954,0.5,0.5,0.475251,0.524749,0.436878,0.563122,0.375798,0.624202,0.297131,0.702869,0.231357,0.768643,0.190709,0.809291,0.167791,0.832209,0.167791,0.832209,0.524749,0.475251,0.5,0.5,0.461386,0.538614,0.399309,0.600691,0.318229,0.681771,0.249443,0.750557,0.206471,0.793529,0.182085,0.817915,0.182085,0.817915,0.563122,0.436878,0.538614,0.461386,0.5,0.5,0.436943,0.563057,0.352708,0.647292,0.279524,0.720476,0.232979,0.767021,0.206276,0.793724,0.206276,0.793724,0.624202,0.375798,0.600691,0.399309,0.563057,0.436943,0.5,0.5,0.412515,0.587485,0.333312,0.666688,0.281307,0.718693,0.250876,0.749124,0.250876,0.749124,0.702869,0.297131,0.681771,0.318229,0.647292,0.352708,0.587485,0.412515,0.5,0.5,0.415891,0.584109,0.357918,0.642082,0.322924,0.677076,0.322924,0.677076,0.768643,0.231357,0.750557,0.249443,0.720476,0.279524,0.666688,0.333312,0.584109,0.415891,0.5,0.5,0.439117,0.560883,0.401144,0.598856,0.401144,0.598856,0.809291,0.190709,0.793529,0.206471,0.767021,0.232979,0.718693,0.281307,0.642082,0.357918,0.560883,0.439117,0.5,0.5,0.46109,0.53891,0.46109,0.53891,0.832209,0.167791,0.817915,0.182085,0.793724,0.206276,0.749124,0.250876,0.677076,0.322924,0.598856,0.401144,0.53891,0.46109,0.5,0.5,0.5,0.5,0.832209,0.167791,0.817915,0.182085,0.793724,0.206276,0.749124,0.250876,0.677076,0.322924,0.598856,0.401144,0.53891,0.46109,0.5,0.5,0.5,0.5,0.159978,0.840022,0.205616,0.794384,0.276905,0.723095,0.39371,0.60629,0.556578,0.443422,0.713037,0.286963,0.825773,0.174227,0.897611,0.102389,0.897611,0.102389\n", "2.286967,0.5,0.5,0.476958,0.523042,0.439671,0.560329,0.374527,0.625473,0.283749,0.716251,0.210785,0.789215,0.169633,0.830367,0.148017,0.851983,0.148017,0.851983,0.523042,0.476958,0.5,0.5,0.462504,0.537496,0.396371,0.603629,0.302861,0.697139,0.226537,0.773463,0.183023,0.816977,0.16003,0.83997,0.16003,0.83997,0.560329,0.439671,0.537496,0.462504,0.5,0.5,0.432822,0.567178,0.335493,0.664507,0.253941,0.746059,0.206569,0.793431,0.181274,0.818726,0.181274,0.818726,0.625473,0.374527,0.603629,0.396371,0.567178,0.432822,0.5,0.5,0.398169,0.601831,0.308454,0.691546,0.25438,0.74562,0.224889,0.775111,0.224889,0.775111,0.716251,0.283749,0.697139,0.302861,0.664507,0.335493,0.601831,0.398169,0.5,0.5,0.402692,0.597308,0.340226,0.659774,0.304852,0.695148,0.304852,0.695148,0.789215,0.210785,0.773463,0.226537,0.746059,0.253941,0.691546,0.308454,0.597308,0.402692,0.5,0.5,0.433391,0.566609,0.394117,0.605883,0.394117,0.605883,0.830367,0.169633,0.816977,0.183023,0.793431,0.206569,0.74562,0.25438,0.659774,0.340226,0.566609,0.433391,0.5,0.5,0.459586,0.540414,0.459586,0.540414,0.851983,0.148017,0.83997,0.16003,0.818726,0.181274,0.775111,0.224889,0.695148,0.304852,0.605883,0.394117,0.540414,0.459586,0.5,0.5,0.5,0.5,0.851983,0.148017,0.83997,0.16003,0.818726,0.181274,0.775111,0.224889,0.695148,0.304852,0.605883,0.394117,0.540414,0.459586,0.5,0.5,0.5,0.5,0.142481,0.857519,0.182811,0.817189,0.248516,0.751484,0.366727,0.633273,0.547359,0.452641,0.719753,0.280247,0.836952,0.163048,0.907792,0.0922081,0.907792,0.0922081\n", "2.406899,0.5,0.5,0.479146,0.520854,0.444088,0.555912,0.376097,0.623903,0.271137,0.728863,0.190466,0.809534,0.149488,0.850512,0.129485,0.870515,0.129485,0.870515,0.520854,0.479146,0.5,0.5,0.464777,0.535223,0.395875,0.604125,0.287943,0.712057,0.203669,0.796331,0.160414,0.839586,0.139187,0.860813,0.139187,0.860813,0.555912,0.444088,0.535223,0.464777,0.5,0.5,0.430072,0.569928,0.31772,0.68228,0.227516,0.772484,0.180342,0.819658,0.156972,0.843028,0.156972,0.843028,0.623903,0.376097,0.604125,0.395875,0.569928,0.430072,0.5,0.5,0.381611,0.618389,0.280732,0.719268,0.225749,0.774251,0.197915,0.802085,0.197915,0.802085,0.728863,0.271137,0.712057,0.287943,0.68228,0.31772,0.618389,0.381611,0.5,0.5,0.387432,0.612568,0.320874,0.679126,0.285639,0.714361,0.285639,0.714361,0.809534,0.190466,0.796331,0.203669,0.772484,0.227516,0.719268,0.280732,0.612568,0.387432,0.5,0.5,0.427603,0.572397,0.387332,0.612668,0.387332,0.612668,0.850512,0.149488,0.839586,0.160414,0.819658,0.180342,0.774251,0.225749,0.679126,0.320874,0.572397,0.427603,0.5,0.5,0.458371,0.541629,0.458371,0.541629,0.870515,0.129485,0.860813,0.139187,0.843028,0.156972,0.802085,0.197915,0.714361,0.285639,0.612668,0.387332,0.541629,0.458371,0.5,0.5,0.5,0.5,0.870515,0.129485,0.860813,0.139187,0.843028,0.156972,0.802085,0.197915,0.714361,0.285639,0.612668,0.387332,0.541629,0.458371,0.5,0.5,0.5,0.5,0.12566,0.87434,0.160337,0.839663,0.21897,0.78103,0.33595,0.66405,0.536504,0.463496,0.726841,0.273159,0.848008,0.151992,0.917352,0.0826481,0.917352,0.0826481\n", "2.531898,0.5,0.5,0.481673,0.518327,0.449873,0.550127,0.380787,0.619213,0.259451,0.740549,0.170536,0.829464,0.130429,0.869571,0.112271,0.887729,0.112271,0.887729,0.518327,0.481673,0.5,0.5,0.468083,0.531917,0.398225,0.601775,0.273789,0.726211,0.181162,0.818838,0.138975,0.861025,0.119792,0.880208,0.119792,0.880208,0.550127,0.449873,0.531917,0.468083,0.5,0.5,0.429222,0.570778,0.299927,0.700073,0.200904,0.799096,0.15499,0.84501,0.13394,0.86606,0.13394,0.86606,0.619213,0.380787,0.601775,0.398225,0.570778,0.429222,0.5,0.5,0.362942,0.637058,0.25056,0.74944,0.196083,0.803917,0.170578,0.829422,0.170578,0.829422,0.740549,0.259451,0.726211,0.273789,0.700073,0.299927,0.637058,0.362942,0.5,0.5,0.369815,0.630185,0.299781,0.700219,0.265238,0.734762,0.265238,0.734762,0.829464,0.170536,0.818838,0.181162,0.799096,0.200904,0.74944,0.25056,0.630185,0.369815,0.5,0.5,0.421814,0.578186,0.380857,0.619143,0.380857,0.619143,0.869571,0.130429,0.861025,0.138975,0.84501,0.15499,0.803917,0.196083,0.700219,0.299781,0.578186,0.421814,0.5,0.5,0.457459,0.542541,0.457459,0.542541,0.887729,0.112271,0.880208,0.119792,0.86606,0.13394,0.829422,0.170578,0.734762,0.265238,0.619143,0.380857,0.542541,0.457459,0.5,0.5,0.5,0.5,0.887729,0.112271,0.880208,0.119792,0.86606,0.13394,0.829422,0.170578,0.734762,0.265238,0.619143,0.380857,0.542541,0.457459,0.5,0.5,0.5,0.5,0.10967,0.89033,0.138637,0.861363,0.189129,0.810871,0.301703,0.698297,0.523915,0.476085,0.734432,0.265568,0.858976,0.141024,0.926348,0.073652,0.926348,0.073652\n", "2.663647,0.5,0.5,0.484377,0.515623,0.456612,0.543388,0.38855,0.61145,0.248849,0.751151,0.151085,0.848915,0.112537,0.887463,0.0963831,0.903617,0.0963831,0.903617,0.515623,0.484377,0.5,0.5,0.472159,0.527841,0.403501,0.596499,0.260717,0.739283,0.159279,0.840721,0.118933,0.881067,0.101966,0.898034,0.101966,0.898034,0.543388,0.456612,0.527841,0.472159,0.5,0.5,0.430596,0.569404,0.282769,0.717231,0.174779,0.825221,0.131119,0.868881,0.112637,0.887363,0.112637,0.887363,0.61145,0.38855,0.596499,0.403501,0.569404,0.430596,0.5,0.5,0.342686,0.657314,0.218794,0.781206,0.166356,0.833644,0.143728,0.856272,0.143728,0.856272,0.751151,0.248849,0.739283,0.260717,0.717231,0.282769,0.657314,0.342686,0.5,0.5,0.349473,0.650527,0.276812,0.723188,0.24355,0.75645,0.24355,0.75645,0.848915,0.151085,0.840721,0.159279,0.825221,0.174779,0.781206,0.218794,0.650527,0.349473,0.5,0.5,0.416059,0.583941,0.374735,0.625265,0.374735,0.625265,0.887463,0.112537,0.881067,0.118933,0.868881,0.131119,0.833644,0.166356,0.723188,0.276812,0.583941,0.416059,0.5,0.5,0.456861,0.543139,0.456861,0.543139,0.903617,0.0963831,0.898034,0.101966,0.887363,0.112637,0.856272,0.143728,0.75645,0.24355,0.625265,0.374735,0.543139,0.456861,0.5,0.5,0.5,0.5,0.903617,0.0963831,0.898034,0.101966,0.887363,0.112637,0.856272,0.143728,0.75645,0.24355,0.625265,0.374735,0.543139,0.456861,0.5,0.5,0.5,0.5,0.0946176,0.905382,0.118086,0.881914,0.159937,0.840063,0.264839,0.735161,0.509372,0.490628,0.742645,0.257355,0.869903,0.130097,0.934847,0.0651529,0.934847,0.0651529\n", "2.804409,0.5,0.5,0.487103,0.512897,0.463803,0.536197,0.398892,0.601108,0.239559,0.760441,0.13218,0.86782,0.0958424,0.904158,0.081783,0.918217,0.081783,0.918217,0.512897,0.487103,0.5,0.5,0.476657,0.523343,0.411327,0.588673,0.249085,0.750915,0.138212,0.861788,0.100408,0.899592,0.0857425,0.914258,0.0857425,0.914258,0.536197,0.463803,0.523343,0.476657,0.5,0.5,0.434125,0.565875,0.266969,0.733031,0.149722,0.850278,0.109169,0.890831,0.0933565,0.906644,0.0933565,0.906644,0.601108,0.398892,0.588673,0.411327,0.565875,0.434125,0.5,0.5,0.321908,0.678092,0.186678,0.813322,0.137737,0.862263,0.118336,0.881664,0.118336,0.881664,0.760441,0.239559,0.750915,0.249085,0.733031,0.266969,0.678092,0.321908,0.5,0.5,0.325914,0.674086,0.251769,0.748231,0.220412,0.779588,0.220412,0.779588,0.86782,0.13218,0.861788,0.138212,0.850278,0.149722,0.813322,0.186678,0.674086,0.325914,0.5,0.5,0.41036,0.58964,0.368992,0.631008,0.368992,0.631008,0.904158,0.0958424,0.899592,0.100408,0.890831,0.109169,0.862263,0.137737,0.748231,0.251769,0.58964,0.41036,0.5,0.5,0.456593,0.543407,0.456593,0.543407,0.918217,0.081783,0.914258,0.0857425,0.906644,0.0933565,0.881664,0.118336,0.779588,0.220412,0.631008,0.368992,0.543407,0.456593,0.5,0.5,0.5,0.5,0.918217,0.081783,0.914258,0.0857425,0.906644,0.0933565,0.881664,0.118336,0.779588,0.220412,0.631008,0.368992,0.543407,0.456593,0.5,0.5,0.5,0.5,0.0805701,0.91943,0.0989699,0.90103,0.132289,0.867711,0.226798,0.773202,0.492456,0.507544,0.751593,0.248407,0.880845,0.119155,0.942914,0.0570864,0.942914,0.0570864\n", "2.956926,0.5,0.5,0.48971,0.51029,0.470946,0.529054,0.410878,0.589122,0.231937,0.768063,0.113895,0.886105,0.0803727,0.919627,0.0684343,0.931566,0.0684343,0.931566,0.51029,0.48971,0.5,0.5,0.481213,0.518787,0.420877,0.579123,0.23935,0.76065,0.118116,0.881884,0.0834683,0.916532,0.0711056,0.928894,0.0711056,0.928894,0.529054,0.470946,0.518787,0.481213,0.5,0.5,0.439304,0.560696,0.253305,0.746695,0.126175,0.873825,0.0894031,0.910597,0.0762345,0.923766,0.0762345,0.923766,0.589122,0.410878,0.579123,0.420877,0.560696,0.439304,0.5,0.5,0.302152,0.697848,0.155615,0.844385,0.111357,0.888643,0.0952929,0.904707,0.0952929,0.904707,0.768063,0.231937,0.76065,0.23935,0.746695,0.253305,0.697848,0.302152,0.5,0.5,0.298563,0.701437,0.224456,0.775544,0.195669,0.804331,0.195669,0.804331,0.886105,0.113895,0.881884,0.118116,0.873825,0.126175,0.844385,0.155615,0.701437,0.298563,0.5,0.5,0.404745,0.595255,0.363679,0.636321,0.363679,0.636321,0.919627,0.0803727,0.916532,0.0834683,0.910597,0.0894031,0.888643,0.111357,0.775544,0.224456,0.595255,0.404745,0.5,0.5,0.456684,0.543316,0.456684,0.543316,0.931566,0.0684343,0.928894,0.0711056,0.923766,0.0762345,0.904707,0.0952929,0.804331,0.195669,0.636321,0.363679,0.543316,0.456684,0.5,0.5,0.5,0.5,0.931566,0.0684343,0.928894,0.0711056,0.923766,0.0762345,0.904707,0.0952929,0.804331,0.195669,0.636321,0.363679,0.543316,0.456684,0.5,0.5,0.5,0.5,0.0675806,0.932419,0.0815018,0.918498,0.106928,0.893072,0.189443,0.810557,0.472531,0.527469,0.761395,0.238605,0.891847,0.108153,0.95059,0.0494102,0.95059,0.0494102\n", "3.124109,0.5,0.5,0.492087,0.507913,0.477605,0.522395,0.423326,0.576674,0.226485,0.773515,0.0963638,0.903636,0.0661908,0.933809,0.0563357,0.943664,0.0563357,0.943664,0.507913,0.492087,0.5,0.5,0.485507,0.514493,0.431071,0.568929,0.232079,0.767921,0.0991556,0.900844,0.0681743,0.931826,0.0580423,0.941958,0.0580423,0.941958,0.522395,0.477605,0.514493,0.485507,0.5,0.5,0.445345,0.554655,0.242573,0.757427,0.104457,0.895543,0.0719516,0.928048,0.0612951,0.938705,0.0612951,0.938705,0.576674,0.423326,0.568929,0.431071,0.554655,0.445345,0.5,0.5,0.285136,0.714864,0.126844,0.873156,0.0880569,0.911943,0.0752083,0.924792,0.0752083,0.924792,0.773515,0.226485,0.767921,0.232079,0.757427,0.242573,0.714864,0.285136,0.5,0.5,0.266974,0.733026,0.194902,0.805098,0.169359,0.830641,0.169359,0.830641,0.903636,0.0963638,0.900844,0.0991556,0.895543,0.104457,0.873156,0.126844,0.733026,0.266974,0.5,0.5,0.399287,0.600713,0.358899,0.641101,0.358899,0.641101,0.933809,0.0661908,0.931826,0.0681743,0.928048,0.0719516,0.911943,0.0880569,0.805098,0.194902,0.600713,0.399287,0.5,0.5,0.457177,0.542823,0.457177,0.542823,0.943664,0.0563357,0.941958,0.0580423,0.938705,0.0612951,0.924792,0.0752083,0.830641,0.169359,0.641101,0.358899,0.542823,0.457177,0.5,0.5,0.5,0.5,0.943664,0.0563357,0.941958,0.0580423,0.938705,0.0612951,0.924792,0.0752083,0.830641,0.169359,0.641101,0.358899,0.542823,0.457177,0.5,0.5,0.5,0.5,0.0557175,0.944283,0.0658495,0.93415,0.0844107,0.915589,0.154669,0.845331,0.448874,0.551126,0.772177,0.227823,0.902913,0.097087,0.957876,0.0421237,0.957876,0.0421237\n", "3.308684,0.5,0.5,0.49415,0.50585,0.483454,0.516546,0.435131,0.564869,0.223759,0.776241,0.0798053,0.920195,0.0534057,0.946594,0.045527,0.954473,0.045527,0.954473,0.50585,0.49415,0.5,0.5,0.4893,0.5107,0.440892,0.559108,0.22785,0.77215,0.0815408,0.918459,0.0546012,0.945399,0.0465548,0.953445,0.0465548,0.953445,0.516546,0.483454,0.5107,0.4893,0.5,0.5,0.451469,0.548531,0.235469,0.764531,0.0848046,0.915195,0.0568534,0.943147,0.0484921,0.951508,0.0484921,0.951508,0.564869,0.435131,0.559108,0.440892,0.548531,0.451469,0.5,0.5,0.272307,0.727693,0.101192,0.898808,0.0682424,0.931758,0.0583096,0.94169,0.0583096,0.94169,0.776241,0.223759,0.77215,0.22785,0.764531,0.235469,0.727693,0.272307,0.5,0.5,0.231279,0.768721,0.163685,0.836315,0.141978,0.858022,0.141978,0.858022,0.920195,0.0798053,0.918459,0.0815408,0.915195,0.0848046,0.898808,0.101192,0.768721,0.231279,0.5,0.5,0.394137,0.605863,0.354834,0.645166,0.354834,0.645166,0.946594,0.0534057,0.945399,0.0546012,0.943147,0.0568534,0.931758,0.0682424,0.836315,0.163685,0.605863,0.394137,0.5,0.5,0.458123,0.541877,0.458123,0.541877,0.954473,0.045527,0.953445,0.0465548,0.951508,0.0484921,0.94169,0.0583096,0.858022,0.141978,0.645166,0.354834,0.541877,0.458123,0.5,0.5,0.5,0.5,0.954473,0.045527,0.953445,0.0465548,0.951508,0.0484921,0.94169,0.0583096,0.858022,0.141978,0.645166,0.354834,0.541877,0.458123,0.5,0.5,0.5,0.5,0.0450686,0.954931,0.0521415,0.947858,0.0650789,0.934921,0.123935,0.876065,0.421016,0.578984,0.784032,0.215968,0.91398,0.0860202,0.964726,0.0352745,0.964726,0.0352745\n", "3.513083,0.5,0.5,0.495851,0.504149,0.488303,0.511697,0.445561,0.554439,0.224115,0.775885,0.0645008,0.935499,0.0421347,0.957865,0.0360566,0.963943,0.0360566,0.963943,0.504149,0.495851,0.5,0.5,0.492451,0.507549,0.449664,0.550336,0.227015,0.772985,0.0655095,0.934491,0.0428097,0.95719,0.0366379,0.963362,0.0366379,0.963362,0.511697,0.488303,0.507549,0.492451,0.5,0.5,0.457149,0.542851,0.232358,0.767642,0.0673827,0.932617,0.0440644,0.955936,0.0377189,0.962281,0.0377189,0.962281,0.554439,0.445561,0.550336,0.449664,0.542851,0.457149,0.5,0.5,0.264401,0.735599,0.0790169,0.920983,0.0518965,0.948103,0.0444756,0.955524,0.0444756,0.955524,0.775885,0.224115,0.772985,0.227015,0.767642,0.232358,0.735599,0.264401,0.5,0.5,0.1927,0.8073,0.13216,0.86784,0.11465,0.88535,0.11465,0.88535,0.935499,0.0645008,0.934491,0.0655095,0.932617,0.0673827,0.920983,0.0790169,0.8073,0.1927,0.5,0.5,0.389496,0.610504,0.351708,0.648292,0.351708,0.648292,0.957865,0.0421347,0.95719,0.0428097,0.955936,0.0440644,0.948103,0.0518965,0.86784,0.13216,0.610504,0.389496,0.5,0.5,0.459562,0.540438,0.459562,0.540438,0.963943,0.0360566,0.963362,0.0366379,0.962281,0.0377189,0.955524,0.0444756,0.88535,0.11465,0.648292,0.351708,0.540438,0.459562,0.5,0.5,0.5,0.5,0.963943,0.0360566,0.963362,0.0366379,0.962281,0.0377189,0.955524,0.0444756,0.88535,0.11465,0.648292,0.351708,0.540438,0.459562,0.5,0.5,0.5,0.5,0.0357134,0.964287,0.0404374,0.959563,0.0490338,0.950966,0.0979445,0.902055,0.389204,0.610796,0.796983,0.203017,0.924914,0.0750862,0.971058,0.0289423,0.971058,0.0289423\n", "3.739727,0.5,0.5,0.497184,0.502816,0.492104,0.507896,0.454366,0.545634,0.227445,0.772555,0.050727,0.949273,0.0324475,0.967553,0.0279389,0.972061,0.0279389,0.972061,0.502816,0.497184,0.5,0.5,0.494919,0.505081,0.457159,0.542841,0.22943,0.77057,0.051272,0.948728,0.0328029,0.967197,0.0282464,0.971754,0.0282464,0.971754,0.507896,0.492104,0.505081,0.494919,0.5,0.5,0.462208,0.537792,0.233043,0.766957,0.0522698,0.94773,0.0334539,0.966546,0.0288097,0.97119,0.0288097,0.97119,0.545634,0.454366,0.542841,0.457159,0.537792,0.462208,0.5,0.5,0.261198,0.738802,0.060302,0.939698,0.0387129,0.961287,0.0333637,0.966636,0.0333637,0.966636,0.772555,0.227445,0.77057,0.22943,0.766957,0.233043,0.738802,0.261198,0.5,0.5,0.153626,0.846374,0.102261,0.897739,0.0889437,0.911056,0.0889437,0.911056,0.949273,0.050727,0.948728,0.051272,0.94773,0.0522698,0.939698,0.060302,0.846374,0.153626,0.5,0.5,0.385585,0.614415,0.349745,0.650255,0.349745,0.650255,0.967553,0.0324475,0.967197,0.0328029,0.966546,0.0334539,0.961287,0.0387129,0.897739,0.102261,0.614415,0.385585,0.5,0.5,0.461513,0.538487,0.461513,0.538487,0.972061,0.0279389,0.971754,0.0282464,0.97119,0.0288097,0.966636,0.0333637,0.911056,0.0889437,0.650255,0.349745,0.538487,0.461513,0.5,0.5,0.5,0.5,0.972061,0.0279389,0.971754,0.0282464,0.97119,0.0288097,0.966636,0.0333637,0.911056,0.0889437,0.650255,0.349745,0.538487,0.461513,0.5,0.5,0.5,0.5,0.0276843,0.972316,0.0306958,0.969304,0.0361309,0.963869,0.0766306,0.923369,0.354659,0.645341,0.810961,0.189039,0.935544,0.0644559,0.976791,0.0232091,0.976791,0.0232091\n", "3.991441,0.5,0.5,0.498178,0.501822,0.494925,0.505075,0.46168,0.53832,0.233112,0.766888,0.0386929,0.961307,0.0243385,0.975662,0.0211361,0.978864,0.0211361,0.978864,0.501822,0.498178,0.5,0.5,0.496747,0.503253,0.463492,0.536508,0.234418,0.765582,0.038965,0.961035,0.0245122,0.975488,0.0212874,0.978713,0.0212874,0.978713,0.505075,0.494925,0.503253,0.496747,0.5,0.5,0.466729,0.533271,0.236761,0.763239,0.0394552,0.960545,0.0248252,0.975175,0.0215602,0.97844,0.0215602,0.97844,0.53832,0.46168,0.536508,0.463492,0.533271,0.466729,0.5,0.5,0.261683,0.738317,0.0448281,0.955172,0.0282645,0.971735,0.0245585,0.975441,0.0245585,0.975441,0.766888,0.233112,0.765582,0.234418,0.763239,0.236761,0.738317,0.261683,0.5,0.5,0.116931,0.883069,0.0758416,0.924158,0.0663232,0.933677,0.0663232,0.933677,0.961307,0.0386929,0.961035,0.038965,0.960545,0.0394552,0.955172,0.0448281,0.883069,0.116931,0.5,0.5,0.382625,0.617375,0.349151,0.650849,0.349151,0.650849,0.975662,0.0243385,0.975488,0.0245122,0.975175,0.0248252,0.971735,0.0282645,0.924158,0.0758416,0.617375,0.382625,0.5,0.5,0.463974,0.536026,0.463974,0.536026,0.978864,0.0211361,0.978713,0.0212874,0.97844,0.0215602,0.975441,0.0245585,0.933677,0.0663232,0.650849,0.349151,0.536026,0.463974,0.5,0.5,0.5,0.5,0.978864,0.0211361,0.978713,0.0212874,0.97844,0.0215602,0.975441,0.0245585,0.933677,0.0663232,0.650849,0.349151,0.536026,0.463974,0.5,0.5,0.5,0.5,0.0209532,0.979047,0.0227795,0.97722,0.0260394,0.973961,0.0594308,0.940569,0.319297,0.680703,0.825835,0.174165,0.945696,0.0543039,0.981862,0.018138,0.981862,0.018138\n", "4.271570,0.5,0.5,0.49888,0.50112,0.496908,0.503092,0.467804,0.532196,0.240215,0.759785,0.0285152,0.971485,0.0177361,0.982264,0.0155689,0.984431,0.0155689,0.984431,0.50112,0.49888,0.5,0.5,0.498029,0.501971,0.468919,0.531081,0.241034,0.758966,0.0286396,0.97136,0.0178144,0.982186,0.0156377,0.984362,0.0156377,0.984362,0.503092,0.496908,0.501971,0.498029,0.5,0.5,0.470884,0.529116,0.24248,0.75752,0.0288598,0.97114,0.0179529,0.982047,0.0157596,0.98424,0.0157596,0.98424,0.532196,0.467804,0.531081,0.468919,0.529116,0.470884,0.5,0.5,0.264534,0.735466,0.0323135,0.967687,0.0201284,0.979872,0.0176741,0.982326,0.0176741,0.982326,0.759785,0.240215,0.758966,0.241034,0.75752,0.24248,0.735466,0.264534,0.5,0.5,0.0849521,0.915048,0.0540257,0.945974,0.0476391,0.952361,0.0476391,0.952361,0.971485,0.0285152,0.97136,0.0286396,0.97114,0.0288598,0.967687,0.0323135,0.915048,0.0849521,0.5,0.5,0.380867,0.619133,0.350145,0.649855,0.350145,0.649855,0.982264,0.0177361,0.982186,0.0178144,0.982047,0.0179529,0.979872,0.0201284,0.945974,0.0540257,0.619133,0.380867,0.5,0.5,0.466915,0.533085,0.466915,0.533085,0.984431,0.0155689,0.984362,0.0156377,0.98424,0.0157596,0.982326,0.0176741,0.952361,0.0476391,0.649855,0.350145,0.533085,0.466915,0.5,0.5,0.5,0.5,0.984431,0.0155689,0.984362,0.0156377,0.98424,0.0157596,0.982326,0.0176741,0.952361,0.0476391,0.649855,0.350145,0.533085,0.466915,0.5,0.5,0.5,0.5,0.0154442,0.984556,0.0164931,0.983507,0.0183392,0.981661,0.0456354,0.954365,0.285017,0.714983,0.841461,0.158539,0.955205,0.0447947,0.986232,0.0137677,0.986232,0.0137677\n", "4.583765,0.5,0.5,0.49935,0.50065,0.498225,0.501775,0.47303,0.52697,0.247934,0.752066,0.0202175,0.979783,0.0125215,0.987479,0.0111319,0.988868,0.0111319,0.988868,0.50065,0.49935,0.5,0.5,0.498876,0.501124,0.473679,0.526321,0.24842,0.75158,0.0202691,0.979731,0.0125537,0.987446,0.0111606,0.988839,0.0111606,0.988839,0.501775,0.498225,0.501124,0.498876,0.5,0.5,0.4748,0.5252,0.249261,0.750739,0.0203586,0.979641,0.0126096,0.98739,0.0112103,0.98879,0.0112103,0.98879,0.52697,0.47303,0.526321,0.473679,0.5252,0.4748,0.5,0.5,0.268612,0.731388,0.0224711,0.977529,0.0139294,0.986071,0.0123855,0.987614,0.0123855,0.987614,0.752066,0.247934,0.75158,0.24842,0.750739,0.249261,0.731388,0.268612,0.5,0.5,0.0589047,0.941095,0.0370387,0.962961,0.0330192,0.966981,0.0330192,0.966981,0.979783,0.0202175,0.979731,0.0202691,0.979641,0.0203586,0.977529,0.0224711,0.941095,0.0589047,0.5,0.5,0.380618,0.619382,0.35298,0.64702,0.35298,0.64702,0.987479,0.0125215,0.987446,0.0125537,0.98739,0.0126096,0.986071,0.0139294,0.962961,0.0370387,0.619382,0.380618,0.5,0.5,0.470275,0.529725,0.470275,0.529725,0.988868,0.0111319,0.988839,0.0111606,0.98879,0.0112103,0.987614,0.0123855,0.966981,0.0330192,0.64702,0.35298,0.529725,0.470275,0.5,0.5,0.5,0.5,0.988868,0.0111319,0.988839,0.0111606,0.98879,0.0112103,0.987614,0.0123855,0.966981,0.0330192,0.64702,0.35298,0.529725,0.470275,0.5,0.5,0.5,0.5,0.0110524,0.988948,0.01162,0.98838,0.0126012,0.987399,0.0346102,0.96539,0.253137,0.746863,0.857689,0.142311,0.963917,0.0360828,0.989887,0.010113,0.989887,0.010113\n", "4.931774,0.5,0.5,0.499645,0.500355,0.499046,0.500954,0.477575,0.522425,0.255745,0.744255,0.013731,0.986269,0.00853991,0.99146,0.00770077,0.992299,0.00770077,0.992299,0.500355,0.499645,0.5,0.5,0.499401,0.500599,0.477929,0.522071,0.256015,0.743985,0.0137502,0.98625,0.00855193,0.991448,0.00771161,0.992288,0.00771161,0.992288,0.500954,0.499046,0.500599,0.499401,0.5,0.5,0.478527,0.521473,0.256472,0.743528,0.0137827,0.986217,0.00857227,0.991428,0.00772997,0.99227,0.00772997,0.99227,0.522425,0.477575,0.522071,0.477929,0.521473,0.478527,0.5,0.5,0.2732,0.7268,0.0150011,0.984999,0.0093344,0.990666,0.00841786,0.991582,0.00841786,0.991582,0.744255,0.255745,0.743985,0.256015,0.743528,0.256472,0.7268,0.2732,0.5,0.5,0.0389379,0.961062,0.0244535,0.975547,0.0220855,0.977915,0.0220855,0.977915,0.986269,0.013731,0.98625,0.0137502,0.986217,0.0137827,0.984999,0.0150011,0.961062,0.0389379,0.5,0.5,0.382216,0.617784,0.357914,0.642086,0.357914,0.642086,0.99146,0.00853991,0.991448,0.00855193,0.991428,0.00857227,0.990666,0.0093344,0.975547,0.0244535,0.617784,0.382216,0.5,0.5,0.473954,0.526046,0.473954,0.526046,0.992299,0.00770077,0.992288,0.00771161,0.99227,0.00772997,0.991582,0.00841786,0.977915,0.0220855,0.642086,0.357914,0.526046,0.473954,0.5,0.5,0.5,0.5,0.992299,0.00770077,0.992288,0.00771161,0.99227,0.00772997,0.991582,0.00841786,0.977915,0.0220855,0.642086,0.357914,0.526046,0.473954,0.5,0.5,0.5,0.5,0.00765401,0.992346,0.00794163,0.992058,0.00842762,0.991572,0.025854,0.974146,0.22425,0.77575,0.874335,0.125665,0.971694,0.0283058,0.992838,0.00716203,0.992838,0.00716203\n", "5.319398,0.5,0.5,0.49982,0.50018,0.499524,0.500476,0.481573,0.518427,0.263448,0.736552,0.00889634,0.991104,0.00561049,0.99439,0.00513618,0.994864,0.00513618,0.994864,0.50018,0.49982,0.5,0.5,0.499704,0.500296,0.481754,0.518246,0.263588,0.736412,0.0089027,0.991097,0.00561452,0.994385,0.00513987,0.99486,0.00513987,0.99486,0.500476,0.499524,0.500296,0.499704,0.5,0.5,0.482049,0.517951,0.263818,0.736182,0.00891316,0.991087,0.00562114,0.994379,0.00514593,0.994854,0.00514593,0.994854,0.518427,0.481573,0.518246,0.481754,0.517951,0.482049,0.5,0.5,0.278004,0.721996,0.00957063,0.990429,0.00603725,0.993963,0.00552707,0.994473,0.00552707,0.994473,0.736552,0.263448,0.736412,0.263588,0.736182,0.263818,0.721996,0.278004,0.5,0.5,0.0244814,0.975519,0.0155294,0.984471,0.0142286,0.985771,0.0142286,0.985771,0.991104,0.00889634,0.991097,0.0089027,0.991087,0.00891316,0.990429,0.00957063,0.975519,0.0244814,0.5,0.5,0.385964,0.614036,0.365142,0.634858,0.365142,0.634858,0.99439,0.00561049,0.994385,0.00561452,0.994379,0.00562114,0.993963,0.00603725,0.984471,0.0155294,0.614036,0.385964,0.5,0.5,0.477813,0.522187,0.477813,0.522187,0.994864,0.00513618,0.99486,0.00513987,0.994854,0.00514593,0.994473,0.00552707,0.985771,0.0142286,0.634858,0.365142,0.522187,0.477813,0.5,0.5,0.5,0.5,0.994864,0.00513618,0.99486,0.00513987,0.994854,0.00514593,0.994473,0.00552707,0.985771,0.0142286,0.634858,0.365142,0.522187,0.477813,0.5,0.5,0.5,0.5,0.005111,0.994889,0.00524664,0.994753,0.0054693,0.994531,0.0189734,0.981027,0.198389,0.801611,0.891147,0.108853,0.978434,0.0215665,0.995128,0.00487185,0.995128,0.00487185\n", "5.750604,0.5,0.5,0.499915,0.500085,0.49978,0.50022,0.485098,0.514902,0.271108,0.728892,0.00547826,0.994522,0.00353947,0.996461,0.00329017,0.99671,0.00329017,0.99671,0.500085,0.499915,0.5,0.5,0.499865,0.500135,0.485183,0.514817,0.271175,0.728825,0.00548011,0.99452,0.00354067,0.996459,0.00329128,0.996709,0.00329128,0.996709,0.50022,0.49978,0.500135,0.499865,0.5,0.5,0.485318,0.514682,0.271281,0.728719,0.00548305,0.994517,0.00354257,0.996457,0.00329305,0.996707,0.00329305,0.996707,0.514902,0.485098,0.514817,0.485183,0.514682,0.485318,0.5,0.5,0.283049,0.716951,0.00581287,0.994187,0.00375611,0.996244,0.0034916,0.996508,0.0034916,0.996508,0.728892,0.271108,0.728825,0.271175,0.728719,0.271281,0.716951,0.283049,0.5,0.5,0.0145937,0.985406,0.00945958,0.99054,0.00879697,0.991203,0.00879697,0.991203,0.994522,0.00547826,0.99452,0.00548011,0.994517,0.00548305,0.994187,0.00581287,0.985406,0.0145937,0.5,0.5,0.392037,0.607963,0.374714,0.625286,0.374714,0.625286,0.996461,0.00353947,0.996459,0.00354067,0.996457,0.00354257,0.996244,0.00375611,0.99054,0.00945958,0.607963,0.392037,0.5,0.5,0.481686,0.518314,0.481686,0.518314,0.99671,0.00329017,0.996709,0.00329128,0.996707,0.00329305,0.996508,0.0034916,0.991203,0.00879697,0.625286,0.374714,0.518314,0.481686,0.5,0.5,0.5,0.5,0.99671,0.00329017,0.996709,0.00329128,0.996707,0.00329305,0.996508,0.0034916,0.991203,0.00879697,0.625286,0.374714,0.518314,0.481686,0.5,0.5,0.5,0.5,0.00327784,0.996722,0.00333695,0.996663,0.00343056,0.996569,0.0136461,0.986354,0.175261,0.824739,0.907787,0.092213,0.984085,0.0159154,0.996829,0.00317077,0.996829,0.00317077\n", "6.229686,0.5,0.5,0.499963,0.500037,0.499907,0.500093,0.488187,0.511813,0.278952,0.721048,0.00319582,0.996804,0.00213639,0.997864,0.00201541,0.997985,0.00201541,0.997985,0.500037,0.499963,0.5,0.5,0.499944,0.500056,0.488223,0.511777,0.278982,0.721018,0.00319629,0.996804,0.0021367,0.997863,0.0020157,0.997984,0.0020157,0.997984,0.500093,0.499907,0.500056,0.499944,0.5,0.5,0.488279,0.511721,0.279027,0.720973,0.003197,0.996803,0.00213718,0.997863,0.00201615,0.997984,0.00201615,0.997984,0.511813,0.488187,0.511777,0.488223,0.511721,0.488279,0.5,0.5,0.288557,0.711443,0.00334997,0.99665,0.00223955,0.99776,0.00211274,0.997887,0.00211274,0.997887,0.721048,0.278952,0.721018,0.278982,0.720973,0.279027,0.711443,0.288557,0.5,0.5,0.00821906,0.991781,0.00550359,0.994496,0.00519293,0.994807,0.00519293,0.994807,0.996804,0.00319582,0.996804,0.00319629,0.996803,0.003197,0.99665,0.00334997,0.991781,0.00821906,0.5,0.5,0.400402,0.599598,0.386463,0.613537,0.386463,0.613537,0.997864,0.00213639,0.997863,0.0021367,0.997863,0.00213718,0.99776,0.00223955,0.994496,0.00550359,0.599598,0.400402,0.5,0.5,0.4854,0.5146,0.4854,0.5146,0.997985,0.00201541,0.997984,0.0020157,0.997984,0.00201615,0.997887,0.00211274,0.994807,0.00519293,0.613537,0.386463,0.5146,0.4854,0.5,0.5,0.5,0.5,0.997985,0.00201541,0.997984,0.0020157,0.997984,0.00201615,0.997887,0.00211274,0.994807,0.00519293,0.613537,0.386463,0.5146,0.4854,0.5,0.5,0.5,0.5,0.00200997,0.99799,0.00203357,0.997966,0.00206939,0.997931,0.00959666,0.990403,0.154452,0.845548,0.92384,0.0761601,0.988657,0.0113431,0.998034,0.0019662,0.998034,0.0019662\n", "6.761406,0.5,0.5,0.499986,0.500014,0.499965,0.500035,0.490853,0.509147,0.287284,0.712716,0.00176112,0.998239,0.00122835,0.998772,0.00117459,0.998825,0.00117459,0.998825,0.500014,0.499986,0.5,0.5,0.499979,0.500021,0.490867,0.509133,0.287296,0.712704,0.00176122,0.998239,0.00122842,0.998772,0.00117466,0.998825,0.00117466,0.998825,0.500035,0.499965,0.500021,0.499979,0.5,0.5,0.490888,0.509112,0.287313,0.712687,0.00176137,0.998239,0.00122852,0.998771,0.00117476,0.998825,0.00117476,0.998825,0.509147,0.490853,0.509133,0.490867,0.509112,0.490888,0.5,0.5,0.294835,0.705165,0.00182664,0.998173,0.00127407,0.998726,0.00121831,0.998782,0.00121831,0.998782,0.712716,0.287284,0.712704,0.287296,0.712687,0.287313,0.705165,0.294835,0.5,0.5,0.00435775,0.995642,0.00304184,0.996958,0.00290895,0.997091,0.00290895,0.997091,0.998239,0.00176112,0.998239,0.00176122,0.998239,0.00176137,0.998173,0.00182664,0.995642,0.00435775,0.5,0.5,0.410762,0.589238,0.399963,0.600037,0.399963,0.600037,0.998772,0.00122835,0.998772,0.00122842,0.998771,0.00122852,0.998726,0.00127407,0.996958,0.00304184,0.589238,0.410762,0.5,0.5,0.488801,0.511199,0.488801,0.511199,0.998825,0.00117459,0.998825,0.00117466,0.998825,0.00117476,0.998782,0.00121831,0.997091,0.00290895,0.600037,0.399963,0.511199,0.488801,0.5,0.5,0.5,0.5,0.998825,0.00117459,0.998825,0.00117466,0.998825,0.00117476,0.998782,0.00121831,0.997091,0.00290895,0.600037,0.399963,0.511199,0.488801,0.5,0.5,0.5,0.5,0.00117244,0.998828,0.00118099,0.998819,0.00119336,0.998807,0.00658446,0.993416,0.135554,0.864446,0.938853,0.0611465,0.992217,0.00778276,0.998844,0.00115626,0.998844,0.00115626\n", "7.351085,0.5,0.5,0.499995,0.500005,0.499988,0.500012,0.493106,0.506894,0.296401,0.703599,0.000914313,0.999086,0.000669255,0.999331,0.000647584,0.999352,0.000647584,0.999352,0.500005,0.499995,0.5,0.5,0.499993,0.500007,0.493112,0.506888,0.296405,0.703595,0.000914331,0.999086,0.000669268,0.999331,0.000647597,0.999352,0.000647597,0.999352,0.500012,0.499988,0.500007,0.499993,0.5,0.5,0.493119,0.506881,0.296411,0.703589,0.000914357,0.999086,0.000669287,0.999331,0.000647615,0.999352,0.000647615,0.999352,0.506894,0.493106,0.506888,0.493112,0.506881,0.493119,0.5,0.5,0.302184,0.697816,0.000939852,0.99906,0.000687954,0.999312,0.000665678,0.999334,0.000665678,0.999334,0.703599,0.296401,0.703595,0.296405,0.703589,0.296411,0.697816,0.302184,0.5,0.5,0.00216768,0.997832,0.00158722,0.998413,0.00153587,0.998464,0.00153587,0.998464,0.999086,0.000914313,0.999086,0.000914331,0.999086,0.000914357,0.99906,0.000939852,0.997832,0.00216768,0.5,0.5,0.422565,0.577435,0.414549,0.585451,0.414549,0.585451,0.999331,0.000669255,0.999331,0.000669268,0.999331,0.000669287,0.999312,0.000687954,0.998413,0.00158722,0.577435,0.422565,0.5,0.5,0.491766,0.508234,0.491766,0.508234,0.999352,0.000647584,0.999352,0.000647597,0.999352,0.000647615,0.999334,0.000665678,0.998464,0.00153587,0.585451,0.414549,0.508234,0.491766,0.5,0.5,0.5,0.5,0.999352,0.000647584,0.999352,0.000647597,0.999352,0.000647615,0.999334,0.000665678,0.998464,0.00153587,0.585451,0.414549,0.508234,0.491766,0.5,0.5,0.5,0.5,0.000646831,0.999353,0.000649612,0.99935,0.00065343,0.999347,0.00439809,0.995602,0.118248,0.881752,0.952401,0.0475993,0.994878,0.00512218,0.999359,0.000641484,0.999359,0.000641484\n", "8.004629,0.5,0.5,0.499998,0.500002,0.499996,0.500004,0.494961,0.505039,0.306532,0.693468,0.000445891,0.999554,0.000343436,0.999657,0.000335594,0.999664,0.000335594,0.999664,0.500002,0.499998,0.5,0.5,0.499998,0.500002,0.494962,0.505038,0.306533,0.693467,0.000445894,0.999554,0.000343438,0.999657,0.000335596,0.999664,0.000335596,0.999664,0.500004,0.499996,0.500002,0.499998,0.5,0.5,0.494964,0.505036,0.306535,0.693465,0.000445898,0.999554,0.000343441,0.999657,0.000335599,0.999664,0.000335599,0.999664,0.505039,0.494961,0.505038,0.494962,0.505036,0.494964,0.5,0.5,0.310833,0.689167,0.000454966,0.999545,0.000350427,0.99965,0.000342425,0.999658,0.000342425,0.999658,0.693468,0.306532,0.693467,0.306533,0.693465,0.306535,0.689167,0.310833,0.5,0.5,0.00100818,0.998992,0.000776622,0.999223,0.000758895,0.999241,0.000758895,0.999241,0.999554,0.000445891,0.999554,0.000445894,0.999554,0.000445898,0.999545,0.000454966,0.998992,0.00100818,0.5,0.5,0.435075,0.564925,0.429404,0.570596,0.429404,0.570596,0.999657,0.000343436,0.999657,0.000343438,0.999657,0.000343441,0.99965,0.000350427,0.999223,0.000776622,0.564925,0.435075,0.5,0.5,0.494223,0.505777,0.494223,0.505777,0.999664,0.000335594,0.999664,0.000335596,0.999664,0.000335599,0.999658,0.000342425,0.999241,0.000758895,0.570596,0.429404,0.505777,0.494223,0.5,0.5,0.5,0.5,0.999664,0.000335594,0.999664,0.000335596,0.999664,0.000335599,0.999658,0.000342425,0.999241,0.000758895,0.570596,0.429404,0.505777,0.494223,0.5,0.5,0.5,0.5,0.000335362,0.999665,0.000336164,0.999664,0.000337207,0.999663,0.00285361,0.997146,0.102324,0.897676,0.964151,0.0358486,0.996779,0.00322053,0.999666,0.000333802,0.999666,0.000333802\n", "8.728526,0.5,0.5,0.5,0.5,0.499999,0.500001,0.496439,0.503561,0.317798,0.682202,0.000203523,0.999796,0.000164851,0.999835,0.000162333,0.999838,0.000162333,0.999838,0.5,0.5,0.5,0.5,0.499999,0.500001,0.496439,0.503561,0.317798,0.682202,0.000203524,0.999796,0.000164852,0.999835,0.000162334,0.999838,0.000162334,0.999838,0.500001,0.499999,0.500001,0.499999,0.5,0.5,0.49644,0.50356,0.317799,0.682201,0.000203524,0.999796,0.000164852,0.999835,0.000162334,0.999838,0.000162334,0.999838,0.503561,0.496439,0.503561,0.496439,0.50356,0.49644,0.5,0.5,0.320894,0.679106,0.000206443,0.999794,0.000167216,0.999833,0.000164662,0.999835,0.000164662,0.999835,0.682202,0.317798,0.682202,0.317798,0.682201,0.317799,0.679106,0.320894,0.5,0.5,0.000436793,0.999563,0.000353812,0.999646,0.000348409,0.999652,0.000348409,0.999652,0.999796,0.000203523,0.999796,0.000203524,0.999796,0.000203524,0.999794,0.000206443,0.999563,0.000436793,0.5,0.5,0.4475,0.5525,0.443697,0.556303,0.443697,0.556303,0.999835,0.000164851,0.999835,0.000164852,0.999835,0.000164852,0.999833,0.000167216,0.999646,0.000353812,0.5525,0.4475,0.5,0.5,0.496151,0.503849,0.496151,0.503849,0.999838,0.000162333,0.999838,0.000162334,0.999838,0.000162334,0.999835,0.000164662,0.999652,0.000348409,0.556303,0.443697,0.503849,0.496151,0.5,0.5,0.5,0.5,0.999838,0.000162333,0.999838,0.000162334,0.999838,0.000162334,0.999835,0.000164662,0.999652,0.000348409,0.556303,0.443697,0.503849,0.496151,0.5,0.5,0.5,0.5,0.000162272,0.999838,0.000162473,0.999838,0.000162723,0.999837,0.00179424,0.998206,0.0876812,0.912319,0.973926,0.0260735,0.998074,0.00192563,0.999838,0.000161875,0.999838,0.000161875\n", "9.529831,0.5,0.5,0.5,0.5,0.5,0.5,0.497576,0.502424,0.330196,0.669804,8.6533e-05,0.999913,7.34556e-05,0.999927,7.27473e-05,0.999927,7.27473e-05,0.999927,0.5,0.5,0.5,0.5,0.5,0.5,0.497576,0.502424,0.330196,0.669804,8.6533e-05,0.999913,7.34557e-05,0.999927,7.27474e-05,0.999927,7.27474e-05,0.999927,0.5,0.5,0.5,0.5,0.5,0.5,0.497576,0.502424,0.330196,0.669804,8.6533e-05,0.999913,7.34557e-05,0.999927,7.27474e-05,0.999927,7.27474e-05,0.999927,0.502424,0.497576,0.502424,0.497576,0.502424,0.497576,0.5,0.5,0.332344,0.667656,8.73761e-05,0.999913,7.41713e-05,0.999926,7.34561e-05,0.999927,7.34561e-05,0.999927,0.669804,0.330196,0.669804,0.330196,0.669804,0.330196,0.667656,0.332344,0.5,0.5,0.000175517,0.999824,0.000148994,0.999851,0.000147557,0.999852,0.000147557,0.999852,0.999913,8.6533e-05,0.999913,8.6533e-05,0.999913,8.6533e-05,0.999913,8.73761e-05,0.999824,0.000175517,0.5,0.5,0.459127,0.540873,0.456722,0.543278,0.456722,0.543278,0.999927,7.34556e-05,0.999927,7.34557e-05,0.999927,7.34557e-05,0.999926,7.41713e-05,0.999851,0.000148994,0.540873,0.459127,0.5,0.5,0.497578,0.502422,0.497578,0.502422,0.999927,7.27473e-05,0.999927,7.27474e-05,0.999927,7.27474e-05,0.999927,7.34561e-05,0.999852,0.000147557,0.543278,0.456722,0.502422,0.497578,0.5,0.5,0.5,0.5,0.999927,7.27473e-05,0.999927,7.27474e-05,0.999927,7.27474e-05,0.999927,7.34561e-05,0.999852,0.000147557,0.543278,0.456722,0.502422,0.497578,0.5,0.5,0.5,0.5,7.27332e-05,0.999927,7.2777e-05,0.999927,7.28285e-05,0.999927,0.00109027,0.99891,0.0742921,0.925708,0.981716,0.0182836,0.998911,0.00108945,0.999927,7.26466e-05,0.999927,7.26466e-05\n", "10.416192,0.5,0.5,0.5,0.5,0.5,0.5,0.498416,0.501584,0.343605,0.656395,3.406e-05,0.999966,3.01336e-05,0.99997,2.99615e-05,0.99997,2.99615e-05,0.99997,0.5,0.5,0.5,0.5,0.5,0.5,0.498416,0.501584,0.343605,0.656395,3.406e-05,0.999966,3.01336e-05,0.99997,2.99615e-05,0.99997,2.99615e-05,0.99997,0.5,0.5,0.5,0.5,0.5,0.5,0.498416,0.501584,0.343605,0.656395,3.406e-05,0.999966,3.01336e-05,0.99997,2.99615e-05,0.99997,2.99615e-05,0.99997,0.501584,0.498416,0.501584,0.498416,0.501584,0.498416,0.5,0.5,0.345035,0.654965,3.42764e-05,0.999966,3.03251e-05,0.99997,3.01519e-05,0.99997,3.01519e-05,0.99997,0.656395,0.343605,0.656395,0.343605,0.656395,0.343605,0.654965,0.345035,0.5,0.5,6.50633e-05,0.999935,5.75632e-05,0.999942,5.72344e-05,0.999943,5.72344e-05,0.999943,0.999966,3.406e-05,0.999966,3.406e-05,0.999966,3.406e-05,0.999966,3.42764e-05,0.999935,6.50633e-05,0.5,0.5,0.469417,0.530583,0.46799,0.53201,0.46799,0.53201,0.99997,3.01336e-05,0.99997,3.01336e-05,0.99997,3.01336e-05,0.99997,3.03251e-05,0.999942,5.75632e-05,0.530583,0.469417,0.5,0.5,0.498568,0.501432,0.498568,0.501432,0.99997,2.99615e-05,0.99997,2.99615e-05,0.99997,2.99615e-05,0.99997,3.01519e-05,0.999943,5.72344e-05,0.53201,0.46799,0.501432,0.498568,0.5,0.5,0.5,0.5,0.99997,2.99615e-05,0.99997,2.99615e-05,0.99997,2.99615e-05,0.99997,3.01519e-05,0.999943,5.72344e-05,0.53201,0.46799,0.501432,0.498568,0.5,0.5,0.5,0.5,2.99588e-05,0.99997,2.99668e-05,0.99997,2.99759e-05,0.99997,0.000638159,0.999362,0.0621706,0.937829,0.987661,0.0123391,0.99942,0.000580008,0.99997,2.99428e-05,0.99997,2.99428e-05\n", "11.395902,0.5,0.5,0.5,0.5,0.5,0.5,0.499011,0.500989,0.357809,0.642191,1.23155e-05,0.999988,1.12798e-05,0.999989,1.12442e-05,0.999989,1.12442e-05,0.999989,0.5,0.5,0.5,0.5,0.5,0.5,0.499011,0.500989,0.357809,0.642191,1.23155e-05,0.999988,1.12798e-05,0.999989,1.12442e-05,0.999989,1.12442e-05,0.999989,0.5,0.5,0.5,0.5,0.5,0.5,0.499011,0.500989,0.357809,0.642191,1.23155e-05,0.999988,1.12798e-05,0.999989,1.12442e-05,0.999989,1.12442e-05,0.999989,0.500989,0.499011,0.500989,0.499011,0.500989,0.499011,0.5,0.5,0.358718,0.641282,1.23643e-05,0.999988,1.13245e-05,0.999989,1.12888e-05,0.999989,1.12888e-05,0.999989,0.642191,0.357809,0.642191,0.357809,0.642191,0.357809,0.641282,0.358718,0.5,0.5,2.21035e-05,0.999978,2.02448e-05,0.99998,2.01808e-05,0.99998,2.01808e-05,0.99998,0.999988,1.23155e-05,0.999988,1.23155e-05,0.999988,1.23155e-05,0.999988,1.23643e-05,0.999978,2.21035e-05,0.5,0.5,0.478053,0.521947,0.477264,0.522736,0.477264,0.522736,0.999989,1.12798e-05,0.999989,1.12798e-05,0.999989,1.12798e-05,0.999989,1.13245e-05,0.99998,2.02448e-05,0.521947,0.478053,0.5,0.5,0.499209,0.500791,0.499209,0.500791,0.999989,1.12442e-05,0.999989,1.12442e-05,0.999989,1.12442e-05,0.999989,1.12888e-05,0.99998,2.01808e-05,0.522736,0.477264,0.500791,0.499209,0.5,0.5,0.5,0.5,0.999989,1.12442e-05,0.999989,1.12442e-05,0.999989,1.12442e-05,0.999989,1.12888e-05,0.99998,2.01808e-05,0.522736,0.477264,0.500791,0.499209,0.5,0.5,0.5,0.5,1.12438e-05,0.999989,1.1245e-05,0.999989,1.12463e-05,0.999989,0.000358344,0.999642,0.0513356,0.948664,0.992003,0.00799713,0.999711,0.000288831,0.999989,1.12413e-05,0.999989,1.12413e-05\n", "12.477987,0.5,0.5,0.5,0.5,0.5,0.5,0.499413,0.500587,0.372529,0.627471,4.05321e-06,0.999996,3.81612e-06,0.999996,3.80994e-06,0.999996,3.80994e-06,0.999996,0.5,0.5,0.5,0.5,0.5,0.5,0.499413,0.500587,0.372529,0.627471,4.05321e-06,0.999996,3.81612e-06,0.999996,3.80994e-06,0.999996,3.80994e-06,0.999996,0.5,0.5,0.5,0.5,0.5,0.5,0.499413,0.500587,0.372529,0.627471,4.05321e-06,0.999996,3.81612e-06,0.999996,3.80994e-06,0.999996,3.80994e-06,0.999996,0.500587,0.499413,0.500587,0.499413,0.500587,0.499413,0.5,0.5,0.373078,0.626922,4.06274e-06,0.999996,3.8251e-06,0.999996,3.81891e-06,0.999996,3.81891e-06,0.999996,0.627471,0.372529,0.627471,0.372529,0.627471,0.372529,0.626922,0.373078,0.5,0.5,6.82704e-06,0.999993,6.4277e-06,0.999994,6.41729e-06,0.999994,6.41729e-06,0.999994,0.999996,4.05321e-06,0.999996,4.05321e-06,0.999996,4.05321e-06,0.999996,4.06274e-06,0.999993,6.82704e-06,0.5,0.5,0.484936,0.515064,0.484531,0.515469,0.484531,0.515469,0.999996,3.81612e-06,0.999996,3.81612e-06,0.999996,3.81612e-06,0.999996,3.8251e-06,0.999994,6.4277e-06,0.515064,0.484936,0.5,0.5,0.499595,0.500405,0.499595,0.500405,0.999996,3.80994e-06,0.999996,3.80994e-06,0.999996,3.80994e-06,0.999996,3.81891e-06,0.999994,6.41729e-06,0.515469,0.484531,0.500405,0.499595,0.5,0.5,0.5,0.5,0.999996,3.80994e-06,0.999996,3.80994e-06,0.999996,3.80994e-06,0.999996,3.81891e-06,0.999994,6.41729e-06,0.515469,0.484531,0.500405,0.499595,0.5,0.5,0.5,0.5,3.80989e-06,0.999996,3.81004e-06,0.999996,3.8102e-06,0.999996,0.000192088,0.999808,0.0417881,0.958212,0.995036,0.0049641,0.999866,0.000133658,0.999996,3.80958e-06,0.999996,3.80958e-06\n", "13.672315,0.5,0.5,0.5,0.5,0.5,0.5,0.49967,0.50033,0.387457,0.612543,1.20132e-06,0.999999,1.15487e-06,0.999999,1.15399e-06,0.999999,1.15399e-06,0.999999,0.5,0.5,0.5,0.5,0.5,0.5,0.49967,0.50033,0.387457,0.612543,1.20132e-06,0.999999,1.15487e-06,0.999999,1.15399e-06,0.999999,1.15399e-06,0.999999,0.5,0.5,0.5,0.5,0.5,0.5,0.49967,0.50033,0.387457,0.612543,1.20132e-06,0.999999,1.15487e-06,0.999999,1.15399e-06,0.999999,1.15399e-06,0.999999,0.50033,0.49967,0.50033,0.49967,0.50033,0.49967,0.5,0.5,0.38777,0.61223,1.20291e-06,0.999999,1.1564e-06,0.999999,1.15552e-06,0.999999,1.15552e-06,0.999999,0.612543,0.387457,0.612543,0.387457,0.612543,0.387457,0.61223,0.38777,0.5,0.5,1.89921e-06,0.999998,1.82578e-06,0.999998,1.82438e-06,0.999998,1.82438e-06,0.999998,0.999999,1.20132e-06,0.999999,1.20132e-06,0.999999,1.20132e-06,0.999999,1.20291e-06,0.999998,1.89921e-06,0.5,0.5,0.490143,0.509857,0.489952,0.510048,0.489952,0.510048,0.999999,1.15487e-06,0.999999,1.15487e-06,0.999999,1.15487e-06,0.999999,1.1564e-06,0.999998,1.82578e-06,0.509857,0.490143,0.5,0.5,0.499809,0.500191,0.499809,0.500191,0.999999,1.15399e-06,0.999999,1.15399e-06,0.999999,1.15399e-06,0.999999,1.15552e-06,0.999998,1.82438e-06,0.510048,0.489952,0.500191,0.499809,0.5,0.5,0.5,0.5,0.999999,1.15399e-06,0.999999,1.15399e-06,0.999999,1.15399e-06,0.999999,1.15552e-06,0.999998,1.82438e-06,0.510048,0.489952,0.500191,0.499809,0.5,0.5,0.5,0.5,1.15399e-06,0.999999,1.154e-06,0.999999,1.15402e-06,0.999999,9.77122e-05,0.999902,0.0335006,0.966499,0.997059,0.0029412,0.999943,5.70674e-05,0.999999,1.15395e-06,0.999999,1.15395e-06\n", "14.989707,0.5,0.5,0.5,0.5,0.5,0.5,0.499826,0.500174,0.402283,0.597717,3.16839e-07,1,3.09172e-07,1,3.0907e-07,1,3.0907e-07,1,0.5,0.5,0.5,0.5,0.5,0.5,0.499826,0.500174,0.402283,0.597717,3.16839e-07,1,3.09172e-07,1,3.0907e-07,1,3.0907e-07,1,0.5,0.5,0.5,0.5,0.5,0.5,0.499826,0.500174,0.402283,0.597717,3.16839e-07,1,3.09172e-07,1,3.0907e-07,1,3.0907e-07,1,0.500174,0.499826,0.500174,0.499826,0.500174,0.499826,0.5,0.5,0.402451,0.597549,3.1706e-07,1,3.09388e-07,1,3.09286e-07,1,3.09286e-07,1,0.597717,0.402283,0.597717,0.402283,0.597717,0.402283,0.597549,0.402451,0.5,0.5,4.70762e-07,1,4.59371e-07,1,4.59219e-07,1,4.59219e-07,1,1,3.16839e-07,1,3.16839e-07,1,3.16839e-07,1,3.1706e-07,1,4.70762e-07,0.5,0.5,0.493876,0.506124,0.493794,0.506206,0.493794,0.506206,1,3.09172e-07,1,3.09172e-07,1,3.09172e-07,1,3.09388e-07,1,4.59371e-07,0.506124,0.493876,0.5,0.5,0.499918,0.500082,0.499918,0.500082,1,3.0907e-07,1,3.0907e-07,1,3.0907e-07,1,3.09286e-07,1,4.59219e-07,0.506206,0.493794,0.500082,0.499918,0.5,0.5,0.5,0.5,1,3.0907e-07,1,3.0907e-07,1,3.0907e-07,1,3.09286e-07,1,4.59219e-07,0.506206,0.493794,0.500082,0.499918,0.5,0.5,0.5,0.5,3.0907e-07,1,3.09071e-07,1,3.09072e-07,1,4.68399e-05,0.999953,0.0264158,0.973584,0.998344,0.00165645,0.999978,2.23073e-05,1,3.09067e-07,1,3.09067e-07\n", "16.442069,0.5,0.5,0.5,0.5,0.5,0.5,0.499914,0.500086,0.416716,0.583284,7.3384e-08,1,7.23365e-08,1,7.23271e-08,1,7.23271e-08,1,0.5,0.5,0.5,0.5,0.5,0.5,0.499914,0.500086,0.416716,0.583284,7.3384e-08,1,7.23365e-08,1,7.23271e-08,1,7.23271e-08,1,0.5,0.5,0.5,0.5,0.5,0.5,0.499914,0.500086,0.416716,0.583284,7.3384e-08,1,7.23365e-08,1,7.23271e-08,1,7.23271e-08,1,0.500086,0.499914,0.500086,0.499914,0.500086,0.499914,0.5,0.5,0.416799,0.583201,7.34093e-08,1,7.23614e-08,1,7.2352e-08,1,7.2352e-08,1,0.583284,0.416716,0.583284,0.416716,0.583284,0.416716,0.583201,0.416799,0.5,0.5,1.02717e-07,1,1.01251e-07,1,1.01238e-07,1,1.01238e-07,1,1,7.3384e-08,1,7.3384e-08,1,7.3384e-08,1,7.34093e-08,1,1.02717e-07,0.5,0.5,0.496406,0.503594,0.496373,0.503627,0.496373,0.503627,1,7.23365e-08,1,7.23365e-08,1,7.23365e-08,1,7.23614e-08,1,1.01251e-07,0.503594,0.496406,0.5,0.5,0.499968,0.500032,0.499968,0.500032,1,7.23271e-08,1,7.23271e-08,1,7.23271e-08,1,7.2352e-08,1,1.01238e-07,0.503627,0.496373,0.500032,0.499968,0.5,0.5,0.5,0.5,1,7.23271e-08,1,7.23271e-08,1,7.23271e-08,1,7.2352e-08,1,1.01238e-07,0.503627,0.496373,0.500032,0.499968,0.5,0.5,0.5,0.5,7.23271e-08,1,7.23272e-08,1,7.23273e-08,1,2.09889e-05,0.999979,0.0204519,0.979548,0.999118,0.000882368,0.999992,7.91532e-06,1,7.2327e-08,1,7.2327e-08\n", "18.042521,0.5,0.5,0.5,0.5,0.5,0.5,0.499961,0.500039,0.430488,0.569512,1.47128e-08,1,1.45966e-08,1,1.4596e-08,1,1.4596e-08,1,0.5,0.5,0.5,0.5,0.5,0.5,0.499961,0.500039,0.430488,0.569512,1.47128e-08,1,1.45966e-08,1,1.4596e-08,1,1.4596e-08,1,0.5,0.5,0.5,0.5,0.5,0.5,0.499961,0.500039,0.430488,0.569512,1.47128e-08,1,1.45966e-08,1,1.4596e-08,1,1.4596e-08,1,0.500039,0.499961,0.500039,0.499961,0.500039,0.499961,0.5,0.5,0.430526,0.569474,1.47151e-08,1,1.45989e-08,1,1.45983e-08,1,1.45983e-08,1,0.569512,0.430488,0.569512,0.430488,0.569512,0.430488,0.569474,0.430526,0.5,0.5,1.94643e-08,1,1.93105e-08,1,1.93097e-08,1,1.93097e-08,1,1,1.47128e-08,1,1.47128e-08,1,1.47128e-08,1,1.47151e-08,1,1.94643e-08,0.5,0.5,0.498018,0.501982,0.498006,0.501994,0.498006,0.501994,1,1.45966e-08,1,1.45966e-08,1,1.45966e-08,1,1.45989e-08,1,1.93105e-08,0.501982,0.498018,0.5,0.5,0.499989,0.500011,0.499989,0.500011,1,1.4596e-08,1,1.4596e-08,1,1.4596e-08,1,1.45983e-08,1,1.93097e-08,0.501994,0.498006,0.500011,0.499989,0.5,0.5,0.5,0.5,1,1.4596e-08,1,1.4596e-08,1,1.4596e-08,1,1.45983e-08,1,1.93097e-08,0.501994,0.498006,0.500011,0.499989,0.5,0.5,0.5,0.5,1.4596e-08,1,1.4596e-08,1,1.4596e-08,1,8.71045e-06,0.999991,0.0155112,0.984489,0.999558,0.000442022,0.999997,2.52578e-06,1,1.4596e-08,1,1.4596e-08\n", "19.805538,0.5,0.5,0.5,0.5,0.5,0.5,0.499984,0.500016,0.443364,0.556636,2.51387e-09,1,2.50363e-09,1,2.50359e-09,1,2.50359e-09,1,0.5,0.5,0.5,0.5,0.5,0.5,0.499984,0.500016,0.443364,0.556636,2.51387e-09,1,2.50363e-09,1,2.50359e-09,1,2.50359e-09,1,0.5,0.5,0.5,0.5,0.5,0.5,0.499984,0.500016,0.443364,0.556636,2.51387e-09,1,2.50363e-09,1,2.50359e-09,1,2.50359e-09,1,0.500016,0.499984,0.500016,0.499984,0.500016,0.499984,0.5,0.5,0.443381,0.556619,2.51404e-09,1,2.50379e-09,1,2.50376e-09,1,2.50376e-09,1,0.556636,0.443364,0.556636,0.443364,0.556636,0.443364,0.556619,0.443381,0.5,0.5,3.15612e-09,1,3.14326e-09,1,3.14322e-09,1,3.14322e-09,1,1,2.51387e-09,1,2.51387e-09,1,2.51387e-09,1,2.51404e-09,1,3.15612e-09,0.5,0.5,0.498979,0.501021,0.498976,0.501024,0.498976,0.501024,1,2.50363e-09,1,2.50363e-09,1,2.50363e-09,1,2.50379e-09,1,3.14326e-09,0.501021,0.498979,0.5,0.5,0.499996,0.500004,0.499996,0.500004,1,2.50359e-09,1,2.50359e-09,1,2.50359e-09,1,2.50376e-09,1,3.14322e-09,0.501024,0.498976,0.500004,0.499996,0.5,0.5,0.5,0.5,1,2.50359e-09,1,2.50359e-09,1,2.50359e-09,1,2.50376e-09,1,3.14322e-09,0.501024,0.498976,0.500004,0.499996,0.5,0.5,0.5,0.5,2.50359e-09,1,2.50359e-09,1,2.5036e-09,1,3.31258e-06,0.999997,0.0114876,0.988512,0.999793,0.000206889,0.999999,7.17399e-07,1,2.50359e-09,1,2.50359e-09\n", "21.747088,0.5,0.5,0.5,0.5,0.5,0.5,0.499994,0.500006,0.45514,0.54486,3.59922e-10,1,3.59221e-10,1,3.59219e-10,1,3.59219e-10,1,0.5,0.5,0.5,0.5,0.5,0.5,0.499994,0.500006,0.45514,0.54486,3.59922e-10,1,3.59221e-10,1,3.59219e-10,1,3.59219e-10,1,0.5,0.5,0.5,0.5,0.5,0.5,0.499994,0.500006,0.45514,0.54486,3.59922e-10,1,3.59221e-10,1,3.59219e-10,1,3.59219e-10,1,0.500006,0.499994,0.500006,0.499994,0.500006,0.499994,0.5,0.5,0.455146,0.544854,3.59931e-10,1,3.5923e-10,1,3.59228e-10,1,3.59228e-10,1,0.54486,0.45514,0.54486,0.45514,0.54486,0.45514,0.544854,0.455146,0.5,0.5,4.30872e-10,1,4.30033e-10,1,4.30031e-10,1,4.30031e-10,1,1,3.59922e-10,1,3.59922e-10,1,3.59922e-10,1,3.59931e-10,1,4.30872e-10,0.5,0.5,0.499513,0.500487,0.499512,0.500488,0.499512,0.500488,1,3.59221e-10,1,3.59221e-10,1,3.59221e-10,1,3.5923e-10,1,4.30033e-10,0.500487,0.499513,0.5,0.5,0.499999,0.500001,0.499999,0.500001,1,3.59219e-10,1,3.59219e-10,1,3.59219e-10,1,3.59228e-10,1,4.30031e-10,0.500488,0.499512,0.500001,0.499999,0.5,0.5,0.5,0.5,1,3.59219e-10,1,3.59219e-10,1,3.59219e-10,1,3.59228e-10,1,4.30031e-10,0.500488,0.499512,0.500001,0.499999,0.5,0.5,0.5,0.5,3.59219e-10,1,3.59219e-10,1,3.59219e-10,1,1.14055e-06,0.999999,0.00827347,0.991727,0.99991,8.98229e-05,1,1.79325e-07,1,3.59219e-10,1,3.59219e-10\n", "23.884779,0.5,0.5,0.5,0.5,0.5,0.5,0.499998,0.500002,0.465638,0.534362,4.23979e-11,1,4.23616e-11,1,4.23616e-11,1,4.23616e-11,1,0.5,0.5,0.5,0.5,0.5,0.5,0.499998,0.500002,0.465638,0.534362,4.23979e-11,1,4.23616e-11,1,4.23616e-11,1,4.23616e-11,1,0.5,0.5,0.5,0.5,0.5,0.5,0.499998,0.500002,0.465638,0.534362,4.23979e-11,1,4.23616e-11,1,4.23616e-11,1,4.23616e-11,1,0.500002,0.499998,0.500002,0.499998,0.500002,0.499998,0.5,0.5,0.46564,0.53436,4.23983e-11,1,4.2362e-11,1,4.23619e-11,1,4.23619e-11,1,0.534362,0.465638,0.534362,0.465638,0.534362,0.465638,0.53436,0.46564,0.5,0.5,4.86554e-11,1,4.86138e-11,1,4.86137e-11,1,4.86137e-11,1,1,4.23979e-11,1,4.23979e-11,1,4.23979e-11,1,4.23983e-11,1,4.86554e-11,0.5,0.5,0.499786,0.500214,0.499786,0.500214,0.499786,0.500214,1,4.23616e-11,1,4.23616e-11,1,4.23616e-11,1,4.2362e-11,1,4.86138e-11,0.500214,0.499786,0.5,0.5,0.5,0.5,0.5,0.5,1,4.23616e-11,1,4.23616e-11,1,4.23616e-11,1,4.23619e-11,1,4.86137e-11,0.500214,0.499786,0.5,0.5,0.5,0.5,0.5,0.5,1,4.23616e-11,1,4.23616e-11,1,4.23616e-11,1,4.23619e-11,1,4.86137e-11,0.500214,0.499786,0.5,0.5,0.5,0.5,0.5,0.5,4.23616e-11,1,4.23616e-11,1,4.23616e-11,1,3.50662e-07,1,0.00576369,0.994236,0.999964,3.58877e-05,1,3.89587e-08,1,4.23616e-11,1,4.23616e-11\n", "26.238016,0.5,0.5,0.5,0.5,0.5,0.5,0.499999,0.500001,0.474714,0.525286,4.02831e-12,1,4.02693e-12,1,4.02693e-12,1,4.02693e-12,1,0.5,0.5,0.5,0.5,0.5,0.5,0.499999,0.500001,0.474714,0.525286,4.02831e-12,1,4.02693e-12,1,4.02693e-12,1,4.02693e-12,1,0.5,0.5,0.5,0.5,0.5,0.5,0.499999,0.500001,0.474714,0.525286,4.02831e-12,1,4.02693e-12,1,4.02693e-12,1,4.02693e-12,1,0.500001,0.499999,0.500001,0.499999,0.500001,0.499999,0.5,0.5,0.474714,0.525286,4.02832e-12,1,4.02694e-12,1,4.02694e-12,1,4.02694e-12,1,0.525286,0.474714,0.525286,0.474714,0.525286,0.474714,0.525286,0.474714,0.5,0.5,4.45746e-12,1,4.45593e-12,1,4.45593e-12,1,4.45593e-12,1,1,4.02831e-12,1,4.02831e-12,1,4.02831e-12,1,4.02832e-12,1,4.45746e-12,0.5,0.5,0.499914,0.500086,0.499914,0.500086,0.499914,0.500086,1,4.02693e-12,1,4.02693e-12,1,4.02693e-12,1,4.02694e-12,1,4.45593e-12,0.500086,0.499914,0.5,0.5,0.5,0.5,0.5,0.5,1,4.02693e-12,1,4.02693e-12,1,4.02693e-12,1,4.02694e-12,1,4.45593e-12,0.500086,0.499914,0.5,0.5,0.5,0.5,0.5,0.5,1,4.02693e-12,1,4.02693e-12,1,4.02693e-12,1,4.02694e-12,1,4.45593e-12,0.500086,0.499914,0.5,0.5,0.5,0.5,0.5,0.5,4.02693e-12,1,4.02693e-12,1,4.02693e-12,1,9.47749e-08,1,0.0038582,0.996142,0.999987,1.30813e-05,1,7.25531e-09,1,4.02693e-12,1,4.02693e-12\n", "28.828154,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.482263,0.517737,3.02097e-13,1,3.02059e-13,1,3.02059e-13,1,3.02059e-13,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.482263,0.517737,3.02097e-13,1,3.02059e-13,1,3.02059e-13,1,3.02059e-13,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.482263,0.517737,3.02097e-13,1,3.02059e-13,1,3.02059e-13,1,3.02059e-13,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.482263,0.517737,3.02097e-13,1,3.02059e-13,1,3.02059e-13,1,3.02059e-13,1,0.517737,0.482263,0.517737,0.482263,0.517737,0.482263,0.517737,0.482263,0.5,0.5,3.24318e-13,1,3.24277e-13,1,3.24277e-13,1,3.24277e-13,1,1,3.02097e-13,1,3.02097e-13,1,3.02097e-13,1,3.02097e-13,1,3.24318e-13,0.5,0.5,0.499969,0.500031,0.499969,0.500031,0.499969,0.500031,1,3.02059e-13,1,3.02059e-13,1,3.02059e-13,1,3.02059e-13,1,3.24277e-13,0.500031,0.499969,0.5,0.5,0.5,0.5,0.5,0.5,1,3.02059e-13,1,3.02059e-13,1,3.02059e-13,1,3.02059e-13,1,3.24277e-13,0.500031,0.499969,0.5,0.5,0.5,0.5,0.5,0.5,1,3.02059e-13,1,3.02059e-13,1,3.02059e-13,1,3.02059e-13,1,3.24277e-13,0.500031,0.499969,0.5,0.5,0.5,0.5,0.5,0.5,3.02059e-13,1,3.02059e-13,1,3.02059e-13,1,2.21269e-08,1,0.00246206,0.997538,0.999996,4.30942e-06,1,1.14076e-09,1,3.02059e-13,1,3.02059e-13\n", "31.678676,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.488245,0.511755,1.7464e-14,1,1.74633e-14,1,1.74633e-14,1,1.74633e-14,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.488245,0.511755,1.7464e-14,1,1.74633e-14,1,1.74633e-14,1,1.74633e-14,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.488245,0.511755,1.7464e-14,1,1.74633e-14,1,1.74633e-14,1,1.74633e-14,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.488245,0.511755,1.7464e-14,1,1.74633e-14,1,1.74633e-14,1,1.74633e-14,1,0.511755,0.488245,0.511755,0.488245,0.511755,0.488245,0.511755,0.488245,0.5,0.5,1.83049e-14,1,1.83042e-14,1,1.83042e-14,1,1.83042e-14,1,1,1.7464e-14,1,1.7464e-14,1,1.7464e-14,1,1.7464e-14,1,1.83049e-14,0.5,0.5,0.49999,0.50001,0.49999,0.50001,0.49999,0.50001,1,1.74633e-14,1,1.74633e-14,1,1.74633e-14,1,1.74633e-14,1,1.83042e-14,0.50001,0.49999,0.5,0.5,0.5,0.5,0.5,0.5,1,1.74633e-14,1,1.74633e-14,1,1.74633e-14,1,1.74633e-14,1,1.83042e-14,0.50001,0.49999,0.5,0.5,0.5,0.5,0.5,0.5,1,1.74633e-14,1,1.74633e-14,1,1.74633e-14,1,1.74633e-14,1,1.83042e-14,0.50001,0.49999,0.5,0.5,0.5,0.5,0.5,0.5,1.74633e-14,1,1.74633e-14,1,1.74633e-14,1,4.3781e-09,1,0.00148452,0.998515,0.999999,1.26999e-06,1,1.48916e-10,1,1.74633e-14,1,1.74633e-14\n", "34.815388,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.492706,0.507294,7.58357e-16,1,7.58349e-16,1,7.58349e-16,1,7.58349e-16,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.492706,0.507294,7.58357e-16,1,7.58349e-16,1,7.58349e-16,1,7.58349e-16,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.492706,0.507294,7.58357e-16,1,7.58349e-16,1,7.58349e-16,1,7.58349e-16,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.492706,0.507294,7.58358e-16,1,7.58349e-16,1,7.58349e-16,1,7.58349e-16,1,0.507294,0.492706,0.507294,0.492706,0.507294,0.492706,0.507294,0.492706,0.5,0.5,7.80811e-16,1,7.80802e-16,1,7.80802e-16,1,7.80802e-16,1,1,7.58357e-16,1,7.58357e-16,1,7.58357e-16,1,7.58358e-16,1,7.80811e-16,0.5,0.5,0.499997,0.500003,0.499997,0.500003,0.499997,0.500003,1,7.58349e-16,1,7.58349e-16,1,7.58349e-16,1,7.58349e-16,1,7.80802e-16,0.500003,0.499997,0.5,0.5,0.5,0.5,0.5,0.5,1,7.58349e-16,1,7.58349e-16,1,7.58349e-16,1,7.58349e-16,1,7.80802e-16,0.500003,0.499997,0.5,0.5,0.5,0.5,0.5,0.5,1,7.58349e-16,1,7.58349e-16,1,7.58349e-16,1,7.58349e-16,1,7.80802e-16,0.500003,0.499997,0.5,0.5,0.5,0.5,0.5,0.5,7.58349e-16,1,7.58349e-16,1,7.58349e-16,1,7.19668e-10,1,0.000838076,0.999162,1,3.31096e-07,1,1.58455e-11,1,7.58349e-16,1,7.58349e-16\n", "38.266657,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.495798,0.504202,2.40438e-17,1,2.40437e-17,1,2.40437e-17,1,2.40437e-17,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.495798,0.504202,2.40438e-17,1,2.40437e-17,1,2.40437e-17,1,2.40437e-17,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.495798,0.504202,2.40438e-17,1,2.40437e-17,1,2.40437e-17,1,2.40437e-17,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.495798,0.504202,2.40438e-17,1,2.40437e-17,1,2.40437e-17,1,2.40437e-17,1,0.504202,0.495798,0.504202,0.495798,0.504202,0.495798,0.504202,0.495798,0.5,0.5,2.44514e-17,1,2.44513e-17,1,2.44513e-17,1,2.44513e-17,1,1,2.40438e-17,1,2.40438e-17,1,2.40438e-17,1,2.40438e-17,1,2.44514e-17,0.5,0.5,0.499999,0.500001,0.499999,0.500001,0.499999,0.500001,1,2.40437e-17,1,2.40437e-17,1,2.40437e-17,1,2.40437e-17,1,2.44513e-17,0.500001,0.499999,0.5,0.5,0.5,0.5,0.5,0.5,1,2.40437e-17,1,2.40437e-17,1,2.40437e-17,1,2.40437e-17,1,2.44513e-17,0.500001,0.499999,0.5,0.5,0.5,0.5,0.5,0.5,1,2.40437e-17,1,2.40437e-17,1,2.40437e-17,1,2.40437e-17,1,2.44513e-17,0.500001,0.499999,0.5,0.5,0.5,0.5,0.5,0.5,2.40437e-17,1,2.40437e-17,1,2.40437e-17,1,9.63456e-11,1,0.000439251,0.999561,1,7.54354e-08,1,1.34675e-12,1,2.40437e-17,1,2.40437e-17\n", "42.063680,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.497768,0.502232,5.39481e-19,1,5.39481e-19,1,5.39481e-19,1,5.39481e-19,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.497768,0.502232,5.39481e-19,1,5.39481e-19,1,5.39481e-19,1,5.39481e-19,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.497768,0.502232,5.39481e-19,1,5.39481e-19,1,5.39481e-19,1,5.39481e-19,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.497768,0.502232,5.39481e-19,1,5.39481e-19,1,5.39481e-19,1,5.39481e-19,1,0.502232,0.497768,0.502232,0.497768,0.502232,0.497768,0.502232,0.497768,0.5,0.5,5.44319e-19,1,5.44318e-19,1,5.44318e-19,1,5.44318e-19,1,1,5.39481e-19,1,5.39481e-19,1,5.39481e-19,1,5.39481e-19,1,5.44319e-19,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,5.39481e-19,1,5.39481e-19,1,5.39481e-19,1,5.39481e-19,1,5.44318e-19,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,5.39481e-19,1,5.39481e-19,1,5.39481e-19,1,5.39481e-19,1,5.44318e-19,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,5.39481e-19,1,5.39481e-19,1,5.39481e-19,1,5.39481e-19,1,5.44318e-19,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,5.39481e-19,1,5.39481e-19,1,5.39481e-19,1,1.03055e-11,1,0.000212228,0.999788,1,1.482e-08,1,8.94152e-14,1,5.39481e-19,1,5.39481e-19\n", "46.240803,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.498913,0.501087,8.27703e-21,1,8.27703e-21,1,8.27703e-21,1,8.27703e-21,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.498913,0.501087,8.27703e-21,1,8.27703e-21,1,8.27703e-21,1,8.27703e-21,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.498913,0.501087,8.27703e-21,1,8.27703e-21,1,8.27703e-21,1,8.27703e-21,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.498913,0.501087,8.27703e-21,1,8.27703e-21,1,8.27703e-21,1,8.27703e-21,1,0.501087,0.498913,0.501087,0.498913,0.501087,0.498913,0.501087,0.498913,0.5,0.5,8.31308e-21,1,8.31308e-21,1,8.31308e-21,1,8.31308e-21,1,1,8.27703e-21,1,8.27703e-21,1,8.27703e-21,1,8.27703e-21,1,8.31308e-21,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,8.27703e-21,1,8.27703e-21,1,8.27703e-21,1,8.27703e-21,1,8.31308e-21,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,8.27703e-21,1,8.27703e-21,1,8.27703e-21,1,8.27703e-21,1,8.31308e-21,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,8.27703e-21,1,8.27703e-21,1,8.27703e-21,1,8.27703e-21,1,8.31308e-21,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,8.27703e-21,1,8.27703e-21,1,8.27703e-21,1,8.64478e-13,1,9.39894e-05,0.999906,1,2.47386e-09,1,4.52506e-15,1,8.27703e-21,1,8.27703e-21\n", "50.835859,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.499518,0.500482,8.36116e-23,1,8.36116e-23,1,8.36116e-23,1,8.36116e-23,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.499518,0.500482,8.36116e-23,1,8.36116e-23,1,8.36116e-23,1,8.36116e-23,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.499518,0.500482,8.36116e-23,1,8.36116e-23,1,8.36116e-23,1,8.36116e-23,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.499518,0.500482,8.36116e-23,1,8.36116e-23,1,8.36116e-23,1,8.36116e-23,1,0.500482,0.499518,0.500482,0.499518,0.500482,0.499518,0.500482,0.499518,0.5,0.5,8.37731e-23,1,8.37731e-23,1,8.37731e-23,1,8.37731e-23,1,1,8.36116e-23,1,8.36116e-23,1,8.36116e-23,1,8.36116e-23,1,8.37731e-23,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,8.36116e-23,1,8.36116e-23,1,8.36116e-23,1,8.36116e-23,1,8.37731e-23,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,8.36116e-23,1,8.36116e-23,1,8.36116e-23,1,8.36116e-23,1,8.37731e-23,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,8.36116e-23,1,8.36116e-23,1,8.36116e-23,1,8.36116e-23,1,8.37731e-23,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,8.36116e-23,1,8.36116e-23,1,8.36116e-23,1,5.57882e-14,1,3.79602e-05,0.999962,1,3.45235e-10,1,1.69899e-16,1,8.36116e-23,1,8.36116e-23\n", "55.890530,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.499806,0.500194,5.33398e-25,1,5.33398e-25,1,5.33398e-25,1,5.33398e-25,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.499806,0.500194,5.33398e-25,1,5.33398e-25,1,5.33398e-25,1,5.33398e-25,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.499806,0.500194,5.33398e-25,1,5.33398e-25,1,5.33398e-25,1,5.33398e-25,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.499806,0.500194,5.33398e-25,1,5.33398e-25,1,5.33398e-25,1,5.33398e-25,1,0.500194,0.499806,0.500194,0.499806,0.500194,0.499806,0.500194,0.499806,0.5,0.5,5.33813e-25,1,5.33813e-25,1,5.33813e-25,1,5.33813e-25,1,1,5.33398e-25,1,5.33398e-25,1,5.33398e-25,1,5.33398e-25,1,5.33813e-25,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,5.33398e-25,1,5.33398e-25,1,5.33398e-25,1,5.33398e-25,1,5.33813e-25,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,5.33398e-25,1,5.33398e-25,1,5.33398e-25,1,5.33398e-25,1,5.33813e-25,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,5.33398e-25,1,5.33398e-25,1,5.33398e-25,1,5.33398e-25,1,5.33813e-25,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,5.33398e-25,1,5.33398e-25,1,5.33398e-25,1,2.71152e-15,1,1.39041e-05,0.999986,1,3.95647e-11,1,4.59388e-18,1,5.33398e-25,1,5.33398e-25\n", "61.450712,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.49993,0.50007,2.05255e-27,1,2.05255e-27,1,2.05255e-27,1,2.05255e-27,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.49993,0.50007,2.05255e-27,1,2.05255e-27,1,2.05255e-27,1,2.05255e-27,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.49993,0.50007,2.05255e-27,1,2.05255e-27,1,2.05255e-27,1,2.05255e-27,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.49993,0.50007,2.05255e-27,1,2.05255e-27,1,2.05255e-27,1,2.05255e-27,1,0.50007,0.49993,0.50007,0.49993,0.50007,0.49993,0.50007,0.49993,0.5,0.5,2.05313e-27,1,2.05313e-27,1,2.05313e-27,1,2.05313e-27,1,1,2.05255e-27,1,2.05255e-27,1,2.05255e-27,1,2.05255e-27,1,2.05313e-27,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,2.05255e-27,1,2.05255e-27,1,2.05255e-27,1,2.05255e-27,1,2.05313e-27,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,2.05255e-27,1,2.05255e-27,1,2.05255e-27,1,2.05255e-27,1,2.05313e-27,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,2.05255e-27,1,2.05255e-27,1,2.05255e-27,1,2.05255e-27,1,2.05313e-27,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,2.05255e-27,1,2.05255e-27,1,2.05255e-27,1,9.68664e-17,1,4.58727e-06,0.999995,1,3.651e-12,1,8.65672e-20,1,2.05255e-27,1,2.05255e-27\n", "67.566928,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.499977,0.500023,4.52956e-30,1,4.52956e-30,1,4.52956e-30,1,4.52956e-30,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.499977,0.500023,4.52956e-30,1,4.52956e-30,1,4.52956e-30,1,4.52956e-30,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.499977,0.500023,4.52956e-30,1,4.52956e-30,1,4.52956e-30,1,4.52956e-30,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.499977,0.500023,4.52956e-30,1,4.52956e-30,1,4.52956e-30,1,4.52956e-30,1,0.500023,0.499977,0.500023,0.499977,0.500023,0.499977,0.500023,0.499977,0.5,0.5,4.52997e-30,1,4.52997e-30,1,4.52997e-30,1,4.52997e-30,1,1,4.52956e-30,1,4.52956e-30,1,4.52956e-30,1,4.52956e-30,1,4.52997e-30,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,4.52956e-30,1,4.52956e-30,1,4.52956e-30,1,4.52956e-30,1,4.52997e-30,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,4.52956e-30,1,4.52956e-30,1,4.52956e-30,1,4.52956e-30,1,4.52997e-30,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,4.52956e-30,1,4.52956e-30,1,4.52956e-30,1,4.52956e-30,1,4.52997e-30,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,4.52956e-30,1,4.52956e-30,1,4.52956e-30,1,2.47289e-18,1,1.35173e-06,0.999999,1,2.65475e-13,1,1.09658e-21,1,4.52956e-30,1,4.52956e-30\n", "74.294770,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.499993,0.500007,5.4224e-33,1,5.4224e-33,1,5.4224e-33,1,5.4224e-33,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.499993,0.500007,5.4224e-33,1,5.4224e-33,1,5.4224e-33,1,5.4224e-33,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.499993,0.500007,5.4224e-33,1,5.4224e-33,1,5.4224e-33,1,5.4224e-33,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.499993,0.500007,5.4224e-33,1,5.4224e-33,1,5.4224e-33,1,5.4224e-33,1,0.500007,0.499993,0.500007,0.499993,0.500007,0.499993,0.500007,0.499993,0.5,0.5,5.42254e-33,1,5.42254e-33,1,5.42254e-33,1,5.42254e-33,1,1,5.4224e-33,1,5.4224e-33,1,5.4224e-33,1,5.4224e-33,1,5.42254e-33,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,5.4224e-33,1,5.4224e-33,1,5.4224e-33,1,5.4224e-33,1,5.42254e-33,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,5.4224e-33,1,5.4224e-33,1,5.4224e-33,1,5.4224e-33,1,5.42254e-33,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,5.4224e-33,1,5.4224e-33,1,5.4224e-33,1,5.4224e-33,1,5.42254e-33,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,5.4224e-33,1,5.4224e-33,1,5.4224e-33,1,4.36898e-20,1,3.52157e-07,1,1,1.48524e-14,1,8.97416e-24,1,5.4224e-33,1,5.4224e-33\n", "81.695397,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.499998,0.500002,3.31238e-36,1,3.31238e-36,1,3.31238e-36,1,3.31238e-36,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.499998,0.500002,3.31238e-36,1,3.31238e-36,1,3.31238e-36,1,3.31238e-36,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.499998,0.500002,3.31238e-36,1,3.31238e-36,1,3.31238e-36,1,3.31238e-36,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.499998,0.500002,3.31238e-36,1,3.31238e-36,1,3.31238e-36,1,3.31238e-36,1,0.500002,0.499998,0.500002,0.499998,0.500002,0.499998,0.500002,0.499998,0.5,0.5,3.3124e-36,1,3.3124e-36,1,3.3124e-36,1,3.3124e-36,1,1,3.31238e-36,1,3.31238e-36,1,3.31238e-36,1,3.31238e-36,1,3.3124e-36,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,3.31238e-36,1,3.31238e-36,1,3.31238e-36,1,3.31238e-36,1,3.3124e-36,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,3.31238e-36,1,3.31238e-36,1,3.31238e-36,1,3.31238e-36,1,3.3124e-36,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,3.31238e-36,1,3.31238e-36,1,3.31238e-36,1,3.31238e-36,1,3.3124e-36,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,3.31238e-36,1,3.31238e-36,1,3.31238e-36,1,5.15284e-22,1,8.01678e-08,1,1,6.22796e-16,1,4.54196e-26,1,3.31238e-36,1,3.31238e-36\n", "89.836086,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,9.65348e-40,1,9.65348e-40,1,9.65348e-40,1,9.65348e-40,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,9.65348e-40,1,9.65348e-40,1,9.65348e-40,1,9.65348e-40,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,9.65348e-40,1,9.65348e-40,1,9.65348e-40,1,9.65348e-40,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,9.65348e-40,1,9.65348e-40,1,9.65348e-40,1,9.65348e-40,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,9.65349e-40,1,9.65349e-40,1,9.65349e-40,1,9.65349e-40,1,1,9.65348e-40,1,9.65348e-40,1,9.65348e-40,1,9.65348e-40,1,9.65349e-40,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,9.65348e-40,1,9.65348e-40,1,9.65348e-40,1,9.65348e-40,1,9.65349e-40,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,9.65348e-40,1,9.65348e-40,1,9.65348e-40,1,9.65348e-40,1,9.65349e-40,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,9.65348e-40,1,9.65348e-40,1,9.65348e-40,1,9.65348e-40,1,9.65349e-40,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,9.65348e-40,1,9.65348e-40,1,9.65348e-40,1,3.89764e-24,1,1.57373e-08,1,1,1.90174e-17,1,1.35493e-28,1,9.65348e-40,1,9.65348e-40\n", "98.790844,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.24647e-43,1,1.24647e-43,1,1.24647e-43,1,1.24647e-43,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.24647e-43,1,1.24647e-43,1,1.24647e-43,1,1.24647e-43,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.24647e-43,1,1.24647e-43,1,1.24647e-43,1,1.24647e-43,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.24647e-43,1,1.24647e-43,1,1.24647e-43,1,1.24647e-43,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.24647e-43,1,1.24647e-43,1,1.24647e-43,1,1.24647e-43,1,1,1.24647e-43,1,1.24647e-43,1,1.24647e-43,1,1.24647e-43,1,1.24647e-43,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,1.24647e-43,1,1.24647e-43,1,1.24647e-43,1,1.24647e-43,1,1.24647e-43,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,1.24647e-43,1,1.24647e-43,1,1.24647e-43,1,1.24647e-43,1,1.24647e-43,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,1.24647e-43,1,1.24647e-43,1,1.24647e-43,1,1.24647e-43,1,1.24647e-43,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.24647e-43,1,1.24647e-43,1,1.24647e-43,1,1.80887e-26,1,2.62503e-09,1,1,4.09671e-19,1,2.25974e-31,1,1.24647e-43,1,1.24647e-43\n", "108.641077,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,6.57324e-48,1,6.57324e-48,1,6.57324e-48,1,6.57324e-48,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,6.57324e-48,1,6.57324e-48,1,6.57324e-48,1,6.57324e-48,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,6.57324e-48,1,6.57324e-48,1,6.57324e-48,1,6.57324e-48,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,6.57324e-48,1,6.57324e-48,1,6.57324e-48,1,6.57324e-48,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,6.57324e-48,1,6.57324e-48,1,6.57324e-48,1,6.57324e-48,1,1,6.57324e-48,1,6.57324e-48,1,6.57324e-48,1,6.57324e-48,1,6.57324e-48,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,6.57324e-48,1,6.57324e-48,1,6.57324e-48,1,6.57324e-48,1,6.57324e-48,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,6.57324e-48,1,6.57324e-48,1,6.57324e-48,1,6.57324e-48,1,6.57324e-48,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,6.57324e-48,1,6.57324e-48,1,6.57324e-48,1,6.57324e-48,1,6.57324e-48,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,6.57324e-48,1,6.57324e-48,1,6.57324e-48,1,4.90532e-29,1,3.66063e-10,1,1,6.01241e-21,1,1.98799e-34,1,6.57324e-48,1,6.57324e-48\n", "119.476334,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.29446e-52,1,1.29446e-52,1,1.29446e-52,1,1.29446e-52,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.29446e-52,1,1.29446e-52,1,1.29446e-52,1,1.29446e-52,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.29446e-52,1,1.29446e-52,1,1.29446e-52,1,1.29446e-52,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.29446e-52,1,1.29446e-52,1,1.29446e-52,1,1.29446e-52,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.29446e-52,1,1.29446e-52,1,1.29446e-52,1,1.29446e-52,1,1,1.29446e-52,1,1.29446e-52,1,1.29446e-52,1,1.29446e-52,1,1.29446e-52,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,1.29446e-52,1,1.29446e-52,1,1.29446e-52,1,1.29446e-52,1,1.29446e-52,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,1.29446e-52,1,1.29446e-52,1,1.29446e-52,1,1.29446e-52,1,1.29446e-52,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,1.29446e-52,1,1.29446e-52,1,1.29446e-52,1,1.29446e-52,1,1.29446e-52,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.29446e-52,1,1.29446e-52,1,1.29446e-52,1,7.36635e-32,1,4.19196e-11,1,1,5.78526e-23,1,8.65377e-38,1,1.29446e-52,1,1.29446e-52\n", "131.395117,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,8.62633e-58,1,8.62633e-58,1,8.62633e-58,1,8.62633e-58,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,8.62633e-58,1,8.62633e-58,1,8.62633e-58,1,8.62633e-58,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,8.62633e-58,1,8.62633e-58,1,8.62633e-58,1,8.62633e-58,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,8.62633e-58,1,8.62633e-58,1,8.62633e-58,1,8.62633e-58,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,8.62633e-58,1,8.62633e-58,1,8.62633e-58,1,8.62633e-58,1,1,8.62633e-58,1,8.62633e-58,1,8.62633e-58,1,8.62633e-58,1,8.62633e-58,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,8.62633e-58,1,8.62633e-58,1,8.62633e-58,1,8.62633e-58,1,8.62633e-58,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,8.62633e-58,1,8.62633e-58,1,8.62633e-58,1,8.62633e-58,1,8.62633e-58,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,8.62633e-58,1,8.62633e-58,1,8.62633e-58,1,8.62633e-58,1,8.62633e-58,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,8.62633e-58,1,8.62633e-58,1,8.62633e-58,1,5.77425e-35,1,3.86514e-12,1,1,3.49885e-25,1,1.7373e-41,1,8.62633e-58,1,8.62633e-58\n", "144.505777,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.74557e-63,1,1.74557e-63,1,1.74557e-63,1,1.74557e-63,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.74557e-63,1,1.74557e-63,1,1.74557e-63,1,1.74557e-63,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.74557e-63,1,1.74557e-63,1,1.74557e-63,1,1.74557e-63,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.74557e-63,1,1.74557e-63,1,1.74557e-63,1,1.74557e-63,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.74557e-63,1,1.74557e-63,1,1.74557e-63,1,1.74557e-63,1,1,1.74557e-63,1,1.74557e-63,1,1.74557e-63,1,1.74557e-63,1,1.74557e-63,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,1.74557e-63,1,1.74557e-63,1,1.74557e-63,1,1.74557e-63,1,1.74557e-63,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,1.74557e-63,1,1.74557e-63,1,1.74557e-63,1,1.74557e-63,1,1.74557e-63,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,1.74557e-63,1,1.74557e-63,1,1.74557e-63,1,1.74557e-63,1,1.74557e-63,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.74557e-63,1,1.74557e-63,1,1.74557e-63,1,2.21393e-38,1,2.80794e-13,1,1,1.26966e-27,1,1.48872e-45,1,1.74557e-63,1,1.74557e-63\n", "158.927504,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,9.52055e-70,1,9.52055e-70,1,9.52055e-70,1,9.52055e-70,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,9.52055e-70,1,9.52055e-70,1,9.52055e-70,1,9.52055e-70,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,9.52055e-70,1,9.52055e-70,1,9.52055e-70,1,9.52055e-70,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,9.52055e-70,1,9.52055e-70,1,9.52055e-70,1,9.52055e-70,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,9.52055e-70,1,9.52055e-70,1,9.52055e-70,1,9.52055e-70,1,1,9.52055e-70,1,9.52055e-70,1,9.52055e-70,1,9.52055e-70,1,9.52055e-70,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,9.52055e-70,1,9.52055e-70,1,9.52055e-70,1,9.52055e-70,1,9.52055e-70,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,9.52055e-70,1,9.52055e-70,1,9.52055e-70,1,9.52055e-70,1,9.52055e-70,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,9.52055e-70,1,9.52055e-70,1,9.52055e-70,1,9.52055e-70,1,9.52055e-70,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,9.52055e-70,1,9.52055e-70,1,9.52055e-70,1,3.86542e-42,1,1.5694e-14,1,1,2.6268e-30,1,5.00085e-50,1,9.52055e-70,1,9.52055e-70\n", "174.791404,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.2276e-76,1,1.2276e-76,1,1.2276e-76,1,1.2276e-76,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.2276e-76,1,1.2276e-76,1,1.2276e-76,1,1.2276e-76,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.2276e-76,1,1.2276e-76,1,1.2276e-76,1,1.2276e-76,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.2276e-76,1,1.2276e-76,1,1.2276e-76,1,1.2276e-76,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.2276e-76,1,1.2276e-76,1,1.2276e-76,1,1.2276e-76,1,1,1.2276e-76,1,1.2276e-76,1,1.2276e-76,1,1.2276e-76,1,1.2276e-76,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,1.2276e-76,1,1.2276e-76,1,1.2276e-76,1,1.2276e-76,1,1.2276e-76,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,1.2276e-76,1,1.2276e-76,1,1.2276e-76,1,1.2276e-76,1,1.2276e-76,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,1.2276e-76,1,1.2276e-76,1,1.2276e-76,1,1.2276e-76,1,1.2276e-76,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.2276e-76,1,1.2276e-76,1,1.2276e-76,1,2.84076e-46,1,6.57373e-16,1,1,2.92913e-33,1,5.99651e-55,1,1.2276e-76,1,1.2276e-76\n", "192.241694,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,3.23961e-84,1,3.23961e-84,1,3.23961e-84,1,3.23961e-84,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,3.23961e-84,1,3.23961e-84,1,3.23961e-84,1,3.23961e-84,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,3.23961e-84,1,3.23961e-84,1,3.23961e-84,1,3.23961e-84,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,3.23961e-84,1,3.23961e-84,1,3.23961e-84,1,3.23961e-84,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,3.23961e-84,1,3.23961e-84,1,3.23961e-84,1,3.23961e-84,1,1,3.23961e-84,1,3.23961e-84,1,3.23961e-84,1,3.23961e-84,1,3.23961e-84,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,3.23961e-84,1,3.23961e-84,1,3.23961e-84,1,3.23961e-84,1,3.23961e-84,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,3.23961e-84,1,3.23961e-84,1,3.23961e-84,1,3.23961e-84,1,3.23961e-84,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,3.23961e-84,1,3.23961e-84,1,3.23961e-84,1,3.23961e-84,1,3.23961e-84,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,3.23961e-84,1,3.23961e-84,1,3.23961e-84,1,8.05928e-51,1,2.00493e-17,1,1,1.65494e-36,1,2.31546e-60,1,3.23961e-84,1,3.23961e-84\n", "211.437012,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.49304e-92,1,1.49304e-92,1,1.49304e-92,1,1.49304e-92,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.49304e-92,1,1.49304e-92,1,1.49304e-92,1,1.49304e-92,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.49304e-92,1,1.49304e-92,1,1.49304e-92,1,1.49304e-92,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.49304e-92,1,1.49304e-92,1,1.49304e-92,1,1.49304e-92,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.49304e-92,1,1.49304e-92,1,1.49304e-92,1,1.49304e-92,1,1,1.49304e-92,1,1.49304e-92,1,1.49304e-92,1,1.49304e-92,1,1.49304e-92,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,1.49304e-92,1,1.49304e-92,1,1.49304e-92,1,1.49304e-92,1,1.49304e-92,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,1.49304e-92,1,1.49304e-92,1,1.49304e-92,1,1.49304e-92,1,1.49304e-92,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,1.49304e-92,1,1.49304e-92,1,1.49304e-92,1,1.49304e-92,1,1.49304e-92,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.49304e-92,1,1.49304e-92,1,1.49304e-92,1,8.02497e-56,1,4.31335e-19,1,1,4.4262e-40,1,2.5707e-66,1,1.49304e-92,1,1.49304e-92\n", "232.551862,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.00927e-101,1,1.00927e-101,1,1.00927e-101,1,1.00927e-101,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.00927e-101,1,1.00927e-101,1,1.00927e-101,1,1.00927e-101,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.00927e-101,1,1.00927e-101,1,1.00927e-101,1,1.00927e-101,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.00927e-101,1,1.00927e-101,1,1.00927e-101,1,1.00927e-101,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.00927e-101,1,1.00927e-101,1,1.00927e-101,1,1.00927e-101,1,1,1.00927e-101,1,1.00927e-101,1,1.00927e-101,1,1.00927e-101,1,1.00927e-101,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,1.00927e-101,1,1.00927e-101,1,1.00927e-101,1,1.00927e-101,1,1.00927e-101,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,1.00927e-101,1,1.00927e-101,1,1.00927e-101,1,1.00927e-101,1,1.00927e-101,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,1.00927e-101,1,1.00927e-101,1,1.00927e-101,1,1.00927e-101,1,1.00927e-101,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.00927e-101,1,1.00927e-101,1,1.00927e-101,1,2.52584e-61,1,6.32123e-21,1,1,5.20001e-44,1,7.24447e-73,1,1.00927e-101,1,1.00927e-101\n", "255.778198,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,8.25924e-112,1,8.25924e-112,1,8.25924e-112,1,8.25924e-112,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,8.25924e-112,1,8.25924e-112,1,8.25924e-112,1,8.25924e-112,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,8.25924e-112,1,8.25924e-112,1,8.25924e-112,1,8.25924e-112,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,8.25924e-112,1,8.25924e-112,1,8.25924e-112,1,8.25924e-112,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,8.25924e-112,1,8.25924e-112,1,8.25924e-112,1,8.25924e-112,1,1,8.25924e-112,1,8.25924e-112,1,8.25924e-112,1,8.25924e-112,1,8.25924e-112,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,8.25924e-112,1,8.25924e-112,1,8.25924e-112,1,8.25924e-112,1,8.25924e-112,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,8.25924e-112,1,8.25924e-112,1,8.25924e-112,1,8.25924e-112,1,8.25924e-112,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,8.25924e-112,1,8.25924e-112,1,8.25924e-112,1,8.25924e-112,1,8.25924e-112,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,8.25924e-112,1,8.25924e-112,1,8.25924e-112,1,2.23957e-67,1,6.07279e-23,1,1,2.47158e-48,1,4.51811e-80,1,8.25924e-112,1,8.25924e-112\n", "281.327167,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,6.62466e-123,1,6.62466e-123,1,6.62466e-123,1,6.62466e-123,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,6.62466e-123,1,6.62466e-123,1,6.62466e-123,1,6.62466e-123,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,6.62466e-123,1,6.62466e-123,1,6.62466e-123,1,6.62466e-123,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,6.62466e-123,1,6.62466e-123,1,6.62466e-123,1,6.62466e-123,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,6.62466e-123,1,6.62466e-123,1,6.62466e-123,1,6.62466e-123,1,1,6.62466e-123,1,6.62466e-123,1,6.62466e-123,1,6.62466e-123,1,6.62466e-123,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,6.62466e-123,1,6.62466e-123,1,6.62466e-123,1,6.62466e-123,1,6.62466e-123,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,6.62466e-123,1,6.62466e-123,1,6.62466e-123,1,6.62466e-123,1,6.62466e-123,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,6.62466e-123,1,6.62466e-123,1,6.62466e-123,1,6.62466e-123,1,6.62466e-123,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,6.62466e-123,1,6.62466e-123,1,6.62466e-123,1,4.92831e-74,1,3.66634e-25,1,1,4.34152e-53,1,5.36294e-88,1,6.62466e-123,1,6.62466e-123\n", "309.431033,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,4.12867e-135,1,4.12867e-135,1,4.12867e-135,1,4.12867e-135,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,4.12867e-135,1,4.12867e-135,1,4.12867e-135,1,4.12867e-135,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,4.12867e-135,1,4.12867e-135,1,4.12867e-135,1,4.12867e-135,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,4.12867e-135,1,4.12867e-135,1,4.12867e-135,1,4.12867e-135,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,4.12867e-135,1,4.12867e-135,1,4.12867e-135,1,4.12867e-135,1,1,4.12867e-135,1,4.12867e-135,1,4.12867e-135,1,4.12867e-135,1,4.12867e-135,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,4.12867e-135,1,4.12867e-135,1,4.12867e-135,1,4.12867e-135,1,4.12867e-135,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,4.12867e-135,1,4.12867e-135,1,4.12867e-135,1,4.12867e-135,1,4.12867e-135,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,4.12867e-135,1,4.12867e-135,1,4.12867e-135,1,4.12867e-135,1,4.12867e-135,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,4.12867e-135,1,4.12867e-135,1,4.12867e-135,1,2.34146e-81,1,1.32789e-27,1,1,2.55138e-58,1,1.02634e-96,1,4.12867e-135,1,4.12867e-135\n", "340.345285,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.54853e-148,1,1.54853e-148,1,1.54853e-148,1,1.54853e-148,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.54853e-148,1,1.54853e-148,1,1.54853e-148,1,1.54853e-148,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.54853e-148,1,1.54853e-148,1,1.54853e-148,1,1.54853e-148,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.54853e-148,1,1.54853e-148,1,1.54853e-148,1,1.54853e-148,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.54853e-148,1,1.54853e-148,1,1.54853e-148,1,1.54853e-148,1,1,1.54853e-148,1,1.54853e-148,1,1.54853e-148,1,1.54853e-148,1,1.54853e-148,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,1.54853e-148,1,1.54853e-148,1,1.54853e-148,1,1.54853e-148,1,1.54853e-148,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,1.54853e-148,1,1.54853e-148,1,1.54853e-148,1,1.54853e-148,1,1.54853e-148,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,1.54853e-148,1,1.54853e-148,1,1.54853e-148,1,1.54853e-148,1,1.54853e-148,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.54853e-148,1,1.54853e-148,1,1.54853e-148,1,2.0604e-89,1,2.74147e-30,1,1,4.49597e-64,1,2.63859e-106,1,1.54853e-148,1,1.54853e-148\n", "374.350963,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,2.63902e-163,1,2.63902e-163,1,2.63902e-163,1,2.63902e-163,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,2.63902e-163,1,2.63902e-163,1,2.63902e-163,1,2.63902e-163,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,2.63902e-163,1,2.63902e-163,1,2.63902e-163,1,2.63902e-163,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,2.63902e-163,1,2.63902e-163,1,2.63902e-163,1,2.63902e-163,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,2.63902e-163,1,2.63902e-163,1,2.63902e-163,1,2.63902e-163,1,1,2.63902e-163,1,2.63902e-163,1,2.63902e-163,1,2.63902e-163,1,2.63902e-163,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,2.63902e-163,1,2.63902e-163,1,2.63902e-163,1,2.63902e-163,1,2.63902e-163,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,2.63902e-163,1,2.63902e-163,1,2.63902e-163,1,2.63902e-163,1,2.63902e-163,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,2.63902e-163,1,2.63902e-163,1,2.63902e-163,1,2.63902e-163,1,2.63902e-163,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,2.63902e-163,1,2.63902e-163,1,2.63902e-163,1,2.83704e-98,1,3.04992e-33,1,1,2.10608e-70,1,7.45519e-117,1,2.63902e-163,1,2.63902e-163\n", "411.757208,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.50009e-179,1,1.50009e-179,1,1.50009e-179,1,1.50009e-179,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.50009e-179,1,1.50009e-179,1,1.50009e-179,1,1.50009e-179,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.50009e-179,1,1.50009e-179,1,1.50009e-179,1,1.50009e-179,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.50009e-179,1,1.50009e-179,1,1.50009e-179,1,1.50009e-179,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.50009e-179,1,1.50009e-179,1,1.50009e-179,1,1.50009e-179,1,1,1.50009e-179,1,1.50009e-179,1,1.50009e-179,1,1.50009e-179,1,1.50009e-179,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,1.50009e-179,1,1.50009e-179,1,1.50009e-179,1,1.50009e-179,1,1.50009e-179,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,1.50009e-179,1,1.50009e-179,1,1.50009e-179,1,1.50009e-179,1,1.50009e-179,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,1.50009e-179,1,1.50009e-179,1,1.50009e-179,1,1.50009e-179,1,1.50009e-179,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.50009e-179,1,1.50009e-179,1,1.50009e-179,1,5.07773e-108,1,1.71879e-36,1,1,2.29717e-77,1,1.85633e-128,1,1.50009e-179,1,1.50009e-179\n", "452.904078,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,2.02422e-197,1,2.02422e-197,1,2.02422e-197,1,2.02422e-197,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,2.02422e-197,1,2.02422e-197,1,2.02422e-197,1,2.02422e-197,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,2.02422e-197,1,2.02422e-197,1,2.02422e-197,1,2.02422e-197,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,2.02422e-197,1,2.02422e-197,1,2.02422e-197,1,2.02422e-197,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,2.02422e-197,1,2.02422e-197,1,2.02422e-197,1,2.02422e-197,1,1,2.02422e-197,1,2.02422e-197,1,2.02422e-197,1,2.02422e-197,1,2.02422e-197,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,2.02422e-197,1,2.02422e-197,1,2.02422e-197,1,2.02422e-197,1,2.02422e-197,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,2.02422e-197,1,2.02422e-197,1,2.02422e-197,1,2.02422e-197,1,2.02422e-197,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,2.02422e-197,1,2.02422e-197,1,2.02422e-197,1,2.02422e-197,1,2.02422e-197,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,2.02422e-197,1,2.02422e-197,1,2.02422e-197,1,9.63285e-119,1,4.58407e-40,1,1,5.04292e-85,1,3.19499e-141,1,2.02422e-197,1,2.02422e-197\n", "498.165635,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,4.46081e-217,1,4.46081e-217,1,4.46081e-217,1,4.46081e-217,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,4.46081e-217,1,4.46081e-217,1,4.46081e-217,1,4.46081e-217,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,4.46081e-217,1,4.46081e-217,1,4.46081e-217,1,4.46081e-217,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,4.46081e-217,1,4.46081e-217,1,4.46081e-217,1,4.46081e-217,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,4.46081e-217,1,4.46081e-217,1,4.46081e-217,1,4.46081e-217,1,1,4.46081e-217,1,4.46081e-217,1,4.46081e-217,1,4.46081e-217,1,4.46081e-217,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,4.46081e-217,1,4.46081e-217,1,4.46081e-217,1,4.46081e-217,1,4.46081e-217,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,4.46081e-217,1,4.46081e-217,1,4.46081e-217,1,4.46081e-217,1,4.46081e-217,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,4.46081e-217,1,4.46081e-217,1,4.46081e-217,1,4.46081e-217,1,4.46081e-217,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,4.46081e-217,1,4.46081e-217,1,4.46081e-217,1,1.54756e-130,1,5.36887e-44,1,1,1.8981e-93,1,2.90982e-155,1,4.46081e-217,1,4.46081e-217\n", "547.953348,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.06386e-238,1,1.06386e-238,1,1.06386e-238,1,1.06386e-238,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.06386e-238,1,1.06386e-238,1,1.06386e-238,1,1.06386e-238,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.06386e-238,1,1.06386e-238,1,1.06386e-238,1,1.06386e-238,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.06386e-238,1,1.06386e-238,1,1.06386e-238,1,1.06386e-238,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.06386e-238,1,1.06386e-238,1,1.06386e-238,1,1.06386e-238,1,1,1.06386e-238,1,1.06386e-238,1,1.06386e-238,1,1.06386e-238,1,1.06386e-238,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,1.06386e-238,1,1.06386e-238,1,1.06386e-238,1,1.06386e-238,1,1.06386e-238,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,1.06386e-238,1,1.06386e-238,1,1.06386e-238,1,1.06386e-238,1,1.06386e-238,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,1.06386e-238,1,1.06386e-238,1,1.06386e-238,1,1.06386e-238,1,1.06386e-238,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.06386e-238,1,1.06386e-238,1,1.06386e-238,1,1.64487e-143,1,2.54318e-48,1,1,1.02689e-102,1,1.04521e-170,1,1.06386e-238,1,1.06386e-238\n", "602.719832,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.74624e-262,1,1.74624e-262,1,1.74624e-262,1,1.74624e-262,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.74624e-262,1,1.74624e-262,1,1.74624e-262,1,1.74624e-262,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.74624e-262,1,1.74624e-262,1,1.74624e-262,1,1.74624e-262,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.74624e-262,1,1.74624e-262,1,1.74624e-262,1,1.74624e-262,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.74624e-262,1,1.74624e-262,1,1.74624e-262,1,1.74624e-262,1,1,1.74624e-262,1,1.74624e-262,1,1.74624e-262,1,1.74624e-262,1,1.74624e-262,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,1.74624e-262,1,1.74624e-262,1,1.74624e-262,1,1.74624e-262,1,1.74624e-262,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,1.74624e-262,1,1.74624e-262,1,1.74624e-262,1,1.74624e-262,1,1.74624e-262,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,1.74624e-262,1,1.74624e-262,1,1.74624e-262,1,1.74624e-262,1,1.74624e-262,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.74624e-262,1,1.74624e-262,1,1.74624e-262,1,8.8158e-158,1,4.45062e-53,1,1,6.57725e-113,1,1.0717e-187,1,1.74624e-262,1,1.74624e-262\n", "662.962965,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.19907e-288,1,1.19907e-288,1,1.19907e-288,1,1.19907e-288,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.19907e-288,1,1.19907e-288,1,1.19907e-288,1,1.19907e-288,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.19907e-288,1,1.19907e-288,1,1.19907e-288,1,1.19907e-288,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.19907e-288,1,1.19907e-288,1,1.19907e-288,1,1.19907e-288,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.19907e-288,1,1.19907e-288,1,1.19907e-288,1,1.19907e-288,1,1,1.19907e-288,1,1.19907e-288,1,1.19907e-288,1,1.19907e-288,1,1.19907e-288,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,1.19907e-288,1,1.19907e-288,1,1.19907e-288,1,1.19907e-288,1,1.19907e-288,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,1.19907e-288,1,1.19907e-288,1,1.19907e-288,1,1.19907e-288,1,1.19907e-288,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,1.19907e-288,1,1.19907e-288,1,1.19907e-288,1,1.19907e-288,1,1.19907e-288,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.19907e-288,1,1.19907e-288,1,1.19907e-288,1,1.76728e-173,1,2.60477e-58,1,1,4.0292e-124,1,2.19801e-206,1,1.19907e-288,1,1.19907e-288\n", "729.230410,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.99185e-317,1,1.99185e-317,1,1.99185e-317,1,1.99185e-317,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.99185e-317,1,1.99185e-317,1,1.99185e-317,1,1.99185e-317,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.99185e-317,1,1.99185e-317,1,1.99185e-317,1,1.99185e-317,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.99185e-317,1,1.99185e-317,1,1.99185e-317,1,1.99185e-317,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.99185e-317,1,1.99185e-317,1,1.99185e-317,1,1.99185e-317,1,1,1.99185e-317,1,1.99185e-317,1,1.99185e-317,1,1.99185e-317,1,1.99185e-317,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,1.99185e-317,1,1.99185e-317,1,1.99185e-317,1,1.99185e-317,1,1.99185e-317,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,1.99185e-317,1,1.99185e-317,1,1.99185e-317,1,1.99185e-317,1,1.99185e-317,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,1.99185e-317,1,1.99185e-317,1,1.99185e-317,1,1.99185e-317,1,1.99185e-317,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.99185e-317,1,1.99185e-317,1,1.99185e-317,1,9.54013e-191,1,4.56932e-64,1,1,1.86685e-136,1,6.09794e-227,1,1.99185e-317,1,1.99185e-317\n", "802.124600,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,9.66112e-210,1,2.12982e-70,1,1,5.05348e-150,1,1.48817e-249,1,0,1,0\n", "882.308210,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,1.23324e-230,1,2.31038e-77,1,1,6.01617e-165,1,1.99006e-274,1,0,1,0\n", "970.510180,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,1.28136e-253,1,5.04147e-85,1,1,2.30474e-181,1,8.66369e-302,1,0,1,0\n", "1067.532347,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,6.69816e-279,1,1.88503e-93,1,1,2.0149e-199,1,0,1,0,1,0\n", "1174.256731,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,1.03769e-306,1,1.01241e-102,1,1,2.75454e-219,1,0,1,0,1,0\n", "1291.653553,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,6.43277e-113,1,1,3.88529e-241,1,0,1,0,1,0\n", "1420.790058,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,3.9061e-124,1,1,3.57879e-265,1,0,1,0,1,0\n", "1562.840213,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1.79235e-136,1,1,1.30161e-291,1,0,1,0,1,0\n", "1719.095383,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,4.80034e-150,1,1,1.07459e-320,1,0,1,0,1,0\n", "1890.976071,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,5.64814e-165,1,1,0,1,0,1,0,1,0\n", "2080.044827,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,2.136e-181,1,1,0,1,0,1,0,1,0\n", "2288.020459,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1.84106e-199,1,1,0,1,0,1,0,1,0\n", "2516.793654,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,2.47788e-219,1,1,0,1,0,1,0,1,0\n", "2768.444168,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,3.43554e-241,1,1,0,1,0,1,0,1,0\n", "3045.259735,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,3.10528e-265,1,1,0,1,0,1,0,1,0\n", "3349.756857,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1.10616e-291,1,1,0,1,0,1,0,1,0\n", "3684.703692,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,8.92777e-321,1,1,0,1,0,1,0,1,0\n", "4053.145210,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "4458.430881,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "4904.245118,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "5394.640779,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "5934.076006,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "6527.454756,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "7180.171381,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "7898.159668,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "8687.946784,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "9556.712611,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "10512.355022,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "11563.561673,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "12719.888990,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "13991.849038,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "15391.005091,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "16930.076749,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "18623.055573,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "20485.332279,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "22533.836657,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "24787.191471,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "27265.881768,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "29992.441094,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "32991.656352,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "36290.793137,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "39919.843600,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "43911.799109,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "48302.950169,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "53133.216335,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "58446.509118,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "64291.131179,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "70720.215446,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "77792.208139,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "85571.400102,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "94128.511262,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "103541.333537,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "113895.438040,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "125284.952993,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "137813.419442,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "151594.732535,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "166754.176938,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "183429.565781,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "201772.493508,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "221949.714008,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "244144.656558,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "268559.093363,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "295414.973849,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "324956.442383,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "357452.057770,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "393197.234697,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "432516.929315,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "475768.593396,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "523345.423885,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "575679.937423,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "633247.902314,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "696572.663695,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "766229.901213,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "842852.862484,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "927138.119881,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n", "1019851.903019,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0\n" ] } ], "source": [ "!gambit-logit extensive9x9.efg" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": true }, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 2", "language": "python", "name": "python2" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 2 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython2", "version": "2.7.11" } }, "nbformat": 4, "nbformat_minor": 0 }