← Back to team overview

yade-dev team mailing list archive

[Branch ~yade-pkg/yade/git-trunk] Rev 3605: Ning Guo's FEMxDEM package added to trunk

 

------------------------------------------------------------
revno: 3605
author: Ning GUO <ceguo@xxxxxxxxxxxxxx>
committer: Bruno Chareyre <bruno.chareyre@xxxxxxxxxxx>
timestamp: Tue 2015-03-03 20:06:49 +0100
message:
  Ning Guo's FEMxDEM package added to trunk
added:
  examples/FEMxDEM/
  examples/FEMxDEM/biaxialSmooth.py
  examples/FEMxDEM/footing.msh
  examples/FEMxDEM/footing.py
  examples/FEMxDEM/readme
  examples/FEMxDEM/retainingSmooth.py
  examples/FEMxDEM/triaxialRough.py
  examples/FEMxDEM/undrain.py
  py/FEMxDEM/
  py/FEMxDEM/mpipool.py
  py/FEMxDEM/msFEM2D.py
  py/FEMxDEM/msFEM3D.py
  py/FEMxDEM/msFEMup.py
  py/FEMxDEM/saveGauss.py
  py/FEMxDEM/simDEM.py
modified:
  pkg/dem/Shop.hpp
  pkg/dem/Shop_02.cpp
  py/CMakeLists.txt
  py/_utils.cpp


--
lp:yade
https://code.launchpad.net/~yade-pkg/yade/git-trunk

Your team Yade developers is subscribed to branch lp:yade.
To unsubscribe from this branch go to https://code.launchpad.net/~yade-pkg/yade/git-trunk/+edit-subscription
=== added directory 'examples/FEMxDEM'
=== added file 'examples/FEMxDEM/biaxialSmooth.py'
--- examples/FEMxDEM/biaxialSmooth.py	1970-01-01 00:00:00 +0000
+++ examples/FEMxDEM/biaxialSmooth.py	2015-03-03 19:06:49 +0000
@@ -0,0 +1,82 @@
+""" Author: Ning Guo <ceguo@xxxxxxxxxxxxxx>
+    run `mv biaxialSmooth.yade.gz 0.yade.gz`
+    to generate initial RVE packing
+"""
+from esys.escript import *
+from esys.finley import Rectangle
+from esys.weipa import saveVTK
+from esys.escript.pdetools import Projector
+from msFEM2D import MultiScale
+from saveGauss import saveGauss2D
+import time
+
+vel = -0.0001; confining=-1.e5;
+lx = 0.05; ly = 0.1; # sample size, 50mm by 100mm
+nx = 8; ny = 16; # sample discretization, 8 by 16 quadrilateral elements
+mydomain = Rectangle(l0=lx,l1=ly,n0=nx,n1=ny,order=2,integrationOrder=2)
+dim = mydomain.getDim()
+k = kronecker(mydomain)
+numg = 4*nx*ny; # number of Gauss points, 4 GP each element (reduced integration)
+nump = 16; # number of processes for multiprocessing
+
+prob = MultiScale(domain=mydomain,ng=numg,np=nump,random=False,rtol=1e-2,usePert=False,pert=-2.e-5,verbose=True)
+
+disp = Vector(0.,Solution(mydomain))
+
+t=0
+
+stress = prob.getCurrentStress() # initial stress
+proj = Projector(mydomain)
+sig = proj(stress) # project Gauss point value to nodal value
+sig_bounda = interpolate(sig,FunctionOnBoundary(mydomain)) # interpolate
+traction = matrix_mult(sig_bounda,mydomain.getNormal()) # boundary traction
+x = mydomain.getX() # nodal coordinate
+bx = FunctionOnBoundary(mydomain).getX()
+topSurf = whereZero(bx[1]-sup(bx[1]))
+tractTop = traction*topSurf # traction at top surface
+forceTop = integrate(tractTop,where=FunctionOnBoundary(mydomain)) # resultant force at top
+lengthTop = integrate(topSurf,where=FunctionOnBoundary(mydomain)) # length of top surface
+fout=file('./result/biaxial_surf.dat','w')
+fout.write('0 '+str(forceTop[1])+' '+str(lengthTop)+'\n')
+# Dirichlet BC positions, smooth at bottom and top, fixed at the center of bottom
+Dbc = whereZero(x[1])*[0,1]+whereZero(x[1]-ly)*[0,1]+whereZero(x[1])*whereZero(x[0]-.5*lx)*[1,1]
+# Dirichlet BC values
+Vbc = whereZero(x[1])*[0,0]+whereZero(x[1]-ly)*[0,vel]+whereZero(x[1])*whereZero(x[0]-.5*lx)*[0,0]
+# Neumann BC, constant confining pressure
+Nbc = whereZero(bx[0])*[-confining,0]+whereZero(bx[0]-lx)*[confining,0]
+
+time_start = time.time()
+while t < 100: # apply 100 load steps
+
+   prob.initialize(f=Nbc, specified_u_mask=Dbc, specified_u_val=Vbc) # initialize BC
+   t += 1
+   du=prob.solve(iter_max=100) # get solution: nodal displacement
+
+   disp += du
+   stress=prob.getCurrentStress()
+   
+   dom = prob.getDomain() # domain is updated Lagrangian formulation
+   proj = Projector(dom)
+   sig = proj(stress)
+
+   sig_bounda = interpolate(sig,FunctionOnBoundary(dom))
+   traction = matrix_mult(sig_bounda,dom.getNormal())
+   tractTop = traction*topSurf
+   forceTop = integrate(tractTop,where=FunctionOnBoundary(dom))
+   lengthTop = integrate(topSurf,where=FunctionOnBoundary(dom))
+   fout.write(str(t*vel/ly)+' '+str(forceTop[1])+' '+str(lengthTop)+'\n')
+      
+   vR=prob.getLocalVoidRatio()
+   fabric=prob.getLocalFabric()
+   strain = prob.getCurrentStrain()
+   saveGauss2D(name='./result/gauss/time_'+str(t)+'.dat',strain=strain,stress=stress,fabric=fabric)
+   volume_strain = trace(strain)
+   dev_strain = symmetric(strain) - volume_strain*k/dim
+   shear = sqrt(2*inner(dev_strain,dev_strain))
+   saveVTK("./result/vtk/biaxialSmooth_%d.vtu"%t,disp=disp,shear=shear,e=vR)
+
+prob.getCurrentPacking(pos=(),time=t,prefix='./result/packing/')
+time_elapse = time.time() - time_start
+fout.write("#Elapsed time in hours: "+str(time_elapse/3600.)+'\n')   
+fout.close()
+prob.exitSimulation()

=== added file 'examples/FEMxDEM/footing.msh'
--- examples/FEMxDEM/footing.msh	1970-01-01 00:00:00 +0000
+++ examples/FEMxDEM/footing.msh	2015-03-03 19:06:49 +0000
@@ -0,0 +1,7894 @@
+$MeshFormat
+2.2 0 8
+$EndMeshFormat
+$Nodes
+5151
+1 0 0 0
+2 0.4 0 0
+3 0.6 0 0
+4 0.6 -0.3 0
+5 0.6 -0.4 0
+6 0.4 -0.4 0
+7 0 -0.4 0
+8 0 -0.3 0
+9 0.4 -0.3 0
+10 0.009999999999981926 0 0
+11 0.01999999999996121 0 0
+12 0.02999999999994401 0 0
+13 0.03999999999992994 0 0
+14 0.04999999999991424 0 0
+15 0.05999999999988688 0 0
+16 0.06999999999985819 0 0
+17 0.07999999999982406 0 0
+18 0.08999999999979536 0 0
+19 0.09999999999976666 0 0
+20 0.109999999999738 0 0
+21 0.1199999999997092 0 0
+22 0.1299999999996806 0 0
+23 0.1399999999996519 0 0
+24 0.1499999999996177 0 0
+25 0.1599999999995836 0 0
+26 0.1699999999995549 0 0
+27 0.1799999999995262 0 0
+28 0.1899999999994975 0 0
+29 0.1999999999994742 0 0
+30 0.2099999999994975 0 0
+31 0.2199999999995209 0 0
+32 0.2299999999995495 0 0
+33 0.2399999999995772 0 0
+34 0.2499999999996016 0 0
+35 0.2599999999996346 0 0
+36 0.2699999999996558 0 0
+37 0.2799999999996791 0 0
+38 0.2899999999997154 0 0
+39 0.2999999999997344 0 0
+40 0.3099999999997534 0 0
+41 0.3199999999997897 0 0
+42 0.329999999999813 0 0
+43 0.3399999999998342 0 0
+44 0.3499999999998726 0 0
+45 0.3599999999998915 0 0
+46 0.3699999999999171 0 0
+47 0.3799999999999512 0 0
+48 0.3899999999999702 0 0
+49 0.004999999999990909 0 0
+50 0.01499999999997217 0 0
+51 0.02499999999995107 0 0
+52 0.0349999999999371 0 0
+53 0.04499999999992209 0 0
+54 0.05499999999990055 0 0
+55 0.06499999999987254 0 0
+56 0.07499999999984112 0 0
+57 0.08499999999980971 0 0
+58 0.09499999999978101 0 0
+59 0.1049999999997523 0 0
+60 0.1149999999997236 0 0
+61 0.1249999999996949 0 0
+62 0.1349999999996662 0 0
+63 0.1449999999996348 0 0
+64 0.1549999999996007 0 0
+65 0.1649999999995692 0 0
+66 0.1749999999995406 0 0
+67 0.1849999999995118 0 0
+68 0.1949999999994858 0 0
+69 0.2049999999994868 0 0
+70 0.2149999999995101 0 0
+71 0.2249999999995359 0 0
+72 0.2349999999995654 0 0
+73 0.2449999999995872 0 0
+74 0.2549999999996123 0 0
+75 0.264999999999644 0 0
+76 0.2749999999996651 0 0
+77 0.2849999999996972 0 0
+78 0.2949999999997259 0 0
+79 0.304999999999745 0 0
+80 0.3149999999997689 0 0
+81 0.3249999999998006 0 0
+82 0.3349999999998253 0 0
+83 0.3449999999998541 0 0
+84 0.3549999999998833 0 0
+85 0.3649999999999043 0 0
+86 0.3749999999999331 0 0
+87 0.3849999999999645 0 0
+88 0.3949999999999845 0 0
+89 0.4159009150359435 0 0
+90 0.4325968757860914 0 0
+91 0.4501276345236667 0 0
+92 0.4685349312246211 0 0
+93 0.4878625928296997 0 0
+94 0.5081566374754983 0 0
+95 0.5294653843060497 0 0
+96 0.5518395685067007 0 0
+97 0.5753324619453916 0 0
+98 0.4079504575179699 0 0
+99 0.4242488954110194 0 0
+100 0.441362255154879 0 0
+101 0.4593312828741439 0 0
+102 0.4781987620271604 0 0
+103 0.4980096151525677 0 0
+104 0.5188110108907593 0 0
+105 0.5406524764064075 0 0
+106 0.5635860152260457 0 0
+107 0.5876662309727014 0 0
+108 0.009999999999981926 -0.3 0
+109 0.01999999999996121 -0.3 0
+110 0.02999999999994401 -0.3 0
+111 0.03999999999992994 -0.3 0
+112 0.04999999999991424 -0.3 0
+113 0.05999999999988688 -0.3 0
+114 0.06999999999985819 -0.3 0
+115 0.07999999999982406 -0.3 0
+116 0.08999999999979536 -0.3 0
+117 0.09999999999976666 -0.3 0
+118 0.109999999999738 -0.3 0
+119 0.1199999999997092 -0.3 0
+120 0.1299999999996806 -0.3 0
+121 0.1399999999996519 -0.3 0
+122 0.1499999999996177 -0.3 0
+123 0.1599999999995836 -0.3 0
+124 0.1699999999995549 -0.3 0
+125 0.1799999999995262 -0.3 0
+126 0.1899999999994975 -0.3 0
+127 0.1999999999994742 -0.3 0
+128 0.2099999999994975 -0.3 0
+129 0.2199999999995209 -0.3 0
+130 0.2299999999995495 -0.3 0
+131 0.2399999999995772 -0.3 0
+132 0.2499999999996016 -0.3 0
+133 0.2599999999996346 -0.3 0
+134 0.2699999999996558 -0.3 0
+135 0.2799999999996791 -0.3 0
+136 0.2899999999997154 -0.3 0
+137 0.2999999999997344 -0.3 0
+138 0.3099999999997534 -0.3 0
+139 0.3199999999997897 -0.3 0
+140 0.329999999999813 -0.3 0
+141 0.3399999999998342 -0.3 0
+142 0.3499999999998726 -0.3 0
+143 0.3599999999998915 -0.3 0
+144 0.3699999999999171 -0.3 0
+145 0.3799999999999512 -0.3 0
+146 0.3899999999999702 -0.3 0
+147 0.004999999999990909 -0.3 0
+148 0.01499999999997217 -0.3 0
+149 0.02499999999995107 -0.3 0
+150 0.0349999999999371 -0.3 0
+151 0.04499999999992209 -0.3 0
+152 0.05499999999990055 -0.3 0
+153 0.06499999999987254 -0.3 0
+154 0.07499999999984112 -0.3 0
+155 0.08499999999980971 -0.3 0
+156 0.09499999999978101 -0.3 0
+157 0.1049999999997523 -0.3 0
+158 0.1149999999997236 -0.3 0
+159 0.1249999999996949 -0.3 0
+160 0.1349999999996662 -0.3 0
+161 0.1449999999996348 -0.3 0
+162 0.1549999999996007 -0.3 0
+163 0.1649999999995692 -0.3 0
+164 0.1749999999995406 -0.3 0
+165 0.1849999999995118 -0.3 0
+166 0.1949999999994858 -0.3 0
+167 0.2049999999994868 -0.3 0
+168 0.2149999999995101 -0.3 0
+169 0.2249999999995359 -0.3 0
+170 0.2349999999995654 -0.3 0
+171 0.2449999999995872 -0.3 0
+172 0.2549999999996123 -0.3 0
+173 0.264999999999644 -0.3 0
+174 0.2749999999996651 -0.3 0
+175 0.2849999999996972 -0.3 0
+176 0.2949999999997259 -0.3 0
+177 0.304999999999745 -0.3 0
+178 0.3149999999997689 -0.3 0
+179 0.3249999999998006 -0.3 0
+180 0.3349999999998253 -0.3 0
+181 0.3449999999998541 -0.3 0
+182 0.3549999999998833 -0.3 0
+183 0.3649999999999043 -0.3 0
+184 0.3749999999999331 -0.3 0
+185 0.3849999999999645 -0.3 0
+186 0.3949999999999845 -0.3 0
+187 0.4159009150359435 -0.3 0
+188 0.4325968757860914 -0.3 0
+189 0.4501276345236667 -0.3 0
+190 0.4685349312246211 -0.3 0
+191 0.4878625928296997 -0.3 0
+192 0.5081566374754983 -0.3 0
+193 0.5294653843060497 -0.3 0
+194 0.5518395685067007 -0.3 0
+195 0.5753324619453916 -0.3 0
+196 0.4079504575179699 -0.3 0
+197 0.4242488954110194 -0.3 0
+198 0.441362255154879 -0.3 0
+199 0.4593312828741439 -0.3 0
+200 0.4781987620271604 -0.3 0
+201 0.4980096151525677 -0.3 0
+202 0.5188110108907593 -0.3 0
+203 0.5406524764064075 -0.3 0
+204 0.5635860152260457 -0.3 0
+205 0.5876662309727014 -0.3 0
+206 0.009999999999981926 -0.4 0
+207 0.01999999999996121 -0.4 0
+208 0.02999999999994401 -0.4 0
+209 0.03999999999992994 -0.4 0
+210 0.04999999999991424 -0.4 0
+211 0.05999999999988688 -0.4 0
+212 0.06999999999985819 -0.4 0
+213 0.07999999999982406 -0.4 0
+214 0.08999999999979536 -0.4 0
+215 0.09999999999976666 -0.4 0
+216 0.109999999999738 -0.4 0
+217 0.1199999999997092 -0.4 0
+218 0.1299999999996806 -0.4 0
+219 0.1399999999996519 -0.4 0
+220 0.1499999999996177 -0.4 0
+221 0.1599999999995836 -0.4 0
+222 0.1699999999995549 -0.4 0
+223 0.1799999999995262 -0.4 0
+224 0.1899999999994975 -0.4 0
+225 0.1999999999994742 -0.4 0
+226 0.2099999999994975 -0.4 0
+227 0.2199999999995209 -0.4 0
+228 0.2299999999995495 -0.4 0
+229 0.2399999999995772 -0.4 0
+230 0.2499999999996016 -0.4 0
+231 0.2599999999996346 -0.4 0
+232 0.2699999999996558 -0.4 0
+233 0.2799999999996791 -0.4 0
+234 0.2899999999997154 -0.4 0
+235 0.2999999999997344 -0.4 0
+236 0.3099999999997534 -0.4 0
+237 0.3199999999997897 -0.4 0
+238 0.329999999999813 -0.4 0
+239 0.3399999999998342 -0.4 0
+240 0.3499999999998726 -0.4 0
+241 0.3599999999998915 -0.4 0
+242 0.3699999999999171 -0.4 0
+243 0.3799999999999512 -0.4 0
+244 0.3899999999999702 -0.4 0
+245 0.004999999999990909 -0.4 0
+246 0.01499999999997217 -0.4 0
+247 0.02499999999995107 -0.4 0
+248 0.0349999999999371 -0.4 0
+249 0.04499999999992209 -0.4 0
+250 0.05499999999990055 -0.4 0
+251 0.06499999999987254 -0.4 0
+252 0.07499999999984112 -0.4 0
+253 0.08499999999980971 -0.4 0
+254 0.09499999999978101 -0.4 0
+255 0.1049999999997523 -0.4 0
+256 0.1149999999997236 -0.4 0
+257 0.1249999999996949 -0.4 0
+258 0.1349999999996662 -0.4 0
+259 0.1449999999996348 -0.4 0
+260 0.1549999999996007 -0.4 0
+261 0.1649999999995692 -0.4 0
+262 0.1749999999995406 -0.4 0
+263 0.1849999999995118 -0.4 0
+264 0.1949999999994858 -0.4 0
+265 0.2049999999994868 -0.4 0
+266 0.2149999999995101 -0.4 0
+267 0.2249999999995359 -0.4 0
+268 0.2349999999995654 -0.4 0
+269 0.2449999999995872 -0.4 0
+270 0.2549999999996123 -0.4 0
+271 0.264999999999644 -0.4 0
+272 0.2749999999996651 -0.4 0
+273 0.2849999999996972 -0.4 0
+274 0.2949999999997259 -0.4 0
+275 0.304999999999745 -0.4 0
+276 0.3149999999997689 -0.4 0
+277 0.3249999999998006 -0.4 0
+278 0.3349999999998253 -0.4 0
+279 0.3449999999998541 -0.4 0
+280 0.3549999999998833 -0.4 0
+281 0.3649999999999043 -0.4 0
+282 0.3749999999999331 -0.4 0
+283 0.3849999999999645 -0.4 0
+284 0.3949999999999845 -0.4 0
+285 0.4159009150359435 -0.4 0
+286 0.4325968757860914 -0.4 0
+287 0.4501276345236667 -0.4 0
+288 0.4685349312246211 -0.4 0
+289 0.4878625928296997 -0.4 0
+290 0.5081566374754983 -0.4 0
+291 0.5294653843060497 -0.4 0
+292 0.5518395685067007 -0.4 0
+293 0.5753324619453916 -0.4 0
+294 0.4079504575179699 -0.4 0
+295 0.4242488954110194 -0.4 0
+296 0.441362255154879 -0.4 0
+297 0.4593312828741439 -0.4 0
+298 0.4781987620271604 -0.4 0
+299 0.4980096151525677 -0.4 0
+300 0.5188110108907593 -0.4 0
+301 0.5406524764064075 -0.4 0
+302 0.5635860152260457 -0.4 0
+303 0.5876662309727014 -0.4 0
+304 0 -0.3780024001981511 0
+305 0 -0.3570523051187844 0
+306 0 -0.3370998336061458 0
+307 0 -0.3180974798108416 0
+308 0 -0.389001200099055 0
+309 0 -0.3675273526585148 0
+310 0 -0.3470760693624635 0
+311 0 -0.3275986567085242 0
+312 0 -0.3090487399054085 0
+313 0 -0.2850000000000109 0
+314 0 -0.2700000000000326 0
+315 0 -0.2550000000000781 0
+316 0 -0.240000000000141 0
+317 0 -0.2250000000001843 0
+318 0 -0.2100000000002277 0
+319 0 -0.1950000000002711 0
+320 0 -0.1800000000003036 0
+321 0 -0.165000000000347 0
+322 0 -0.150000000000385 0
+323 0 -0.1350000000003481 0
+324 0 -0.1200000000003112 0
+325 0 -0.1050000000002732 0
+326 0 -0.09000000000022879 0
+327 0 -0.07500000000018975 0
+328 0 -0.06000000000015071 0
+329 0 -0.04500000000012139 0
+330 0 -0.03000000000008241 0
+331 0 -0.01500000000003687 0
+332 0 -0.2925000000000165 0
+333 0 -0.2775000000000127 0
+334 0 -0.2625000000000469 0
+335 0 -0.2475000000001095 0
+336 0 -0.2325000000001626 0
+337 0 -0.217500000000206 0
+338 0 -0.2025000000002494 0
+339 0 -0.1875000000002874 0
+340 0 -0.1725000000003253 0
+341 0 -0.157500000000366 0
+342 0 -0.1425000000003665 0
+343 0 -0.1275000000003271 0
+344 0 -0.1125000000002922 0
+345 0 -0.09750000000025186 0
+346 0 -0.08250000000021215 0
+347 0 -0.06750000000017453 0
+348 0 -0.05250000000012314 0
+349 0 -0.03750000000010306 0
+350 0 -0.02250000000007324 0
+351 0 -0.00750000000004003 0
+352 0.4 -0.3780024001981511 0
+353 0.4 -0.3570523051187844 0
+354 0.4 -0.3370998336061458 0
+355 0.4 -0.3180974798108416 0
+356 0.4 -0.389001200099055 0
+357 0.4 -0.3675273526585148 0
+358 0.4 -0.3470760693624635 0
+359 0.4 -0.3275986567085242 0
+360 0.4 -0.3090487399054085 0
+361 0.4 -0.2850000000000109 0
+362 0.4 -0.2700000000000326 0
+363 0.4 -0.2550000000000781 0
+364 0.4 -0.240000000000141 0
+365 0.4 -0.2250000000001843 0
+366 0.4 -0.2100000000002277 0
+367 0.4 -0.1950000000002711 0
+368 0.4 -0.1800000000003036 0
+369 0.4 -0.165000000000347 0
+370 0.4 -0.150000000000385 0
+371 0.4 -0.1350000000003481 0
+372 0.4 -0.1200000000003112 0
+373 0.4 -0.1050000000002732 0
+374 0.4 -0.09000000000022879 0
+375 0.4 -0.07500000000018975 0
+376 0.4 -0.06000000000015071 0
+377 0.4 -0.04500000000012139 0
+378 0.4 -0.03000000000008241 0
+379 0.4 -0.01500000000003687 0
+380 0.4 -0.2925000000000165 0
+381 0.4 -0.2775000000000127 0
+382 0.4 -0.2625000000000469 0
+383 0.4 -0.2475000000001095 0
+384 0.4 -0.2325000000001626 0
+385 0.4 -0.217500000000206 0
+386 0.4 -0.2025000000002494 0
+387 0.4 -0.1875000000002874 0
+388 0.4 -0.1725000000003253 0
+389 0.4 -0.157500000000366 0
+390 0.4 -0.1425000000003665 0
+391 0.4 -0.1275000000003271 0
+392 0.4 -0.1125000000002922 0
+393 0.4 -0.09750000000025186 0
+394 0.4 -0.08250000000021215 0
+395 0.4 -0.06750000000017453 0
+396 0.4 -0.05250000000012314 0
+397 0.4 -0.03750000000010306 0
+398 0.4 -0.02250000000007324 0
+399 0.4 -0.00750000000004003 0
+400 0.6 -0.3780024001981511 0
+401 0.6 -0.3570523051187844 0
+402 0.6 -0.3370998336061458 0
+403 0.6 -0.3180974798108416 0
+404 0.6 -0.389001200099055 0
+405 0.6 -0.3675273526585148 0
+406 0.6 -0.3470760693624635 0
+407 0.6 -0.3275986567085242 0
+408 0.6 -0.3090487399054085 0
+409 0.6 -0.2850000000000109 0
+410 0.6 -0.2700000000000326 0
+411 0.6 -0.2550000000000781 0
+412 0.6 -0.240000000000141 0
+413 0.6 -0.2250000000001843 0
+414 0.6 -0.2100000000002277 0
+415 0.6 -0.1950000000002711 0
+416 0.6 -0.1800000000003036 0
+417 0.6 -0.165000000000347 0
+418 0.6 -0.150000000000385 0
+419 0.6 -0.1350000000003481 0
+420 0.6 -0.1200000000003112 0
+421 0.6 -0.1050000000002732 0
+422 0.6 -0.09000000000022879 0
+423 0.6 -0.07500000000018975 0
+424 0.6 -0.06000000000015071 0
+425 0.6 -0.04500000000012139 0
+426 0.6 -0.03000000000008241 0
+427 0.6 -0.01500000000003687 0
+428 0.6 -0.2925000000000165 0
+429 0.6 -0.2775000000000127 0
+430 0.6 -0.2625000000000469 0
+431 0.6 -0.2475000000001095 0
+432 0.6 -0.2325000000001626 0
+433 0.6 -0.217500000000206 0
+434 0.6 -0.2025000000002494 0
+435 0.6 -0.1875000000002874 0
+436 0.6 -0.1725000000003253 0
+437 0.6 -0.157500000000366 0
+438 0.6 -0.1425000000003665 0
+439 0.6 -0.1275000000003271 0
+440 0.6 -0.1125000000002922 0
+441 0.6 -0.09750000000025186 0
+442 0.6 -0.08250000000021215 0
+443 0.6 -0.06750000000017453 0
+444 0.6 -0.05250000000012314 0
+445 0.6 -0.03750000000010306 0
+446 0.6 -0.02250000000007324 0
+447 0.6 -0.00750000000004003 0
+448 0.009999999999981926 -0.01500000000003687 0
+449 0.01999999999996121 -0.01500000000003687 0
+450 0.02999999999994402 -0.01500000000003687 0
+451 0.03999999999992995 -0.01500000000003687 0
+452 0.04999999999991424 -0.01500000000003687 0
+453 0.05999999999988689 -0.01500000000003687 0
+454 0.06999999999985819 -0.01500000000003687 0
+455 0.07999999999982403 -0.01500000000003687 0
+456 0.08999999999979536 -0.01500000000003687 0
+457 0.09999999999976665 -0.01500000000003687 0
+458 0.109999999999738 -0.01500000000003687 0
+459 0.1199999999997092 -0.01500000000003687 0
+460 0.1299999999996806 -0.01500000000003687 0
+461 0.1399999999996519 -0.01500000000003687 0
+462 0.1499999999996177 -0.01500000000003687 0
+463 0.1599999999995836 -0.01500000000003688 0
+464 0.1699999999995549 -0.01500000000003687 0
+465 0.1799999999995262 -0.01500000000003687 0
+466 0.1899999999994975 -0.01500000000003687 0
+467 0.1999999999994742 -0.01500000000003687 0
+468 0.2099999999994975 -0.01500000000003687 0
+469 0.2199999999995209 -0.01500000000003687 0
+470 0.2299999999995495 -0.01500000000003687 0
+471 0.2399999999995772 -0.01500000000003687 0
+472 0.2499999999996016 -0.01500000000003687 0
+473 0.2599999999996347 -0.01500000000003687 0
+474 0.2699999999996558 -0.01500000000003687 0
+475 0.2799999999996792 -0.01500000000003687 0
+476 0.2899999999997154 -0.01500000000003687 0
+477 0.2999999999997344 -0.01500000000003687 0
+478 0.3099999999997534 -0.01500000000003687 0
+479 0.3199999999997897 -0.01500000000003687 0
+480 0.329999999999813 -0.01500000000003687 0
+481 0.3399999999998342 -0.01500000000003687 0
+482 0.3499999999998726 -0.01500000000003687 0
+483 0.3599999999998915 -0.01500000000003687 0
+484 0.3699999999999171 -0.01500000000003687 0
+485 0.3799999999999512 -0.01500000000003687 0
+486 0.3899999999999702 -0.01500000000003687 0
+487 0.009999999999981926 -0.0300000000000824 0
+488 0.01999999999996121 -0.0300000000000824 0
+489 0.02999999999994402 -0.0300000000000824 0
+490 0.03999999999992994 -0.03000000000008241 0
+491 0.04999999999991423 -0.03000000000008241 0
+492 0.05999999999988688 -0.03000000000008241 0
+493 0.06999999999985819 -0.03000000000008241 0
+494 0.07999999999982406 -0.03000000000008241 0
+495 0.08999999999979534 -0.0300000000000824 0
+496 0.09999999999976665 -0.03000000000008241 0
+497 0.109999999999738 -0.03000000000008241 0
+498 0.1199999999997092 -0.03000000000008241 0
+499 0.1299999999996806 -0.03000000000008241 0
+500 0.1399999999996518 -0.03000000000008241 0
+501 0.1499999999996177 -0.03000000000008241 0
+502 0.1599999999995836 -0.03000000000008241 0
+503 0.1699999999995549 -0.0300000000000824 0
+504 0.1799999999995262 -0.0300000000000824 0
+505 0.1899999999994975 -0.03000000000008241 0
+506 0.1999999999994742 -0.03000000000008241 0
+507 0.2099999999994975 -0.03000000000008241 0
+508 0.2199999999995209 -0.03000000000008241 0
+509 0.2299999999995495 -0.03000000000008241 0
+510 0.2399999999995772 -0.03000000000008241 0
+511 0.2499999999996016 -0.03000000000008241 0
+512 0.2599999999996346 -0.03000000000008241 0
+513 0.2699999999996559 -0.03000000000008241 0
+514 0.2799999999996791 -0.03000000000008241 0
+515 0.2899999999997154 -0.03000000000008241 0
+516 0.2999999999997344 -0.03000000000008241 0
+517 0.3099999999997534 -0.03000000000008241 0
+518 0.3199999999997897 -0.03000000000008241 0
+519 0.329999999999813 -0.03000000000008241 0
+520 0.3399999999998342 -0.03000000000008241 0
+521 0.3499999999998726 -0.03000000000008241 0
+522 0.3599999999998915 -0.0300000000000824 0
+523 0.369999999999917 -0.0300000000000824 0
+524 0.3799999999999512 -0.03000000000008241 0
+525 0.38999999999997 -0.0300000000000824 0
+526 0.009999999999981926 -0.04500000000012139 0
+527 0.0199999999999612 -0.0450000000001214 0
+528 0.02999999999994401 -0.0450000000001214 0
+529 0.03999999999992995 -0.04500000000012139 0
+530 0.04999999999991424 -0.04500000000012139 0
+531 0.05999999999988688 -0.0450000000001214 0
+532 0.06999999999985819 -0.0450000000001214 0
+533 0.07999999999982406 -0.04500000000012138 0
+534 0.08999999999979536 -0.04500000000012138 0
+535 0.09999999999976665 -0.04500000000012139 0
+536 0.109999999999738 -0.04500000000012138 0
+537 0.1199999999997092 -0.04500000000012139 0
+538 0.1299999999996806 -0.04500000000012139 0
+539 0.1399999999996519 -0.04500000000012139 0
+540 0.1499999999996177 -0.0450000000001214 0
+541 0.1599999999995836 -0.04500000000012139 0
+542 0.1699999999995549 -0.0450000000001214 0
+543 0.1799999999995262 -0.04500000000012139 0
+544 0.1899999999994975 -0.0450000000001214 0
+545 0.1999999999994742 -0.04500000000012139 0
+546 0.2099999999994975 -0.04500000000012139 0
+547 0.2199999999995209 -0.04500000000012139 0
+548 0.2299999999995495 -0.0450000000001214 0
+549 0.2399999999995772 -0.0450000000001214 0
+550 0.2499999999996015 -0.04500000000012139 0
+551 0.2599999999996347 -0.04500000000012139 0
+552 0.2699999999996559 -0.04500000000012139 0
+553 0.2799999999996792 -0.04500000000012139 0
+554 0.2899999999997154 -0.04500000000012139 0
+555 0.2999999999997344 -0.04500000000012138 0
+556 0.3099999999997534 -0.04500000000012138 0
+557 0.3199999999997897 -0.04500000000012139 0
+558 0.3299999999998131 -0.04500000000012138 0
+559 0.3399999999998341 -0.04500000000012138 0
+560 0.3499999999998727 -0.04500000000012139 0
+561 0.3599999999998915 -0.04500000000012138 0
+562 0.3699999999999171 -0.04500000000012139 0
+563 0.3799999999999511 -0.04500000000012138 0
+564 0.3899999999999702 -0.04500000000012139 0
+565 0.009999999999981926 -0.06000000000015071 0
+566 0.01999999999996121 -0.0600000000001507 0
+567 0.02999999999994401 -0.06000000000015071 0
+568 0.03999999999992994 -0.06000000000015071 0
+569 0.04999999999991424 -0.06000000000015071 0
+570 0.05999999999988688 -0.06000000000015071 0
+571 0.06999999999985819 -0.06000000000015071 0
+572 0.07999999999982405 -0.0600000000001507 0
+573 0.08999999999979536 -0.06000000000015072 0
+574 0.09999999999976666 -0.0600000000001507 0
+575 0.109999999999738 -0.0600000000001507 0
+576 0.1199999999997092 -0.0600000000001507 0
+577 0.1299999999996806 -0.0600000000001507 0
+578 0.1399999999996519 -0.06000000000015072 0
+579 0.1499999999996177 -0.06000000000015071 0
+580 0.1599999999995836 -0.06000000000015071 0
+581 0.1699999999995549 -0.06000000000015072 0
+582 0.1799999999995262 -0.06000000000015071 0
+583 0.1899999999994975 -0.0600000000001507 0
+584 0.1999999999994742 -0.06000000000015071 0
+585 0.2099999999994975 -0.06000000000015071 0
+586 0.2199999999995209 -0.06000000000015071 0
+587 0.2299999999995495 -0.06000000000015071 0
+588 0.2399999999995772 -0.06000000000015071 0
+589 0.2499999999996015 -0.06000000000015071 0
+590 0.2599999999996346 -0.0600000000001507 0
+591 0.2699999999996557 -0.06000000000015071 0
+592 0.2799999999996791 -0.0600000000001507 0
+593 0.2899999999997154 -0.0600000000001507 0
+594 0.2999999999997344 -0.0600000000001507 0
+595 0.3099999999997534 -0.0600000000001507 0
+596 0.3199999999997897 -0.06000000000015071 0
+597 0.329999999999813 -0.06000000000015071 0
+598 0.3399999999998341 -0.0600000000001507 0
+599 0.3499999999998726 -0.06000000000015071 0
+600 0.3599999999998915 -0.06000000000015071 0
+601 0.3699999999999171 -0.06000000000015071 0
+602 0.3799999999999513 -0.0600000000001507 0
+603 0.3899999999999701 -0.06000000000015071 0
+604 0.009999999999981926 -0.07500000000018975 0
+605 0.01999999999996121 -0.07500000000018978 0
+606 0.02999999999994401 -0.07500000000018975 0
+607 0.03999999999992994 -0.07500000000018976 0
+608 0.04999999999991424 -0.07500000000018975 0
+609 0.05999999999988687 -0.07500000000018975 0
+610 0.06999999999985819 -0.07500000000018975 0
+611 0.07999999999982406 -0.07500000000018975 0
+612 0.08999999999979534 -0.07500000000018975 0
+613 0.09999999999976666 -0.07500000000018976 0
+614 0.109999999999738 -0.07500000000018975 0
+615 0.1199999999997092 -0.07500000000018975 0
+616 0.1299999999996806 -0.07500000000018975 0
+617 0.1399999999996519 -0.07500000000018975 0
+618 0.1499999999996177 -0.07500000000018975 0
+619 0.1599999999995836 -0.07500000000018975 0
+620 0.1699999999995549 -0.07500000000018975 0
+621 0.1799999999995262 -0.07500000000018976 0
+622 0.1899999999994975 -0.07500000000018975 0
+623 0.1999999999994742 -0.07500000000018975 0
+624 0.2099999999994975 -0.07500000000018975 0
+625 0.2199999999995209 -0.07500000000018975 0
+626 0.2299999999995495 -0.07500000000018975 0
+627 0.2399999999995772 -0.07500000000018975 0
+628 0.2499999999996016 -0.07500000000018975 0
+629 0.2599999999996346 -0.07500000000018975 0
+630 0.2699999999996559 -0.07500000000018975 0
+631 0.2799999999996792 -0.07500000000018975 0
+632 0.2899999999997154 -0.07500000000018975 0
+633 0.2999999999997344 -0.07500000000018975 0
+634 0.3099999999997534 -0.07500000000018975 0
+635 0.3199999999997897 -0.07500000000018975 0
+636 0.329999999999813 -0.07500000000018975 0
+637 0.3399999999998342 -0.07500000000018975 0
+638 0.3499999999998726 -0.07500000000018976 0
+639 0.3599999999998915 -0.07500000000018976 0
+640 0.369999999999917 -0.07500000000018975 0
+641 0.3799999999999514 -0.07500000000018975 0
+642 0.3899999999999701 -0.07500000000018975 0
+643 0.009999999999981926 -0.09000000000022877 0
+644 0.01999999999996121 -0.09000000000022879 0
+645 0.02999999999994401 -0.09000000000022879 0
+646 0.03999999999992994 -0.09000000000022879 0
+647 0.04999999999991424 -0.09000000000022877 0
+648 0.05999999999988688 -0.09000000000022881 0
+649 0.06999999999985819 -0.09000000000022877 0
+650 0.07999999999982405 -0.09000000000022881 0
+651 0.08999999999979536 -0.09000000000022877 0
+652 0.09999999999976665 -0.09000000000022879 0
+653 0.109999999999738 -0.09000000000022881 0
+654 0.1199999999997092 -0.0900000000002288 0
+655 0.1299999999996806 -0.09000000000022879 0
+656 0.1399999999996519 -0.09000000000022879 0
+657 0.1499999999996177 -0.09000000000022879 0
+658 0.1599999999995836 -0.09000000000022879 0
+659 0.1699999999995549 -0.09000000000022881 0
+660 0.1799999999995262 -0.09000000000022879 0
+661 0.1899999999994975 -0.09000000000022879 0
+662 0.1999999999994742 -0.09000000000022879 0
+663 0.2099999999994975 -0.09000000000022881 0
+664 0.2199999999995209 -0.09000000000022881 0
+665 0.2299999999995495 -0.09000000000022881 0
+666 0.2399999999995773 -0.09000000000022879 0
+667 0.2499999999996017 -0.09000000000022879 0
+668 0.2599999999996346 -0.09000000000022879 0
+669 0.2699999999996558 -0.09000000000022879 0
+670 0.2799999999996791 -0.09000000000022879 0
+671 0.2899999999997153 -0.09000000000022877 0
+672 0.2999999999997344 -0.09000000000022877 0
+673 0.3099999999997533 -0.09000000000022877 0
+674 0.3199999999997897 -0.09000000000022879 0
+675 0.329999999999813 -0.09000000000022879 0
+676 0.3399999999998342 -0.09000000000022879 0
+677 0.3499999999998726 -0.09000000000022879 0
+678 0.3599999999998915 -0.09000000000022877 0
+679 0.3699999999999171 -0.09000000000022879 0
+680 0.3799999999999513 -0.09000000000022877 0
+681 0.3899999999999702 -0.09000000000022879 0
+682 0.009999999999981926 -0.1050000000002732 0
+683 0.01999999999996121 -0.1050000000002733 0
+684 0.02999999999994401 -0.1050000000002732 0
+685 0.03999999999992994 -0.1050000000002732 0
+686 0.04999999999991424 -0.1050000000002732 0
+687 0.05999999999988688 -0.1050000000002732 0
+688 0.06999999999985819 -0.1050000000002732 0
+689 0.07999999999982406 -0.1050000000002732 0
+690 0.08999999999979536 -0.1050000000002732 0
+691 0.09999999999976666 -0.1050000000002732 0
+692 0.109999999999738 -0.1050000000002732 0
+693 0.1199999999997092 -0.1050000000002732 0
+694 0.1299999999996806 -0.1050000000002732 0
+695 0.1399999999996519 -0.1050000000002732 0
+696 0.1499999999996177 -0.1050000000002732 0
+697 0.1599999999995836 -0.1050000000002732 0
+698 0.1699999999995549 -0.1050000000002732 0
+699 0.1799999999995262 -0.1050000000002732 0
+700 0.1899999999994975 -0.1050000000002732 0
+701 0.1999999999994742 -0.1050000000002732 0
+702 0.2099999999994975 -0.1050000000002732 0
+703 0.2199999999995209 -0.1050000000002732 0
+704 0.2299999999995495 -0.1050000000002732 0
+705 0.2399999999995772 -0.1050000000002732 0
+706 0.2499999999996015 -0.1050000000002732 0
+707 0.2599999999996346 -0.1050000000002732 0
+708 0.2699999999996559 -0.1050000000002732 0
+709 0.2799999999996791 -0.1050000000002732 0
+710 0.2899999999997154 -0.1050000000002732 0
+711 0.2999999999997344 -0.1050000000002732 0
+712 0.3099999999997534 -0.1050000000002732 0
+713 0.3199999999997897 -0.1050000000002732 0
+714 0.329999999999813 -0.1050000000002732 0
+715 0.3399999999998342 -0.1050000000002732 0
+716 0.3499999999998726 -0.1050000000002732 0
+717 0.3599999999998915 -0.1050000000002732 0
+718 0.3699999999999171 -0.1050000000002732 0
+719 0.3799999999999513 -0.1050000000002732 0
+720 0.3899999999999702 -0.1050000000002732 0
+721 0.009999999999981926 -0.1200000000003112 0
+722 0.01999999999996121 -0.1200000000003112 0
+723 0.02999999999994402 -0.1200000000003112 0
+724 0.03999999999992994 -0.1200000000003112 0
+725 0.04999999999991424 -0.1200000000003112 0
+726 0.05999999999988688 -0.1200000000003112 0
+727 0.06999999999985819 -0.1200000000003112 0
+728 0.07999999999982406 -0.1200000000003112 0
+729 0.08999999999979536 -0.1200000000003112 0
+730 0.09999999999976666 -0.1200000000003112 0
+731 0.109999999999738 -0.1200000000003112 0
+732 0.1199999999997092 -0.1200000000003112 0
+733 0.1299999999996806 -0.1200000000003112 0
+734 0.1399999999996519 -0.1200000000003112 0
+735 0.1499999999996177 -0.1200000000003112 0
+736 0.1599999999995836 -0.1200000000003112 0
+737 0.1699999999995549 -0.1200000000003112 0
+738 0.1799999999995262 -0.1200000000003112 0
+739 0.1899999999994975 -0.1200000000003112 0
+740 0.1999999999994742 -0.1200000000003112 0
+741 0.2099999999994975 -0.1200000000003112 0
+742 0.2199999999995209 -0.1200000000003112 0
+743 0.2299999999995495 -0.1200000000003112 0
+744 0.2399999999995772 -0.1200000000003112 0
+745 0.2499999999996016 -0.1200000000003112 0
+746 0.2599999999996346 -0.1200000000003112 0
+747 0.2699999999996558 -0.1200000000003112 0
+748 0.2799999999996792 -0.1200000000003112 0
+749 0.2899999999997154 -0.1200000000003112 0
+750 0.2999999999997344 -0.1200000000003112 0
+751 0.3099999999997534 -0.1200000000003112 0
+752 0.3199999999997897 -0.1200000000003112 0
+753 0.329999999999813 -0.1200000000003112 0
+754 0.3399999999998342 -0.1200000000003112 0
+755 0.3499999999998726 -0.1200000000003112 0
+756 0.3599999999998915 -0.1200000000003112 0
+757 0.3699999999999171 -0.1200000000003112 0
+758 0.3799999999999513 -0.1200000000003112 0
+759 0.3899999999999702 -0.1200000000003112 0
+760 0.009999999999981926 -0.1350000000003481 0
+761 0.01999999999996121 -0.1350000000003481 0
+762 0.02999999999994402 -0.1350000000003481 0
+763 0.03999999999992994 -0.1350000000003481 0
+764 0.04999999999991424 -0.1350000000003481 0
+765 0.05999999999988688 -0.1350000000003481 0
+766 0.06999999999985819 -0.1350000000003481 0
+767 0.07999999999982406 -0.1350000000003481 0
+768 0.08999999999979536 -0.1350000000003481 0
+769 0.09999999999976665 -0.1350000000003481 0
+770 0.109999999999738 -0.1350000000003481 0
+771 0.1199999999997092 -0.135000000000348 0
+772 0.1299999999996806 -0.1350000000003481 0
+773 0.1399999999996519 -0.1350000000003481 0
+774 0.1499999999996177 -0.1350000000003481 0
+775 0.1599999999995836 -0.1350000000003481 0
+776 0.1699999999995549 -0.1350000000003481 0
+777 0.1799999999995262 -0.1350000000003481 0
+778 0.1899999999994975 -0.1350000000003481 0
+779 0.1999999999994742 -0.1350000000003481 0
+780 0.2099999999994975 -0.1350000000003481 0
+781 0.2199999999995209 -0.1350000000003481 0
+782 0.2299999999995495 -0.1350000000003481 0
+783 0.2399999999995772 -0.1350000000003481 0
+784 0.2499999999996016 -0.1350000000003481 0
+785 0.2599999999996346 -0.1350000000003481 0
+786 0.2699999999996559 -0.135000000000348 0
+787 0.2799999999996791 -0.1350000000003481 0
+788 0.2899999999997154 -0.1350000000003481 0
+789 0.2999999999997344 -0.1350000000003481 0
+790 0.3099999999997534 -0.1350000000003481 0
+791 0.3199999999997897 -0.1350000000003481 0
+792 0.329999999999813 -0.1350000000003481 0
+793 0.3399999999998342 -0.1350000000003481 0
+794 0.3499999999998726 -0.1350000000003481 0
+795 0.3599999999998915 -0.1350000000003481 0
+796 0.369999999999917 -0.1350000000003481 0
+797 0.3799999999999512 -0.1350000000003481 0
+798 0.3899999999999702 -0.1350000000003481 0
+799 0.009999999999981926 -0.150000000000385 0
+800 0.0199999999999612 -0.1500000000003851 0
+801 0.02999999999994401 -0.1500000000003849 0
+802 0.03999999999992994 -0.150000000000385 0
+803 0.04999999999991424 -0.150000000000385 0
+804 0.05999999999988688 -0.150000000000385 0
+805 0.06999999999985819 -0.150000000000385 0
+806 0.07999999999982405 -0.150000000000385 0
+807 0.08999999999979536 -0.150000000000385 0
+808 0.09999999999976666 -0.150000000000385 0
+809 0.109999999999738 -0.150000000000385 0
+810 0.1199999999997092 -0.1500000000003851 0
+811 0.1299999999996806 -0.1500000000003849 0
+812 0.1399999999996519 -0.150000000000385 0
+813 0.1499999999996177 -0.150000000000385 0
+814 0.1599999999995836 -0.150000000000385 0
+815 0.1699999999995549 -0.150000000000385 0
+816 0.1799999999995262 -0.150000000000385 0
+817 0.1899999999994975 -0.150000000000385 0
+818 0.1999999999994742 -0.150000000000385 0
+819 0.2099999999994975 -0.150000000000385 0
+820 0.2199999999995209 -0.150000000000385 0
+821 0.2299999999995495 -0.150000000000385 0
+822 0.2399999999995772 -0.150000000000385 0
+823 0.2499999999996015 -0.150000000000385 0
+824 0.2599999999996346 -0.150000000000385 0
+825 0.2699999999996559 -0.150000000000385 0
+826 0.2799999999996792 -0.150000000000385 0
+827 0.2899999999997154 -0.150000000000385 0
+828 0.2999999999997344 -0.150000000000385 0
+829 0.3099999999997534 -0.150000000000385 0
+830 0.3199999999997897 -0.150000000000385 0
+831 0.329999999999813 -0.150000000000385 0
+832 0.3399999999998342 -0.150000000000385 0
+833 0.3499999999998726 -0.150000000000385 0
+834 0.3599999999998915 -0.150000000000385 0
+835 0.3699999999999171 -0.150000000000385 0
+836 0.3799999999999512 -0.150000000000385 0
+837 0.3899999999999702 -0.150000000000385 0
+838 0.009999999999981926 -0.165000000000347 0
+839 0.01999999999996121 -0.165000000000347 0
+840 0.02999999999994401 -0.165000000000347 0
+841 0.03999999999992994 -0.165000000000347 0
+842 0.04999999999991424 -0.165000000000347 0
+843 0.05999999999988688 -0.165000000000347 0
+844 0.06999999999985818 -0.165000000000347 0
+845 0.07999999999982406 -0.165000000000347 0
+846 0.08999999999979536 -0.165000000000347 0
+847 0.09999999999976666 -0.165000000000347 0
+848 0.109999999999738 -0.165000000000347 0
+849 0.1199999999997092 -0.165000000000347 0
+850 0.1299999999996806 -0.165000000000347 0
+851 0.1399999999996519 -0.165000000000347 0
+852 0.1499999999996177 -0.165000000000347 0
+853 0.1599999999995836 -0.165000000000347 0
+854 0.1699999999995549 -0.165000000000347 0
+855 0.1799999999995262 -0.165000000000347 0
+856 0.1899999999994975 -0.165000000000347 0
+857 0.1999999999994742 -0.165000000000347 0
+858 0.2099999999994975 -0.165000000000347 0
+859 0.2199999999995209 -0.165000000000347 0
+860 0.2299999999995495 -0.165000000000347 0
+861 0.2399999999995772 -0.165000000000347 0
+862 0.2499999999996016 -0.165000000000347 0
+863 0.2599999999996346 -0.165000000000347 0
+864 0.2699999999996559 -0.165000000000347 0
+865 0.2799999999996792 -0.165000000000347 0
+866 0.2899999999997154 -0.165000000000347 0
+867 0.2999999999997344 -0.165000000000347 0
+868 0.3099999999997534 -0.165000000000347 0
+869 0.3199999999997897 -0.165000000000347 0
+870 0.329999999999813 -0.165000000000347 0
+871 0.3399999999998342 -0.165000000000347 0
+872 0.3499999999998726 -0.165000000000347 0
+873 0.3599999999998915 -0.165000000000347 0
+874 0.3699999999999171 -0.165000000000347 0
+875 0.3799999999999512 -0.165000000000347 0
+876 0.3899999999999702 -0.165000000000347 0
+877 0.009999999999981926 -0.1800000000003037 0
+878 0.01999999999996121 -0.1800000000003036 0
+879 0.02999999999994401 -0.1800000000003036 0
+880 0.03999999999992994 -0.1800000000003036 0
+881 0.04999999999991424 -0.1800000000003036 0
+882 0.05999999999988688 -0.1800000000003037 0
+883 0.06999999999985819 -0.1800000000003036 0
+884 0.07999999999982406 -0.1800000000003036 0
+885 0.08999999999979536 -0.1800000000003036 0
+886 0.09999999999976666 -0.1800000000003036 0
+887 0.109999999999738 -0.1800000000003036 0
+888 0.1199999999997092 -0.1800000000003036 0
+889 0.1299999999996806 -0.1800000000003036 0
+890 0.1399999999996519 -0.1800000000003036 0
+891 0.1499999999996177 -0.1800000000003036 0
+892 0.1599999999995836 -0.1800000000003036 0
+893 0.1699999999995549 -0.1800000000003036 0
+894 0.1799999999995262 -0.1800000000003036 0
+895 0.1899999999994975 -0.1800000000003036 0
+896 0.1999999999994742 -0.1800000000003036 0
+897 0.2099999999994975 -0.1800000000003036 0
+898 0.2199999999995209 -0.1800000000003036 0
+899 0.2299999999995495 -0.1800000000003036 0
+900 0.2399999999995773 -0.1800000000003036 0
+901 0.2499999999996015 -0.1800000000003036 0
+902 0.2599999999996346 -0.1800000000003036 0
+903 0.2699999999996558 -0.1800000000003036 0
+904 0.2799999999996792 -0.1800000000003036 0
+905 0.2899999999997154 -0.1800000000003036 0
+906 0.2999999999997344 -0.1800000000003036 0
+907 0.3099999999997534 -0.1800000000003036 0
+908 0.3199999999997897 -0.1800000000003036 0
+909 0.329999999999813 -0.1800000000003036 0
+910 0.3399999999998342 -0.1800000000003036 0
+911 0.3499999999998726 -0.1800000000003036 0
+912 0.3599999999998915 -0.1800000000003036 0
+913 0.3699999999999171 -0.1800000000003036 0
+914 0.3799999999999512 -0.1800000000003036 0
+915 0.3899999999999702 -0.1800000000003036 0
+916 0.009999999999981926 -0.1950000000002711 0
+917 0.01999999999996121 -0.1950000000002711 0
+918 0.029999999999944 -0.1950000000002711 0
+919 0.03999999999992994 -0.1950000000002711 0
+920 0.04999999999991424 -0.1950000000002711 0
+921 0.05999999999988688 -0.1950000000002711 0
+922 0.06999999999985819 -0.1950000000002711 0
+923 0.07999999999982406 -0.1950000000002711 0
+924 0.08999999999979536 -0.1950000000002712 0
+925 0.09999999999976666 -0.1950000000002711 0
+926 0.109999999999738 -0.1950000000002711 0
+927 0.1199999999997092 -0.1950000000002712 0
+928 0.1299999999996806 -0.1950000000002711 0
+929 0.1399999999996519 -0.1950000000002711 0
+930 0.1499999999996177 -0.1950000000002711 0
+931 0.1599999999995836 -0.1950000000002711 0
+932 0.1699999999995549 -0.1950000000002711 0
+933 0.1799999999995262 -0.1950000000002711 0
+934 0.1899999999994975 -0.1950000000002711 0
+935 0.1999999999994742 -0.1950000000002711 0
+936 0.2099999999994975 -0.1950000000002711 0
+937 0.2199999999995209 -0.1950000000002711 0
+938 0.2299999999995495 -0.1950000000002711 0
+939 0.2399999999995772 -0.1950000000002711 0
+940 0.2499999999996016 -0.1950000000002711 0
+941 0.2599999999996346 -0.1950000000002711 0
+942 0.2699999999996559 -0.1950000000002712 0
+943 0.2799999999996792 -0.1950000000002711 0
+944 0.2899999999997154 -0.1950000000002711 0
+945 0.2999999999997344 -0.1950000000002711 0
+946 0.3099999999997534 -0.1950000000002711 0
+947 0.3199999999997897 -0.1950000000002711 0
+948 0.329999999999813 -0.1950000000002711 0
+949 0.3399999999998342 -0.1950000000002711 0
+950 0.3499999999998726 -0.1950000000002711 0
+951 0.3599999999998915 -0.1950000000002711 0
+952 0.3699999999999171 -0.1950000000002711 0
+953 0.3799999999999513 -0.1950000000002711 0
+954 0.3899999999999702 -0.1950000000002711 0
+955 0.009999999999981926 -0.2100000000002278 0
+956 0.01999999999996121 -0.2100000000002277 0
+957 0.02999999999994402 -0.2100000000002277 0
+958 0.03999999999992995 -0.2100000000002277 0
+959 0.04999999999991424 -0.2100000000002277 0
+960 0.05999999999988687 -0.2100000000002277 0
+961 0.06999999999985819 -0.2100000000002277 0
+962 0.07999999999982406 -0.2100000000002277 0
+963 0.08999999999979536 -0.2100000000002277 0
+964 0.09999999999976666 -0.2100000000002277 0
+965 0.109999999999738 -0.2100000000002277 0
+966 0.1199999999997092 -0.2100000000002277 0
+967 0.1299999999996806 -0.2100000000002277 0
+968 0.1399999999996518 -0.2100000000002278 0
+969 0.1499999999996177 -0.2100000000002277 0
+970 0.1599999999995836 -0.2100000000002277 0
+971 0.1699999999995549 -0.2100000000002277 0
+972 0.1799999999995262 -0.2100000000002277 0
+973 0.1899999999994975 -0.2100000000002277 0
+974 0.1999999999994742 -0.2100000000002277 0
+975 0.2099999999994975 -0.2100000000002277 0
+976 0.2199999999995209 -0.2100000000002277 0
+977 0.2299999999995495 -0.2100000000002277 0
+978 0.2399999999995771 -0.2100000000002277 0
+979 0.2499999999996015 -0.2100000000002277 0
+980 0.2599999999996346 -0.2100000000002277 0
+981 0.2699999999996559 -0.2100000000002277 0
+982 0.2799999999996791 -0.2100000000002277 0
+983 0.2899999999997154 -0.2100000000002277 0
+984 0.2999999999997344 -0.2100000000002277 0
+985 0.3099999999997534 -0.2100000000002277 0
+986 0.3199999999997897 -0.2100000000002277 0
+987 0.329999999999813 -0.2100000000002277 0
+988 0.3399999999998342 -0.2100000000002277 0
+989 0.3499999999998726 -0.2100000000002277 0
+990 0.3599999999998915 -0.2100000000002277 0
+991 0.3699999999999171 -0.2100000000002277 0
+992 0.3799999999999512 -0.2100000000002277 0
+993 0.3899999999999701 -0.2100000000002277 0
+994 0.009999999999981926 -0.2250000000001843 0
+995 0.01999999999996121 -0.2250000000001843 0
+996 0.02999999999994402 -0.2250000000001844 0
+997 0.03999999999992994 -0.2250000000001843 0
+998 0.04999999999991424 -0.2250000000001843 0
+999 0.05999999999988688 -0.2250000000001843 0
+1000 0.06999999999985819 -0.2250000000001843 0
+1001 0.07999999999982406 -0.2250000000001843 0
+1002 0.08999999999979536 -0.2250000000001843 0
+1003 0.09999999999976666 -0.2250000000001843 0
+1004 0.109999999999738 -0.2250000000001843 0
+1005 0.1199999999997092 -0.2250000000001843 0
+1006 0.1299999999996806 -0.2250000000001843 0
+1007 0.1399999999996519 -0.2250000000001843 0
+1008 0.1499999999996177 -0.2250000000001843 0
+1009 0.1599999999995836 -0.2250000000001843 0
+1010 0.1699999999995549 -0.2250000000001843 0
+1011 0.1799999999995262 -0.2250000000001843 0
+1012 0.1899999999994975 -0.2250000000001843 0
+1013 0.1999999999994742 -0.2250000000001843 0
+1014 0.2099999999994975 -0.2250000000001843 0
+1015 0.2199999999995209 -0.2250000000001843 0
+1016 0.2299999999995495 -0.2250000000001843 0
+1017 0.2399999999995772 -0.2250000000001843 0
+1018 0.2499999999996015 -0.2250000000001843 0
+1019 0.2599999999996346 -0.2250000000001843 0
+1020 0.2699999999996558 -0.2250000000001843 0
+1021 0.2799999999996792 -0.2250000000001843 0
+1022 0.2899999999997154 -0.2250000000001843 0
+1023 0.2999999999997344 -0.2250000000001843 0
+1024 0.3099999999997534 -0.2250000000001843 0
+1025 0.3199999999997897 -0.2250000000001843 0
+1026 0.329999999999813 -0.2250000000001843 0
+1027 0.3399999999998342 -0.2250000000001843 0
+1028 0.3499999999998726 -0.2250000000001843 0
+1029 0.3599999999998915 -0.2250000000001843 0
+1030 0.3699999999999171 -0.2250000000001843 0
+1031 0.3799999999999513 -0.2250000000001843 0
+1032 0.3899999999999701 -0.2250000000001843 0
+1033 0.009999999999981926 -0.240000000000141 0
+1034 0.01999999999996121 -0.240000000000141 0
+1035 0.02999999999994401 -0.240000000000141 0
+1036 0.03999999999992994 -0.2400000000001409 0
+1037 0.04999999999991424 -0.240000000000141 0
+1038 0.05999999999988688 -0.240000000000141 0
+1039 0.06999999999985819 -0.240000000000141 0
+1040 0.07999999999982405 -0.2400000000001409 0
+1041 0.08999999999979536 -0.2400000000001409 0
+1042 0.09999999999976666 -0.240000000000141 0
+1043 0.109999999999738 -0.240000000000141 0
+1044 0.1199999999997092 -0.240000000000141 0
+1045 0.1299999999996806 -0.240000000000141 0
+1046 0.1399999999996519 -0.2400000000001409 0
+1047 0.1499999999996177 -0.240000000000141 0
+1048 0.1599999999995836 -0.240000000000141 0
+1049 0.1699999999995549 -0.2400000000001409 0
+1050 0.1799999999995262 -0.240000000000141 0
+1051 0.1899999999994975 -0.240000000000141 0
+1052 0.1999999999994742 -0.2400000000001409 0
+1053 0.2099999999994975 -0.240000000000141 0
+1054 0.2199999999995209 -0.240000000000141 0
+1055 0.2299999999995495 -0.2400000000001409 0
+1056 0.2399999999995772 -0.240000000000141 0
+1057 0.2499999999996016 -0.240000000000141 0
+1058 0.2599999999996346 -0.2400000000001409 0
+1059 0.2699999999996559 -0.2400000000001409 0
+1060 0.2799999999996791 -0.240000000000141 0
+1061 0.2899999999997154 -0.240000000000141 0
+1062 0.2999999999997344 -0.240000000000141 0
+1063 0.3099999999997534 -0.240000000000141 0
+1064 0.3199999999997897 -0.240000000000141 0
+1065 0.329999999999813 -0.240000000000141 0
+1066 0.3399999999998342 -0.240000000000141 0
+1067 0.3499999999998726 -0.240000000000141 0
+1068 0.3599999999998915 -0.240000000000141 0
+1069 0.3699999999999171 -0.240000000000141 0
+1070 0.3799999999999514 -0.240000000000141 0
+1071 0.3899999999999701 -0.240000000000141 0
+1072 0.009999999999981926 -0.2550000000000781 0
+1073 0.01999999999996121 -0.2550000000000781 0
+1074 0.02999999999994401 -0.2550000000000781 0
+1075 0.03999999999992994 -0.2550000000000781 0
+1076 0.04999999999991424 -0.2550000000000781 0
+1077 0.05999999999988688 -0.2550000000000781 0
+1078 0.06999999999985818 -0.255000000000078 0
+1079 0.07999999999982405 -0.2550000000000781 0
+1080 0.08999999999979536 -0.2550000000000781 0
+1081 0.09999999999976665 -0.2550000000000781 0
+1082 0.109999999999738 -0.2550000000000781 0
+1083 0.1199999999997092 -0.2550000000000781 0
+1084 0.1299999999996806 -0.2550000000000781 0
+1085 0.1399999999996519 -0.2550000000000781 0
+1086 0.1499999999996177 -0.2550000000000781 0
+1087 0.1599999999995836 -0.2550000000000781 0
+1088 0.1699999999995549 -0.2550000000000781 0
+1089 0.1799999999995262 -0.2550000000000781 0
+1090 0.1899999999994975 -0.2550000000000781 0
+1091 0.1999999999994742 -0.2550000000000781 0
+1092 0.2099999999994975 -0.2550000000000781 0
+1093 0.2199999999995209 -0.2550000000000781 0
+1094 0.2299999999995495 -0.2550000000000781 0
+1095 0.2399999999995772 -0.2550000000000781 0
+1096 0.2499999999996015 -0.2550000000000781 0
+1097 0.2599999999996346 -0.2550000000000781 0
+1098 0.2699999999996559 -0.2550000000000781 0
+1099 0.2799999999996792 -0.2550000000000781 0
+1100 0.2899999999997154 -0.2550000000000781 0
+1101 0.2999999999997344 -0.2550000000000781 0
+1102 0.3099999999997534 -0.2550000000000781 0
+1103 0.3199999999997897 -0.2550000000000781 0
+1104 0.329999999999813 -0.2550000000000781 0
+1105 0.3399999999998342 -0.2550000000000781 0
+1106 0.3499999999998726 -0.2550000000000781 0
+1107 0.3599999999998915 -0.2550000000000781 0
+1108 0.369999999999917 -0.2550000000000781 0
+1109 0.3799999999999512 -0.2550000000000781 0
+1110 0.3899999999999702 -0.2550000000000781 0
+1111 0.009999999999981926 -0.2700000000000326 0
+1112 0.01999999999996121 -0.2700000000000326 0
+1113 0.02999999999994402 -0.2700000000000326 0
+1114 0.03999999999992994 -0.2700000000000326 0
+1115 0.04999999999991424 -0.2700000000000326 0
+1116 0.05999999999988687 -0.2700000000000326 0
+1117 0.06999999999985819 -0.2700000000000326 0
+1118 0.07999999999982406 -0.2700000000000326 0
+1119 0.08999999999979536 -0.2700000000000326 0
+1120 0.09999999999976666 -0.2700000000000326 0
+1121 0.109999999999738 -0.2700000000000326 0
+1122 0.1199999999997092 -0.2700000000000326 0
+1123 0.1299999999996806 -0.2700000000000326 0
+1124 0.1399999999996518 -0.2700000000000326 0
+1125 0.1499999999996177 -0.2700000000000326 0
+1126 0.1599999999995836 -0.2700000000000326 0
+1127 0.1699999999995549 -0.2700000000000326 0
+1128 0.1799999999995262 -0.2700000000000326 0
+1129 0.1899999999994975 -0.2700000000000326 0
+1130 0.1999999999994742 -0.2700000000000326 0
+1131 0.2099999999994975 -0.2700000000000326 0
+1132 0.2199999999995209 -0.2700000000000326 0
+1133 0.2299999999995495 -0.2700000000000326 0
+1134 0.2399999999995772 -0.2700000000000326 0
+1135 0.2499999999996015 -0.2700000000000326 0
+1136 0.2599999999996347 -0.2700000000000326 0
+1137 0.2699999999996558 -0.2700000000000326 0
+1138 0.2799999999996792 -0.2700000000000326 0
+1139 0.2899999999997154 -0.2700000000000326 0
+1140 0.2999999999997344 -0.2700000000000326 0
+1141 0.3099999999997534 -0.2700000000000326 0
+1142 0.3199999999997897 -0.2700000000000326 0
+1143 0.329999999999813 -0.2700000000000326 0
+1144 0.3399999999998342 -0.2700000000000326 0
+1145 0.3499999999998726 -0.2700000000000326 0
+1146 0.3599999999998915 -0.2700000000000326 0
+1147 0.369999999999917 -0.2700000000000326 0
+1148 0.3799999999999512 -0.2700000000000326 0
+1149 0.3899999999999702 -0.2700000000000326 0
+1150 0.009999999999981924 -0.2850000000000109 0
+1151 0.01999999999996121 -0.2850000000000109 0
+1152 0.02999999999994401 -0.2850000000000109 0
+1153 0.03999999999992994 -0.2850000000000107 0
+1154 0.04999999999991425 -0.2850000000000109 0
+1155 0.05999999999988687 -0.2850000000000109 0
+1156 0.06999999999985819 -0.2850000000000108 0
+1157 0.07999999999982406 -0.2850000000000109 0
+1158 0.08999999999979536 -0.2850000000000109 0
+1159 0.09999999999976665 -0.2850000000000109 0
+1160 0.109999999999738 -0.2850000000000109 0
+1161 0.1199999999997092 -0.2850000000000108 0
+1162 0.1299999999996806 -0.2850000000000109 0
+1163 0.1399999999996518 -0.2850000000000109 0
+1164 0.1499999999996177 -0.2850000000000109 0
+1165 0.1599999999995836 -0.2850000000000109 0
+1166 0.1699999999995549 -0.2850000000000108 0
+1167 0.1799999999995262 -0.2850000000000108 0
+1168 0.1899999999994975 -0.2850000000000109 0
+1169 0.1999999999994742 -0.2850000000000108 0
+1170 0.2099999999994975 -0.2850000000000109 0
+1171 0.2199999999995209 -0.2850000000000109 0
+1172 0.2299999999995495 -0.2850000000000109 0
+1173 0.2399999999995772 -0.2850000000000109 0
+1174 0.2499999999996016 -0.2850000000000108 0
+1175 0.2599999999996347 -0.2850000000000109 0
+1176 0.2699999999996558 -0.2850000000000109 0
+1177 0.2799999999996791 -0.2850000000000109 0
+1178 0.2899999999997154 -0.2850000000000109 0
+1179 0.2999999999997344 -0.2850000000000108 0
+1180 0.3099999999997534 -0.2850000000000109 0
+1181 0.3199999999997897 -0.2850000000000109 0
+1182 0.329999999999813 -0.2850000000000109 0
+1183 0.3399999999998342 -0.2850000000000109 0
+1184 0.3499999999998726 -0.2850000000000109 0
+1185 0.3599999999998915 -0.285000000000011 0
+1186 0.3699999999999171 -0.2850000000000108 0
+1187 0.3799999999999513 -0.2850000000000109 0
+1188 0.3899999999999701 -0.2850000000000109 0
+1189 0.004999999999990963 -0.007500000000018436 0
+1190 0.004999999999990963 -0.01500000000003687 0
+1191 0.009999999999981926 -0.007500000000018436 0
+1192 0.01499999999997157 -0.007500000000018436 0
+1193 0.01499999999997157 -0.01500000000003687 0
+1194 0.01999999999996121 -0.007500000000018436 0
+1195 0.02499999999995261 -0.007500000000018436 0
+1196 0.02499999999995261 -0.01500000000003687 0
+1197 0.02999999999994402 -0.007500000000018437 0
+1198 0.03499999999993698 -0.007500000000018437 0
+1199 0.03499999999993698 -0.01500000000003687 0
+1200 0.03999999999992994 -0.007500000000018436 0
+1201 0.04499999999992209 -0.007500000000018436 0
+1202 0.04499999999992209 -0.01500000000003687 0
+1203 0.04999999999991424 -0.007500000000018437 0
+1204 0.05499999999990056 -0.007500000000018437 0
+1205 0.05499999999990056 -0.01500000000003687 0
+1206 0.05999999999988688 -0.007500000000018437 0
+1207 0.06499999999987254 -0.007500000000018437 0
+1208 0.06499999999987254 -0.01500000000003687 0
+1209 0.06999999999985819 -0.007500000000018436 0
+1210 0.07499999999984112 -0.007500000000018436 0
+1211 0.07499999999984111 -0.01500000000003687 0
+1212 0.07999999999982405 -0.007500000000018436 0
+1213 0.0849999999998097 -0.007500000000018436 0
+1214 0.0849999999998097 -0.01500000000003687 0
+1215 0.08999999999979536 -0.007500000000018436 0
+1216 0.09499999999978101 -0.007500000000018436 0
+1217 0.09499999999978101 -0.01500000000003687 0
+1218 0.09999999999976666 -0.007500000000018437 0
+1219 0.1049999999997523 -0.007500000000018437 0
+1220 0.1049999999997523 -0.01500000000003687 0
+1221 0.109999999999738 -0.007500000000018436 0
+1222 0.1149999999997236 -0.007500000000018436 0
+1223 0.1149999999997236 -0.01500000000003687 0
+1224 0.1199999999997092 -0.007500000000018436 0
+1225 0.1249999999996949 -0.007500000000018436 0
+1226 0.1249999999996949 -0.01500000000003687 0
+1227 0.1299999999996806 -0.007500000000018436 0
+1228 0.1349999999996662 -0.007500000000018436 0
+1229 0.1349999999996662 -0.01500000000003687 0
+1230 0.1399999999996519 -0.007500000000018435 0
+1231 0.1449999999996348 -0.007500000000018435 0
+1232 0.1449999999996348 -0.01500000000003687 0
+1233 0.1499999999996177 -0.007500000000018437 0
+1234 0.1549999999996007 -0.007500000000018437 0
+1235 0.1549999999996007 -0.01500000000003688 0
+1236 0.1599999999995836 -0.007500000000018438 0
+1237 0.1649999999995692 -0.007500000000018438 0
+1238 0.1649999999995692 -0.01500000000003687 0
+1239 0.1699999999995549 -0.007500000000018436 0
+1240 0.1749999999995406 -0.007500000000018436 0
+1241 0.1749999999995406 -0.01500000000003687 0
+1242 0.1799999999995262 -0.007500000000018436 0
+1243 0.1849999999995118 -0.007500000000018436 0
+1244 0.1849999999995118 -0.01500000000003687 0
+1245 0.1899999999994975 -0.007500000000018436 0
+1246 0.1949999999994859 -0.007500000000018436 0
+1247 0.1949999999994859 -0.01500000000003687 0
+1248 0.1999999999994742 -0.007500000000018436 0
+1249 0.2049999999994859 -0.007500000000018436 0
+1250 0.2049999999994859 -0.01500000000003687 0
+1251 0.2099999999994975 -0.007500000000018436 0
+1252 0.2149999999995092 -0.007500000000018436 0
+1253 0.2149999999995092 -0.01500000000003687 0
+1254 0.2199999999995209 -0.007500000000018436 0
+1255 0.2249999999995352 -0.007500000000018436 0
+1256 0.2249999999995352 -0.01500000000003687 0
+1257 0.2299999999995495 -0.007500000000018436 0
+1258 0.2349999999995633 -0.007500000000018436 0
+1259 0.2349999999995633 -0.01500000000003687 0
+1260 0.2399999999995772 -0.007500000000018436 0
+1261 0.2449999999995894 -0.007500000000018436 0
+1262 0.2449999999995894 -0.01500000000003687 0
+1263 0.2499999999996016 -0.007500000000018436 0
+1264 0.2549999999996181 -0.007500000000018436 0
+1265 0.2549999999996181 -0.01500000000003687 0
+1266 0.2599999999996346 -0.007500000000018436 0
+1267 0.2649999999996452 -0.007500000000018436 0
+1268 0.2649999999996452 -0.01500000000003687 0
+1269 0.2699999999996558 -0.007500000000018436 0
+1270 0.2749999999996675 -0.007500000000018436 0
+1271 0.2749999999996675 -0.01500000000003687 0
+1272 0.2799999999996792 -0.007500000000018436 0
+1273 0.2849999999996973 -0.007500000000018436 0
+1274 0.2849999999996973 -0.01500000000003687 0
+1275 0.2899999999997154 -0.007500000000018436 0
+1276 0.2949999999997249 -0.007500000000018436 0
+1277 0.2949999999997249 -0.01500000000003687 0
+1278 0.2999999999997344 -0.007500000000018436 0
+1279 0.3049999999997439 -0.007500000000018436 0
+1280 0.3049999999997439 -0.01500000000003687 0
+1281 0.3099999999997534 -0.007500000000018436 0
+1282 0.3149999999997715 -0.007500000000018436 0
+1283 0.3149999999997715 -0.01500000000003687 0
+1284 0.3199999999997897 -0.007500000000018436 0
+1285 0.3249999999998013 -0.007500000000018436 0
+1286 0.3249999999998013 -0.01500000000003687 0
+1287 0.329999999999813 -0.007500000000018436 0
+1288 0.3349999999998236 -0.007500000000018436 0
+1289 0.3349999999998236 -0.01500000000003687 0
+1290 0.3399999999998342 -0.007500000000018436 0
+1291 0.3449999999998534 -0.007500000000018436 0
+1292 0.3449999999998534 -0.01500000000003687 0
+1293 0.3499999999998726 -0.007500000000018436 0
+1294 0.3549999999998821 -0.007500000000018436 0
+1295 0.3549999999998821 -0.01500000000003687 0
+1296 0.3599999999998915 -0.007500000000018436 0
+1297 0.3649999999999043 -0.007500000000018436 0
+1298 0.3649999999999043 -0.01500000000003687 0
+1299 0.3699999999999171 -0.007500000000018436 0
+1300 0.3749999999999342 -0.007500000000018436 0
+1301 0.3749999999999342 -0.01500000000003687 0
+1302 0.3799999999999512 -0.007500000000018436 0
+1303 0.3849999999999607 -0.007500000000018436 0
+1304 0.3849999999999607 -0.01500000000003687 0
+1305 0.3899999999999702 -0.007500000000018436 0
+1306 0.3949999999999851 -0.007500000000018436 0
+1307 0.3949999999999851 -0.01500000000003687 0
+1308 0.004999999999990963 -0.02250000000005964 0
+1309 0.004999999999990963 -0.0300000000000824 0
+1310 0.009999999999981926 -0.02250000000005964 0
+1311 0.01499999999997157 -0.02250000000005964 0
+1312 0.01499999999997157 -0.0300000000000824 0
+1313 0.01999999999996121 -0.02250000000005964 0
+1314 0.02499999999995261 -0.02250000000005964 0
+1315 0.02499999999995261 -0.0300000000000824 0
+1316 0.02999999999994402 -0.02250000000005964 0
+1317 0.03499999999993698 -0.02250000000005964 0
+1318 0.03499999999993698 -0.03000000000008241 0
+1319 0.03999999999992994 -0.02250000000005964 0
+1320 0.04499999999992209 -0.02250000000005964 0
+1321 0.04499999999992209 -0.03000000000008241 0
+1322 0.04999999999991424 -0.02250000000005964 0
+1323 0.05499999999990056 -0.02250000000005964 0
+1324 0.05499999999990056 -0.03000000000008241 0
+1325 0.05999999999988688 -0.02250000000005964 0
+1326 0.06499999999987254 -0.02250000000005964 0
+1327 0.06499999999987254 -0.03000000000008241 0
+1328 0.06999999999985819 -0.02250000000005964 0
+1329 0.07499999999984111 -0.02250000000005964 0
+1330 0.07499999999984112 -0.03000000000008241 0
+1331 0.07999999999982405 -0.02250000000005964 0
+1332 0.0849999999998097 -0.02250000000005964 0
+1333 0.0849999999998097 -0.0300000000000824 0
+1334 0.08999999999979536 -0.02250000000005964 0
+1335 0.094999999999781 -0.02250000000005964 0
+1336 0.094999999999781 -0.03000000000008241 0
+1337 0.09999999999976665 -0.02250000000005964 0
+1338 0.1049999999997523 -0.02250000000005964 0
+1339 0.1049999999997523 -0.03000000000008241 0
+1340 0.109999999999738 -0.02250000000005964 0
+1341 0.1149999999997236 -0.02250000000005964 0
+1342 0.1149999999997236 -0.03000000000008241 0
+1343 0.1199999999997092 -0.02250000000005964 0
+1344 0.1249999999996949 -0.02250000000005964 0
+1345 0.1249999999996949 -0.03000000000008241 0
+1346 0.1299999999996806 -0.02250000000005964 0
+1347 0.1349999999996662 -0.02250000000005964 0
+1348 0.1349999999996662 -0.03000000000008241 0
+1349 0.1399999999996519 -0.02250000000005964 0
+1350 0.1449999999996348 -0.02250000000005964 0
+1351 0.1449999999996348 -0.03000000000008241 0
+1352 0.1499999999996177 -0.02250000000005964 0
+1353 0.1549999999996007 -0.02250000000005964 0
+1354 0.1549999999996006 -0.03000000000008241 0
+1355 0.1599999999995836 -0.02250000000005964 0
+1356 0.1649999999995692 -0.02250000000005964 0
+1357 0.1649999999995692 -0.03000000000008241 0
+1358 0.1699999999995549 -0.02250000000005964 0
+1359 0.1749999999995406 -0.02250000000005964 0
+1360 0.1749999999995405 -0.0300000000000824 0
+1361 0.1799999999995262 -0.02250000000005964 0
+1362 0.1849999999995118 -0.02250000000005964 0
+1363 0.1849999999995118 -0.0300000000000824 0
+1364 0.1899999999994975 -0.02250000000005964 0
+1365 0.1949999999994859 -0.02250000000005964 0
+1366 0.1949999999994859 -0.03000000000008241 0
+1367 0.1999999999994742 -0.02250000000005964 0
+1368 0.2049999999994859 -0.02250000000005964 0
+1369 0.2049999999994859 -0.03000000000008241 0
+1370 0.2099999999994975 -0.02250000000005964 0
+1371 0.2149999999995092 -0.02250000000005964 0
+1372 0.2149999999995092 -0.03000000000008241 0
+1373 0.2199999999995209 -0.02250000000005964 0
+1374 0.2249999999995352 -0.02250000000005964 0
+1375 0.2249999999995352 -0.03000000000008241 0
+1376 0.2299999999995495 -0.02250000000005964 0
+1377 0.2349999999995633 -0.02250000000005964 0
+1378 0.2349999999995633 -0.03000000000008241 0
+1379 0.2399999999995772 -0.02250000000005964 0
+1380 0.2449999999995894 -0.02250000000005964 0
+1381 0.2449999999995894 -0.03000000000008241 0
+1382 0.2499999999996016 -0.02250000000005964 0
+1383 0.2549999999996181 -0.02250000000005964 0
+1384 0.2549999999996181 -0.03000000000008241 0
+1385 0.2599999999996346 -0.02250000000005964 0
+1386 0.2649999999996452 -0.02250000000005964 0
+1387 0.2649999999996452 -0.03000000000008241 0
+1388 0.2699999999996559 -0.02250000000005964 0
+1389 0.2749999999996675 -0.02250000000005964 0
+1390 0.2749999999996675 -0.03000000000008241 0
+1391 0.2799999999996792 -0.02250000000005964 0
+1392 0.2849999999996973 -0.02250000000005964 0
+1393 0.2849999999996973 -0.03000000000008241 0
+1394 0.2899999999997154 -0.02250000000005964 0
+1395 0.2949999999997249 -0.02250000000005964 0
+1396 0.2949999999997249 -0.03000000000008241 0
+1397 0.2999999999997344 -0.02250000000005964 0
+1398 0.3049999999997439 -0.02250000000005964 0
+1399 0.3049999999997439 -0.03000000000008241 0
+1400 0.3099999999997534 -0.02250000000005964 0
+1401 0.3149999999997715 -0.02250000000005964 0
+1402 0.3149999999997715 -0.03000000000008241 0
+1403 0.3199999999997897 -0.02250000000005964 0
+1404 0.3249999999998013 -0.02250000000005964 0
+1405 0.3249999999998013 -0.03000000000008241 0
+1406 0.329999999999813 -0.02250000000005964 0
+1407 0.3349999999998236 -0.02250000000005964 0
+1408 0.3349999999998236 -0.03000000000008241 0
+1409 0.3399999999998342 -0.02250000000005964 0
+1410 0.3449999999998534 -0.02250000000005964 0
+1411 0.3449999999998534 -0.03000000000008241 0
+1412 0.3499999999998726 -0.02250000000005964 0
+1413 0.3549999999998821 -0.02250000000005964 0
+1414 0.3549999999998821 -0.03000000000008241 0
+1415 0.3599999999998915 -0.02250000000005964 0
+1416 0.3649999999999043 -0.02250000000005964 0
+1417 0.3649999999999042 -0.0300000000000824 0
+1418 0.3699999999999171 -0.02250000000005964 0
+1419 0.3749999999999341 -0.02250000000005964 0
+1420 0.3749999999999341 -0.03000000000008241 0
+1421 0.3799999999999512 -0.02250000000005964 0
+1422 0.3849999999999607 -0.02250000000005964 0
+1423 0.3849999999999606 -0.03000000000008241 0
+1424 0.3899999999999701 -0.02250000000005964 0
+1425 0.394999999999985 -0.02250000000005964 0
+1426 0.394999999999985 -0.03000000000008241 0
+1427 0.004999999999990963 -0.0375000000001019 0
+1428 0.004999999999990963 -0.04500000000012139 0
+1429 0.009999999999981926 -0.0375000000001019 0
+1430 0.01499999999997157 -0.0375000000001019 0
+1431 0.01499999999997156 -0.0450000000001214 0
+1432 0.0199999999999612 -0.0375000000001019 0
+1433 0.02499999999995261 -0.0375000000001019 0
+1434 0.0249999999999526 -0.0450000000001214 0
+1435 0.02999999999994401 -0.0375000000001019 0
+1436 0.03499999999993697 -0.0375000000001019 0
+1437 0.03499999999993698 -0.04500000000012139 0
+1438 0.03999999999992994 -0.0375000000001019 0
+1439 0.04499999999992209 -0.0375000000001019 0
+1440 0.04499999999992209 -0.04500000000012139 0
+1441 0.04999999999991424 -0.0375000000001019 0
+1442 0.05499999999990056 -0.0375000000001019 0
+1443 0.05499999999990056 -0.0450000000001214 0
+1444 0.05999999999988688 -0.0375000000001019 0
+1445 0.06499999999987254 -0.03750000000010191 0
+1446 0.06499999999987254 -0.0450000000001214 0
+1447 0.06999999999985819 -0.03750000000010191 0
+1448 0.07499999999984112 -0.0375000000001019 0
+1449 0.07499999999984112 -0.04500000000012139 0
+1450 0.07999999999982406 -0.0375000000001019 0
+1451 0.0849999999998097 -0.03750000000010189 0
+1452 0.0849999999998097 -0.04500000000012138 0
+1453 0.08999999999979536 -0.03750000000010189 0
+1454 0.09499999999978101 -0.0375000000001019 0
+1455 0.09499999999978101 -0.04500000000012139 0
+1456 0.09999999999976665 -0.0375000000001019 0
+1457 0.1049999999997523 -0.0375000000001019 0
+1458 0.1049999999997523 -0.04500000000012139 0
+1459 0.109999999999738 -0.0375000000001019 0
+1460 0.1149999999997236 -0.0375000000001019 0
+1461 0.1149999999997236 -0.04500000000012139 0
+1462 0.1199999999997092 -0.0375000000001019 0
+1463 0.1249999999996949 -0.0375000000001019 0
+1464 0.1249999999996949 -0.04500000000012139 0
+1465 0.1299999999996806 -0.0375000000001019 0
+1466 0.1349999999996662 -0.0375000000001019 0
+1467 0.1349999999996662 -0.04500000000012139 0
+1468 0.1399999999996519 -0.0375000000001019 0
+1469 0.1449999999996348 -0.0375000000001019 0
+1470 0.1449999999996348 -0.04500000000012139 0
+1471 0.1499999999996177 -0.0375000000001019 0
+1472 0.1549999999996007 -0.0375000000001019 0
+1473 0.1549999999996007 -0.04500000000012139 0
+1474 0.1599999999995836 -0.0375000000001019 0
+1475 0.1649999999995692 -0.0375000000001019 0
+1476 0.1649999999995693 -0.04500000000012139 0
+1477 0.1699999999995549 -0.0375000000001019 0
+1478 0.1749999999995406 -0.0375000000001019 0
+1479 0.1749999999995406 -0.04500000000012139 0
+1480 0.1799999999995262 -0.0375000000001019 0
+1481 0.1849999999995118 -0.0375000000001019 0
+1482 0.1849999999995118 -0.04500000000012139 0
+1483 0.1899999999994975 -0.0375000000001019 0
+1484 0.1949999999994858 -0.0375000000001019 0
+1485 0.1949999999994859 -0.04500000000012139 0
+1486 0.1999999999994742 -0.0375000000001019 0
+1487 0.2049999999994859 -0.0375000000001019 0
+1488 0.2049999999994859 -0.04500000000012139 0
+1489 0.2099999999994975 -0.0375000000001019 0
+1490 0.2149999999995092 -0.0375000000001019 0
+1491 0.2149999999995092 -0.04500000000012139 0
+1492 0.2199999999995209 -0.0375000000001019 0
+1493 0.2249999999995352 -0.0375000000001019 0
+1494 0.2249999999995352 -0.0450000000001214 0
+1495 0.2299999999995495 -0.0375000000001019 0
+1496 0.2349999999995633 -0.0375000000001019 0
+1497 0.2349999999995633 -0.0450000000001214 0
+1498 0.2399999999995772 -0.0375000000001019 0
+1499 0.2449999999995894 -0.0375000000001019 0
+1500 0.2449999999995894 -0.04500000000012139 0
+1501 0.2499999999996015 -0.0375000000001019 0
+1502 0.2549999999996181 -0.0375000000001019 0
+1503 0.2549999999996181 -0.04500000000012139 0
+1504 0.2599999999996346 -0.0375000000001019 0
+1505 0.2649999999996453 -0.0375000000001019 0
+1506 0.2649999999996453 -0.04500000000012139 0
+1507 0.2699999999996559 -0.0375000000001019 0
+1508 0.2749999999996675 -0.0375000000001019 0
+1509 0.2749999999996675 -0.04500000000012139 0
+1510 0.2799999999996792 -0.0375000000001019 0
+1511 0.2849999999996973 -0.0375000000001019 0
+1512 0.2849999999996973 -0.04500000000012139 0
+1513 0.2899999999997154 -0.0375000000001019 0
+1514 0.2949999999997249 -0.0375000000001019 0
+1515 0.2949999999997249 -0.04500000000012139 0
+1516 0.2999999999997344 -0.0375000000001019 0
+1517 0.3049999999997439 -0.0375000000001019 0
+1518 0.3049999999997439 -0.04500000000012138 0
+1519 0.3099999999997534 -0.0375000000001019 0
+1520 0.3149999999997715 -0.0375000000001019 0
+1521 0.3149999999997715 -0.04500000000012139 0
+1522 0.3199999999997897 -0.0375000000001019 0
+1523 0.3249999999998013 -0.0375000000001019 0
+1524 0.3249999999998013 -0.04500000000012139 0
+1525 0.329999999999813 -0.0375000000001019 0
+1526 0.3349999999998236 -0.0375000000001019 0
+1527 0.3349999999998236 -0.04500000000012138 0
+1528 0.3399999999998341 -0.0375000000001019 0
+1529 0.3449999999998534 -0.0375000000001019 0
+1530 0.3449999999998534 -0.04500000000012139 0
+1531 0.3499999999998726 -0.0375000000001019 0
+1532 0.3549999999998821 -0.0375000000001019 0
+1533 0.3549999999998821 -0.04500000000012139 0
+1534 0.3599999999998915 -0.03750000000010189 0
+1535 0.3649999999999043 -0.03750000000010189 0
+1536 0.3649999999999043 -0.04500000000012139 0
+1537 0.3699999999999171 -0.0375000000001019 0
+1538 0.3749999999999341 -0.0375000000001019 0
+1539 0.3749999999999341 -0.04500000000012139 0
+1540 0.3799999999999512 -0.0375000000001019 0
+1541 0.3849999999999606 -0.03750000000010189 0
+1542 0.3849999999999606 -0.04500000000012139 0
+1543 0.3899999999999701 -0.0375000000001019 0
+1544 0.3949999999999851 -0.0375000000001019 0
+1545 0.3949999999999851 -0.04500000000012139 0
+1546 0.004999999999990963 -0.05250000000013605 0
+1547 0.004999999999990963 -0.06000000000015071 0
+1548 0.009999999999981926 -0.05250000000013605 0
+1549 0.01499999999997156 -0.05250000000013606 0
+1550 0.01499999999997157 -0.0600000000001507 0
+1551 0.0199999999999612 -0.05250000000013605 0
+1552 0.02499999999995261 -0.05250000000013605 0
+1553 0.02499999999995261 -0.0600000000001507 0
+1554 0.02999999999994401 -0.05250000000013606 0
+1555 0.03499999999993698 -0.05250000000013605 0
+1556 0.03499999999993697 -0.06000000000015071 0
+1557 0.03999999999992994 -0.05250000000013605 0
+1558 0.04499999999992209 -0.05250000000013605 0
+1559 0.04499999999992209 -0.06000000000015071 0
+1560 0.04999999999991424 -0.05250000000013605 0
+1561 0.05499999999990056 -0.05250000000013606 0
+1562 0.05499999999990056 -0.06000000000015071 0
+1563 0.05999999999988688 -0.05250000000013606 0
+1564 0.06499999999987254 -0.05250000000013606 0
+1565 0.06499999999987254 -0.06000000000015071 0
+1566 0.06999999999985819 -0.05250000000013606 0
+1567 0.07499999999984112 -0.05250000000013605 0
+1568 0.07499999999984111 -0.06000000000015071 0
+1569 0.07999999999982405 -0.05250000000013604 0
+1570 0.0849999999998097 -0.05250000000013604 0
+1571 0.0849999999998097 -0.06000000000015071 0
+1572 0.08999999999979536 -0.05250000000013605 0
+1573 0.09499999999978101 -0.05250000000013606 0
+1574 0.09499999999978101 -0.06000000000015071 0
+1575 0.09999999999976666 -0.05250000000013605 0
+1576 0.1049999999997523 -0.05250000000013604 0
+1577 0.1049999999997523 -0.0600000000001507 0
+1578 0.109999999999738 -0.05250000000013604 0
+1579 0.1149999999997236 -0.05250000000013605 0
+1580 0.1149999999997236 -0.0600000000001507 0
+1581 0.1199999999997092 -0.05250000000013605 0
+1582 0.1249999999996949 -0.05250000000013605 0
+1583 0.1249999999996949 -0.0600000000001507 0
+1584 0.1299999999996806 -0.05250000000013604 0
+1585 0.1349999999996662 -0.05250000000013604 0
+1586 0.1349999999996662 -0.06000000000015071 0
+1587 0.1399999999996519 -0.05250000000013605 0
+1588 0.1449999999996348 -0.05250000000013606 0
+1589 0.1449999999996348 -0.06000000000015071 0
+1590 0.1499999999996177 -0.05250000000013606 0
+1591 0.1549999999996007 -0.05250000000013605 0
+1592 0.1549999999996007 -0.06000000000015071 0
+1593 0.1599999999995836 -0.05250000000013605 0
+1594 0.1649999999995693 -0.05250000000013606 0
+1595 0.1649999999995692 -0.06000000000015072 0
+1596 0.1699999999995549 -0.05250000000013606 0
+1597 0.1749999999995406 -0.05250000000013606 0
+1598 0.1749999999995406 -0.06000000000015072 0
+1599 0.1799999999995262 -0.05250000000013605 0
+1600 0.1849999999995118 -0.05250000000013606 0
+1601 0.1849999999995118 -0.0600000000001507 0
+1602 0.1899999999994975 -0.05250000000013605 0
+1603 0.1949999999994859 -0.05250000000013604 0
+1604 0.1949999999994859 -0.0600000000001507 0
+1605 0.1999999999994742 -0.05250000000013605 0
+1606 0.2049999999994859 -0.05250000000013605 0
+1607 0.2049999999994859 -0.06000000000015071 0
+1608 0.2099999999994975 -0.05250000000013605 0
+1609 0.2149999999995092 -0.05250000000013605 0
+1610 0.2149999999995092 -0.06000000000015071 0
+1611 0.2199999999995209 -0.05250000000013605 0
+1612 0.2249999999995352 -0.05250000000013606 0
+1613 0.2249999999995352 -0.06000000000015071 0
+1614 0.2299999999995495 -0.05250000000013606 0
+1615 0.2349999999995633 -0.05250000000013606 0
+1616 0.2349999999995633 -0.06000000000015071 0
+1617 0.2399999999995772 -0.05250000000013606 0
+1618 0.2449999999995894 -0.05250000000013605 0
+1619 0.2449999999995894 -0.06000000000015071 0
+1620 0.2499999999996015 -0.05250000000013605 0
+1621 0.2549999999996181 -0.05250000000013605 0
+1622 0.2549999999996181 -0.06000000000015071 0
+1623 0.2599999999996346 -0.05250000000013605 0
+1624 0.2649999999996452 -0.05250000000013605 0
+1625 0.2649999999996452 -0.06000000000015071 0
+1626 0.2699999999996558 -0.05250000000013605 0
+1627 0.2749999999996675 -0.05250000000013605 0
+1628 0.2749999999996674 -0.06000000000015071 0
+1629 0.2799999999996791 -0.05250000000013605 0
+1630 0.2849999999996972 -0.05250000000013605 0
+1631 0.2849999999996972 -0.0600000000001507 0
+1632 0.2899999999997154 -0.05250000000013605 0
+1633 0.2949999999997249 -0.05250000000013604 0
+1634 0.2949999999997249 -0.0600000000001507 0
+1635 0.2999999999997344 -0.05250000000013604 0
+1636 0.3049999999997439 -0.05250000000013604 0
+1637 0.3049999999997439 -0.0600000000001507 0
+1638 0.3099999999997534 -0.05250000000013604 0
+1639 0.3149999999997715 -0.05250000000013605 0
+1640 0.3149999999997716 -0.06000000000015071 0
+1641 0.3199999999997897 -0.05250000000013605 0
+1642 0.3249999999998014 -0.05250000000013605 0
+1643 0.3249999999998013 -0.06000000000015071 0
+1644 0.329999999999813 -0.05250000000013605 0
+1645 0.3349999999998236 -0.05250000000013605 0
+1646 0.3349999999998236 -0.06000000000015071 0
+1647 0.3399999999998341 -0.05250000000013604 0
+1648 0.3449999999998534 -0.05250000000013605 0
+1649 0.3449999999998534 -0.06000000000015071 0
+1650 0.3499999999998726 -0.05250000000013605 0
+1651 0.3549999999998821 -0.05250000000013605 0
+1652 0.3549999999998821 -0.06000000000015071 0
+1653 0.3599999999998915 -0.05250000000013605 0
+1654 0.3649999999999043 -0.05250000000013605 0
+1655 0.3649999999999043 -0.06000000000015071 0
+1656 0.3699999999999171 -0.05250000000013605 0
+1657 0.3749999999999341 -0.05250000000013605 0
+1658 0.3749999999999342 -0.06000000000015071 0
+1659 0.3799999999999512 -0.05250000000013604 0
+1660 0.3849999999999607 -0.05250000000013605 0
+1661 0.3849999999999607 -0.06000000000015071 0
+1662 0.3899999999999702 -0.05250000000013605 0
+1663 0.394999999999985 -0.05250000000013605 0
+1664 0.394999999999985 -0.06000000000015071 0
+1665 0.004999999999990963 -0.06750000000017023 0
+1666 0.004999999999990963 -0.07500000000018975 0
+1667 0.009999999999981926 -0.06750000000017023 0
+1668 0.01499999999997157 -0.06750000000017023 0
+1669 0.01499999999997157 -0.07500000000018976 0
+1670 0.01999999999996121 -0.06750000000017023 0
+1671 0.02499999999995261 -0.06750000000017024 0
+1672 0.02499999999995261 -0.07500000000018976 0
+1673 0.02999999999994401 -0.06750000000017023 0
+1674 0.03499999999993698 -0.06750000000017023 0
+1675 0.03499999999993698 -0.07500000000018975 0
+1676 0.03999999999992994 -0.06750000000017023 0
+1677 0.04499999999992209 -0.06750000000017023 0
+1678 0.04499999999992209 -0.07500000000018975 0
+1679 0.04999999999991424 -0.06750000000017023 0
+1680 0.05499999999990056 -0.06750000000017023 0
+1681 0.05499999999990056 -0.07500000000018975 0
+1682 0.05999999999988688 -0.06750000000017023 0
+1683 0.06499999999987254 -0.06750000000017023 0
+1684 0.06499999999987254 -0.07500000000018975 0
+1685 0.06999999999985819 -0.06750000000017023 0
+1686 0.07499999999984111 -0.06750000000017023 0
+1687 0.07499999999984112 -0.07500000000018975 0
+1688 0.07999999999982405 -0.06750000000017023 0
+1689 0.0849999999998097 -0.06750000000017023 0
+1690 0.0849999999998097 -0.07500000000018975 0
+1691 0.08999999999979536 -0.06750000000017023 0
+1692 0.09499999999978101 -0.06750000000017023 0
+1693 0.09499999999978101 -0.07500000000018975 0
+1694 0.09999999999976666 -0.06750000000017023 0
+1695 0.1049999999997523 -0.06750000000017023 0
+1696 0.1049999999997523 -0.07500000000018975 0
+1697 0.109999999999738 -0.06750000000017023 0
+1698 0.1149999999997236 -0.06750000000017023 0
+1699 0.1149999999997236 -0.07500000000018975 0
+1700 0.1199999999997092 -0.06750000000017023 0
+1701 0.1249999999996949 -0.06750000000017023 0
+1702 0.1249999999996949 -0.07500000000018975 0
+1703 0.1299999999996806 -0.06750000000017023 0
+1704 0.1349999999996662 -0.06750000000017023 0
+1705 0.1349999999996662 -0.07500000000018975 0
+1706 0.1399999999996519 -0.06750000000017023 0
+1707 0.1449999999996348 -0.06750000000017023 0
+1708 0.1449999999996348 -0.07500000000018975 0
+1709 0.1499999999996177 -0.06750000000017023 0
+1710 0.1549999999996007 -0.06750000000017023 0
+1711 0.1549999999996007 -0.07500000000018975 0
+1712 0.1599999999995836 -0.06750000000017023 0
+1713 0.1649999999995692 -0.06750000000017023 0
+1714 0.1649999999995692 -0.07500000000018975 0
+1715 0.1699999999995549 -0.06750000000017023 0
+1716 0.1749999999995406 -0.06750000000017023 0
+1717 0.1749999999995406 -0.07500000000018975 0
+1718 0.1799999999995262 -0.06750000000017023 0
+1719 0.1849999999995118 -0.06750000000017023 0
+1720 0.1849999999995118 -0.07500000000018975 0
+1721 0.1899999999994975 -0.06750000000017023 0
+1722 0.1949999999994859 -0.06750000000017023 0
+1723 0.1949999999994859 -0.07500000000018975 0
+1724 0.1999999999994742 -0.06750000000017023 0
+1725 0.2049999999994859 -0.06750000000017023 0
+1726 0.2049999999994859 -0.07500000000018975 0
+1727 0.2099999999994975 -0.06750000000017023 0
+1728 0.2149999999995092 -0.06750000000017023 0
+1729 0.2149999999995092 -0.07500000000018975 0
+1730 0.2199999999995209 -0.06750000000017023 0
+1731 0.2249999999995352 -0.06750000000017023 0
+1732 0.2249999999995352 -0.07500000000018975 0
+1733 0.2299999999995495 -0.06750000000017023 0
+1734 0.2349999999995633 -0.06750000000017023 0
+1735 0.2349999999995633 -0.07500000000018975 0
+1736 0.2399999999995772 -0.06750000000017023 0
+1737 0.2449999999995894 -0.06750000000017023 0
+1738 0.2449999999995894 -0.07500000000018975 0
+1739 0.2499999999996015 -0.06750000000017023 0
+1740 0.2549999999996181 -0.06750000000017023 0
+1741 0.2549999999996181 -0.07500000000018975 0
+1742 0.2599999999996346 -0.06750000000017023 0
+1743 0.2649999999996452 -0.06750000000017023 0
+1744 0.2649999999996452 -0.07500000000018975 0
+1745 0.2699999999996558 -0.06750000000017023 0
+1746 0.2749999999996675 -0.06750000000017023 0
+1747 0.2749999999996675 -0.07500000000018975 0
+1748 0.2799999999996791 -0.06750000000017023 0
+1749 0.2849999999996973 -0.06750000000017023 0
+1750 0.2849999999996973 -0.07500000000018975 0
+1751 0.2899999999997154 -0.06750000000017023 0
+1752 0.2949999999997249 -0.06750000000017023 0
+1753 0.2949999999997249 -0.07500000000018975 0
+1754 0.2999999999997344 -0.06750000000017023 0
+1755 0.3049999999997439 -0.06750000000017023 0
+1756 0.3049999999997439 -0.07500000000018975 0
+1757 0.3099999999997534 -0.06750000000017023 0
+1758 0.3149999999997716 -0.06750000000017023 0
+1759 0.3149999999997715 -0.07500000000018975 0
+1760 0.3199999999997897 -0.06750000000017023 0
+1761 0.3249999999998013 -0.06750000000017023 0
+1762 0.3249999999998013 -0.07500000000018975 0
+1763 0.329999999999813 -0.06750000000017023 0
+1764 0.3349999999998236 -0.06750000000017023 0
+1765 0.3349999999998236 -0.07500000000018975 0
+1766 0.3399999999998341 -0.06750000000017023 0
+1767 0.3449999999998534 -0.06750000000017023 0
+1768 0.3449999999998534 -0.07500000000018975 0
+1769 0.3499999999998726 -0.06750000000017023 0
+1770 0.3549999999998821 -0.06750000000017023 0
+1771 0.3549999999998821 -0.07500000000018976 0
+1772 0.3599999999998915 -0.06750000000017023 0
+1773 0.3649999999999043 -0.06750000000017023 0
+1774 0.3649999999999043 -0.07500000000018975 0
+1775 0.3699999999999171 -0.06750000000017023 0
+1776 0.3749999999999342 -0.06750000000017023 0
+1777 0.3749999999999342 -0.07500000000018975 0
+1778 0.3799999999999513 -0.06750000000017023 0
+1779 0.3849999999999607 -0.06750000000017023 0
+1780 0.3849999999999607 -0.07500000000018975 0
+1781 0.3899999999999701 -0.06750000000017023 0
+1782 0.394999999999985 -0.06750000000017023 0
+1783 0.394999999999985 -0.07500000000018975 0
+1784 0.004999999999990963 -0.08250000000020927 0
+1785 0.004999999999990963 -0.09000000000022879 0
+1786 0.009999999999981926 -0.08250000000020927 0
+1787 0.01499999999997157 -0.08250000000020927 0
+1788 0.01499999999997157 -0.09000000000022879 0
+1789 0.01999999999996121 -0.08250000000020928 0
+1790 0.02499999999995261 -0.08250000000020927 0
+1791 0.02499999999995261 -0.09000000000022879 0
+1792 0.02999999999994401 -0.08250000000020927 0
+1793 0.03499999999993698 -0.08250000000020927 0
+1794 0.03499999999993698 -0.09000000000022879 0
+1795 0.03999999999992994 -0.08250000000020927 0
+1796 0.04499999999992209 -0.08250000000020927 0
+1797 0.04499999999992209 -0.09000000000022879 0
+1798 0.04999999999991424 -0.08250000000020927 0
+1799 0.05499999999990056 -0.08250000000020927 0
+1800 0.05499999999990056 -0.09000000000022879 0
+1801 0.05999999999988688 -0.08250000000020928 0
+1802 0.06499999999987254 -0.08250000000020928 0
+1803 0.06499999999987254 -0.09000000000022879 0
+1804 0.06999999999985819 -0.08250000000020927 0
+1805 0.07499999999984112 -0.08250000000020927 0
+1806 0.07499999999984111 -0.09000000000022879 0
+1807 0.07999999999982405 -0.08250000000020928 0
+1808 0.0849999999998097 -0.08250000000020928 0
+1809 0.0849999999998097 -0.09000000000022879 0
+1810 0.08999999999979536 -0.08250000000020927 0
+1811 0.09499999999978101 -0.08250000000020927 0
+1812 0.09499999999978101 -0.09000000000022879 0
+1813 0.09999999999976666 -0.08250000000020927 0
+1814 0.1049999999997523 -0.08250000000020927 0
+1815 0.1049999999997523 -0.0900000000002288 0
+1816 0.109999999999738 -0.08250000000020928 0
+1817 0.1149999999997236 -0.08250000000020928 0
+1818 0.1149999999997236 -0.09000000000022881 0
+1819 0.1199999999997092 -0.08250000000020927 0
+1820 0.1249999999996949 -0.08250000000020927 0
+1821 0.1249999999996949 -0.09000000000022879 0
+1822 0.1299999999996806 -0.08250000000020927 0
+1823 0.1349999999996662 -0.08250000000020927 0
+1824 0.1349999999996662 -0.09000000000022879 0
+1825 0.1399999999996519 -0.08250000000020927 0
+1826 0.1449999999996348 -0.08250000000020927 0
+1827 0.1449999999996348 -0.09000000000022879 0
+1828 0.1499999999996177 -0.08250000000020927 0
+1829 0.1549999999996007 -0.08250000000020927 0
+1830 0.1549999999996007 -0.09000000000022879 0
+1831 0.1599999999995836 -0.08250000000020927 0
+1832 0.1649999999995692 -0.08250000000020927 0
+1833 0.1649999999995692 -0.0900000000002288 0
+1834 0.1699999999995549 -0.08250000000020928 0
+1835 0.1749999999995406 -0.0825000000002093 0
+1836 0.1749999999995406 -0.0900000000002288 0
+1837 0.1799999999995262 -0.08250000000020927 0
+1838 0.1849999999995118 -0.08250000000020927 0
+1839 0.1849999999995119 -0.09000000000022879 0
+1840 0.1899999999994975 -0.08250000000020927 0
+1841 0.1949999999994859 -0.08250000000020927 0
+1842 0.1949999999994859 -0.09000000000022879 0
+1843 0.1999999999994742 -0.08250000000020927 0
+1844 0.2049999999994859 -0.08250000000020927 0
+1845 0.2049999999994859 -0.0900000000002288 0
+1846 0.2099999999994975 -0.08250000000020928 0
+1847 0.2149999999995092 -0.08250000000020928 0
+1848 0.2149999999995092 -0.09000000000022881 0
+1849 0.2199999999995209 -0.08250000000020928 0
+1850 0.2249999999995352 -0.08250000000020928 0
+1851 0.2249999999995352 -0.09000000000022881 0
+1852 0.2299999999995495 -0.08250000000020928 0
+1853 0.2349999999995633 -0.08250000000020928 0
+1854 0.2349999999995634 -0.0900000000002288 0
+1855 0.2399999999995772 -0.08250000000020927 0
+1856 0.2449999999995894 -0.08250000000020927 0
+1857 0.2449999999995895 -0.09000000000022879 0
+1858 0.2499999999996016 -0.08250000000020927 0
+1859 0.2549999999996181 -0.08250000000020927 0
+1860 0.2549999999996181 -0.09000000000022879 0
+1861 0.2599999999996346 -0.08250000000020927 0
+1862 0.2649999999996452 -0.08250000000020927 0
+1863 0.2649999999996452 -0.09000000000022879 0
+1864 0.2699999999996559 -0.08250000000020927 0
+1865 0.2749999999996675 -0.08250000000020927 0
+1866 0.2749999999996675 -0.09000000000022879 0
+1867 0.2799999999996792 -0.08250000000020927 0
+1868 0.2849999999996973 -0.08250000000020927 0
+1869 0.2849999999996972 -0.09000000000022879 0
+1870 0.2899999999997154 -0.08250000000020927 0
+1871 0.2949999999997248 -0.08250000000020927 0
+1872 0.2949999999997248 -0.09000000000022877 0
+1873 0.2999999999997344 -0.08250000000020927 0
+1874 0.3049999999997439 -0.08250000000020927 0
+1875 0.3049999999997438 -0.09000000000022877 0
+1876 0.3099999999997534 -0.08250000000020927 0
+1877 0.3149999999997715 -0.08250000000020927 0
+1878 0.3149999999997715 -0.09000000000022879 0
+1879 0.3199999999997897 -0.08250000000020927 0
+1880 0.3249999999998013 -0.08250000000020927 0
+1881 0.3249999999998013 -0.09000000000022879 0
+1882 0.329999999999813 -0.08250000000020927 0
+1883 0.3349999999998236 -0.08250000000020927 0
+1884 0.3349999999998236 -0.09000000000022879 0
+1885 0.3399999999998342 -0.08250000000020927 0
+1886 0.3449999999998534 -0.08250000000020927 0
+1887 0.3449999999998534 -0.09000000000022879 0
+1888 0.3499999999998726 -0.08250000000020927 0
+1889 0.3549999999998821 -0.08250000000020927 0
+1890 0.3549999999998821 -0.09000000000022879 0
+1891 0.3599999999998915 -0.08250000000020927 0
+1892 0.3649999999999042 -0.08250000000020927 0
+1893 0.3649999999999043 -0.09000000000022879 0
+1894 0.3699999999999171 -0.08250000000020927 0
+1895 0.3749999999999342 -0.08250000000020927 0
+1896 0.3749999999999342 -0.09000000000022879 0
+1897 0.3799999999999513 -0.08250000000020927 0
+1898 0.3849999999999607 -0.08250000000020927 0
+1899 0.3849999999999607 -0.09000000000022879 0
+1900 0.3899999999999702 -0.08250000000020927 0
+1901 0.3949999999999851 -0.08250000000020927 0
+1902 0.3949999999999851 -0.09000000000022879 0
+1903 0.004999999999990963 -0.097500000000251 0
+1904 0.004999999999990963 -0.1050000000002732 0
+1905 0.009999999999981926 -0.097500000000251 0
+1906 0.01499999999997157 -0.09750000000025101 0
+1907 0.01499999999997157 -0.1050000000002732 0
+1908 0.01999999999996121 -0.09750000000025103 0
+1909 0.02499999999995261 -0.09750000000025103 0
+1910 0.02499999999995261 -0.1050000000002732 0
+1911 0.02999999999994401 -0.09750000000025101 0
+1912 0.03499999999993698 -0.09750000000025101 0
+1913 0.03499999999993698 -0.1050000000002732 0
+1914 0.03999999999992994 -0.097500000000251 0
+1915 0.04499999999992209 -0.097500000000251 0
+1916 0.04499999999992209 -0.1050000000002732 0
+1917 0.04999999999991424 -0.097500000000251 0
+1918 0.05499999999990056 -0.09750000000025103 0
+1919 0.05499999999990056 -0.1050000000002732 0
+1920 0.05999999999988688 -0.09750000000025101 0
+1921 0.06499999999987254 -0.097500000000251 0
+1922 0.06499999999987254 -0.1050000000002732 0
+1923 0.06999999999985819 -0.097500000000251 0
+1924 0.07499999999984111 -0.09750000000025103 0
+1925 0.07499999999984112 -0.1050000000002732 0
+1926 0.07999999999982405 -0.09750000000025103 0
+1927 0.0849999999998097 -0.097500000000251 0
+1928 0.0849999999998097 -0.1050000000002732 0
+1929 0.08999999999979536 -0.09750000000025098 0
+1930 0.09499999999978101 -0.097500000000251 0
+1931 0.09499999999978101 -0.1050000000002732 0
+1932 0.09999999999976666 -0.09750000000025101 0
+1933 0.1049999999997523 -0.09750000000025103 0
+1934 0.1049999999997523 -0.1050000000002732 0
+1935 0.109999999999738 -0.09750000000025103 0
+1936 0.1149999999997236 -0.09750000000025101 0
+1937 0.1149999999997236 -0.1050000000002732 0
+1938 0.1199999999997092 -0.09750000000025103 0
+1939 0.1249999999996949 -0.09750000000025101 0
+1940 0.1249999999996949 -0.1050000000002732 0
+1941 0.1299999999996806 -0.09750000000025101 0
+1942 0.1349999999996662 -0.09750000000025101 0
+1943 0.1349999999996662 -0.1050000000002732 0
+1944 0.1399999999996519 -0.09750000000025101 0
+1945 0.1449999999996348 -0.09750000000025101 0
+1946 0.1449999999996348 -0.1050000000002732 0
+1947 0.1499999999996177 -0.09750000000025101 0
+1948 0.1549999999996007 -0.09750000000025101 0
+1949 0.1549999999996007 -0.1050000000002732 0
+1950 0.1599999999995836 -0.09750000000025101 0
+1951 0.1649999999995692 -0.09750000000025103 0
+1952 0.1649999999995692 -0.1050000000002732 0
+1953 0.1699999999995549 -0.09750000000025103 0
+1954 0.1749999999995406 -0.09750000000025101 0
+1955 0.1749999999995406 -0.1050000000002732 0
+1956 0.1799999999995262 -0.09750000000025101 0
+1957 0.1849999999995119 -0.09750000000025101 0
+1958 0.1849999999995118 -0.1050000000002732 0
+1959 0.1899999999994975 -0.09750000000025101 0
+1960 0.1949999999994858 -0.09750000000025101 0
+1961 0.1949999999994858 -0.1050000000002732 0
+1962 0.1999999999994742 -0.09750000000025101 0
+1963 0.2049999999994859 -0.09750000000025103 0
+1964 0.2049999999994859 -0.1050000000002732 0
+1965 0.2099999999994975 -0.09750000000025103 0
+1966 0.2149999999995092 -0.09750000000025103 0
+1967 0.2149999999995092 -0.1050000000002732 0
+1968 0.2199999999995209 -0.09750000000025103 0
+1969 0.2249999999995352 -0.09750000000025103 0
+1970 0.2249999999995352 -0.1050000000002732 0
+1971 0.2299999999995495 -0.09750000000025103 0
+1972 0.2349999999995634 -0.09750000000025101 0
+1973 0.2349999999995634 -0.1050000000002732 0
+1974 0.2399999999995773 -0.09750000000025101 0
+1975 0.2449999999995894 -0.09750000000025101 0
+1976 0.2449999999995894 -0.1050000000002732 0
+1977 0.2499999999996016 -0.09750000000025101 0
+1978 0.2549999999996181 -0.09750000000025101 0
+1979 0.2549999999996181 -0.1050000000002732 0
+1980 0.2599999999996346 -0.09750000000025101 0
+1981 0.2649999999996452 -0.09750000000025101 0
+1982 0.2649999999996452 -0.1050000000002732 0
+1983 0.2699999999996559 -0.09750000000025101 0
+1984 0.2749999999996675 -0.09750000000025101 0
+1985 0.2749999999996675 -0.1050000000002732 0
+1986 0.2799999999996791 -0.09750000000025101 0
+1987 0.2849999999996972 -0.097500000000251 0
+1988 0.2849999999996973 -0.1050000000002732 0
+1989 0.2899999999997154 -0.097500000000251 0
+1990 0.2949999999997249 -0.097500000000251 0
+1991 0.2949999999997249 -0.1050000000002732 0
+1992 0.2999999999997344 -0.097500000000251 0
+1993 0.3049999999997438 -0.097500000000251 0
+1994 0.3049999999997439 -0.1050000000002732 0
+1995 0.3099999999997534 -0.097500000000251 0
+1996 0.3149999999997715 -0.09750000000025101 0
+1997 0.3149999999997715 -0.1050000000002732 0
+1998 0.3199999999997897 -0.09750000000025101 0
+1999 0.3249999999998013 -0.09750000000025101 0
+2000 0.3249999999998013 -0.1050000000002732 0
+2001 0.329999999999813 -0.09750000000025101 0
+2002 0.3349999999998236 -0.09750000000025101 0
+2003 0.3349999999998236 -0.1050000000002732 0
+2004 0.3399999999998342 -0.09750000000025101 0
+2005 0.3449999999998534 -0.09750000000025101 0
+2006 0.3449999999998534 -0.1050000000002732 0
+2007 0.3499999999998726 -0.09750000000025101 0
+2008 0.354999999999882 -0.097500000000251 0
+2009 0.3549999999998821 -0.1050000000002732 0
+2010 0.3599999999998915 -0.097500000000251 0
+2011 0.3649999999999043 -0.09750000000025101 0
+2012 0.3649999999999043 -0.1050000000002732 0
+2013 0.3699999999999171 -0.09750000000025101 0
+2014 0.3749999999999342 -0.097500000000251 0
+2015 0.3749999999999342 -0.1050000000002732 0
+2016 0.3799999999999513 -0.097500000000251 0
+2017 0.3849999999999607 -0.09750000000025101 0
+2018 0.3849999999999607 -0.1050000000002732 0
+2019 0.3899999999999702 -0.097500000000251 0
+2020 0.3949999999999851 -0.097500000000251 0
+2021 0.3949999999999851 -0.1050000000002732 0
+2022 0.004999999999990963 -0.1125000000002922 0
+2023 0.004999999999990963 -0.1200000000003112 0
+2024 0.009999999999981926 -0.1125000000002922 0
+2025 0.01499999999997157 -0.1125000000002922 0
+2026 0.01499999999997157 -0.1200000000003112 0
+2027 0.01999999999996121 -0.1125000000002922 0
+2028 0.02499999999995261 -0.1125000000002922 0
+2029 0.02499999999995262 -0.1200000000003112 0
+2030 0.02999999999994402 -0.1125000000002922 0
+2031 0.03499999999993698 -0.1125000000002922 0
+2032 0.03499999999993698 -0.1200000000003112 0
+2033 0.03999999999992994 -0.1125000000002922 0
+2034 0.04499999999992209 -0.1125000000002922 0
+2035 0.04499999999992209 -0.1200000000003112 0
+2036 0.04999999999991424 -0.1125000000002922 0
+2037 0.05499999999990056 -0.1125000000002922 0
+2038 0.05499999999990056 -0.1200000000003112 0
+2039 0.05999999999988688 -0.1125000000002922 0
+2040 0.06499999999987254 -0.1125000000002922 0
+2041 0.06499999999987254 -0.1200000000003112 0
+2042 0.06999999999985819 -0.1125000000002922 0
+2043 0.07499999999984112 -0.1125000000002922 0
+2044 0.07499999999984112 -0.1200000000003112 0
+2045 0.07999999999982406 -0.1125000000002922 0
+2046 0.0849999999998097 -0.1125000000002922 0
+2047 0.0849999999998097 -0.1200000000003112 0
+2048 0.08999999999979536 -0.1125000000002922 0
+2049 0.09499999999978101 -0.1125000000002922 0
+2050 0.09499999999978101 -0.1200000000003112 0
+2051 0.09999999999976666 -0.1125000000002922 0
+2052 0.1049999999997523 -0.1125000000002922 0
+2053 0.1049999999997523 -0.1200000000003112 0
+2054 0.109999999999738 -0.1125000000002922 0
+2055 0.1149999999997236 -0.1125000000002922 0
+2056 0.1149999999997236 -0.1200000000003112 0
+2057 0.1199999999997092 -0.1125000000002922 0
+2058 0.1249999999996949 -0.1125000000002922 0
+2059 0.1249999999996949 -0.1200000000003112 0
+2060 0.1299999999996806 -0.1125000000002922 0
+2061 0.1349999999996662 -0.1125000000002922 0
+2062 0.1349999999996662 -0.1200000000003112 0
+2063 0.1399999999996519 -0.1125000000002922 0
+2064 0.1449999999996348 -0.1125000000002922 0
+2065 0.1449999999996348 -0.1200000000003112 0
+2066 0.1499999999996177 -0.1125000000002922 0
+2067 0.1549999999996007 -0.1125000000002922 0
+2068 0.1549999999996007 -0.1200000000003112 0
+2069 0.1599999999995836 -0.1125000000002922 0
+2070 0.1649999999995692 -0.1125000000002922 0
+2071 0.1649999999995692 -0.1200000000003112 0
+2072 0.1699999999995549 -0.1125000000002922 0
+2073 0.1749999999995406 -0.1125000000002922 0
+2074 0.1749999999995406 -0.1200000000003112 0
+2075 0.1799999999995262 -0.1125000000002922 0
+2076 0.1849999999995118 -0.1125000000002922 0
+2077 0.1849999999995118 -0.1200000000003112 0
+2078 0.1899999999994975 -0.1125000000002922 0
+2079 0.1949999999994858 -0.1125000000002922 0
+2080 0.1949999999994858 -0.1200000000003112 0
+2081 0.1999999999994742 -0.1125000000002922 0
+2082 0.2049999999994859 -0.1125000000002922 0
+2083 0.2049999999994859 -0.1200000000003112 0
+2084 0.2099999999994975 -0.1125000000002922 0
+2085 0.2149999999995092 -0.1125000000002922 0
+2086 0.2149999999995092 -0.1200000000003112 0
+2087 0.2199999999995209 -0.1125000000002922 0
+2088 0.2249999999995352 -0.1125000000002922 0
+2089 0.2249999999995352 -0.1200000000003112 0
+2090 0.2299999999995495 -0.1125000000002922 0
+2091 0.2349999999995634 -0.1125000000002922 0
+2092 0.2349999999995633 -0.1200000000003112 0
+2093 0.2399999999995772 -0.1125000000002922 0
+2094 0.2449999999995893 -0.1125000000002922 0
+2095 0.2449999999995894 -0.1200000000003112 0
+2096 0.2499999999996015 -0.1125000000002922 0
+2097 0.2549999999996181 -0.1125000000002922 0
+2098 0.2549999999996181 -0.1200000000003112 0
+2099 0.2599999999996346 -0.1125000000002922 0
+2100 0.2649999999996452 -0.1125000000002922 0
+2101 0.2649999999996452 -0.1200000000003112 0
+2102 0.2699999999996559 -0.1125000000002922 0
+2103 0.2749999999996675 -0.1125000000002922 0
+2104 0.2749999999996675 -0.1200000000003112 0
+2105 0.2799999999996792 -0.1125000000002922 0
+2106 0.2849999999996973 -0.1125000000002922 0
+2107 0.2849999999996973 -0.1200000000003112 0
+2108 0.2899999999997154 -0.1125000000002922 0
+2109 0.2949999999997249 -0.1125000000002922 0
+2110 0.2949999999997249 -0.1200000000003112 0
+2111 0.2999999999997344 -0.1125000000002922 0
+2112 0.3049999999997439 -0.1125000000002922 0
+2113 0.3049999999997439 -0.1200000000003112 0
+2114 0.3099999999997534 -0.1125000000002922 0
+2115 0.3149999999997715 -0.1125000000002922 0
+2116 0.3149999999997715 -0.1200000000003112 0
+2117 0.3199999999997897 -0.1125000000002922 0
+2118 0.3249999999998013 -0.1125000000002922 0
+2119 0.3249999999998013 -0.1200000000003112 0
+2120 0.329999999999813 -0.1125000000002922 0
+2121 0.3349999999998236 -0.1125000000002922 0
+2122 0.3349999999998236 -0.1200000000003112 0
+2123 0.3399999999998342 -0.1125000000002922 0
+2124 0.3449999999998534 -0.1125000000002922 0
+2125 0.3449999999998534 -0.1200000000003112 0
+2126 0.3499999999998726 -0.1125000000002922 0
+2127 0.3549999999998821 -0.1125000000002922 0
+2128 0.3549999999998821 -0.1200000000003112 0
+2129 0.3599999999998915 -0.1125000000002922 0
+2130 0.3649999999999043 -0.1125000000002922 0
+2131 0.3649999999999043 -0.1200000000003112 0
+2132 0.3699999999999171 -0.1125000000002922 0
+2133 0.3749999999999342 -0.1125000000002922 0
+2134 0.3749999999999342 -0.1200000000003112 0
+2135 0.3799999999999513 -0.1125000000002922 0
+2136 0.3849999999999607 -0.1125000000002922 0
+2137 0.3849999999999607 -0.1200000000003112 0
+2138 0.3899999999999702 -0.1125000000002922 0
+2139 0.3949999999999851 -0.1125000000002922 0
+2140 0.3949999999999851 -0.1200000000003112 0
+2141 0.004999999999990963 -0.1275000000003296 0
+2142 0.004999999999990963 -0.1350000000003481 0
+2143 0.009999999999981926 -0.1275000000003297 0
+2144 0.01499999999997157 -0.1275000000003297 0
+2145 0.01499999999997157 -0.1350000000003481 0
+2146 0.01999999999996121 -0.1275000000003296 0
+2147 0.02499999999995262 -0.1275000000003296 0
+2148 0.02499999999995262 -0.1350000000003481 0
+2149 0.02999999999994402 -0.1275000000003296 0
+2150 0.03499999999993698 -0.1275000000003296 0
+2151 0.03499999999993698 -0.1350000000003481 0
+2152 0.03999999999992994 -0.1275000000003296 0
+2153 0.04499999999992209 -0.1275000000003296 0
+2154 0.04499999999992209 -0.1350000000003481 0
+2155 0.04999999999991424 -0.1275000000003296 0
+2156 0.05499999999990056 -0.1275000000003296 0
+2157 0.05499999999990056 -0.1350000000003481 0
+2158 0.05999999999988688 -0.1275000000003296 0
+2159 0.06499999999987254 -0.1275000000003296 0
+2160 0.06499999999987254 -0.1350000000003481 0
+2161 0.06999999999985819 -0.1275000000003296 0
+2162 0.07499999999984112 -0.1275000000003296 0
+2163 0.07499999999984112 -0.1350000000003481 0
+2164 0.07999999999982406 -0.1275000000003296 0
+2165 0.0849999999998097 -0.1275000000003296 0
+2166 0.0849999999998097 -0.1350000000003481 0
+2167 0.08999999999979536 -0.1275000000003296 0
+2168 0.09499999999978101 -0.1275000000003296 0
+2169 0.09499999999978101 -0.1350000000003481 0
+2170 0.09999999999976666 -0.1275000000003296 0
+2171 0.1049999999997523 -0.1275000000003296 0
+2172 0.1049999999997523 -0.1350000000003481 0
+2173 0.109999999999738 -0.1275000000003296 0
+2174 0.1149999999997236 -0.1275000000003296 0
+2175 0.1149999999997236 -0.1350000000003481 0
+2176 0.1199999999997092 -0.1275000000003296 0
+2177 0.1249999999996949 -0.1275000000003296 0
+2178 0.1249999999996949 -0.1350000000003481 0
+2179 0.1299999999996806 -0.1275000000003296 0
+2180 0.1349999999996662 -0.1275000000003296 0
+2181 0.1349999999996662 -0.1350000000003481 0
+2182 0.1399999999996519 -0.1275000000003296 0
+2183 0.1449999999996348 -0.1275000000003296 0
+2184 0.1449999999996348 -0.1350000000003481 0
+2185 0.1499999999996177 -0.1275000000003296 0
+2186 0.1549999999996007 -0.1275000000003296 0
+2187 0.1549999999996007 -0.1350000000003481 0
+2188 0.1599999999995836 -0.1275000000003296 0
+2189 0.1649999999995692 -0.1275000000003296 0
+2190 0.1649999999995692 -0.1350000000003481 0
+2191 0.1699999999995549 -0.1275000000003296 0
+2192 0.1749999999995406 -0.1275000000003296 0
+2193 0.1749999999995406 -0.1350000000003481 0
+2194 0.1799999999995262 -0.1275000000003296 0
+2195 0.1849999999995118 -0.1275000000003296 0
+2196 0.1849999999995118 -0.1350000000003481 0
+2197 0.1899999999994975 -0.1275000000003296 0
+2198 0.1949999999994859 -0.1275000000003296 0
+2199 0.1949999999994859 -0.1350000000003481 0
+2200 0.1999999999994742 -0.1275000000003296 0
+2201 0.2049999999994859 -0.1275000000003296 0
+2202 0.2049999999994859 -0.1350000000003481 0
+2203 0.2099999999994975 -0.1275000000003296 0
+2204 0.2149999999995092 -0.1275000000003296 0
+2205 0.2149999999995092 -0.1350000000003481 0
+2206 0.2199999999995209 -0.1275000000003296 0
+2207 0.2249999999995352 -0.1275000000003296 0
+2208 0.2249999999995352 -0.1350000000003481 0
+2209 0.2299999999995495 -0.1275000000003296 0
+2210 0.2349999999995633 -0.1275000000003296 0
+2211 0.2349999999995633 -0.1350000000003481 0
+2212 0.2399999999995772 -0.1275000000003296 0
+2213 0.2449999999995894 -0.1275000000003296 0
+2214 0.2449999999995894 -0.1350000000003481 0
+2215 0.2499999999996016 -0.1275000000003296 0
+2216 0.2549999999996181 -0.1275000000003296 0
+2217 0.2549999999996181 -0.1350000000003481 0
+2218 0.2599999999996346 -0.1275000000003296 0
+2219 0.2649999999996452 -0.1275000000003296 0
+2220 0.2649999999996452 -0.1350000000003481 0
+2221 0.2699999999996559 -0.1275000000003296 0
+2222 0.2749999999996675 -0.1275000000003296 0
+2223 0.2749999999996675 -0.1350000000003481 0
+2224 0.2799999999996792 -0.1275000000003296 0
+2225 0.2849999999996973 -0.1275000000003296 0
+2226 0.2849999999996973 -0.1350000000003481 0
+2227 0.2899999999997154 -0.1275000000003296 0
+2228 0.2949999999997249 -0.1275000000003296 0
+2229 0.2949999999997249 -0.1350000000003481 0
+2230 0.2999999999997344 -0.1275000000003296 0
+2231 0.3049999999997439 -0.1275000000003296 0
+2232 0.3049999999997439 -0.1350000000003481 0
+2233 0.3099999999997534 -0.1275000000003296 0
+2234 0.3149999999997715 -0.1275000000003296 0
+2235 0.3149999999997715 -0.1350000000003481 0
+2236 0.3199999999997897 -0.1275000000003296 0
+2237 0.3249999999998013 -0.1275000000003296 0
+2238 0.3249999999998013 -0.1350000000003481 0
+2239 0.329999999999813 -0.1275000000003296 0
+2240 0.3349999999998236 -0.1275000000003296 0
+2241 0.3349999999998236 -0.1350000000003481 0
+2242 0.3399999999998342 -0.1275000000003296 0
+2243 0.3449999999998534 -0.1275000000003296 0
+2244 0.3449999999998534 -0.1350000000003481 0
+2245 0.3499999999998726 -0.1275000000003296 0
+2246 0.3549999999998821 -0.1275000000003296 0
+2247 0.3549999999998821 -0.1350000000003481 0
+2248 0.3599999999998915 -0.1275000000003296 0
+2249 0.3649999999999043 -0.1275000000003296 0
+2250 0.3649999999999043 -0.1350000000003481 0
+2251 0.3699999999999171 -0.1275000000003296 0
+2252 0.3749999999999342 -0.1275000000003296 0
+2253 0.3749999999999341 -0.1350000000003481 0
+2254 0.3799999999999513 -0.1275000000003296 0
+2255 0.3849999999999607 -0.1275000000003296 0
+2256 0.3849999999999607 -0.1350000000003481 0
+2257 0.3899999999999702 -0.1275000000003296 0
+2258 0.3949999999999851 -0.1275000000003296 0
+2259 0.3949999999999851 -0.1350000000003481 0
+2260 0.004999999999990963 -0.1425000000003666 0
+2261 0.004999999999990963 -0.150000000000385 0
+2262 0.009999999999981926 -0.1425000000003666 0
+2263 0.01499999999997157 -0.1425000000003665 0
+2264 0.01499999999997156 -0.150000000000385 0
+2265 0.0199999999999612 -0.1425000000003666 0
+2266 0.02499999999995261 -0.1425000000003666 0
+2267 0.02499999999995261 -0.150000000000385 0
+2268 0.02999999999994402 -0.1425000000003665 0
+2269 0.03499999999993698 -0.1425000000003665 0
+2270 0.03499999999993698 -0.150000000000385 0
+2271 0.03999999999992994 -0.1425000000003665 0
+2272 0.04499999999992209 -0.1425000000003665 0
+2273 0.04499999999992209 -0.150000000000385 0
+2274 0.04999999999991424 -0.1425000000003665 0
+2275 0.05499999999990056 -0.1425000000003665 0
+2276 0.05499999999990056 -0.150000000000385 0
+2277 0.05999999999988688 -0.1425000000003665 0
+2278 0.06499999999987254 -0.1425000000003665 0
+2279 0.06499999999987254 -0.150000000000385 0
+2280 0.06999999999985819 -0.1425000000003666 0
+2281 0.07499999999984112 -0.1425000000003666 0
+2282 0.07499999999984111 -0.150000000000385 0
+2283 0.07999999999982405 -0.1425000000003665 0
+2284 0.0849999999998097 -0.1425000000003665 0
+2285 0.0849999999998097 -0.150000000000385 0
+2286 0.08999999999979536 -0.1425000000003665 0
+2287 0.09499999999978101 -0.1425000000003665 0
+2288 0.09499999999978101 -0.150000000000385 0
+2289 0.09999999999976666 -0.1425000000003665 0
+2290 0.1049999999997523 -0.1425000000003665 0
+2291 0.1049999999997523 -0.150000000000385 0
+2292 0.109999999999738 -0.1425000000003665 0
+2293 0.1149999999997236 -0.1425000000003665 0
+2294 0.1149999999997236 -0.150000000000385 0
+2295 0.1199999999997092 -0.1425000000003666 0
+2296 0.1249999999996949 -0.1425000000003666 0
+2297 0.1249999999996949 -0.150000000000385 0
+2298 0.1299999999996806 -0.1425000000003665 0
+2299 0.1349999999996662 -0.1425000000003665 0
+2300 0.1349999999996662 -0.150000000000385 0
+2301 0.1399999999996519 -0.1425000000003665 0
+2302 0.1449999999996348 -0.1425000000003665 0
+2303 0.1449999999996348 -0.150000000000385 0
+2304 0.1499999999996177 -0.1425000000003665 0
+2305 0.1549999999996007 -0.1425000000003665 0
+2306 0.1549999999996007 -0.150000000000385 0
+2307 0.1599999999995836 -0.1425000000003665 0
+2308 0.1649999999995692 -0.1425000000003665 0
+2309 0.1649999999995692 -0.150000000000385 0
+2310 0.1699999999995549 -0.1425000000003665 0
+2311 0.1749999999995406 -0.1425000000003665 0
+2312 0.1749999999995406 -0.150000000000385 0
+2313 0.1799999999995262 -0.1425000000003665 0
+2314 0.1849999999995118 -0.1425000000003665 0
+2315 0.1849999999995118 -0.150000000000385 0
+2316 0.1899999999994975 -0.1425000000003665 0
+2317 0.1949999999994859 -0.1425000000003665 0
+2318 0.1949999999994859 -0.150000000000385 0
+2319 0.1999999999994742 -0.1425000000003665 0
+2320 0.2049999999994859 -0.1425000000003665 0
+2321 0.2049999999994859 -0.150000000000385 0
+2322 0.2099999999994975 -0.1425000000003665 0
+2323 0.2149999999995092 -0.1425000000003665 0
+2324 0.2149999999995092 -0.150000000000385 0
+2325 0.2199999999995209 -0.1425000000003665 0
+2326 0.2249999999995352 -0.1425000000003665 0
+2327 0.2249999999995352 -0.150000000000385 0
+2328 0.2299999999995495 -0.1425000000003665 0
+2329 0.2349999999995633 -0.1425000000003665 0
+2330 0.2349999999995633 -0.150000000000385 0
+2331 0.2399999999995772 -0.1425000000003665 0
+2332 0.2449999999995894 -0.1425000000003665 0
+2333 0.2449999999995894 -0.150000000000385 0
+2334 0.2499999999996015 -0.1425000000003665 0
+2335 0.2549999999996181 -0.1425000000003665 0
+2336 0.2549999999996181 -0.150000000000385 0
+2337 0.2599999999996346 -0.1425000000003665 0
+2338 0.2649999999996452 -0.1425000000003665 0
+2339 0.2649999999996452 -0.150000000000385 0
+2340 0.2699999999996559 -0.1425000000003665 0
+2341 0.2749999999996675 -0.1425000000003665 0
+2342 0.2749999999996675 -0.150000000000385 0
+2343 0.2799999999996792 -0.1425000000003665 0
+2344 0.2849999999996973 -0.1425000000003665 0
+2345 0.2849999999996973 -0.150000000000385 0
+2346 0.2899999999997154 -0.1425000000003665 0
+2347 0.2949999999997249 -0.1425000000003665 0
+2348 0.2949999999997249 -0.150000000000385 0
+2349 0.2999999999997344 -0.1425000000003665 0
+2350 0.3049999999997439 -0.1425000000003665 0
+2351 0.3049999999997439 -0.150000000000385 0
+2352 0.3099999999997534 -0.1425000000003665 0
+2353 0.3149999999997715 -0.1425000000003665 0
+2354 0.3149999999997715 -0.150000000000385 0
+2355 0.3199999999997897 -0.1425000000003665 0
+2356 0.3249999999998013 -0.1425000000003665 0
+2357 0.3249999999998013 -0.150000000000385 0
+2358 0.329999999999813 -0.1425000000003665 0
+2359 0.3349999999998236 -0.1425000000003665 0
+2360 0.3349999999998236 -0.150000000000385 0
+2361 0.3399999999998342 -0.1425000000003665 0
+2362 0.3449999999998534 -0.1425000000003665 0
+2363 0.3449999999998534 -0.150000000000385 0
+2364 0.3499999999998726 -0.1425000000003665 0
+2365 0.3549999999998821 -0.1425000000003665 0
+2366 0.3549999999998821 -0.150000000000385 0
+2367 0.3599999999998915 -0.1425000000003665 0
+2368 0.3649999999999043 -0.1425000000003665 0
+2369 0.3649999999999043 -0.150000000000385 0
+2370 0.3699999999999171 -0.1425000000003665 0
+2371 0.3749999999999342 -0.1425000000003665 0
+2372 0.3749999999999342 -0.150000000000385 0
+2373 0.3799999999999512 -0.1425000000003665 0
+2374 0.3849999999999607 -0.1425000000003665 0
+2375 0.3849999999999607 -0.150000000000385 0
+2376 0.3899999999999702 -0.1425000000003665 0
+2377 0.3949999999999851 -0.1425000000003665 0
+2378 0.3949999999999851 -0.150000000000385 0
+2379 0.004999999999990963 -0.157500000000366 0
+2380 0.004999999999990963 -0.165000000000347 0
+2381 0.009999999999981926 -0.157500000000366 0
+2382 0.01499999999997156 -0.157500000000366 0
+2383 0.01499999999997157 -0.165000000000347 0
+2384 0.0199999999999612 -0.157500000000366 0
+2385 0.02499999999995261 -0.157500000000366 0
+2386 0.02499999999995261 -0.165000000000347 0
+2387 0.02999999999994401 -0.157500000000366 0
+2388 0.03499999999993698 -0.157500000000366 0
+2389 0.03499999999993698 -0.165000000000347 0
+2390 0.03999999999992994 -0.157500000000366 0
+2391 0.04499999999992209 -0.157500000000366 0
+2392 0.04499999999992209 -0.165000000000347 0
+2393 0.04999999999991424 -0.157500000000366 0
+2394 0.05499999999990056 -0.157500000000366 0
+2395 0.05499999999990056 -0.165000000000347 0
+2396 0.05999999999988688 -0.157500000000366 0
+2397 0.06499999999987254 -0.157500000000366 0
+2398 0.06499999999987252 -0.165000000000347 0
+2399 0.06999999999985818 -0.157500000000366 0
+2400 0.07499999999984111 -0.157500000000366 0
+2401 0.07499999999984111 -0.165000000000347 0
+2402 0.07999999999982405 -0.157500000000366 0
+2403 0.0849999999998097 -0.157500000000366 0
+2404 0.0849999999998097 -0.165000000000347 0
+2405 0.08999999999979536 -0.157500000000366 0
+2406 0.09499999999978101 -0.157500000000366 0
+2407 0.09499999999978101 -0.165000000000347 0
+2408 0.09999999999976666 -0.157500000000366 0
+2409 0.1049999999997523 -0.157500000000366 0
+2410 0.1049999999997523 -0.165000000000347 0
+2411 0.109999999999738 -0.157500000000366 0
+2412 0.1149999999997236 -0.157500000000366 0
+2413 0.1149999999997236 -0.165000000000347 0
+2414 0.1199999999997092 -0.157500000000366 0
+2415 0.1249999999996949 -0.157500000000366 0
+2416 0.1249999999996949 -0.165000000000347 0
+2417 0.1299999999996806 -0.157500000000366 0
+2418 0.1349999999996662 -0.157500000000366 0
+2419 0.1349999999996662 -0.165000000000347 0
+2420 0.1399999999996519 -0.157500000000366 0
+2421 0.1449999999996348 -0.157500000000366 0
+2422 0.1449999999996348 -0.165000000000347 0
+2423 0.1499999999996177 -0.157500000000366 0
+2424 0.1549999999996007 -0.157500000000366 0
+2425 0.1549999999996007 -0.165000000000347 0
+2426 0.1599999999995836 -0.157500000000366 0
+2427 0.1649999999995692 -0.157500000000366 0
+2428 0.1649999999995692 -0.165000000000347 0
+2429 0.1699999999995549 -0.157500000000366 0
+2430 0.1749999999995406 -0.157500000000366 0
+2431 0.1749999999995406 -0.165000000000347 0
+2432 0.1799999999995262 -0.157500000000366 0
+2433 0.1849999999995118 -0.157500000000366 0
+2434 0.1849999999995118 -0.165000000000347 0
+2435 0.1899999999994975 -0.157500000000366 0
+2436 0.1949999999994858 -0.157500000000366 0
+2437 0.1949999999994858 -0.165000000000347 0
+2438 0.1999999999994742 -0.157500000000366 0
+2439 0.2049999999994859 -0.157500000000366 0
+2440 0.2049999999994859 -0.165000000000347 0
+2441 0.2099999999994975 -0.157500000000366 0
+2442 0.2149999999995092 -0.157500000000366 0
+2443 0.2149999999995092 -0.165000000000347 0
+2444 0.2199999999995209 -0.157500000000366 0
+2445 0.2249999999995352 -0.157500000000366 0
+2446 0.2249999999995352 -0.165000000000347 0
+2447 0.2299999999995495 -0.157500000000366 0
+2448 0.2349999999995633 -0.157500000000366 0
+2449 0.2349999999995633 -0.165000000000347 0
+2450 0.2399999999995772 -0.157500000000366 0
+2451 0.2449999999995894 -0.157500000000366 0
+2452 0.2449999999995894 -0.165000000000347 0
+2453 0.2499999999996016 -0.157500000000366 0
+2454 0.2549999999996181 -0.157500000000366 0
+2455 0.2549999999996181 -0.165000000000347 0
+2456 0.2599999999996346 -0.157500000000366 0
+2457 0.2649999999996452 -0.157500000000366 0
+2458 0.2649999999996452 -0.165000000000347 0
+2459 0.2699999999996559 -0.157500000000366 0
+2460 0.2749999999996675 -0.157500000000366 0
+2461 0.2749999999996675 -0.165000000000347 0
+2462 0.2799999999996792 -0.157500000000366 0
+2463 0.2849999999996973 -0.157500000000366 0
+2464 0.2849999999996973 -0.165000000000347 0
+2465 0.2899999999997154 -0.157500000000366 0
+2466 0.2949999999997249 -0.157500000000366 0
+2467 0.2949999999997249 -0.165000000000347 0
+2468 0.2999999999997344 -0.157500000000366 0
+2469 0.3049999999997439 -0.157500000000366 0
+2470 0.3049999999997439 -0.165000000000347 0
+2471 0.3099999999997534 -0.157500000000366 0
+2472 0.3149999999997715 -0.157500000000366 0
+2473 0.3149999999997715 -0.165000000000347 0
+2474 0.3199999999997897 -0.157500000000366 0
+2475 0.3249999999998013 -0.157500000000366 0
+2476 0.3249999999998013 -0.165000000000347 0
+2477 0.329999999999813 -0.157500000000366 0
+2478 0.3349999999998236 -0.157500000000366 0
+2479 0.3349999999998236 -0.165000000000347 0
+2480 0.3399999999998342 -0.157500000000366 0
+2481 0.3449999999998534 -0.157500000000366 0
+2482 0.3449999999998534 -0.165000000000347 0
+2483 0.3499999999998726 -0.157500000000366 0
+2484 0.3549999999998821 -0.157500000000366 0
+2485 0.3549999999998821 -0.165000000000347 0
+2486 0.3599999999998915 -0.157500000000366 0
+2487 0.3649999999999043 -0.157500000000366 0
+2488 0.3649999999999043 -0.165000000000347 0
+2489 0.3699999999999171 -0.157500000000366 0
+2490 0.3749999999999342 -0.157500000000366 0
+2491 0.3749999999999342 -0.165000000000347 0
+2492 0.3799999999999512 -0.157500000000366 0
+2493 0.3849999999999607 -0.157500000000366 0
+2494 0.3849999999999607 -0.165000000000347 0
+2495 0.3899999999999702 -0.157500000000366 0
+2496 0.3949999999999851 -0.157500000000366 0
+2497 0.3949999999999851 -0.165000000000347 0
+2498 0.004999999999990963 -0.1725000000003253 0
+2499 0.004999999999990963 -0.1800000000003036 0
+2500 0.009999999999981926 -0.1725000000003253 0
+2501 0.01499999999997157 -0.1725000000003253 0
+2502 0.01499999999997157 -0.1800000000003036 0
+2503 0.01999999999996121 -0.1725000000003253 0
+2504 0.02499999999995261 -0.1725000000003253 0
+2505 0.02499999999995261 -0.1800000000003036 0
+2506 0.02999999999994401 -0.1725000000003253 0
+2507 0.03499999999993698 -0.1725000000003253 0
+2508 0.03499999999993698 -0.1800000000003036 0
+2509 0.03999999999992994 -0.1725000000003253 0
+2510 0.04499999999992209 -0.1725000000003253 0
+2511 0.04499999999992209 -0.1800000000003036 0
+2512 0.04999999999991424 -0.1725000000003253 0
+2513 0.05499999999990056 -0.1725000000003253 0
+2514 0.05499999999990056 -0.1800000000003036 0
+2515 0.05999999999988688 -0.1725000000003253 0
+2516 0.06499999999987252 -0.1725000000003253 0
+2517 0.06499999999987254 -0.1800000000003036 0
+2518 0.06999999999985818 -0.1725000000003253 0
+2519 0.07499999999984112 -0.1725000000003253 0
+2520 0.07499999999984112 -0.1800000000003036 0
+2521 0.07999999999982406 -0.1725000000003253 0
+2522 0.0849999999998097 -0.1725000000003253 0
+2523 0.0849999999998097 -0.1800000000003036 0
+2524 0.08999999999979536 -0.1725000000003253 0
+2525 0.09499999999978101 -0.1725000000003253 0
+2526 0.09499999999978101 -0.1800000000003036 0
+2527 0.09999999999976666 -0.1725000000003253 0
+2528 0.1049999999997523 -0.1725000000003253 0
+2529 0.1049999999997523 -0.1800000000003036 0
+2530 0.109999999999738 -0.1725000000003253 0
+2531 0.1149999999997236 -0.1725000000003253 0
+2532 0.1149999999997236 -0.1800000000003036 0
+2533 0.1199999999997092 -0.1725000000003253 0
+2534 0.1249999999996949 -0.1725000000003253 0
+2535 0.1249999999996949 -0.1800000000003036 0
+2536 0.1299999999996806 -0.1725000000003253 0
+2537 0.1349999999996662 -0.1725000000003253 0
+2538 0.1349999999996662 -0.1800000000003036 0
+2539 0.1399999999996519 -0.1725000000003253 0
+2540 0.1449999999996348 -0.1725000000003253 0
+2541 0.1449999999996348 -0.1800000000003036 0
+2542 0.1499999999996177 -0.1725000000003253 0
+2543 0.1549999999996007 -0.1725000000003253 0
+2544 0.1549999999996007 -0.1800000000003036 0
+2545 0.1599999999995836 -0.1725000000003253 0
+2546 0.1649999999995692 -0.1725000000003253 0
+2547 0.1649999999995692 -0.1800000000003036 0
+2548 0.1699999999995549 -0.1725000000003253 0
+2549 0.1749999999995406 -0.1725000000003253 0
+2550 0.1749999999995406 -0.1800000000003036 0
+2551 0.1799999999995262 -0.1725000000003253 0
+2552 0.1849999999995118 -0.1725000000003253 0
+2553 0.1849999999995118 -0.1800000000003036 0
+2554 0.1899999999994975 -0.1725000000003253 0
+2555 0.1949999999994858 -0.1725000000003253 0
+2556 0.1949999999994858 -0.1800000000003036 0
+2557 0.1999999999994742 -0.1725000000003253 0
+2558 0.2049999999994859 -0.1725000000003253 0
+2559 0.2049999999994859 -0.1800000000003036 0
+2560 0.2099999999994975 -0.1725000000003253 0
+2561 0.2149999999995092 -0.1725000000003253 0
+2562 0.2149999999995092 -0.1800000000003036 0
+2563 0.2199999999995209 -0.1725000000003253 0
+2564 0.2249999999995352 -0.1725000000003253 0
+2565 0.2249999999995352 -0.1800000000003036 0
+2566 0.2299999999995495 -0.1725000000003253 0
+2567 0.2349999999995633 -0.1725000000003253 0
+2568 0.2349999999995634 -0.1800000000003036 0
+2569 0.2399999999995772 -0.1725000000003253 0
+2570 0.2449999999995894 -0.1725000000003253 0
+2571 0.2449999999995894 -0.1800000000003036 0
+2572 0.2499999999996016 -0.1725000000003253 0
+2573 0.2549999999996181 -0.1725000000003253 0
+2574 0.2549999999996181 -0.1800000000003036 0
+2575 0.2599999999996346 -0.1725000000003253 0
+2576 0.2649999999996452 -0.1725000000003253 0
+2577 0.2649999999996452 -0.1800000000003036 0
+2578 0.2699999999996559 -0.1725000000003253 0
+2579 0.2749999999996675 -0.1725000000003253 0
+2580 0.2749999999996675 -0.1800000000003036 0
+2581 0.2799999999996792 -0.1725000000003253 0
+2582 0.2849999999996973 -0.1725000000003253 0
+2583 0.2849999999996973 -0.1800000000003036 0
+2584 0.2899999999997154 -0.1725000000003253 0
+2585 0.2949999999997249 -0.1725000000003253 0
+2586 0.2949999999997249 -0.1800000000003036 0
+2587 0.2999999999997344 -0.1725000000003253 0
+2588 0.3049999999997439 -0.1725000000003253 0
+2589 0.3049999999997439 -0.1800000000003036 0
+2590 0.3099999999997534 -0.1725000000003253 0
+2591 0.3149999999997715 -0.1725000000003253 0
+2592 0.3149999999997715 -0.1800000000003036 0
+2593 0.3199999999997897 -0.1725000000003253 0
+2594 0.3249999999998013 -0.1725000000003253 0
+2595 0.3249999999998013 -0.1800000000003036 0
+2596 0.329999999999813 -0.1725000000003253 0
+2597 0.3349999999998236 -0.1725000000003253 0
+2598 0.3349999999998236 -0.1800000000003036 0
+2599 0.3399999999998342 -0.1725000000003253 0
+2600 0.3449999999998534 -0.1725000000003253 0
+2601 0.3449999999998534 -0.1800000000003036 0
+2602 0.3499999999998726 -0.1725000000003253 0
+2603 0.3549999999998821 -0.1725000000003253 0
+2604 0.3549999999998821 -0.1800000000003036 0
+2605 0.3599999999998915 -0.1725000000003253 0
+2606 0.3649999999999043 -0.1725000000003253 0
+2607 0.3649999999999043 -0.1800000000003036 0
+2608 0.3699999999999171 -0.1725000000003253 0
+2609 0.3749999999999342 -0.1725000000003253 0
+2610 0.3749999999999342 -0.1800000000003036 0
+2611 0.3799999999999512 -0.1725000000003253 0
+2612 0.3849999999999607 -0.1725000000003253 0
+2613 0.3849999999999607 -0.1800000000003036 0
+2614 0.3899999999999702 -0.1725000000003253 0
+2615 0.3949999999999851 -0.1725000000003253 0
+2616 0.3949999999999851 -0.1800000000003036 0
+2617 0.004999999999990963 -0.1875000000002874 0
+2618 0.004999999999990963 -0.1950000000002711 0
+2619 0.009999999999981926 -0.1875000000002874 0
+2620 0.01499999999997157 -0.1875000000002874 0
+2621 0.01499999999997157 -0.1950000000002711 0
+2622 0.01999999999996121 -0.1875000000002874 0
+2623 0.02499999999995261 -0.1875000000002873 0
+2624 0.0249999999999526 -0.1950000000002711 0
+2625 0.02999999999994401 -0.1875000000002874 0
+2626 0.03499999999993697 -0.1875000000002874 0
+2627 0.03499999999993697 -0.1950000000002711 0
+2628 0.03999999999992994 -0.1875000000002874 0
+2629 0.04499999999992209 -0.1875000000002874 0
+2630 0.04499999999992209 -0.1950000000002711 0
+2631 0.04999999999991424 -0.1875000000002874 0
+2632 0.05499999999990056 -0.1875000000002874 0
+2633 0.05499999999990056 -0.1950000000002711 0
+2634 0.05999999999988688 -0.1875000000002874 0
+2635 0.06499999999987254 -0.1875000000002874 0
+2636 0.06499999999987254 -0.1950000000002711 0
+2637 0.06999999999985819 -0.1875000000002874 0
+2638 0.07499999999984112 -0.1875000000002874 0
+2639 0.07499999999984112 -0.1950000000002711 0
+2640 0.07999999999982406 -0.1875000000002874 0
+2641 0.0849999999998097 -0.1875000000002874 0
+2642 0.0849999999998097 -0.1950000000002711 0
+2643 0.08999999999979536 -0.1875000000002874 0
+2644 0.09499999999978101 -0.1875000000002874 0
+2645 0.09499999999978101 -0.1950000000002711 0
+2646 0.09999999999976666 -0.1875000000002873 0
+2647 0.1049999999997523 -0.1875000000002874 0
+2648 0.1049999999997523 -0.1950000000002711 0
+2649 0.109999999999738 -0.1875000000002874 0
+2650 0.1149999999997236 -0.1875000000002874 0
+2651 0.1149999999997236 -0.1950000000002711 0
+2652 0.1199999999997092 -0.1875000000002874 0
+2653 0.1249999999996949 -0.1875000000002874 0
+2654 0.1249999999996949 -0.1950000000002711 0
+2655 0.1299999999996806 -0.1875000000002874 0
+2656 0.1349999999996662 -0.1875000000002874 0
+2657 0.1349999999996662 -0.1950000000002711 0
+2658 0.1399999999996519 -0.1875000000002874 0
+2659 0.1449999999996348 -0.1875000000002874 0
+2660 0.1449999999996348 -0.1950000000002711 0
+2661 0.1499999999996177 -0.1875000000002874 0
+2662 0.1549999999996007 -0.1875000000002874 0
+2663 0.1549999999996007 -0.1950000000002711 0
+2664 0.1599999999995836 -0.1875000000002874 0
+2665 0.1649999999995692 -0.1875000000002874 0
+2666 0.1649999999995692 -0.1950000000002711 0
+2667 0.1699999999995549 -0.1875000000002874 0
+2668 0.1749999999995406 -0.1875000000002874 0
+2669 0.1749999999995406 -0.1950000000002711 0
+2670 0.1799999999995262 -0.1875000000002874 0
+2671 0.1849999999995118 -0.1875000000002874 0
+2672 0.1849999999995118 -0.1950000000002711 0
+2673 0.1899999999994975 -0.1875000000002874 0
+2674 0.1949999999994859 -0.1875000000002874 0
+2675 0.1949999999994859 -0.1950000000002711 0
+2676 0.1999999999994742 -0.1875000000002874 0
+2677 0.2049999999994859 -0.1875000000002874 0
+2678 0.2049999999994859 -0.1950000000002711 0
+2679 0.2099999999994975 -0.1875000000002874 0
+2680 0.2149999999995092 -0.1875000000002874 0
+2681 0.2149999999995092 -0.1950000000002711 0
+2682 0.2199999999995209 -0.1875000000002874 0
+2683 0.2249999999995352 -0.1875000000002874 0
+2684 0.2249999999995352 -0.1950000000002711 0
+2685 0.2299999999995495 -0.1875000000002874 0
+2686 0.2349999999995634 -0.1875000000002874 0
+2687 0.2349999999995633 -0.1950000000002711 0
+2688 0.2399999999995772 -0.1875000000002874 0
+2689 0.2449999999995894 -0.1875000000002874 0
+2690 0.2449999999995894 -0.1950000000002711 0
+2691 0.2499999999996015 -0.1875000000002874 0
+2692 0.2549999999996181 -0.1875000000002874 0
+2693 0.2549999999996181 -0.1950000000002711 0
+2694 0.2599999999996346 -0.1875000000002874 0
+2695 0.2649999999996452 -0.1875000000002874 0
+2696 0.2649999999996452 -0.1950000000002711 0
+2697 0.2699999999996559 -0.1875000000002874 0
+2698 0.2749999999996675 -0.1875000000002874 0
+2699 0.2749999999996675 -0.1950000000002712 0
+2700 0.2799999999996792 -0.1875000000002874 0
+2701 0.2849999999996973 -0.1875000000002874 0
+2702 0.2849999999996973 -0.1950000000002711 0
+2703 0.2899999999997154 -0.1875000000002874 0
+2704 0.2949999999997249 -0.1875000000002874 0
+2705 0.2949999999997249 -0.1950000000002711 0
+2706 0.2999999999997344 -0.1875000000002874 0
+2707 0.3049999999997439 -0.1875000000002874 0
+2708 0.3049999999997439 -0.1950000000002711 0
+2709 0.3099999999997534 -0.1875000000002874 0
+2710 0.3149999999997715 -0.1875000000002874 0
+2711 0.3149999999997715 -0.1950000000002711 0
+2712 0.3199999999997897 -0.1875000000002874 0
+2713 0.3249999999998013 -0.1875000000002874 0
+2714 0.3249999999998013 -0.1950000000002711 0
+2715 0.329999999999813 -0.1875000000002874 0
+2716 0.3349999999998236 -0.1875000000002874 0
+2717 0.3349999999998236 -0.1950000000002711 0
+2718 0.3399999999998342 -0.1875000000002874 0
+2719 0.3449999999998534 -0.1875000000002874 0
+2720 0.3449999999998534 -0.1950000000002711 0
+2721 0.3499999999998726 -0.1875000000002874 0
+2722 0.3549999999998821 -0.1875000000002874 0
+2723 0.3549999999998821 -0.1950000000002711 0
+2724 0.3599999999998915 -0.1875000000002874 0
+2725 0.3649999999999043 -0.1875000000002874 0
+2726 0.3649999999999043 -0.1950000000002711 0
+2727 0.3699999999999171 -0.1875000000002874 0
+2728 0.3749999999999342 -0.1875000000002874 0
+2729 0.3749999999999342 -0.1950000000002711 0
+2730 0.3799999999999513 -0.1875000000002874 0
+2731 0.3849999999999607 -0.1875000000002874 0
+2732 0.3849999999999607 -0.1950000000002711 0
+2733 0.3899999999999702 -0.1875000000002874 0
+2734 0.3949999999999851 -0.1875000000002874 0
+2735 0.3949999999999851 -0.1950000000002711 0
+2736 0.004999999999990963 -0.2025000000002494 0
+2737 0.004999999999990963 -0.2100000000002277 0
+2738 0.009999999999981926 -0.2025000000002494 0
+2739 0.01499999999997157 -0.2025000000002494 0
+2740 0.01499999999997157 -0.2100000000002277 0
+2741 0.01999999999996121 -0.2025000000002494 0
+2742 0.0249999999999526 -0.2025000000002494 0
+2743 0.02499999999995261 -0.2100000000002277 0
+2744 0.02999999999994401 -0.2025000000002494 0
+2745 0.03499999999993698 -0.2025000000002494 0
+2746 0.03499999999993698 -0.2100000000002277 0
+2747 0.03999999999992994 -0.2025000000002494 0
+2748 0.04499999999992209 -0.2025000000002494 0
+2749 0.04499999999992209 -0.2100000000002277 0
+2750 0.04999999999991424 -0.2025000000002494 0
+2751 0.05499999999990056 -0.2025000000002494 0
+2752 0.05499999999990056 -0.2100000000002277 0
+2753 0.05999999999988688 -0.2025000000002494 0
+2754 0.06499999999987254 -0.2025000000002494 0
+2755 0.06499999999987254 -0.2100000000002277 0
+2756 0.06999999999985819 -0.2025000000002494 0
+2757 0.07499999999984112 -0.2025000000002494 0
+2758 0.07499999999984112 -0.2100000000002277 0
+2759 0.07999999999982406 -0.2025000000002494 0
+2760 0.0849999999998097 -0.2025000000002495 0
+2761 0.0849999999998097 -0.2100000000002277 0
+2762 0.08999999999979536 -0.2025000000002494 0
+2763 0.09499999999978101 -0.2025000000002494 0
+2764 0.09499999999978101 -0.2100000000002277 0
+2765 0.09999999999976666 -0.2025000000002494 0
+2766 0.1049999999997523 -0.2025000000002494 0
+2767 0.1049999999997523 -0.2100000000002277 0
+2768 0.109999999999738 -0.2025000000002494 0
+2769 0.1149999999997236 -0.2025000000002495 0
+2770 0.1149999999997236 -0.2100000000002277 0
+2771 0.1199999999997092 -0.2025000000002495 0
+2772 0.1249999999996949 -0.2025000000002494 0
+2773 0.1249999999996949 -0.2100000000002277 0
+2774 0.1299999999996806 -0.2025000000002494 0
+2775 0.1349999999996662 -0.2025000000002494 0
+2776 0.1349999999996662 -0.2100000000002277 0
+2777 0.1399999999996519 -0.2025000000002494 0
+2778 0.1449999999996348 -0.2025000000002494 0
+2779 0.1449999999996348 -0.2100000000002277 0
+2780 0.1499999999996177 -0.2025000000002494 0
+2781 0.1549999999996007 -0.2025000000002494 0
+2782 0.1549999999996007 -0.2100000000002277 0
+2783 0.1599999999995836 -0.2025000000002494 0
+2784 0.1649999999995692 -0.2025000000002494 0
+2785 0.1649999999995692 -0.2100000000002277 0
+2786 0.1699999999995549 -0.2025000000002494 0
+2787 0.1749999999995406 -0.2025000000002494 0
+2788 0.1749999999995406 -0.2100000000002277 0
+2789 0.1799999999995262 -0.2025000000002494 0
+2790 0.1849999999995118 -0.2025000000002494 0
+2791 0.1849999999995118 -0.2100000000002277 0
+2792 0.1899999999994975 -0.2025000000002494 0
+2793 0.1949999999994859 -0.2025000000002494 0
+2794 0.1949999999994859 -0.2100000000002277 0
+2795 0.1999999999994742 -0.2025000000002494 0
+2796 0.2049999999994859 -0.2025000000002494 0
+2797 0.2049999999994859 -0.2100000000002277 0
+2798 0.2099999999994975 -0.2025000000002494 0
+2799 0.2149999999995092 -0.2025000000002494 0
+2800 0.2149999999995092 -0.2100000000002277 0
+2801 0.2199999999995209 -0.2025000000002494 0
+2802 0.2249999999995352 -0.2025000000002494 0
+2803 0.2249999999995352 -0.2100000000002277 0
+2804 0.2299999999995495 -0.2025000000002494 0
+2805 0.2349999999995633 -0.2025000000002494 0
+2806 0.2349999999995633 -0.2100000000002277 0
+2807 0.2399999999995772 -0.2025000000002494 0
+2808 0.2449999999995893 -0.2025000000002494 0
+2809 0.2449999999995893 -0.2100000000002277 0
+2810 0.2499999999996015 -0.2025000000002494 0
+2811 0.2549999999996181 -0.2025000000002494 0
+2812 0.2549999999996181 -0.2100000000002277 0
+2813 0.2599999999996346 -0.2025000000002494 0
+2814 0.2649999999996452 -0.2025000000002494 0
+2815 0.2649999999996452 -0.2100000000002277 0
+2816 0.2699999999996559 -0.2025000000002495 0
+2817 0.2749999999996675 -0.2025000000002494 0
+2818 0.2749999999996675 -0.2100000000002277 0
+2819 0.2799999999996792 -0.2025000000002494 0
+2820 0.2849999999996973 -0.2025000000002494 0
+2821 0.2849999999996973 -0.2100000000002277 0
+2822 0.2899999999997154 -0.2025000000002494 0
+2823 0.2949999999997249 -0.2025000000002494 0
+2824 0.2949999999997249 -0.2100000000002277 0
+2825 0.2999999999997344 -0.2025000000002494 0
+2826 0.3049999999997439 -0.2025000000002494 0
+2827 0.3049999999997439 -0.2100000000002277 0
+2828 0.3099999999997534 -0.2025000000002494 0
+2829 0.3149999999997715 -0.2025000000002494 0
+2830 0.3149999999997715 -0.2100000000002277 0
+2831 0.3199999999997897 -0.2025000000002494 0
+2832 0.3249999999998013 -0.2025000000002494 0
+2833 0.3249999999998013 -0.2100000000002277 0
+2834 0.329999999999813 -0.2025000000002494 0
+2835 0.3349999999998236 -0.2025000000002494 0
+2836 0.3349999999998236 -0.2100000000002277 0
+2837 0.3399999999998342 -0.2025000000002494 0
+2838 0.3449999999998534 -0.2025000000002494 0
+2839 0.3449999999998534 -0.2100000000002277 0
+2840 0.3499999999998726 -0.2025000000002494 0
+2841 0.3549999999998821 -0.2025000000002494 0
+2842 0.3549999999998821 -0.2100000000002277 0
+2843 0.3599999999998915 -0.2025000000002494 0
+2844 0.3649999999999043 -0.2025000000002494 0
+2845 0.3649999999999043 -0.2100000000002277 0
+2846 0.3699999999999171 -0.2025000000002494 0
+2847 0.3749999999999342 -0.2025000000002494 0
+2848 0.3749999999999342 -0.2100000000002277 0
+2849 0.3799999999999513 -0.2025000000002494 0
+2850 0.3849999999999607 -0.2025000000002494 0
+2851 0.3849999999999607 -0.2100000000002277 0
+2852 0.3899999999999702 -0.2025000000002494 0
+2853 0.394999999999985 -0.2025000000002494 0
+2854 0.394999999999985 -0.2100000000002277 0
+2855 0.004999999999990963 -0.217500000000206 0
+2856 0.004999999999990963 -0.2250000000001843 0
+2857 0.009999999999981926 -0.217500000000206 0
+2858 0.01499999999997157 -0.217500000000206 0
+2859 0.01499999999997157 -0.2250000000001843 0
+2860 0.01999999999996121 -0.217500000000206 0
+2861 0.02499999999995261 -0.217500000000206 0
+2862 0.02499999999995261 -0.2250000000001843 0
+2863 0.02999999999994402 -0.217500000000206 0
+2864 0.03499999999993698 -0.217500000000206 0
+2865 0.03499999999993698 -0.2250000000001843 0
+2866 0.03999999999992994 -0.217500000000206 0
+2867 0.04499999999992209 -0.217500000000206 0
+2868 0.04499999999992209 -0.2250000000001843 0
+2869 0.04999999999991424 -0.217500000000206 0
+2870 0.05499999999990056 -0.217500000000206 0
+2871 0.05499999999990056 -0.2250000000001843 0
+2872 0.05999999999988688 -0.217500000000206 0
+2873 0.06499999999987254 -0.217500000000206 0
+2874 0.06499999999987254 -0.2250000000001843 0
+2875 0.06999999999985819 -0.217500000000206 0
+2876 0.07499999999984112 -0.217500000000206 0
+2877 0.07499999999984112 -0.2250000000001843 0
+2878 0.07999999999982406 -0.217500000000206 0
+2879 0.0849999999998097 -0.217500000000206 0
+2880 0.0849999999998097 -0.2250000000001843 0
+2881 0.08999999999979536 -0.217500000000206 0
+2882 0.09499999999978101 -0.217500000000206 0
+2883 0.09499999999978101 -0.2250000000001843 0
+2884 0.09999999999976666 -0.217500000000206 0
+2885 0.1049999999997523 -0.217500000000206 0
+2886 0.1049999999997523 -0.2250000000001843 0
+2887 0.109999999999738 -0.217500000000206 0
+2888 0.1149999999997236 -0.217500000000206 0
+2889 0.1149999999997236 -0.2250000000001843 0
+2890 0.1199999999997092 -0.217500000000206 0
+2891 0.1249999999996949 -0.217500000000206 0
+2892 0.1249999999996949 -0.2250000000001843 0
+2893 0.1299999999996806 -0.217500000000206 0
+2894 0.1349999999996662 -0.217500000000206 0
+2895 0.1349999999996662 -0.2250000000001843 0
+2896 0.1399999999996519 -0.217500000000206 0
+2897 0.1449999999996348 -0.217500000000206 0
+2898 0.1449999999996348 -0.2250000000001843 0
+2899 0.1499999999996177 -0.217500000000206 0
+2900 0.1549999999996007 -0.217500000000206 0
+2901 0.1549999999996007 -0.2250000000001843 0
+2902 0.1599999999995836 -0.217500000000206 0
+2903 0.1649999999995692 -0.217500000000206 0
+2904 0.1649999999995692 -0.2250000000001843 0
+2905 0.1699999999995549 -0.217500000000206 0
+2906 0.1749999999995406 -0.217500000000206 0
+2907 0.1749999999995405 -0.2250000000001843 0
+2908 0.1799999999995262 -0.217500000000206 0
+2909 0.1849999999995118 -0.217500000000206 0
+2910 0.1849999999995118 -0.2250000000001843 0
+2911 0.1899999999994975 -0.217500000000206 0
+2912 0.1949999999994859 -0.217500000000206 0
+2913 0.1949999999994859 -0.2250000000001843 0
+2914 0.1999999999994742 -0.217500000000206 0
+2915 0.2049999999994859 -0.217500000000206 0
+2916 0.2049999999994859 -0.2250000000001843 0
+2917 0.2099999999994975 -0.217500000000206 0
+2918 0.2149999999995092 -0.217500000000206 0
+2919 0.2149999999995092 -0.2250000000001843 0
+2920 0.2199999999995209 -0.217500000000206 0
+2921 0.2249999999995352 -0.217500000000206 0
+2922 0.2249999999995352 -0.2250000000001843 0
+2923 0.2299999999995495 -0.217500000000206 0
+2924 0.2349999999995633 -0.217500000000206 0
+2925 0.2349999999995633 -0.2250000000001843 0
+2926 0.2399999999995772 -0.217500000000206 0
+2927 0.2449999999995893 -0.217500000000206 0
+2928 0.2449999999995894 -0.2250000000001843 0
+2929 0.2499999999996015 -0.217500000000206 0
+2930 0.2549999999996181 -0.217500000000206 0
+2931 0.2549999999996181 -0.2250000000001843 0
+2932 0.2599999999996346 -0.217500000000206 0
+2933 0.2649999999996452 -0.217500000000206 0
+2934 0.2649999999996452 -0.2250000000001843 0
+2935 0.2699999999996559 -0.217500000000206 0
+2936 0.2749999999996675 -0.217500000000206 0
+2937 0.2749999999996675 -0.2250000000001843 0
+2938 0.2799999999996792 -0.217500000000206 0
+2939 0.2849999999996973 -0.217500000000206 0
+2940 0.2849999999996973 -0.2250000000001843 0
+2941 0.2899999999997154 -0.217500000000206 0
+2942 0.2949999999997249 -0.217500000000206 0
+2943 0.2949999999997249 -0.2250000000001843 0
+2944 0.2999999999997344 -0.217500000000206 0
+2945 0.3049999999997439 -0.217500000000206 0
+2946 0.3049999999997439 -0.2250000000001843 0
+2947 0.3099999999997534 -0.217500000000206 0
+2948 0.3149999999997715 -0.217500000000206 0
+2949 0.3149999999997715 -0.2250000000001843 0
+2950 0.3199999999997897 -0.217500000000206 0
+2951 0.3249999999998013 -0.217500000000206 0
+2952 0.3249999999998013 -0.2250000000001843 0
+2953 0.329999999999813 -0.217500000000206 0
+2954 0.3349999999998236 -0.217500000000206 0
+2955 0.3349999999998236 -0.2250000000001843 0
+2956 0.3399999999998342 -0.217500000000206 0
+2957 0.3449999999998534 -0.217500000000206 0
+2958 0.3449999999998534 -0.2250000000001843 0
+2959 0.3499999999998726 -0.217500000000206 0
+2960 0.3549999999998821 -0.217500000000206 0
+2961 0.3549999999998821 -0.2250000000001843 0
+2962 0.3599999999998915 -0.217500000000206 0
+2963 0.3649999999999043 -0.217500000000206 0
+2964 0.3649999999999043 -0.2250000000001843 0
+2965 0.3699999999999171 -0.217500000000206 0
+2966 0.3749999999999342 -0.217500000000206 0
+2967 0.3749999999999342 -0.2250000000001843 0
+2968 0.3799999999999513 -0.217500000000206 0
+2969 0.3849999999999607 -0.217500000000206 0
+2970 0.3849999999999607 -0.2250000000001843 0
+2971 0.3899999999999701 -0.217500000000206 0
+2972 0.394999999999985 -0.217500000000206 0
+2973 0.394999999999985 -0.2250000000001843 0
+2974 0.004999999999990963 -0.2325000000001626 0
+2975 0.004999999999990963 -0.240000000000141 0
+2976 0.009999999999981926 -0.2325000000001626 0
+2977 0.01499999999997157 -0.2325000000001626 0
+2978 0.01499999999997157 -0.240000000000141 0
+2979 0.01999999999996121 -0.2325000000001626 0
+2980 0.02499999999995261 -0.2325000000001627 0
+2981 0.02499999999995261 -0.240000000000141 0
+2982 0.02999999999994402 -0.2325000000001627 0
+2983 0.03499999999993698 -0.2325000000001627 0
+2984 0.03499999999993698 -0.2400000000001409 0
+2985 0.03999999999992994 -0.2325000000001626 0
+2986 0.04499999999992209 -0.2325000000001626 0
+2987 0.04499999999992209 -0.2400000000001409 0
+2988 0.04999999999991424 -0.2325000000001626 0
+2989 0.05499999999990056 -0.2325000000001626 0
+2990 0.05499999999990056 -0.240000000000141 0
+2991 0.05999999999988688 -0.2325000000001626 0
+2992 0.06499999999987254 -0.2325000000001626 0
+2993 0.06499999999987254 -0.240000000000141 0
+2994 0.06999999999985819 -0.2325000000001626 0
+2995 0.07499999999984112 -0.2325000000001626 0
+2996 0.07499999999984111 -0.2400000000001409 0
+2997 0.07999999999982405 -0.2325000000001626 0
+2998 0.0849999999998097 -0.2325000000001626 0
+2999 0.0849999999998097 -0.2400000000001409 0
+3000 0.08999999999979536 -0.2325000000001626 0
+3001 0.09499999999978101 -0.2325000000001626 0
+3002 0.09499999999978101 -0.2400000000001409 0
+3003 0.09999999999976666 -0.2325000000001626 0
+3004 0.1049999999997523 -0.2325000000001627 0
+3005 0.1049999999997523 -0.240000000000141 0
+3006 0.109999999999738 -0.2325000000001627 0
+3007 0.1149999999997236 -0.2325000000001627 0
+3008 0.1149999999997236 -0.240000000000141 0
+3009 0.1199999999997092 -0.2325000000001627 0
+3010 0.1249999999996949 -0.2325000000001627 0
+3011 0.1249999999996949 -0.240000000000141 0
+3012 0.1299999999996806 -0.2325000000001627 0
+3013 0.1349999999996662 -0.2325000000001627 0
+3014 0.1349999999996662 -0.240000000000141 0
+3015 0.1399999999996519 -0.2325000000001626 0
+3016 0.1449999999996348 -0.2325000000001626 0
+3017 0.1449999999996348 -0.240000000000141 0
+3018 0.1499999999996177 -0.2325000000001627 0
+3019 0.1549999999996007 -0.2325000000001627 0
+3020 0.1549999999996006 -0.240000000000141 0
+3021 0.1599999999995836 -0.2325000000001627 0
+3022 0.1649999999995692 -0.2325000000001627 0
+3023 0.1649999999995692 -0.2400000000001409 0
+3024 0.1699999999995549 -0.2325000000001626 0
+3025 0.1749999999995405 -0.2325000000001626 0
+3026 0.1749999999995406 -0.2400000000001409 0
+3027 0.1799999999995262 -0.2325000000001627 0
+3028 0.1849999999995118 -0.2325000000001627 0
+3029 0.1849999999995118 -0.240000000000141 0
+3030 0.1899999999994975 -0.2325000000001626 0
+3031 0.1949999999994859 -0.2325000000001626 0
+3032 0.1949999999994859 -0.2400000000001409 0
+3033 0.1999999999994742 -0.2325000000001626 0
+3034 0.2049999999994859 -0.2325000000001626 0
+3035 0.2049999999994859 -0.2400000000001409 0
+3036 0.2099999999994975 -0.2325000000001627 0
+3037 0.2149999999995092 -0.2325000000001627 0
+3038 0.2149999999995092 -0.240000000000141 0
+3039 0.2199999999995209 -0.2325000000001627 0
+3040 0.2249999999995352 -0.2325000000001627 0
+3041 0.2249999999995352 -0.240000000000141 0
+3042 0.2299999999995495 -0.2325000000001626 0
+3043 0.2349999999995633 -0.2325000000001626 0
+3044 0.2349999999995633 -0.2400000000001409 0
+3045 0.2399999999995772 -0.2325000000001626 0
+3046 0.2449999999995894 -0.2325000000001626 0
+3047 0.2449999999995894 -0.240000000000141 0
+3048 0.2499999999996015 -0.2325000000001626 0
+3049 0.2549999999996181 -0.2325000000001626 0
+3050 0.2549999999996181 -0.2400000000001409 0
+3051 0.2599999999996346 -0.2325000000001626 0
+3052 0.2649999999996452 -0.2325000000001626 0
+3053 0.2649999999996452 -0.2400000000001409 0
+3054 0.2699999999996559 -0.2325000000001626 0
+3055 0.2749999999996675 -0.2325000000001626 0
+3056 0.2749999999996675 -0.240000000000141 0
+3057 0.2799999999996792 -0.2325000000001627 0
+3058 0.2849999999996973 -0.2325000000001627 0
+3059 0.2849999999996973 -0.240000000000141 0
+3060 0.2899999999997154 -0.2325000000001627 0
+3061 0.2949999999997249 -0.2325000000001627 0
+3062 0.2949999999997249 -0.240000000000141 0
+3063 0.2999999999997344 -0.2325000000001627 0
+3064 0.3049999999997439 -0.2325000000001627 0
+3065 0.3049999999997439 -0.240000000000141 0
+3066 0.3099999999997534 -0.2325000000001626 0
+3067 0.3149999999997715 -0.2325000000001626 0
+3068 0.3149999999997715 -0.240000000000141 0
+3069 0.3199999999997897 -0.2325000000001626 0
+3070 0.3249999999998013 -0.2325000000001626 0
+3071 0.3249999999998013 -0.240000000000141 0
+3072 0.329999999999813 -0.2325000000001627 0
+3073 0.3349999999998236 -0.2325000000001627 0
+3074 0.3349999999998236 -0.240000000000141 0
+3075 0.3399999999998342 -0.2325000000001627 0
+3076 0.3449999999998534 -0.2325000000001627 0
+3077 0.3449999999998534 -0.240000000000141 0
+3078 0.3499999999998726 -0.2325000000001627 0
+3079 0.3549999999998821 -0.2325000000001626 0
+3080 0.3549999999998821 -0.240000000000141 0
+3081 0.3599999999998915 -0.2325000000001627 0
+3082 0.3649999999999043 -0.2325000000001627 0
+3083 0.3649999999999043 -0.240000000000141 0
+3084 0.3699999999999171 -0.2325000000001626 0
+3085 0.3749999999999342 -0.2325000000001626 0
+3086 0.3749999999999342 -0.240000000000141 0
+3087 0.3799999999999513 -0.2325000000001626 0
+3088 0.3849999999999607 -0.2325000000001626 0
+3089 0.3849999999999607 -0.240000000000141 0
+3090 0.3899999999999701 -0.2325000000001626 0
+3091 0.394999999999985 -0.2325000000001626 0
+3092 0.394999999999985 -0.240000000000141 0
+3093 0.004999999999990963 -0.2475000000001095 0
+3094 0.004999999999990963 -0.2550000000000781 0
+3095 0.009999999999981926 -0.2475000000001095 0
+3096 0.01499999999997157 -0.2475000000001095 0
+3097 0.01499999999997157 -0.2550000000000781 0
+3098 0.01999999999996121 -0.2475000000001095 0
+3099 0.02499999999995261 -0.2475000000001095 0
+3100 0.02499999999995261 -0.2550000000000781 0
+3101 0.02999999999994401 -0.2475000000001096 0
+3102 0.03499999999993698 -0.2475000000001095 0
+3103 0.03499999999993698 -0.2550000000000781 0
+3104 0.03999999999992994 -0.2475000000001095 0
+3105 0.04499999999992209 -0.2475000000001095 0
+3106 0.04499999999992209 -0.2550000000000781 0
+3107 0.04999999999991424 -0.2475000000001095 0
+3108 0.05499999999990056 -0.2475000000001095 0
+3109 0.05499999999990056 -0.2550000000000781 0
+3110 0.05999999999988688 -0.2475000000001095 0
+3111 0.06499999999987254 -0.2475000000001095 0
+3112 0.06499999999987252 -0.2550000000000781 0
+3113 0.06999999999985818 -0.2475000000001095 0
+3114 0.07499999999984111 -0.2475000000001095 0
+3115 0.07499999999984111 -0.2550000000000781 0
+3116 0.07999999999982405 -0.2475000000001095 0
+3117 0.0849999999998097 -0.2475000000001095 0
+3118 0.0849999999998097 -0.2550000000000781 0
+3119 0.08999999999979536 -0.2475000000001095 0
+3120 0.09499999999978101 -0.2475000000001095 0
+3121 0.09499999999978101 -0.2550000000000781 0
+3122 0.09999999999976666 -0.2475000000001095 0
+3123 0.1049999999997523 -0.2475000000001095 0
+3124 0.1049999999997523 -0.2550000000000781 0
+3125 0.109999999999738 -0.2475000000001095 0
+3126 0.1149999999997236 -0.2475000000001095 0
+3127 0.1149999999997236 -0.2550000000000781 0
+3128 0.1199999999997092 -0.2475000000001095 0
+3129 0.1249999999996949 -0.2475000000001095 0
+3130 0.1249999999996949 -0.2550000000000781 0
+3131 0.1299999999996806 -0.2475000000001095 0
+3132 0.1349999999996662 -0.2475000000001095 0
+3133 0.1349999999996662 -0.2550000000000781 0
+3134 0.1399999999996519 -0.2475000000001095 0
+3135 0.1449999999996348 -0.2475000000001095 0
+3136 0.1449999999996348 -0.2550000000000781 0
+3137 0.1499999999996177 -0.2475000000001095 0
+3138 0.1549999999996006 -0.2475000000001095 0
+3139 0.1549999999996007 -0.2550000000000781 0
+3140 0.1599999999995836 -0.2475000000001095 0
+3141 0.1649999999995692 -0.2475000000001095 0
+3142 0.1649999999995692 -0.2550000000000781 0
+3143 0.1699999999995549 -0.2475000000001095 0
+3144 0.1749999999995406 -0.2475000000001095 0
+3145 0.1749999999995406 -0.2550000000000781 0
+3146 0.1799999999995262 -0.2475000000001095 0
+3147 0.1849999999995118 -0.2475000000001095 0
+3148 0.1849999999995118 -0.2550000000000781 0
+3149 0.1899999999994975 -0.2475000000001095 0
+3150 0.1949999999994859 -0.2475000000001095 0
+3151 0.1949999999994859 -0.2550000000000781 0
+3152 0.1999999999994742 -0.2475000000001095 0
+3153 0.2049999999994859 -0.2475000000001095 0
+3154 0.2049999999994859 -0.2550000000000781 0
+3155 0.2099999999994975 -0.2475000000001095 0
+3156 0.2149999999995092 -0.2475000000001095 0
+3157 0.2149999999995092 -0.2550000000000781 0
+3158 0.2199999999995209 -0.2475000000001095 0
+3159 0.2249999999995352 -0.2475000000001095 0
+3160 0.2249999999995352 -0.2550000000000781 0
+3161 0.2299999999995495 -0.2475000000001095 0
+3162 0.2349999999995633 -0.2475000000001095 0
+3163 0.2349999999995633 -0.2550000000000781 0
+3164 0.2399999999995772 -0.2475000000001095 0
+3165 0.2449999999995894 -0.2475000000001095 0
+3166 0.2449999999995894 -0.2550000000000781 0
+3167 0.2499999999996015 -0.2475000000001095 0
+3168 0.2549999999996181 -0.2475000000001095 0
+3169 0.2549999999996181 -0.2550000000000781 0
+3170 0.2599999999996346 -0.2475000000001095 0
+3171 0.2649999999996452 -0.2475000000001095 0
+3172 0.2649999999996452 -0.2550000000000781 0
+3173 0.2699999999996559 -0.2475000000001095 0
+3174 0.2749999999996675 -0.2475000000001095 0
+3175 0.2749999999996675 -0.2550000000000781 0
+3176 0.2799999999996792 -0.2475000000001095 0
+3177 0.2849999999996973 -0.2475000000001095 0
+3178 0.2849999999996973 -0.2550000000000781 0
+3179 0.2899999999997154 -0.2475000000001095 0
+3180 0.2949999999997249 -0.2475000000001095 0
+3181 0.2949999999997249 -0.2550000000000781 0
+3182 0.2999999999997344 -0.2475000000001095 0
+3183 0.3049999999997439 -0.2475000000001095 0
+3184 0.3049999999997439 -0.2550000000000781 0
+3185 0.3099999999997534 -0.2475000000001095 0
+3186 0.3149999999997715 -0.2475000000001095 0
+3187 0.3149999999997715 -0.2550000000000781 0
+3188 0.3199999999997897 -0.2475000000001095 0
+3189 0.3249999999998013 -0.2475000000001096 0
+3190 0.3249999999998013 -0.2550000000000781 0
+3191 0.329999999999813 -0.2475000000001096 0
+3192 0.3349999999998236 -0.2475000000001095 0
+3193 0.3349999999998236 -0.2550000000000781 0
+3194 0.3399999999998342 -0.2475000000001095 0
+3195 0.3449999999998534 -0.2475000000001095 0
+3196 0.3449999999998534 -0.2550000000000781 0
+3197 0.3499999999998726 -0.2475000000001095 0
+3198 0.3549999999998821 -0.2475000000001095 0
+3199 0.3549999999998821 -0.2550000000000781 0
+3200 0.3599999999998915 -0.2475000000001095 0
+3201 0.3649999999999043 -0.2475000000001095 0
+3202 0.3649999999999043 -0.2550000000000781 0
+3203 0.3699999999999171 -0.2475000000001095 0
+3204 0.3749999999999342 -0.2475000000001095 0
+3205 0.3749999999999341 -0.2550000000000781 0
+3206 0.3799999999999513 -0.2475000000001095 0
+3207 0.3849999999999607 -0.2475000000001095 0
+3208 0.3849999999999607 -0.2550000000000781 0
+3209 0.3899999999999702 -0.2475000000001095 0
+3210 0.3949999999999851 -0.2475000000001095 0
+3211 0.3949999999999851 -0.2550000000000781 0
+3212 0.004999999999990963 -0.2625000000000553 0
+3213 0.004999999999990963 -0.2700000000000326 0
+3214 0.009999999999981926 -0.2625000000000554 0
+3215 0.01499999999997157 -0.2625000000000554 0
+3216 0.01499999999997157 -0.2700000000000326 0
+3217 0.01999999999996121 -0.2625000000000553 0
+3218 0.02499999999995261 -0.2625000000000554 0
+3219 0.02499999999995261 -0.2700000000000326 0
+3220 0.02999999999994402 -0.2625000000000554 0
+3221 0.03499999999993698 -0.2625000000000554 0
+3222 0.03499999999993698 -0.2700000000000326 0
+3223 0.03999999999992994 -0.2625000000000554 0
+3224 0.04499999999992209 -0.2625000000000554 0
+3225 0.04499999999992209 -0.2700000000000326 0
+3226 0.04999999999991424 -0.2625000000000554 0
+3227 0.05499999999990056 -0.2625000000000554 0
+3228 0.05499999999990056 -0.2700000000000326 0
+3229 0.05999999999988688 -0.2625000000000553 0
+3230 0.06499999999987252 -0.2625000000000552 0
+3231 0.06499999999987254 -0.2700000000000326 0
+3232 0.06999999999985818 -0.2625000000000552 0
+3233 0.07499999999984111 -0.2625000000000553 0
+3234 0.07499999999984112 -0.2700000000000326 0
+3235 0.07999999999982405 -0.2625000000000553 0
+3236 0.0849999999998097 -0.2625000000000553 0
+3237 0.0849999999998097 -0.2700000000000326 0
+3238 0.08999999999979536 -0.2625000000000553 0
+3239 0.09499999999978101 -0.2625000000000553 0
+3240 0.09499999999978101 -0.2700000000000326 0
+3241 0.09999999999976666 -0.2625000000000553 0
+3242 0.1049999999997523 -0.2625000000000553 0
+3243 0.1049999999997523 -0.2700000000000326 0
+3244 0.109999999999738 -0.2625000000000553 0
+3245 0.1149999999997236 -0.2625000000000553 0
+3246 0.1149999999997236 -0.2700000000000326 0
+3247 0.1199999999997092 -0.2625000000000553 0
+3248 0.1249999999996949 -0.2625000000000553 0
+3249 0.1249999999996949 -0.2700000000000326 0
+3250 0.1299999999996806 -0.2625000000000553 0
+3251 0.1349999999996662 -0.2625000000000553 0
+3252 0.1349999999996662 -0.2700000000000326 0
+3253 0.1399999999996519 -0.2625000000000553 0
+3254 0.1449999999996348 -0.2625000000000553 0
+3255 0.1449999999996348 -0.2700000000000326 0
+3256 0.1499999999996177 -0.2625000000000553 0
+3257 0.1549999999996007 -0.2625000000000553 0
+3258 0.1549999999996006 -0.2700000000000326 0
+3259 0.1599999999995836 -0.2625000000000553 0
+3260 0.1649999999995692 -0.2625000000000553 0
+3261 0.1649999999995692 -0.2700000000000326 0
+3262 0.1699999999995549 -0.2625000000000553 0
+3263 0.1749999999995406 -0.2625000000000553 0
+3264 0.1749999999995405 -0.2700000000000326 0
+3265 0.1799999999995262 -0.2625000000000553 0
+3266 0.1849999999995118 -0.2625000000000553 0
+3267 0.1849999999995118 -0.2700000000000326 0
+3268 0.1899999999994975 -0.2625000000000553 0
+3269 0.1949999999994859 -0.2625000000000553 0
+3270 0.1949999999994859 -0.2700000000000326 0
+3271 0.1999999999994742 -0.2625000000000553 0
+3272 0.2049999999994859 -0.2625000000000553 0
+3273 0.2049999999994859 -0.2700000000000326 0
+3274 0.2099999999994975 -0.2625000000000553 0
+3275 0.2149999999995092 -0.2625000000000553 0
+3276 0.2149999999995092 -0.2700000000000326 0
+3277 0.2199999999995209 -0.2625000000000553 0
+3278 0.2249999999995352 -0.2625000000000553 0
+3279 0.2249999999995352 -0.2700000000000326 0
+3280 0.2299999999995495 -0.2625000000000553 0
+3281 0.2349999999995634 -0.2625000000000553 0
+3282 0.2349999999995634 -0.2700000000000326 0
+3283 0.2399999999995772 -0.2625000000000553 0
+3284 0.2449999999995894 -0.2625000000000553 0
+3285 0.2449999999995893 -0.2700000000000326 0
+3286 0.2499999999996015 -0.2625000000000553 0
+3287 0.2549999999996181 -0.2625000000000553 0
+3288 0.2549999999996181 -0.2700000000000326 0
+3289 0.2599999999996346 -0.2625000000000553 0
+3290 0.2649999999996453 -0.2625000000000553 0
+3291 0.2649999999996452 -0.2700000000000326 0
+3292 0.2699999999996559 -0.2625000000000553 0
+3293 0.2749999999996675 -0.2625000000000553 0
+3294 0.2749999999996675 -0.2700000000000326 0
+3295 0.2799999999996792 -0.2625000000000553 0
+3296 0.2849999999996973 -0.2625000000000553 0
+3297 0.2849999999996973 -0.2700000000000326 0
+3298 0.2899999999997154 -0.2625000000000553 0
+3299 0.2949999999997249 -0.2625000000000553 0
+3300 0.2949999999997249 -0.2700000000000326 0
+3301 0.2999999999997344 -0.2625000000000553 0
+3302 0.3049999999997439 -0.2625000000000553 0
+3303 0.3049999999997439 -0.2700000000000326 0
+3304 0.3099999999997534 -0.2625000000000553 0
+3305 0.3149999999997715 -0.2625000000000553 0
+3306 0.3149999999997715 -0.2700000000000326 0
+3307 0.3199999999997897 -0.2625000000000553 0
+3308 0.3249999999998013 -0.2625000000000553 0
+3309 0.3249999999998013 -0.2700000000000326 0
+3310 0.329999999999813 -0.2625000000000553 0
+3311 0.3349999999998236 -0.2625000000000553 0
+3312 0.3349999999998236 -0.2700000000000326 0
+3313 0.3399999999998342 -0.2625000000000553 0
+3314 0.3449999999998534 -0.2625000000000553 0
+3315 0.3449999999998534 -0.2700000000000326 0
+3316 0.3499999999998726 -0.2625000000000553 0
+3317 0.3549999999998821 -0.2625000000000553 0
+3318 0.3549999999998821 -0.2700000000000326 0
+3319 0.3599999999998915 -0.2625000000000554 0
+3320 0.3649999999999043 -0.2625000000000554 0
+3321 0.3649999999999043 -0.2700000000000326 0
+3322 0.369999999999917 -0.2625000000000553 0
+3323 0.3749999999999341 -0.2625000000000553 0
+3324 0.3749999999999341 -0.2700000000000326 0
+3325 0.3799999999999512 -0.2625000000000553 0
+3326 0.3849999999999607 -0.2625000000000553 0
+3327 0.3849999999999607 -0.2700000000000326 0
+3328 0.3899999999999702 -0.2625000000000553 0
+3329 0.3949999999999851 -0.2625000000000553 0
+3330 0.3949999999999851 -0.2700000000000326 0
+3331 0.004999999999990963 -0.2775000000000217 0
+3332 0.004999999999990962 -0.2850000000000109 0
+3333 0.009999999999981926 -0.2775000000000217 0
+3334 0.01499999999997156 -0.2775000000000217 0
+3335 0.01499999999997156 -0.2850000000000109 0
+3336 0.01999999999996121 -0.2775000000000217 0
+3337 0.02499999999995261 -0.2775000000000217 0
+3338 0.02499999999995261 -0.2850000000000109 0
+3339 0.02999999999994402 -0.2775000000000217 0
+3340 0.03499999999993698 -0.2775000000000217 0
+3341 0.03499999999993698 -0.2850000000000108 0
+3342 0.03999999999992994 -0.2775000000000217 0
+3343 0.04499999999992209 -0.2775000000000217 0
+3344 0.04499999999992209 -0.2850000000000108 0
+3345 0.04999999999991424 -0.2775000000000217 0
+3346 0.05499999999990056 -0.2775000000000217 0
+3347 0.05499999999990056 -0.2850000000000109 0
+3348 0.05999999999988687 -0.2775000000000217 0
+3349 0.06499999999987254 -0.2775000000000217 0
+3350 0.06499999999987254 -0.2850000000000108 0
+3351 0.06999999999985819 -0.2775000000000217 0
+3352 0.07499999999984112 -0.2775000000000217 0
+3353 0.07499999999984112 -0.2850000000000108 0
+3354 0.07999999999982406 -0.2775000000000217 0
+3355 0.0849999999998097 -0.2775000000000217 0
+3356 0.0849999999998097 -0.2850000000000109 0
+3357 0.08999999999979536 -0.2775000000000217 0
+3358 0.09499999999978101 -0.2775000000000217 0
+3359 0.09499999999978101 -0.2850000000000109 0
+3360 0.09999999999976666 -0.2775000000000217 0
+3361 0.1049999999997523 -0.2775000000000217 0
+3362 0.1049999999997523 -0.2850000000000109 0
+3363 0.109999999999738 -0.2775000000000217 0
+3364 0.1149999999997236 -0.2775000000000217 0
+3365 0.1149999999997236 -0.2850000000000108 0
+3366 0.1199999999997092 -0.2775000000000217 0
+3367 0.1249999999996949 -0.2775000000000217 0
+3368 0.1249999999996949 -0.2850000000000108 0
+3369 0.1299999999996806 -0.2775000000000217 0
+3370 0.1349999999996662 -0.2775000000000217 0
+3371 0.1349999999996662 -0.2850000000000109 0
+3372 0.1399999999996518 -0.2775000000000217 0
+3373 0.1449999999996348 -0.2775000000000217 0
+3374 0.1449999999996348 -0.2850000000000109 0
+3375 0.1499999999996177 -0.2775000000000217 0
+3376 0.1549999999996006 -0.2775000000000217 0
+3377 0.1549999999996006 -0.2850000000000109 0
+3378 0.1599999999995836 -0.2775000000000217 0
+3379 0.1649999999995692 -0.2775000000000217 0
+3380 0.1649999999995692 -0.2850000000000108 0
+3381 0.1699999999995549 -0.2775000000000217 0
+3382 0.1749999999995405 -0.2775000000000217 0
+3383 0.1749999999995406 -0.2850000000000108 0
+3384 0.1799999999995262 -0.2775000000000217 0
+3385 0.1849999999995118 -0.2775000000000217 0
+3386 0.1849999999995118 -0.2850000000000109 0
+3387 0.1899999999994975 -0.2775000000000217 0
+3388 0.1949999999994859 -0.2775000000000217 0
+3389 0.1949999999994859 -0.2850000000000109 0
+3390 0.1999999999994742 -0.2775000000000217 0
+3391 0.2049999999994859 -0.2775000000000217 0
+3392 0.2049999999994859 -0.2850000000000108 0
+3393 0.2099999999994975 -0.2775000000000217 0
+3394 0.2149999999995092 -0.2775000000000217 0
+3395 0.2149999999995092 -0.2850000000000109 0
+3396 0.2199999999995209 -0.2775000000000217 0
+3397 0.2249999999995352 -0.2775000000000217 0
+3398 0.2249999999995352 -0.2850000000000109 0
+3399 0.2299999999995495 -0.2775000000000217 0
+3400 0.2349999999995633 -0.2775000000000217 0
+3401 0.2349999999995634 -0.2850000000000109 0
+3402 0.2399999999995772 -0.2775000000000217 0
+3403 0.2449999999995894 -0.2775000000000217 0
+3404 0.2449999999995894 -0.2850000000000108 0
+3405 0.2499999999996015 -0.2775000000000217 0
+3406 0.2549999999996181 -0.2775000000000217 0
+3407 0.2549999999996181 -0.2850000000000108 0
+3408 0.2599999999996347 -0.2775000000000217 0
+3409 0.2649999999996452 -0.2775000000000217 0
+3410 0.2649999999996452 -0.2850000000000109 0
+3411 0.2699999999996558 -0.2775000000000217 0
+3412 0.2749999999996675 -0.2775000000000217 0
+3413 0.2749999999996675 -0.2850000000000109 0
+3414 0.2799999999996792 -0.2775000000000217 0
+3415 0.2849999999996973 -0.2775000000000217 0
+3416 0.2849999999996973 -0.2850000000000109 0
+3417 0.2899999999997154 -0.2775000000000217 0
+3418 0.2949999999997249 -0.2775000000000217 0
+3419 0.2949999999997249 -0.2850000000000108 0
+3420 0.2999999999997344 -0.2775000000000217 0
+3421 0.3049999999997439 -0.2775000000000217 0
+3422 0.3049999999997439 -0.2850000000000108 0
+3423 0.3099999999997534 -0.2775000000000217 0
+3424 0.3149999999997715 -0.2775000000000217 0
+3425 0.3149999999997716 -0.2850000000000109 0
+3426 0.3199999999997897 -0.2775000000000217 0
+3427 0.3249999999998013 -0.2775000000000217 0
+3428 0.3249999999998013 -0.2850000000000109 0
+3429 0.329999999999813 -0.2775000000000217 0
+3430 0.3349999999998236 -0.2775000000000217 0
+3431 0.3349999999998236 -0.2850000000000109 0
+3432 0.3399999999998342 -0.2775000000000217 0
+3433 0.3449999999998534 -0.2775000000000217 0
+3434 0.3449999999998534 -0.2850000000000109 0
+3435 0.3499999999998726 -0.2775000000000217 0
+3436 0.3549999999998821 -0.2775000000000217 0
+3437 0.3549999999998821 -0.2850000000000109 0
+3438 0.3599999999998915 -0.2775000000000218 0
+3439 0.3649999999999043 -0.2775000000000218 0
+3440 0.3649999999999043 -0.2850000000000109 0
+3441 0.3699999999999171 -0.2775000000000217 0
+3442 0.3749999999999342 -0.2775000000000217 0
+3443 0.3749999999999342 -0.2850000000000108 0
+3444 0.3799999999999513 -0.2775000000000217 0
+3445 0.3849999999999607 -0.2775000000000217 0
+3446 0.3849999999999607 -0.2850000000000109 0
+3447 0.3899999999999702 -0.2775000000000217 0
+3448 0.394999999999985 -0.2775000000000217 0
+3449 0.394999999999985 -0.2850000000000109 0
+3450 0.004999999999990962 -0.2925000000000054 0
+3451 0.009999999999981926 -0.2925000000000054 0
+3452 0.01499999999997157 -0.2925000000000054 0
+3453 0.01999999999996121 -0.2925000000000054 0
+3454 0.02499999999995261 -0.2925000000000054 0
+3455 0.02999999999994401 -0.2925000000000054 0
+3456 0.03499999999993698 -0.2925000000000054 0
+3457 0.03999999999992994 -0.2925000000000054 0
+3458 0.04499999999992209 -0.2925000000000054 0
+3459 0.04999999999991424 -0.2925000000000054 0
+3460 0.05499999999990056 -0.2925000000000054 0
+3461 0.05999999999988688 -0.2925000000000054 0
+3462 0.06499999999987254 -0.2925000000000054 0
+3463 0.06999999999985819 -0.2925000000000054 0
+3464 0.07499999999984112 -0.2925000000000054 0
+3465 0.07999999999982406 -0.2925000000000054 0
+3466 0.0849999999998097 -0.2925000000000054 0
+3467 0.08999999999979536 -0.2925000000000054 0
+3468 0.09499999999978101 -0.2925000000000054 0
+3469 0.09999999999976666 -0.2925000000000054 0
+3470 0.1049999999997523 -0.2925000000000054 0
+3471 0.109999999999738 -0.2925000000000054 0
+3472 0.1149999999997236 -0.2925000000000054 0
+3473 0.1199999999997092 -0.2925000000000054 0
+3474 0.1249999999996949 -0.2925000000000054 0
+3475 0.1299999999996806 -0.2925000000000054 0
+3476 0.1349999999996662 -0.2925000000000054 0
+3477 0.1399999999996519 -0.2925000000000054 0
+3478 0.1449999999996348 -0.2925000000000054 0
+3479 0.1499999999996177 -0.2925000000000054 0
+3480 0.1549999999996006 -0.2925000000000054 0
+3481 0.1599999999995836 -0.2925000000000054 0
+3482 0.1649999999995692 -0.2925000000000054 0
+3483 0.1699999999995549 -0.2925000000000054 0
+3484 0.1749999999995406 -0.2925000000000054 0
+3485 0.1799999999995262 -0.2925000000000054 0
+3486 0.1849999999995118 -0.2925000000000054 0
+3487 0.1899999999994975 -0.2925000000000054 0
+3488 0.1949999999994859 -0.2925000000000054 0
+3489 0.1999999999994742 -0.2925000000000054 0
+3490 0.2049999999994859 -0.2925000000000054 0
+3491 0.2099999999994975 -0.2925000000000054 0
+3492 0.2149999999995092 -0.2925000000000054 0
+3493 0.2199999999995209 -0.2925000000000054 0
+3494 0.2249999999995352 -0.2925000000000054 0
+3495 0.2299999999995495 -0.2925000000000054 0
+3496 0.2349999999995634 -0.2925000000000054 0
+3497 0.2399999999995772 -0.2925000000000054 0
+3498 0.2449999999995894 -0.2925000000000054 0
+3499 0.2499999999996016 -0.2925000000000054 0
+3500 0.2549999999996181 -0.2925000000000054 0
+3501 0.2599999999996346 -0.2925000000000054 0
+3502 0.2649999999996452 -0.2925000000000054 0
+3503 0.2699999999996558 -0.2925000000000054 0
+3504 0.2749999999996675 -0.2925000000000054 0
+3505 0.2799999999996791 -0.2925000000000054 0
+3506 0.2849999999996973 -0.2925000000000054 0
+3507 0.2899999999997154 -0.2925000000000054 0
+3508 0.2949999999997249 -0.2925000000000054 0
+3509 0.2999999999997344 -0.2925000000000054 0
+3510 0.3049999999997439 -0.2925000000000054 0
+3511 0.3099999999997534 -0.2925000000000054 0
+3512 0.3149999999997716 -0.2925000000000054 0
+3513 0.3199999999997897 -0.2925000000000054 0
+3514 0.3249999999998013 -0.2925000000000054 0
+3515 0.329999999999813 -0.2925000000000054 0
+3516 0.3349999999998236 -0.2925000000000054 0
+3517 0.3399999999998342 -0.2925000000000054 0
+3518 0.3449999999998534 -0.2925000000000054 0
+3519 0.3499999999998726 -0.2925000000000054 0
+3520 0.3549999999998821 -0.2925000000000055 0
+3521 0.3599999999998915 -0.2925000000000055 0
+3522 0.3649999999999043 -0.2925000000000054 0
+3523 0.3699999999999171 -0.2925000000000054 0
+3524 0.3749999999999342 -0.2925000000000054 0
+3525 0.3799999999999513 -0.2925000000000054 0
+3526 0.3849999999999607 -0.2925000000000054 0
+3527 0.3899999999999702 -0.2925000000000054 0
+3528 0.3949999999999851 -0.2925000000000054 0
+3529 0.4159009150359435 -0.01500000000003687 0
+3530 0.4325968757860913 -0.01500000000003687 0
+3531 0.4501276345236666 -0.01500000000003687 0
+3532 0.4685349312246211 -0.01500000000003687 0
+3533 0.4878625928296997 -0.01500000000003687 0
+3534 0.5081566374754983 -0.01500000000003687 0
+3535 0.5294653843060498 -0.01500000000003687 0
+3536 0.5518395685067007 -0.01500000000003687 0
+3537 0.5753324619453913 -0.01500000000003687 0
+3538 0.4159009150359435 -0.03000000000008241 0
+3539 0.4325968757860914 -0.03000000000008241 0
+3540 0.4501276345236666 -0.03000000000008241 0
+3541 0.4685349312246212 -0.03000000000008241 0
+3542 0.4878625928296997 -0.03000000000008241 0
+3543 0.5081566374754983 -0.03000000000008241 0
+3544 0.5294653843060497 -0.03000000000008241 0
+3545 0.5518395685067006 -0.03000000000008241 0
+3546 0.5753324619453918 -0.0300000000000824 0
+3547 0.4159009150359435 -0.0450000000001214 0
+3548 0.4325968757860914 -0.04500000000012138 0
+3549 0.4501276345236667 -0.0450000000001214 0
+3550 0.468534931224621 -0.04500000000012139 0
+3551 0.4878625928296997 -0.04500000000012139 0
+3552 0.5081566374754983 -0.04500000000012138 0
+3553 0.5294653843060497 -0.04500000000012139 0
+3554 0.5518395685067006 -0.04500000000012139 0
+3555 0.5753324619453916 -0.04500000000012138 0
+3556 0.4159009150359436 -0.06000000000015071 0
+3557 0.4325968757860914 -0.0600000000001507 0
+3558 0.4501276345236667 -0.06000000000015071 0
+3559 0.4685349312246211 -0.06000000000015071 0
+3560 0.4878625928296997 -0.06000000000015071 0
+3561 0.5081566374754984 -0.0600000000001507 0
+3562 0.5294653843060497 -0.0600000000001507 0
+3563 0.5518395685067007 -0.06000000000015071 0
+3564 0.5753324619453916 -0.0600000000001507 0
+3565 0.4159009150359435 -0.07500000000018975 0
+3566 0.4325968757860914 -0.07500000000018978 0
+3567 0.4501276345236666 -0.07500000000018976 0
+3568 0.4685349312246211 -0.07500000000018975 0
+3569 0.4878625928296997 -0.07500000000018975 0
+3570 0.5081566374754983 -0.07500000000018975 0
+3571 0.5294653843060497 -0.07500000000018975 0
+3572 0.5518395685067007 -0.07500000000018975 0
+3573 0.5753324619453916 -0.07500000000018976 0
+3574 0.4159009150359435 -0.09000000000022879 0
+3575 0.4325968757860914 -0.09000000000022877 0
+3576 0.4501276345236666 -0.09000000000022879 0
+3577 0.4685349312246211 -0.09000000000022877 0
+3578 0.4878625928296997 -0.09000000000022877 0
+3579 0.5081566374754983 -0.09000000000022879 0
+3580 0.5294653843060497 -0.09000000000022881 0
+3581 0.5518395685067007 -0.09000000000022879 0
+3582 0.5753324619453917 -0.09000000000022879 0
+3583 0.4159009150359436 -0.1050000000002732 0
+3584 0.4325968757860915 -0.1050000000002732 0
+3585 0.4501276345236666 -0.1050000000002733 0
+3586 0.4685349312246211 -0.1050000000002732 0
+3587 0.4878625928296997 -0.1050000000002732 0
+3588 0.5081566374754983 -0.1050000000002732 0
+3589 0.5294653843060497 -0.1050000000002732 0
+3590 0.5518395685067006 -0.1050000000002732 0
+3591 0.5753324619453916 -0.1050000000002732 0
+3592 0.4159009150359435 -0.1200000000003112 0
+3593 0.4325968757860914 -0.1200000000003112 0
+3594 0.4501276345236666 -0.1200000000003112 0
+3595 0.4685349312246211 -0.1200000000003112 0
+3596 0.4878625928296997 -0.1200000000003112 0
+3597 0.5081566374754983 -0.1200000000003112 0
+3598 0.5294653843060497 -0.1200000000003112 0
+3599 0.5518395685067007 -0.1200000000003112 0
+3600 0.5753324619453916 -0.1200000000003112 0
+3601 0.4159009150359435 -0.135000000000348 0
+3602 0.4325968757860914 -0.1350000000003481 0
+3603 0.4501276345236666 -0.1350000000003481 0
+3604 0.4685349312246213 -0.1350000000003481 0
+3605 0.4878625928296997 -0.1350000000003481 0
+3606 0.5081566374754983 -0.1350000000003481 0
+3607 0.5294653843060497 -0.1350000000003481 0
+3608 0.5518395685067006 -0.1350000000003481 0
+3609 0.5753324619453917 -0.1350000000003481 0
+3610 0.4159009150359435 -0.150000000000385 0
+3611 0.4325968757860914 -0.150000000000385 0
+3612 0.4501276345236666 -0.150000000000385 0
+3613 0.4685349312246211 -0.150000000000385 0
+3614 0.4878625928296997 -0.150000000000385 0
+3615 0.5081566374754983 -0.150000000000385 0
+3616 0.5294653843060497 -0.150000000000385 0
+3617 0.5518395685067007 -0.150000000000385 0
+3618 0.5753324619453916 -0.150000000000385 0
+3619 0.4159009150359435 -0.165000000000347 0
+3620 0.4325968757860914 -0.165000000000347 0
+3621 0.4501276345236666 -0.165000000000347 0
+3622 0.4685349312246211 -0.165000000000347 0
+3623 0.4878625928296997 -0.165000000000347 0
+3624 0.5081566374754983 -0.165000000000347 0
+3625 0.5294653843060497 -0.165000000000347 0
+3626 0.5518395685067007 -0.165000000000347 0
+3627 0.5753324619453916 -0.165000000000347 0
+3628 0.4159009150359435 -0.1800000000003037 0
+3629 0.4325968757860914 -0.1800000000003036 0
+3630 0.4501276345236666 -0.1800000000003036 0
+3631 0.4685349312246211 -0.1800000000003036 0
+3632 0.4878625928296997 -0.1800000000003036 0
+3633 0.5081566374754983 -0.1800000000003036 0
+3634 0.5294653843060497 -0.1800000000003036 0
+3635 0.5518395685067007 -0.1800000000003036 0
+3636 0.5753324619453916 -0.1800000000003036 0
+3637 0.4159009150359436 -0.1950000000002711 0
+3638 0.4325968757860914 -0.1950000000002712 0
+3639 0.4501276345236666 -0.1950000000002711 0
+3640 0.468534931224621 -0.1950000000002711 0
+3641 0.4878625928296997 -0.1950000000002711 0
+3642 0.5081566374754983 -0.1950000000002711 0
+3643 0.5294653843060497 -0.1950000000002712 0
+3644 0.5518395685067007 -0.1950000000002711 0
+3645 0.5753324619453916 -0.1950000000002711 0
+3646 0.4159009150359435 -0.2100000000002277 0
+3647 0.4325968757860914 -0.2100000000002277 0
+3648 0.4501276345236666 -0.2100000000002277 0
+3649 0.4685349312246213 -0.2100000000002277 0
+3650 0.4878625928296997 -0.2100000000002277 0
+3651 0.5081566374754983 -0.2100000000002277 0
+3652 0.5294653843060497 -0.2100000000002277 0
+3653 0.5518395685067007 -0.2100000000002277 0
+3654 0.5753324619453915 -0.2100000000002277 0
+3655 0.4159009150359435 -0.2250000000001843 0
+3656 0.4325968757860914 -0.2250000000001843 0
+3657 0.4501276345236666 -0.2250000000001843 0
+3658 0.4685349312246211 -0.2250000000001843 0
+3659 0.4878625928296997 -0.2250000000001843 0
+3660 0.5081566374754983 -0.2250000000001843 0
+3661 0.5294653843060497 -0.2250000000001843 0
+3662 0.5518395685067007 -0.2250000000001843 0
+3663 0.5753324619453916 -0.2250000000001843 0
+3664 0.4159009150359434 -0.240000000000141 0
+3665 0.4325968757860914 -0.240000000000141 0
+3666 0.4501276345236667 -0.2400000000001409 0
+3667 0.4685349312246211 -0.2400000000001409 0
+3668 0.4878625928296997 -0.240000000000141 0
+3669 0.5081566374754983 -0.2400000000001409 0
+3670 0.5294653843060497 -0.2400000000001409 0
+3671 0.5518395685067007 -0.240000000000141 0
+3672 0.5753324619453916 -0.2400000000001409 0
+3673 0.4159009150359435 -0.2550000000000781 0
+3674 0.4325968757860914 -0.2550000000000781 0
+3675 0.4501276345236666 -0.2550000000000781 0
+3676 0.4685349312246211 -0.2550000000000781 0
+3677 0.4878625928296997 -0.2550000000000781 0
+3678 0.5081566374754983 -0.2550000000000781 0
+3679 0.5294653843060497 -0.2550000000000781 0
+3680 0.5518395685067007 -0.2550000000000781 0
+3681 0.5753324619453916 -0.2550000000000781 0
+3682 0.4159009150359436 -0.2700000000000326 0
+3683 0.4325968757860914 -0.2700000000000326 0
+3684 0.4501276345236666 -0.2700000000000326 0
+3685 0.4685349312246212 -0.2700000000000326 0
+3686 0.4878625928296997 -0.2700000000000326 0
+3687 0.5081566374754983 -0.2700000000000326 0
+3688 0.5294653843060497 -0.2700000000000326 0
+3689 0.5518395685067007 -0.2700000000000326 0
+3690 0.5753324619453917 -0.2700000000000326 0
+3691 0.4159009150359435 -0.2850000000000109 0
+3692 0.4325968757860914 -0.2850000000000108 0
+3693 0.4501276345236666 -0.2850000000000109 0
+3694 0.4685349312246211 -0.2850000000000109 0
+3695 0.4878625928296997 -0.2850000000000108 0
+3696 0.5081566374754983 -0.2850000000000108 0
+3697 0.5294653843060497 -0.2850000000000108 0
+3698 0.5518395685067007 -0.2850000000000109 0
+3699 0.5753324619453916 -0.2850000000000108 0
+3700 0.4079504575179718 -0.007500000000018436 0
+3701 0.4079504575179718 -0.01500000000003687 0
+3702 0.4159009150359435 -0.007500000000018436 0
+3703 0.4242488954110175 -0.007500000000018436 0
+3704 0.4242488954110174 -0.01500000000003687 0
+3705 0.4325968757860914 -0.007500000000018436 0
+3706 0.441362255154879 -0.007500000000018436 0
+3707 0.4413622551548789 -0.01500000000003687 0
+3708 0.4501276345236666 -0.007500000000018436 0
+3709 0.4593312828741438 -0.007500000000018436 0
+3710 0.4593312828741438 -0.01500000000003687 0
+3711 0.4685349312246211 -0.007500000000018436 0
+3712 0.4781987620271604 -0.007500000000018436 0
+3713 0.4781987620271604 -0.01500000000003687 0
+3714 0.4878625928296997 -0.007500000000018436 0
+3715 0.498009615152599 -0.007500000000018436 0
+3716 0.498009615152599 -0.01500000000003687 0
+3717 0.5081566374754983 -0.007500000000018436 0
+3718 0.518811010890774 -0.007500000000018436 0
+3719 0.5188110108907741 -0.01500000000003687 0
+3720 0.5294653843060497 -0.007500000000018436 0
+3721 0.5406524764063753 -0.007500000000018436 0
+3722 0.5406524764063753 -0.01500000000003687 0
+3723 0.5518395685067007 -0.007500000000018436 0
+3724 0.5635860152260461 -0.007500000000018436 0
+3725 0.563586015226046 -0.01500000000003687 0
+3726 0.5753324619453915 -0.007500000000018436 0
+3727 0.5876662309726957 -0.007500000000018436 0
+3728 0.5876662309726957 -0.01500000000003687 0
+3729 0.4079504575179718 -0.02250000000005964 0
+3730 0.4079504575179718 -0.03000000000008241 0
+3731 0.4159009150359435 -0.02250000000005964 0
+3732 0.4242488954110174 -0.02250000000005964 0
+3733 0.4242488954110174 -0.03000000000008241 0
+3734 0.4325968757860914 -0.02250000000005964 0
+3735 0.441362255154879 -0.02250000000005964 0
+3736 0.441362255154879 -0.03000000000008241 0
+3737 0.4501276345236666 -0.02250000000005964 0
+3738 0.4593312828741438 -0.02250000000005964 0
+3739 0.4593312828741439 -0.03000000000008241 0
+3740 0.4685349312246211 -0.02250000000005964 0
+3741 0.4781987620271604 -0.02250000000005964 0
+3742 0.4781987620271604 -0.03000000000008241 0
+3743 0.4878625928296997 -0.02250000000005964 0
+3744 0.498009615152599 -0.02250000000005964 0
+3745 0.498009615152599 -0.03000000000008241 0
+3746 0.5081566374754983 -0.02250000000005964 0
+3747 0.5188110108907741 -0.02250000000005964 0
+3748 0.518811010890774 -0.03000000000008241 0
+3749 0.5294653843060497 -0.02250000000005964 0
+3750 0.5406524764063752 -0.02250000000005964 0
+3751 0.5406524764063752 -0.03000000000008241 0
+3752 0.5518395685067006 -0.02250000000005964 0
+3753 0.5635860152260459 -0.02250000000005964 0
+3754 0.5635860152260461 -0.03000000000008241 0
+3755 0.5753324619453916 -0.02250000000005964 0
+3756 0.5876662309726959 -0.02250000000005964 0
+3757 0.5876662309726959 -0.03000000000008241 0
+3758 0.4079504575179718 -0.0375000000001019 0
+3759 0.4079504575179718 -0.04500000000012139 0
+3760 0.4159009150359435 -0.0375000000001019 0
+3761 0.4242488954110175 -0.0375000000001019 0
+3762 0.4242488954110175 -0.04500000000012139 0
+3763 0.4325968757860914 -0.0375000000001019 0
+3764 0.441362255154879 -0.0375000000001019 0
+3765 0.441362255154879 -0.04500000000012139 0
+3766 0.4501276345236667 -0.0375000000001019 0
+3767 0.4593312828741439 -0.0375000000001019 0
+3768 0.4593312828741438 -0.04500000000012139 0
+3769 0.4685349312246211 -0.0375000000001019 0
+3770 0.4781987620271603 -0.0375000000001019 0
+3771 0.4781987620271603 -0.04500000000012139 0
+3772 0.4878625928296997 -0.0375000000001019 0
+3773 0.498009615152599 -0.0375000000001019 0
+3774 0.498009615152599 -0.04500000000012139 0
+3775 0.5081566374754983 -0.0375000000001019 0
+3776 0.518811010890774 -0.0375000000001019 0
+3777 0.518811010890774 -0.04500000000012139 0
+3778 0.5294653843060497 -0.0375000000001019 0
+3779 0.5406524764063752 -0.0375000000001019 0
+3780 0.5406524764063752 -0.04500000000012139 0
+3781 0.5518395685067006 -0.0375000000001019 0
+3782 0.5635860152260461 -0.0375000000001019 0
+3783 0.5635860152260461 -0.04500000000012139 0
+3784 0.5753324619453917 -0.03750000000010189 0
+3785 0.5876662309726958 -0.0375000000001019 0
+3786 0.5876662309726958 -0.04500000000012139 0
+3787 0.4079504575179718 -0.05250000000013606 0
+3788 0.4079504575179718 -0.06000000000015071 0
+3789 0.4159009150359435 -0.05250000000013606 0
+3790 0.4242488954110175 -0.05250000000013605 0
+3791 0.4242488954110175 -0.06000000000015071 0
+3792 0.4325968757860914 -0.05250000000013604 0
+3793 0.441362255154879 -0.05250000000013605 0
+3794 0.441362255154879 -0.06000000000015071 0
+3795 0.4501276345236667 -0.05250000000013606 0
+3796 0.4593312828741438 -0.05250000000013605 0
+3797 0.4593312828741439 -0.06000000000015071 0
+3798 0.468534931224621 -0.05250000000013605 0
+3799 0.4781987620271604 -0.05250000000013605 0
+3800 0.4781987620271604 -0.06000000000015071 0
+3801 0.4878625928296997 -0.05250000000013605 0
+3802 0.498009615152599 -0.05250000000013605 0
+3803 0.4980096151525991 -0.06000000000015071 0
+3804 0.5081566374754984 -0.05250000000013604 0
+3805 0.5188110108907741 -0.05250000000013605 0
+3806 0.5188110108907741 -0.0600000000001507 0
+3807 0.5294653843060497 -0.05250000000013605 0
+3808 0.5406524764063752 -0.05250000000013605 0
+3809 0.5406524764063752 -0.06000000000015071 0
+3810 0.5518395685067006 -0.05250000000013605 0
+3811 0.5635860152260461 -0.05250000000013605 0
+3812 0.5635860152260461 -0.06000000000015071 0
+3813 0.5753324619453916 -0.05250000000013604 0
+3814 0.5876662309726958 -0.05250000000013605 0
+3815 0.5876662309726958 -0.06000000000015071 0
+3816 0.4079504575179718 -0.06750000000017023 0
+3817 0.4079504575179718 -0.07500000000018975 0
+3818 0.4159009150359435 -0.06750000000017023 0
+3819 0.4242488954110175 -0.06750000000017023 0
+3820 0.4242488954110175 -0.07500000000018976 0
+3821 0.4325968757860914 -0.06750000000017024 0
+3822 0.441362255154879 -0.06750000000017024 0
+3823 0.441362255154879 -0.07500000000018978 0
+3824 0.4501276345236666 -0.06750000000017023 0
+3825 0.4593312828741438 -0.06750000000017023 0
+3826 0.4593312828741438 -0.07500000000018975 0
+3827 0.4685349312246211 -0.06750000000017023 0
+3828 0.4781987620271604 -0.06750000000017023 0
+3829 0.4781987620271604 -0.07500000000018975 0
+3830 0.4878625928296997 -0.06750000000017023 0
+3831 0.4980096151525991 -0.06750000000017023 0
+3832 0.498009615152599 -0.07500000000018975 0
+3833 0.5081566374754984 -0.06750000000017023 0
+3834 0.518811010890774 -0.06750000000017023 0
+3835 0.518811010890774 -0.07500000000018975 0
+3836 0.5294653843060497 -0.06750000000017023 0
+3837 0.5406524764063752 -0.06750000000017023 0
+3838 0.5406524764063752 -0.07500000000018975 0
+3839 0.5518395685067007 -0.06750000000017023 0
+3840 0.5635860152260461 -0.06750000000017023 0
+3841 0.5635860152260461 -0.07500000000018975 0
+3842 0.5753324619453916 -0.06750000000017023 0
+3843 0.5876662309726958 -0.06750000000017023 0
+3844 0.5876662309726958 -0.07500000000018975 0
+3845 0.4079504575179718 -0.08250000000020927 0
+3846 0.4079504575179718 -0.09000000000022879 0
+3847 0.4159009150359435 -0.08250000000020927 0
+3848 0.4242488954110174 -0.08250000000020928 0
+3849 0.4242488954110174 -0.09000000000022879 0
+3850 0.4325968757860914 -0.08250000000020927 0
+3851 0.441362255154879 -0.08250000000020927 0
+3852 0.441362255154879 -0.09000000000022879 0
+3853 0.4501276345236666 -0.08250000000020927 0
+3854 0.4593312828741438 -0.08250000000020927 0
+3855 0.4593312828741439 -0.09000000000022879 0
+3856 0.4685349312246211 -0.08250000000020927 0
+3857 0.4781987620271604 -0.08250000000020927 0
+3858 0.4781987620271604 -0.09000000000022877 0
+3859 0.4878625928296997 -0.08250000000020927 0
+3860 0.498009615152599 -0.08250000000020927 0
+3861 0.498009615152599 -0.09000000000022879 0
+3862 0.5081566374754983 -0.08250000000020927 0
+3863 0.518811010890774 -0.08250000000020927 0
+3864 0.518811010890774 -0.0900000000002288 0
+3865 0.5294653843060497 -0.08250000000020928 0
+3866 0.5406524764063752 -0.08250000000020928 0
+3867 0.5406524764063752 -0.0900000000002288 0
+3868 0.5518395685067007 -0.08250000000020927 0
+3869 0.5635860152260461 -0.08250000000020927 0
+3870 0.5635860152260461 -0.09000000000022879 0
+3871 0.5753324619453917 -0.08250000000020927 0
+3872 0.5876662309726959 -0.08250000000020927 0
+3873 0.5876662309726959 -0.09000000000022879 0
+3874 0.4079504575179718 -0.09750000000025101 0
+3875 0.4079504575179718 -0.1050000000002732 0
+3876 0.4159009150359435 -0.09750000000025101 0
+3877 0.4242488954110175 -0.097500000000251 0
+3878 0.4242488954110175 -0.1050000000002732 0
+3879 0.4325968757860914 -0.097500000000251 0
+3880 0.441362255154879 -0.09750000000025101 0
+3881 0.441362255154879 -0.1050000000002732 0
+3882 0.4501276345236666 -0.09750000000025103 0
+3883 0.4593312828741439 -0.09750000000025101 0
+3884 0.4593312828741438 -0.1050000000002732 0
+3885 0.4685349312246211 -0.097500000000251 0
+3886 0.4781987620271604 -0.097500000000251 0
+3887 0.4781987620271604 -0.1050000000002732 0
+3888 0.4878625928296997 -0.097500000000251 0
+3889 0.498009615152599 -0.09750000000025101 0
+3890 0.498009615152599 -0.1050000000002732 0
+3891 0.5081566374754983 -0.09750000000025101 0
+3892 0.518811010890774 -0.09750000000025103 0
+3893 0.518811010890774 -0.1050000000002732 0
+3894 0.5294653843060497 -0.09750000000025103 0
+3895 0.5406524764063752 -0.097500000000251 0
+3896 0.5406524764063752 -0.1050000000002732 0
+3897 0.5518395685067006 -0.09750000000025101 0
+3898 0.5635860152260461 -0.09750000000025101 0
+3899 0.5635860152260461 -0.1050000000002732 0
+3900 0.5753324619453917 -0.09750000000025101 0
+3901 0.5876662309726958 -0.09750000000025101 0
+3902 0.5876662309726958 -0.1050000000002732 0
+3903 0.4079504575179718 -0.1125000000002922 0
+3904 0.4079504575179718 -0.1200000000003112 0
+3905 0.4159009150359435 -0.1125000000002922 0
+3906 0.4242488954110175 -0.1125000000002922 0
+3907 0.4242488954110174 -0.1200000000003112 0
+3908 0.4325968757860914 -0.1125000000002922 0
+3909 0.441362255154879 -0.1125000000002922 0
+3910 0.441362255154879 -0.1200000000003112 0
+3911 0.4501276345236666 -0.1125000000002922 0
+3912 0.4593312828741438 -0.1125000000002922 0
+3913 0.4593312828741438 -0.1200000000003112 0
+3914 0.4685349312246211 -0.1125000000002922 0
+3915 0.4781987620271604 -0.1125000000002922 0
+3916 0.4781987620271604 -0.1200000000003112 0
+3917 0.4878625928296997 -0.1125000000002922 0
+3918 0.498009615152599 -0.1125000000002922 0
+3919 0.498009615152599 -0.1200000000003112 0
+3920 0.5081566374754983 -0.1125000000002922 0
+3921 0.518811010890774 -0.1125000000002922 0
+3922 0.518811010890774 -0.1200000000003112 0
+3923 0.5294653843060497 -0.1125000000002922 0
+3924 0.5406524764063752 -0.1125000000002922 0
+3925 0.5406524764063752 -0.1200000000003112 0
+3926 0.5518395685067006 -0.1125000000002922 0
+3927 0.5635860152260461 -0.1125000000002922 0
+3928 0.5635860152260461 -0.1200000000003112 0
+3929 0.5753324619453916 -0.1125000000002922 0
+3930 0.5876662309726958 -0.1125000000002922 0
+3931 0.5876662309726958 -0.1200000000003112 0
+3932 0.4079504575179718 -0.1275000000003296 0
+3933 0.4079504575179718 -0.135000000000348 0
+3934 0.4159009150359435 -0.1275000000003296 0
+3935 0.4242488954110174 -0.1275000000003296 0
+3936 0.4242488954110174 -0.135000000000348 0
+3937 0.4325968757860914 -0.1275000000003296 0
+3938 0.441362255154879 -0.1275000000003296 0
+3939 0.441362255154879 -0.1350000000003481 0
+3940 0.4501276345236666 -0.1275000000003296 0
+3941 0.4593312828741438 -0.1275000000003296 0
+3942 0.4593312828741439 -0.1350000000003481 0
+3943 0.4685349312246212 -0.1275000000003296 0
+3944 0.4781987620271605 -0.1275000000003296 0
+3945 0.4781987620271605 -0.1350000000003481 0
+3946 0.4878625928296997 -0.1275000000003296 0
+3947 0.498009615152599 -0.1275000000003296 0
+3948 0.498009615152599 -0.1350000000003481 0
+3949 0.5081566374754983 -0.1275000000003296 0
+3950 0.518811010890774 -0.1275000000003296 0
+3951 0.518811010890774 -0.1350000000003481 0
+3952 0.5294653843060497 -0.1275000000003296 0
+3953 0.5406524764063752 -0.1275000000003296 0
+3954 0.5406524764063752 -0.1350000000003481 0
+3955 0.5518395685067006 -0.1275000000003296 0
+3956 0.5635860152260461 -0.1275000000003296 0
+3957 0.5635860152260461 -0.1350000000003481 0
+3958 0.5753324619453917 -0.1275000000003296 0
+3959 0.5876662309726959 -0.1275000000003296 0
+3960 0.5876662309726959 -0.1350000000003481 0
+3961 0.4079504575179718 -0.1425000000003665 0
+3962 0.4079504575179718 -0.150000000000385 0
+3963 0.4159009150359435 -0.1425000000003665 0
+3964 0.4242488954110174 -0.1425000000003665 0
+3965 0.4242488954110174 -0.150000000000385 0
+3966 0.4325968757860914 -0.1425000000003665 0
+3967 0.4413622551548789 -0.1425000000003665 0
+3968 0.4413622551548789 -0.150000000000385 0
+3969 0.4501276345236666 -0.1425000000003665 0
+3970 0.4593312828741439 -0.1425000000003665 0
+3971 0.4593312828741438 -0.150000000000385 0
+3972 0.4685349312246212 -0.1425000000003665 0
+3973 0.4781987620271604 -0.1425000000003665 0
+3974 0.4781987620271604 -0.150000000000385 0
+3975 0.4878625928296997 -0.1425000000003665 0
+3976 0.498009615152599 -0.1425000000003665 0
+3977 0.498009615152599 -0.150000000000385 0
+3978 0.5081566374754983 -0.1425000000003665 0
+3979 0.518811010890774 -0.1425000000003665 0
+3980 0.518811010890774 -0.150000000000385 0
+3981 0.5294653843060497 -0.1425000000003665 0
+3982 0.5406524764063752 -0.1425000000003665 0
+3983 0.5406524764063752 -0.150000000000385 0
+3984 0.5518395685067006 -0.1425000000003665 0
+3985 0.5635860152260461 -0.1425000000003665 0
+3986 0.5635860152260461 -0.150000000000385 0
+3987 0.5753324619453917 -0.1425000000003665 0
+3988 0.5876662309726958 -0.1425000000003665 0
+3989 0.5876662309726958 -0.150000000000385 0
+3990 0.4079504575179718 -0.157500000000366 0
+3991 0.4079504575179718 -0.165000000000347 0
+3992 0.4159009150359435 -0.157500000000366 0
+3993 0.4242488954110174 -0.157500000000366 0
+3994 0.4242488954110174 -0.165000000000347 0
+3995 0.4325968757860914 -0.157500000000366 0
+3996 0.441362255154879 -0.157500000000366 0
+3997 0.441362255154879 -0.165000000000347 0
+3998 0.4501276345236666 -0.157500000000366 0
+3999 0.4593312828741438 -0.157500000000366 0
+4000 0.4593312828741438 -0.165000000000347 0
+4001 0.4685349312246211 -0.157500000000366 0
+4002 0.4781987620271604 -0.157500000000366 0
+4003 0.4781987620271604 -0.165000000000347 0
+4004 0.4878625928296997 -0.157500000000366 0
+4005 0.498009615152599 -0.157500000000366 0
+4006 0.498009615152599 -0.165000000000347 0
+4007 0.5081566374754983 -0.157500000000366 0
+4008 0.518811010890774 -0.157500000000366 0
+4009 0.518811010890774 -0.165000000000347 0
+4010 0.5294653843060497 -0.157500000000366 0
+4011 0.5406524764063752 -0.157500000000366 0
+4012 0.5406524764063752 -0.165000000000347 0
+4013 0.5518395685067007 -0.157500000000366 0
+4014 0.5635860152260461 -0.157500000000366 0
+4015 0.5635860152260461 -0.165000000000347 0
+4016 0.5753324619453916 -0.157500000000366 0
+4017 0.5876662309726958 -0.157500000000366 0
+4018 0.5876662309726958 -0.165000000000347 0
+4019 0.4079504575179718 -0.1725000000003253 0
+4020 0.4079504575179718 -0.1800000000003036 0
+4021 0.4159009150359435 -0.1725000000003253 0
+4022 0.4242488954110175 -0.1725000000003253 0
+4023 0.4242488954110175 -0.1800000000003036 0
+4024 0.4325968757860914 -0.1725000000003253 0
+4025 0.441362255154879 -0.1725000000003253 0
+4026 0.441362255154879 -0.1800000000003036 0
+4027 0.4501276345236666 -0.1725000000003253 0
+4028 0.4593312828741438 -0.1725000000003253 0
+4029 0.4593312828741438 -0.1800000000003036 0
+4030 0.4685349312246211 -0.1725000000003253 0
+4031 0.4781987620271604 -0.1725000000003253 0
+4032 0.4781987620271604 -0.1800000000003036 0
+4033 0.4878625928296997 -0.1725000000003253 0
+4034 0.498009615152599 -0.1725000000003253 0
+4035 0.498009615152599 -0.1800000000003036 0
+4036 0.5081566374754983 -0.1725000000003253 0
+4037 0.518811010890774 -0.1725000000003253 0
+4038 0.518811010890774 -0.1800000000003036 0
+4039 0.5294653843060497 -0.1725000000003253 0
+4040 0.5406524764063752 -0.1725000000003253 0
+4041 0.5406524764063752 -0.1800000000003036 0
+4042 0.5518395685067007 -0.1725000000003253 0
+4043 0.5635860152260461 -0.1725000000003253 0
+4044 0.5635860152260461 -0.1800000000003036 0
+4045 0.5753324619453916 -0.1725000000003253 0
+4046 0.5876662309726958 -0.1725000000003253 0
+4047 0.5876662309726958 -0.1800000000003036 0
+4048 0.4079504575179718 -0.1875000000002874 0
+4049 0.4079504575179718 -0.1950000000002711 0
+4050 0.4159009150359435 -0.1875000000002874 0
+4051 0.4242488954110175 -0.1875000000002874 0
+4052 0.4242488954110175 -0.1950000000002711 0
+4053 0.4325968757860914 -0.1875000000002874 0
+4054 0.441362255154879 -0.1875000000002874 0
+4055 0.441362255154879 -0.1950000000002711 0
+4056 0.4501276345236666 -0.1875000000002874 0
+4057 0.4593312828741438 -0.1875000000002874 0
+4058 0.4593312828741438 -0.1950000000002711 0
+4059 0.468534931224621 -0.1875000000002874 0
+4060 0.4781987620271604 -0.1875000000002874 0
+4061 0.4781987620271603 -0.1950000000002711 0
+4062 0.4878625928296997 -0.1875000000002874 0
+4063 0.498009615152599 -0.1875000000002874 0
+4064 0.498009615152599 -0.1950000000002711 0
+4065 0.5081566374754983 -0.1875000000002874 0
+4066 0.518811010890774 -0.1875000000002874 0
+4067 0.518811010890774 -0.1950000000002711 0
+4068 0.5294653843060497 -0.1875000000002874 0
+4069 0.5406524764063752 -0.1875000000002874 0
+4070 0.5406524764063752 -0.1950000000002711 0
+4071 0.5518395685067007 -0.1875000000002874 0
+4072 0.5635860152260461 -0.1875000000002874 0
+4073 0.5635860152260461 -0.1950000000002711 0
+4074 0.5753324619453916 -0.1875000000002874 0
+4075 0.5876662309726958 -0.1875000000002874 0
+4076 0.5876662309726958 -0.1950000000002711 0
+4077 0.4079504575179718 -0.2025000000002494 0
+4078 0.4079504575179718 -0.2100000000002277 0
+4079 0.4159009150359435 -0.2025000000002494 0
+4080 0.4242488954110175 -0.2025000000002494 0
+4081 0.4242488954110175 -0.2100000000002277 0
+4082 0.4325968757860914 -0.2025000000002494 0
+4083 0.441362255154879 -0.2025000000002494 0
+4084 0.441362255154879 -0.2100000000002277 0
+4085 0.4501276345236666 -0.2025000000002494 0
+4086 0.4593312828741438 -0.2025000000002494 0
+4087 0.4593312828741439 -0.2100000000002277 0
+4088 0.4685349312246211 -0.2025000000002494 0
+4089 0.4781987620271605 -0.2025000000002494 0
+4090 0.4781987620271605 -0.2100000000002277 0
+4091 0.4878625928296997 -0.2025000000002494 0
+4092 0.498009615152599 -0.2025000000002494 0
+4093 0.498009615152599 -0.2100000000002277 0
+4094 0.5081566374754983 -0.2025000000002494 0
+4095 0.518811010890774 -0.2025000000002495 0
+4096 0.518811010890774 -0.2100000000002277 0
+4097 0.5294653843060497 -0.2025000000002494 0
+4098 0.5406524764063752 -0.2025000000002494 0
+4099 0.5406524764063752 -0.2100000000002277 0
+4100 0.5518395685067007 -0.2025000000002494 0
+4101 0.5635860152260461 -0.2025000000002494 0
+4102 0.5635860152260461 -0.2100000000002277 0
+4103 0.5753324619453915 -0.2025000000002494 0
+4104 0.5876662309726957 -0.2025000000002494 0
+4105 0.5876662309726957 -0.2100000000002277 0
+4106 0.4079504575179718 -0.217500000000206 0
+4107 0.4079504575179718 -0.2250000000001843 0
+4108 0.4159009150359435 -0.217500000000206 0
+4109 0.4242488954110174 -0.217500000000206 0
+4110 0.4242488954110174 -0.2250000000001843 0
+4111 0.4325968757860914 -0.217500000000206 0
+4112 0.441362255154879 -0.217500000000206 0
+4113 0.441362255154879 -0.2250000000001843 0
+4114 0.4501276345236666 -0.217500000000206 0
+4115 0.4593312828741439 -0.217500000000206 0
+4116 0.4593312828741438 -0.2250000000001843 0
+4117 0.4685349312246212 -0.217500000000206 0
+4118 0.4781987620271604 -0.217500000000206 0
+4119 0.4781987620271604 -0.2250000000001843 0
+4120 0.4878625928296997 -0.217500000000206 0
+4121 0.498009615152599 -0.217500000000206 0
+4122 0.498009615152599 -0.2250000000001843 0
+4123 0.5081566374754983 -0.217500000000206 0
+4124 0.518811010890774 -0.217500000000206 0
+4125 0.518811010890774 -0.2250000000001843 0
+4126 0.5294653843060497 -0.217500000000206 0
+4127 0.5406524764063752 -0.217500000000206 0
+4128 0.5406524764063752 -0.2250000000001843 0
+4129 0.5518395685067007 -0.217500000000206 0
+4130 0.5635860152260461 -0.217500000000206 0
+4131 0.5635860152260461 -0.2250000000001843 0
+4132 0.5753324619453915 -0.217500000000206 0
+4133 0.5876662309726958 -0.217500000000206 0
+4134 0.5876662309726958 -0.2250000000001843 0
+4135 0.4079504575179718 -0.2325000000001626 0
+4136 0.4079504575179717 -0.240000000000141 0
+4137 0.4159009150359434 -0.2325000000001626 0
+4138 0.4242488954110174 -0.2325000000001626 0
+4139 0.4242488954110174 -0.240000000000141 0
+4140 0.4325968757860914 -0.2325000000001626 0
+4141 0.4413622551548789 -0.2325000000001626 0
+4142 0.441362255154879 -0.240000000000141 0
+4143 0.4501276345236666 -0.2325000000001626 0
+4144 0.4593312828741439 -0.2325000000001626 0
+4145 0.4593312828741439 -0.2400000000001409 0
+4146 0.4685349312246211 -0.2325000000001626 0
+4147 0.4781987620271604 -0.2325000000001626 0
+4148 0.4781987620271604 -0.240000000000141 0
+4149 0.4878625928296997 -0.2325000000001626 0
+4150 0.498009615152599 -0.2325000000001627 0
+4151 0.498009615152599 -0.240000000000141 0
+4152 0.5081566374754983 -0.2325000000001626 0
+4153 0.518811010890774 -0.2325000000001626 0
+4154 0.518811010890774 -0.2400000000001409 0
+4155 0.5294653843060497 -0.2325000000001626 0
+4156 0.5406524764063752 -0.2325000000001626 0
+4157 0.5406524764063752 -0.2400000000001409 0
+4158 0.5518395685067007 -0.2325000000001626 0
+4159 0.5635860152260461 -0.2325000000001626 0
+4160 0.5635860152260461 -0.2400000000001409 0
+4161 0.5753324619453916 -0.2325000000001626 0
+4162 0.5876662309726958 -0.2325000000001626 0
+4163 0.5876662309726958 -0.2400000000001409 0
+4164 0.4079504575179717 -0.2475000000001095 0
+4165 0.4079504575179718 -0.2550000000000781 0
+4166 0.4159009150359434 -0.2475000000001095 0
+4167 0.4242488954110174 -0.2475000000001095 0
+4168 0.4242488954110174 -0.2550000000000781 0
+4169 0.4325968757860914 -0.2475000000001095 0
+4170 0.441362255154879 -0.2475000000001095 0
+4171 0.441362255154879 -0.2550000000000781 0
+4172 0.4501276345236666 -0.2475000000001095 0
+4173 0.4593312828741438 -0.2475000000001095 0
+4174 0.4593312828741438 -0.2550000000000781 0
+4175 0.4685349312246211 -0.2475000000001095 0
+4176 0.4781987620271604 -0.2475000000001095 0
+4177 0.4781987620271604 -0.2550000000000781 0
+4178 0.4878625928296997 -0.2475000000001095 0
+4179 0.498009615152599 -0.2475000000001095 0
+4180 0.498009615152599 -0.2550000000000781 0
+4181 0.5081566374754983 -0.2475000000001095 0
+4182 0.518811010890774 -0.2475000000001095 0
+4183 0.518811010890774 -0.2550000000000781 0
+4184 0.5294653843060497 -0.2475000000001095 0
+4185 0.5406524764063752 -0.2475000000001095 0
+4186 0.5406524764063752 -0.2550000000000781 0
+4187 0.5518395685067007 -0.2475000000001095 0
+4188 0.5635860152260461 -0.2475000000001095 0
+4189 0.5635860152260461 -0.2550000000000781 0
+4190 0.5753324619453916 -0.2475000000001095 0
+4191 0.5876662309726958 -0.2475000000001095 0
+4192 0.5876662309726958 -0.2550000000000781 0
+4193 0.4079504575179718 -0.2625000000000553 0
+4194 0.4079504575179718 -0.2700000000000326 0
+4195 0.4159009150359435 -0.2625000000000554 0
+4196 0.4242488954110175 -0.2625000000000554 0
+4197 0.4242488954110175 -0.2700000000000326 0
+4198 0.4325968757860914 -0.2625000000000553 0
+4199 0.441362255154879 -0.2625000000000553 0
+4200 0.441362255154879 -0.2700000000000326 0
+4201 0.4501276345236666 -0.2625000000000553 0
+4202 0.4593312828741438 -0.2625000000000553 0
+4203 0.4593312828741439 -0.2700000000000326 0
+4204 0.4685349312246211 -0.2625000000000554 0
+4205 0.4781987620271604 -0.2625000000000554 0
+4206 0.4781987620271604 -0.2700000000000326 0
+4207 0.4878625928296997 -0.2625000000000553 0
+4208 0.498009615152599 -0.2625000000000553 0
+4209 0.498009615152599 -0.2700000000000326 0
+4210 0.5081566374754983 -0.2625000000000553 0
+4211 0.518811010890774 -0.2625000000000553 0
+4212 0.518811010890774 -0.2700000000000326 0
+4213 0.5294653843060497 -0.2625000000000553 0
+4214 0.5406524764063752 -0.2625000000000553 0
+4215 0.5406524764063752 -0.2700000000000326 0
+4216 0.5518395685067007 -0.2625000000000553 0
+4217 0.5635860152260461 -0.2625000000000553 0
+4218 0.5635860152260461 -0.2700000000000326 0
+4219 0.5753324619453917 -0.2625000000000553 0
+4220 0.5876662309726959 -0.2625000000000553 0
+4221 0.5876662309726959 -0.2700000000000326 0
+4222 0.4079504575179718 -0.2775000000000217 0
+4223 0.4079504575179718 -0.2850000000000109 0
+4224 0.4159009150359435 -0.2775000000000217 0
+4225 0.4242488954110175 -0.2775000000000217 0
+4226 0.4242488954110174 -0.2850000000000108 0
+4227 0.4325968757860914 -0.2775000000000217 0
+4228 0.4413622551548789 -0.2775000000000217 0
+4229 0.4413622551548789 -0.2850000000000108 0
+4230 0.4501276345236666 -0.2775000000000217 0
+4231 0.4593312828741439 -0.2775000000000217 0
+4232 0.4593312828741438 -0.2850000000000109 0
+4233 0.4685349312246212 -0.2775000000000217 0
+4234 0.4781987620271604 -0.2775000000000217 0
+4235 0.4781987620271604 -0.2850000000000108 0
+4236 0.4878625928296997 -0.2775000000000217 0
+4237 0.498009615152599 -0.2775000000000217 0
+4238 0.498009615152599 -0.2850000000000108 0
+4239 0.5081566374754983 -0.2775000000000217 0
+4240 0.518811010890774 -0.2775000000000217 0
+4241 0.518811010890774 -0.2850000000000108 0
+4242 0.5294653843060497 -0.2775000000000217 0
+4243 0.5406524764063752 -0.2775000000000217 0
+4244 0.5406524764063752 -0.2850000000000108 0
+4245 0.5518395685067007 -0.2775000000000217 0
+4246 0.5635860152260461 -0.2775000000000217 0
+4247 0.5635860152260461 -0.2850000000000108 0
+4248 0.5753324619453917 -0.2775000000000217 0
+4249 0.5876662309726958 -0.2775000000000217 0
+4250 0.5876662309726958 -0.2850000000000108 0
+4251 0.4079504575179718 -0.2925000000000054 0
+4252 0.4159009150359435 -0.2925000000000054 0
+4253 0.4242488954110174 -0.2925000000000054 0
+4254 0.4325968757860914 -0.2925000000000054 0
+4255 0.441362255154879 -0.2925000000000054 0
+4256 0.4501276345236666 -0.2925000000000054 0
+4257 0.4593312828741439 -0.2925000000000054 0
+4258 0.4685349312246211 -0.2925000000000054 0
+4259 0.4781987620271604 -0.2925000000000054 0
+4260 0.4878625928296997 -0.2925000000000054 0
+4261 0.498009615152599 -0.2925000000000054 0
+4262 0.5081566374754983 -0.2925000000000054 0
+4263 0.518811010890774 -0.2925000000000054 0
+4264 0.5294653843060497 -0.2925000000000054 0
+4265 0.5406524764063752 -0.2925000000000054 0
+4266 0.5518395685067007 -0.2925000000000054 0
+4267 0.5635860152260461 -0.2925000000000054 0
+4268 0.5753324619453916 -0.2925000000000054 0
+4269 0.5876662309726958 -0.2925000000000054 0
+4270 0.009999999999981924 -0.3180974798108416 0
+4271 0.01999999999996121 -0.3180974798108416 0
+4272 0.02999999999994401 -0.3180974798108416 0
+4273 0.03999999999992994 -0.3180974798108415 0
+4274 0.04999999999991423 -0.3180974798108416 0
+4275 0.05999999999988688 -0.3180974798108416 0
+4276 0.06999999999985818 -0.3180974798108416 0
+4277 0.07999999999982406 -0.3180974798108415 0
+4278 0.08999999999979536 -0.3180974798108416 0
+4279 0.09999999999976665 -0.3180974798108416 0
+4280 0.109999999999738 -0.3180974798108415 0
+4281 0.1199999999997092 -0.3180974798108416 0
+4282 0.1299999999996806 -0.3180974798108415 0
+4283 0.1399999999996518 -0.3180974798108415 0
+4284 0.1499999999996177 -0.3180974798108416 0
+4285 0.1599999999995836 -0.3180974798108416 0
+4286 0.1699999999995549 -0.3180974798108416 0
+4287 0.1799999999995262 -0.3180974798108416 0
+4288 0.1899999999994975 -0.3180974798108416 0
+4289 0.1999999999994742 -0.3180974798108416 0
+4290 0.2099999999994975 -0.3180974798108416 0
+4291 0.2199999999995209 -0.3180974798108416 0
+4292 0.2299999999995495 -0.3180974798108416 0
+4293 0.2399999999995773 -0.3180974798108416 0
+4294 0.2499999999996016 -0.3180974798108416 0
+4295 0.2599999999996346 -0.3180974798108416 0
+4296 0.2699999999996558 -0.3180974798108415 0
+4297 0.2799999999996791 -0.3180974798108416 0
+4298 0.2899999999997153 -0.3180974798108416 0
+4299 0.2999999999997343 -0.3180974798108416 0
+4300 0.3099999999997534 -0.3180974798108416 0
+4301 0.3199999999997897 -0.3180974798108416 0
+4302 0.329999999999813 -0.3180974798108416 0
+4303 0.3399999999998342 -0.3180974798108415 0
+4304 0.3499999999998726 -0.3180974798108416 0
+4305 0.3599999999998915 -0.3180974798108416 0
+4306 0.369999999999917 -0.3180974798108416 0
+4307 0.3799999999999513 -0.3180974798108416 0
+4308 0.3899999999999701 -0.3180974798108416 0
+4309 0.009999999999981924 -0.3370998336061459 0
+4310 0.01999999999996121 -0.3370998336061458 0
+4311 0.02999999999994401 -0.3370998336061457 0
+4312 0.03999999999992994 -0.3370998336061459 0
+4313 0.04999999999991424 -0.337099833606146 0
+4314 0.05999999999988688 -0.3370998336061458 0
+4315 0.06999999999985819 -0.3370998336061459 0
+4316 0.07999999999982406 -0.3370998336061458 0
+4317 0.08999999999979536 -0.3370998336061458 0
+4318 0.09999999999976666 -0.3370998336061458 0
+4319 0.109999999999738 -0.3370998336061458 0
+4320 0.1199999999997092 -0.3370998336061458 0
+4321 0.1299999999996806 -0.3370998336061458 0
+4322 0.1399999999996519 -0.3370998336061457 0
+4323 0.1499999999996177 -0.3370998336061458 0
+4324 0.1599999999995836 -0.3370998336061458 0
+4325 0.1699999999995549 -0.3370998336061458 0
+4326 0.1799999999995262 -0.3370998336061458 0
+4327 0.1899999999994975 -0.3370998336061457 0
+4328 0.1999999999994742 -0.3370998336061458 0
+4329 0.2099999999994975 -0.3370998336061458 0
+4330 0.2199999999995209 -0.3370998336061458 0
+4331 0.2299999999995495 -0.3370998336061458 0
+4332 0.2399999999995772 -0.3370998336061458 0
+4333 0.2499999999996016 -0.3370998336061458 0
+4334 0.2599999999996346 -0.3370998336061458 0
+4335 0.2699999999996558 -0.3370998336061458 0
+4336 0.2799999999996791 -0.3370998336061458 0
+4337 0.2899999999997154 -0.3370998336061458 0
+4338 0.2999999999997344 -0.3370998336061458 0
+4339 0.3099999999997534 -0.3370998336061458 0
+4340 0.3199999999997897 -0.3370998336061458 0
+4341 0.3299999999998131 -0.3370998336061458 0
+4342 0.3399999999998342 -0.3370998336061458 0
+4343 0.3499999999998726 -0.3370998336061458 0
+4344 0.3599999999998915 -0.3370998336061458 0
+4345 0.3699999999999171 -0.3370998336061458 0
+4346 0.3799999999999512 -0.3370998336061458 0
+4347 0.3899999999999702 -0.3370998336061458 0
+4348 0.009999999999981926 -0.3570523051187843 0
+4349 0.01999999999996121 -0.3570523051187843 0
+4350 0.02999999999994402 -0.3570523051187844 0
+4351 0.03999999999992994 -0.3570523051187844 0
+4352 0.04999999999991424 -0.3570523051187844 0
+4353 0.05999999999988688 -0.3570523051187844 0
+4354 0.06999999999985819 -0.3570523051187845 0
+4355 0.07999999999982406 -0.3570523051187844 0
+4356 0.08999999999979536 -0.3570523051187844 0
+4357 0.09999999999976666 -0.3570523051187844 0
+4358 0.109999999999738 -0.3570523051187844 0
+4359 0.1199999999997092 -0.3570523051187845 0
+4360 0.1299999999996806 -0.3570523051187843 0
+4361 0.1399999999996519 -0.3570523051187844 0
+4362 0.1499999999996177 -0.3570523051187844 0
+4363 0.1599999999995836 -0.3570523051187844 0
+4364 0.1699999999995549 -0.3570523051187844 0
+4365 0.1799999999995262 -0.3570523051187843 0
+4366 0.1899999999994975 -0.3570523051187844 0
+4367 0.1999999999994742 -0.3570523051187844 0
+4368 0.2099999999994975 -0.3570523051187844 0
+4369 0.2199999999995209 -0.3570523051187844 0
+4370 0.2299999999995495 -0.3570523051187843 0
+4371 0.2399999999995772 -0.3570523051187844 0
+4372 0.2499999999996016 -0.3570523051187844 0
+4373 0.2599999999996346 -0.3570523051187844 0
+4374 0.2699999999996558 -0.3570523051187844 0
+4375 0.2799999999996791 -0.3570523051187844 0
+4376 0.2899999999997154 -0.3570523051187844 0
+4377 0.2999999999997344 -0.3570523051187844 0
+4378 0.3099999999997534 -0.3570523051187844 0
+4379 0.3199999999997897 -0.3570523051187844 0
+4380 0.329999999999813 -0.3570523051187844 0
+4381 0.3399999999998342 -0.3570523051187844 0
+4382 0.3499999999998726 -0.3570523051187844 0
+4383 0.3599999999998915 -0.3570523051187844 0
+4384 0.3699999999999171 -0.3570523051187844 0
+4385 0.3799999999999512 -0.3570523051187844 0
+4386 0.3899999999999702 -0.3570523051187844 0
+4387 0.009999999999981926 -0.3780024001981511 0
+4388 0.01999999999996121 -0.3780024001981511 0
+4389 0.029999999999944 -0.378002400198151 0
+4390 0.03999999999992994 -0.3780024001981511 0
+4391 0.04999999999991424 -0.3780024001981513 0
+4392 0.05999999999988688 -0.378002400198151 0
+4393 0.06999999999985818 -0.3780024001981511 0
+4394 0.07999999999982406 -0.3780024001981511 0
+4395 0.08999999999979536 -0.3780024001981511 0
+4396 0.09999999999976665 -0.3780024001981511 0
+4397 0.109999999999738 -0.3780024001981511 0
+4398 0.1199999999997092 -0.3780024001981511 0
+4399 0.1299999999996806 -0.3780024001981511 0
+4400 0.1399999999996518 -0.3780024001981512 0
+4401 0.1499999999996177 -0.3780024001981511 0
+4402 0.1599999999995836 -0.3780024001981511 0
+4403 0.1699999999995549 -0.3780024001981511 0
+4404 0.1799999999995262 -0.3780024001981511 0
+4405 0.1899999999994975 -0.3780024001981511 0
+4406 0.1999999999994742 -0.3780024001981511 0
+4407 0.2099999999994975 -0.3780024001981511 0
+4408 0.2199999999995209 -0.3780024001981511 0
+4409 0.2299999999995495 -0.3780024001981511 0
+4410 0.2399999999995773 -0.3780024001981512 0
+4411 0.2499999999996016 -0.3780024001981511 0
+4412 0.2599999999996346 -0.3780024001981511 0
+4413 0.2699999999996558 -0.3780024001981511 0
+4414 0.2799999999996792 -0.3780024001981511 0
+4415 0.2899999999997153 -0.3780024001981511 0
+4416 0.2999999999997344 -0.3780024001981511 0
+4417 0.3099999999997534 -0.3780024001981511 0
+4418 0.3199999999997897 -0.3780024001981511 0
+4419 0.329999999999813 -0.3780024001981511 0
+4420 0.3399999999998342 -0.3780024001981511 0
+4421 0.3499999999998726 -0.3780024001981511 0
+4422 0.3599999999998915 -0.3780024001981511 0
+4423 0.3699999999999171 -0.3780024001981511 0
+4424 0.3799999999999512 -0.3780024001981511 0
+4425 0.3899999999999702 -0.3780024001981511 0
+4426 0.004999999999990963 -0.3090487399054208 0
+4427 0.004999999999990962 -0.3180974798108416 0
+4428 0.009999999999981926 -0.3090487399054208 0
+4429 0.01499999999997156 -0.3090487399054208 0
+4430 0.01499999999997156 -0.3180974798108416 0
+4431 0.01999999999996121 -0.3090487399054208 0
+4432 0.02499999999995261 -0.3090487399054208 0
+4433 0.02499999999995261 -0.3180974798108416 0
+4434 0.02999999999994401 -0.3090487399054208 0
+4435 0.03499999999993698 -0.3090487399054208 0
+4436 0.03499999999993698 -0.3180974798108416 0
+4437 0.03999999999992994 -0.3090487399054208 0
+4438 0.04499999999992209 -0.3090487399054208 0
+4439 0.04499999999992209 -0.3180974798108416 0
+4440 0.04999999999991424 -0.3090487399054208 0
+4441 0.05499999999990056 -0.3090487399054208 0
+4442 0.05499999999990056 -0.3180974798108416 0
+4443 0.05999999999988688 -0.3090487399054208 0
+4444 0.06499999999987254 -0.3090487399054208 0
+4445 0.06499999999987252 -0.3180974798108416 0
+4446 0.06999999999985818 -0.3090487399054208 0
+4447 0.07499999999984111 -0.3090487399054208 0
+4448 0.07499999999984111 -0.3180974798108416 0
+4449 0.07999999999982406 -0.3090487399054208 0
+4450 0.0849999999998097 -0.3090487399054208 0
+4451 0.0849999999998097 -0.3180974798108416 0
+4452 0.08999999999979536 -0.3090487399054208 0
+4453 0.09499999999978101 -0.3090487399054208 0
+4454 0.09499999999978101 -0.3180974798108416 0
+4455 0.09999999999976666 -0.3090487399054208 0
+4456 0.1049999999997523 -0.3090487399054208 0
+4457 0.1049999999997523 -0.3180974798108416 0
+4458 0.109999999999738 -0.3090487399054208 0
+4459 0.1149999999997236 -0.3090487399054208 0
+4460 0.1149999999997236 -0.3180974798108416 0
+4461 0.1199999999997092 -0.3090487399054208 0
+4462 0.1249999999996949 -0.3090487399054208 0
+4463 0.1249999999996949 -0.3180974798108416 0
+4464 0.1299999999996806 -0.3090487399054208 0
+4465 0.1349999999996662 -0.3090487399054208 0
+4466 0.1349999999996662 -0.3180974798108415 0
+4467 0.1399999999996519 -0.3090487399054208 0
+4468 0.1449999999996348 -0.3090487399054208 0
+4469 0.1449999999996348 -0.3180974798108416 0
+4470 0.1499999999996177 -0.3090487399054208 0
+4471 0.1549999999996007 -0.3090487399054208 0
+4472 0.1549999999996006 -0.3180974798108416 0
+4473 0.1599999999995836 -0.3090487399054208 0
+4474 0.1649999999995692 -0.3090487399054208 0
+4475 0.1649999999995692 -0.3180974798108416 0
+4476 0.1699999999995549 -0.3090487399054208 0
+4477 0.1749999999995406 -0.3090487399054208 0
+4478 0.1749999999995406 -0.3180974798108416 0
+4479 0.1799999999995262 -0.3090487399054208 0
+4480 0.1849999999995118 -0.3090487399054208 0
+4481 0.1849999999995118 -0.3180974798108416 0
+4482 0.1899999999994975 -0.3090487399054208 0
+4483 0.1949999999994858 -0.3090487399054208 0
+4484 0.1949999999994858 -0.3180974798108416 0
+4485 0.1999999999994742 -0.3090487399054208 0
+4486 0.2049999999994859 -0.3090487399054208 0
+4487 0.2049999999994859 -0.3180974798108416 0
+4488 0.2099999999994975 -0.3090487399054208 0
+4489 0.2149999999995092 -0.3090487399054208 0
+4490 0.2149999999995092 -0.3180974798108416 0
+4491 0.2199999999995209 -0.3090487399054208 0
+4492 0.2249999999995352 -0.3090487399054208 0
+4493 0.2249999999995352 -0.3180974798108416 0
+4494 0.2299999999995495 -0.3090487399054208 0
+4495 0.2349999999995633 -0.3090487399054208 0
+4496 0.2349999999995634 -0.3180974798108416 0
+4497 0.2399999999995772 -0.3090487399054208 0
+4498 0.2449999999995894 -0.3090487399054208 0
+4499 0.2449999999995894 -0.3180974798108416 0
+4500 0.2499999999996016 -0.3090487399054208 0
+4501 0.2549999999996181 -0.3090487399054208 0
+4502 0.2549999999996181 -0.3180974798108416 0
+4503 0.2599999999996346 -0.3090487399054208 0
+4504 0.2649999999996452 -0.3090487399054208 0
+4505 0.2649999999996452 -0.3180974798108416 0
+4506 0.2699999999996558 -0.3090487399054208 0
+4507 0.2749999999996675 -0.3090487399054208 0
+4508 0.2749999999996675 -0.3180974798108416 0
+4509 0.2799999999996791 -0.3090487399054208 0
+4510 0.2849999999996973 -0.3090487399054208 0
+4511 0.2849999999996972 -0.3180974798108416 0
+4512 0.2899999999997154 -0.3090487399054208 0
+4513 0.2949999999997248 -0.3090487399054208 0
+4514 0.2949999999997248 -0.3180974798108416 0
+4515 0.2999999999997344 -0.3090487399054208 0
+4516 0.3049999999997438 -0.3090487399054208 0
+4517 0.3049999999997438 -0.3180974798108416 0
+4518 0.3099999999997534 -0.3090487399054208 0
+4519 0.3149999999997715 -0.3090487399054208 0
+4520 0.3149999999997715 -0.3180974798108416 0
+4521 0.3199999999997897 -0.3090487399054208 0
+4522 0.3249999999998013 -0.3090487399054208 0
+4523 0.3249999999998013 -0.3180974798108416 0
+4524 0.329999999999813 -0.3090487399054208 0
+4525 0.3349999999998236 -0.3090487399054208 0
+4526 0.3349999999998236 -0.3180974798108416 0
+4527 0.3399999999998342 -0.3090487399054208 0
+4528 0.3449999999998534 -0.3090487399054208 0
+4529 0.3449999999998534 -0.3180974798108416 0
+4530 0.3499999999998726 -0.3090487399054208 0
+4531 0.3549999999998821 -0.3090487399054208 0
+4532 0.3549999999998821 -0.3180974798108416 0
+4533 0.3599999999998915 -0.3090487399054208 0
+4534 0.3649999999999043 -0.3090487399054208 0
+4535 0.3649999999999043 -0.3180974798108416 0
+4536 0.3699999999999171 -0.3090487399054208 0
+4537 0.3749999999999341 -0.3090487399054208 0
+4538 0.3749999999999342 -0.3180974798108416 0
+4539 0.3799999999999513 -0.3090487399054208 0
+4540 0.3849999999999607 -0.3090487399054208 0
+4541 0.3849999999999607 -0.3180974798108416 0
+4542 0.3899999999999702 -0.3090487399054208 0
+4543 0.394999999999985 -0.3090487399054208 0
+4544 0.394999999999985 -0.3180974798108416 0
+4545 0.004999999999990962 -0.3275986567084938 0
+4546 0.004999999999990962 -0.3370998336061458 0
+4547 0.009999999999981924 -0.3275986567084938 0
+4548 0.01499999999997156 -0.3275986567084938 0
+4549 0.01499999999997157 -0.3370998336061458 0
+4550 0.01999999999996121 -0.3275986567084937 0
+4551 0.02499999999995261 -0.3275986567084937 0
+4552 0.02499999999995261 -0.3370998336061457 0
+4553 0.02999999999994401 -0.3275986567084936 0
+4554 0.03499999999993697 -0.3275986567084936 0
+4555 0.03499999999993697 -0.3370998336061458 0
+4556 0.03999999999992994 -0.3275986567084937 0
+4557 0.04499999999992209 -0.3275986567084938 0
+4558 0.04499999999992209 -0.3370998336061459 0
+4559 0.04999999999991424 -0.3275986567084938 0
+4560 0.05499999999990056 -0.3275986567084938 0
+4561 0.05499999999990056 -0.3370998336061459 0
+4562 0.05999999999988688 -0.3275986567084937 0
+4563 0.06499999999987252 -0.3275986567084937 0
+4564 0.06499999999987254 -0.3370998336061459 0
+4565 0.06999999999985818 -0.3275986567084938 0
+4566 0.07499999999984112 -0.3275986567084938 0
+4567 0.07499999999984112 -0.3370998336061459 0
+4568 0.07999999999982406 -0.3275986567084936 0
+4569 0.0849999999998097 -0.3275986567084937 0
+4570 0.0849999999998097 -0.3370998336061458 0
+4571 0.08999999999979536 -0.3275986567084937 0
+4572 0.09499999999978101 -0.3275986567084937 0
+4573 0.09499999999978101 -0.3370998336061458 0
+4574 0.09999999999976666 -0.3275986567084937 0
+4575 0.1049999999997523 -0.3275986567084936 0
+4576 0.1049999999997523 -0.3370998336061458 0
+4577 0.109999999999738 -0.3275986567084936 0
+4578 0.1149999999997236 -0.3275986567084937 0
+4579 0.1149999999997236 -0.3370998336061458 0
+4580 0.1199999999997092 -0.3275986567084937 0
+4581 0.1249999999996949 -0.3275986567084936 0
+4582 0.1249999999996949 -0.3370998336061458 0
+4583 0.1299999999996806 -0.3275986567084936 0
+4584 0.1349999999996662 -0.3275986567084936 0
+4585 0.1349999999996662 -0.3370998336061458 0
+4586 0.1399999999996519 -0.3275986567084936 0
+4587 0.1449999999996348 -0.3275986567084936 0
+4588 0.1449999999996348 -0.3370998336061458 0
+4589 0.1499999999996177 -0.3275986567084937 0
+4590 0.1549999999996006 -0.3275986567084937 0
+4591 0.1549999999996007 -0.3370998336061458 0
+4592 0.1599999999995836 -0.3275986567084937 0
+4593 0.1649999999995692 -0.3275986567084937 0
+4594 0.1649999999995692 -0.3370998336061458 0
+4595 0.1699999999995549 -0.3275986567084937 0
+4596 0.1749999999995406 -0.3275986567084937 0
+4597 0.1749999999995405 -0.3370998336061458 0
+4598 0.1799999999995262 -0.3275986567084936 0
+4599 0.1849999999995118 -0.3275986567084936 0
+4600 0.1849999999995118 -0.3370998336061457 0
+4601 0.1899999999994975 -0.3275986567084936 0
+4602 0.1949999999994859 -0.3275986567084936 0
+4603 0.1949999999994859 -0.3370998336061458 0
+4604 0.1999999999994742 -0.3275986567084937 0
+4605 0.2049999999994859 -0.3275986567084937 0
+4606 0.2049999999994859 -0.3370998336061458 0
+4607 0.2099999999994975 -0.3275986567084937 0
+4608 0.2149999999995092 -0.3275986567084937 0
+4609 0.2149999999995092 -0.3370998336061458 0
+4610 0.2199999999995209 -0.3275986567084937 0
+4611 0.2249999999995352 -0.3275986567084937 0
+4612 0.2249999999995352 -0.3370998336061458 0
+4613 0.2299999999995495 -0.3275986567084937 0
+4614 0.2349999999995634 -0.3275986567084937 0
+4615 0.2349999999995633 -0.3370998336061458 0
+4616 0.2399999999995772 -0.3275986567084937 0
+4617 0.2449999999995894 -0.3275986567084937 0
+4618 0.2449999999995894 -0.3370998336061458 0
+4619 0.2499999999996016 -0.3275986567084937 0
+4620 0.2549999999996181 -0.3275986567084937 0
+4621 0.2549999999996181 -0.3370998336061458 0
+4622 0.2599999999996346 -0.3275986567084937 0
+4623 0.2649999999996452 -0.3275986567084936 0
+4624 0.2649999999996452 -0.3370998336061458 0
+4625 0.2699999999996558 -0.3275986567084936 0
+4626 0.2749999999996675 -0.3275986567084937 0
+4627 0.2749999999996675 -0.3370998336061458 0
+4628 0.2799999999996791 -0.3275986567084937 0
+4629 0.2849999999996972 -0.3275986567084937 0
+4630 0.2849999999996973 -0.3370998336061458 0
+4631 0.2899999999997154 -0.3275986567084937 0
+4632 0.2949999999997248 -0.3275986567084937 0
+4633 0.2949999999997249 -0.3370998336061458 0
+4634 0.2999999999997344 -0.3275986567084937 0
+4635 0.3049999999997439 -0.3275986567084937 0
+4636 0.3049999999997439 -0.3370998336061458 0
+4637 0.3099999999997534 -0.3275986567084937 0
+4638 0.3149999999997715 -0.3275986567084937 0
+4639 0.3149999999997715 -0.3370998336061458 0
+4640 0.3199999999997897 -0.3275986567084937 0
+4641 0.3249999999998013 -0.3275986567084937 0
+4642 0.3249999999998013 -0.3370998336061458 0
+4643 0.329999999999813 -0.3275986567084937 0
+4644 0.3349999999998236 -0.3275986567084936 0
+4645 0.3349999999998236 -0.3370998336061458 0
+4646 0.3399999999998342 -0.3275986567084936 0
+4647 0.3449999999998534 -0.3275986567084937 0
+4648 0.3449999999998534 -0.3370998336061458 0
+4649 0.3499999999998726 -0.3275986567084937 0
+4650 0.3549999999998821 -0.3275986567084937 0
+4651 0.3549999999998821 -0.3370998336061458 0
+4652 0.3599999999998915 -0.3275986567084937 0
+4653 0.3649999999999042 -0.3275986567084937 0
+4654 0.3649999999999043 -0.3370998336061458 0
+4655 0.3699999999999171 -0.3275986567084937 0
+4656 0.3749999999999342 -0.3275986567084937 0
+4657 0.3749999999999342 -0.3370998336061458 0
+4658 0.3799999999999513 -0.3275986567084937 0
+4659 0.3849999999999607 -0.3275986567084937 0
+4660 0.3849999999999607 -0.3370998336061458 0
+4661 0.3899999999999702 -0.3275986567084937 0
+4662 0.3949999999999851 -0.3275986567084937 0
+4663 0.3949999999999851 -0.3370998336061458 0
+4664 0.004999999999990962 -0.3470760693624652 0
+4665 0.004999999999990963 -0.3570523051187843 0
+4666 0.009999999999981926 -0.3470760693624651 0
+4667 0.01499999999997157 -0.3470760693624651 0
+4668 0.01499999999997157 -0.3570523051187843 0
+4669 0.01999999999996121 -0.3470760693624651 0
+4670 0.02499999999995261 -0.347076069362465 0
+4671 0.02499999999995261 -0.3570523051187844 0
+4672 0.02999999999994401 -0.3470760693624651 0
+4673 0.03499999999993698 -0.3470760693624652 0
+4674 0.03499999999993698 -0.3570523051187844 0
+4675 0.03999999999992994 -0.3470760693624652 0
+4676 0.04499999999992209 -0.3470760693624652 0
+4677 0.04499999999992209 -0.3570523051187844 0
+4678 0.04999999999991424 -0.3470760693624652 0
+4679 0.05499999999990056 -0.3470760693624651 0
+4680 0.05499999999990056 -0.3570523051187844 0
+4681 0.05999999999988688 -0.3470760693624651 0
+4682 0.06499999999987254 -0.3470760693624652 0
+4683 0.06499999999987254 -0.3570523051187844 0
+4684 0.06999999999985819 -0.3470760693624652 0
+4685 0.07499999999984112 -0.3470760693624652 0
+4686 0.07499999999984112 -0.3570523051187844 0
+4687 0.07999999999982406 -0.3470760693624651 0
+4688 0.0849999999998097 -0.3470760693624651 0
+4689 0.0849999999998097 -0.3570523051187844 0
+4690 0.08999999999979536 -0.3470760693624651 0
+4691 0.09499999999978101 -0.3470760693624651 0
+4692 0.09499999999978101 -0.3570523051187844 0
+4693 0.09999999999976666 -0.3470760693624652 0
+4694 0.1049999999997523 -0.3470760693624652 0
+4695 0.1049999999997523 -0.3570523051187844 0
+4696 0.109999999999738 -0.3470760693624651 0
+4697 0.1149999999997236 -0.3470760693624651 0
+4698 0.1149999999997236 -0.3570523051187844 0
+4699 0.1199999999997092 -0.3470760693624652 0
+4700 0.1249999999996949 -0.3470760693624652 0
+4701 0.1249999999996949 -0.3570523051187844 0
+4702 0.1299999999996806 -0.3470760693624651 0
+4703 0.1349999999996662 -0.3470760693624651 0
+4704 0.1349999999996662 -0.3570523051187844 0
+4705 0.1399999999996519 -0.3470760693624651 0
+4706 0.1449999999996348 -0.3470760693624651 0
+4707 0.1449999999996348 -0.3570523051187844 0
+4708 0.1499999999996177 -0.3470760693624651 0
+4709 0.1549999999996007 -0.3470760693624651 0
+4710 0.1549999999996007 -0.3570523051187844 0
+4711 0.1599999999995836 -0.3470760693624651 0
+4712 0.1649999999995692 -0.3470760693624651 0
+4713 0.1649999999995692 -0.3570523051187844 0
+4714 0.1699999999995549 -0.3470760693624651 0
+4715 0.1749999999995405 -0.3470760693624651 0
+4716 0.1749999999995406 -0.3570523051187843 0
+4717 0.1799999999995262 -0.3470760693624651 0
+4718 0.1849999999995118 -0.347076069362465 0
+4719 0.1849999999995118 -0.3570523051187843 0
+4720 0.1899999999994975 -0.3470760693624651 0
+4721 0.1949999999994859 -0.3470760693624651 0
+4722 0.1949999999994859 -0.3570523051187844 0
+4723 0.1999999999994742 -0.3470760693624651 0
+4724 0.2049999999994859 -0.3470760693624651 0
+4725 0.2049999999994859 -0.3570523051187844 0
+4726 0.2099999999994975 -0.3470760693624651 0
+4727 0.2149999999995092 -0.3470760693624651 0
+4728 0.2149999999995092 -0.3570523051187844 0
+4729 0.2199999999995209 -0.3470760693624651 0
+4730 0.2249999999995352 -0.3470760693624651 0
+4731 0.2249999999995352 -0.3570523051187844 0
+4732 0.2299999999995495 -0.3470760693624651 0
+4733 0.2349999999995633 -0.3470760693624651 0
+4734 0.2349999999995634 -0.3570523051187844 0
+4735 0.2399999999995772 -0.3470760693624651 0
+4736 0.2449999999995894 -0.3470760693624651 0
+4737 0.2449999999995894 -0.3570523051187844 0
+4738 0.2499999999996016 -0.3470760693624651 0
+4739 0.2549999999996181 -0.3470760693624651 0
+4740 0.2549999999996181 -0.3570523051187844 0
+4741 0.2599999999996346 -0.3470760693624651 0
+4742 0.2649999999996452 -0.3470760693624651 0
+4743 0.2649999999996452 -0.3570523051187844 0
+4744 0.2699999999996558 -0.3470760693624651 0
+4745 0.2749999999996675 -0.3470760693624651 0
+4746 0.2749999999996675 -0.3570523051187844 0
+4747 0.2799999999996791 -0.3470760693624651 0
+4748 0.2849999999996973 -0.3470760693624651 0
+4749 0.2849999999996973 -0.3570523051187844 0
+4750 0.2899999999997154 -0.3470760693624651 0
+4751 0.2949999999997249 -0.3470760693624651 0
+4752 0.2949999999997249 -0.3570523051187844 0
+4753 0.2999999999997344 -0.3470760693624651 0
+4754 0.3049999999997439 -0.3470760693624651 0
+4755 0.3049999999997439 -0.3570523051187844 0
+4756 0.3099999999997534 -0.3470760693624651 0
+4757 0.3149999999997715 -0.3470760693624651 0
+4758 0.3149999999997715 -0.3570523051187844 0
+4759 0.3199999999997897 -0.3470760693624651 0
+4760 0.3249999999998013 -0.3470760693624651 0
+4761 0.3249999999998013 -0.3570523051187844 0
+4762 0.329999999999813 -0.3470760693624651 0
+4763 0.3349999999998236 -0.3470760693624651 0
+4764 0.3349999999998236 -0.3570523051187844 0
+4765 0.3399999999998342 -0.3470760693624651 0
+4766 0.3449999999998534 -0.3470760693624651 0
+4767 0.3449999999998534 -0.3570523051187844 0
+4768 0.3499999999998726 -0.3470760693624651 0
+4769 0.3549999999998821 -0.3470760693624651 0
+4770 0.3549999999998821 -0.3570523051187844 0
+4771 0.3599999999998915 -0.3470760693624651 0
+4772 0.3649999999999043 -0.3470760693624651 0
+4773 0.3649999999999043 -0.3570523051187844 0
+4774 0.3699999999999171 -0.3470760693624651 0
+4775 0.3749999999999342 -0.3470760693624651 0
+4776 0.3749999999999342 -0.3570523051187844 0
+4777 0.3799999999999512 -0.3470760693624651 0
+4778 0.3849999999999607 -0.3470760693624651 0
+4779 0.3849999999999607 -0.3570523051187844 0
+4780 0.3899999999999702 -0.3470760693624651 0
+4781 0.3949999999999851 -0.3470760693624651 0
+4782 0.3949999999999851 -0.3570523051187844 0
+4783 0.004999999999990963 -0.3675273526584677 0
+4784 0.004999999999990963 -0.3780024001981511 0
+4785 0.009999999999981926 -0.3675273526584677 0
+4786 0.01499999999997157 -0.3675273526584677 0
+4787 0.01499999999997157 -0.3780024001981511 0
+4788 0.01999999999996121 -0.3675273526584677 0
+4789 0.02499999999995261 -0.3675273526584677 0
+4790 0.0249999999999526 -0.378002400198151 0
+4791 0.02999999999994401 -0.3675273526584677 0
+4792 0.03499999999993697 -0.3675273526584677 0
+4793 0.03499999999993697 -0.3780024001981511 0
+4794 0.03999999999992994 -0.3675273526584678 0
+4795 0.04499999999992209 -0.3675273526584678 0
+4796 0.04499999999992209 -0.3780024001981512 0
+4797 0.04999999999991424 -0.3675273526584678 0
+4798 0.05499999999990056 -0.3675273526584678 0
+4799 0.05499999999990056 -0.3780024001981511 0
+4800 0.05999999999988688 -0.3675273526584677 0
+4801 0.06499999999987254 -0.3675273526584678 0
+4802 0.06499999999987252 -0.378002400198151 0
+4803 0.06999999999985818 -0.3675273526584678 0
+4804 0.07499999999984111 -0.3675273526584677 0
+4805 0.07499999999984111 -0.3780024001981511 0
+4806 0.07999999999982406 -0.3675273526584678 0
+4807 0.0849999999998097 -0.3675273526584678 0
+4808 0.0849999999998097 -0.3780024001981511 0
+4809 0.08999999999979536 -0.3675273526584678 0
+4810 0.09499999999978101 -0.3675273526584678 0
+4811 0.09499999999978101 -0.3780024001981511 0
+4812 0.09999999999976666 -0.3675273526584678 0
+4813 0.1049999999997523 -0.3675273526584678 0
+4814 0.1049999999997523 -0.3780024001981511 0
+4815 0.109999999999738 -0.3675273526584677 0
+4816 0.1149999999997236 -0.3675273526584678 0
+4817 0.1149999999997236 -0.3780024001981511 0
+4818 0.1199999999997092 -0.3675273526584678 0
+4819 0.1249999999996949 -0.3675273526584677 0
+4820 0.1249999999996949 -0.3780024001981511 0
+4821 0.1299999999996806 -0.3675273526584677 0
+4822 0.1349999999996662 -0.3675273526584678 0
+4823 0.1349999999996662 -0.3780024001981511 0
+4824 0.1399999999996519 -0.3675273526584678 0
+4825 0.1449999999996348 -0.3675273526584678 0
+4826 0.1449999999996348 -0.3780024001981511 0
+4827 0.1499999999996177 -0.3675273526584678 0
+4828 0.1549999999996007 -0.3675273526584678 0
+4829 0.1549999999996007 -0.3780024001981511 0
+4830 0.1599999999995836 -0.3675273526584678 0
+4831 0.1649999999995692 -0.3675273526584678 0
+4832 0.1649999999995692 -0.3780024001981511 0
+4833 0.1699999999995549 -0.3675273526584678 0
+4834 0.1749999999995406 -0.3675273526584677 0
+4835 0.1749999999995406 -0.3780024001981511 0
+4836 0.1799999999995262 -0.3675273526584677 0
+4837 0.1849999999995118 -0.3675273526584678 0
+4838 0.1849999999995118 -0.3780024001981511 0
+4839 0.1899999999994975 -0.3675273526584678 0
+4840 0.1949999999994859 -0.3675273526584678 0
+4841 0.1949999999994859 -0.3780024001981511 0
+4842 0.1999999999994742 -0.3675273526584677 0
+4843 0.2049999999994859 -0.3675273526584677 0
+4844 0.2049999999994859 -0.3780024001981511 0
+4845 0.2099999999994975 -0.3675273526584678 0
+4846 0.2149999999995092 -0.3675273526584678 0
+4847 0.2149999999995092 -0.3780024001981511 0
+4848 0.2199999999995209 -0.3675273526584678 0
+4849 0.2249999999995352 -0.3675273526584677 0
+4850 0.2249999999995352 -0.3780024001981511 0
+4851 0.2299999999995495 -0.3675273526584677 0
+4852 0.2349999999995634 -0.3675273526584678 0
+4853 0.2349999999995634 -0.3780024001981511 0
+4854 0.2399999999995773 -0.3675273526584678 0
+4855 0.2449999999995894 -0.3675273526584678 0
+4856 0.2449999999995894 -0.3780024001981511 0
+4857 0.2499999999996016 -0.3675273526584678 0
+4858 0.2549999999996181 -0.3675273526584678 0
+4859 0.2549999999996181 -0.3780024001981511 0
+4860 0.2599999999996346 -0.3675273526584677 0
+4861 0.2649999999996452 -0.3675273526584677 0
+4862 0.2649999999996452 -0.3780024001981511 0
+4863 0.2699999999996558 -0.3675273526584677 0
+4864 0.2749999999996675 -0.3675273526584677 0
+4865 0.2749999999996675 -0.3780024001981511 0
+4866 0.2799999999996792 -0.3675273526584678 0
+4867 0.2849999999996973 -0.3675273526584678 0
+4868 0.2849999999996973 -0.3780024001981511 0
+4869 0.2899999999997154 -0.3675273526584678 0
+4870 0.2949999999997248 -0.3675273526584678 0
+4871 0.2949999999997248 -0.3780024001981511 0
+4872 0.2999999999997344 -0.3675273526584678 0
+4873 0.3049999999997439 -0.3675273526584678 0
+4874 0.3049999999997439 -0.3780024001981511 0
+4875 0.3099999999997534 -0.3675273526584678 0
+4876 0.3149999999997715 -0.3675273526584678 0
+4877 0.3149999999997715 -0.3780024001981511 0
+4878 0.3199999999997897 -0.3675273526584678 0
+4879 0.3249999999998013 -0.3675273526584678 0
+4880 0.3249999999998013 -0.3780024001981511 0
+4881 0.329999999999813 -0.3675273526584678 0
+4882 0.3349999999998236 -0.3675273526584678 0
+4883 0.3349999999998236 -0.3780024001981511 0
+4884 0.3399999999998342 -0.3675273526584677 0
+4885 0.3449999999998534 -0.3675273526584677 0
+4886 0.3449999999998534 -0.3780024001981511 0
+4887 0.3499999999998726 -0.3675273526584677 0
+4888 0.3549999999998821 -0.3675273526584677 0
+4889 0.3549999999998821 -0.3780024001981511 0
+4890 0.3599999999998915 -0.3675273526584678 0
+4891 0.3649999999999043 -0.3675273526584678 0
+4892 0.3649999999999043 -0.3780024001981511 0
+4893 0.3699999999999171 -0.3675273526584678 0
+4894 0.3749999999999342 -0.3675273526584678 0
+4895 0.3749999999999342 -0.3780024001981511 0
+4896 0.3799999999999512 -0.3675273526584678 0
+4897 0.3849999999999607 -0.3675273526584678 0
+4898 0.3849999999999607 -0.3780024001981511 0
+4899 0.3899999999999702 -0.3675273526584678 0
+4900 0.3949999999999851 -0.3675273526584678 0
+4901 0.3949999999999851 -0.3780024001981511 0
+4902 0.004999999999990963 -0.3890012000990756 0
+4903 0.009999999999981926 -0.3890012000990756 0
+4904 0.01499999999997157 -0.3890012000990756 0
+4905 0.01999999999996121 -0.3890012000990756 0
+4906 0.0249999999999526 -0.3890012000990755 0
+4907 0.02999999999994401 -0.3890012000990755 0
+4908 0.03499999999993698 -0.3890012000990756 0
+4909 0.03999999999992994 -0.3890012000990756 0
+4910 0.04499999999992209 -0.3890012000990757 0
+4911 0.04999999999991424 -0.3890012000990757 0
+4912 0.05499999999990056 -0.3890012000990755 0
+4913 0.05999999999988688 -0.3890012000990755 0
+4914 0.06499999999987252 -0.3890012000990756 0
+4915 0.06999999999985818 -0.3890012000990756 0
+4916 0.07499999999984112 -0.3890012000990756 0
+4917 0.07999999999982406 -0.3890012000990756 0
+4918 0.0849999999998097 -0.3890012000990756 0
+4919 0.08999999999979536 -0.3890012000990756 0
+4920 0.09499999999978101 -0.3890012000990756 0
+4921 0.09999999999976666 -0.3890012000990756 0
+4922 0.1049999999997523 -0.3890012000990756 0
+4923 0.109999999999738 -0.3890012000990756 0
+4924 0.1149999999997236 -0.3890012000990756 0
+4925 0.1199999999997092 -0.3890012000990756 0
+4926 0.1249999999996949 -0.3890012000990756 0
+4927 0.1299999999996806 -0.3890012000990756 0
+4928 0.1349999999996662 -0.3890012000990756 0
+4929 0.1399999999996519 -0.3890012000990756 0
+4930 0.1449999999996348 -0.3890012000990756 0
+4931 0.1499999999996177 -0.3890012000990756 0
+4932 0.1549999999996007 -0.3890012000990756 0
+4933 0.1599999999995836 -0.3890012000990756 0
+4934 0.1649999999995692 -0.3890012000990756 0
+4935 0.1699999999995549 -0.3890012000990756 0
+4936 0.1749999999995406 -0.3890012000990756 0
+4937 0.1799999999995262 -0.3890012000990756 0
+4938 0.1849999999995118 -0.3890012000990756 0
+4939 0.1899999999994975 -0.3890012000990756 0
+4940 0.1949999999994859 -0.3890012000990756 0
+4941 0.1999999999994742 -0.3890012000990756 0
+4942 0.2049999999994859 -0.3890012000990756 0
+4943 0.2099999999994975 -0.3890012000990756 0
+4944 0.2149999999995092 -0.3890012000990756 0
+4945 0.2199999999995209 -0.3890012000990756 0
+4946 0.2249999999995352 -0.3890012000990756 0
+4947 0.2299999999995495 -0.3890012000990756 0
+4948 0.2349999999995634 -0.3890012000990756 0
+4949 0.2399999999995772 -0.3890012000990756 0
+4950 0.2449999999995894 -0.3890012000990756 0
+4951 0.2499999999996016 -0.3890012000990756 0
+4952 0.2549999999996181 -0.3890012000990756 0
+4953 0.2599999999996346 -0.3890012000990756 0
+4954 0.2649999999996452 -0.3890012000990756 0
+4955 0.2699999999996558 -0.3890012000990756 0
+4956 0.2749999999996675 -0.3890012000990756 0
+4957 0.2799999999996792 -0.3890012000990756 0
+4958 0.2849999999996972 -0.3890012000990756 0
+4959 0.2899999999997154 -0.3890012000990756 0
+4960 0.2949999999997249 -0.3890012000990756 0
+4961 0.2999999999997344 -0.3890012000990756 0
+4962 0.3049999999997439 -0.3890012000990756 0
+4963 0.3099999999997534 -0.3890012000990756 0
+4964 0.3149999999997715 -0.3890012000990756 0
+4965 0.3199999999997897 -0.3890012000990756 0
+4966 0.3249999999998013 -0.3890012000990756 0
+4967 0.329999999999813 -0.3890012000990756 0
+4968 0.3349999999998236 -0.3890012000990756 0
+4969 0.3399999999998342 -0.3890012000990756 0
+4970 0.3449999999998534 -0.3890012000990756 0
+4971 0.3499999999998726 -0.3890012000990756 0
+4972 0.3549999999998821 -0.3890012000990756 0
+4973 0.3599999999998915 -0.3890012000990756 0
+4974 0.3649999999999043 -0.3890012000990756 0
+4975 0.3699999999999171 -0.3890012000990756 0
+4976 0.3749999999999342 -0.3890012000990756 0
+4977 0.3799999999999512 -0.3890012000990756 0
+4978 0.3849999999999607 -0.3890012000990756 0
+4979 0.3899999999999702 -0.3890012000990756 0
+4980 0.3949999999999851 -0.3890012000990756 0
+4981 0.4159009150359436 -0.3180974798108415 0
+4982 0.4325968757860914 -0.3180974798108416 0
+4983 0.4501276345236666 -0.3180974798108416 0
+4984 0.4685349312246211 -0.3180974798108415 0
+4985 0.4878625928296997 -0.3180974798108416 0
+4986 0.5081566374754982 -0.3180974798108416 0
+4987 0.5294653843060497 -0.3180974798108416 0
+4988 0.5518395685067007 -0.3180974798108416 0
+4989 0.5753324619453917 -0.3180974798108416 0
+4990 0.4159009150359434 -0.3370998336061459 0
+4991 0.4325968757860914 -0.3370998336061457 0
+4992 0.4501276345236666 -0.3370998336061457 0
+4993 0.4685349312246211 -0.3370998336061458 0
+4994 0.4878625928296997 -0.3370998336061458 0
+4995 0.5081566374754982 -0.3370998336061458 0
+4996 0.5294653843060497 -0.3370998336061458 0
+4997 0.5518395685067007 -0.3370998336061458 0
+4998 0.5753324619453916 -0.3370998336061458 0
+4999 0.4159009150359435 -0.3570523051187843 0
+5000 0.4325968757860914 -0.3570523051187844 0
+5001 0.4501276345236665 -0.3570523051187844 0
+5002 0.4685349312246211 -0.3570523051187844 0
+5003 0.4878625928296997 -0.3570523051187844 0
+5004 0.5081566374754983 -0.3570523051187844 0
+5005 0.5294653843060497 -0.3570523051187844 0
+5006 0.5518395685067007 -0.3570523051187844 0
+5007 0.5753324619453916 -0.3570523051187844 0
+5008 0.4159009150359435 -0.3780024001981512 0
+5009 0.4325968757860914 -0.3780024001981511 0
+5010 0.4501276345236666 -0.3780024001981511 0
+5011 0.468534931224621 -0.3780024001981511 0
+5012 0.4878625928296997 -0.3780024001981511 0
+5013 0.5081566374754983 -0.3780024001981511 0
+5014 0.5294653843060497 -0.3780024001981511 0
+5015 0.5518395685067007 -0.3780024001981511 0
+5016 0.5753324619453916 -0.3780024001981511 0
+5017 0.4079504575179718 -0.3090487399054208 0
+5018 0.4079504575179718 -0.3180974798108416 0
+5019 0.4159009150359435 -0.3090487399054208 0
+5020 0.4242488954110175 -0.3090487399054208 0
+5021 0.4242488954110175 -0.3180974798108416 0
+5022 0.4325968757860914 -0.3090487399054208 0
+5023 0.441362255154879 -0.3090487399054208 0
+5024 0.441362255154879 -0.3180974798108416 0
+5025 0.4501276345236666 -0.3090487399054208 0
+5026 0.4593312828741438 -0.3090487399054208 0
+5027 0.4593312828741438 -0.3180974798108416 0
+5028 0.4685349312246211 -0.3090487399054208 0
+5029 0.4781987620271604 -0.3090487399054208 0
+5030 0.4781987620271604 -0.3180974798108416 0
+5031 0.4878625928296997 -0.3090487399054208 0
+5032 0.498009615152599 -0.3090487399054208 0
+5033 0.498009615152599 -0.3180974798108416 0
+5034 0.5081566374754982 -0.3090487399054208 0
+5035 0.518811010890774 -0.3090487399054208 0
+5036 0.518811010890774 -0.3180974798108416 0
+5037 0.5294653843060497 -0.3090487399054208 0
+5038 0.5406524764063752 -0.3090487399054208 0
+5039 0.5406524764063752 -0.3180974798108416 0
+5040 0.5518395685067007 -0.3090487399054208 0
+5041 0.5635860152260461 -0.3090487399054208 0
+5042 0.5635860152260461 -0.3180974798108416 0
+5043 0.5753324619453917 -0.3090487399054208 0
+5044 0.5876662309726959 -0.3090487399054208 0
+5045 0.5876662309726959 -0.3180974798108416 0
+5046 0.4079504575179718 -0.3275986567084936 0
+5047 0.4079504575179717 -0.3370998336061458 0
+5048 0.4159009150359435 -0.3275986567084937 0
+5049 0.4242488954110174 -0.3275986567084938 0
+5050 0.4242488954110174 -0.3370998336061458 0
+5051 0.4325968757860914 -0.3275986567084936 0
+5052 0.441362255154879 -0.3275986567084936 0
+5053 0.441362255154879 -0.3370998336061457 0
+5054 0.4501276345236666 -0.3275986567084936 0
+5055 0.4593312828741438 -0.3275986567084936 0
+5056 0.4593312828741438 -0.3370998336061458 0
+5057 0.4685349312246211 -0.3275986567084936 0
+5058 0.4781987620271604 -0.3275986567084937 0
+5059 0.4781987620271604 -0.3370998336061458 0
+5060 0.4878625928296997 -0.3275986567084937 0
+5061 0.498009615152599 -0.3275986567084937 0
+5062 0.498009615152599 -0.3370998336061458 0
+5063 0.5081566374754982 -0.3275986567084937 0
+5064 0.518811010890774 -0.3275986567084937 0
+5065 0.518811010890774 -0.3370998336061458 0
+5066 0.5294653843060497 -0.3275986567084937 0
+5067 0.5406524764063752 -0.3275986567084937 0
+5068 0.5406524764063752 -0.3370998336061458 0
+5069 0.5518395685067007 -0.3275986567084937 0
+5070 0.5635860152260461 -0.3275986567084937 0
+5071 0.5635860152260461 -0.3370998336061458 0
+5072 0.5753324619453917 -0.3275986567084937 0
+5073 0.5876662309726958 -0.3275986567084937 0
+5074 0.5876662309726958 -0.3370998336061458 0
+5075 0.4079504575179717 -0.3470760693624652 0
+5076 0.4079504575179718 -0.3570523051187844 0
+5077 0.4159009150359434 -0.3470760693624651 0
+5078 0.4242488954110174 -0.3470760693624651 0
+5079 0.4242488954110174 -0.3570523051187844 0
+5080 0.4325968757860914 -0.3470760693624651 0
+5081 0.441362255154879 -0.3470760693624651 0
+5082 0.4413622551548789 -0.3570523051187844 0
+5083 0.4501276345236666 -0.3470760693624651 0
+5084 0.4593312828741438 -0.3470760693624651 0
+5085 0.4593312828741438 -0.3570523051187844 0
+5086 0.4685349312246211 -0.3470760693624651 0
+5087 0.4781987620271604 -0.3470760693624651 0
+5088 0.4781987620271604 -0.3570523051187844 0
+5089 0.4878625928296997 -0.3470760693624651 0
+5090 0.498009615152599 -0.3470760693624651 0
+5091 0.498009615152599 -0.3570523051187844 0
+5092 0.5081566374754982 -0.3470760693624651 0
+5093 0.518811010890774 -0.3470760693624651 0
+5094 0.518811010890774 -0.3570523051187844 0
+5095 0.5294653843060497 -0.3470760693624651 0
+5096 0.5406524764063752 -0.3470760693624651 0
+5097 0.5406524764063752 -0.3570523051187844 0
+5098 0.5518395685067007 -0.3470760693624651 0
+5099 0.5635860152260461 -0.3470760693624651 0
+5100 0.5635860152260461 -0.3570523051187844 0
+5101 0.5753324619453916 -0.3470760693624651 0
+5102 0.5876662309726958 -0.3470760693624651 0
+5103 0.5876662309726958 -0.3570523051187844 0
+5104 0.4079504575179718 -0.3675273526584677 0
+5105 0.4079504575179718 -0.3780024001981511 0
+5106 0.4159009150359435 -0.3675273526584678 0
+5107 0.4242488954110175 -0.3675273526584678 0
+5108 0.4242488954110175 -0.3780024001981511 0
+5109 0.4325968757860914 -0.3675273526584678 0
+5110 0.4413622551548789 -0.3675273526584678 0
+5111 0.441362255154879 -0.3780024001981511 0
+5112 0.4501276345236666 -0.3675273526584678 0
+5113 0.4593312828741438 -0.3675273526584678 0
+5114 0.4593312828741438 -0.3780024001981511 0
+5115 0.468534931224621 -0.3675273526584678 0
+5116 0.4781987620271603 -0.3675273526584678 0
+5117 0.4781987620271603 -0.3780024001981511 0
+5118 0.4878625928296997 -0.3675273526584678 0
+5119 0.498009615152599 -0.3675273526584678 0
+5120 0.498009615152599 -0.3780024001981511 0
+5121 0.5081566374754983 -0.3675273526584678 0
+5122 0.518811010890774 -0.3675273526584678 0
+5123 0.518811010890774 -0.3780024001981511 0
+5124 0.5294653843060497 -0.3675273526584678 0
+5125 0.5406524764063752 -0.3675273526584678 0
+5126 0.5406524764063752 -0.3780024001981511 0
+5127 0.5518395685067007 -0.3675273526584678 0
+5128 0.5635860152260461 -0.3675273526584678 0
+5129 0.5635860152260461 -0.3780024001981511 0
+5130 0.5753324619453916 -0.3675273526584678 0
+5131 0.5876662309726958 -0.3675273526584678 0
+5132 0.5876662309726958 -0.3780024001981511 0
+5133 0.4079504575179718 -0.3890012000990756 0
+5134 0.4159009150359435 -0.3890012000990756 0
+5135 0.4242488954110174 -0.3890012000990756 0
+5136 0.4325968757860914 -0.3890012000990756 0
+5137 0.441362255154879 -0.3890012000990756 0
+5138 0.4501276345236666 -0.3890012000990756 0
+5139 0.4593312828741438 -0.3890012000990756 0
+5140 0.4685349312246211 -0.3890012000990756 0
+5141 0.4781987620271604 -0.3890012000990756 0
+5142 0.4878625928296997 -0.3890012000990756 0
+5143 0.498009615152599 -0.3890012000990756 0
+5144 0.5081566374754983 -0.3890012000990756 0
+5145 0.518811010890774 -0.3890012000990756 0
+5146 0.5294653843060497 -0.3890012000990756 0
+5147 0.5406524764063752 -0.3890012000990756 0
+5148 0.5518395685067007 -0.3890012000990756 0
+5149 0.5635860152260461 -0.3890012000990756 0
+5150 0.5753324619453916 -0.3890012000990756 0
+5151 0.5876662309726958 -0.3890012000990756 0
+$EndNodes
+$Elements
+2734
+1 15 2 0 1 1
+2 15 2 0 2 2
+3 15 2 0 3 3
+4 15 2 0 4 4
+5 15 2 0 5 5
+6 15 2 0 6 6
+7 15 2 0 7 7
+8 15 2 0 8 8
+9 15 2 0 9 9
+10 8 2 0 1 1 10 49
+11 8 2 0 1 10 11 50
+12 8 2 0 1 11 12 51
+13 8 2 0 1 12 13 52
+14 8 2 0 1 13 14 53
+15 8 2 0 1 14 15 54
+16 8 2 0 1 15 16 55
+17 8 2 0 1 16 17 56
+18 8 2 0 1 17 18 57
+19 8 2 0 1 18 19 58
+20 8 2 0 1 19 20 59
+21 8 2 0 1 20 21 60
+22 8 2 0 1 21 22 61
+23 8 2 0 1 22 23 62
+24 8 2 0 1 23 24 63
+25 8 2 0 1 24 25 64
+26 8 2 0 1 25 26 65
+27 8 2 0 1 26 27 66
+28 8 2 0 1 27 28 67
+29 8 2 0 1 28 29 68
+30 8 2 0 1 29 30 69
+31 8 2 0 1 30 31 70
+32 8 2 0 1 31 32 71
+33 8 2 0 1 32 33 72
+34 8 2 0 1 33 34 73
+35 8 2 0 1 34 35 74
+36 8 2 0 1 35 36 75
+37 8 2 0 1 36 37 76
+38 8 2 0 1 37 38 77
+39 8 2 0 1 38 39 78
+40 8 2 0 1 39 40 79
+41 8 2 0 1 40 41 80
+42 8 2 0 1 41 42 81
+43 8 2 0 1 42 43 82
+44 8 2 0 1 43 44 83
+45 8 2 0 1 44 45 84
+46 8 2 0 1 45 46 85
+47 8 2 0 1 46 47 86
+48 8 2 0 1 47 48 87
+49 8 2 0 1 48 2 88
+50 8 2 0 2 2 89 98
+51 8 2 0 2 89 90 99
+52 8 2 0 2 90 91 100
+53 8 2 0 2 91 92 101
+54 8 2 0 2 92 93 102
+55 8 2 0 2 93 94 103
+56 8 2 0 2 94 95 104
+57 8 2 0 2 95 96 105
+58 8 2 0 2 96 97 106
+59 8 2 0 2 97 3 107
+60 8 2 0 3 8 108 147
+61 8 2 0 3 108 109 148
+62 8 2 0 3 109 110 149
+63 8 2 0 3 110 111 150
+64 8 2 0 3 111 112 151
+65 8 2 0 3 112 113 152
+66 8 2 0 3 113 114 153
+67 8 2 0 3 114 115 154
+68 8 2 0 3 115 116 155
+69 8 2 0 3 116 117 156
+70 8 2 0 3 117 118 157
+71 8 2 0 3 118 119 158
+72 8 2 0 3 119 120 159
+73 8 2 0 3 120 121 160
+74 8 2 0 3 121 122 161
+75 8 2 0 3 122 123 162
+76 8 2 0 3 123 124 163
+77 8 2 0 3 124 125 164
+78 8 2 0 3 125 126 165
+79 8 2 0 3 126 127 166
+80 8 2 0 3 127 128 167
+81 8 2 0 3 128 129 168
+82 8 2 0 3 129 130 169
+83 8 2 0 3 130 131 170
+84 8 2 0 3 131 132 171
+85 8 2 0 3 132 133 172
+86 8 2 0 3 133 134 173
+87 8 2 0 3 134 135 174
+88 8 2 0 3 135 136 175
+89 8 2 0 3 136 137 176
+90 8 2 0 3 137 138 177
+91 8 2 0 3 138 139 178
+92 8 2 0 3 139 140 179
+93 8 2 0 3 140 141 180
+94 8 2 0 3 141 142 181
+95 8 2 0 3 142 143 182
+96 8 2 0 3 143 144 183
+97 8 2 0 3 144 145 184
+98 8 2 0 3 145 146 185
+99 8 2 0 3 146 9 186
+100 8 2 0 4 9 187 196
+101 8 2 0 4 187 188 197
+102 8 2 0 4 188 189 198
+103 8 2 0 4 189 190 199
+104 8 2 0 4 190 191 200
+105 8 2 0 4 191 192 201
+106 8 2 0 4 192 193 202
+107 8 2 0 4 193 194 203
+108 8 2 0 4 194 195 204
+109 8 2 0 4 195 4 205
+110 8 2 0 5 7 206 245
+111 8 2 0 5 206 207 246
+112 8 2 0 5 207 208 247
+113 8 2 0 5 208 209 248
+114 8 2 0 5 209 210 249
+115 8 2 0 5 210 211 250
+116 8 2 0 5 211 212 251
+117 8 2 0 5 212 213 252
+118 8 2 0 5 213 214 253
+119 8 2 0 5 214 215 254
+120 8 2 0 5 215 216 255
+121 8 2 0 5 216 217 256
+122 8 2 0 5 217 218 257
+123 8 2 0 5 218 219 258
+124 8 2 0 5 219 220 259
+125 8 2 0 5 220 221 260
+126 8 2 0 5 221 222 261
+127 8 2 0 5 222 223 262
+128 8 2 0 5 223 224 263
+129 8 2 0 5 224 225 264
+130 8 2 0 5 225 226 265
+131 8 2 0 5 226 227 266
+132 8 2 0 5 227 228 267
+133 8 2 0 5 228 229 268
+134 8 2 0 5 229 230 269
+135 8 2 0 5 230 231 270
+136 8 2 0 5 231 232 271
+137 8 2 0 5 232 233 272
+138 8 2 0 5 233 234 273
+139 8 2 0 5 234 235 274
+140 8 2 0 5 235 236 275
+141 8 2 0 5 236 237 276
+142 8 2 0 5 237 238 277
+143 8 2 0 5 238 239 278
+144 8 2 0 5 239 240 279
+145 8 2 0 5 240 241 280
+146 8 2 0 5 241 242 281
+147 8 2 0 5 242 243 282
+148 8 2 0 5 243 244 283
+149 8 2 0 5 244 6 284
+150 8 2 0 6 6 285 294
+151 8 2 0 6 285 286 295
+152 8 2 0 6 286 287 296
+153 8 2 0 6 287 288 297
+154 8 2 0 6 288 289 298
+155 8 2 0 6 289 290 299
+156 8 2 0 6 290 291 300
+157 8 2 0 6 291 292 301
+158 8 2 0 6 292 293 302
+159 8 2 0 6 293 5 303
+160 8 2 0 7 7 304 308
+161 8 2 0 7 304 305 309
+162 8 2 0 7 305 306 310
+163 8 2 0 7 306 307 311
+164 8 2 0 7 307 8 312
+165 8 2 0 8 8 313 332
+166 8 2 0 8 313 314 333
+167 8 2 0 8 314 315 334
+168 8 2 0 8 315 316 335
+169 8 2 0 8 316 317 336
+170 8 2 0 8 317 318 337
+171 8 2 0 8 318 319 338
+172 8 2 0 8 319 320 339
+173 8 2 0 8 320 321 340
+174 8 2 0 8 321 322 341
+175 8 2 0 8 322 323 342
+176 8 2 0 8 323 324 343
+177 8 2 0 8 324 325 344
+178 8 2 0 8 325 326 345
+179 8 2 0 8 326 327 346
+180 8 2 0 8 327 328 347
+181 8 2 0 8 328 329 348
+182 8 2 0 8 329 330 349
+183 8 2 0 8 330 331 350
+184 8 2 0 8 331 1 351
+185 8 2 0 9 6 352 356
+186 8 2 0 9 352 353 357
+187 8 2 0 9 353 354 358
+188 8 2 0 9 354 355 359
+189 8 2 0 9 355 9 360
+190 8 2 0 10 9 361 380
+191 8 2 0 10 361 362 381
+192 8 2 0 10 362 363 382
+193 8 2 0 10 363 364 383
+194 8 2 0 10 364 365 384
+195 8 2 0 10 365 366 385
+196 8 2 0 10 366 367 386
+197 8 2 0 10 367 368 387
+198 8 2 0 10 368 369 388
+199 8 2 0 10 369 370 389
+200 8 2 0 10 370 371 390
+201 8 2 0 10 371 372 391
+202 8 2 0 10 372 373 392
+203 8 2 0 10 373 374 393
+204 8 2 0 10 374 375 394
+205 8 2 0 10 375 376 395
+206 8 2 0 10 376 377 396
+207 8 2 0 10 377 378 397
+208 8 2 0 10 378 379 398
+209 8 2 0 10 379 2 399
+210 8 2 0 11 5 400 404
+211 8 2 0 11 400 401 405
+212 8 2 0 11 401 402 406
+213 8 2 0 11 402 403 407
+214 8 2 0 11 403 4 408
+215 8 2 0 12 4 409 428
+216 8 2 0 12 409 410 429
+217 8 2 0 12 410 411 430
+218 8 2 0 12 411 412 431
+219 8 2 0 12 412 413 432
+220 8 2 0 12 413 414 433
+221 8 2 0 12 414 415 434
+222 8 2 0 12 415 416 435
+223 8 2 0 12 416 417 436
+224 8 2 0 12 417 418 437
+225 8 2 0 12 418 419 438
+226 8 2 0 12 419 420 439
+227 8 2 0 12 420 421 440
+228 8 2 0 12 421 422 441
+229 8 2 0 12 422 423 442
+230 8 2 0 12 423 424 443
+231 8 2 0 12 424 425 444
+232 8 2 0 12 425 426 445
+233 8 2 0 12 426 427 446
+234 8 2 0 12 427 3 447
+235 9 2 0 1 1 331 10 351 1189 49
+236 9 2 0 1 10 331 448 1189 1190 1191
+237 9 2 0 1 10 448 11 1191 1192 50
+238 9 2 0 1 11 448 449 1192 1193 1194
+239 9 2 0 1 11 449 12 1194 1195 51
+240 9 2 0 1 12 449 450 1195 1196 1197
+241 9 2 0 1 12 450 13 1197 1198 52
+242 9 2 0 1 13 450 451 1198 1199 1200
+243 9 2 0 1 13 451 14 1200 1201 53
+244 9 2 0 1 14 451 452 1201 1202 1203
+245 9 2 0 1 14 452 15 1203 1204 54
+246 9 2 0 1 15 452 453 1204 1205 1206
+247 9 2 0 1 15 453 16 1206 1207 55
+248 9 2 0 1 16 453 454 1207 1208 1209
+249 9 2 0 1 16 454 17 1209 1210 56
+250 9 2 0 1 17 454 455 1210 1211 1212
+251 9 2 0 1 17 455 18 1212 1213 57
+252 9 2 0 1 18 455 456 1213 1214 1215
+253 9 2 0 1 18 456 19 1215 1216 58
+254 9 2 0 1 19 456 457 1216 1217 1218
+255 9 2 0 1 19 457 20 1218 1219 59
+256 9 2 0 1 20 457 458 1219 1220 1221
+257 9 2 0 1 20 458 21 1221 1222 60
+258 9 2 0 1 21 458 459 1222 1223 1224
+259 9 2 0 1 21 459 22 1224 1225 61
+260 9 2 0 1 22 459 460 1225 1226 1227
+261 9 2 0 1 22 460 23 1227 1228 62
+262 9 2 0 1 23 460 461 1228 1229 1230
+263 9 2 0 1 23 461 24 1230 1231 63
+264 9 2 0 1 24 461 462 1231 1232 1233
+265 9 2 0 1 24 462 25 1233 1234 64
+266 9 2 0 1 25 462 463 1234 1235 1236
+267 9 2 0 1 25 463 26 1236 1237 65
+268 9 2 0 1 26 463 464 1237 1238 1239
+269 9 2 0 1 26 464 27 1239 1240 66
+270 9 2 0 1 27 464 465 1240 1241 1242
+271 9 2 0 1 27 465 28 1242 1243 67
+272 9 2 0 1 28 465 466 1243 1244 1245
+273 9 2 0 1 28 466 29 1245 1246 68
+274 9 2 0 1 29 466 467 1246 1247 1248
+275 9 2 0 1 29 467 30 1248 1249 69
+276 9 2 0 1 30 467 468 1249 1250 1251
+277 9 2 0 1 30 468 31 1251 1252 70
+278 9 2 0 1 31 468 469 1252 1253 1254
+279 9 2 0 1 31 469 32 1254 1255 71
+280 9 2 0 1 32 469 470 1255 1256 1257
+281 9 2 0 1 32 470 33 1257 1258 72
+282 9 2 0 1 33 470 471 1258 1259 1260
+283 9 2 0 1 33 471 34 1260 1261 73
+284 9 2 0 1 34 471 472 1261 1262 1263
+285 9 2 0 1 34 472 35 1263 1264 74
+286 9 2 0 1 35 472 473 1264 1265 1266
+287 9 2 0 1 35 473 36 1266 1267 75
+288 9 2 0 1 36 473 474 1267 1268 1269
+289 9 2 0 1 36 474 37 1269 1270 76
+290 9 2 0 1 37 474 475 1270 1271 1272
+291 9 2 0 1 37 475 38 1272 1273 77
+292 9 2 0 1 38 475 476 1273 1274 1275
+293 9 2 0 1 38 476 39 1275 1276 78
+294 9 2 0 1 39 476 477 1276 1277 1278
+295 9 2 0 1 39 477 40 1278 1279 79
+296 9 2 0 1 40 477 478 1279 1280 1281
+297 9 2 0 1 40 478 41 1281 1282 80
+298 9 2 0 1 41 478 479 1282 1283 1284
+299 9 2 0 1 41 479 42 1284 1285 81
+300 9 2 0 1 42 479 480 1285 1286 1287
+301 9 2 0 1 42 480 43 1287 1288 82
+302 9 2 0 1 43 480 481 1288 1289 1290
+303 9 2 0 1 43 481 44 1290 1291 83
+304 9 2 0 1 44 481 482 1291 1292 1293
+305 9 2 0 1 44 482 45 1293 1294 84
+306 9 2 0 1 45 482 483 1294 1295 1296
+307 9 2 0 1 45 483 46 1296 1297 85
+308 9 2 0 1 46 483 484 1297 1298 1299
+309 9 2 0 1 46 484 47 1299 1300 86
+310 9 2 0 1 47 484 485 1300 1301 1302
+311 9 2 0 1 47 485 48 1302 1303 87
+312 9 2 0 1 48 485 486 1303 1304 1305
+313 9 2 0 1 48 486 2 1305 1306 88
+314 9 2 0 1 2 486 379 1306 1307 399
+315 9 2 0 1 331 330 448 350 1308 1190
+316 9 2 0 1 448 330 487 1308 1309 1310
+317 9 2 0 1 448 487 449 1310 1311 1193
+318 9 2 0 1 449 487 488 1311 1312 1313
+319 9 2 0 1 449 488 450 1313 1314 1196
+320 9 2 0 1 450 488 489 1314 1315 1316
+321 9 2 0 1 450 489 451 1316 1317 1199
+322 9 2 0 1 451 489 490 1317 1318 1319
+323 9 2 0 1 451 490 452 1319 1320 1202
+324 9 2 0 1 452 490 491 1320 1321 1322
+325 9 2 0 1 452 491 453 1322 1323 1205
+326 9 2 0 1 453 491 492 1323 1324 1325
+327 9 2 0 1 453 492 454 1325 1326 1208
+328 9 2 0 1 454 492 493 1326 1327 1328
+329 9 2 0 1 454 493 455 1328 1329 1211
+330 9 2 0 1 455 493 494 1329 1330 1331
+331 9 2 0 1 455 494 456 1331 1332 1214
+332 9 2 0 1 456 494 495 1332 1333 1334
+333 9 2 0 1 456 495 457 1334 1335 1217
+334 9 2 0 1 457 495 496 1335 1336 1337
+335 9 2 0 1 457 496 458 1337 1338 1220
+336 9 2 0 1 458 496 497 1338 1339 1340
+337 9 2 0 1 458 497 459 1340 1341 1223
+338 9 2 0 1 459 497 498 1341 1342 1343
+339 9 2 0 1 459 498 460 1343 1344 1226
+340 9 2 0 1 460 498 499 1344 1345 1346
+341 9 2 0 1 460 499 461 1346 1347 1229
+342 9 2 0 1 461 499 500 1347 1348 1349
+343 9 2 0 1 461 500 462 1349 1350 1232
+344 9 2 0 1 462 500 501 1350 1351 1352
+345 9 2 0 1 462 501 463 1352 1353 1235
+346 9 2 0 1 463 501 502 1353 1354 1355
+347 9 2 0 1 463 502 464 1355 1356 1238
+348 9 2 0 1 464 502 503 1356 1357 1358
+349 9 2 0 1 464 503 465 1358 1359 1241
+350 9 2 0 1 465 503 504 1359 1360 1361
+351 9 2 0 1 465 504 466 1361 1362 1244
+352 9 2 0 1 466 504 505 1362 1363 1364
+353 9 2 0 1 466 505 467 1364 1365 1247
+354 9 2 0 1 467 505 506 1365 1366 1367
+355 9 2 0 1 467 506 468 1367 1368 1250
+356 9 2 0 1 468 506 507 1368 1369 1370
+357 9 2 0 1 468 507 469 1370 1371 1253
+358 9 2 0 1 469 507 508 1371 1372 1373
+359 9 2 0 1 469 508 470 1373 1374 1256
+360 9 2 0 1 470 508 509 1374 1375 1376
+361 9 2 0 1 470 509 471 1376 1377 1259
+362 9 2 0 1 471 509 510 1377 1378 1379
+363 9 2 0 1 471 510 472 1379 1380 1262
+364 9 2 0 1 472 510 511 1380 1381 1382
+365 9 2 0 1 472 511 473 1382 1383 1265
+366 9 2 0 1 473 511 512 1383 1384 1385
+367 9 2 0 1 473 512 474 1385 1386 1268
+368 9 2 0 1 474 512 513 1386 1387 1388
+369 9 2 0 1 474 513 475 1388 1389 1271
+370 9 2 0 1 475 513 514 1389 1390 1391
+371 9 2 0 1 475 514 476 1391 1392 1274
+372 9 2 0 1 476 514 515 1392 1393 1394
+373 9 2 0 1 476 515 477 1394 1395 1277
+374 9 2 0 1 477 515 516 1395 1396 1397
+375 9 2 0 1 477 516 478 1397 1398 1280
+376 9 2 0 1 478 516 517 1398 1399 1400
+377 9 2 0 1 478 517 479 1400 1401 1283
+378 9 2 0 1 479 517 518 1401 1402 1403
+379 9 2 0 1 479 518 480 1403 1404 1286
+380 9 2 0 1 480 518 519 1404 1405 1406
+381 9 2 0 1 480 519 481 1406 1407 1289
+382 9 2 0 1 481 519 520 1407 1408 1409
+383 9 2 0 1 481 520 482 1409 1410 1292
+384 9 2 0 1 482 520 521 1410 1411 1412
+385 9 2 0 1 482 521 483 1412 1413 1295
+386 9 2 0 1 483 521 522 1413 1414 1415
+387 9 2 0 1 483 522 484 1415 1416 1298
+388 9 2 0 1 484 522 523 1416 1417 1418
+389 9 2 0 1 484 523 485 1418 1419 1301
+390 9 2 0 1 485 523 524 1419 1420 1421
+391 9 2 0 1 485 524 486 1421 1422 1304
+392 9 2 0 1 486 524 525 1422 1423 1424
+393 9 2 0 1 486 525 379 1424 1425 1307
+394 9 2 0 1 379 525 378 1425 1426 398
+395 9 2 0 1 330 329 487 349 1427 1309
+396 9 2 0 1 487 329 526 1427 1428 1429
+397 9 2 0 1 487 526 488 1429 1430 1312
+398 9 2 0 1 488 526 527 1430 1431 1432
+399 9 2 0 1 488 527 489 1432 1433 1315
+400 9 2 0 1 489 527 528 1433 1434 1435
+401 9 2 0 1 489 528 490 1435 1436 1318
+402 9 2 0 1 490 528 529 1436 1437 1438
+403 9 2 0 1 490 529 491 1438 1439 1321
+404 9 2 0 1 491 529 530 1439 1440 1441
+405 9 2 0 1 491 530 492 1441 1442 1324
+406 9 2 0 1 492 530 531 1442 1443 1444
+407 9 2 0 1 492 531 493 1444 1445 1327
+408 9 2 0 1 493 531 532 1445 1446 1447
+409 9 2 0 1 493 532 494 1447 1448 1330
+410 9 2 0 1 494 532 533 1448 1449 1450
+411 9 2 0 1 494 533 495 1450 1451 1333
+412 9 2 0 1 495 533 534 1451 1452 1453
+413 9 2 0 1 495 534 496 1453 1454 1336
+414 9 2 0 1 496 534 535 1454 1455 1456
+415 9 2 0 1 496 535 497 1456 1457 1339
+416 9 2 0 1 497 535 536 1457 1458 1459
+417 9 2 0 1 497 536 498 1459 1460 1342
+418 9 2 0 1 498 536 537 1460 1461 1462
+419 9 2 0 1 498 537 499 1462 1463 1345
+420 9 2 0 1 499 537 538 1463 1464 1465
+421 9 2 0 1 499 538 500 1465 1466 1348
+422 9 2 0 1 500 538 539 1466 1467 1468
+423 9 2 0 1 500 539 501 1468 1469 1351
+424 9 2 0 1 501 539 540 1469 1470 1471
+425 9 2 0 1 501 540 502 1471 1472 1354
+426 9 2 0 1 502 540 541 1472 1473 1474
+427 9 2 0 1 502 541 503 1474 1475 1357
+428 9 2 0 1 503 541 542 1475 1476 1477
+429 9 2 0 1 503 542 504 1477 1478 1360
+430 9 2 0 1 504 542 543 1478 1479 1480
+431 9 2 0 1 504 543 505 1480 1481 1363
+432 9 2 0 1 505 543 544 1481 1482 1483
+433 9 2 0 1 505 544 506 1483 1484 1366
+434 9 2 0 1 506 544 545 1484 1485 1486
+435 9 2 0 1 506 545 507 1486 1487 1369
+436 9 2 0 1 507 545 546 1487 1488 1489
+437 9 2 0 1 507 546 508 1489 1490 1372
+438 9 2 0 1 508 546 547 1490 1491 1492
+439 9 2 0 1 508 547 509 1492 1493 1375
+440 9 2 0 1 509 547 548 1493 1494 1495
+441 9 2 0 1 509 548 510 1495 1496 1378
+442 9 2 0 1 510 548 549 1496 1497 1498
+443 9 2 0 1 510 549 511 1498 1499 1381
+444 9 2 0 1 511 549 550 1499 1500 1501
+445 9 2 0 1 511 550 512 1501 1502 1384
+446 9 2 0 1 512 550 551 1502 1503 1504
+447 9 2 0 1 512 551 513 1504 1505 1387
+448 9 2 0 1 513 551 552 1505 1506 1507
+449 9 2 0 1 513 552 514 1507 1508 1390
+450 9 2 0 1 514 552 553 1508 1509 1510
+451 9 2 0 1 514 553 515 1510 1511 1393
+452 9 2 0 1 515 553 554 1511 1512 1513
+453 9 2 0 1 515 554 516 1513 1514 1396
+454 9 2 0 1 516 554 555 1514 1515 1516
+455 9 2 0 1 516 555 517 1516 1517 1399
+456 9 2 0 1 517 555 556 1517 1518 1519
+457 9 2 0 1 517 556 518 1519 1520 1402
+458 9 2 0 1 518 556 557 1520 1521 1522
+459 9 2 0 1 518 557 519 1522 1523 1405
+460 9 2 0 1 519 557 558 1523 1524 1525
+461 9 2 0 1 519 558 520 1525 1526 1408
+462 9 2 0 1 520 558 559 1526 1527 1528
+463 9 2 0 1 520 559 521 1528 1529 1411
+464 9 2 0 1 521 559 560 1529 1530 1531
+465 9 2 0 1 521 560 522 1531 1532 1414
+466 9 2 0 1 522 560 561 1532 1533 1534
+467 9 2 0 1 522 561 523 1534 1535 1417
+468 9 2 0 1 523 561 562 1535 1536 1537
+469 9 2 0 1 523 562 524 1537 1538 1420
+470 9 2 0 1 524 562 563 1538 1539 1540
+471 9 2 0 1 524 563 525 1540 1541 1423
+472 9 2 0 1 525 563 564 1541 1542 1543
+473 9 2 0 1 525 564 378 1543 1544 1426
+474 9 2 0 1 378 564 377 1544 1545 397
+475 9 2 0 1 329 328 526 348 1546 1428
+476 9 2 0 1 526 328 565 1546 1547 1548
+477 9 2 0 1 526 565 527 1548 1549 1431
+478 9 2 0 1 527 565 566 1549 1550 1551
+479 9 2 0 1 527 566 528 1551 1552 1434
+480 9 2 0 1 528 566 567 1552 1553 1554
+481 9 2 0 1 528 567 529 1554 1555 1437
+482 9 2 0 1 529 567 568 1555 1556 1557
+483 9 2 0 1 529 568 530 1557 1558 1440
+484 9 2 0 1 530 568 569 1558 1559 1560
+485 9 2 0 1 530 569 531 1560 1561 1443
+486 9 2 0 1 531 569 570 1561 1562 1563
+487 9 2 0 1 531 570 532 1563 1564 1446
+488 9 2 0 1 532 570 571 1564 1565 1566
+489 9 2 0 1 532 571 533 1566 1567 1449
+490 9 2 0 1 533 571 572 1567 1568 1569
+491 9 2 0 1 533 572 534 1569 1570 1452
+492 9 2 0 1 534 572 573 1570 1571 1572
+493 9 2 0 1 534 573 535 1572 1573 1455
+494 9 2 0 1 535 573 574 1573 1574 1575
+495 9 2 0 1 535 574 536 1575 1576 1458
+496 9 2 0 1 536 574 575 1576 1577 1578
+497 9 2 0 1 536 575 537 1578 1579 1461
+498 9 2 0 1 537 575 576 1579 1580 1581
+499 9 2 0 1 537 576 538 1581 1582 1464
+500 9 2 0 1 538 576 577 1582 1583 1584
+501 9 2 0 1 538 577 539 1584 1585 1467
+502 9 2 0 1 539 577 578 1585 1586 1587
+503 9 2 0 1 539 578 540 1587 1588 1470
+504 9 2 0 1 540 578 579 1588 1589 1590
+505 9 2 0 1 540 579 541 1590 1591 1473
+506 9 2 0 1 541 579 580 1591 1592 1593
+507 9 2 0 1 541 580 542 1593 1594 1476
+508 9 2 0 1 542 580 581 1594 1595 1596
+509 9 2 0 1 542 581 543 1596 1597 1479
+510 9 2 0 1 543 581 582 1597 1598 1599
+511 9 2 0 1 543 582 544 1599 1600 1482
+512 9 2 0 1 544 582 583 1600 1601 1602
+513 9 2 0 1 544 583 545 1602 1603 1485
+514 9 2 0 1 545 583 584 1603 1604 1605
+515 9 2 0 1 545 584 546 1605 1606 1488
+516 9 2 0 1 546 584 585 1606 1607 1608
+517 9 2 0 1 546 585 547 1608 1609 1491
+518 9 2 0 1 547 585 586 1609 1610 1611
+519 9 2 0 1 547 586 548 1611 1612 1494
+520 9 2 0 1 548 586 587 1612 1613 1614
+521 9 2 0 1 548 587 549 1614 1615 1497
+522 9 2 0 1 549 587 588 1615 1616 1617
+523 9 2 0 1 549 588 550 1617 1618 1500
+524 9 2 0 1 550 588 589 1618 1619 1620
+525 9 2 0 1 550 589 551 1620 1621 1503
+526 9 2 0 1 551 589 590 1621 1622 1623
+527 9 2 0 1 551 590 552 1623 1624 1506
+528 9 2 0 1 552 590 591 1624 1625 1626
+529 9 2 0 1 552 591 553 1626 1627 1509
+530 9 2 0 1 553 591 592 1627 1628 1629
+531 9 2 0 1 553 592 554 1629 1630 1512
+532 9 2 0 1 554 592 593 1630 1631 1632
+533 9 2 0 1 554 593 555 1632 1633 1515
+534 9 2 0 1 555 593 594 1633 1634 1635
+535 9 2 0 1 555 594 556 1635 1636 1518
+536 9 2 0 1 556 594 595 1636 1637 1638
+537 9 2 0 1 556 595 557 1638 1639 1521
+538 9 2 0 1 557 595 596 1639 1640 1641
+539 9 2 0 1 557 596 558 1641 1642 1524
+540 9 2 0 1 558 596 597 1642 1643 1644
+541 9 2 0 1 558 597 559 1644 1645 1527
+542 9 2 0 1 559 597 598 1645 1646 1647
+543 9 2 0 1 559 598 560 1647 1648 1530
+544 9 2 0 1 560 598 599 1648 1649 1650
+545 9 2 0 1 560 599 561 1650 1651 1533
+546 9 2 0 1 561 599 600 1651 1652 1653
+547 9 2 0 1 561 600 562 1653 1654 1536
+548 9 2 0 1 562 600 601 1654 1655 1656
+549 9 2 0 1 562 601 563 1656 1657 1539
+550 9 2 0 1 563 601 602 1657 1658 1659
+551 9 2 0 1 563 602 564 1659 1660 1542
+552 9 2 0 1 564 602 603 1660 1661 1662
+553 9 2 0 1 564 603 377 1662 1663 1545
+554 9 2 0 1 377 603 376 1663 1664 396
+555 9 2 0 1 328 327 565 347 1665 1547
+556 9 2 0 1 565 327 604 1665 1666 1667
+557 9 2 0 1 565 604 566 1667 1668 1550
+558 9 2 0 1 566 604 605 1668 1669 1670
+559 9 2 0 1 566 605 567 1670 1671 1553
+560 9 2 0 1 567 605 606 1671 1672 1673
+561 9 2 0 1 567 606 568 1673 1674 1556
+562 9 2 0 1 568 606 607 1674 1675 1676
+563 9 2 0 1 568 607 569 1676 1677 1559
+564 9 2 0 1 569 607 608 1677 1678 1679
+565 9 2 0 1 569 608 570 1679 1680 1562
+566 9 2 0 1 570 608 609 1680 1681 1682
+567 9 2 0 1 570 609 571 1682 1683 1565
+568 9 2 0 1 571 609 610 1683 1684 1685
+569 9 2 0 1 571 610 572 1685 1686 1568
+570 9 2 0 1 572 610 611 1686 1687 1688
+571 9 2 0 1 572 611 573 1688 1689 1571
+572 9 2 0 1 573 611 612 1689 1690 1691
+573 9 2 0 1 573 612 574 1691 1692 1574
+574 9 2 0 1 574 612 613 1692 1693 1694
+575 9 2 0 1 574 613 575 1694 1695 1577
+576 9 2 0 1 575 613 614 1695 1696 1697
+577 9 2 0 1 575 614 576 1697 1698 1580
+578 9 2 0 1 576 614 615 1698 1699 1700
+579 9 2 0 1 576 615 577 1700 1701 1583
+580 9 2 0 1 577 615 616 1701 1702 1703
+581 9 2 0 1 577 616 578 1703 1704 1586
+582 9 2 0 1 578 616 617 1704 1705 1706
+583 9 2 0 1 578 617 579 1706 1707 1589
+584 9 2 0 1 579 617 618 1707 1708 1709
+585 9 2 0 1 579 618 580 1709 1710 1592
+586 9 2 0 1 580 618 619 1710 1711 1712
+587 9 2 0 1 580 619 581 1712 1713 1595
+588 9 2 0 1 581 619 620 1713 1714 1715
+589 9 2 0 1 581 620 582 1715 1716 1598
+590 9 2 0 1 582 620 621 1716 1717 1718
+591 9 2 0 1 582 621 583 1718 1719 1601
+592 9 2 0 1 583 621 622 1719 1720 1721
+593 9 2 0 1 583 622 584 1721 1722 1604
+594 9 2 0 1 584 622 623 1722 1723 1724
+595 9 2 0 1 584 623 585 1724 1725 1607
+596 9 2 0 1 585 623 624 1725 1726 1727
+597 9 2 0 1 585 624 586 1727 1728 1610
+598 9 2 0 1 586 624 625 1728 1729 1730
+599 9 2 0 1 586 625 587 1730 1731 1613
+600 9 2 0 1 587 625 626 1731 1732 1733
+601 9 2 0 1 587 626 588 1733 1734 1616
+602 9 2 0 1 588 626 627 1734 1735 1736
+603 9 2 0 1 588 627 589 1736 1737 1619
+604 9 2 0 1 589 627 628 1737 1738 1739
+605 9 2 0 1 589 628 590 1739 1740 1622
+606 9 2 0 1 590 628 629 1740 1741 1742
+607 9 2 0 1 590 629 591 1742 1743 1625
+608 9 2 0 1 591 629 630 1743 1744 1745
+609 9 2 0 1 591 630 592 1745 1746 1628
+610 9 2 0 1 592 630 631 1746 1747 1748
+611 9 2 0 1 592 631 593 1748 1749 1631
+612 9 2 0 1 593 631 632 1749 1750 1751
+613 9 2 0 1 593 632 594 1751 1752 1634
+614 9 2 0 1 594 632 633 1752 1753 1754
+615 9 2 0 1 594 633 595 1754 1755 1637
+616 9 2 0 1 595 633 634 1755 1756 1757
+617 9 2 0 1 595 634 596 1757 1758 1640
+618 9 2 0 1 596 634 635 1758 1759 1760
+619 9 2 0 1 596 635 597 1760 1761 1643
+620 9 2 0 1 597 635 636 1761 1762 1763
+621 9 2 0 1 597 636 598 1763 1764 1646
+622 9 2 0 1 598 636 637 1764 1765 1766
+623 9 2 0 1 598 637 599 1766 1767 1649
+624 9 2 0 1 599 637 638 1767 1768 1769
+625 9 2 0 1 599 638 600 1769 1770 1652
+626 9 2 0 1 600 638 639 1770 1771 1772
+627 9 2 0 1 600 639 601 1772 1773 1655
+628 9 2 0 1 601 639 640 1773 1774 1775
+629 9 2 0 1 601 640 602 1775 1776 1658
+630 9 2 0 1 602 640 641 1776 1777 1778
+631 9 2 0 1 602 641 603 1778 1779 1661
+632 9 2 0 1 603 641 642 1779 1780 1781
+633 9 2 0 1 603 642 376 1781 1782 1664
+634 9 2 0 1 376 642 375 1782 1783 395
+635 9 2 0 1 327 326 604 346 1784 1666
+636 9 2 0 1 604 326 643 1784 1785 1786
+637 9 2 0 1 604 643 605 1786 1787 1669
+638 9 2 0 1 605 643 644 1787 1788 1789
+639 9 2 0 1 605 644 606 1789 1790 1672
+640 9 2 0 1 606 644 645 1790 1791 1792
+641 9 2 0 1 606 645 607 1792 1793 1675
+642 9 2 0 1 607 645 646 1793 1794 1795
+643 9 2 0 1 607 646 608 1795 1796 1678
+644 9 2 0 1 608 646 647 1796 1797 1798
+645 9 2 0 1 608 647 609 1798 1799 1681
+646 9 2 0 1 609 647 648 1799 1800 1801
+647 9 2 0 1 609 648 610 1801 1802 1684
+648 9 2 0 1 610 648 649 1802 1803 1804
+649 9 2 0 1 610 649 611 1804 1805 1687
+650 9 2 0 1 611 649 650 1805 1806 1807
+651 9 2 0 1 611 650 612 1807 1808 1690
+652 9 2 0 1 612 650 651 1808 1809 1810
+653 9 2 0 1 612 651 613 1810 1811 1693
+654 9 2 0 1 613 651 652 1811 1812 1813
+655 9 2 0 1 613 652 614 1813 1814 1696
+656 9 2 0 1 614 652 653 1814 1815 1816
+657 9 2 0 1 614 653 615 1816 1817 1699
+658 9 2 0 1 615 653 654 1817 1818 1819
+659 9 2 0 1 615 654 616 1819 1820 1702
+660 9 2 0 1 616 654 655 1820 1821 1822
+661 9 2 0 1 616 655 617 1822 1823 1705
+662 9 2 0 1 617 655 656 1823 1824 1825
+663 9 2 0 1 617 656 618 1825 1826 1708
+664 9 2 0 1 618 656 657 1826 1827 1828
+665 9 2 0 1 618 657 619 1828 1829 1711
+666 9 2 0 1 619 657 658 1829 1830 1831
+667 9 2 0 1 619 658 620 1831 1832 1714
+668 9 2 0 1 620 658 659 1832 1833 1834
+669 9 2 0 1 620 659 621 1834 1835 1717
+670 9 2 0 1 621 659 660 1835 1836 1837
+671 9 2 0 1 621 660 622 1837 1838 1720
+672 9 2 0 1 622 660 661 1838 1839 1840
+673 9 2 0 1 622 661 623 1840 1841 1723
+674 9 2 0 1 623 661 662 1841 1842 1843
+675 9 2 0 1 623 662 624 1843 1844 1726
+676 9 2 0 1 624 662 663 1844 1845 1846
+677 9 2 0 1 624 663 625 1846 1847 1729
+678 9 2 0 1 625 663 664 1847 1848 1849
+679 9 2 0 1 625 664 626 1849 1850 1732
+680 9 2 0 1 626 664 665 1850 1851 1852
+681 9 2 0 1 626 665 627 1852 1853 1735
+682 9 2 0 1 627 665 666 1853 1854 1855
+683 9 2 0 1 627 666 628 1855 1856 1738
+684 9 2 0 1 628 666 667 1856 1857 1858
+685 9 2 0 1 628 667 629 1858 1859 1741
+686 9 2 0 1 629 667 668 1859 1860 1861
+687 9 2 0 1 629 668 630 1861 1862 1744
+688 9 2 0 1 630 668 669 1862 1863 1864
+689 9 2 0 1 630 669 631 1864 1865 1747
+690 9 2 0 1 631 669 670 1865 1866 1867
+691 9 2 0 1 631 670 632 1867 1868 1750
+692 9 2 0 1 632 670 671 1868 1869 1870
+693 9 2 0 1 632 671 633 1870 1871 1753
+694 9 2 0 1 633 671 672 1871 1872 1873
+695 9 2 0 1 633 672 634 1873 1874 1756
+696 9 2 0 1 634 672 673 1874 1875 1876
+697 9 2 0 1 634 673 635 1876 1877 1759
+698 9 2 0 1 635 673 674 1877 1878 1879
+699 9 2 0 1 635 674 636 1879 1880 1762
+700 9 2 0 1 636 674 675 1880 1881 1882
+701 9 2 0 1 636 675 637 1882 1883 1765
+702 9 2 0 1 637 675 676 1883 1884 1885
+703 9 2 0 1 637 676 638 1885 1886 1768
+704 9 2 0 1 638 676 677 1886 1887 1888
+705 9 2 0 1 638 677 639 1888 1889 1771
+706 9 2 0 1 639 677 678 1889 1890 1891
+707 9 2 0 1 639 678 640 1891 1892 1774
+708 9 2 0 1 640 678 679 1892 1893 1894
+709 9 2 0 1 640 679 641 1894 1895 1777
+710 9 2 0 1 641 679 680 1895 1896 1897
+711 9 2 0 1 641 680 642 1897 1898 1780
+712 9 2 0 1 642 680 681 1898 1899 1900
+713 9 2 0 1 642 681 375 1900 1901 1783
+714 9 2 0 1 375 681 374 1901 1902 394
+715 9 2 0 1 326 325 643 345 1903 1785
+716 9 2 0 1 643 325 682 1903 1904 1905
+717 9 2 0 1 643 682 644 1905 1906 1788
+718 9 2 0 1 644 682 683 1906 1907 1908
+719 9 2 0 1 644 683 645 1908 1909 1791
+720 9 2 0 1 645 683 684 1909 1910 1911
+721 9 2 0 1 645 684 646 1911 1912 1794
+722 9 2 0 1 646 684 685 1912 1913 1914
+723 9 2 0 1 646 685 647 1914 1915 1797
+724 9 2 0 1 647 685 686 1915 1916 1917
+725 9 2 0 1 647 686 648 1917 1918 1800
+726 9 2 0 1 648 686 687 1918 1919 1920
+727 9 2 0 1 648 687 649 1920 1921 1803
+728 9 2 0 1 649 687 688 1921 1922 1923
+729 9 2 0 1 649 688 650 1923 1924 1806
+730 9 2 0 1 650 688 689 1924 1925 1926
+731 9 2 0 1 650 689 651 1926 1927 1809
+732 9 2 0 1 651 689 690 1927 1928 1929
+733 9 2 0 1 651 690 652 1929 1930 1812
+734 9 2 0 1 652 690 691 1930 1931 1932
+735 9 2 0 1 652 691 653 1932 1933 1815
+736 9 2 0 1 653 691 692 1933 1934 1935
+737 9 2 0 1 653 692 654 1935 1936 1818
+738 9 2 0 1 654 692 693 1936 1937 1938
+739 9 2 0 1 654 693 655 1938 1939 1821
+740 9 2 0 1 655 693 694 1939 1940 1941
+741 9 2 0 1 655 694 656 1941 1942 1824
+742 9 2 0 1 656 694 695 1942 1943 1944
+743 9 2 0 1 656 695 657 1944 1945 1827
+744 9 2 0 1 657 695 696 1945 1946 1947
+745 9 2 0 1 657 696 658 1947 1948 1830
+746 9 2 0 1 658 696 697 1948 1949 1950
+747 9 2 0 1 658 697 659 1950 1951 1833
+748 9 2 0 1 659 697 698 1951 1952 1953
+749 9 2 0 1 659 698 660 1953 1954 1836
+750 9 2 0 1 660 698 699 1954 1955 1956
+751 9 2 0 1 660 699 661 1956 1957 1839
+752 9 2 0 1 661 699 700 1957 1958 1959
+753 9 2 0 1 661 700 662 1959 1960 1842
+754 9 2 0 1 662 700 701 1960 1961 1962
+755 9 2 0 1 662 701 663 1962 1963 1845
+756 9 2 0 1 663 701 702 1963 1964 1965
+757 9 2 0 1 663 702 664 1965 1966 1848
+758 9 2 0 1 664 702 703 1966 1967 1968
+759 9 2 0 1 664 703 665 1968 1969 1851
+760 9 2 0 1 665 703 704 1969 1970 1971
+761 9 2 0 1 665 704 666 1971 1972 1854
+762 9 2 0 1 666 704 705 1972 1973 1974
+763 9 2 0 1 666 705 667 1974 1975 1857
+764 9 2 0 1 667 705 706 1975 1976 1977
+765 9 2 0 1 667 706 668 1977 1978 1860
+766 9 2 0 1 668 706 707 1978 1979 1980
+767 9 2 0 1 668 707 669 1980 1981 1863
+768 9 2 0 1 669 707 708 1981 1982 1983
+769 9 2 0 1 669 708 670 1983 1984 1866
+770 9 2 0 1 670 708 709 1984 1985 1986
+771 9 2 0 1 670 709 671 1986 1987 1869
+772 9 2 0 1 671 709 710 1987 1988 1989
+773 9 2 0 1 671 710 672 1989 1990 1872
+774 9 2 0 1 672 710 711 1990 1991 1992
+775 9 2 0 1 672 711 673 1992 1993 1875
+776 9 2 0 1 673 711 712 1993 1994 1995
+777 9 2 0 1 673 712 674 1995 1996 1878
+778 9 2 0 1 674 712 713 1996 1997 1998
+779 9 2 0 1 674 713 675 1998 1999 1881
+780 9 2 0 1 675 713 714 1999 2000 2001
+781 9 2 0 1 675 714 676 2001 2002 1884
+782 9 2 0 1 676 714 715 2002 2003 2004
+783 9 2 0 1 676 715 677 2004 2005 1887
+784 9 2 0 1 677 715 716 2005 2006 2007
+785 9 2 0 1 677 716 678 2007 2008 1890
+786 9 2 0 1 678 716 717 2008 2009 2010
+787 9 2 0 1 678 717 679 2010 2011 1893
+788 9 2 0 1 679 717 718 2011 2012 2013
+789 9 2 0 1 679 718 680 2013 2014 1896
+790 9 2 0 1 680 718 719 2014 2015 2016
+791 9 2 0 1 680 719 681 2016 2017 1899
+792 9 2 0 1 681 719 720 2017 2018 2019
+793 9 2 0 1 681 720 374 2019 2020 1902
+794 9 2 0 1 374 720 373 2020 2021 393
+795 9 2 0 1 325 324 682 344 2022 1904
+796 9 2 0 1 682 324 721 2022 2023 2024
+797 9 2 0 1 682 721 683 2024 2025 1907
+798 9 2 0 1 683 721 722 2025 2026 2027
+799 9 2 0 1 683 722 684 2027 2028 1910
+800 9 2 0 1 684 722 723 2028 2029 2030
+801 9 2 0 1 684 723 685 2030 2031 1913
+802 9 2 0 1 685 723 724 2031 2032 2033
+803 9 2 0 1 685 724 686 2033 2034 1916
+804 9 2 0 1 686 724 725 2034 2035 2036
+805 9 2 0 1 686 725 687 2036 2037 1919
+806 9 2 0 1 687 725 726 2037 2038 2039
+807 9 2 0 1 687 726 688 2039 2040 1922
+808 9 2 0 1 688 726 727 2040 2041 2042
+809 9 2 0 1 688 727 689 2042 2043 1925
+810 9 2 0 1 689 727 728 2043 2044 2045
+811 9 2 0 1 689 728 690 2045 2046 1928
+812 9 2 0 1 690 728 729 2046 2047 2048
+813 9 2 0 1 690 729 691 2048 2049 1931
+814 9 2 0 1 691 729 730 2049 2050 2051
+815 9 2 0 1 691 730 692 2051 2052 1934
+816 9 2 0 1 692 730 731 2052 2053 2054
+817 9 2 0 1 692 731 693 2054 2055 1937
+818 9 2 0 1 693 731 732 2055 2056 2057
+819 9 2 0 1 693 732 694 2057 2058 1940
+820 9 2 0 1 694 732 733 2058 2059 2060
+821 9 2 0 1 694 733 695 2060 2061 1943
+822 9 2 0 1 695 733 734 2061 2062 2063
+823 9 2 0 1 695 734 696 2063 2064 1946
+824 9 2 0 1 696 734 735 2064 2065 2066
+825 9 2 0 1 696 735 697 2066 2067 1949
+826 9 2 0 1 697 735 736 2067 2068 2069
+827 9 2 0 1 697 736 698 2069 2070 1952
+828 9 2 0 1 698 736 737 2070 2071 2072
+829 9 2 0 1 698 737 699 2072 2073 1955
+830 9 2 0 1 699 737 738 2073 2074 2075
+831 9 2 0 1 699 738 700 2075 2076 1958
+832 9 2 0 1 700 738 739 2076 2077 2078
+833 9 2 0 1 700 739 701 2078 2079 1961
+834 9 2 0 1 701 739 740 2079 2080 2081
+835 9 2 0 1 701 740 702 2081 2082 1964
+836 9 2 0 1 702 740 741 2082 2083 2084
+837 9 2 0 1 702 741 703 2084 2085 1967
+838 9 2 0 1 703 741 742 2085 2086 2087
+839 9 2 0 1 703 742 704 2087 2088 1970
+840 9 2 0 1 704 742 743 2088 2089 2090
+841 9 2 0 1 704 743 705 2090 2091 1973
+842 9 2 0 1 705 743 744 2091 2092 2093
+843 9 2 0 1 705 744 706 2093 2094 1976
+844 9 2 0 1 706 744 745 2094 2095 2096
+845 9 2 0 1 706 745 707 2096 2097 1979
+846 9 2 0 1 707 745 746 2097 2098 2099
+847 9 2 0 1 707 746 708 2099 2100 1982
+848 9 2 0 1 708 746 747 2100 2101 2102
+849 9 2 0 1 708 747 709 2102 2103 1985
+850 9 2 0 1 709 747 748 2103 2104 2105
+851 9 2 0 1 709 748 710 2105 2106 1988
+852 9 2 0 1 710 748 749 2106 2107 2108
+853 9 2 0 1 710 749 711 2108 2109 1991
+854 9 2 0 1 711 749 750 2109 2110 2111
+855 9 2 0 1 711 750 712 2111 2112 1994
+856 9 2 0 1 712 750 751 2112 2113 2114
+857 9 2 0 1 712 751 713 2114 2115 1997
+858 9 2 0 1 713 751 752 2115 2116 2117
+859 9 2 0 1 713 752 714 2117 2118 2000
+860 9 2 0 1 714 752 753 2118 2119 2120
+861 9 2 0 1 714 753 715 2120 2121 2003
+862 9 2 0 1 715 753 754 2121 2122 2123
+863 9 2 0 1 715 754 716 2123 2124 2006
+864 9 2 0 1 716 754 755 2124 2125 2126
+865 9 2 0 1 716 755 717 2126 2127 2009
+866 9 2 0 1 717 755 756 2127 2128 2129
+867 9 2 0 1 717 756 718 2129 2130 2012
+868 9 2 0 1 718 756 757 2130 2131 2132
+869 9 2 0 1 718 757 719 2132 2133 2015
+870 9 2 0 1 719 757 758 2133 2134 2135
+871 9 2 0 1 719 758 720 2135 2136 2018
+872 9 2 0 1 720 758 759 2136 2137 2138
+873 9 2 0 1 720 759 373 2138 2139 2021
+874 9 2 0 1 373 759 372 2139 2140 392
+875 9 2 0 1 324 323 721 343 2141 2023
+876 9 2 0 1 721 323 760 2141 2142 2143
+877 9 2 0 1 721 760 722 2143 2144 2026
+878 9 2 0 1 722 760 761 2144 2145 2146
+879 9 2 0 1 722 761 723 2146 2147 2029
+880 9 2 0 1 723 761 762 2147 2148 2149
+881 9 2 0 1 723 762 724 2149 2150 2032
+882 9 2 0 1 724 762 763 2150 2151 2152
+883 9 2 0 1 724 763 725 2152 2153 2035
+884 9 2 0 1 725 763 764 2153 2154 2155
+885 9 2 0 1 725 764 726 2155 2156 2038
+886 9 2 0 1 726 764 765 2156 2157 2158
+887 9 2 0 1 726 765 727 2158 2159 2041
+888 9 2 0 1 727 765 766 2159 2160 2161
+889 9 2 0 1 727 766 728 2161 2162 2044
+890 9 2 0 1 728 766 767 2162 2163 2164
+891 9 2 0 1 728 767 729 2164 2165 2047
+892 9 2 0 1 729 767 768 2165 2166 2167
+893 9 2 0 1 729 768 730 2167 2168 2050
+894 9 2 0 1 730 768 769 2168 2169 2170
+895 9 2 0 1 730 769 731 2170 2171 2053
+896 9 2 0 1 731 769 770 2171 2172 2173
+897 9 2 0 1 731 770 732 2173 2174 2056
+898 9 2 0 1 732 770 771 2174 2175 2176
+899 9 2 0 1 732 771 733 2176 2177 2059
+900 9 2 0 1 733 771 772 2177 2178 2179
+901 9 2 0 1 733 772 734 2179 2180 2062
+902 9 2 0 1 734 772 773 2180 2181 2182
+903 9 2 0 1 734 773 735 2182 2183 2065
+904 9 2 0 1 735 773 774 2183 2184 2185
+905 9 2 0 1 735 774 736 2185 2186 2068
+906 9 2 0 1 736 774 775 2186 2187 2188
+907 9 2 0 1 736 775 737 2188 2189 2071
+908 9 2 0 1 737 775 776 2189 2190 2191
+909 9 2 0 1 737 776 738 2191 2192 2074
+910 9 2 0 1 738 776 777 2192 2193 2194
+911 9 2 0 1 738 777 739 2194 2195 2077
+912 9 2 0 1 739 777 778 2195 2196 2197
+913 9 2 0 1 739 778 740 2197 2198 2080
+914 9 2 0 1 740 778 779 2198 2199 2200
+915 9 2 0 1 740 779 741 2200 2201 2083
+916 9 2 0 1 741 779 780 2201 2202 2203
+917 9 2 0 1 741 780 742 2203 2204 2086
+918 9 2 0 1 742 780 781 2204 2205 2206
+919 9 2 0 1 742 781 743 2206 2207 2089
+920 9 2 0 1 743 781 782 2207 2208 2209
+921 9 2 0 1 743 782 744 2209 2210 2092
+922 9 2 0 1 744 782 783 2210 2211 2212
+923 9 2 0 1 744 783 745 2212 2213 2095
+924 9 2 0 1 745 783 784 2213 2214 2215
+925 9 2 0 1 745 784 746 2215 2216 2098
+926 9 2 0 1 746 784 785 2216 2217 2218
+927 9 2 0 1 746 785 747 2218 2219 2101
+928 9 2 0 1 747 785 786 2219 2220 2221
+929 9 2 0 1 747 786 748 2221 2222 2104
+930 9 2 0 1 748 786 787 2222 2223 2224
+931 9 2 0 1 748 787 749 2224 2225 2107
+932 9 2 0 1 749 787 788 2225 2226 2227
+933 9 2 0 1 749 788 750 2227 2228 2110
+934 9 2 0 1 750 788 789 2228 2229 2230
+935 9 2 0 1 750 789 751 2230 2231 2113
+936 9 2 0 1 751 789 790 2231 2232 2233
+937 9 2 0 1 751 790 752 2233 2234 2116
+938 9 2 0 1 752 790 791 2234 2235 2236
+939 9 2 0 1 752 791 753 2236 2237 2119
+940 9 2 0 1 753 791 792 2237 2238 2239
+941 9 2 0 1 753 792 754 2239 2240 2122
+942 9 2 0 1 754 792 793 2240 2241 2242
+943 9 2 0 1 754 793 755 2242 2243 2125
+944 9 2 0 1 755 793 794 2243 2244 2245
+945 9 2 0 1 755 794 756 2245 2246 2128
+946 9 2 0 1 756 794 795 2246 2247 2248
+947 9 2 0 1 756 795 757 2248 2249 2131
+948 9 2 0 1 757 795 796 2249 2250 2251
+949 9 2 0 1 757 796 758 2251 2252 2134
+950 9 2 0 1 758 796 797 2252 2253 2254
+951 9 2 0 1 758 797 759 2254 2255 2137
+952 9 2 0 1 759 797 798 2255 2256 2257
+953 9 2 0 1 759 798 372 2257 2258 2140
+954 9 2 0 1 372 798 371 2258 2259 391
+955 9 2 0 1 323 322 760 342 2260 2142
+956 9 2 0 1 760 322 799 2260 2261 2262
+957 9 2 0 1 760 799 761 2262 2263 2145
+958 9 2 0 1 761 799 800 2263 2264 2265
+959 9 2 0 1 761 800 762 2265 2266 2148
+960 9 2 0 1 762 800 801 2266 2267 2268
+961 9 2 0 1 762 801 763 2268 2269 2151
+962 9 2 0 1 763 801 802 2269 2270 2271
+963 9 2 0 1 763 802 764 2271 2272 2154
+964 9 2 0 1 764 802 803 2272 2273 2274
+965 9 2 0 1 764 803 765 2274 2275 2157
+966 9 2 0 1 765 803 804 2275 2276 2277
+967 9 2 0 1 765 804 766 2277 2278 2160
+968 9 2 0 1 766 804 805 2278 2279 2280
+969 9 2 0 1 766 805 767 2280 2281 2163
+970 9 2 0 1 767 805 806 2281 2282 2283
+971 9 2 0 1 767 806 768 2283 2284 2166
+972 9 2 0 1 768 806 807 2284 2285 2286
+973 9 2 0 1 768 807 769 2286 2287 2169
+974 9 2 0 1 769 807 808 2287 2288 2289
+975 9 2 0 1 769 808 770 2289 2290 2172
+976 9 2 0 1 770 808 809 2290 2291 2292
+977 9 2 0 1 770 809 771 2292 2293 2175
+978 9 2 0 1 771 809 810 2293 2294 2295
+979 9 2 0 1 771 810 772 2295 2296 2178
+980 9 2 0 1 772 810 811 2296 2297 2298
+981 9 2 0 1 772 811 773 2298 2299 2181
+982 9 2 0 1 773 811 812 2299 2300 2301
+983 9 2 0 1 773 812 774 2301 2302 2184
+984 9 2 0 1 774 812 813 2302 2303 2304
+985 9 2 0 1 774 813 775 2304 2305 2187
+986 9 2 0 1 775 813 814 2305 2306 2307
+987 9 2 0 1 775 814 776 2307 2308 2190
+988 9 2 0 1 776 814 815 2308 2309 2310
+989 9 2 0 1 776 815 777 2310 2311 2193
+990 9 2 0 1 777 815 816 2311 2312 2313
+991 9 2 0 1 777 816 778 2313 2314 2196
+992 9 2 0 1 778 816 817 2314 2315 2316
+993 9 2 0 1 778 817 779 2316 2317 2199
+994 9 2 0 1 779 817 818 2317 2318 2319
+995 9 2 0 1 779 818 780 2319 2320 2202
+996 9 2 0 1 780 818 819 2320 2321 2322
+997 9 2 0 1 780 819 781 2322 2323 2205
+998 9 2 0 1 781 819 820 2323 2324 2325
+999 9 2 0 1 781 820 782 2325 2326 2208
+1000 9 2 0 1 782 820 821 2326 2327 2328
+1001 9 2 0 1 782 821 783 2328 2329 2211
+1002 9 2 0 1 783 821 822 2329 2330 2331
+1003 9 2 0 1 783 822 784 2331 2332 2214
+1004 9 2 0 1 784 822 823 2332 2333 2334
+1005 9 2 0 1 784 823 785 2334 2335 2217
+1006 9 2 0 1 785 823 824 2335 2336 2337
+1007 9 2 0 1 785 824 786 2337 2338 2220
+1008 9 2 0 1 786 824 825 2338 2339 2340
+1009 9 2 0 1 786 825 787 2340 2341 2223
+1010 9 2 0 1 787 825 826 2341 2342 2343
+1011 9 2 0 1 787 826 788 2343 2344 2226
+1012 9 2 0 1 788 826 827 2344 2345 2346
+1013 9 2 0 1 788 827 789 2346 2347 2229
+1014 9 2 0 1 789 827 828 2347 2348 2349
+1015 9 2 0 1 789 828 790 2349 2350 2232
+1016 9 2 0 1 790 828 829 2350 2351 2352
+1017 9 2 0 1 790 829 791 2352 2353 2235
+1018 9 2 0 1 791 829 830 2353 2354 2355
+1019 9 2 0 1 791 830 792 2355 2356 2238
+1020 9 2 0 1 792 830 831 2356 2357 2358
+1021 9 2 0 1 792 831 793 2358 2359 2241
+1022 9 2 0 1 793 831 832 2359 2360 2361
+1023 9 2 0 1 793 832 794 2361 2362 2244
+1024 9 2 0 1 794 832 833 2362 2363 2364
+1025 9 2 0 1 794 833 795 2364 2365 2247
+1026 9 2 0 1 795 833 834 2365 2366 2367
+1027 9 2 0 1 795 834 796 2367 2368 2250
+1028 9 2 0 1 796 834 835 2368 2369 2370
+1029 9 2 0 1 796 835 797 2370 2371 2253
+1030 9 2 0 1 797 835 836 2371 2372 2373
+1031 9 2 0 1 797 836 798 2373 2374 2256
+1032 9 2 0 1 798 836 837 2374 2375 2376
+1033 9 2 0 1 798 837 371 2376 2377 2259
+1034 9 2 0 1 371 837 370 2377 2378 390
+1035 9 2 0 1 322 321 799 341 2379 2261
+1036 9 2 0 1 799 321 838 2379 2380 2381
+1037 9 2 0 1 799 838 800 2381 2382 2264
+1038 9 2 0 1 800 838 839 2382 2383 2384
+1039 9 2 0 1 800 839 801 2384 2385 2267
+1040 9 2 0 1 801 839 840 2385 2386 2387
+1041 9 2 0 1 801 840 802 2387 2388 2270
+1042 9 2 0 1 802 840 841 2388 2389 2390
+1043 9 2 0 1 802 841 803 2390 2391 2273
+1044 9 2 0 1 803 841 842 2391 2392 2393
+1045 9 2 0 1 803 842 804 2393 2394 2276
+1046 9 2 0 1 804 842 843 2394 2395 2396
+1047 9 2 0 1 804 843 805 2396 2397 2279
+1048 9 2 0 1 805 843 844 2397 2398 2399
+1049 9 2 0 1 805 844 806 2399 2400 2282
+1050 9 2 0 1 806 844 845 2400 2401 2402
+1051 9 2 0 1 806 845 807 2402 2403 2285
+1052 9 2 0 1 807 845 846 2403 2404 2405
+1053 9 2 0 1 807 846 808 2405 2406 2288
+1054 9 2 0 1 808 846 847 2406 2407 2408
+1055 9 2 0 1 808 847 809 2408 2409 2291
+1056 9 2 0 1 809 847 848 2409 2410 2411
+1057 9 2 0 1 809 848 810 2411 2412 2294
+1058 9 2 0 1 810 848 849 2412 2413 2414
+1059 9 2 0 1 810 849 811 2414 2415 2297
+1060 9 2 0 1 811 849 850 2415 2416 2417
+1061 9 2 0 1 811 850 812 2417 2418 2300
+1062 9 2 0 1 812 850 851 2418 2419 2420
+1063 9 2 0 1 812 851 813 2420 2421 2303
+1064 9 2 0 1 813 851 852 2421 2422 2423
+1065 9 2 0 1 813 852 814 2423 2424 2306
+1066 9 2 0 1 814 852 853 2424 2425 2426
+1067 9 2 0 1 814 853 815 2426 2427 2309
+1068 9 2 0 1 815 853 854 2427 2428 2429
+1069 9 2 0 1 815 854 816 2429 2430 2312
+1070 9 2 0 1 816 854 855 2430 2431 2432
+1071 9 2 0 1 816 855 817 2432 2433 2315
+1072 9 2 0 1 817 855 856 2433 2434 2435
+1073 9 2 0 1 817 856 818 2435 2436 2318
+1074 9 2 0 1 818 856 857 2436 2437 2438
+1075 9 2 0 1 818 857 819 2438 2439 2321
+1076 9 2 0 1 819 857 858 2439 2440 2441
+1077 9 2 0 1 819 858 820 2441 2442 2324
+1078 9 2 0 1 820 858 859 2442 2443 2444
+1079 9 2 0 1 820 859 821 2444 2445 2327
+1080 9 2 0 1 821 859 860 2445 2446 2447
+1081 9 2 0 1 821 860 822 2447 2448 2330
+1082 9 2 0 1 822 860 861 2448 2449 2450
+1083 9 2 0 1 822 861 823 2450 2451 2333
+1084 9 2 0 1 823 861 862 2451 2452 2453
+1085 9 2 0 1 823 862 824 2453 2454 2336
+1086 9 2 0 1 824 862 863 2454 2455 2456
+1087 9 2 0 1 824 863 825 2456 2457 2339
+1088 9 2 0 1 825 863 864 2457 2458 2459
+1089 9 2 0 1 825 864 826 2459 2460 2342
+1090 9 2 0 1 826 864 865 2460 2461 2462
+1091 9 2 0 1 826 865 827 2462 2463 2345
+1092 9 2 0 1 827 865 866 2463 2464 2465
+1093 9 2 0 1 827 866 828 2465 2466 2348
+1094 9 2 0 1 828 866 867 2466 2467 2468
+1095 9 2 0 1 828 867 829 2468 2469 2351
+1096 9 2 0 1 829 867 868 2469 2470 2471
+1097 9 2 0 1 829 868 830 2471 2472 2354
+1098 9 2 0 1 830 868 869 2472 2473 2474
+1099 9 2 0 1 830 869 831 2474 2475 2357
+1100 9 2 0 1 831 869 870 2475 2476 2477
+1101 9 2 0 1 831 870 832 2477 2478 2360
+1102 9 2 0 1 832 870 871 2478 2479 2480
+1103 9 2 0 1 832 871 833 2480 2481 2363
+1104 9 2 0 1 833 871 872 2481 2482 2483
+1105 9 2 0 1 833 872 834 2483 2484 2366
+1106 9 2 0 1 834 872 873 2484 2485 2486
+1107 9 2 0 1 834 873 835 2486 2487 2369
+1108 9 2 0 1 835 873 874 2487 2488 2489
+1109 9 2 0 1 835 874 836 2489 2490 2372
+1110 9 2 0 1 836 874 875 2490 2491 2492
+1111 9 2 0 1 836 875 837 2492 2493 2375
+1112 9 2 0 1 837 875 876 2493 2494 2495
+1113 9 2 0 1 837 876 370 2495 2496 2378
+1114 9 2 0 1 370 876 369 2496 2497 389
+1115 9 2 0 1 321 320 838 340 2498 2380
+1116 9 2 0 1 838 320 877 2498 2499 2500
+1117 9 2 0 1 838 877 839 2500 2501 2383
+1118 9 2 0 1 839 877 878 2501 2502 2503
+1119 9 2 0 1 839 878 840 2503 2504 2386
+1120 9 2 0 1 840 878 879 2504 2505 2506
+1121 9 2 0 1 840 879 841 2506 2507 2389
+1122 9 2 0 1 841 879 880 2507 2508 2509
+1123 9 2 0 1 841 880 842 2509 2510 2392
+1124 9 2 0 1 842 880 881 2510 2511 2512
+1125 9 2 0 1 842 881 843 2512 2513 2395
+1126 9 2 0 1 843 881 882 2513 2514 2515
+1127 9 2 0 1 843 882 844 2515 2516 2398
+1128 9 2 0 1 844 882 883 2516 2517 2518
+1129 9 2 0 1 844 883 845 2518 2519 2401
+1130 9 2 0 1 845 883 884 2519 2520 2521
+1131 9 2 0 1 845 884 846 2521 2522 2404
+1132 9 2 0 1 846 884 885 2522 2523 2524
+1133 9 2 0 1 846 885 847 2524 2525 2407
+1134 9 2 0 1 847 885 886 2525 2526 2527
+1135 9 2 0 1 847 886 848 2527 2528 2410
+1136 9 2 0 1 848 886 887 2528 2529 2530
+1137 9 2 0 1 848 887 849 2530 2531 2413
+1138 9 2 0 1 849 887 888 2531 2532 2533
+1139 9 2 0 1 849 888 850 2533 2534 2416
+1140 9 2 0 1 850 888 889 2534 2535 2536
+1141 9 2 0 1 850 889 851 2536 2537 2419
+1142 9 2 0 1 851 889 890 2537 2538 2539
+1143 9 2 0 1 851 890 852 2539 2540 2422
+1144 9 2 0 1 852 890 891 2540 2541 2542
+1145 9 2 0 1 852 891 853 2542 2543 2425
+1146 9 2 0 1 853 891 892 2543 2544 2545
+1147 9 2 0 1 853 892 854 2545 2546 2428
+1148 9 2 0 1 854 892 893 2546 2547 2548
+1149 9 2 0 1 854 893 855 2548 2549 2431
+1150 9 2 0 1 855 893 894 2549 2550 2551
+1151 9 2 0 1 855 894 856 2551 2552 2434
+1152 9 2 0 1 856 894 895 2552 2553 2554
+1153 9 2 0 1 856 895 857 2554 2555 2437
+1154 9 2 0 1 857 895 896 2555 2556 2557
+1155 9 2 0 1 857 896 858 2557 2558 2440
+1156 9 2 0 1 858 896 897 2558 2559 2560
+1157 9 2 0 1 858 897 859 2560 2561 2443
+1158 9 2 0 1 859 897 898 2561 2562 2563
+1159 9 2 0 1 859 898 860 2563 2564 2446
+1160 9 2 0 1 860 898 899 2564 2565 2566
+1161 9 2 0 1 860 899 861 2566 2567 2449
+1162 9 2 0 1 861 899 900 2567 2568 2569
+1163 9 2 0 1 861 900 862 2569 2570 2452
+1164 9 2 0 1 862 900 901 2570 2571 2572
+1165 9 2 0 1 862 901 863 2572 2573 2455
+1166 9 2 0 1 863 901 902 2573 2574 2575
+1167 9 2 0 1 863 902 864 2575 2576 2458
+1168 9 2 0 1 864 902 903 2576 2577 2578
+1169 9 2 0 1 864 903 865 2578 2579 2461
+1170 9 2 0 1 865 903 904 2579 2580 2581
+1171 9 2 0 1 865 904 866 2581 2582 2464
+1172 9 2 0 1 866 904 905 2582 2583 2584
+1173 9 2 0 1 866 905 867 2584 2585 2467
+1174 9 2 0 1 867 905 906 2585 2586 2587
+1175 9 2 0 1 867 906 868 2587 2588 2470
+1176 9 2 0 1 868 906 907 2588 2589 2590
+1177 9 2 0 1 868 907 869 2590 2591 2473
+1178 9 2 0 1 869 907 908 2591 2592 2593
+1179 9 2 0 1 869 908 870 2593 2594 2476
+1180 9 2 0 1 870 908 909 2594 2595 2596
+1181 9 2 0 1 870 909 871 2596 2597 2479
+1182 9 2 0 1 871 909 910 2597 2598 2599
+1183 9 2 0 1 871 910 872 2599 2600 2482
+1184 9 2 0 1 872 910 911 2600 2601 2602
+1185 9 2 0 1 872 911 873 2602 2603 2485
+1186 9 2 0 1 873 911 912 2603 2604 2605
+1187 9 2 0 1 873 912 874 2605 2606 2488
+1188 9 2 0 1 874 912 913 2606 2607 2608
+1189 9 2 0 1 874 913 875 2608 2609 2491
+1190 9 2 0 1 875 913 914 2609 2610 2611
+1191 9 2 0 1 875 914 876 2611 2612 2494
+1192 9 2 0 1 876 914 915 2612 2613 2614
+1193 9 2 0 1 876 915 369 2614 2615 2497
+1194 9 2 0 1 369 915 368 2615 2616 388
+1195 9 2 0 1 320 319 877 339 2617 2499
+1196 9 2 0 1 877 319 916 2617 2618 2619
+1197 9 2 0 1 877 916 878 2619 2620 2502
+1198 9 2 0 1 878 916 917 2620 2621 2622
+1199 9 2 0 1 878 917 879 2622 2623 2505
+1200 9 2 0 1 879 917 918 2623 2624 2625
+1201 9 2 0 1 879 918 880 2625 2626 2508
+1202 9 2 0 1 880 918 919 2626 2627 2628
+1203 9 2 0 1 880 919 881 2628 2629 2511
+1204 9 2 0 1 881 919 920 2629 2630 2631
+1205 9 2 0 1 881 920 882 2631 2632 2514
+1206 9 2 0 1 882 920 921 2632 2633 2634
+1207 9 2 0 1 882 921 883 2634 2635 2517
+1208 9 2 0 1 883 921 922 2635 2636 2637
+1209 9 2 0 1 883 922 884 2637 2638 2520
+1210 9 2 0 1 884 922 923 2638 2639 2640
+1211 9 2 0 1 884 923 885 2640 2641 2523
+1212 9 2 0 1 885 923 924 2641 2642 2643
+1213 9 2 0 1 885 924 886 2643 2644 2526
+1214 9 2 0 1 886 924 925 2644 2645 2646
+1215 9 2 0 1 886 925 887 2646 2647 2529
+1216 9 2 0 1 887 925 926 2647 2648 2649
+1217 9 2 0 1 887 926 888 2649 2650 2532
+1218 9 2 0 1 888 926 927 2650 2651 2652
+1219 9 2 0 1 888 927 889 2652 2653 2535
+1220 9 2 0 1 889 927 928 2653 2654 2655
+1221 9 2 0 1 889 928 890 2655 2656 2538
+1222 9 2 0 1 890 928 929 2656 2657 2658
+1223 9 2 0 1 890 929 891 2658 2659 2541
+1224 9 2 0 1 891 929 930 2659 2660 2661
+1225 9 2 0 1 891 930 892 2661 2662 2544
+1226 9 2 0 1 892 930 931 2662 2663 2664
+1227 9 2 0 1 892 931 893 2664 2665 2547
+1228 9 2 0 1 893 931 932 2665 2666 2667
+1229 9 2 0 1 893 932 894 2667 2668 2550
+1230 9 2 0 1 894 932 933 2668 2669 2670
+1231 9 2 0 1 894 933 895 2670 2671 2553
+1232 9 2 0 1 895 933 934 2671 2672 2673
+1233 9 2 0 1 895 934 896 2673 2674 2556
+1234 9 2 0 1 896 934 935 2674 2675 2676
+1235 9 2 0 1 896 935 897 2676 2677 2559
+1236 9 2 0 1 897 935 936 2677 2678 2679
+1237 9 2 0 1 897 936 898 2679 2680 2562
+1238 9 2 0 1 898 936 937 2680 2681 2682
+1239 9 2 0 1 898 937 899 2682 2683 2565
+1240 9 2 0 1 899 937 938 2683 2684 2685
+1241 9 2 0 1 899 938 900 2685 2686 2568
+1242 9 2 0 1 900 938 939 2686 2687 2688
+1243 9 2 0 1 900 939 901 2688 2689 2571
+1244 9 2 0 1 901 939 940 2689 2690 2691
+1245 9 2 0 1 901 940 902 2691 2692 2574
+1246 9 2 0 1 902 940 941 2692 2693 2694
+1247 9 2 0 1 902 941 903 2694 2695 2577
+1248 9 2 0 1 903 941 942 2695 2696 2697
+1249 9 2 0 1 903 942 904 2697 2698 2580
+1250 9 2 0 1 904 942 943 2698 2699 2700
+1251 9 2 0 1 904 943 905 2700 2701 2583
+1252 9 2 0 1 905 943 944 2701 2702 2703
+1253 9 2 0 1 905 944 906 2703 2704 2586
+1254 9 2 0 1 906 944 945 2704 2705 2706
+1255 9 2 0 1 906 945 907 2706 2707 2589
+1256 9 2 0 1 907 945 946 2707 2708 2709
+1257 9 2 0 1 907 946 908 2709 2710 2592
+1258 9 2 0 1 908 946 947 2710 2711 2712
+1259 9 2 0 1 908 947 909 2712 2713 2595
+1260 9 2 0 1 909 947 948 2713 2714 2715
+1261 9 2 0 1 909 948 910 2715 2716 2598
+1262 9 2 0 1 910 948 949 2716 2717 2718
+1263 9 2 0 1 910 949 911 2718 2719 2601
+1264 9 2 0 1 911 949 950 2719 2720 2721
+1265 9 2 0 1 911 950 912 2721 2722 2604
+1266 9 2 0 1 912 950 951 2722 2723 2724
+1267 9 2 0 1 912 951 913 2724 2725 2607
+1268 9 2 0 1 913 951 952 2725 2726 2727
+1269 9 2 0 1 913 952 914 2727 2728 2610
+1270 9 2 0 1 914 952 953 2728 2729 2730
+1271 9 2 0 1 914 953 915 2730 2731 2613
+1272 9 2 0 1 915 953 954 2731 2732 2733
+1273 9 2 0 1 915 954 368 2733 2734 2616
+1274 9 2 0 1 368 954 367 2734 2735 387
+1275 9 2 0 1 319 318 916 338 2736 2618
+1276 9 2 0 1 916 318 955 2736 2737 2738
+1277 9 2 0 1 916 955 917 2738 2739 2621
+1278 9 2 0 1 917 955 956 2739 2740 2741
+1279 9 2 0 1 917 956 918 2741 2742 2624
+1280 9 2 0 1 918 956 957 2742 2743 2744
+1281 9 2 0 1 918 957 919 2744 2745 2627
+1282 9 2 0 1 919 957 958 2745 2746 2747
+1283 9 2 0 1 919 958 920 2747 2748 2630
+1284 9 2 0 1 920 958 959 2748 2749 2750
+1285 9 2 0 1 920 959 921 2750 2751 2633
+1286 9 2 0 1 921 959 960 2751 2752 2753
+1287 9 2 0 1 921 960 922 2753 2754 2636
+1288 9 2 0 1 922 960 961 2754 2755 2756
+1289 9 2 0 1 922 961 923 2756 2757 2639
+1290 9 2 0 1 923 961 962 2757 2758 2759
+1291 9 2 0 1 923 962 924 2759 2760 2642
+1292 9 2 0 1 924 962 963 2760 2761 2762
+1293 9 2 0 1 924 963 925 2762 2763 2645
+1294 9 2 0 1 925 963 964 2763 2764 2765
+1295 9 2 0 1 925 964 926 2765 2766 2648
+1296 9 2 0 1 926 964 965 2766 2767 2768
+1297 9 2 0 1 926 965 927 2768 2769 2651
+1298 9 2 0 1 927 965 966 2769 2770 2771
+1299 9 2 0 1 927 966 928 2771 2772 2654
+1300 9 2 0 1 928 966 967 2772 2773 2774
+1301 9 2 0 1 928 967 929 2774 2775 2657
+1302 9 2 0 1 929 967 968 2775 2776 2777
+1303 9 2 0 1 929 968 930 2777 2778 2660
+1304 9 2 0 1 930 968 969 2778 2779 2780
+1305 9 2 0 1 930 969 931 2780 2781 2663
+1306 9 2 0 1 931 969 970 2781 2782 2783
+1307 9 2 0 1 931 970 932 2783 2784 2666
+1308 9 2 0 1 932 970 971 2784 2785 2786
+1309 9 2 0 1 932 971 933 2786 2787 2669
+1310 9 2 0 1 933 971 972 2787 2788 2789
+1311 9 2 0 1 933 972 934 2789 2790 2672
+1312 9 2 0 1 934 972 973 2790 2791 2792
+1313 9 2 0 1 934 973 935 2792 2793 2675
+1314 9 2 0 1 935 973 974 2793 2794 2795
+1315 9 2 0 1 935 974 936 2795 2796 2678
+1316 9 2 0 1 936 974 975 2796 2797 2798
+1317 9 2 0 1 936 975 937 2798 2799 2681
+1318 9 2 0 1 937 975 976 2799 2800 2801
+1319 9 2 0 1 937 976 938 2801 2802 2684
+1320 9 2 0 1 938 976 977 2802 2803 2804
+1321 9 2 0 1 938 977 939 2804 2805 2687
+1322 9 2 0 1 939 977 978 2805 2806 2807
+1323 9 2 0 1 939 978 940 2807 2808 2690
+1324 9 2 0 1 940 978 979 2808 2809 2810
+1325 9 2 0 1 940 979 941 2810 2811 2693
+1326 9 2 0 1 941 979 980 2811 2812 2813
+1327 9 2 0 1 941 980 942 2813 2814 2696
+1328 9 2 0 1 942 980 981 2814 2815 2816
+1329 9 2 0 1 942 981 943 2816 2817 2699
+1330 9 2 0 1 943 981 982 2817 2818 2819
+1331 9 2 0 1 943 982 944 2819 2820 2702
+1332 9 2 0 1 944 982 983 2820 2821 2822
+1333 9 2 0 1 944 983 945 2822 2823 2705
+1334 9 2 0 1 945 983 984 2823 2824 2825
+1335 9 2 0 1 945 984 946 2825 2826 2708
+1336 9 2 0 1 946 984 985 2826 2827 2828
+1337 9 2 0 1 946 985 947 2828 2829 2711
+1338 9 2 0 1 947 985 986 2829 2830 2831
+1339 9 2 0 1 947 986 948 2831 2832 2714
+1340 9 2 0 1 948 986 987 2832 2833 2834
+1341 9 2 0 1 948 987 949 2834 2835 2717
+1342 9 2 0 1 949 987 988 2835 2836 2837
+1343 9 2 0 1 949 988 950 2837 2838 2720
+1344 9 2 0 1 950 988 989 2838 2839 2840
+1345 9 2 0 1 950 989 951 2840 2841 2723
+1346 9 2 0 1 951 989 990 2841 2842 2843
+1347 9 2 0 1 951 990 952 2843 2844 2726
+1348 9 2 0 1 952 990 991 2844 2845 2846
+1349 9 2 0 1 952 991 953 2846 2847 2729
+1350 9 2 0 1 953 991 992 2847 2848 2849
+1351 9 2 0 1 953 992 954 2849 2850 2732
+1352 9 2 0 1 954 992 993 2850 2851 2852
+1353 9 2 0 1 954 993 367 2852 2853 2735
+1354 9 2 0 1 367 993 366 2853 2854 386
+1355 9 2 0 1 318 317 955 337 2855 2737
+1356 9 2 0 1 955 317 994 2855 2856 2857
+1357 9 2 0 1 955 994 956 2857 2858 2740
+1358 9 2 0 1 956 994 995 2858 2859 2860
+1359 9 2 0 1 956 995 957 2860 2861 2743
+1360 9 2 0 1 957 995 996 2861 2862 2863
+1361 9 2 0 1 957 996 958 2863 2864 2746
+1362 9 2 0 1 958 996 997 2864 2865 2866
+1363 9 2 0 1 958 997 959 2866 2867 2749
+1364 9 2 0 1 959 997 998 2867 2868 2869
+1365 9 2 0 1 959 998 960 2869 2870 2752
+1366 9 2 0 1 960 998 999 2870 2871 2872
+1367 9 2 0 1 960 999 961 2872 2873 2755
+1368 9 2 0 1 961 999 1000 2873 2874 2875
+1369 9 2 0 1 961 1000 962 2875 2876 2758
+1370 9 2 0 1 962 1000 1001 2876 2877 2878
+1371 9 2 0 1 962 1001 963 2878 2879 2761
+1372 9 2 0 1 963 1001 1002 2879 2880 2881
+1373 9 2 0 1 963 1002 964 2881 2882 2764
+1374 9 2 0 1 964 1002 1003 2882 2883 2884
+1375 9 2 0 1 964 1003 965 2884 2885 2767
+1376 9 2 0 1 965 1003 1004 2885 2886 2887
+1377 9 2 0 1 965 1004 966 2887 2888 2770
+1378 9 2 0 1 966 1004 1005 2888 2889 2890
+1379 9 2 0 1 966 1005 967 2890 2891 2773
+1380 9 2 0 1 967 1005 1006 2891 2892 2893
+1381 9 2 0 1 967 1006 968 2893 2894 2776
+1382 9 2 0 1 968 1006 1007 2894 2895 2896
+1383 9 2 0 1 968 1007 969 2896 2897 2779
+1384 9 2 0 1 969 1007 1008 2897 2898 2899
+1385 9 2 0 1 969 1008 970 2899 2900 2782
+1386 9 2 0 1 970 1008 1009 2900 2901 2902
+1387 9 2 0 1 970 1009 971 2902 2903 2785
+1388 9 2 0 1 971 1009 1010 2903 2904 2905
+1389 9 2 0 1 971 1010 972 2905 2906 2788
+1390 9 2 0 1 972 1010 1011 2906 2907 2908
+1391 9 2 0 1 972 1011 973 2908 2909 2791
+1392 9 2 0 1 973 1011 1012 2909 2910 2911
+1393 9 2 0 1 973 1012 974 2911 2912 2794
+1394 9 2 0 1 974 1012 1013 2912 2913 2914
+1395 9 2 0 1 974 1013 975 2914 2915 2797
+1396 9 2 0 1 975 1013 1014 2915 2916 2917
+1397 9 2 0 1 975 1014 976 2917 2918 2800
+1398 9 2 0 1 976 1014 1015 2918 2919 2920
+1399 9 2 0 1 976 1015 977 2920 2921 2803
+1400 9 2 0 1 977 1015 1016 2921 2922 2923
+1401 9 2 0 1 977 1016 978 2923 2924 2806
+1402 9 2 0 1 978 1016 1017 2924 2925 2926
+1403 9 2 0 1 978 1017 979 2926 2927 2809
+1404 9 2 0 1 979 1017 1018 2927 2928 2929
+1405 9 2 0 1 979 1018 980 2929 2930 2812
+1406 9 2 0 1 980 1018 1019 2930 2931 2932
+1407 9 2 0 1 980 1019 981 2932 2933 2815
+1408 9 2 0 1 981 1019 1020 2933 2934 2935
+1409 9 2 0 1 981 1020 982 2935 2936 2818
+1410 9 2 0 1 982 1020 1021 2936 2937 2938
+1411 9 2 0 1 982 1021 983 2938 2939 2821
+1412 9 2 0 1 983 1021 1022 2939 2940 2941
+1413 9 2 0 1 983 1022 984 2941 2942 2824
+1414 9 2 0 1 984 1022 1023 2942 2943 2944
+1415 9 2 0 1 984 1023 985 2944 2945 2827
+1416 9 2 0 1 985 1023 1024 2945 2946 2947
+1417 9 2 0 1 985 1024 986 2947 2948 2830
+1418 9 2 0 1 986 1024 1025 2948 2949 2950
+1419 9 2 0 1 986 1025 987 2950 2951 2833
+1420 9 2 0 1 987 1025 1026 2951 2952 2953
+1421 9 2 0 1 987 1026 988 2953 2954 2836
+1422 9 2 0 1 988 1026 1027 2954 2955 2956
+1423 9 2 0 1 988 1027 989 2956 2957 2839
+1424 9 2 0 1 989 1027 1028 2957 2958 2959
+1425 9 2 0 1 989 1028 990 2959 2960 2842
+1426 9 2 0 1 990 1028 1029 2960 2961 2962
+1427 9 2 0 1 990 1029 991 2962 2963 2845
+1428 9 2 0 1 991 1029 1030 2963 2964 2965
+1429 9 2 0 1 991 1030 992 2965 2966 2848
+1430 9 2 0 1 992 1030 1031 2966 2967 2968
+1431 9 2 0 1 992 1031 993 2968 2969 2851
+1432 9 2 0 1 993 1031 1032 2969 2970 2971
+1433 9 2 0 1 993 1032 366 2971 2972 2854
+1434 9 2 0 1 366 1032 365 2972 2973 385
+1435 9 2 0 1 317 316 994 336 2974 2856
+1436 9 2 0 1 994 316 1033 2974 2975 2976
+1437 9 2 0 1 994 1033 995 2976 2977 2859
+1438 9 2 0 1 995 1033 1034 2977 2978 2979
+1439 9 2 0 1 995 1034 996 2979 2980 2862
+1440 9 2 0 1 996 1034 1035 2980 2981 2982
+1441 9 2 0 1 996 1035 997 2982 2983 2865
+1442 9 2 0 1 997 1035 1036 2983 2984 2985
+1443 9 2 0 1 997 1036 998 2985 2986 2868
+1444 9 2 0 1 998 1036 1037 2986 2987 2988
+1445 9 2 0 1 998 1037 999 2988 2989 2871
+1446 9 2 0 1 999 1037 1038 2989 2990 2991
+1447 9 2 0 1 999 1038 1000 2991 2992 2874
+1448 9 2 0 1 1000 1038 1039 2992 2993 2994
+1449 9 2 0 1 1000 1039 1001 2994 2995 2877
+1450 9 2 0 1 1001 1039 1040 2995 2996 2997
+1451 9 2 0 1 1001 1040 1002 2997 2998 2880
+1452 9 2 0 1 1002 1040 1041 2998 2999 3000
+1453 9 2 0 1 1002 1041 1003 3000 3001 2883
+1454 9 2 0 1 1003 1041 1042 3001 3002 3003
+1455 9 2 0 1 1003 1042 1004 3003 3004 2886
+1456 9 2 0 1 1004 1042 1043 3004 3005 3006
+1457 9 2 0 1 1004 1043 1005 3006 3007 2889
+1458 9 2 0 1 1005 1043 1044 3007 3008 3009
+1459 9 2 0 1 1005 1044 1006 3009 3010 2892
+1460 9 2 0 1 1006 1044 1045 3010 3011 3012
+1461 9 2 0 1 1006 1045 1007 3012 3013 2895
+1462 9 2 0 1 1007 1045 1046 3013 3014 3015
+1463 9 2 0 1 1007 1046 1008 3015 3016 2898
+1464 9 2 0 1 1008 1046 1047 3016 3017 3018
+1465 9 2 0 1 1008 1047 1009 3018 3019 2901
+1466 9 2 0 1 1009 1047 1048 3019 3020 3021
+1467 9 2 0 1 1009 1048 1010 3021 3022 2904
+1468 9 2 0 1 1010 1048 1049 3022 3023 3024
+1469 9 2 0 1 1010 1049 1011 3024 3025 2907
+1470 9 2 0 1 1011 1049 1050 3025 3026 3027
+1471 9 2 0 1 1011 1050 1012 3027 3028 2910
+1472 9 2 0 1 1012 1050 1051 3028 3029 3030
+1473 9 2 0 1 1012 1051 1013 3030 3031 2913
+1474 9 2 0 1 1013 1051 1052 3031 3032 3033
+1475 9 2 0 1 1013 1052 1014 3033 3034 2916
+1476 9 2 0 1 1014 1052 1053 3034 3035 3036
+1477 9 2 0 1 1014 1053 1015 3036 3037 2919
+1478 9 2 0 1 1015 1053 1054 3037 3038 3039
+1479 9 2 0 1 1015 1054 1016 3039 3040 2922
+1480 9 2 0 1 1016 1054 1055 3040 3041 3042
+1481 9 2 0 1 1016 1055 1017 3042 3043 2925
+1482 9 2 0 1 1017 1055 1056 3043 3044 3045
+1483 9 2 0 1 1017 1056 1018 3045 3046 2928
+1484 9 2 0 1 1018 1056 1057 3046 3047 3048
+1485 9 2 0 1 1018 1057 1019 3048 3049 2931
+1486 9 2 0 1 1019 1057 1058 3049 3050 3051
+1487 9 2 0 1 1019 1058 1020 3051 3052 2934
+1488 9 2 0 1 1020 1058 1059 3052 3053 3054
+1489 9 2 0 1 1020 1059 1021 3054 3055 2937
+1490 9 2 0 1 1021 1059 1060 3055 3056 3057
+1491 9 2 0 1 1021 1060 1022 3057 3058 2940
+1492 9 2 0 1 1022 1060 1061 3058 3059 3060
+1493 9 2 0 1 1022 1061 1023 3060 3061 2943
+1494 9 2 0 1 1023 1061 1062 3061 3062 3063
+1495 9 2 0 1 1023 1062 1024 3063 3064 2946
+1496 9 2 0 1 1024 1062 1063 3064 3065 3066
+1497 9 2 0 1 1024 1063 1025 3066 3067 2949
+1498 9 2 0 1 1025 1063 1064 3067 3068 3069
+1499 9 2 0 1 1025 1064 1026 3069 3070 2952
+1500 9 2 0 1 1026 1064 1065 3070 3071 3072
+1501 9 2 0 1 1026 1065 1027 3072 3073 2955
+1502 9 2 0 1 1027 1065 1066 3073 3074 3075
+1503 9 2 0 1 1027 1066 1028 3075 3076 2958
+1504 9 2 0 1 1028 1066 1067 3076 3077 3078
+1505 9 2 0 1 1028 1067 1029 3078 3079 2961
+1506 9 2 0 1 1029 1067 1068 3079 3080 3081
+1507 9 2 0 1 1029 1068 1030 3081 3082 2964
+1508 9 2 0 1 1030 1068 1069 3082 3083 3084
+1509 9 2 0 1 1030 1069 1031 3084 3085 2967
+1510 9 2 0 1 1031 1069 1070 3085 3086 3087
+1511 9 2 0 1 1031 1070 1032 3087 3088 2970
+1512 9 2 0 1 1032 1070 1071 3088 3089 3090
+1513 9 2 0 1 1032 1071 365 3090 3091 2973
+1514 9 2 0 1 365 1071 364 3091 3092 384
+1515 9 2 0 1 316 315 1033 335 3093 2975
+1516 9 2 0 1 1033 315 1072 3093 3094 3095
+1517 9 2 0 1 1033 1072 1034 3095 3096 2978
+1518 9 2 0 1 1034 1072 1073 3096 3097 3098
+1519 9 2 0 1 1034 1073 1035 3098 3099 2981
+1520 9 2 0 1 1035 1073 1074 3099 3100 3101
+1521 9 2 0 1 1035 1074 1036 3101 3102 2984
+1522 9 2 0 1 1036 1074 1075 3102 3103 3104
+1523 9 2 0 1 1036 1075 1037 3104 3105 2987
+1524 9 2 0 1 1037 1075 1076 3105 3106 3107
+1525 9 2 0 1 1037 1076 1038 3107 3108 2990
+1526 9 2 0 1 1038 1076 1077 3108 3109 3110
+1527 9 2 0 1 1038 1077 1039 3110 3111 2993
+1528 9 2 0 1 1039 1077 1078 3111 3112 3113
+1529 9 2 0 1 1039 1078 1040 3113 3114 2996
+1530 9 2 0 1 1040 1078 1079 3114 3115 3116
+1531 9 2 0 1 1040 1079 1041 3116 3117 2999
+1532 9 2 0 1 1041 1079 1080 3117 3118 3119
+1533 9 2 0 1 1041 1080 1042 3119 3120 3002
+1534 9 2 0 1 1042 1080 1081 3120 3121 3122
+1535 9 2 0 1 1042 1081 1043 3122 3123 3005
+1536 9 2 0 1 1043 1081 1082 3123 3124 3125
+1537 9 2 0 1 1043 1082 1044 3125 3126 3008
+1538 9 2 0 1 1044 1082 1083 3126 3127 3128
+1539 9 2 0 1 1044 1083 1045 3128 3129 3011
+1540 9 2 0 1 1045 1083 1084 3129 3130 3131
+1541 9 2 0 1 1045 1084 1046 3131 3132 3014
+1542 9 2 0 1 1046 1084 1085 3132 3133 3134
+1543 9 2 0 1 1046 1085 1047 3134 3135 3017
+1544 9 2 0 1 1047 1085 1086 3135 3136 3137
+1545 9 2 0 1 1047 1086 1048 3137 3138 3020
+1546 9 2 0 1 1048 1086 1087 3138 3139 3140
+1547 9 2 0 1 1048 1087 1049 3140 3141 3023
+1548 9 2 0 1 1049 1087 1088 3141 3142 3143
+1549 9 2 0 1 1049 1088 1050 3143 3144 3026
+1550 9 2 0 1 1050 1088 1089 3144 3145 3146
+1551 9 2 0 1 1050 1089 1051 3146 3147 3029
+1552 9 2 0 1 1051 1089 1090 3147 3148 3149
+1553 9 2 0 1 1051 1090 1052 3149 3150 3032
+1554 9 2 0 1 1052 1090 1091 3150 3151 3152
+1555 9 2 0 1 1052 1091 1053 3152 3153 3035
+1556 9 2 0 1 1053 1091 1092 3153 3154 3155
+1557 9 2 0 1 1053 1092 1054 3155 3156 3038
+1558 9 2 0 1 1054 1092 1093 3156 3157 3158
+1559 9 2 0 1 1054 1093 1055 3158 3159 3041
+1560 9 2 0 1 1055 1093 1094 3159 3160 3161
+1561 9 2 0 1 1055 1094 1056 3161 3162 3044
+1562 9 2 0 1 1056 1094 1095 3162 3163 3164
+1563 9 2 0 1 1056 1095 1057 3164 3165 3047
+1564 9 2 0 1 1057 1095 1096 3165 3166 3167
+1565 9 2 0 1 1057 1096 1058 3167 3168 3050
+1566 9 2 0 1 1058 1096 1097 3168 3169 3170
+1567 9 2 0 1 1058 1097 1059 3170 3171 3053
+1568 9 2 0 1 1059 1097 1098 3171 3172 3173
+1569 9 2 0 1 1059 1098 1060 3173 3174 3056
+1570 9 2 0 1 1060 1098 1099 3174 3175 3176
+1571 9 2 0 1 1060 1099 1061 3176 3177 3059
+1572 9 2 0 1 1061 1099 1100 3177 3178 3179
+1573 9 2 0 1 1061 1100 1062 3179 3180 3062
+1574 9 2 0 1 1062 1100 1101 3180 3181 3182
+1575 9 2 0 1 1062 1101 1063 3182 3183 3065
+1576 9 2 0 1 1063 1101 1102 3183 3184 3185
+1577 9 2 0 1 1063 1102 1064 3185 3186 3068
+1578 9 2 0 1 1064 1102 1103 3186 3187 3188
+1579 9 2 0 1 1064 1103 1065 3188 3189 3071
+1580 9 2 0 1 1065 1103 1104 3189 3190 3191
+1581 9 2 0 1 1065 1104 1066 3191 3192 3074
+1582 9 2 0 1 1066 1104 1105 3192 3193 3194
+1583 9 2 0 1 1066 1105 1067 3194 3195 3077
+1584 9 2 0 1 1067 1105 1106 3195 3196 3197
+1585 9 2 0 1 1067 1106 1068 3197 3198 3080
+1586 9 2 0 1 1068 1106 1107 3198 3199 3200
+1587 9 2 0 1 1068 1107 1069 3200 3201 3083
+1588 9 2 0 1 1069 1107 1108 3201 3202 3203
+1589 9 2 0 1 1069 1108 1070 3203 3204 3086
+1590 9 2 0 1 1070 1108 1109 3204 3205 3206
+1591 9 2 0 1 1070 1109 1071 3206 3207 3089
+1592 9 2 0 1 1071 1109 1110 3207 3208 3209
+1593 9 2 0 1 1071 1110 364 3209 3210 3092
+1594 9 2 0 1 364 1110 363 3210 3211 383
+1595 9 2 0 1 315 314 1072 334 3212 3094
+1596 9 2 0 1 1072 314 1111 3212 3213 3214
+1597 9 2 0 1 1072 1111 1073 3214 3215 3097
+1598 9 2 0 1 1073 1111 1112 3215 3216 3217
+1599 9 2 0 1 1073 1112 1074 3217 3218 3100
+1600 9 2 0 1 1074 1112 1113 3218 3219 3220
+1601 9 2 0 1 1074 1113 1075 3220 3221 3103
+1602 9 2 0 1 1075 1113 1114 3221 3222 3223
+1603 9 2 0 1 1075 1114 1076 3223 3224 3106
+1604 9 2 0 1 1076 1114 1115 3224 3225 3226
+1605 9 2 0 1 1076 1115 1077 3226 3227 3109
+1606 9 2 0 1 1077 1115 1116 3227 3228 3229
+1607 9 2 0 1 1077 1116 1078 3229 3230 3112
+1608 9 2 0 1 1078 1116 1117 3230 3231 3232
+1609 9 2 0 1 1078 1117 1079 3232 3233 3115
+1610 9 2 0 1 1079 1117 1118 3233 3234 3235
+1611 9 2 0 1 1079 1118 1080 3235 3236 3118
+1612 9 2 0 1 1080 1118 1119 3236 3237 3238
+1613 9 2 0 1 1080 1119 1081 3238 3239 3121
+1614 9 2 0 1 1081 1119 1120 3239 3240 3241
+1615 9 2 0 1 1081 1120 1082 3241 3242 3124
+1616 9 2 0 1 1082 1120 1121 3242 3243 3244
+1617 9 2 0 1 1082 1121 1083 3244 3245 3127
+1618 9 2 0 1 1083 1121 1122 3245 3246 3247
+1619 9 2 0 1 1083 1122 1084 3247 3248 3130
+1620 9 2 0 1 1084 1122 1123 3248 3249 3250
+1621 9 2 0 1 1084 1123 1085 3250 3251 3133
+1622 9 2 0 1 1085 1123 1124 3251 3252 3253
+1623 9 2 0 1 1085 1124 1086 3253 3254 3136
+1624 9 2 0 1 1086 1124 1125 3254 3255 3256
+1625 9 2 0 1 1086 1125 1087 3256 3257 3139
+1626 9 2 0 1 1087 1125 1126 3257 3258 3259
+1627 9 2 0 1 1087 1126 1088 3259 3260 3142
+1628 9 2 0 1 1088 1126 1127 3260 3261 3262
+1629 9 2 0 1 1088 1127 1089 3262 3263 3145
+1630 9 2 0 1 1089 1127 1128 3263 3264 3265
+1631 9 2 0 1 1089 1128 1090 3265 3266 3148
+1632 9 2 0 1 1090 1128 1129 3266 3267 3268
+1633 9 2 0 1 1090 1129 1091 3268 3269 3151
+1634 9 2 0 1 1091 1129 1130 3269 3270 3271
+1635 9 2 0 1 1091 1130 1092 3271 3272 3154
+1636 9 2 0 1 1092 1130 1131 3272 3273 3274
+1637 9 2 0 1 1092 1131 1093 3274 3275 3157
+1638 9 2 0 1 1093 1131 1132 3275 3276 3277
+1639 9 2 0 1 1093 1132 1094 3277 3278 3160
+1640 9 2 0 1 1094 1132 1133 3278 3279 3280
+1641 9 2 0 1 1094 1133 1095 3280 3281 3163
+1642 9 2 0 1 1095 1133 1134 3281 3282 3283
+1643 9 2 0 1 1095 1134 1096 3283 3284 3166
+1644 9 2 0 1 1096 1134 1135 3284 3285 3286
+1645 9 2 0 1 1096 1135 1097 3286 3287 3169
+1646 9 2 0 1 1097 1135 1136 3287 3288 3289
+1647 9 2 0 1 1097 1136 1098 3289 3290 3172
+1648 9 2 0 1 1098 1136 1137 3290 3291 3292
+1649 9 2 0 1 1098 1137 1099 3292 3293 3175
+1650 9 2 0 1 1099 1137 1138 3293 3294 3295
+1651 9 2 0 1 1099 1138 1100 3295 3296 3178
+1652 9 2 0 1 1100 1138 1139 3296 3297 3298
+1653 9 2 0 1 1100 1139 1101 3298 3299 3181
+1654 9 2 0 1 1101 1139 1140 3299 3300 3301
+1655 9 2 0 1 1101 1140 1102 3301 3302 3184
+1656 9 2 0 1 1102 1140 1141 3302 3303 3304
+1657 9 2 0 1 1102 1141 1103 3304 3305 3187
+1658 9 2 0 1 1103 1141 1142 3305 3306 3307
+1659 9 2 0 1 1103 1142 1104 3307 3308 3190
+1660 9 2 0 1 1104 1142 1143 3308 3309 3310
+1661 9 2 0 1 1104 1143 1105 3310 3311 3193
+1662 9 2 0 1 1105 1143 1144 3311 3312 3313
+1663 9 2 0 1 1105 1144 1106 3313 3314 3196
+1664 9 2 0 1 1106 1144 1145 3314 3315 3316
+1665 9 2 0 1 1106 1145 1107 3316 3317 3199
+1666 9 2 0 1 1107 1145 1146 3317 3318 3319
+1667 9 2 0 1 1107 1146 1108 3319 3320 3202
+1668 9 2 0 1 1108 1146 1147 3320 3321 3322
+1669 9 2 0 1 1108 1147 1109 3322 3323 3205
+1670 9 2 0 1 1109 1147 1148 3323 3324 3325
+1671 9 2 0 1 1109 1148 1110 3325 3326 3208
+1672 9 2 0 1 1110 1148 1149 3326 3327 3328
+1673 9 2 0 1 1110 1149 363 3328 3329 3211
+1674 9 2 0 1 363 1149 362 3329 3330 382
+1675 9 2 0 1 314 313 1111 333 3331 3213
+1676 9 2 0 1 1111 313 1150 3331 3332 3333
+1677 9 2 0 1 1111 1150 1112 3333 3334 3216
+1678 9 2 0 1 1112 1150 1151 3334 3335 3336
+1679 9 2 0 1 1112 1151 1113 3336 3337 3219
+1680 9 2 0 1 1113 1151 1152 3337 3338 3339
+1681 9 2 0 1 1113 1152 1114 3339 3340 3222
+1682 9 2 0 1 1114 1152 1153 3340 3341 3342
+1683 9 2 0 1 1114 1153 1115 3342 3343 3225
+1684 9 2 0 1 1115 1153 1154 3343 3344 3345
+1685 9 2 0 1 1115 1154 1116 3345 3346 3228
+1686 9 2 0 1 1116 1154 1155 3346 3347 3348
+1687 9 2 0 1 1116 1155 1117 3348 3349 3231
+1688 9 2 0 1 1117 1155 1156 3349 3350 3351
+1689 9 2 0 1 1117 1156 1118 3351 3352 3234
+1690 9 2 0 1 1118 1156 1157 3352 3353 3354
+1691 9 2 0 1 1118 1157 1119 3354 3355 3237
+1692 9 2 0 1 1119 1157 1158 3355 3356 3357
+1693 9 2 0 1 1119 1158 1120 3357 3358 3240
+1694 9 2 0 1 1120 1158 1159 3358 3359 3360
+1695 9 2 0 1 1120 1159 1121 3360 3361 3243
+1696 9 2 0 1 1121 1159 1160 3361 3362 3363
+1697 9 2 0 1 1121 1160 1122 3363 3364 3246
+1698 9 2 0 1 1122 1160 1161 3364 3365 3366
+1699 9 2 0 1 1122 1161 1123 3366 3367 3249
+1700 9 2 0 1 1123 1161 1162 3367 3368 3369
+1701 9 2 0 1 1123 1162 1124 3369 3370 3252
+1702 9 2 0 1 1124 1162 1163 3370 3371 3372
+1703 9 2 0 1 1124 1163 1125 3372 3373 3255
+1704 9 2 0 1 1125 1163 1164 3373 3374 3375
+1705 9 2 0 1 1125 1164 1126 3375 3376 3258
+1706 9 2 0 1 1126 1164 1165 3376 3377 3378
+1707 9 2 0 1 1126 1165 1127 3378 3379 3261
+1708 9 2 0 1 1127 1165 1166 3379 3380 3381
+1709 9 2 0 1 1127 1166 1128 3381 3382 3264
+1710 9 2 0 1 1128 1166 1167 3382 3383 3384
+1711 9 2 0 1 1128 1167 1129 3384 3385 3267
+1712 9 2 0 1 1129 1167 1168 3385 3386 3387
+1713 9 2 0 1 1129 1168 1130 3387 3388 3270
+1714 9 2 0 1 1130 1168 1169 3388 3389 3390
+1715 9 2 0 1 1130 1169 1131 3390 3391 3273
+1716 9 2 0 1 1131 1169 1170 3391 3392 3393
+1717 9 2 0 1 1131 1170 1132 3393 3394 3276
+1718 9 2 0 1 1132 1170 1171 3394 3395 3396
+1719 9 2 0 1 1132 1171 1133 3396 3397 3279
+1720 9 2 0 1 1133 1171 1172 3397 3398 3399
+1721 9 2 0 1 1133 1172 1134 3399 3400 3282
+1722 9 2 0 1 1134 1172 1173 3400 3401 3402
+1723 9 2 0 1 1134 1173 1135 3402 3403 3285
+1724 9 2 0 1 1135 1173 1174 3403 3404 3405
+1725 9 2 0 1 1135 1174 1136 3405 3406 3288
+1726 9 2 0 1 1136 1174 1175 3406 3407 3408
+1727 9 2 0 1 1136 1175 1137 3408 3409 3291
+1728 9 2 0 1 1137 1175 1176 3409 3410 3411
+1729 9 2 0 1 1137 1176 1138 3411 3412 3294
+1730 9 2 0 1 1138 1176 1177 3412 3413 3414
+1731 9 2 0 1 1138 1177 1139 3414 3415 3297
+1732 9 2 0 1 1139 1177 1178 3415 3416 3417
+1733 9 2 0 1 1139 1178 1140 3417 3418 3300
+1734 9 2 0 1 1140 1178 1179 3418 3419 3420
+1735 9 2 0 1 1140 1179 1141 3420 3421 3303
+1736 9 2 0 1 1141 1179 1180 3421 3422 3423
+1737 9 2 0 1 1141 1180 1142 3423 3424 3306
+1738 9 2 0 1 1142 1180 1181 3424 3425 3426
+1739 9 2 0 1 1142 1181 1143 3426 3427 3309
+1740 9 2 0 1 1143 1181 1182 3427 3428 3429
+1741 9 2 0 1 1143 1182 1144 3429 3430 3312
+1742 9 2 0 1 1144 1182 1183 3430 3431 3432
+1743 9 2 0 1 1144 1183 1145 3432 3433 3315
+1744 9 2 0 1 1145 1183 1184 3433 3434 3435
+1745 9 2 0 1 1145 1184 1146 3435 3436 3318
+1746 9 2 0 1 1146 1184 1185 3436 3437 3438
+1747 9 2 0 1 1146 1185 1147 3438 3439 3321
+1748 9 2 0 1 1147 1185 1186 3439 3440 3441
+1749 9 2 0 1 1147 1186 1148 3441 3442 3324
+1750 9 2 0 1 1148 1186 1187 3442 3443 3444
+1751 9 2 0 1 1148 1187 1149 3444 3445 3327
+1752 9 2 0 1 1149 1187 1188 3445 3446 3447
+1753 9 2 0 1 1149 1188 362 3447 3448 3330
+1754 9 2 0 1 362 1188 361 3448 3449 381
+1755 9 2 0 1 313 8 1150 332 3450 3332
+1756 9 2 0 1 1150 8 108 3450 147 3451
+1757 9 2 0 1 1150 108 1151 3451 3452 3335
+1758 9 2 0 1 1151 108 109 3452 148 3453
+1759 9 2 0 1 1151 109 1152 3453 3454 3338
+1760 9 2 0 1 1152 109 110 3454 149 3455
+1761 9 2 0 1 1152 110 1153 3455 3456 3341
+1762 9 2 0 1 1153 110 111 3456 150 3457
+1763 9 2 0 1 1153 111 1154 3457 3458 3344
+1764 9 2 0 1 1154 111 112 3458 151 3459
+1765 9 2 0 1 1154 112 1155 3459 3460 3347
+1766 9 2 0 1 1155 112 113 3460 152 3461
+1767 9 2 0 1 1155 113 1156 3461 3462 3350
+1768 9 2 0 1 1156 113 114 3462 153 3463
+1769 9 2 0 1 1156 114 1157 3463 3464 3353
+1770 9 2 0 1 1157 114 115 3464 154 3465
+1771 9 2 0 1 1157 115 1158 3465 3466 3356
+1772 9 2 0 1 1158 115 116 3466 155 3467
+1773 9 2 0 1 1158 116 1159 3467 3468 3359
+1774 9 2 0 1 1159 116 117 3468 156 3469
+1775 9 2 0 1 1159 117 1160 3469 3470 3362
+1776 9 2 0 1 1160 117 118 3470 157 3471
+1777 9 2 0 1 1160 118 1161 3471 3472 3365
+1778 9 2 0 1 1161 118 119 3472 158 3473
+1779 9 2 0 1 1161 119 1162 3473 3474 3368
+1780 9 2 0 1 1162 119 120 3474 159 3475
+1781 9 2 0 1 1162 120 1163 3475 3476 3371
+1782 9 2 0 1 1163 120 121 3476 160 3477
+1783 9 2 0 1 1163 121 1164 3477 3478 3374
+1784 9 2 0 1 1164 121 122 3478 161 3479
+1785 9 2 0 1 1164 122 1165 3479 3480 3377
+1786 9 2 0 1 1165 122 123 3480 162 3481
+1787 9 2 0 1 1165 123 1166 3481 3482 3380
+1788 9 2 0 1 1166 123 124 3482 163 3483
+1789 9 2 0 1 1166 124 1167 3483 3484 3383
+1790 9 2 0 1 1167 124 125 3484 164 3485
+1791 9 2 0 1 1167 125 1168 3485 3486 3386
+1792 9 2 0 1 1168 125 126 3486 165 3487
+1793 9 2 0 1 1168 126 1169 3487 3488 3389
+1794 9 2 0 1 1169 126 127 3488 166 3489
+1795 9 2 0 1 1169 127 1170 3489 3490 3392
+1796 9 2 0 1 1170 127 128 3490 167 3491
+1797 9 2 0 1 1170 128 1171 3491 3492 3395
+1798 9 2 0 1 1171 128 129 3492 168 3493
+1799 9 2 0 1 1171 129 1172 3493 3494 3398
+1800 9 2 0 1 1172 129 130 3494 169 3495
+1801 9 2 0 1 1172 130 1173 3495 3496 3401
+1802 9 2 0 1 1173 130 131 3496 170 3497
+1803 9 2 0 1 1173 131 1174 3497 3498 3404
+1804 9 2 0 1 1174 131 132 3498 171 3499
+1805 9 2 0 1 1174 132 1175 3499 3500 3407
+1806 9 2 0 1 1175 132 133 3500 172 3501
+1807 9 2 0 1 1175 133 1176 3501 3502 3410
+1808 9 2 0 1 1176 133 134 3502 173 3503
+1809 9 2 0 1 1176 134 1177 3503 3504 3413
+1810 9 2 0 1 1177 134 135 3504 174 3505
+1811 9 2 0 1 1177 135 1178 3505 3506 3416
+1812 9 2 0 1 1178 135 136 3506 175 3507
+1813 9 2 0 1 1178 136 1179 3507 3508 3419
+1814 9 2 0 1 1179 136 137 3508 176 3509
+1815 9 2 0 1 1179 137 1180 3509 3510 3422
+1816 9 2 0 1 1180 137 138 3510 177 3511
+1817 9 2 0 1 1180 138 1181 3511 3512 3425
+1818 9 2 0 1 1181 138 139 3512 178 3513
+1819 9 2 0 1 1181 139 1182 3513 3514 3428
+1820 9 2 0 1 1182 139 140 3514 179 3515
+1821 9 2 0 1 1182 140 1183 3515 3516 3431
+1822 9 2 0 1 1183 140 141 3516 180 3517
+1823 9 2 0 1 1183 141 1184 3517 3518 3434
+1824 9 2 0 1 1184 141 142 3518 181 3519
+1825 9 2 0 1 1184 142 1185 3519 3520 3437
+1826 9 2 0 1 1185 142 143 3520 182 3521
+1827 9 2 0 1 1185 143 1186 3521 3522 3440
+1828 9 2 0 1 1186 143 144 3522 183 3523
+1829 9 2 0 1 1186 144 1187 3523 3524 3443
+1830 9 2 0 1 1187 144 145 3524 184 3525
+1831 9 2 0 1 1187 145 1188 3525 3526 3446
+1832 9 2 0 1 1188 145 146 3526 185 3527
+1833 9 2 0 1 1188 146 361 3527 3528 3449
+1834 9 2 0 1 361 146 9 3528 186 380
+1835 9 2 0 2 2 379 89 399 3700 98
+1836 9 2 0 2 89 379 3529 3700 3701 3702
+1837 9 2 0 2 89 3529 90 3702 3703 99
+1838 9 2 0 2 90 3529 3530 3703 3704 3705
+1839 9 2 0 2 90 3530 91 3705 3706 100
+1840 9 2 0 2 91 3530 3531 3706 3707 3708
+1841 9 2 0 2 91 3531 92 3708 3709 101
+1842 9 2 0 2 92 3531 3532 3709 3710 3711
+1843 9 2 0 2 92 3532 93 3711 3712 102
+1844 9 2 0 2 93 3532 3533 3712 3713 3714
+1845 9 2 0 2 93 3533 94 3714 3715 103
+1846 9 2 0 2 94 3533 3534 3715 3716 3717
+1847 9 2 0 2 94 3534 95 3717 3718 104
+1848 9 2 0 2 95 3534 3535 3718 3719 3720
+1849 9 2 0 2 95 3535 96 3720 3721 105
+1850 9 2 0 2 96 3535 3536 3721 3722 3723
+1851 9 2 0 2 96 3536 97 3723 3724 106
+1852 9 2 0 2 97 3536 3537 3724 3725 3726
+1853 9 2 0 2 97 3537 3 3726 3727 107
+1854 9 2 0 2 3 3537 427 3727 3728 447
+1855 9 2 0 2 379 378 3529 398 3729 3701
+1856 9 2 0 2 3529 378 3538 3729 3730 3731
+1857 9 2 0 2 3529 3538 3530 3731 3732 3704
+1858 9 2 0 2 3530 3538 3539 3732 3733 3734
+1859 9 2 0 2 3530 3539 3531 3734 3735 3707
+1860 9 2 0 2 3531 3539 3540 3735 3736 3737
+1861 9 2 0 2 3531 3540 3532 3737 3738 3710
+1862 9 2 0 2 3532 3540 3541 3738 3739 3740
+1863 9 2 0 2 3532 3541 3533 3740 3741 3713
+1864 9 2 0 2 3533 3541 3542 3741 3742 3743
+1865 9 2 0 2 3533 3542 3534 3743 3744 3716
+1866 9 2 0 2 3534 3542 3543 3744 3745 3746
+1867 9 2 0 2 3534 3543 3535 3746 3747 3719
+1868 9 2 0 2 3535 3543 3544 3747 3748 3749
+1869 9 2 0 2 3535 3544 3536 3749 3750 3722
+1870 9 2 0 2 3536 3544 3545 3750 3751 3752
+1871 9 2 0 2 3536 3545 3537 3752 3753 3725
+1872 9 2 0 2 3537 3545 3546 3753 3754 3755
+1873 9 2 0 2 3537 3546 427 3755 3756 3728
+1874 9 2 0 2 427 3546 426 3756 3757 446
+1875 9 2 0 2 378 377 3538 397 3758 3730
+1876 9 2 0 2 3538 377 3547 3758 3759 3760
+1877 9 2 0 2 3538 3547 3539 3760 3761 3733
+1878 9 2 0 2 3539 3547 3548 3761 3762 3763
+1879 9 2 0 2 3539 3548 3540 3763 3764 3736
+1880 9 2 0 2 3540 3548 3549 3764 3765 3766
+1881 9 2 0 2 3540 3549 3541 3766 3767 3739
+1882 9 2 0 2 3541 3549 3550 3767 3768 3769
+1883 9 2 0 2 3541 3550 3542 3769 3770 3742
+1884 9 2 0 2 3542 3550 3551 3770 3771 3772
+1885 9 2 0 2 3542 3551 3543 3772 3773 3745
+1886 9 2 0 2 3543 3551 3552 3773 3774 3775
+1887 9 2 0 2 3543 3552 3544 3775 3776 3748
+1888 9 2 0 2 3544 3552 3553 3776 3777 3778
+1889 9 2 0 2 3544 3553 3545 3778 3779 3751
+1890 9 2 0 2 3545 3553 3554 3779 3780 3781
+1891 9 2 0 2 3545 3554 3546 3781 3782 3754
+1892 9 2 0 2 3546 3554 3555 3782 3783 3784
+1893 9 2 0 2 3546 3555 426 3784 3785 3757
+1894 9 2 0 2 426 3555 425 3785 3786 445
+1895 9 2 0 2 377 376 3547 396 3787 3759
+1896 9 2 0 2 3547 376 3556 3787 3788 3789
+1897 9 2 0 2 3547 3556 3548 3789 3790 3762
+1898 9 2 0 2 3548 3556 3557 3790 3791 3792
+1899 9 2 0 2 3548 3557 3549 3792 3793 3765
+1900 9 2 0 2 3549 3557 3558 3793 3794 3795
+1901 9 2 0 2 3549 3558 3550 3795 3796 3768
+1902 9 2 0 2 3550 3558 3559 3796 3797 3798
+1903 9 2 0 2 3550 3559 3551 3798 3799 3771
+1904 9 2 0 2 3551 3559 3560 3799 3800 3801
+1905 9 2 0 2 3551 3560 3552 3801 3802 3774
+1906 9 2 0 2 3552 3560 3561 3802 3803 3804
+1907 9 2 0 2 3552 3561 3553 3804 3805 3777
+1908 9 2 0 2 3553 3561 3562 3805 3806 3807
+1909 9 2 0 2 3553 3562 3554 3807 3808 3780
+1910 9 2 0 2 3554 3562 3563 3808 3809 3810
+1911 9 2 0 2 3554 3563 3555 3810 3811 3783
+1912 9 2 0 2 3555 3563 3564 3811 3812 3813
+1913 9 2 0 2 3555 3564 425 3813 3814 3786
+1914 9 2 0 2 425 3564 424 3814 3815 444
+1915 9 2 0 2 376 375 3556 395 3816 3788
+1916 9 2 0 2 3556 375 3565 3816 3817 3818
+1917 9 2 0 2 3556 3565 3557 3818 3819 3791
+1918 9 2 0 2 3557 3565 3566 3819 3820 3821
+1919 9 2 0 2 3557 3566 3558 3821 3822 3794
+1920 9 2 0 2 3558 3566 3567 3822 3823 3824
+1921 9 2 0 2 3558 3567 3559 3824 3825 3797
+1922 9 2 0 2 3559 3567 3568 3825 3826 3827
+1923 9 2 0 2 3559 3568 3560 3827 3828 3800
+1924 9 2 0 2 3560 3568 3569 3828 3829 3830
+1925 9 2 0 2 3560 3569 3561 3830 3831 3803
+1926 9 2 0 2 3561 3569 3570 3831 3832 3833
+1927 9 2 0 2 3561 3570 3562 3833 3834 3806
+1928 9 2 0 2 3562 3570 3571 3834 3835 3836
+1929 9 2 0 2 3562 3571 3563 3836 3837 3809
+1930 9 2 0 2 3563 3571 3572 3837 3838 3839
+1931 9 2 0 2 3563 3572 3564 3839 3840 3812
+1932 9 2 0 2 3564 3572 3573 3840 3841 3842
+1933 9 2 0 2 3564 3573 424 3842 3843 3815
+1934 9 2 0 2 424 3573 423 3843 3844 443
+1935 9 2 0 2 375 374 3565 394 3845 3817
+1936 9 2 0 2 3565 374 3574 3845 3846 3847
+1937 9 2 0 2 3565 3574 3566 3847 3848 3820
+1938 9 2 0 2 3566 3574 3575 3848 3849 3850
+1939 9 2 0 2 3566 3575 3567 3850 3851 3823
+1940 9 2 0 2 3567 3575 3576 3851 3852 3853
+1941 9 2 0 2 3567 3576 3568 3853 3854 3826
+1942 9 2 0 2 3568 3576 3577 3854 3855 3856
+1943 9 2 0 2 3568 3577 3569 3856 3857 3829
+1944 9 2 0 2 3569 3577 3578 3857 3858 3859
+1945 9 2 0 2 3569 3578 3570 3859 3860 3832
+1946 9 2 0 2 3570 3578 3579 3860 3861 3862
+1947 9 2 0 2 3570 3579 3571 3862 3863 3835
+1948 9 2 0 2 3571 3579 3580 3863 3864 3865
+1949 9 2 0 2 3571 3580 3572 3865 3866 3838
+1950 9 2 0 2 3572 3580 3581 3866 3867 3868
+1951 9 2 0 2 3572 3581 3573 3868 3869 3841
+1952 9 2 0 2 3573 3581 3582 3869 3870 3871
+1953 9 2 0 2 3573 3582 423 3871 3872 3844
+1954 9 2 0 2 423 3582 422 3872 3873 442
+1955 9 2 0 2 374 373 3574 393 3874 3846
+1956 9 2 0 2 3574 373 3583 3874 3875 3876
+1957 9 2 0 2 3574 3583 3575 3876 3877 3849
+1958 9 2 0 2 3575 3583 3584 3877 3878 3879
+1959 9 2 0 2 3575 3584 3576 3879 3880 3852
+1960 9 2 0 2 3576 3584 3585 3880 3881 3882
+1961 9 2 0 2 3576 3585 3577 3882 3883 3855
+1962 9 2 0 2 3577 3585 3586 3883 3884 3885
+1963 9 2 0 2 3577 3586 3578 3885 3886 3858
+1964 9 2 0 2 3578 3586 3587 3886 3887 3888
+1965 9 2 0 2 3578 3587 3579 3888 3889 3861
+1966 9 2 0 2 3579 3587 3588 3889 3890 3891
+1967 9 2 0 2 3579 3588 3580 3891 3892 3864
+1968 9 2 0 2 3580 3588 3589 3892 3893 3894
+1969 9 2 0 2 3580 3589 3581 3894 3895 3867
+1970 9 2 0 2 3581 3589 3590 3895 3896 3897
+1971 9 2 0 2 3581 3590 3582 3897 3898 3870
+1972 9 2 0 2 3582 3590 3591 3898 3899 3900
+1973 9 2 0 2 3582 3591 422 3900 3901 3873
+1974 9 2 0 2 422 3591 421 3901 3902 441
+1975 9 2 0 2 373 372 3583 392 3903 3875
+1976 9 2 0 2 3583 372 3592 3903 3904 3905
+1977 9 2 0 2 3583 3592 3584 3905 3906 3878
+1978 9 2 0 2 3584 3592 3593 3906 3907 3908
+1979 9 2 0 2 3584 3593 3585 3908 3909 3881
+1980 9 2 0 2 3585 3593 3594 3909 3910 3911
+1981 9 2 0 2 3585 3594 3586 3911 3912 3884
+1982 9 2 0 2 3586 3594 3595 3912 3913 3914
+1983 9 2 0 2 3586 3595 3587 3914 3915 3887
+1984 9 2 0 2 3587 3595 3596 3915 3916 3917
+1985 9 2 0 2 3587 3596 3588 3917 3918 3890
+1986 9 2 0 2 3588 3596 3597 3918 3919 3920
+1987 9 2 0 2 3588 3597 3589 3920 3921 3893
+1988 9 2 0 2 3589 3597 3598 3921 3922 3923
+1989 9 2 0 2 3589 3598 3590 3923 3924 3896
+1990 9 2 0 2 3590 3598 3599 3924 3925 3926
+1991 9 2 0 2 3590 3599 3591 3926 3927 3899
+1992 9 2 0 2 3591 3599 3600 3927 3928 3929
+1993 9 2 0 2 3591 3600 421 3929 3930 3902
+1994 9 2 0 2 421 3600 420 3930 3931 440
+1995 9 2 0 2 372 371 3592 391 3932 3904
+1996 9 2 0 2 3592 371 3601 3932 3933 3934
+1997 9 2 0 2 3592 3601 3593 3934 3935 3907
+1998 9 2 0 2 3593 3601 3602 3935 3936 3937
+1999 9 2 0 2 3593 3602 3594 3937 3938 3910
+2000 9 2 0 2 3594 3602 3603 3938 3939 3940
+2001 9 2 0 2 3594 3603 3595 3940 3941 3913
+2002 9 2 0 2 3595 3603 3604 3941 3942 3943
+2003 9 2 0 2 3595 3604 3596 3943 3944 3916
+2004 9 2 0 2 3596 3604 3605 3944 3945 3946
+2005 9 2 0 2 3596 3605 3597 3946 3947 3919
+2006 9 2 0 2 3597 3605 3606 3947 3948 3949
+2007 9 2 0 2 3597 3606 3598 3949 3950 3922
+2008 9 2 0 2 3598 3606 3607 3950 3951 3952
+2009 9 2 0 2 3598 3607 3599 3952 3953 3925
+2010 9 2 0 2 3599 3607 3608 3953 3954 3955
+2011 9 2 0 2 3599 3608 3600 3955 3956 3928
+2012 9 2 0 2 3600 3608 3609 3956 3957 3958
+2013 9 2 0 2 3600 3609 420 3958 3959 3931
+2014 9 2 0 2 420 3609 419 3959 3960 439
+2015 9 2 0 2 371 370 3601 390 3961 3933
+2016 9 2 0 2 3601 370 3610 3961 3962 3963
+2017 9 2 0 2 3601 3610 3602 3963 3964 3936
+2018 9 2 0 2 3602 3610 3611 3964 3965 3966
+2019 9 2 0 2 3602 3611 3603 3966 3967 3939
+2020 9 2 0 2 3603 3611 3612 3967 3968 3969
+2021 9 2 0 2 3603 3612 3604 3969 3970 3942
+2022 9 2 0 2 3604 3612 3613 3970 3971 3972
+2023 9 2 0 2 3604 3613 3605 3972 3973 3945
+2024 9 2 0 2 3605 3613 3614 3973 3974 3975
+2025 9 2 0 2 3605 3614 3606 3975 3976 3948
+2026 9 2 0 2 3606 3614 3615 3976 3977 3978
+2027 9 2 0 2 3606 3615 3607 3978 3979 3951
+2028 9 2 0 2 3607 3615 3616 3979 3980 3981
+2029 9 2 0 2 3607 3616 3608 3981 3982 3954
+2030 9 2 0 2 3608 3616 3617 3982 3983 3984
+2031 9 2 0 2 3608 3617 3609 3984 3985 3957
+2032 9 2 0 2 3609 3617 3618 3985 3986 3987
+2033 9 2 0 2 3609 3618 419 3987 3988 3960
+2034 9 2 0 2 419 3618 418 3988 3989 438
+2035 9 2 0 2 370 369 3610 389 3990 3962
+2036 9 2 0 2 3610 369 3619 3990 3991 3992
+2037 9 2 0 2 3610 3619 3611 3992 3993 3965
+2038 9 2 0 2 3611 3619 3620 3993 3994 3995
+2039 9 2 0 2 3611 3620 3612 3995 3996 3968
+2040 9 2 0 2 3612 3620 3621 3996 3997 3998
+2041 9 2 0 2 3612 3621 3613 3998 3999 3971
+2042 9 2 0 2 3613 3621 3622 3999 4000 4001
+2043 9 2 0 2 3613 3622 3614 4001 4002 3974
+2044 9 2 0 2 3614 3622 3623 4002 4003 4004
+2045 9 2 0 2 3614 3623 3615 4004 4005 3977
+2046 9 2 0 2 3615 3623 3624 4005 4006 4007
+2047 9 2 0 2 3615 3624 3616 4007 4008 3980
+2048 9 2 0 2 3616 3624 3625 4008 4009 4010
+2049 9 2 0 2 3616 3625 3617 4010 4011 3983
+2050 9 2 0 2 3617 3625 3626 4011 4012 4013
+2051 9 2 0 2 3617 3626 3618 4013 4014 3986
+2052 9 2 0 2 3618 3626 3627 4014 4015 4016
+2053 9 2 0 2 3618 3627 418 4016 4017 3989
+2054 9 2 0 2 418 3627 417 4017 4018 437
+2055 9 2 0 2 369 368 3619 388 4019 3991
+2056 9 2 0 2 3619 368 3628 4019 4020 4021
+2057 9 2 0 2 3619 3628 3620 4021 4022 3994
+2058 9 2 0 2 3620 3628 3629 4022 4023 4024
+2059 9 2 0 2 3620 3629 3621 4024 4025 3997
+2060 9 2 0 2 3621 3629 3630 4025 4026 4027
+2061 9 2 0 2 3621 3630 3622 4027 4028 4000
+2062 9 2 0 2 3622 3630 3631 4028 4029 4030
+2063 9 2 0 2 3622 3631 3623 4030 4031 4003
+2064 9 2 0 2 3623 3631 3632 4031 4032 4033
+2065 9 2 0 2 3623 3632 3624 4033 4034 4006
+2066 9 2 0 2 3624 3632 3633 4034 4035 4036
+2067 9 2 0 2 3624 3633 3625 4036 4037 4009
+2068 9 2 0 2 3625 3633 3634 4037 4038 4039
+2069 9 2 0 2 3625 3634 3626 4039 4040 4012
+2070 9 2 0 2 3626 3634 3635 4040 4041 4042
+2071 9 2 0 2 3626 3635 3627 4042 4043 4015
+2072 9 2 0 2 3627 3635 3636 4043 4044 4045
+2073 9 2 0 2 3627 3636 417 4045 4046 4018
+2074 9 2 0 2 417 3636 416 4046 4047 436
+2075 9 2 0 2 368 367 3628 387 4048 4020
+2076 9 2 0 2 3628 367 3637 4048 4049 4050
+2077 9 2 0 2 3628 3637 3629 4050 4051 4023
+2078 9 2 0 2 3629 3637 3638 4051 4052 4053
+2079 9 2 0 2 3629 3638 3630 4053 4054 4026
+2080 9 2 0 2 3630 3638 3639 4054 4055 4056
+2081 9 2 0 2 3630 3639 3631 4056 4057 4029
+2082 9 2 0 2 3631 3639 3640 4057 4058 4059
+2083 9 2 0 2 3631 3640 3632 4059 4060 4032
+2084 9 2 0 2 3632 3640 3641 4060 4061 4062
+2085 9 2 0 2 3632 3641 3633 4062 4063 4035
+2086 9 2 0 2 3633 3641 3642 4063 4064 4065
+2087 9 2 0 2 3633 3642 3634 4065 4066 4038
+2088 9 2 0 2 3634 3642 3643 4066 4067 4068
+2089 9 2 0 2 3634 3643 3635 4068 4069 4041
+2090 9 2 0 2 3635 3643 3644 4069 4070 4071
+2091 9 2 0 2 3635 3644 3636 4071 4072 4044
+2092 9 2 0 2 3636 3644 3645 4072 4073 4074
+2093 9 2 0 2 3636 3645 416 4074 4075 4047
+2094 9 2 0 2 416 3645 415 4075 4076 435
+2095 9 2 0 2 367 366 3637 386 4077 4049
+2096 9 2 0 2 3637 366 3646 4077 4078 4079
+2097 9 2 0 2 3637 3646 3638 4079 4080 4052
+2098 9 2 0 2 3638 3646 3647 4080 4081 4082
+2099 9 2 0 2 3638 3647 3639 4082 4083 4055
+2100 9 2 0 2 3639 3647 3648 4083 4084 4085
+2101 9 2 0 2 3639 3648 3640 4085 4086 4058
+2102 9 2 0 2 3640 3648 3649 4086 4087 4088
+2103 9 2 0 2 3640 3649 3641 4088 4089 4061
+2104 9 2 0 2 3641 3649 3650 4089 4090 4091
+2105 9 2 0 2 3641 3650 3642 4091 4092 4064
+2106 9 2 0 2 3642 3650 3651 4092 4093 4094
+2107 9 2 0 2 3642 3651 3643 4094 4095 4067
+2108 9 2 0 2 3643 3651 3652 4095 4096 4097
+2109 9 2 0 2 3643 3652 3644 4097 4098 4070
+2110 9 2 0 2 3644 3652 3653 4098 4099 4100
+2111 9 2 0 2 3644 3653 3645 4100 4101 4073
+2112 9 2 0 2 3645 3653 3654 4101 4102 4103
+2113 9 2 0 2 3645 3654 415 4103 4104 4076
+2114 9 2 0 2 415 3654 414 4104 4105 434
+2115 9 2 0 2 366 365 3646 385 4106 4078
+2116 9 2 0 2 3646 365 3655 4106 4107 4108
+2117 9 2 0 2 3646 3655 3647 4108 4109 4081
+2118 9 2 0 2 3647 3655 3656 4109 4110 4111
+2119 9 2 0 2 3647 3656 3648 4111 4112 4084
+2120 9 2 0 2 3648 3656 3657 4112 4113 4114
+2121 9 2 0 2 3648 3657 3649 4114 4115 4087
+2122 9 2 0 2 3649 3657 3658 4115 4116 4117
+2123 9 2 0 2 3649 3658 3650 4117 4118 4090
+2124 9 2 0 2 3650 3658 3659 4118 4119 4120
+2125 9 2 0 2 3650 3659 3651 4120 4121 4093
+2126 9 2 0 2 3651 3659 3660 4121 4122 4123
+2127 9 2 0 2 3651 3660 3652 4123 4124 4096
+2128 9 2 0 2 3652 3660 3661 4124 4125 4126
+2129 9 2 0 2 3652 3661 3653 4126 4127 4099
+2130 9 2 0 2 3653 3661 3662 4127 4128 4129
+2131 9 2 0 2 3653 3662 3654 4129 4130 4102
+2132 9 2 0 2 3654 3662 3663 4130 4131 4132
+2133 9 2 0 2 3654 3663 414 4132 4133 4105
+2134 9 2 0 2 414 3663 413 4133 4134 433
+2135 9 2 0 2 365 364 3655 384 4135 4107
+2136 9 2 0 2 3655 364 3664 4135 4136 4137
+2137 9 2 0 2 3655 3664 3656 4137 4138 4110
+2138 9 2 0 2 3656 3664 3665 4138 4139 4140
+2139 9 2 0 2 3656 3665 3657 4140 4141 4113
+2140 9 2 0 2 3657 3665 3666 4141 4142 4143
+2141 9 2 0 2 3657 3666 3658 4143 4144 4116
+2142 9 2 0 2 3658 3666 3667 4144 4145 4146
+2143 9 2 0 2 3658 3667 3659 4146 4147 4119
+2144 9 2 0 2 3659 3667 3668 4147 4148 4149
+2145 9 2 0 2 3659 3668 3660 4149 4150 4122
+2146 9 2 0 2 3660 3668 3669 4150 4151 4152
+2147 9 2 0 2 3660 3669 3661 4152 4153 4125
+2148 9 2 0 2 3661 3669 3670 4153 4154 4155
+2149 9 2 0 2 3661 3670 3662 4155 4156 4128
+2150 9 2 0 2 3662 3670 3671 4156 4157 4158
+2151 9 2 0 2 3662 3671 3663 4158 4159 4131
+2152 9 2 0 2 3663 3671 3672 4159 4160 4161
+2153 9 2 0 2 3663 3672 413 4161 4162 4134
+2154 9 2 0 2 413 3672 412 4162 4163 432
+2155 9 2 0 2 364 363 3664 383 4164 4136
+2156 9 2 0 2 3664 363 3673 4164 4165 4166
+2157 9 2 0 2 3664 3673 3665 4166 4167 4139
+2158 9 2 0 2 3665 3673 3674 4167 4168 4169
+2159 9 2 0 2 3665 3674 3666 4169 4170 4142
+2160 9 2 0 2 3666 3674 3675 4170 4171 4172
+2161 9 2 0 2 3666 3675 3667 4172 4173 4145
+2162 9 2 0 2 3667 3675 3676 4173 4174 4175
+2163 9 2 0 2 3667 3676 3668 4175 4176 4148
+2164 9 2 0 2 3668 3676 3677 4176 4177 4178
+2165 9 2 0 2 3668 3677 3669 4178 4179 4151
+2166 9 2 0 2 3669 3677 3678 4179 4180 4181
+2167 9 2 0 2 3669 3678 3670 4181 4182 4154
+2168 9 2 0 2 3670 3678 3679 4182 4183 4184
+2169 9 2 0 2 3670 3679 3671 4184 4185 4157
+2170 9 2 0 2 3671 3679 3680 4185 4186 4187
+2171 9 2 0 2 3671 3680 3672 4187 4188 4160
+2172 9 2 0 2 3672 3680 3681 4188 4189 4190
+2173 9 2 0 2 3672 3681 412 4190 4191 4163
+2174 9 2 0 2 412 3681 411 4191 4192 431
+2175 9 2 0 2 363 362 3673 382 4193 4165
+2176 9 2 0 2 3673 362 3682 4193 4194 4195
+2177 9 2 0 2 3673 3682 3674 4195 4196 4168
+2178 9 2 0 2 3674 3682 3683 4196 4197 4198
+2179 9 2 0 2 3674 3683 3675 4198 4199 4171
+2180 9 2 0 2 3675 3683 3684 4199 4200 4201
+2181 9 2 0 2 3675 3684 3676 4201 4202 4174
+2182 9 2 0 2 3676 3684 3685 4202 4203 4204
+2183 9 2 0 2 3676 3685 3677 4204 4205 4177
+2184 9 2 0 2 3677 3685 3686 4205 4206 4207
+2185 9 2 0 2 3677 3686 3678 4207 4208 4180
+2186 9 2 0 2 3678 3686 3687 4208 4209 4210
+2187 9 2 0 2 3678 3687 3679 4210 4211 4183
+2188 9 2 0 2 3679 3687 3688 4211 4212 4213
+2189 9 2 0 2 3679 3688 3680 4213 4214 4186
+2190 9 2 0 2 3680 3688 3689 4214 4215 4216
+2191 9 2 0 2 3680 3689 3681 4216 4217 4189
+2192 9 2 0 2 3681 3689 3690 4217 4218 4219
+2193 9 2 0 2 3681 3690 411 4219 4220 4192
+2194 9 2 0 2 411 3690 410 4220 4221 430
+2195 9 2 0 2 362 361 3682 381 4222 4194
+2196 9 2 0 2 3682 361 3691 4222 4223 4224
+2197 9 2 0 2 3682 3691 3683 4224 4225 4197
+2198 9 2 0 2 3683 3691 3692 4225 4226 4227
+2199 9 2 0 2 3683 3692 3684 4227 4228 4200
+2200 9 2 0 2 3684 3692 3693 4228 4229 4230
+2201 9 2 0 2 3684 3693 3685 4230 4231 4203
+2202 9 2 0 2 3685 3693 3694 4231 4232 4233
+2203 9 2 0 2 3685 3694 3686 4233 4234 4206
+2204 9 2 0 2 3686 3694 3695 4234 4235 4236
+2205 9 2 0 2 3686 3695 3687 4236 4237 4209
+2206 9 2 0 2 3687 3695 3696 4237 4238 4239
+2207 9 2 0 2 3687 3696 3688 4239 4240 4212
+2208 9 2 0 2 3688 3696 3697 4240 4241 4242
+2209 9 2 0 2 3688 3697 3689 4242 4243 4215
+2210 9 2 0 2 3689 3697 3698 4243 4244 4245
+2211 9 2 0 2 3689 3698 3690 4245 4246 4218
+2212 9 2 0 2 3690 3698 3699 4246 4247 4248
+2213 9 2 0 2 3690 3699 410 4248 4249 4221
+2214 9 2 0 2 410 3699 409 4249 4250 429
+2215 9 2 0 2 361 9 3691 380 4251 4223
+2216 9 2 0 2 3691 9 187 4251 196 4252
+2217 9 2 0 2 3691 187 3692 4252 4253 4226
+2218 9 2 0 2 3692 187 188 4253 197 4254
+2219 9 2 0 2 3692 188 3693 4254 4255 4229
+2220 9 2 0 2 3693 188 189 4255 198 4256
+2221 9 2 0 2 3693 189 3694 4256 4257 4232
+2222 9 2 0 2 3694 189 190 4257 199 4258
+2223 9 2 0 2 3694 190 3695 4258 4259 4235
+2224 9 2 0 2 3695 190 191 4259 200 4260
+2225 9 2 0 2 3695 191 3696 4260 4261 4238
+2226 9 2 0 2 3696 191 192 4261 201 4262
+2227 9 2 0 2 3696 192 3697 4262 4263 4241
+2228 9 2 0 2 3697 192 193 4263 202 4264
+2229 9 2 0 2 3697 193 3698 4264 4265 4244
+2230 9 2 0 2 3698 193 194 4265 203 4266
+2231 9 2 0 2 3698 194 3699 4266 4267 4247
+2232 9 2 0 2 3699 194 195 4267 204 4268
+2233 9 2 0 2 3699 195 409 4268 4269 4250
+2234 9 2 0 2 409 195 4 4269 205 428
+2235 9 2 0 3 8 307 108 312 4426 147
+2236 9 2 0 3 108 307 4270 4426 4427 4428
+2237 9 2 0 3 108 4270 109 4428 4429 148
+2238 9 2 0 3 109 4270 4271 4429 4430 4431
+2239 9 2 0 3 109 4271 110 4431 4432 149
+2240 9 2 0 3 110 4271 4272 4432 4433 4434
+2241 9 2 0 3 110 4272 111 4434 4435 150
+2242 9 2 0 3 111 4272 4273 4435 4436 4437
+2243 9 2 0 3 111 4273 112 4437 4438 151
+2244 9 2 0 3 112 4273 4274 4438 4439 4440
+2245 9 2 0 3 112 4274 113 4440 4441 152
+2246 9 2 0 3 113 4274 4275 4441 4442 4443
+2247 9 2 0 3 113 4275 114 4443 4444 153
+2248 9 2 0 3 114 4275 4276 4444 4445 4446
+2249 9 2 0 3 114 4276 115 4446 4447 154
+2250 9 2 0 3 115 4276 4277 4447 4448 4449
+2251 9 2 0 3 115 4277 116 4449 4450 155
+2252 9 2 0 3 116 4277 4278 4450 4451 4452
+2253 9 2 0 3 116 4278 117 4452 4453 156
+2254 9 2 0 3 117 4278 4279 4453 4454 4455
+2255 9 2 0 3 117 4279 118 4455 4456 157
+2256 9 2 0 3 118 4279 4280 4456 4457 4458
+2257 9 2 0 3 118 4280 119 4458 4459 158
+2258 9 2 0 3 119 4280 4281 4459 4460 4461
+2259 9 2 0 3 119 4281 120 4461 4462 159
+2260 9 2 0 3 120 4281 4282 4462 4463 4464
+2261 9 2 0 3 120 4282 121 4464 4465 160
+2262 9 2 0 3 121 4282 4283 4465 4466 4467
+2263 9 2 0 3 121 4283 122 4467 4468 161
+2264 9 2 0 3 122 4283 4284 4468 4469 4470
+2265 9 2 0 3 122 4284 123 4470 4471 162
+2266 9 2 0 3 123 4284 4285 4471 4472 4473
+2267 9 2 0 3 123 4285 124 4473 4474 163
+2268 9 2 0 3 124 4285 4286 4474 4475 4476
+2269 9 2 0 3 124 4286 125 4476 4477 164
+2270 9 2 0 3 125 4286 4287 4477 4478 4479
+2271 9 2 0 3 125 4287 126 4479 4480 165
+2272 9 2 0 3 126 4287 4288 4480 4481 4482
+2273 9 2 0 3 126 4288 127 4482 4483 166
+2274 9 2 0 3 127 4288 4289 4483 4484 4485
+2275 9 2 0 3 127 4289 128 4485 4486 167
+2276 9 2 0 3 128 4289 4290 4486 4487 4488
+2277 9 2 0 3 128 4290 129 4488 4489 168
+2278 9 2 0 3 129 4290 4291 4489 4490 4491
+2279 9 2 0 3 129 4291 130 4491 4492 169
+2280 9 2 0 3 130 4291 4292 4492 4493 4494
+2281 9 2 0 3 130 4292 131 4494 4495 170
+2282 9 2 0 3 131 4292 4293 4495 4496 4497
+2283 9 2 0 3 131 4293 132 4497 4498 171
+2284 9 2 0 3 132 4293 4294 4498 4499 4500
+2285 9 2 0 3 132 4294 133 4500 4501 172
+2286 9 2 0 3 133 4294 4295 4501 4502 4503
+2287 9 2 0 3 133 4295 134 4503 4504 173
+2288 9 2 0 3 134 4295 4296 4504 4505 4506
+2289 9 2 0 3 134 4296 135 4506 4507 174
+2290 9 2 0 3 135 4296 4297 4507 4508 4509
+2291 9 2 0 3 135 4297 136 4509 4510 175
+2292 9 2 0 3 136 4297 4298 4510 4511 4512
+2293 9 2 0 3 136 4298 137 4512 4513 176
+2294 9 2 0 3 137 4298 4299 4513 4514 4515
+2295 9 2 0 3 137 4299 138 4515 4516 177
+2296 9 2 0 3 138 4299 4300 4516 4517 4518
+2297 9 2 0 3 138 4300 139 4518 4519 178
+2298 9 2 0 3 139 4300 4301 4519 4520 4521
+2299 9 2 0 3 139 4301 140 4521 4522 179
+2300 9 2 0 3 140 4301 4302 4522 4523 4524
+2301 9 2 0 3 140 4302 141 4524 4525 180
+2302 9 2 0 3 141 4302 4303 4525 4526 4527
+2303 9 2 0 3 141 4303 142 4527 4528 181
+2304 9 2 0 3 142 4303 4304 4528 4529 4530
+2305 9 2 0 3 142 4304 143 4530 4531 182
+2306 9 2 0 3 143 4304 4305 4531 4532 4533
+2307 9 2 0 3 143 4305 144 4533 4534 183
+2308 9 2 0 3 144 4305 4306 4534 4535 4536
+2309 9 2 0 3 144 4306 145 4536 4537 184
+2310 9 2 0 3 145 4306 4307 4537 4538 4539
+2311 9 2 0 3 145 4307 146 4539 4540 185
+2312 9 2 0 3 146 4307 4308 4540 4541 4542
+2313 9 2 0 3 146 4308 9 4542 4543 186
+2314 9 2 0 3 9 4308 355 4543 4544 360
+2315 9 2 0 3 307 306 4270 311 4545 4427
+2316 9 2 0 3 4270 306 4309 4545 4546 4547
+2317 9 2 0 3 4270 4309 4271 4547 4548 4430
+2318 9 2 0 3 4271 4309 4310 4548 4549 4550
+2319 9 2 0 3 4271 4310 4272 4550 4551 4433
+2320 9 2 0 3 4272 4310 4311 4551 4552 4553
+2321 9 2 0 3 4272 4311 4273 4553 4554 4436
+2322 9 2 0 3 4273 4311 4312 4554 4555 4556
+2323 9 2 0 3 4273 4312 4274 4556 4557 4439
+2324 9 2 0 3 4274 4312 4313 4557 4558 4559
+2325 9 2 0 3 4274 4313 4275 4559 4560 4442
+2326 9 2 0 3 4275 4313 4314 4560 4561 4562
+2327 9 2 0 3 4275 4314 4276 4562 4563 4445
+2328 9 2 0 3 4276 4314 4315 4563 4564 4565
+2329 9 2 0 3 4276 4315 4277 4565 4566 4448
+2330 9 2 0 3 4277 4315 4316 4566 4567 4568
+2331 9 2 0 3 4277 4316 4278 4568 4569 4451
+2332 9 2 0 3 4278 4316 4317 4569 4570 4571
+2333 9 2 0 3 4278 4317 4279 4571 4572 4454
+2334 9 2 0 3 4279 4317 4318 4572 4573 4574
+2335 9 2 0 3 4279 4318 4280 4574 4575 4457
+2336 9 2 0 3 4280 4318 4319 4575 4576 4577
+2337 9 2 0 3 4280 4319 4281 4577 4578 4460
+2338 9 2 0 3 4281 4319 4320 4578 4579 4580
+2339 9 2 0 3 4281 4320 4282 4580 4581 4463
+2340 9 2 0 3 4282 4320 4321 4581 4582 4583
+2341 9 2 0 3 4282 4321 4283 4583 4584 4466
+2342 9 2 0 3 4283 4321 4322 4584 4585 4586
+2343 9 2 0 3 4283 4322 4284 4586 4587 4469
+2344 9 2 0 3 4284 4322 4323 4587 4588 4589
+2345 9 2 0 3 4284 4323 4285 4589 4590 4472
+2346 9 2 0 3 4285 4323 4324 4590 4591 4592
+2347 9 2 0 3 4285 4324 4286 4592 4593 4475
+2348 9 2 0 3 4286 4324 4325 4593 4594 4595
+2349 9 2 0 3 4286 4325 4287 4595 4596 4478
+2350 9 2 0 3 4287 4325 4326 4596 4597 4598
+2351 9 2 0 3 4287 4326 4288 4598 4599 4481
+2352 9 2 0 3 4288 4326 4327 4599 4600 4601
+2353 9 2 0 3 4288 4327 4289 4601 4602 4484
+2354 9 2 0 3 4289 4327 4328 4602 4603 4604
+2355 9 2 0 3 4289 4328 4290 4604 4605 4487
+2356 9 2 0 3 4290 4328 4329 4605 4606 4607
+2357 9 2 0 3 4290 4329 4291 4607 4608 4490
+2358 9 2 0 3 4291 4329 4330 4608 4609 4610
+2359 9 2 0 3 4291 4330 4292 4610 4611 4493
+2360 9 2 0 3 4292 4330 4331 4611 4612 4613
+2361 9 2 0 3 4292 4331 4293 4613 4614 4496
+2362 9 2 0 3 4293 4331 4332 4614 4615 4616
+2363 9 2 0 3 4293 4332 4294 4616 4617 4499
+2364 9 2 0 3 4294 4332 4333 4617 4618 4619
+2365 9 2 0 3 4294 4333 4295 4619 4620 4502
+2366 9 2 0 3 4295 4333 4334 4620 4621 4622
+2367 9 2 0 3 4295 4334 4296 4622 4623 4505
+2368 9 2 0 3 4296 4334 4335 4623 4624 4625
+2369 9 2 0 3 4296 4335 4297 4625 4626 4508
+2370 9 2 0 3 4297 4335 4336 4626 4627 4628
+2371 9 2 0 3 4297 4336 4298 4628 4629 4511
+2372 9 2 0 3 4298 4336 4337 4629 4630 4631
+2373 9 2 0 3 4298 4337 4299 4631 4632 4514
+2374 9 2 0 3 4299 4337 4338 4632 4633 4634
+2375 9 2 0 3 4299 4338 4300 4634 4635 4517
+2376 9 2 0 3 4300 4338 4339 4635 4636 4637
+2377 9 2 0 3 4300 4339 4301 4637 4638 4520
+2378 9 2 0 3 4301 4339 4340 4638 4639 4640
+2379 9 2 0 3 4301 4340 4302 4640 4641 4523
+2380 9 2 0 3 4302 4340 4341 4641 4642 4643
+2381 9 2 0 3 4302 4341 4303 4643 4644 4526
+2382 9 2 0 3 4303 4341 4342 4644 4645 4646
+2383 9 2 0 3 4303 4342 4304 4646 4647 4529
+2384 9 2 0 3 4304 4342 4343 4647 4648 4649
+2385 9 2 0 3 4304 4343 4305 4649 4650 4532
+2386 9 2 0 3 4305 4343 4344 4650 4651 4652
+2387 9 2 0 3 4305 4344 4306 4652 4653 4535
+2388 9 2 0 3 4306 4344 4345 4653 4654 4655
+2389 9 2 0 3 4306 4345 4307 4655 4656 4538
+2390 9 2 0 3 4307 4345 4346 4656 4657 4658
+2391 9 2 0 3 4307 4346 4308 4658 4659 4541
+2392 9 2 0 3 4308 4346 4347 4659 4660 4661
+2393 9 2 0 3 4308 4347 355 4661 4662 4544
+2394 9 2 0 3 355 4347 354 4662 4663 359
+2395 9 2 0 3 306 305 4309 310 4664 4546
+2396 9 2 0 3 4309 305 4348 4664 4665 4666
+2397 9 2 0 3 4309 4348 4310 4666 4667 4549
+2398 9 2 0 3 4310 4348 4349 4667 4668 4669
+2399 9 2 0 3 4310 4349 4311 4669 4670 4552
+2400 9 2 0 3 4311 4349 4350 4670 4671 4672
+2401 9 2 0 3 4311 4350 4312 4672 4673 4555
+2402 9 2 0 3 4312 4350 4351 4673 4674 4675
+2403 9 2 0 3 4312 4351 4313 4675 4676 4558
+2404 9 2 0 3 4313 4351 4352 4676 4677 4678
+2405 9 2 0 3 4313 4352 4314 4678 4679 4561
+2406 9 2 0 3 4314 4352 4353 4679 4680 4681
+2407 9 2 0 3 4314 4353 4315 4681 4682 4564
+2408 9 2 0 3 4315 4353 4354 4682 4683 4684
+2409 9 2 0 3 4315 4354 4316 4684 4685 4567
+2410 9 2 0 3 4316 4354 4355 4685 4686 4687
+2411 9 2 0 3 4316 4355 4317 4687 4688 4570
+2412 9 2 0 3 4317 4355 4356 4688 4689 4690
+2413 9 2 0 3 4317 4356 4318 4690 4691 4573
+2414 9 2 0 3 4318 4356 4357 4691 4692 4693
+2415 9 2 0 3 4318 4357 4319 4693 4694 4576
+2416 9 2 0 3 4319 4357 4358 4694 4695 4696
+2417 9 2 0 3 4319 4358 4320 4696 4697 4579
+2418 9 2 0 3 4320 4358 4359 4697 4698 4699
+2419 9 2 0 3 4320 4359 4321 4699 4700 4582
+2420 9 2 0 3 4321 4359 4360 4700 4701 4702
+2421 9 2 0 3 4321 4360 4322 4702 4703 4585
+2422 9 2 0 3 4322 4360 4361 4703 4704 4705
+2423 9 2 0 3 4322 4361 4323 4705 4706 4588
+2424 9 2 0 3 4323 4361 4362 4706 4707 4708
+2425 9 2 0 3 4323 4362 4324 4708 4709 4591
+2426 9 2 0 3 4324 4362 4363 4709 4710 4711
+2427 9 2 0 3 4324 4363 4325 4711 4712 4594
+2428 9 2 0 3 4325 4363 4364 4712 4713 4714
+2429 9 2 0 3 4325 4364 4326 4714 4715 4597
+2430 9 2 0 3 4326 4364 4365 4715 4716 4717
+2431 9 2 0 3 4326 4365 4327 4717 4718 4600
+2432 9 2 0 3 4327 4365 4366 4718 4719 4720
+2433 9 2 0 3 4327 4366 4328 4720 4721 4603
+2434 9 2 0 3 4328 4366 4367 4721 4722 4723
+2435 9 2 0 3 4328 4367 4329 4723 4724 4606
+2436 9 2 0 3 4329 4367 4368 4724 4725 4726
+2437 9 2 0 3 4329 4368 4330 4726 4727 4609
+2438 9 2 0 3 4330 4368 4369 4727 4728 4729
+2439 9 2 0 3 4330 4369 4331 4729 4730 4612
+2440 9 2 0 3 4331 4369 4370 4730 4731 4732
+2441 9 2 0 3 4331 4370 4332 4732 4733 4615
+2442 9 2 0 3 4332 4370 4371 4733 4734 4735
+2443 9 2 0 3 4332 4371 4333 4735 4736 4618
+2444 9 2 0 3 4333 4371 4372 4736 4737 4738
+2445 9 2 0 3 4333 4372 4334 4738 4739 4621
+2446 9 2 0 3 4334 4372 4373 4739 4740 4741
+2447 9 2 0 3 4334 4373 4335 4741 4742 4624
+2448 9 2 0 3 4335 4373 4374 4742 4743 4744
+2449 9 2 0 3 4335 4374 4336 4744 4745 4627
+2450 9 2 0 3 4336 4374 4375 4745 4746 4747
+2451 9 2 0 3 4336 4375 4337 4747 4748 4630
+2452 9 2 0 3 4337 4375 4376 4748 4749 4750
+2453 9 2 0 3 4337 4376 4338 4750 4751 4633
+2454 9 2 0 3 4338 4376 4377 4751 4752 4753
+2455 9 2 0 3 4338 4377 4339 4753 4754 4636
+2456 9 2 0 3 4339 4377 4378 4754 4755 4756
+2457 9 2 0 3 4339 4378 4340 4756 4757 4639
+2458 9 2 0 3 4340 4378 4379 4757 4758 4759
+2459 9 2 0 3 4340 4379 4341 4759 4760 4642
+2460 9 2 0 3 4341 4379 4380 4760 4761 4762
+2461 9 2 0 3 4341 4380 4342 4762 4763 4645
+2462 9 2 0 3 4342 4380 4381 4763 4764 4765
+2463 9 2 0 3 4342 4381 4343 4765 4766 4648
+2464 9 2 0 3 4343 4381 4382 4766 4767 4768
+2465 9 2 0 3 4343 4382 4344 4768 4769 4651
+2466 9 2 0 3 4344 4382 4383 4769 4770 4771
+2467 9 2 0 3 4344 4383 4345 4771 4772 4654
+2468 9 2 0 3 4345 4383 4384 4772 4773 4774
+2469 9 2 0 3 4345 4384 4346 4774 4775 4657
+2470 9 2 0 3 4346 4384 4385 4775 4776 4777
+2471 9 2 0 3 4346 4385 4347 4777 4778 4660
+2472 9 2 0 3 4347 4385 4386 4778 4779 4780
+2473 9 2 0 3 4347 4386 354 4780 4781 4663
+2474 9 2 0 3 354 4386 353 4781 4782 358
+2475 9 2 0 3 305 304 4348 309 4783 4665
+2476 9 2 0 3 4348 304 4387 4783 4784 4785
+2477 9 2 0 3 4348 4387 4349 4785 4786 4668
+2478 9 2 0 3 4349 4387 4388 4786 4787 4788
+2479 9 2 0 3 4349 4388 4350 4788 4789 4671
+2480 9 2 0 3 4350 4388 4389 4789 4790 4791
+2481 9 2 0 3 4350 4389 4351 4791 4792 4674
+2482 9 2 0 3 4351 4389 4390 4792 4793 4794
+2483 9 2 0 3 4351 4390 4352 4794 4795 4677
+2484 9 2 0 3 4352 4390 4391 4795 4796 4797
+2485 9 2 0 3 4352 4391 4353 4797 4798 4680
+2486 9 2 0 3 4353 4391 4392 4798 4799 4800
+2487 9 2 0 3 4353 4392 4354 4800 4801 4683
+2488 9 2 0 3 4354 4392 4393 4801 4802 4803
+2489 9 2 0 3 4354 4393 4355 4803 4804 4686
+2490 9 2 0 3 4355 4393 4394 4804 4805 4806
+2491 9 2 0 3 4355 4394 4356 4806 4807 4689
+2492 9 2 0 3 4356 4394 4395 4807 4808 4809
+2493 9 2 0 3 4356 4395 4357 4809 4810 4692
+2494 9 2 0 3 4357 4395 4396 4810 4811 4812
+2495 9 2 0 3 4357 4396 4358 4812 4813 4695
+2496 9 2 0 3 4358 4396 4397 4813 4814 4815
+2497 9 2 0 3 4358 4397 4359 4815 4816 4698
+2498 9 2 0 3 4359 4397 4398 4816 4817 4818
+2499 9 2 0 3 4359 4398 4360 4818 4819 4701
+2500 9 2 0 3 4360 4398 4399 4819 4820 4821
+2501 9 2 0 3 4360 4399 4361 4821 4822 4704
+2502 9 2 0 3 4361 4399 4400 4822 4823 4824
+2503 9 2 0 3 4361 4400 4362 4824 4825 4707
+2504 9 2 0 3 4362 4400 4401 4825 4826 4827
+2505 9 2 0 3 4362 4401 4363 4827 4828 4710
+2506 9 2 0 3 4363 4401 4402 4828 4829 4830
+2507 9 2 0 3 4363 4402 4364 4830 4831 4713
+2508 9 2 0 3 4364 4402 4403 4831 4832 4833
+2509 9 2 0 3 4364 4403 4365 4833 4834 4716
+2510 9 2 0 3 4365 4403 4404 4834 4835 4836
+2511 9 2 0 3 4365 4404 4366 4836 4837 4719
+2512 9 2 0 3 4366 4404 4405 4837 4838 4839
+2513 9 2 0 3 4366 4405 4367 4839 4840 4722
+2514 9 2 0 3 4367 4405 4406 4840 4841 4842
+2515 9 2 0 3 4367 4406 4368 4842 4843 4725
+2516 9 2 0 3 4368 4406 4407 4843 4844 4845
+2517 9 2 0 3 4368 4407 4369 4845 4846 4728
+2518 9 2 0 3 4369 4407 4408 4846 4847 4848
+2519 9 2 0 3 4369 4408 4370 4848 4849 4731
+2520 9 2 0 3 4370 4408 4409 4849 4850 4851
+2521 9 2 0 3 4370 4409 4371 4851 4852 4734
+2522 9 2 0 3 4371 4409 4410 4852 4853 4854
+2523 9 2 0 3 4371 4410 4372 4854 4855 4737
+2524 9 2 0 3 4372 4410 4411 4855 4856 4857
+2525 9 2 0 3 4372 4411 4373 4857 4858 4740
+2526 9 2 0 3 4373 4411 4412 4858 4859 4860
+2527 9 2 0 3 4373 4412 4374 4860 4861 4743
+2528 9 2 0 3 4374 4412 4413 4861 4862 4863
+2529 9 2 0 3 4374 4413 4375 4863 4864 4746
+2530 9 2 0 3 4375 4413 4414 4864 4865 4866
+2531 9 2 0 3 4375 4414 4376 4866 4867 4749
+2532 9 2 0 3 4376 4414 4415 4867 4868 4869
+2533 9 2 0 3 4376 4415 4377 4869 4870 4752
+2534 9 2 0 3 4377 4415 4416 4870 4871 4872
+2535 9 2 0 3 4377 4416 4378 4872 4873 4755
+2536 9 2 0 3 4378 4416 4417 4873 4874 4875
+2537 9 2 0 3 4378 4417 4379 4875 4876 4758
+2538 9 2 0 3 4379 4417 4418 4876 4877 4878
+2539 9 2 0 3 4379 4418 4380 4878 4879 4761
+2540 9 2 0 3 4380 4418 4419 4879 4880 4881
+2541 9 2 0 3 4380 4419 4381 4881 4882 4764
+2542 9 2 0 3 4381 4419 4420 4882 4883 4884
+2543 9 2 0 3 4381 4420 4382 4884 4885 4767
+2544 9 2 0 3 4382 4420 4421 4885 4886 4887
+2545 9 2 0 3 4382 4421 4383 4887 4888 4770
+2546 9 2 0 3 4383 4421 4422 4888 4889 4890
+2547 9 2 0 3 4383 4422 4384 4890 4891 4773
+2548 9 2 0 3 4384 4422 4423 4891 4892 4893
+2549 9 2 0 3 4384 4423 4385 4893 4894 4776
+2550 9 2 0 3 4385 4423 4424 4894 4895 4896
+2551 9 2 0 3 4385 4424 4386 4896 4897 4779
+2552 9 2 0 3 4386 4424 4425 4897 4898 4899
+2553 9 2 0 3 4386 4425 353 4899 4900 4782
+2554 9 2 0 3 353 4425 352 4900 4901 357
+2555 9 2 0 3 304 7 4387 308 4902 4784
+2556 9 2 0 3 4387 7 206 4902 245 4903
+2557 9 2 0 3 4387 206 4388 4903 4904 4787
+2558 9 2 0 3 4388 206 207 4904 246 4905
+2559 9 2 0 3 4388 207 4389 4905 4906 4790
+2560 9 2 0 3 4389 207 208 4906 247 4907
+2561 9 2 0 3 4389 208 4390 4907 4908 4793
+2562 9 2 0 3 4390 208 209 4908 248 4909
+2563 9 2 0 3 4390 209 4391 4909 4910 4796
+2564 9 2 0 3 4391 209 210 4910 249 4911
+2565 9 2 0 3 4391 210 4392 4911 4912 4799
+2566 9 2 0 3 4392 210 211 4912 250 4913
+2567 9 2 0 3 4392 211 4393 4913 4914 4802
+2568 9 2 0 3 4393 211 212 4914 251 4915
+2569 9 2 0 3 4393 212 4394 4915 4916 4805
+2570 9 2 0 3 4394 212 213 4916 252 4917
+2571 9 2 0 3 4394 213 4395 4917 4918 4808
+2572 9 2 0 3 4395 213 214 4918 253 4919
+2573 9 2 0 3 4395 214 4396 4919 4920 4811
+2574 9 2 0 3 4396 214 215 4920 254 4921
+2575 9 2 0 3 4396 215 4397 4921 4922 4814
+2576 9 2 0 3 4397 215 216 4922 255 4923
+2577 9 2 0 3 4397 216 4398 4923 4924 4817
+2578 9 2 0 3 4398 216 217 4924 256 4925
+2579 9 2 0 3 4398 217 4399 4925 4926 4820
+2580 9 2 0 3 4399 217 218 4926 257 4927
+2581 9 2 0 3 4399 218 4400 4927 4928 4823
+2582 9 2 0 3 4400 218 219 4928 258 4929
+2583 9 2 0 3 4400 219 4401 4929 4930 4826
+2584 9 2 0 3 4401 219 220 4930 259 4931
+2585 9 2 0 3 4401 220 4402 4931 4932 4829
+2586 9 2 0 3 4402 220 221 4932 260 4933
+2587 9 2 0 3 4402 221 4403 4933 4934 4832
+2588 9 2 0 3 4403 221 222 4934 261 4935
+2589 9 2 0 3 4403 222 4404 4935 4936 4835
+2590 9 2 0 3 4404 222 223 4936 262 4937
+2591 9 2 0 3 4404 223 4405 4937 4938 4838
+2592 9 2 0 3 4405 223 224 4938 263 4939
+2593 9 2 0 3 4405 224 4406 4939 4940 4841
+2594 9 2 0 3 4406 224 225 4940 264 4941
+2595 9 2 0 3 4406 225 4407 4941 4942 4844
+2596 9 2 0 3 4407 225 226 4942 265 4943
+2597 9 2 0 3 4407 226 4408 4943 4944 4847
+2598 9 2 0 3 4408 226 227 4944 266 4945
+2599 9 2 0 3 4408 227 4409 4945 4946 4850
+2600 9 2 0 3 4409 227 228 4946 267 4947
+2601 9 2 0 3 4409 228 4410 4947 4948 4853
+2602 9 2 0 3 4410 228 229 4948 268 4949
+2603 9 2 0 3 4410 229 4411 4949 4950 4856
+2604 9 2 0 3 4411 229 230 4950 269 4951
+2605 9 2 0 3 4411 230 4412 4951 4952 4859
+2606 9 2 0 3 4412 230 231 4952 270 4953
+2607 9 2 0 3 4412 231 4413 4953 4954 4862
+2608 9 2 0 3 4413 231 232 4954 271 4955
+2609 9 2 0 3 4413 232 4414 4955 4956 4865
+2610 9 2 0 3 4414 232 233 4956 272 4957
+2611 9 2 0 3 4414 233 4415 4957 4958 4868
+2612 9 2 0 3 4415 233 234 4958 273 4959
+2613 9 2 0 3 4415 234 4416 4959 4960 4871
+2614 9 2 0 3 4416 234 235 4960 274 4961
+2615 9 2 0 3 4416 235 4417 4961 4962 4874
+2616 9 2 0 3 4417 235 236 4962 275 4963
+2617 9 2 0 3 4417 236 4418 4963 4964 4877
+2618 9 2 0 3 4418 236 237 4964 276 4965
+2619 9 2 0 3 4418 237 4419 4965 4966 4880
+2620 9 2 0 3 4419 237 238 4966 277 4967
+2621 9 2 0 3 4419 238 4420 4967 4968 4883
+2622 9 2 0 3 4420 238 239 4968 278 4969
+2623 9 2 0 3 4420 239 4421 4969 4970 4886
+2624 9 2 0 3 4421 239 240 4970 279 4971
+2625 9 2 0 3 4421 240 4422 4971 4972 4889
+2626 9 2 0 3 4422 240 241 4972 280 4973
+2627 9 2 0 3 4422 241 4423 4973 4974 4892
+2628 9 2 0 3 4423 241 242 4974 281 4975
+2629 9 2 0 3 4423 242 4424 4975 4976 4895
+2630 9 2 0 3 4424 242 243 4976 282 4977
+2631 9 2 0 3 4424 243 4425 4977 4978 4898
+2632 9 2 0 3 4425 243 244 4978 283 4979
+2633 9 2 0 3 4425 244 352 4979 4980 4901
+2634 9 2 0 3 352 244 6 4980 284 356
+2635 9 2 0 4 9 355 187 360 5017 196
+2636 9 2 0 4 187 355 4981 5017 5018 5019
+2637 9 2 0 4 187 4981 188 5019 5020 197
+2638 9 2 0 4 188 4981 4982 5020 5021 5022
+2639 9 2 0 4 188 4982 189 5022 5023 198
+2640 9 2 0 4 189 4982 4983 5023 5024 5025
+2641 9 2 0 4 189 4983 190 5025 5026 199
+2642 9 2 0 4 190 4983 4984 5026 5027 5028
+2643 9 2 0 4 190 4984 191 5028 5029 200
+2644 9 2 0 4 191 4984 4985 5029 5030 5031
+2645 9 2 0 4 191 4985 192 5031 5032 201
+2646 9 2 0 4 192 4985 4986 5032 5033 5034
+2647 9 2 0 4 192 4986 193 5034 5035 202
+2648 9 2 0 4 193 4986 4987 5035 5036 5037
+2649 9 2 0 4 193 4987 194 5037 5038 203
+2650 9 2 0 4 194 4987 4988 5038 5039 5040
+2651 9 2 0 4 194 4988 195 5040 5041 204
+2652 9 2 0 4 195 4988 4989 5041 5042 5043
+2653 9 2 0 4 195 4989 4 5043 5044 205
+2654 9 2 0 4 4 4989 403 5044 5045 408
+2655 9 2 0 4 355 354 4981 359 5046 5018
+2656 9 2 0 4 4981 354 4990 5046 5047 5048
+2657 9 2 0 4 4981 4990 4982 5048 5049 5021
+2658 9 2 0 4 4982 4990 4991 5049 5050 5051
+2659 9 2 0 4 4982 4991 4983 5051 5052 5024
+2660 9 2 0 4 4983 4991 4992 5052 5053 5054
+2661 9 2 0 4 4983 4992 4984 5054 5055 5027
+2662 9 2 0 4 4984 4992 4993 5055 5056 5057
+2663 9 2 0 4 4984 4993 4985 5057 5058 5030
+2664 9 2 0 4 4985 4993 4994 5058 5059 5060
+2665 9 2 0 4 4985 4994 4986 5060 5061 5033
+2666 9 2 0 4 4986 4994 4995 5061 5062 5063
+2667 9 2 0 4 4986 4995 4987 5063 5064 5036
+2668 9 2 0 4 4987 4995 4996 5064 5065 5066
+2669 9 2 0 4 4987 4996 4988 5066 5067 5039
+2670 9 2 0 4 4988 4996 4997 5067 5068 5069
+2671 9 2 0 4 4988 4997 4989 5069 5070 5042
+2672 9 2 0 4 4989 4997 4998 5070 5071 5072
+2673 9 2 0 4 4989 4998 403 5072 5073 5045
+2674 9 2 0 4 403 4998 402 5073 5074 407
+2675 9 2 0 4 354 353 4990 358 5075 5047
+2676 9 2 0 4 4990 353 4999 5075 5076 5077
+2677 9 2 0 4 4990 4999 4991 5077 5078 5050
+2678 9 2 0 4 4991 4999 5000 5078 5079 5080
+2679 9 2 0 4 4991 5000 4992 5080 5081 5053
+2680 9 2 0 4 4992 5000 5001 5081 5082 5083
+2681 9 2 0 4 4992 5001 4993 5083 5084 5056
+2682 9 2 0 4 4993 5001 5002 5084 5085 5086
+2683 9 2 0 4 4993 5002 4994 5086 5087 5059
+2684 9 2 0 4 4994 5002 5003 5087 5088 5089
+2685 9 2 0 4 4994 5003 4995 5089 5090 5062
+2686 9 2 0 4 4995 5003 5004 5090 5091 5092
+2687 9 2 0 4 4995 5004 4996 5092 5093 5065
+2688 9 2 0 4 4996 5004 5005 5093 5094 5095
+2689 9 2 0 4 4996 5005 4997 5095 5096 5068
+2690 9 2 0 4 4997 5005 5006 5096 5097 5098
+2691 9 2 0 4 4997 5006 4998 5098 5099 5071
+2692 9 2 0 4 4998 5006 5007 5099 5100 5101
+2693 9 2 0 4 4998 5007 402 5101 5102 5074
+2694 9 2 0 4 402 5007 401 5102 5103 406
+2695 9 2 0 4 353 352 4999 357 5104 5076
+2696 9 2 0 4 4999 352 5008 5104 5105 5106
+2697 9 2 0 4 4999 5008 5000 5106 5107 5079
+2698 9 2 0 4 5000 5008 5009 5107 5108 5109
+2699 9 2 0 4 5000 5009 5001 5109 5110 5082
+2700 9 2 0 4 5001 5009 5010 5110 5111 5112
+2701 9 2 0 4 5001 5010 5002 5112 5113 5085
+2702 9 2 0 4 5002 5010 5011 5113 5114 5115
+2703 9 2 0 4 5002 5011 5003 5115 5116 5088
+2704 9 2 0 4 5003 5011 5012 5116 5117 5118
+2705 9 2 0 4 5003 5012 5004 5118 5119 5091
+2706 9 2 0 4 5004 5012 5013 5119 5120 5121
+2707 9 2 0 4 5004 5013 5005 5121 5122 5094
+2708 9 2 0 4 5005 5013 5014 5122 5123 5124
+2709 9 2 0 4 5005 5014 5006 5124 5125 5097
+2710 9 2 0 4 5006 5014 5015 5125 5126 5127
+2711 9 2 0 4 5006 5015 5007 5127 5128 5100
+2712 9 2 0 4 5007 5015 5016 5128 5129 5130
+2713 9 2 0 4 5007 5016 401 5130 5131 5103
+2714 9 2 0 4 401 5016 400 5131 5132 405
+2715 9 2 0 4 352 6 5008 356 5133 5105
+2716 9 2 0 4 5008 6 285 5133 294 5134
+2717 9 2 0 4 5008 285 5009 5134 5135 5108
+2718 9 2 0 4 5009 285 286 5135 295 5136
+2719 9 2 0 4 5009 286 5010 5136 5137 5111
+2720 9 2 0 4 5010 286 287 5137 296 5138
+2721 9 2 0 4 5010 287 5011 5138 5139 5114
+2722 9 2 0 4 5011 287 288 5139 297 5140
+2723 9 2 0 4 5011 288 5012 5140 5141 5117
+2724 9 2 0 4 5012 288 289 5141 298 5142
+2725 9 2 0 4 5012 289 5013 5142 5143 5120
+2726 9 2 0 4 5013 289 290 5143 299 5144
+2727 9 2 0 4 5013 290 5014 5144 5145 5123
+2728 9 2 0 4 5014 290 291 5145 300 5146
+2729 9 2 0 4 5014 291 5015 5146 5147 5126
+2730 9 2 0 4 5015 291 292 5147 301 5148
+2731 9 2 0 4 5015 292 5016 5148 5149 5129
+2732 9 2 0 4 5016 292 293 5149 302 5150
+2733 9 2 0 4 5016 293 400 5150 5151 5132
+2734 9 2 0 4 400 293 5 5151 303 404
+$EndElements

=== added file 'examples/FEMxDEM/footing.py'
--- examples/FEMxDEM/footing.py	1970-01-01 00:00:00 +0000
+++ examples/FEMxDEM/footing.py	2015-03-03 19:06:49 +0000
@@ -0,0 +1,81 @@
+""" Author: Ning Guo <ceguo@xxxxxxxxxxxxxx>
+    run `mv footing.yade.gz 0.yade.gz`
+    to generate initial RVE packing
+"""
+from esys.escript import *
+from esys.finley import ReadGmsh
+from esys.weipa import saveVTK
+from esys.escript.pdetools import Projector
+from msFEM import MultiScale
+from saveGauss import saveGauss2D
+import time
+
+vel = -0.00025; surcharge=-20.e3; # surcharge equals to the initial vertical stress of the RVE packing
+dim = 2; B = 0.05; L = 0.6; H = 0.4;
+mydomain = ReadGmsh('footing.msh',numDim=dim,integrationOrder=2)  # read Gmsh mesh with 6-node triangle element (2500 tri6); each element has 3 Gauss points
+k = kronecker(mydomain)
+numg = 3*2500; # number of Gauss points
+nump = 16; # number of processes in multiprocessing
+packNo=range(0,numg,50)
+
+prob = MultiScale(domain=mydomain,ng=numg,np=nump,random=False,rtol=1e-2,usePert=False,pert=-2.e-5,verbose=False)
+
+disp = Vector(0.,Solution(mydomain))
+
+t=0
+stress = prob.getCurrentStress()
+proj = Projector(mydomain)
+sig = proj(stress)
+sig_bounda = interpolate(sig,FunctionOnBoundary(mydomain))
+traction = matrix_mult(sig_bounda,mydomain.getNormal())
+x = mydomain.getX()
+bx = FunctionOnBoundary(mydomain).getX()
+footingBase = whereZero(bx[1]-sup(bx[1]))*whereNonPositive(bx[0]-B)
+tractFoot = traction*footingBase
+forceFoot = integrate(tractFoot,where=FunctionOnBoundary(mydomain))
+lengthFoot = integrate(footingBase,where=FunctionOnBoundary(mydomain))
+fout=file('./result/bearing.dat','w')
+fout.write('0 '+str(forceFoot[0])+' '+str(forceFoot[1])+' '+str(lengthFoot)+'\n')
+
+# Dirichlet BC, rollers at left and right, fixties at bottom, rigid and rough footing
+Dbc = whereZero(x[0])*[1,0]+whereZero(x[0]-sup(x[0]))*[1,0]+whereZero(x[1]-inf(x[1]))*[1,1]+whereZero(x[1]-sup(x[1]))*whereNonPositive(x[0]-B)*[1,1]
+Vbc = whereZero(x[0])*[0,0]+whereZero(x[0]-sup(x[0]))*[0,0]+whereZero(x[1]-inf(x[1]))*[0,0]+whereZero(x[1]-sup(x[1]))*whereNonPositive(x[0]-B)*[0,vel]
+# Neumann BC, surcharge at the rest area of the top surface
+Nbc = whereZero(bx[1]-sup(bx[1]))*wherePositive(bx[0]-B)*[0,surcharge]
+
+time_start = time.time()
+while t < 58: # apply 58 loading step; further loading would abort the program due to severe mesh distortion
+
+   prob.initialize(f=Nbc, specified_u_mask=Dbc, specified_u_val=Vbc)
+   t += 1
+   du=prob.solve(iter_max=100)
+
+   disp += du
+   stress=prob.getCurrentStress()
+   
+   dom = prob.getDomain() # domain updated (Lagrangian)
+   proj = Projector(dom)
+   sig = proj(stress)
+
+   sig_bounda = interpolate(sig,FunctionOnBoundary(dom))
+   traction = matrix_mult(sig_bounda,dom.getNormal())
+   tractFoot = traction*footingBase
+   forceFoot = integrate(tractFoot,where=FunctionOnBoundary(dom))
+   lengthFoot = integrate(footingBase,where=FunctionOnBoundary(dom))
+   fout.write(str(t*vel)+' '+str(forceFoot[0])+' '+str(forceFoot[1])+' '+str(lengthFoot)+'\n')
+      
+   vR=prob.getLocalVoidRatio()
+   rotation=prob.getLocalAvgRotation()
+   fabric=prob.getLocalFabric()
+   strain = prob.getCurrentStrain()
+   saveGauss2D(name='./result/gauss/time_'+str(t)+'.dat',strain=strain,stress=stress,fabric=fabric)
+   volume_strain = trace(strain)
+   dev_strain = symmetric(strain) - volume_strain*k/dim
+   shear = sqrt(2*inner(dev_strain,dev_strain))
+   saveVTK("./result/vtk/footing_%d.vtu"%t,disp=disp,stress=stress,shear=shear,e=vR,rot=rotation)
+
+prob.getCurrentPacking(pos=packNo,time=t,prefix='./result/packing/') # output packing
+time_elapse = time.time() - time_start
+fout.write("#Elapsed time in hours: "+str(time_elapse/3600.)+'\n')   
+fout.close()
+prob.exitSimulation()

=== added file 'examples/FEMxDEM/readme'
--- examples/FEMxDEM/readme	1970-01-01 00:00:00 +0000
+++ examples/FEMxDEM/readme	2015-03-03 19:06:49 +0000
@@ -0,0 +1,26 @@
+The code is built upon two open source packages: Yade (https://launchpad.net/yade) for DEM modules and Escript (https://launchpad.net/escript-finley) for FEM modules. It implements the hierarchical multiscale model for simulating the boundary value problem (BVP) for granular media. FEM is used to discretize the problem domain. Each Gauss point of the FEM mesh is embedded a representative volume element (RVE) packing simulated by DEM. As hundreds to thousands of RVEs are involved in a medium-sized problem which is critically time consuming, parallelization is achieved in the code through either multiprocessing on a supercomputer or mpi4py on a HPC cluster (more efficient but only experimental).
+For the usage of the code please refer to `GuoFEMxDEM.pdf` (https://www.yade-dem.org/w/images/e/e5/GuoFEMxDEM.pdf) and the example scripts in this folder.
+
+Copyright (C) 2015 Ning Guo. Feel free to use and redistribute. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+
+The MPI implementation in the multiscale model is quite experimental. The mpipool.py is contributed by Lisandro Dalcín, the author of mpi4py package, which is used in the code to provide MPI functionality (require MPICH or Open MPI). The mpipool.py file is available from this thread (also included in the code):
+ 
+ https://groups.google.com/forum/#!searchin/mpi4py/mpipool/mpi4py/OJG5eZ2f-Pg/8j-zO5CMGlEJ
+
+Alternatively, I found another package playdoh (https://github.com/rossant/playdoh) is also suitable and easy to use for the distributed computation. It also provides the map function similar to that provided by multiprocessing and mpipool. Thus, it might be conveneitly adapted in the current code. Contributions are welcome to improve the MPI functionality, as it is crucial to extend the multiscale simulation for real large-scale problems. We appreciate it if you find better solutions and contact Ning <ceguo@xxxxxxxxxxxxxx>.
+
+The code is part of the work presented in the following papers:
+
+1. Guo, N. and Zhao, J. (2014) A coupled FEM/DEM approach for hierarchical multiscale modelling of granular media. International Journal for Numerical Methods in Engineering 99(11), 789-818. DOI: 10.1002/nme.4702.
+
+2. Guo, N. (2014) Multiscale characterization of the shear behavior of granular media. PhD Thesis, The Hong Kong University of Science and Technology, Hong Kong.
+
+3. Zhao, J. and Guo, N. (2015) The interplay between anisotropy and strain localisation in granular soils: a multiscale insight. Géotechnique, under review.
+
+4. Guo, N. and Zhao, J. (2015) Multiscale insights into classic geomechanics problems. International Journal for Numerical and Analytical Methods in Geomechanics, under review.
+
+5. Guo, N. and Zhao, J. (2015) Parallel hierarchical multiscale modelling of hydro-mechanical problems for saturated granular soil. International Journal for Numerical Methods in Engineering, in preparation.
+
+6. Guo, N. and Zhao, J. (2015) 3D multiscale analysis of strain localization in granular media. International Journal of Solids and Structures, in preparation.
+
+We appreciate it if you use the code in your publication and cite one or two above references.

=== added file 'examples/FEMxDEM/retainingSmooth.py'
--- examples/FEMxDEM/retainingSmooth.py	1970-01-01 00:00:00 +0000
+++ examples/FEMxDEM/retainingSmooth.py	2015-03-03 19:06:49 +0000
@@ -0,0 +1,89 @@
+""" Author: Ning Guo <ceguo@xxxxxxxxxxxxxx>
+    run `mv retainingSmooth.yade.gz 0.yade.gz`
+    to generate initial RVE packing
+"""
+from esys.escript import *
+from esys.finley import Rectangle
+from esys.weipa import saveVTK
+from esys.escript.pdetools import Projector
+from msFEM2D import MultiScale
+from saveGauss import saveGauss2D
+import time
+
+vel = -0.00017; surcharge=-2.e4; # surcharge equals to the initial vertical stress of the RVE packing; vel<0 passive failure; vel>0 active failure
+B = 0.4; H = 0.2; wallH = 0.17; baseH = H-wallH; # setup dimensions
+nx = 40; ny = 20 # discretization with 40x20 quads
+mydomain = Rectangle(l0=B,l1=H,n0=nx,n1=ny,order=2,integrationOrder=2)
+dim = mydomain.getDim()
+k = kronecker(mydomain)
+numg = 4*nx*ny; nump = 16;
+packNo=range(0,numg,16)
+
+disp = Vector(0.,Solution(mydomain))
+
+prob = MultiScale(domain=mydomain,ng=numg,np=nump,random=False,rtol=1e-2,usePert=False,pert=-2.e-5,verbose=True)
+
+t=0
+time_start = time.time()
+
+x = mydomain.getX()
+bx = FunctionOnBoundary(mydomain).getX()
+left = whereZero(x[0])
+right = whereZero(x[0]-B)
+bottom = whereZero(x[1])
+top = whereZero(bx[1]-H)
+base = whereZero(x[0]-B)*whereNegative(x[1]-baseH)
+wall = whereZero(x[0]-B)*whereNonNegative(x[1]-baseH)
+wallBF = whereZero(bx[0]-B)*whereNonNegative(bx[1]-baseH)
+# Dirichlet BC, all fixed in space except wall (only fixed in x direction, smooth)
+Dbc = left*[1,1]+base*[1,1]+bottom*[1,1]+wall*[1,0]
+Vbc = left*[0,0]+base*[0,0]+bottom*[0,0]+wall*[vel,0]
+# Neumann BC, apply surcharge at the top surface
+Nbc = top*[0,surcharge]
+
+stress = prob.getCurrentStress()
+proj = Projector(mydomain)
+sig = proj(stress)
+sig_bounda = interpolate(sig,FunctionOnBoundary(mydomain))
+traction = matrix_mult(sig_bounda,mydomain.getNormal())
+tract = traction*wallBF # traction on wall
+forceWall = integrate(tract,where=FunctionOnBoundary(mydomain)) # force on wall
+lengthWall = integrate(wallBF,where=FunctionOnBoundary(mydomain))
+fout=file('./result/pressure.dat','w')
+fout.write('0 '+str(forceWall[0])+' '+str(lengthWall)+'\n')
+
+while t < 100:
+
+   prob.initialize(f=Nbc,specified_u_mask=Dbc,specified_u_val=Vbc)
+   t += 1
+   du=prob.solve(iter_max=100)
+
+   disp += du
+   stress=prob.getCurrentStress()
+   
+   dom = prob.getDomain()
+   proj = Projector(dom)
+   sig = proj(stress)
+
+   sig_bounda = interpolate(sig,FunctionOnBoundary(dom))
+   traction = matrix_mult(sig_bounda,dom.getNormal())
+   tract = traction*wallBF
+   forceWall = integrate(tract,where=FunctionOnBoundary(dom))
+   lengthWall = integrate(wallBF,where=FunctionOnBoundary(dom))
+   fout.write(str(t*vel)+' '+str(forceWall[0])+' '+str(lengthWall)+'\n')
+      
+   vR=prob.getLocalVoidRatio()
+   rotation=prob.getLocalAvgRotation()
+   fabric=prob.getLocalFabric()
+   strain = prob.getCurrentStrain()
+   saveGauss2D(name='./result/gauss/time_'+str(t)+'.dat',strain=strain,stress=stress,fabric=fabric)
+   volume_strain = trace(strain)
+   dev_strain = symmetric(strain) - volume_strain*k/dim
+   shear = sqrt(2*inner(dev_strain,dev_strain))
+   saveVTK("./result/vtk/retainingSmooth_%d.vtu"%t,disp=disp,stress=stress,shear=shear,e=vR,rot=rotation)
+
+prob.getCurrentPacking(pos=packNo,time=t,prefix='./result/packing/')
+time_elapse = time.time() - time_start
+fout.write("#Elapsed time in hours: "+str(time_elapse/3600.)+'\n')
+fout.close()
+prob.exitSimulation()

=== added file 'examples/FEMxDEM/triaxialRough.py'
--- examples/FEMxDEM/triaxialRough.py	1970-01-01 00:00:00 +0000
+++ examples/FEMxDEM/triaxialRough.py	2015-03-03 19:06:49 +0000
@@ -0,0 +1,81 @@
+""" Author: Ning Guo <ceguo@xxxxxxxxxxxxxx>
+    run `mv triaxialRough.yade.gz 0.yade.gz`
+    to generate initial RVE packing
+"""
+from esys.escript import *
+from esys.finley import Brick
+from esys.weipa import saveVTK
+from esys.escript.pdetools import Projector
+from msFEM3D import MultiScale
+from saveGauss import saveGauss3D
+import time
+
+vel = -0.0001; confining=-1.e5;
+lx = 0.05; ly = 0.05; lz = 0.1; # sample dimension
+nx = 8; ny = 8; nz = 16; # discretization
+mydomain = Brick(l0=lx,l1=ly,l2=lz,n0=nx,n1=ny,n2=nz,order=2,integrationOrder=2) # 20-noded,8-Gauss hexahedral element
+dim = 3; k = kronecker(mydomain)
+numg = 8*nx*ny*nz; # number of Gauss points
+packNo=range(0,numg,8)
+
+prob = MultiScale(domain=mydomain,ng=numg,useMPI=True,rtol=1e-2) # mpi is activated
+
+disp = Vector(0.,Solution(mydomain))
+
+t=0
+stress = prob.getCurrentStress()
+proj = Projector(mydomain)
+sig = proj(stress)
+sig_bounda = interpolate(sig,FunctionOnBoundary(mydomain))
+traction = matrix_mult(sig_bounda,mydomain.getNormal()) # traction on boundary
+x = mydomain.getX()
+bx = FunctionOnBoundary(mydomain).getX()
+topSurf = whereZero(bx[2]-lz)
+tractTop = traction*topSurf # traction on top surface
+forceTop = integrate(tractTop,where=FunctionOnBoundary(mydomain)) # force on top
+areaTop = integrate(topSurf,where=FunctionOnBoundary(mydomain))
+fout=file('./result/resultant.dat','w')
+fout.write('0 '+str(forceTop[2])+' '+str(areaTop)+'\n')
+
+# Dirichlet BC, rough loading ends
+Dbc = whereZero(x[2])*[1,1,1]+whereZero(x[2]-lz)*[1,1,1]
+Vbc = whereZero(x[2])*[0,0,0]+whereZero(x[2]-lz)*[0,0,vel]
+# Neumann BC, constant lateral confining
+Nbc = whereZero(bx[0])*[-confining,0,0]+whereZero(bx[0]-sup(bx[0]))*[confining,0,0]+whereZero(bx[1])*[0,-confining,0]+whereZero(bx[1]-sup(bx[1]))*[0,confining,0]
+
+time_start = time.time()
+while t < 100:
+
+   prob.initialize(f=Nbc, specified_u_mask=Dbc, specified_u_val=Vbc)
+   t += 1
+   du=prob.solve(iter_max=100)
+
+   disp += du
+   stress=prob.getCurrentStress()
+   
+   dom = prob.getDomain()
+   proj = Projector(dom)
+   sig = proj(stress)
+
+   sig_bounda = interpolate(sig,FunctionOnBoundary(dom))
+   traction = matrix_mult(sig_bounda,dom.getNormal())
+   tractTop = traction*topSurf
+   forceTop = integrate(tractTop,where=FunctionOnBoundary(dom))
+   areaTop = integrate(topSurf,where=FunctionOnBoundary(dom))
+   fout.write(str(t*vel/lz)+' '+str(forceTop[2])+' '+str(areaTop)+'\n')
+      
+   vR=prob.getLocalVoidRatio()
+   rotation=prob.getLocalAvgRotation()
+   fabric=prob.getLocalFabric()
+   strain = prob.getCurrentStrain()
+   saveGauss3D(name='./result/gauss/time_'+str(t)+'.dat',strain=strain,stress=stress,fabric=fabric)
+   volume_strain = trace(strain)
+   dev_strain = symmetric(strain) - volume_strain*k/dim
+   shear = sqrt(2./3.*inner(dev_strain,dev_strain))
+   saveVTK("./result/vtk/triaxialRough_%d.vtu"%t,disp=disp,shear=shear,e=vR,rot=rotation)
+   
+prob.getCurrentPacking(pos=packNo,time=t,prefix='./result/packing/')
+time_elapse = time.time() - time_start
+fout.write("#Elapsed time in hours: "+str(time_elapse/3600.)+'\n')   
+fout.close()
+prob.exitSimulation()

=== added file 'examples/FEMxDEM/undrain.py'
--- examples/FEMxDEM/undrain.py	1970-01-01 00:00:00 +0000
+++ examples/FEMxDEM/undrain.py	2015-03-03 19:06:49 +0000
@@ -0,0 +1,86 @@
+""" Author: Ning Guo <ceguo@xxxxxxxxxxxxxx>
+    run `mv undrain.yade.gz 0.yade.gz`
+    to generate initial RVE packing
+"""
+from esys.escript import *
+from esys.finley import Rectangle
+from esys.weipa import saveVTK
+from esys.escript.pdetools import Projector
+from msFEMup import MultiScale
+from saveGauss import saveGauss2D
+import time
+
+confining = -2.e5; pore = 1.e5 # initial pore pressure
+perm = 0.001**2/(180.*8.9e-4); # unscaled permeability, using KC equation
+kf = 2.2e9 # fluid bulk modulus
+dt = .1; vel = -0.0001 # time step and loading speed
+lx = 0.05; ly = 0.1 # sample dimension
+nx = 8; ny = 16 # discretization
+mydomain = Rectangle(l0=lx,l1=ly,n0=nx,n1=ny,order=2,integrationOrder=2)
+k = kronecker(mydomain); dim = 2.
+numg = 4*nx*ny; # no. of Gauss points
+mpi = True # use MPI
+
+prob = MultiScale(domain=mydomain,pore0=pore,perm=perm,kf=kf,dt=dt,ng=numg,useMPI=mpi,rtol=1.e-2)
+disp = Vector(0.,Solution(mydomain))
+t = 0
+ux = mydomain.getX() # disp. node coordinate
+px = ReducedSolution(mydomain).getX() # press. node coordinate
+bx = FunctionOnBoundary(mydomain).getX()
+topSurf = whereZero(bx[1]-ly)
+uDbc = whereZero(ux[1])*[0,1]+whereZero(ux[0]-lx/2.)*whereZero(ux[1])*[1,1]+whereZero(ux[1]-ly)*[0,1] # disp. Dirichlet BC mask
+vDbc = whereZero(ux[1])*[0,0]+whereZero(ux[0]-lx/2.)*whereZero(ux[1])*[0,0]+whereZero(ux[1]-ly)*[0,vel*dt] # disp. Dirichlet BC value
+uNbc = whereZero(bx[0])*[-confining,0]+whereZero(bx[0]-lx)*[confining,0] # disp. Neumann BC
+
+stress = prob.getCurrentStress() # effective stress at GP
+proj = Projector(mydomain)
+sig = proj(stress) # effective stress at node (reduced)
+sig_bound = interpolate(sig,FunctionOnBoundary(mydomain))
+traction = matrix_mult(sig_bound,mydomain.getNormal())
+tractTop = traction*topSurf
+forceTop = integrate(tractTop,where=FunctionOnBoundary(mydomain))
+lengthTop = integrate(topSurf,where=FunctionOnBoundary(mydomain))
+fout = file('./result/resultantForce.dat','w')
+fout.write('0 '+str(forceTop[1])+' '+str(lengthTop)+'\n')
+
+time_start = time.time()
+while t < 400:
+   prob.initialize(f=uNbc,umsk=uDbc,uvalue=vDbc)
+   t += 1
+   du = prob.solve(globalIter=10,solidIter=50)
+   disp += du
+   pore = prob.getCurrentPore() # pore pressure at node (reduced)
+   flux = prob.getCurrentFlux() # Darcy flux at GP
+   stress = prob.getCurrentStress() # effective stress at GP
+   strain = prob.getCurrentStrain() # disp. grad at GP
+   volume_strain = trace(strain) # volumetric strain
+   dev_strain = symmetric(strain) - volume_strain*k/dim # deviatoric strain
+   shear = sqrt(2.*inner(dev_strain,dev_strain)) # shear strain
+   fab = prob.getLocalFabric() # fabric tensor at GP
+   dev_fab = 4.*(fab-trace(fab)/dim*k)
+   anis = sqrt(.5*inner(dev_fab,dev_fab))
+   p = prob.getEquivalentPorosity() # porosity at GP
+   rot = prob.getLocalAvgRotation() # average rotation at GP
+   saveGauss2D(name='./result/gauss/time_'+str(t)+'.dat',strain=strain,fabric=fab,stress=stress)
+   dom = prob.getDomain() # domain updated (Lagrangian)
+   proj = Projector(dom)
+   flux = proj(flux) # Darcy flux at node (reduced)
+   p = proj(p) # porosity at node (reduced)
+   shear = proj(shear) # shear strain at node (reduced)
+   anis = proj(anis)
+   rot = proj(rot)
+   saveVTK("./result/vtk/undrain_%d.vtu"%t,disp=disp,pore=pore,flux=flux,shear=shear,p=p,anis=anis,rot=rot)
+   sig = proj(stress) # effective stress at node (reduced)
+   sig_bound = interpolate(sig,FunctionOnBoundary(dom))
+   traction = matrix_mult(sig_bound,dom.getNormal())
+   tractTop = traction*topSurf
+   forceTop = integrate(tractTop,where=FunctionOnBoundary(dom))
+   lengthTop = integrate(topSurf,where=FunctionOnBoundary(dom))
+   fout.write(str(t*vel*dt/ly)+' '+str(forceTop[1])+' '+str(lengthTop)+'\n')
+
+prob.getCurrentPacking(time=t,prefix='./result/packing/')
+time_elapse = time.time() - time_start
+fout.write('#Elapsed time in hours: '+str(time_elapse/3600.)+'\n')
+fout.close()
+prob.exitSimulation()
+

=== modified file 'pkg/dem/Shop.hpp'
--- pkg/dem/Shop.hpp	2015-02-06 17:07:21 +0000
+++ pkg/dem/Shop.hpp	2015-03-03 19:06:49 +0000
@@ -149,5 +149,11 @@
 		
 		/* \todo implement groupMask */
 		static py::tuple aabbExtrema(Real cutoff=0.0, bool centers=false);
+		
+		//! evaluation of 2D quantities
+		static Real getSpheresVolume2D(const shared_ptr<Scene>& rb=shared_ptr<Scene>(), int mask=-1);
+		static Real getVoidRatio2D(const shared_ptr<Scene>& rb=shared_ptr<Scene>(),Real zlen=1);
+		//! get stress tensor and tangent operator tensor for FEMxDEM coupling. By Ning Guo
+		static py::tuple getStressAndTangent(Real volume=0, bool symmetry=true);
 };
 

=== modified file 'pkg/dem/Shop_02.cpp'
--- pkg/dem/Shop_02.cpp	2015-02-06 17:07:21 +0000
+++ pkg/dem/Shop_02.cpp	2015-03-03 19:06:49 +0000
@@ -622,3 +622,93 @@
 	Vector3r dim=maximum-minimum;
 	return py::make_tuple(Vector3r(minimum+.5*cutoff*dim),Vector3r(maximum-.5*cutoff*dim));
 }
+
+/*! Added function for 2D calculation: sphere volume. Optional. By Ning Guo */
+Real Shop::getSpheresVolume2D(const shared_ptr<Scene>& _scene, int mask){
+	const shared_ptr<Scene> scene=(_scene?_scene:Omega::instance().getScene());
+	Real vol=0;
+	FOREACH(shared_ptr<Body> b, *scene->bodies){
+		if (!b || !b->isDynamic()) continue;
+		Sphere* s=dynamic_cast<Sphere*>(b->shape.get());
+		if((!s) or ((mask>0) and ((b->groupMask & mask)==0))) continue;
+		vol += Mathr::PI*pow(s->radius,2);
+	}
+	return vol;
+}
+
+/*! Added function for 2D calculation: void ratio. Optional. By Ning Guo */
+Real Shop::getVoidRatio2D(const shared_ptr<Scene>& _scene, Real _zlen){
+	const shared_ptr<Scene> scene=(_scene?_scene:Omega::instance().getScene());
+	Real V;
+	if(!scene->isPeriodic){
+		throw std::invalid_argument("utils.voidratio2D applies only to aperiodic simulations.");
+	} else {
+		V=scene->cell->getVolume()/_zlen;
+	}
+	Real Vs=Shop::getSpheresVolume2D();
+	return (V-Vs)/Vs;
+}
+
+/*! Added function to get stress tensor and tangent operator tensor. By Ning Guo */
+py::tuple Shop::getStressAndTangent(Real volume, bool symmetry){
+	Scene* scene=Omega::instance().getScene().get();
+	if (volume==0) volume = scene->isPeriodic?scene->cell->hSize.determinant():1;
+	Matrix3r stress = Matrix3r::Zero();
+	Matrix6r tangent = Matrix6r::Zero();
+	const bool isPeriodic = scene->isPeriodic;
+	FOREACH(const shared_ptr<Interaction>& I, *scene->interactions){
+		if(!I->isReal()) continue;
+		shared_ptr<Body> b1 = Body::byId(I->getId1(),scene);
+		shared_ptr<Body> b2 = Body::byId(I->getId2(),scene);
+		Vector3r pos1 = Vector3r::Zero();
+		Vector3r pos2 = Vector3r::Zero();
+		if(b1->isClumpMember()) {
+			pos1 = Body::byId(b1->clumpId,scene)->state->pos;
+		}
+		else {
+			pos1 = b1->state->pos;
+		}
+		if(b2->isClumpMember()) {
+			pos2 = Body::byId(b2->clumpId,scene)->state->pos;
+		}
+		else {
+			pos2 = b2->state->pos;
+		}
+		Vector3r branch=pos1 - pos2;
+		if (isPeriodic) branch -= scene->cell->hSize*I->cellDist.cast<Real>();
+		NormShearPhys* nsi=YADE_CAST<NormShearPhys*>(I->phys.get());
+		Real kN=nsi->kn; Real kT=nsi->ks;
+		GenericSpheresContact* geom=YADE_CAST<GenericSpheresContact*>(I->geom.get());
+		const Vector3r& n=geom->normal;
+		const Vector3r& fT=nsi->shearForce;
+		const Vector3r& fTotal=nsi->normalForce+nsi->shearForce;
+		Real T=fT.norm();
+		bool hasShear=(T>0);
+		Vector3r t(Vector3r::Zero()); if(hasShear) t=fT/T;
+		stress += fTotal*branch.transpose();
+		tangent(0,0) += kN*n[0]*branch[0]*n[0]*branch[0]+kT*t[0]*branch[0]*t[0]*branch[0];
+		tangent(0,1) += kN*n[0]*branch[0]*n[1]*branch[1]+kT*t[0]*branch[0]*t[1]*branch[1];
+		tangent(0,2) += kN*n[0]*branch[0]*n[2]*branch[2]+kT*t[0]*branch[0]*t[2]*branch[2];
+                tangent(0,3) += kN*n[0]*branch[0]*(n[1]*branch[2]+n[2]*branch[1])*0.5+kT*t[0]*branch[0]*(t[1]*branch[2]+t[2]*branch[1])*0.5;
+                tangent(0,4) += kN*n[0]*branch[0]*(n[0]*branch[2]+n[2]*branch[0])*0.5+kT*t[0]*branch[0]*(t[0]*branch[2]+t[2]*branch[0])*0.5;
+                tangent(0,5) += kN*n[0]*branch[0]*(n[0]*branch[1]+n[1]*branch[0])*0.5+kT*t[0]*branch[0]*(t[0]*branch[1]+t[1]*branch[0])*0.5;
+		tangent(1,1) += kN*n[1]*branch[1]*n[1]*branch[1]+kT*t[1]*branch[1]*t[1]*branch[1];
+		tangent(1,2) += kN*n[1]*branch[1]*n[2]*branch[2]+kT*t[1]*branch[1]*t[2]*branch[2];
+                tangent(1,3) += kN*n[1]*branch[1]*(n[1]*branch[2]+n[2]*branch[1])*0.5+kT*t[1]*branch[1]*(t[1]*branch[2]+t[2]*branch[1])*0.5;
+                tangent(1,4) += kN*n[1]*branch[1]*(n[0]*branch[2]+n[2]*branch[0])*0.5+kT*t[1]*branch[1]*(t[0]*branch[2]+t[2]*branch[0])*0.5;
+                tangent(1,5) += kN*n[1]*branch[1]*(n[0]*branch[1]+n[1]*branch[0])*0.5+kT*t[1]*branch[1]*(t[0]*branch[1]+t[1]*branch[0])*0.5;
+		tangent(2,2) += kN*n[2]*branch[2]*n[2]*branch[2]+kT*t[2]*branch[2]*t[2]*branch[2];
+                tangent(2,3) += kN*n[2]*branch[2]*(n[1]*branch[2]+n[2]*branch[1])*0.5+kT*t[2]*branch[2]*(t[1]*branch[2]+t[2]*branch[1])*0.5;
+                tangent(2,4) += kN*n[2]*branch[2]*(n[0]*branch[2]+n[2]*branch[0])*0.5+kT*t[2]*branch[2]*(t[0]*branch[2]+t[2]*branch[0])*0.5;
+                tangent(2,5) += kN*n[2]*branch[2]*(n[0]*branch[1]+n[1]*branch[0])*0.5+kT*t[2]*branch[2]*(t[0]*branch[1]+t[1]*branch[0])*0.5;
+                tangent(3,3) += kN*(n[1]*branch[2]*n[1]*branch[2]+n[1]*branch[2]*n[2]*branch[1]*2+n[2]*branch[1]*n[2]*branch[1])*0.25+kT*(t[1]*branch[2]*t[1]*branch[2]+t[1]*branch[2]*t[2]*branch[1]*2+t[2]*branch[1]*t[2]*branch[1])*0.25;
+                tangent(3,4) += kN*(n[1]*branch[2]*n[0]*branch[2]+n[1]*branch[2]*n[2]*branch[0]+n[2]*branch[1]*n[0]*branch[2]+n[2]*branch[1]*n[2]*branch[0])*0.25+kT*(t[1]*branch[2]*t[0]*branch[2]+t[1]*branch[2]*t[2]*branch[0]+t[2]*branch[1]*t[0]*branch[2]+t[2]*branch[1]*t[2]*branch[0])*0.25;
+                tangent(3,5) += kN*(n[1]*branch[2]*n[0]*branch[1]+n[1]*branch[2]*n[1]*branch[0]+n[2]*branch[1]*n[0]*branch[1]+n[2]*branch[1]*n[1]*branch[0])*0.25+kT*(t[1]*branch[2]*t[0]*branch[1]+t[1]*branch[2]*t[1]*branch[0]+t[2]*branch[1]*t[0]*branch[1]+t[2]*branch[1]*t[1]*branch[0])*0.25;
+                tangent(4,4) += kN*(n[0]*branch[2]*n[0]*branch[2]+n[0]*branch[2]*n[2]*branch[0]*2+n[2]*branch[0]*n[2]*branch[0])*0.25+kT*(t[0]*branch[2]*t[0]*branch[2]+t[0]*branch[2]*t[2]*branch[0]*2+t[2]*branch[0]*t[2]*branch[0])*0.25;
+                tangent(4,5) += kN*(n[0]*branch[2]*n[0]*branch[1]+n[0]*branch[2]*n[1]*branch[0]+n[2]*branch[0]*n[0]*branch[1]+n[2]*branch[0]*n[1]*branch[0])*0.25+kT*(t[0]*branch[2]*t[0]*branch[1]+t[0]*branch[2]*t[1]*branch[0]+t[2]*branch[0]*t[0]*branch[1]+t[2]*branch[0]*t[1]*branch[0])*0.25;
+                tangent(5,5) += kN*(n[0]*branch[1]*n[0]*branch[1]+n[0]*branch[1]*n[1]*branch[0]*2+n[1]*branch[0]*n[1]*branch[0])*0.25+kT*(t[0]*branch[1]*t[0]*branch[1]+t[0]*branch[1]*t[1]*branch[0]*2+t[1]*branch[0]*t[1]*branch[0])*0.25;
+	}
+	stress/=volume;
+	tangent/=volume;
+	return py::make_tuple(stress,tangent);
+}

=== modified file 'py/CMakeLists.txt'
--- py/CMakeLists.txt	2014-08-04 16:38:31 +0000
+++ py/CMakeLists.txt	2015-03-03 19:06:49 +0000
@@ -26,6 +26,8 @@
 INSTALL(FILES ${filesPYTests} DESTINATION ${YADE_PY_PATH}/yade/tests)
 FILE(GLOB filesPYPerf "${CMAKE_CURRENT_SOURCE_DIR}/../examples/test/performance/*")
 INSTALL(FILES ${filesPYPerf} DESTINATION ${YADE_PY_PATH}/yade/tests/checks/performance)
+FILE(GLOB filesFEMxDEM "${CMAKE_CURRENT_SOURCE_DIR}/FEMxDEM/*.py")
+INSTALL(FILES ${filesFEMxDEM} DESTINATION ${YADE_PY_PATH}/yade/FEMxDEM)
 ADD_LIBRARY(WeightedAverage2d SHARED "${CMAKE_CURRENT_SOURCE_DIR}/WeightedAverage2d.cpp")
 SET_TARGET_PROPERTIES(WeightedAverage2d PROPERTIES PREFIX "")
 INSTALL(TARGETS WeightedAverage2d DESTINATION "${YADE_PY_PATH}/yade/")

=== added directory 'py/FEMxDEM'
=== added file 'py/FEMxDEM/mpipool.py'
--- py/FEMxDEM/mpipool.py	1970-01-01 00:00:00 +0000
+++ py/FEMxDEM/mpipool.py	2015-03-03 19:06:49 +0000
@@ -0,0 +1,69 @@
+__contributor__="Lisandro Dalcín"
+""" MPIPool wrapped using mpi4py """
+#import mpi4py
+#mpi4py.rc.threaded = False
+from mpi4py import MPI
+
+class MPIPool(object):
+
+    def __init__(self, comm=None, master=0):
+        self.comm = MPI.COMM_WORLD if comm is None else comm
+        self.master = master
+        self.workers = set(range(self.comm.size))
+        self.workers.discard(self.master)
+
+    def is_master(self):
+        return self.master == self.comm.rank
+
+    def is_worker(self):
+        return self.comm.rank in self.workers
+
+    def map(self, function, iterable):
+        assert self.is_master()
+
+        comm = self.comm
+        workerset = self.workers.copy()
+        tasklist = [(tid, (function, arg)) for tid, arg in enumerate(iterable)]
+        resultlist = [None] * len(tasklist)
+        pending = len(tasklist)
+
+        while pending:
+
+            if workerset and tasklist:
+                worker = workerset.pop()
+                taskid, task = tasklist.pop()
+                comm.send(task, dest=worker, tag=taskid)
+
+            if tasklist:
+                flag = comm.Iprobe(source=MPI.ANY_SOURCE, tag=MPI.ANY_TAG)
+                if not flag: continue
+            else:
+                comm.Probe(source=MPI.ANY_SOURCE, tag=MPI.ANY_TAG)
+
+            status = MPI.Status()
+            result = comm.recv(source=MPI.ANY_SOURCE, tag=MPI.ANY_TAG, status=status)
+            worker = status.source
+            workerset.add(worker)
+            taskid = status.tag
+            resultlist[taskid] = result
+            pending -= 1
+
+        return resultlist
+
+    def start(self):
+        if not self.is_worker(): return
+        comm = self.comm
+        master = self.master
+        status = MPI.Status()
+        while True:
+            task = comm.recv(source=master, tag=MPI.ANY_TAG, status=status)
+            if task is None: break
+            function, arg = task
+            result = function(arg)
+            comm.ssend(result, master, status.tag)
+
+    def close(self):
+        if not self.is_master(): return
+        for worker in self.workers:
+            self.comm.send(None, worker, 0)
+

=== added file 'py/FEMxDEM/msFEM2D.py'
--- py/FEMxDEM/msFEM2D.py	1970-01-01 00:00:00 +0000
+++ py/FEMxDEM/msFEM2D.py	2015-03-03 19:06:49 +0000
@@ -0,0 +1,261 @@
+__author__="Ning Guo, ceguo@xxxxxxxxxxxxxx"
+__supervisor__="Jidong Zhao, jzhao@xxxxxx"
+__institution__="The Hong Kong University of Science and Technology"
+
+""" 2D model for multiscale simulation
+which implements a Newton-Raphson scheme
+into FEM framework to solve the nonlinear
+problem where the tangent operator is obtained
+from DEM simulation by calling simDEM modules"""
+
+# import Escript modules
+import esys.escript as escript
+from esys.escript import util
+from esys.escript.linearPDEs import LinearPDE,SolverOptions
+# import YADE modules
+from simDEM import *
+# other python modules
+from itertools import repeat
+
+""" function to return pool for parallelization
+    supporting both MPI (experimental) on distributed
+    memory and multiprocessing on shared memory.
+"""
+def get_pool(mpi=False,threads=1):
+   if mpi: # using MPI
+      from mpipool import MPIPool
+      pool = MPIPool()
+      pool.start()
+      if not pool.is_master():
+         sys.exit(0)
+   elif threads>1: # using multiprocessing
+      from multiprocessing import Pool
+      pool = Pool(processes=threads)
+   else:
+      raise RuntimeError,"Wrong arguments: either mpi=True or threads>1."
+   return pool
+
+class MultiScale(object):
+   """
+   problem description:
+   -(A_{ijkl} u_{k,l})_{,j} = -X_{ij,j} + Y_i
+   Neumann boundary: n_j A_{ijkl} u_{k,l} = n_j X_{ij} + y_i
+   Dirichlet boundary: u_i = r_i where q_i > 0
+   :var u: unknown vector, displacement
+   :var A: elastic tensor / tangent operator
+   :var X: old/current stress tensor
+   :var Y: vector, body force
+   :var y: vector, Neumann bc traction
+   :var q: vector, Dirichlet bc mask
+   :var r: vector, Dirichlet bc value
+   """
+   def __init__(self,domain,ng=1,useMPI=False,np=1,random=False,rtol=1.e-2,usePert=False,pert=-2.e-6,verbose=False):
+      """
+      initialization of the problem, i.e. model constructor
+      :param domain: type Domain, domain of the problem
+      :param ng: type integer, number of Gauss points
+      :param useMPI: type boolean, use MPI or not
+      :param np: type integer, number of processors
+      :param random: type boolean, if or not use random density field
+      :param rtol: type float, relevative tolerance for global convergence
+      :param usePert: type boolean, if or not use perturbation method
+      :param pert: type float, perturbated strain applied to DEM to obtain tangent operator
+      :param verbose: type boolean, if or not print messages during calculation
+      """
+      self.__domain=domain
+      self.__pde=LinearPDE(domain,numEquations=self.__domain.getDim(),numSolutions=self.__domain.getDim())
+      self.__pde.getSolverOptions().setSolverMethod(SolverOptions.DIRECT)
+      self.__pde.setSymmetryOn()
+      #self.__pde.getSolverOptions().setTolerance(rtol**2)
+      #self.__pde.getSolverOptions().setPackage(SolverOptions.UMFPACK)
+      self.__numGaussPoints=ng
+      self.__rtol=rtol
+      self.__usepert=usePert
+      self.__pert=pert
+      self.__verbose=verbose
+      self.__pool=get_pool(mpi=useMPI,threads=np)
+      self.__scenes=self.__pool.map(initLoad,range(ng))
+      self.__strain=escript.Tensor(0,escript.Function(self.__domain))
+      self.__stress=escript.Tensor(0,escript.Function(self.__domain))
+      self.__S=escript.Tensor4(0,escript.Function(self.__domain))
+      
+      if self.__usepert:
+         s = self.__pool.map(getStressTensor,self.__scenes)
+         t = self.__pool.map(getTangentOperator,zip(self.__scenes,repeat(pert)))
+         for i in xrange(ng):
+            self.__stress.setValueOfDataPoint(i,s[i])
+            self.__S.setValueOfDataPoint(i,t[i])
+      else:
+         st = self.__pool.map(getStressAndTangent2D,self.__scenes)
+         for i in xrange(ng):
+            self.__stress.setValueOfDataPoint(i,st[i][0])
+            self.__S.setValueOfDataPoint(i,st[i][1])
+                     
+   def initialize(self, b=escript.Data(), f=escript.Data(), specified_u_mask=escript.Data(), specified_u_val=escript.Data()):
+      """
+      initialize the model for each time step, e.g. assign parameters
+      :param b: type vector, body force on FunctionSpace, e.g. gravity
+      :param f: type vector, boundary traction on FunctionSpace (FunctionOnBoundary)
+      :param specified_u_mask: type vector, mask of location for Dirichlet boundary
+      :param specified_u_val: type vector, specified displacement for Dirichlet boundary
+      """
+      self.__pde.setValue(Y=b,y=f,q=specified_u_mask,r=specified_u_val)
+      
+   def getDomain(self):
+      """
+      return model domain
+      """
+      return self.__domain
+      
+   def getRelTolerance(self):
+      """
+      return relative tolerance for convergence
+      type float
+      """
+      return self.__rtol
+  
+   def getCurrentPacking(self,pos=(),time=0,prefix=''):
+      if len(pos) == 0:
+         # output all Gauss points packings
+         self.__pool.map(outputPack,zip(self.__scenes,repeat(time),repeat(prefix)))
+      else:
+         # output selected Gauss points packings
+         scene = [self.__scenes[i] for i in pos]
+         self.__pool.map(outputPack,zip(scene,repeat(time),repeat(prefix)))
+   
+   def getLocalVoidRatio(self):
+      void=escript.Scalar(0,escript.Function(self.__domain))
+      e = self.__pool.map(getVoidRatio2D,self.__scenes)
+      for i in xrange(self.__numGaussPoints):
+         void.setValueOfDataPoint(i,e[i])
+      return void
+   
+   def getLocalAvgRotation(self):
+      rot=escript.Scalar(0,escript.Function(self.__domain))
+      r = self.__pool.map(avgRotation2D,self.__scenes)
+      for i in xrange(self.__numGaussPoints):
+         rot.setValueOfDataPoint(i,r[i])
+      return rot
+   
+   def getLocalFabric(self):
+      fabric=escript.Tensor(0,escript.Function(self.__domain))
+      f = self.__pool.map(getFabric2D,self.__scenes)
+      for i in xrange(self.__numGaussPoints):
+         fabric.setValueOfDataPoint(i,f[i])
+      return fabric
+   
+   """ used for clumped particle model only
+   def getLocalParOriFab(self):
+      fabric=escript.Tensor(0,escript.Function(self.__domain))
+      f = self.__pool.map(getParOriFabric,self.__scenes)
+      for i in xrange(self.__numGaussPoints):
+         fabric.setValueOfDataPoint(i,f[i])
+      return fabric
+   """
+   
+   """ used for cohesive particle model only
+   def getLocalBondBreakage(self,oriIntr=[]):
+      debond = escript.Scalar(0,escript.Function(self.__domain))
+      num = self.__pool.map(getDebondingNumber,zip(self.__scenes,repeat(oriIntr)))
+      for i in xrange(self.__numGaussPoints):
+         debond.setValueOfDataPoint(i,num[i])
+      return debond
+   """
+      
+   def getCurrentTangent(self):
+      """
+      return current tangent operator
+      type Tensor4 on FunctionSpace
+      """
+      return self.__S
+      
+   def getCurrentStress(self):
+      """
+      return current stress
+      type: Tensor on FunctionSpace
+      """
+      return self.__stress
+      
+   def getCurrentStrain(self):
+      """
+      return current strain
+      type: Tensor on FunctionSpace
+      """
+      return self.__strain
+   
+   def exitSimulation(self):
+      """finish the whole simulation, exit"""
+      self.__pool.close()
+   
+   def solve(self, iter_max=100):
+      """
+      solve the equation using Newton-Ralphson scheme
+      """
+      iterate=0
+      rtol=self.getRelTolerance()
+      stress=self.getCurrentStress()
+      s=self.getCurrentTangent()
+      x_safe=self.__domain.getX()
+      self.__pde.setValue(A=s, X=-stress)
+      #residual0=util.L2(self.__pde.getRightHandSide()) # using force error
+      u=self.__pde.getSolution()  # trial solution, displacement
+      D=util.grad(u)              # trial strain tensor
+      # !!!!!! obtain stress and tangent operator from DEM part
+      update_stress,update_s,update_scenes=self.applyStrain_getStressTangentDEM(st=D)
+      err=1.0 # initial error before iteration
+      converged=(err<rtol)
+      while (not converged) and (iterate<iter_max):
+         if self.__verbose:
+            print "Not converged after %d iteration(s)! Relative error: %e"%(iterate,err)
+         iterate+=1
+         self.__domain.setX(x_safe+u)
+         self.__pde.setValue(A=update_s,X=-update_stress,r=escript.Data())
+         #residual=util.L2(self.__pde.getRightHandSide())
+         du=self.__pde.getSolution()
+         u+=du
+         l,d=util.L2(u),util.L2(du)
+         err=d/l # displacement error, alternatively using force error 'residual'
+         converged=(err<rtol)
+         if err>rtol*0.001: # only update DEM parts when error is large enough
+            self.__domain.setX(x_safe)
+            D=util.grad(u)
+            update_stress,update_s,update_scenes=self.applyStrain_getStressTangentDEM(st=D)
+
+         #if err>err_safe: # to ensure consistent convergence, however this may not be achieved due to fluctuation!
+         #   raise RuntimeError,"No improvement of convergence with iterations! Relative error: %e"%err
+      """
+      update 'domain geometry', 'stress', 'tangent operator',
+      'accumulated strain' and 'simulation scenes'.
+      """
+      self.__domain.setX(x_safe+u)
+      self.__stress=update_stress
+      self.__S=update_s
+      self.__strain+=D
+      self.__scenes=update_scenes
+      if self.__verbose:
+         print "Convergence reached after %d iteration(s)! Relative error: %e"%(iterate,err)
+      return u
+      
+   """
+   apply strain to DEM packing,
+   get stress and tangent operator (including two methods)
+   """
+   def applyStrain_getStressTangentDEM(self,st=escript.Data()):
+      st = st.toListOfTuples()
+      st = numpy.array(st).reshape(-1,4)
+      stress = escript.Tensor(0,escript.Function(self.__domain))
+      S = escript.Tensor4(0,escript.Function(self.__domain))
+      scenes = self.__pool.map(shear2D,zip(self.__scenes,st))
+      if self.__usepert:
+         s = self.__pool.map(getStressTensor,scenes)
+         t = self.__pool.map(getTangentOperator,zip(scenes,repeat(self.__pert)))
+         for i in xrange(self.__numGaussPoints):
+            stress.setValueOfDataPoint(i,s[i])
+            S.setValueOfDataPoint(i,t[i])
+      else:
+         ST = self.__pool.map(getStressAndTangent2D,scenes)
+         for i in xrange(self.__numGaussPoints):
+            stress.setValueOfDataPoint(i,ST[i][0])
+            S.setValueOfDataPoint(i,ST[i][1])
+      return stress,S,scenes
+      

=== added file 'py/FEMxDEM/msFEM3D.py'
--- py/FEMxDEM/msFEM3D.py	1970-01-01 00:00:00 +0000
+++ py/FEMxDEM/msFEM3D.py	2015-03-03 19:06:49 +0000
@@ -0,0 +1,223 @@
+__author__="Ning Guo, ceguo@xxxxxxxxxxxxxx"
+__supervisor__="Jidong Zhao, jzhao@xxxxxx"
+__institution__="The Hong Kong University of Science and Technology"
+
+""" 3D model for multiscale simulation
+which implements a Newton-Raphson scheme
+into FEM framework to solve the nonlinear
+problem where the tangent operator is obtained
+from DEM simulation by calling simDEM modules"""
+
+""" import Escript modules """
+import esys.escript as escript
+from esys.escript import util
+from esys.escript.linearPDEs import LinearPDE,SolverOptions
+from simDEM import *
+from itertools import repeat
+
+""" function to return pool for parallelization
+    supporting both MPI (experimental) on distributed
+    memory and multiprocessing on shared memory.
+"""
+def get_pool(mpi=False,threads=1):
+   if mpi: # using MPI
+      from mpipool import MPIPool
+      pool = MPIPool()
+      pool.start()
+      if not pool.is_master():
+         sys.exit(0)
+   elif threads>1: # using multiprocessing
+      from multiprocessing import Pool
+      pool = Pool(processes=threads)
+   else:
+      raise RuntimeError,"Wrong arguments: either mpi=True or threads>1."
+   return pool
+
+class MultiScale(object):
+   """
+   problem description:
+   -(A_{ijkl} u_{k,l})_{,j} = -X_{ij,j} + Y_i
+   Neumann boundary: n_j A_{ijkl} u_{k,l} = n_j X_{ij} + y_i
+   Dirichlet boundary: u_i = r_i where q_i > 0
+   :var u: unknown vector, displacement
+   :var A: elastic tensor / tangent operator
+   :var X: old/current stress tensor
+   :var Y: vector, body force
+   :var y: vector, Neumann bc traction
+   :var q: vector, Dirichlet bc mask
+   :var r: vector, Dirichlet bc value
+   """
+   def __init__(self,domain,ng=1,useMPI=False,np=1,random=False,rtol=1.e-2,verbose=False):
+      """
+      initialization of the problem, i.e. model constructor
+      :param domain: type Domain, domain of the problem
+      :param ng: type integer, number of Gauss points
+      :param useMPI: type boolean, use MPI or not
+      :param np: type integer, number of processors
+      :param random: type boolean, if or not use random density field
+      :param rtol: type float, relevant tolerance for global convergence
+      :param verbose: type boolean, if or not print messages during calculation
+      """
+      self.__domain=domain
+      self.__pde=LinearPDE(domain,numEquations=self.__domain.getDim(),numSolutions=self.__domain.getDim())
+      self.__pde.getSolverOptions().setSolverMethod(SolverOptions.DIRECT)
+      self.__pde.setSymmetryOn()
+      #self.__pde.getSolverOptions().setTolerance(rtol**2)
+      #self.__pde.getSolverOptions().setPackage(SolverOptions.UMFPACK)
+      self.__numGaussPoints=ng
+      self.__rtol=rtol
+      self.__verbose=verbose
+      self.__pool=get_pool(mpi=useMPI,threads=np)
+      self.__scenes=self.__pool.map(initLoad,range(ng))
+      self.__strain=escript.Tensor(0,escript.Function(self.__domain))
+      self.__stress=escript.Tensor(0,escript.Function(self.__domain))
+      self.__S=escript.Tensor4(0,escript.Function(self.__domain))
+      
+      st = self.__pool.map(getStressAndTangent,self.__scenes)
+      for i in xrange(ng):
+         self.__stress.setValueOfDataPoint(i,st[i][0])
+         self.__S.setValueOfDataPoint(i,st[i][1])
+                     
+   def initialize(self, b=escript.Data(), f=escript.Data(), specified_u_mask=escript.Data(), specified_u_val=escript.Data()):
+      """
+      initialize the model for each time step, e.g. assign parameters
+      :param b: type vector, body force on FunctionSpace, e.g. gravity
+      :param f: type vector, boundary traction on FunctionSpace (FunctionOnBoundary)
+      :param specified_u_mask: type vector, mask of location for Dirichlet boundary
+      :param specified_u_val: type vector, specified displacement for Dirichlet boundary
+      """
+      self.__pde.setValue(Y=b,y=f,q=specified_u_mask,r=specified_u_val)
+      
+   def getDomain(self):
+      """
+      return model domain
+      """
+      return self.__domain
+      
+   def getRelTolerance(self):
+      """
+      return relative tolerance for convergence
+      type float
+      """
+      return self.__rtol
+  
+   def getCurrentPacking(self,pos=(),time=0,prefix=''):
+      if len(pos) == 0:
+         # output all Gauss points packings
+         self.__pool.map(outputPack,zip(self.__scenes,repeat(time),repeat(prefix)))
+      else:
+         # output selected Gauss points packings
+         scene = [self.__scenes[i] for i in pos]
+         self.__pool.map(outputPack,zip(scene,repeat(time),repeat(prefix)))
+   
+   def getLocalVoidRatio(self):
+      void=escript.Scalar(0,escript.Function(self.__domain))
+      e = self.__pool.map(getVoidRatio,self.__scenes)
+      for i in xrange(self.__numGaussPoints):
+         void.setValueOfDataPoint(i,e[i])
+      return void
+   
+   def getLocalAvgRotation(self):
+      rot=escript.Vector(0,escript.Function(self.__domain))
+      r = self.__pool.map(avgRotation,self.__scenes)
+      for i in xrange(self.__numGaussPoints):
+         rot.setValueOfDataPoint(i,r[i])
+      return rot
+
+   def getLocalFabric(self):
+      fabric=escript.Tensor(0,escript.Function(self.__domain))
+      f = self.__pool.map(getFabric,self.__scenes)
+      for i in xrange(self.__numGaussPoints):
+         fabric.setValueOfDataPoint(i,f[i])
+      return fabric
+ 
+   def getCurrentTangent(self):
+      """
+      return current tangent operator
+      type Tensor4 on FunctionSpace
+      """
+      return self.__S
+      
+   def getCurrentStress(self):
+      """
+      return current stress
+      type: Tensor on FunctionSpace
+      """
+      return self.__stress
+      
+   def getCurrentStrain(self):
+      """
+      return current strain
+      type: Tensor on FunctionSpace
+      """
+      return self.__strain
+   
+   def exitSimulation(self):
+      """finish the whole simulation, exit"""
+      self.__pool.close()
+   
+   def solve(self, iter_max=100):
+      """
+      solve the equation using Newton-Ralphson scheme
+      """
+      iterate=0
+      rtol=self.getRelTolerance()
+      stress=self.getCurrentStress()
+      s=self.getCurrentTangent()
+      x_safe=self.__domain.getX()
+      self.__pde.setValue(A=s, X=-stress)
+      #residual0=util.L2(self.__pde.getRightHandSide()) # using force error
+      u=self.__pde.getSolution()  # trial solution, displacement
+      D=util.grad(u)              # trial strain tensor
+      # !!!!!! obtain stress and tangent operator from DEM part
+      update_stress,update_s,update_scenes=self.applyStrain_getStressTangentDEM(st=D)
+      err=1.0 # initial error before iteration
+      converged=(err<rtol)
+      while (not converged) and (iterate<iter_max):
+         if self.__verbose:
+            print "Not converged after %d iteration(s)! Relative error: %e"%(iterate,err)
+         iterate+=1
+         self.__domain.setX(x_safe+u)
+         self.__pde.setValue(A=update_s,X=-update_stress,r=escript.Data())
+         #residual=util.L2(self.__pde.getRightHandSide())
+         du=self.__pde.getSolution()
+         u+=du
+         l,d=util.L2(u),util.L2(du)
+         err=d/l # displacement error, alternatively using force error 'residual'
+         converged=(err<rtol)
+         if err>rtol*0.001: # only update DEM parts when error is large enough
+            self.__domain.setX(x_safe)
+            D=util.grad(u)
+            update_stress,update_s,update_scenes=self.applyStrain_getStressTangentDEM(st=D)
+
+         #if err>err_safe: # to ensure consistent convergence, however this may not be achieved due to fluctuation!
+         #   raise RuntimeError,"No improvement of convergence with iterations! Relative error: %e"%err
+      """
+      update 'domain geometry', 'stress', 'tangent operator',
+      'accumulated strain' and 'simulation scenes'.
+      """
+      self.__domain.setX(x_safe+u)
+      self.__stress=update_stress
+      self.__S=update_s
+      self.__strain+=D
+      self.__scenes=update_scenes
+      if self.__verbose:
+         print "Convergence reached after %d iteration(s)! Relative error: %e"%(iterate,err)
+      return u
+      
+   """
+   apply strain to DEM packing,
+   get stress and tangent operator (including two methods)
+   """
+   def applyStrain_getStressTangentDEM(self,st=escript.Data()):
+      st = st.toListOfTuples()
+      st = numpy.array(st).reshape(-1,9)
+      stress = escript.Tensor(0,escript.Function(self.__domain))
+      S = escript.Tensor4(0,escript.Function(self.__domain))
+      scenes = self.__pool.map(shear,zip(self.__scenes,st))
+      st = self.__pool.map(getStressAndTangent,scenes)      
+      for i in xrange(self.__numGaussPoints):
+         stress.setValueOfDataPoint(i,st[i][0])
+         S.setValueOfDataPoint(i,st[i][1])
+      return stress,S,scenes
+      

=== added file 'py/FEMxDEM/msFEMup.py'
--- py/FEMxDEM/msFEMup.py	1970-01-01 00:00:00 +0000
+++ py/FEMxDEM/msFEMup.py	2015-03-03 19:06:49 +0000
@@ -0,0 +1,293 @@
+__author__="Ning Guo, ceguo@xxxxxxxxxxxxxx"
+__supervisor__="Jidong Zhao, jzhao@xxxxxx"
+__institution__="The Hong Kong University of Science and Technology"
+
+""" 2D model for multiscale simulation of a 
+hydromechanical system based on u-p formulation;
+iterative scheme (fixed-stress split) is used for
+the coupled PDEs; Newton-Raphson scheme is used to
+solve the nonlinear PDE for displacement, pore
+pressure is solved from the mass conservation equation;
+total stress is a superposition of the effective stress
+and pore pressure."""
+
+# import Escript modules
+import esys.escript as escript
+from esys.escript import util
+from esys.escript.linearPDEs import LinearPDE,SolverOptions
+from simDEM import *
+from itertools import repeat
+
+""" function to return pool for parallelization
+    supporting both MPI (experimental) on distributed
+    memory and multiprocessing on shared memory.
+"""
+def get_pool(mpi=False,threads=1):
+   if mpi: # using MPI
+      from mpipool import MPIPool
+      pool = MPIPool()
+      pool.start()
+      if not pool.is_master():
+         sys.exit(0)
+   elif threads>1: # using multiprocessing
+      from multiprocessing import Pool
+      pool = Pool(processes=threads)
+   else:
+      raise RuntimeError,"Wrong arguments: either mpi=True or threads>1."
+   return pool
+
+class MultiScale(object):
+   """
+   problem description
+   1. displacement:
+   -(A_{ijkl} u_{k,l})_{,j} = -X_{ij,j} + Y_i
+   Neumann boundary: n_j A_{ijkl} u_{k,l} = n_j X_{ij} + y_i
+   Dirichlet boundary: u_i = r_i where q_i > 0
+   :var u: unknown vector, displacement
+   :var A: elastic tensor / tangent operator
+   :var X: tensor, minus old stress
+   :var Y: vector, gamma - grad(p)
+   :var y: vector, Neumann bc traction
+   :var q: vector, Dirichlet bc mask
+   :var r: vector, Dirichlet bc value
+   2. pore pressure:
+   -(A_{ij} p_{,j})_{,i} + D p = Y
+   Neumann boundary: n_j A_{jl} p_{,l} = y
+   Dirichlet boundary: p = r where q > 0
+   :var p: unknown scalar, pore pressure
+   :var A: permeability tensor
+   :var D: scalar, n / (K_f dt)
+   :var Y: scalar, -dot(u)_{i,i} + n p_pre / (K_f dt)
+   :var y: scalar, Neumann bc flux
+   :var q: scalar, Dirichlet bc mask
+   :var r: scalar, Dirichlet bc value
+   """
+   def __init__(self,domain,pore0=0.,perm=1.e-5,kf=2.2e9,dt=0.001,ng=1,useMPI=False,np=1,rtol=1.e-2):
+      """
+      initialization of the problem, i.e. model constructor
+      :param domain: type Domain, domain of the problem
+      :param pore0: type float, initial pore pressure
+      :param perm: type float, d^2/(150 mu_f) in KC equation
+      :param kf: type float, bulk modulus of the fluid
+      :param dt: type float, time step for calculation
+      :param ng: type integer, number of Gauss points
+      :param useMPI: type boolean, use MPI or not
+      :param np: type integer, number of processors
+      :param rtol: type float, relevative tolerance for global convergence
+      """
+      self.__domain=domain
+      self.__upde=LinearPDE(domain,numEquations=domain.getDim(),numSolutions=domain.getDim())
+      self.__ppde=LinearPDE(domain,numEquations=1,numSolutions=1)
+      # use reduced interpolation for pore pressure
+      self.__ppde.setReducedOrderOn()
+      
+      self.__upde.getSolverOptions().setSolverMethod(SolverOptions.DIRECT)
+      self.__ppde.getSolverOptions().setSolverMethod(SolverOptions.DIRECT)
+      self.__upde.setSymmetryOn()
+      self.__ppde.setSymmetryOn()
+      
+      self.__dt=dt
+      self.__bulkFluid=kf
+      self.__numGaussPoints=ng
+      self.__rtol=rtol
+      self.__stress=escript.Tensor(0,escript.Function(domain))
+      self.__S=escript.Tensor4(0,escript.Function(domain))
+      self.__pool=get_pool(mpi=useMPI,threads=np)
+      self.__scenes=self.__pool.map(initLoad,range(ng))
+      st = self.__pool.map(getStressAndTangent2D,self.__scenes)
+      for i in xrange(ng):
+         self.__stress.setValueOfDataPoint(i,st[i][0])
+         self.__S.setValueOfDataPoint(i,st[i][1])
+      self.__strain=escript.Tensor(0,escript.Function(domain))
+      self.__pore=escript.Scalar(pore0,escript.ReducedSolution(domain))
+      self.__pgauss=util.interpolate(pore0,escript.Function(domain))
+      self.__permeability=perm
+      self.__meanStressRate=escript.Scalar(0,escript.Function(domain))
+      self.__r=escript.Vector(0,escript.Solution(domain)) #Dirichlet BC for u
+
+   def initialize(self, b=escript.Data(), f=escript.Data(), umsk=escript.Data(), uvalue=escript.Data(), flux=escript.Data(), pmsk=escript.Data(), pvalue=escript.Data()):
+      """
+      initialize the model for each time step, e.g. assign parameters
+      :param b: type vector, body force on FunctionSpace, e.g. gravity
+      :param f: type vector, boundary traction on FunctionSpace (FunctionOnBoundary)
+      :param umsk: type vector, mask of location for Dirichlet boundary
+      :param uvalue: type vector, specified displacement for Dirichlet boundary
+      """
+      self.__upde.setValue(Y=b,y=f,q=umsk,r=uvalue)
+      self.__ppde.setValue(y=flux,q=pmsk,r=pvalue)
+      self.__r=uvalue                  
+   
+   def getDomain(self):
+      """
+      return model domain
+      """
+      return self.__domain
+      
+   def setTimeStep(self,dt=1.0):
+      self.__dt = dt
+
+   def getCurrentPacking(self,pos=(),time=0,prefix=''):
+      if len(pos) == 0: # output all Gauss points packings
+         self.__pool.map(outputPack,zip(self.__scenes,repeat(time),repeat(prefix)))
+      else: # output selected Gauss points packings
+         scene = [self.__scenes[i] for i in pos]
+         self.__pool.map(outputPack,zip(scene,repeat(time),repeat(prefix)))
+   
+   def getEquivalentPorosity(self):
+      porosity=escript.Scalar(0,escript.Function(self.__domain))
+      p = self.__pool.map(getEquivalentPorosity,self.__scenes)
+      for i in xrange(self.__numGaussPoints):
+         porosity.setValueOfDataPoint(i,p[i])
+      return porosity
+   
+   def getLocalAvgRotation(self):
+      rot=escript.Scalar(0,escript.Function(self.__domain))
+      r = self.__pool.map(avgRotation2D,self.__scenes)
+      for i in xrange(self.__numGaussPoints):
+         rot.setValueOfDataPoint(i,r[i])
+      return rot
+   
+   def getLocalFabric(self):
+      fabric=escript.Tensor(0,escript.Function(self.__domain))
+      f = self.__pool.map(getFabric2D,self.__scenes)
+      for i in xrange(self.__numGaussPoints):
+         fabric.setValueOfDataPoint(i,f[i])
+      return fabric
+   
+   def getCurrentTangent(self):
+      """
+      return current tangent operator
+      type Tensor4 on FunctionSpace
+      """
+      return self.__S
+      
+   def getCurrentStress(self):
+      """
+      return current stress (effective)
+      type: Tensor on FunctionSpace
+      """
+      return self.__stress
+      
+   def getCurrentPore(self):
+      """
+      return current pore pressure
+      type: Scalar on ReducedSolution
+      """
+      return self.__pore
+      
+   def getCurrentStrain(self):
+      """
+      return current strain
+      type: Tensor on FunctionSpace
+      """
+      return self.__strain
+
+   def getCurrentFlux(self):
+      """
+      return current Darcy flux
+      type: Vector on FunctionSpace
+      """
+      n=self.getEquivalentPorosity()
+      perm=self.__permeability*n**3/(1.-n)**2
+      flux=-perm*util.grad(self.__pore)
+      return flux
+   
+   def exitSimulation(self):
+      """finish the whole simulation, exit"""
+      self.__pool.close()
+   
+   def solveSolid(self, p_iter_gauss=escript.Data(), iter_max=50):
+      """
+      solve the pde for displacement using Newton-Ralphson scheme
+      """
+      k=util.kronecker(self.__domain)
+      p=p_iter_gauss*k
+      iterate=0
+      rtol=self.__rtol
+      stress_safe=self.__stress
+      s_safe=self.__S
+      x_safe=self.__domain.getX()
+      self.__upde.setValue(A=s_safe, X=-stress_safe+p, r=self.__r)
+      #residual0=util.L2(self.__pde.getRightHandSide()) # using force error
+      u=self.__upde.getSolution()  # trial solution, displacement
+      D=util.grad(u)               # trial strain tensor
+      # !!!!!! obtain stress and tangent operator from DEM part
+      update_stress,update_s,update_scenes=self.applyStrain_getStressTangentDEM(st=D)
+      err=util.Lsup(u) # initial error before iteration
+      converged=(err<1.e-12)
+      while (not converged) and (iterate<iter_max):
+         #if iterate>iter_max:
+         #   raise RuntimeError,"Convergence for Newton-Raphson failed after %s steps."%(iter_max)
+         iterate+=1
+         self.__domain.setX(x_safe+u)
+         self.__upde.setValue(A=update_s,X=-update_stress+p,r=escript.Data())
+         #residual=util.L2(self.__pde.getRightHandSide())
+         du=self.__upde.getSolution()
+         u+=du
+         l,d=util.L2(u),util.L2(du)
+         err=d/l # displacement error, alternatively using force error 'residual'
+         converged=(err<rtol)
+         if err>rtol**3: # only update DEM parts when error is large enough
+            self.__domain.setX(x_safe)
+            D=util.grad(u)
+            update_stress,update_s,update_scenes=self.applyStrain_getStressTangentDEM(st=D)
+      """reset domain geometry to original until global convergence"""
+      self.__domain.setX(x_safe)
+      return u,D,update_stress,update_s,update_scenes
+   
+   def solve(self, globalIter=10, solidIter=50):
+      """
+      solve the coupled PDE using fixed-stress split method,
+      call solveSolid to get displacement
+      """
+      rtol=self.__rtol
+      x_safe=self.__domain.getX()
+      k=util.kronecker(self.__domain)
+      kdr=util.inner(k,util.tensor_mult(self.__S,k))/4.
+      n=self.getEquivalentPorosity()
+      perm=self.__permeability*n**3/(1.-n)**2*k
+      kf=self.__bulkFluid
+      dt=self.__dt
+      self.__ppde.setValue(A=perm,D=(n/kf+1./kdr)/dt,Y=(n/kf+1./kdr)/dt*self.__pgauss-self.__meanStressRate/kdr)
+      p_iter_old=self.__ppde.getSolution()
+      p_iter_gauss=util.interpolate(p_iter_old,escript.Function(self.__domain))
+      u_old,D,sig,s,scene=self.solveSolid(p_iter_gauss=p_iter_gauss,iter_max=solidIter)
+      converge=False
+      iterate=0
+      while (not converge) and (iterate<globalIter):
+         iterate += 1
+         self.__ppde.setValue(Y=n/kf/dt*self.__pgauss+1./kdr/dt*p_iter_gauss-util.trace(D)/dt)
+         p_iter=self.__ppde.getSolution()
+         p_err=util.L2(p_iter-p_iter_old)/util.L2(p_iter)
+         p_iter_old=p_iter
+         p_iter_gauss=util.interpolate(p_iter,escript.Function(self.__domain))
+         u,D,sig,s,scene=self.solveSolid(p_iter_gauss=p_iter_gauss,iter_max=solidIter)
+         u_err=util.L2(u-u_old)/util.L2(u)
+         u_old=u
+         converge=(u_err<=rtol and p_err <= rtol*.1)
+      self.__meanStressRate=(util.trace(sig-self.__stress)/2.-p_iter_gauss+self.__pgauss)/dt
+      self.__pore=p_iter_old
+      self.__pgauss=p_iter_gauss
+      self.__domain.setX(x_safe+u_old)
+      self.__strain+=D
+      self.__stress=sig
+      self.__S=s
+      self.__scenes=scene
+      return u_old
+
+   """
+   apply strain to DEM packing,
+   get stress and tangent operator
+   """
+   def applyStrain_getStressTangentDEM(self,st=escript.Data()):
+      st = st.toListOfTuples()
+      st = numpy.array(st).reshape(-1,4)
+      stress = escript.Tensor(0,escript.Function(self.__domain))
+      S = escript.Tensor4(0,escript.Function(self.__domain))
+      scenes = self.__pool.map(shear2D,zip(self.__scenes,st))
+      ST = self.__pool.map(getStressAndTangent2D,scenes)
+      for i in xrange(self.__numGaussPoints):
+         stress.setValueOfDataPoint(i,ST[i][0])
+         S.setValueOfDataPoint(i,ST[i][1])
+      return stress,S,scenes
+      

=== added file 'py/FEMxDEM/saveGauss.py'
--- py/FEMxDEM/saveGauss.py	1970-01-01 00:00:00 +0000
+++ py/FEMxDEM/saveGauss.py	2015-03-03 19:06:49 +0000
@@ -0,0 +1,32 @@
+"""
+2D/3D Function to output Gauss point tensorial quantities, e.g. stress, strain, fabric.
+Author: Ning Guo <ceguo@xxxxxxxxxxxxxx>
+"""
+def saveGauss2D(name='',pos=(),**kwargs):
+   fout = file(name,'w')
+   for key in kwargs:
+      data = kwargs[key].toListOfTuples()
+      if len(pos)==0:
+         fout.write('%s '%key+str(len(data))+'\n')
+         for i in xrange(len(data)):
+            fout.write(' '.join('%s %s'%x for x in data[i])+'\n')
+      else:
+         fout.write('%s '%key+str(len(pos))+'\n')
+         for i in pos:
+            fout.write(' '.join('%s %s'%x for x in data[i])+'\n')
+   fout.close()
+   
+def saveGauss3D(name='',pos=(),**kwargs):
+   fout = file(name,'w')
+   for key in kwargs:
+      data = kwargs[key].toListOfTuples()
+      if len(pos)==0:
+         fout.write('%s '%key+str(len(data))+'\n')
+         for i in xrange(len(data)):
+            fout.write(' '.join('%s %s %s'%x for x in data[i])+'\n')
+      else:
+         fout.write('%s '%key+str(len(pos))+'\n')
+         for i in pos:
+            fout.write(' '.join('%s %s %s'%x for x in data[i])+'\n')
+   fout.close()
+   

=== added file 'py/FEMxDEM/simDEM.py'
--- py/FEMxDEM/simDEM.py	1970-01-01 00:00:00 +0000
+++ py/FEMxDEM/simDEM.py	2015-03-03 19:06:49 +0000
@@ -0,0 +1,255 @@
+__author__="Ning Guo, ceguo@xxxxxxxxxxxxxx"
+__supervisor__="Jidong Zhao, jzhao@xxxxxx"
+__institution__="The Hong Kong University of Science and Technology"
+
+"""
+DEM part for multiscale simulation which sets up a packing representing
+a material point (RVE) at the Gauss point of the FEM domain and returns
+constitutive responses (updated stress and tangent operator) at this point.
+"""
+# import yade modules
+import sys
+from os.path import expanduser
+sys.path.append(expanduser('~')+'/yade/bin') # path where you have yadeimport.py
+# yadeimport.py is generated by `ln yade-versionNo yadeimport.py`
+from yadeimport import *
+import numpy
+
+def initLoad(ID=0): # where ID identifies the Gauss point location
+   if 1:
+      # All Gauss points import 0.yade.gz resulting in a uniform sample (default)
+      Omega().load('0.yade.gz')
+   else:
+      # Otherwise load different packings to generate random field
+      # resulting in an inherently heterogeneous sample
+      Omega().load(str(ID)+'.yade.gz')
+   Omega().tags['id']=str(ID)
+   return Omega().sceneToString()
+
+def outputPack(param):
+   if len(param) != 3:
+      raise RuntimeError,"No. of param. should be exactly 3. 0: RVE scene; 1: step count; 2: name prefix"
+   Omega().stringToScene(param[0])
+   pos = Omega().tags['id']
+   Omega().save(param[2]+'packing_'+pos+'_'+str(param[1])+'.yade.gz')
+
+def numOfParticles(scene):
+   Omega().stringToScene(scene)
+   return len(Omega().bodies) # !!! for spherical particle packing only
+
+# Apply deformation on 2D DEM packing
+def shear2D(param):
+   if len(param) != 2:
+      raise RuntimeError,"No. of param. should be exactly 2. 0: RVE scene; 1: strain."
+   Omega().stringToScene(param[0])
+   ns=int(max(1e5*numpy.max(numpy.abs(param[1])),2))
+   dstrain = utils.Matrix3(param[1][0],param[1][1],0, param[1][2],param[1][3],0, 0,0,0)
+   Omega().cell.velGrad=dstrain/(ns*Omega().dt)
+   Omega().run(ns,True)
+   Omega().cell.velGrad=utils.Matrix3.Zero
+   return Omega().sceneToString()
+
+# Apply deformation on 3D DEM packing
+def shear3D(param):
+   if len(param) != 2:
+      raise RuntimeError,"No. of param. should be exactly 2. 0: RVE scene; 1: strain."
+   Omega().stringToScene(param[0])
+   ns=int(max(1e5*numpy.max(numpy.abs(param[1])),2))
+   dstrain = utils.Matrix3(param[1][0],param[1][1],param[1][2], param[1][3],param[1][4],param[1][5], param[1][6],param[1][7],param[1][8])
+   Omega().cell.velGrad=dstrain/(ns*Omega().dt)
+   Omega().run(ns,True)
+   Omega().cell.velGrad=utils.Matrix3.Zero
+   return Omega().sceneToString()
+
+""" Used for perturbation method only (2D), deprecated
+def getStressTensor(scene):
+   Omega().stringToScene(scene)
+   stress = utils.getStress()
+   stress = .5*(stress+stress.transpose())
+   return [[stress[0],stress[1]],[stress[3],stress[4]]]
+"""
+
+# get contact normal based fabric tensor
+def getFabric2D(scene):
+   Omega().stringToScene(scene)
+   f = utils.fabricTensor(splitTensor=False,revertSign=False)[0]
+   return [[f[0,0],f[0,1]],[f[1,0],f[1,1]]]
+
+def getFabric3D(scene):
+   Omega().stringToScene(scene)
+   f = utils.fabricTensor(splitTensor=False,revertSign=False)[0]
+   return [[f[0,0],f[0,1],f[0,2]],[f[1,0],f[1,1],f[1,2]],[f[2,0],f[2,1],f[2,2]]]
+
+""" # Used for clumped particle model only
+    # get particle orientation based fabric tensor
+def getParOriFabric(scene):
+   Omega().stringToScene(scene)
+   fab = utils.Matrix3.Zero
+   numPar = 0
+   for b in Omega().bodies:
+      if b.isClump:
+         numPar += 1
+         keys = b.shape.members.keys()
+         pos1 = Omega().bodies[keys[0]].state.pos
+         pos2 = Omega().bodies[keys[1]].state.pos
+         ori = (pos1-pos2).normalized()
+         fab += ori.outer(ori)
+   fab /= numPar
+   return [[fab[0],fab[1]],[fab[3],fab[4]]]
+"""
+
+""" # Used for cohesive particle model only
+    # get the bond breakage number within a packing
+def getDebondingNumber(param):
+   Omega().stringToScene(param[0])
+   num = 0
+   for id1,id2 in param[1]:
+      try:
+         i = Omega().interactions[id1,id2]
+         if not i.isReal():
+            num += 1
+         elif i.phys.cohesionBroken:
+            num += 1
+      except IndexError:
+         num += 1
+   return num
+"""
+
+# get updated stress tensor and tangent operator as a tuple
+# utils.getStressAndTangent() is implemented in Shop.cpp
+def getStressAndTangent2D(scene):
+   Omega().stringToScene(scene)
+   st = utils.getStressAndTangent(symmetry=True)
+   s = st[0]
+   s = .5*(s+s.transpose())
+   t=[[[[0,0],[0,0]],[[0,0],[0,0]]],[[[0,0],[0,0]],[[0,0],[0,0]]]]
+   t[0][0][0][0]=st[1][0,0]
+   t[1][1][0][0]=t[0][0][1][1]=st[1][0,1]
+   t[0][1][0][0]=t[0][0][0][1]=t[1][0][0][0]=t[0][0][1][0]=st[1][0,5]
+   t[1][1][1][1]=st[1][1,1]
+   t[1][1][0][1]=t[0][1][1][1]=t[1][1][1][0]=t[1][0][1][1]=st[1][1,5]
+   t[0][1][0][1]=t[0][1][1][0]=t[1][0][0][1]=t[1][0][1][0]=st[1][5,5]
+   return [[s[0,0],s[0,1]],[s[1,0],s[1,1]]],t
+
+def getStressAndTangent3D(scene):
+   Omega().stringToScene(scene)
+   st = utils.getStressAndTangent(symmetry=True)
+   s = st[0]
+   s = .5*(s+s.transpose())
+   t = numpy.zeros((3,3,3,3))
+   t[0][0][0][0]=st[1][0,0]
+   t[0][0][1][1]=t[1][1][0][0]=st[1][0,1]
+   t[0][0][2][2]=t[2][2][0][0]=st[1][0,2]
+   t[0][0][1][2]=t[0][0][2][1]=t[1][2][0][0]=t[2][1][0][0]=st[1][0,3]
+   t[0][0][0][2]=t[0][0][2][0]=t[0][2][0][0]=t[2][0][0][0]=st[1][0,4]
+   t[0][0][0][1]=t[0][0][1][0]=t[0][1][0][0]=t[1][0][0][0]=st[1][0,5]
+   t[1][1][1][1]=st[1][1,1]
+   t[1][1][2][2]=t[2][2][1][1]=st[1][1,2]
+   t[1][1][1][2]=t[1][1][2][1]=t[1][2][1][1]=t[2][1][1][1]=st[1][1,3]
+   t[1][1][0][2]=t[1][1][2][0]=t[0][2][1][1]=t[2][0][1][1]=st[1][1,4]
+   t[1][1][0][1]=t[1][1][1][0]=t[0][1][1][1]=t[1][0][1][1]=st[1][1,5]
+   t[2][2][2][2]=st[1][2,2]
+   t[2][2][1][2]=t[2][2][2][1]=t[1][2][2][2]=t[2][1][2][2]=st[1][2,3]
+   t[2][2][0][2]=t[2][2][2][0]=t[0][2][2][2]=t[2][0][2][2]=st[1][2,4]
+   t[2][2][0][1]=t[2][2][1][0]=t[0][1][2][2]=t[1][0][2][2]=st[1][2,5]
+   t[1][2][1][2]=t[1][2][2][1]=t[2][1][1][2]=t[2][1][2][1]=st[1][3,3]
+   t[1][2][0][2]=t[1][2][2][0]=t[2][1][0][2]=t[2][1][2][0]=t[0][2][1][2]=t[2][0][1][2]=t[0][2][2][1]=t[2][0][2][1]=st[1][3,4]
+   t[1][2][0][1]=t[1][2][1][0]=t[2][1][0][1]=t[2][1][1][0]=t[0][1][1][2]=t[1][0][1][2]=t[0][1][2][1]=t[1][0][2][1]=st[1][3,5]
+   t[0][2][0][2]=t[2][0][0][2]=t[0][2][2][0]=t[2][0][2][0]=st[1][4,4]
+   t[0][2][0][1]=t[0][2][1][0]=t[2][0][0][1]=t[2][0][1][0]=t[0][1][0][2]=t[1][0][0][2]=t[0][1][2][0]=t[1][0][2][0]=st[1][4,5]
+   t[0][1][0][1]=t[0][1][1][0]=t[1][0][0][1]=t[1][0][1][0]=st[1][5,5]
+   return [[s[0,0],s[0,1],s[0,2]],[s[1,0],s[1,1],s[1,2]],[s[2,0],s[2,1],s[2,2]]],t
+
+# utils.voidratio2D() is implemented in Shop.cpp
+# to get plane void ratio (for 2D test only)   
+def getVoidRatio2D(scene):
+   Omega().stringToScene(scene)
+   zSize = Omega().cell.hSize[2,2]
+   return utils.voidratio2D(zlen=zSize)
+
+def getEquivalentPorosity(scene):
+   Omega().stringToScene(scene)
+   zSize = Omega().cell.hSize[2,2]
+   e = utils.voidratio2D(zlen=zSize)
+   return e/(1.+e)
+   
+def getVoidRatio3D(scene):
+   Omega().stringToScene(scene)
+   p = utils.porosity()
+   return p/(1.0-p)
+
+# get average rotation of the particles within a packing
+def avgRotation2D(scene):
+   Omega().stringToScene(scene)
+   rot = 0.0
+   for b in Omega().bodies:
+      rot += b.state.rot()[2]
+   rot /= len(Omega().bodies)
+   return rot
+   
+def avgRotation3D(scene):
+   Omega().stringToScene(scene)
+   rot = utils.Vector3.Zero
+   for b in Omega().bodies:
+      rot += b.state.rot()
+   rot /= len(Omega().bodies)
+   return [rot[0],rot[1],rot[2]]
+
+""" Used for perturbation method only (2D), deprecated   
+def getTangentOperator(param):
+   if len(param)!=2:
+      raise RuntimeError,"No. of param. should be exactly 2. 0: RVE scene; 1: perturbation."
+   Omega().stringToScene(param[0])
+   pos = Omega().tags['id']
+   perturbation = param[1]
+   t=[[[[0,0],[0,0]],[[0,0],[0,0]]],[[[0,0],[0,0]],[[0,0],[0,0]]]]
+   ns=int(max(1e5*abs(perturbation),2))
+   stress0 = utils.getStress()
+   stress0 = .5*(stress0+stress0.transpose())
+   #00
+   strain=utils.Matrix3(perturbation,0,0, 0,0,0, 0,0,0)
+   Omega().cell.velGrad=strain/(ns*Omega().dt)
+   Omega().run(ns,True)
+   stress1 = utils.getStress()
+   stress1 = .5*(stress1+stress1.transpose())
+   t[0][0][0][0]=(stress1[0]-stress0[0])/perturbation
+   t[1][1][0][0]=(stress1[4]-stress0[4])/perturbation
+   t[0][1][0][0]=t[1][0][0][0]=(stress1[1]-stress0[1])/perturbation
+   Omega().stringToScene(param[0])
+   #11
+   strain=utils.Matrix3(0,0,0, 0,perturbation,0, 0,0,0)
+   Omega().cell.velGrad=strain/(ns*Omega().dt)
+   Omega().run(ns,True)
+   stress1=utils.getStress()
+   stress1=.5*(stress1+stress1.transpose())
+   t[0][0][1][1]=(stress1[0]-stress0[0])/perturbation
+   t[1][1][1][1]=(stress1[4]-stress0[4])/perturbation
+   t[0][1][1][1]=t[1][0][1][1]=(stress1[1]-stress0[1])/perturbation
+   Omega().stringToScene(param[0])
+   #01
+   strain=utils.Matrix3(0,perturbation,0, 0,0,0, 0,0,0)
+   Omega().cell.velGrad=strain/(ns*Omega().dt)
+   Omega().run(ns,True)
+   stress1=utils.getStress()
+   stress1=.5*(stress1+stress1.transpose())
+   t[0][0][0][1]=(stress1[0]-stress0[0])/perturbation
+   t[1][1][0][1]=(stress1[4]-stress0[4])/perturbation
+   t[0][1][0][1]=t[1][0][0][1]=(stress1[1]-stress0[1])/perturbation
+   Omega().stringToScene(param[0])
+   #10
+   strain=utils.Matrix3(0,0,0, perturbation,0,0, 0,0,0)
+   Omega().cell.velGrad=strain/(ns*Omega().dt)
+   Omega().run(ns,True)
+   stress1=utils.getStress()
+   stress1=.5*(stress1+stress1.transpose())
+   t[0][0][1][0]=(stress1[0]-stress0[0])/perturbation
+   t[1][1][1][0]=(stress1[4]-stress0[4])/perturbation
+   t[0][1][1][0]=t[1][0][1][0]=(stress1[1]-stress0[1])/perturbation
+   #symmetrize
+   t[0][0][1][1]=t[1][1][0][0]=(t[0][0][1][1]+t[1][1][0][0])*0.5
+   t[0][1][0][0]=t[1][0][0][0]=t[0][0][1][0]=t[0][0][0][1]=(t[0][1][0][0]*2+t[0][0][0][1]+t[0][0][1][0])*0.25
+   t[0][1][0][1]=t[0][1][1][0]=t[1][0][0][1]=t[1][0][1][0]=(t[0][1][1][0]+t[0][1][0][1])*0.5
+   t[0][1][1][1]=t[1][0][1][1]=t[1][1][0][1]=t[1][1][1][0]=(t[0][1][1][1]*2+t[1][1][0][1]+t[1][1][1][0])*0.25
+   return t
+"""
+

=== modified file 'py/_utils.cpp'
--- py/_utils.cpp	2015-02-06 18:24:54 +0000
+++ py/_utils.cpp	2015-03-03 19:06:49 +0000
@@ -410,6 +410,10 @@
 	return ret;
 }
 
+Real Shop__getSpheresVolume2D(int mask=-1){ return Shop::getSpheresVolume2D(Omega::instance().getScene(), mask=mask);}
+Real Shop__getVoidRatio2D(Real zlen=1){ return Shop::getVoidRatio2D(Omega::instance().getScene(),zlen);}
+py::tuple Shop__getStressAndTangent(Real volume=0, bool symmetry=true){return Shop::getStressAndTangent(volume,symmetry);}
+
 BOOST_PYTHON_MODULE(_utils){
 	// http://numpy.scipy.org/numpydoc/numpy-13.html mentions this must be done in module init, otherwise we will crash
 	import_array();
@@ -474,4 +478,7 @@
 	py::def("TetrahedronWithLocalAxesPrincipal",TetrahedronWithLocalAxesPrincipal,"TODO");
 	py::def("momentum",Shop::momentum,"TODO");
 	py::def("angularMomentum",Shop::angularMomentum,(py::args("origin")=Vector3r(Vector3r::Zero())),"TODO");
+	py::def("getSpheresVolume2D",Shop__getSpheresVolume2D,(py::arg("mask")=-1),"Compute the total volume of discs in the simulation (might crash for now if dynamic bodies are not discs), mask parameter is considered");
+	py::def("voidratio2D",Shop__getVoidRatio2D,(py::arg("zlen")=1),"Compute 2D packing void ratio $\\frac{V-V_s}{V_s}$ where $V$ is overall volume and $V_s$ is volume of disks.\n\n:param float zlen: length in the third direction.\n");
+	py::def("getStressAndTangent",Shop__getStressAndTangent,(py::args("volume")=0,py::args("symmetry")=true),"Compute overall stress of periodic cell using the same equation as function getStress. In addition, the tangent operator is calculated using the equation published in [Kruyt and Rothenburg1998]_:\n\n.. math:: S_{ijkl}=\\frac{1}{V}\\sum_{c}(k_n n_i l_j n_k l_l + k_t t_i l_j t_k l_l)\n\n:param float volume: same as in function getStress\n:param bool symmetry: make the tensors symmetric.\n\n:return: macroscopic stress tensor and tangent operator as py::tuple");
 }